all repos — openbox @ e4be1f860bc579fd4a0d9dee6a6ca590030a791e

openbox fork - make it a bit more like ryudo

openbox/group.c (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "group.h"
#include "client.h"

GHashTable *group_map = NULL;

static guint map_hash(Window *w) { return *w; }
static gboolean map_key_comp(Window *w1, Window *w2) { return *w1 == *w2; }

void group_startup()
{
    group_map = g_hash_table_new((GHashFunc)map_hash,
                                 (GEqualFunc)map_key_comp);
}

void group_shutdown()
{
    g_hash_table_destroy(group_map);
}

Group *group_add(Window leader, ObClient *client)
{
    Group *self;

    self = g_hash_table_lookup(group_map, &leader);
    if (self == NULL) {
        self = g_new(Group, 1);
        self->leader = leader;
        self->members = NULL;
        g_hash_table_insert(group_map, &self->leader, self);
    }

    self->members = g_slist_append(self->members, client);

    return self;
}

void group_remove(Group *self, ObClient *client)
{
    self->members = g_slist_remove(self->members, client);
    if (self->members == NULL) {
        g_hash_table_remove(group_map, &self->leader);
        g_free(self);
    }
}