]> Dogcows Code - chaz/openbox/commitdiff
prefix Group to ObGroup
authorDana Jansens <danakj@orodu.net>
Thu, 10 Jul 2003 07:03:40 +0000 (07:03 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 10 Jul 2003 07:03:40 +0000 (07:03 +0000)
openbox/client.h
openbox/group.c
openbox/group.h

index b73229db34aeae0f3f5119e10c163362fd573b8f..52005fcb309556f0d32a34e29c0f93ec6974a3e4 100644 (file)
@@ -11,7 +11,7 @@
 #include <X11/Xlib.h>
 
 struct Frame;
-struct Group;
+struct _ObGroup;
 
 typedef struct _ObClient     ObClient;
 typedef struct _ObClientIcon ObClientIcon;
@@ -81,14 +81,14 @@ struct _ObClient
     int ignore_unmaps;
 
     /*! The id of the group the window belongs to */
-    struct Group *group;
+    struct _ObGroup *group;
     /*! Whether or not the client is a transient window. This is guaranteed to 
       be TRUE if transient_for != NULL, but not guaranteed to be FALSE if
       transient_for == NULL. */
     gboolean transient;
     /*! The client which this client is a transient (child) for.
       A value of TRAN_GROUP signifies that the window is a transient for all
-      members of its Group, and is not a valid pointer to be followed in this
+      members of its ObGroup, and is not a valid pointer to be followed in this
       case.
      */
     ObClient *transient_for;
index 0a03aeefb8124f5b8b0525419499739e437d7334..f6c86c5a5aa63552cf3c4abb43008351f5f7b4a2 100644 (file)
@@ -17,13 +17,13 @@ void group_shutdown()
     g_hash_table_destroy(group_map);
 }
 
-Group *group_add(Window leader, ObClient *client)
+ObGroup *group_add(Window leader, ObClient *client)
 {
-    Group *self;
+    ObGroup *self;
 
     self = g_hash_table_lookup(group_map, &leader);
     if (self == NULL) {
-        self = g_new(Group, 1);
+        self = g_new(ObGroup, 1);
         self->leader = leader;
         self->members = NULL;
         g_hash_table_insert(group_map, &self->leader, self);
@@ -34,7 +34,7 @@ Group *group_add(Window leader, ObClient *client)
     return self;
 }
 
-void group_remove(Group *self, ObClient *client)
+void group_remove(ObGroup *self, ObClient *client)
 {
     self->members = g_slist_remove(self->members, client);
     if (self->members == NULL) {
index 7cb6a40583d0c8fcd347e521f558d24ed69a0d17..8840601ab9f3dd15f7e97c86d0c03a9d6c96fe80 100644 (file)
@@ -4,22 +4,25 @@
 #include <X11/Xlib.h>
 #include <glib.h>
 
+typedef struct _ObGroup ObGroup;
+
 struct _ObClient;
 
-typedef struct Group {
+struct _ObGroup
+{
     Window leader;
 
     /* list of clients */
     GSList *members;
-} Group;
+};
 
 extern GHashTable *group_map;
 
 void group_startup();
 void group_shutdown();
 
-Group *group_add(Window leader, struct _ObClient *client);
+ObGroup *group_add(Window leader, struct _ObClient *client);
 
-void group_remove(Group *self, struct _ObClient *client);
+void group_remove(ObGroup *self, struct _ObClient *client);
 
 #endif
This page took 0.025216 seconds and 4 git commands to generate.