]> Dogcows Code - chaz/openbox/blob - openbox/client_list_menu.c
halfway through client changes but...
[chaz/openbox] / openbox / client_list_menu.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 client_list_menu.c for the Openbox window manager
4 Copyright (c) 2003 Ben Jansens
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 See the COPYING file for a copy of the GNU General Public License.
17 */
18
19 #include "openbox.h"
20 #include "menu.h"
21 #include "menuframe.h"
22 #include "action.h"
23 #include "screen.h"
24 #include "client.h"
25 #include "focus.h"
26 #include "gettext.h"
27
28 #include <glib.h>
29
30 #define MENU_NAME "client-list-menu"
31
32 static GSList *desktop_menus;
33
34 typedef struct
35 {
36 guint desktop;
37 } DesktopData;
38
39 static void desk_menu_update(ObMenuFrame *frame, gpointer data)
40 {
41 ObMenu *menu = frame->menu;
42 DesktopData *d = data;
43 GList *it;
44 gint i;
45 gboolean icons = FALSE;
46 gboolean empty = TRUE;
47
48 menu_clear_entries(menu);
49
50 for (it = focus_order[d->desktop], i = 0; it; it = g_list_next(it), ++i) {
51 ObClient *c = it->data;
52 if (client_normal(c)) {
53 GSList *acts;
54 ObAction* act;
55 ObMenuEntry *e;
56 const ObClientIcon *icon;
57
58 empty = FALSE;
59
60 if (!icons && c->iconic) {
61 icons = TRUE;
62 menu_add_separator(menu, -1);
63 }
64
65 act = action_from_string("Activate",
66 OB_USER_ACTION_MENU_SELECTION);
67 act->data.activate.any.c = c;
68 acts = g_slist_prepend(NULL, act);
69 e = menu_add_normal(menu, i,
70 (c->iconic ? c->icon_title : c->title), acts);
71
72 if ((icon = client_icon(c, 32, 32))) {
73 e->data.normal.icon_width = icon->width;
74 e->data.normal.icon_height = icon->height;
75 e->data.normal.icon_data = icon->data;
76 }
77 }
78 }
79
80 if (empty) {
81 /* no entries */
82
83 GSList *acts;
84 ObAction* act;
85 act = action_from_string("Desktop", OB_USER_ACTION_MENU_SELECTION);
86 act->data.desktop.desk = d->desktop;
87 acts = g_slist_prepend(NULL, act);
88 menu_add_normal(menu, 0, _("Go there..."), acts);
89 }
90 }
91
92 /* executes it using the client in the actions, since we set that
93 when we make the actions! */
94 static void desk_menu_execute(ObMenuEntry *self, guint state, gpointer data)
95 {
96 ObAction *a;
97
98 if (self->data.normal.actions) {
99 a = self->data.normal.actions->data;
100 action_run(self->data.normal.actions, a->data.any.c, state);
101 }
102 }
103
104 static void desk_menu_destroy(ObMenu *menu, gpointer data)
105 {
106 DesktopData *d = data;
107
108 g_free(d);
109
110 desktop_menus = g_slist_remove(desktop_menus, menu);
111 }
112
113 static void self_update(ObMenuFrame *frame, gpointer data)
114 {
115 ObMenu *menu = frame->menu;
116 guint i;
117 GSList *it, *next;
118
119 it = desktop_menus;
120 for (i = 0; i < screen_num_desktops; ++i) {
121 if (!it) {
122 ObMenu *submenu;
123 gchar *name = g_strdup_printf("%s-%u", MENU_NAME, i);
124 DesktopData *data = g_new(DesktopData, 1);
125
126 data->desktop = i;
127 submenu = menu_new(name, screen_desktop_names[i], data);
128 menu_set_update_func(submenu, desk_menu_update);
129 menu_set_execute_func(submenu, desk_menu_execute);
130 menu_set_destroy_func(submenu, desk_menu_destroy);
131
132 menu_add_submenu(menu, i, name);
133
134 g_free(name);
135
136 desktop_menus = g_slist_append(desktop_menus, submenu);
137 } else
138 it = g_slist_next(it);
139 }
140 for (; it; it = next, ++i) {
141 next = g_slist_next(it);
142 menu_free(it->data);
143 desktop_menus = g_slist_delete_link(desktop_menus, it);
144 menu_entry_remove(menu_find_entry_id(menu, i));
145 }
146 }
147
148 void client_list_menu_startup()
149 {
150 ObMenu *menu;
151
152 menu = menu_new(MENU_NAME, _("Desktops"), NULL);
153 menu_set_update_func(menu, self_update);
154 }
This page took 0.041079 seconds and 5 git commands to generate.