]> icculus.org git repositories - mikachu/openbox.git/blob - plugins/menu/client_menu.c
watch out for border widths
[mikachu/openbox.git] / plugins / menu / client_menu.c
1 #include <glib.h>
2
3 #include "kernel/menu.h"
4 #include "kernel/screen.h"
5 #include "kernel/client.h"
6 #include "kernel/openbox.h"
7
8 #include "kernel/frame.h"
9
10 #include "render/theme.h"
11
12 static char *PLUGIN_NAME = "client_menu";
13
14 static Menu *send_to_menu;
15 static Menu *layer_menu;
16
17 typedef struct {
18
19 } Client_Menu_Data;
20
21 #define CLIENT_MENU(m) ((Menu *)m)
22 #define CLIENT_MENU_DATA(m) ((Client_Menu_Data *)((Menu *)m)->plugin_data)
23
24
25 void client_menu_clean_up(Menu *m) {
26 }
27
28 void client_send_to_update(Menu *self)
29 {
30     guint i;
31     
32     for (i = 0; i < screen_num_desktops; ++i) {
33         MenuEntry *e;
34         Action *a = action_from_string("sendtodesktop");
35         a->data.sendto.desk = i;
36         a->data.sendto.follow = FALSE;
37         e = menu_entry_new(screen_desktop_names[i], a);
38         menu_add_entry(self, e);
39     }
40
41     menu_render_full(self);
42 }
43
44 void client_menu_show(Menu *self, int x, int y, Client *client)
45 {
46     int newy;
47     g_assert(!self->invalid);
48     g_assert(client);
49     
50     newy = client->frame->area.y + client->frame->a_focused_title->area.height
51         + theme_bwidth;
52     
53     POINT_SET(self->location, 
54               MIN(x, screen_physical_size.width - self->size.width -
55                   theme_bwidth * 2), 
56               MIN(newy, screen_physical_size.height - self->size.height -
57                   theme_bwidth * 2));
58     XMoveWindow(ob_display, self->frame, self->location.x, self->location.y);
59
60     if (!self->shown) {
61         XMapWindow(ob_display, self->frame);
62         stacking_raise(MENU_AS_WINDOW(self));
63         self->shown = TRUE;
64     } else if (self->shown && self->open_submenu) {
65         menu_hide(self->open_submenu);
66     }
67 }
68
69 void plugin_setup_config() { }
70
71 void plugin_shutdown() { }
72
73 void plugin_destroy (Menu *m)
74 {
75 }
76
77 void *plugin_create() /* TODO: need config */
78 {
79     Menu *m = menu_new_full(NULL, "client-menu", NULL,
80                             client_menu_show, NULL);
81     menu_add_entry(m, menu_entry_new_submenu("Send To Workspace",
82                                              send_to_menu));
83     send_to_menu->parent = m;
84
85     menu_add_entry(m, menu_entry_new("Iconify",
86                                      action_from_string("iconify")));
87     menu_add_entry(m, menu_entry_new("Raise",
88                                      action_from_string("raise")));
89     menu_add_entry(m, menu_entry_new("Lower",
90                                      action_from_string("lower")));
91     menu_add_entry(m, menu_entry_new("Close",
92                                      action_from_string("close")));
93     menu_add_entry(m, menu_entry_new("Shade",
94                                      action_from_string("toggleshade")));
95     menu_add_entry(m, menu_entry_new("Omnipresent",
96                                      action_from_string("toggleomnipresent")));
97     menu_add_entry(m, menu_entry_new_submenu("Layers",
98                                              layer_menu));
99     layer_menu->parent = m;
100
101     /* send to desktop
102        iconify
103        raise
104        lower
105        close
106        kill
107        shade
108        omnipresent
109        decorations
110     */
111     return (void *)m;
112 }
113
114 void plugin_startup()
115 {
116     Menu *t;
117     /* create a Send To Workspace Menu */
118     send_to_menu = menu_new_full(NULL, "send-to-workspace",
119                           NULL, NULL, client_send_to_update);
120     
121     layer_menu = menu_new(NULL, "layer", NULL);
122     menu_add_entry(layer_menu, menu_entry_new("Top Layer",
123                                      action_from_string("sendtotoplayer")));
124     menu_add_entry(layer_menu, menu_entry_new("Normal Layer",
125                                      action_from_string("sendtonormallayer")));
126     menu_add_entry(layer_menu, menu_entry_new("Bottom Layer",
127                                      action_from_string("sendtobottomlayer")));
128                           
129     t = (Menu *)plugin_create("client_menu");
130 }
131