]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/client_list_menu.c
va_start needs va_end
[mikachu/openbox.git] / 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 = NULL;
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_append(acts, act);
69             act = action_from_string("Desktop",
70                                      OB_USER_ACTION_MENU_SELECTION);
71             act->data.desktop.desk = d->desktop;
72             acts = g_slist_append(acts, act);
73             e = menu_add_normal(menu, i,
74                                 (c->iconic ? c->icon_title : c->title), acts);
75
76             if ((icon = client_icon(c, 32, 32))) {
77                 e->data.normal.icon_width = icon->width;
78                 e->data.normal.icon_height = icon->height;
79                 e->data.normal.icon_data = icon->data;
80             }
81         }
82     }
83
84     if (empty) {
85         /* no entries */
86
87         GSList *acts = NULL;
88         ObAction* act;
89         act = action_from_string("Desktop", OB_USER_ACTION_MENU_SELECTION);
90         act->data.desktop.desk = d->desktop;
91         acts = g_slist_append(acts, act);
92         menu_add_normal(menu, 0, _("Go there..."), acts);
93     }
94 }
95
96 /* executes it using the client in the actions, since we set that
97    when we make the actions! */
98 static void desk_menu_execute(ObMenuEntry *self, guint state, gpointer data)
99 {
100     ObAction *a;
101
102     if (self->data.normal.actions) {
103         a = self->data.normal.actions->data;
104         action_run(self->data.normal.actions, a->data.any.c, state);
105     }
106 }
107
108 static void desk_menu_destroy(ObMenu *menu, gpointer data)
109 {
110     DesktopData *d = data;
111
112     g_free(d);
113
114     desktop_menus = g_slist_remove(desktop_menus, menu);
115 }
116
117 static void self_update(ObMenuFrame *frame, gpointer data)
118 {
119     ObMenu *menu = frame->menu;
120     guint i;
121     GSList *it, *next;
122     
123     it = desktop_menus;
124     for (i = 0; i < screen_num_desktops; ++i) {
125         if (!it) {
126             ObMenu *submenu;
127             gchar *name = g_strdup_printf("%s-%u", MENU_NAME, i);
128             DesktopData *data = g_new(DesktopData, 1);
129
130             data->desktop = i;
131             submenu = menu_new(name, screen_desktop_names[i], data);
132             menu_set_update_func(submenu, desk_menu_update);
133             menu_set_execute_func(submenu, desk_menu_execute);
134             menu_set_destroy_func(submenu, desk_menu_destroy);
135
136             menu_add_submenu(menu, i, name);
137
138             g_free(name);
139
140             desktop_menus = g_slist_append(desktop_menus, submenu);
141         } else
142             it = g_slist_next(it);
143     }
144     for (; it; it = next, ++i) {
145         next = g_slist_next(it);
146         menu_free(it->data);
147         desktop_menus = g_slist_delete_link(desktop_menus, it);
148         menu_entry_remove(menu_find_entry_id(menu, i));
149     }
150 }
151
152 void client_list_menu_startup()
153 {
154     ObMenu *menu;
155
156     menu = menu_new(MENU_NAME, _("Desktops"), NULL);
157     menu_set_update_func(menu, self_update);
158 }