projects
/
mikachu
/
openbox.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
track window groups
[mikachu/openbox.git]
/
openbox
/
group.h
1
#ifndef __group_h
2
#define __group_h
3
4
#include <X11/Xlib.h>
5
#include <glib.h>
6
7
struct Client;
8
9
typedef struct Group {
10
Window leader;
11
12
/* list of clients */
13
GSList *members;
14
} Group;
15
16
extern GHashTable *group_map;
17
18
void group_startup();
19
void group_shutdown();
20
21
Group *group_add(Window leader, struct Client *client);
22
23
void group_remove(Group *self, struct Client *client);
24
25
#endif