openbox/openbox/group.h
Dana Jansens 806a8c411f add a reconfigure action, also reconfigure on SIGUSR2.
support reconfiguring throughout the entire codebase.
2003-09-03 18:11:39 +00:00

28 lines
461 B
C

#ifndef __group_h
#define __group_h
#include <X11/Xlib.h>
#include <glib.h>
typedef struct _ObGroup ObGroup;
struct _ObClient;
struct _ObGroup
{
Window leader;
/* list of clients */
GSList *members;
};
extern GHashTable *group_map;
void group_startup(gboolean reconfig);
void group_shutdown(gboolean reconfig);
ObGroup *group_add(Window leader, struct _ObClient *client);
void group_remove(ObGroup *self, struct _ObClient *client);
#endif