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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
#include <glib.h>
#include "kernel/menu.h"
#include "kernel/screen.h"
#include "kernel/client.h"
#include "kernel/openbox.h"
#include "kernel/frame.h"
#include "render/theme.h"
#if 0
static char *PLUGIN_NAME = "client_menu";
#endif
static ObMenu *send_to_menu;
static ObMenu *layer_menu;
typedef struct {
gint foo;
} Client_Menu_Data;
#define CLIENT_MENU(m) ((ObMenu *)m)
#define CLIENT_MENU_DATA(m) ((Client_Menu_Data *)((ObMenu *)m)->plugin_data)
void client_menu_clean_up(ObMenu *m) {
}
void client_send_to_update(ObMenu *self)
{
guint i = 0;
GList *it = self->entries;
/* check if we have to update. lame */
while (it != NULL) {
if (i >= screen_num_desktops)
break;
if (strcmp(screen_desktop_names[i],
((ObMenuEntry *)it->data)->label) != 0)
break;
++i;
it = it->next;
}
if (it != NULL || i != screen_num_desktops) {
menu_clear(self);
g_message("update");
for (i = 0; i < screen_num_desktops; ++i) {
ObMenuEntry *e;
Action *a = action_from_string("sendtodesktop");
a->data.sendto.desk = i;
a->data.sendto.follow = FALSE;
e = menu_entry_new(screen_desktop_names[i], a);
menu_add_entry(self, e);
}
menu_render_full(self);
}
}
#if 0
void client_menu_show(ObMenu *self, int x, int y, Client *client)
{
int newy;
g_assert(!self->invalid);
g_assert(client);
newy = MAX(client->frame->area.y + client->frame->size.top, y);
newy -= ob_rr_theme->bwidth;
/* XXX do xinerama shit like in menu.c! im not coding it now because
this function isnt even being used right now... */
POINT_SET(self->location,
MIN(x, screen_physical_size.width - self->size.width -
ob_rr_theme->bwidth * 2),
MIN(newy, screen_physical_size.height - self->size.height -
ob_rr_theme->bwidth * 2));
XMoveWindow(ob_display, self->frame, self->location.x, self->location.y);
if (!self->shown) {
XMapWindow(ob_display, self->frame);
stacking_raise(MENU_AS_WINDOW(self));
self->shown = TRUE;
} else if (self->shown && self->open_submenu) {
menu_hide(self->open_submenu);
}
}
#endif
void plugin_setup_config() { }
void plugin_shutdown() { }
void plugin_destroy (ObMenu *m)
{
}
void *plugin_create() /* TODO: need config */
{
ObMenu *m = menu_new_full(NULL, "client-menu", NULL,
/*client_menu_show*/NULL, NULL);
menu_add_entry(m, menu_entry_new_submenu("Send To Workspace",
send_to_menu));
send_to_menu->parent = m;
menu_add_entry(m, menu_entry_new("Iconify",
action_from_string("iconify")));
menu_add_entry(m, menu_entry_new("Raise",
action_from_string("raise")));
menu_add_entry(m, menu_entry_new("Lower",
action_from_string("lower")));
menu_add_entry(m, menu_entry_new("Close",
action_from_string("close")));
menu_add_entry(m, menu_entry_new("Shade",
action_from_string("toggleshade")));
menu_add_entry(m, menu_entry_new("Omnipresent",
action_from_string("toggleomnipresent")));
menu_add_entry(m, menu_entry_new("Decorations",
action_from_string("toggledecorations")));
menu_add_entry(m, menu_entry_new_submenu("Layers",
layer_menu));
layer_menu->parent = m;
/* send to desktop
iconify
raise
lower
close
kill
shade
omnipresent
decorations
*/
return (void *)m;
}
void plugin_startup()
{
ObMenu *t;
/* create a Send To Workspace ObMenu */
send_to_menu = menu_new_full(NULL, "send-to-workspace",
NULL, NULL, client_send_to_update);
layer_menu = menu_new(NULL, "layer", NULL);
menu_add_entry(layer_menu, menu_entry_new("Top Layer",
action_from_string("sendtotoplayer")));
menu_add_entry(layer_menu, menu_entry_new("Normal Layer",
action_from_string("sendtonormallayer")));
menu_add_entry(layer_menu, menu_entry_new("Bottom Layer",
action_from_string("sendtobottomlayer")));
t = (ObMenu *)plugin_create("client_menu");
}
|