]> Dogcows Code - chaz/openbox/blobdiff - openbox/action.h
rename the Client struct to ObClient
[chaz/openbox] / openbox / action.h
index f79bd56b4033b3ff6d42433ccc9af40e71cdb8f3..e84a273f918c88d342a4d2fa1685981626342be9 100644 (file)
 */
 
 struct AnyAction {
-    Client *c;
+    ObClient *c;
 };
 
 struct DirectionalAction{
-    Client *c;
-    int direction;
+    ObClient *c;
+    ObDirection direction;
 };
 
 struct Execute {
-    Client *c;
+    ObClient *c;
     char *path;
 };
 
 struct ClientAction {
-    Client *c;
+    ObClient *c;
 };
 
 struct MoveResizeRelative {
-    Client *c;
+    ObClient *c;
     int delta;
 };
 
 struct SendToDesktop {
-    Client *c;
+    ObClient *c;
     guint desk;
     gboolean follow;
 };
 
 struct SendToDesktopDirection {
-    Client *c;
+    ObClient *c;
     gboolean wrap;
     gboolean follow;
 };
 
 struct Desktop {
-    Client *c;
+    ObClient *c;
     guint desk;
 };
 
 struct Layer {
-    Client *c;
+    ObClient *c;
     int layer; /* < 0 = below, 0 = normal, > 0 = above */
 };
 
 struct DesktopDirection {
-    Client *c;
+    ObClient *c;
     gboolean wrap;
 };
 
 struct MoveResize {
-    Client *c;
+    ObClient *c;
     int x;
     int y;
     guint32 corner; /* prop_atoms.net_wm_moveresize_* */
@@ -68,14 +68,14 @@ struct MoveResize {
 };
 
 struct ShowMenu {
-    Client *c;
+    ObClient *c;
     char *name;
     int x;
     int y;
 };
 
 struct CycleWindows {
-    Client *c;
+    ObClient *c;
     gboolean linear;
     gboolean forward;
     gboolean final;
This page took 0.025645 seconds and 4 git commands to generate.