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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
#include "kernel/openbox.h"
#include "kernel/menu.h"
#include "kernel/menuframe.h"
#include "kernel/action.h"
#include "kernel/screen.h"
#include "kernel/client.h"
#include "kernel/focus.h"
#include "gettext.h"
#include "render/theme.h"
#include <glib.h>
#define MENU_NAME "client-list-menu"
typedef struct {
/* how many desktop menus we've made */
guint desktops;
} MenuData;
typedef struct {
guint desktop;
} DesktopData;
void plugin_setup_config() { }
static void desk_menu_update(ObMenuFrame *frame, gpointer data)
{
ObMenu *menu = frame->menu;
DesktopData *d = data;
GList *it;
menu_clear_entries(menu->name);
for (it = focus_order[d->desktop]; it; it = g_list_next(it)) {
ObClient *c = it->data;
if (client_normal(c)) {
GSList *acts;
ObAction* act;
act = action_from_string("activate");
act->data.activate.c = c;
acts = g_slist_prepend(NULL, act);
menu_add_normal(menu->name, 0,
(c->iconic ? c->icon_title : c->title), acts);
}
}
}
/* executes it without changing the client in the actions, since we set that
when we make the actions! */
static void desk_menu_execute(ObMenuEntryFrame *self, gpointer data)
{
GSList *it;
for (it = self->entry->data.normal.actions; it; it = g_slist_next(it))
{
ObAction *act = it->data;
act->func(&act->data);
}
}
static void desk_menu_destroy(ObMenu *menu, gpointer data)
{
DesktopData *d = data;
g_free(d);
}
static void self_update(ObMenuFrame *frame, gpointer data)
{
guint i;
MenuData *d = data;
menu_clear_entries(MENU_NAME);
for (i = 0; i < screen_num_desktops; ++i) {
gchar *name = g_strdup_printf("%s-%u", MENU_NAME, i);
DesktopData *data = g_new(DesktopData, 1);
data->desktop = i;
menu_new(name, screen_desktop_names[i], data);
menu_set_update_func(name, desk_menu_update);
menu_set_execute_func(name, desk_menu_execute);
menu_set_destroy_func(name, desk_menu_destroy);
menu_add_submenu(MENU_NAME, 0, name);
g_free(name);
}
d->desktops = MAX(d->desktops, screen_num_desktops);
}
static void self_destroy(ObMenu *menu, gpointer data)
{
MenuData *d = data;
guint i;
for (i = 0; i < d->desktops; ++i) {
gchar *name = g_strdup_printf("%s-%u", MENU_NAME, i);
menu_free(name);
g_free(name);
}
g_free(d);
}
void plugin_startup()
{
MenuData *data;
data = g_new(MenuData, 1);
data->desktops = 0;
menu_new(MENU_NAME, _("Desktops"), data);
menu_set_update_func(MENU_NAME, self_update);
menu_set_destroy_func(MENU_NAME, self_destroy);
}
void plugin_shutdown()
{
menu_free(MENU_NAME);
}
|