summaryrefslogtreecommitdiff
path: root/src/windowlist.c
blob: b251e5747a7874e54d6da8fc4d877203676d5c69 (plain)
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
/*
 *  xfdesktop - xfce4's desktop manager
 *
 *  Copyright (c) 2004 Brian Tarricone, <bjt23@cornell.edu>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Library General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 *  Random portions taken from or inspired by the original xfdesktop for xfce4:
 *     Copyright (C) 2002-2003 Jasper Huijsmans (huysmans@users.sourceforge.net)
 *     Copyright (C) 2003 Benedikt Meurer <benedikt.meurer@unix-ag.uni-siegen.de>
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif

#ifdef HAVE_STRING_H
#include <string.h>
#endif

#include <gtk/gtk.h>

#include <libxfce4util/libxfce4util.h>
#include <libxfcegui4/libxfcegui4.h>

#include "windowlist.h"
#include "xfdesktop-common.h"

#define WLIST_MAXLEN 25

static GtkWidget *windowlist = NULL;
static gboolean show_windowlist = TRUE;
static gboolean show_windowlist_icons = TRUE;

static void
set_num_workspaces(GtkWidget *w, gpointer num)
{
	static Atom xa_NET_NUMBER_OF_DESKTOPS = 0;
	XClientMessageEvent sev;
	gint n;
	GdkScreen *gscreen = gtk_widget_get_screen(w);
	GdkWindow *groot = gdk_screen_get_root_window(gscreen);

    TRACE ("dummy");
    if(!xa_NET_NUMBER_OF_DESKTOPS) {
		xa_NET_NUMBER_OF_DESKTOPS = XInternAtom(GDK_DISPLAY(),
				"_NET_NUMBER_OF_DESKTOPS", False);
	}

    n = GPOINTER_TO_INT(num);

	sev.type = ClientMessage;
	sev.display = GDK_DISPLAY();
	sev.format = 32;
	sev.window = GDK_WINDOW_XID(groot);
	sev.message_type = xa_NET_NUMBER_OF_DESKTOPS;
	sev.data.l[0] = n;

	gdk_error_trap_push();

	XSendEvent(GDK_DISPLAY(), GDK_WINDOW_XID(groot), False,
			SubstructureNotifyMask | SubstructureRedirectMask,
			(XEvent *)&sev);

	gdk_flush();
	gdk_error_trap_pop();
}

static void
activate_window(GtkWidget *w, gpointer user_data)
{
	NetkWindow *netk_window = user_data;
	
	netk_workspace_activate(netk_window_get_workspace(netk_window));
	g_usleep (500);
	netk_window_activate(netk_window);
}

static GtkWidget *
menu_item_from_netk_window(NetkWindow *netk_window, gint icon_width,
		gint icon_height)
{
	GtkWidget *mi, *img = NULL;
	const gchar *title;
	NetkScreen *netk_screen;
	NetkWorkspace *netk_workspace, *active_workspace;
	gchar *label;
	GdkPixbuf *icon, *tmp;
	gint w, h;
	
	title = netk_window_get_name(netk_window);
	if(!title)
		return NULL;
	
	netk_screen = netk_window_get_screen(netk_window);
	active_workspace = netk_screen_get_active_workspace(netk_screen);
	netk_workspace = netk_window_get_workspace(netk_window);
	
	label = g_malloc0(WLIST_MAXLEN+13);
	
	if(netk_workspace != active_workspace)
		g_strlcat(label, "<i>", WLIST_MAXLEN+13);
	if(netk_window_is_minimized(netk_window))
		g_strlcat(label, "[", WLIST_MAXLEN+13);
	g_strlcat(label, title, strlen(label)+WLIST_MAXLEN);
	if(strlen(title) > WLIST_MAXLEN)
		g_strlcat(label, "...", WLIST_MAXLEN+13);
	if(netk_window_is_minimized(netk_window))
		g_strlcat(label, "]", WLIST_MAXLEN+13);
	if(netk_workspace != active_workspace)
		g_strlcat(label, "</i>", WLIST_MAXLEN+13);
	
	if(show_windowlist_icons) {
		icon = netk_window_get_icon(netk_window);
		w = gdk_pixbuf_get_width(icon);
		h = gdk_pixbuf_get_height(icon);
		if(w != icon_width || h != icon_height) {
			tmp = gdk_pixbuf_scale_simple(icon, icon_width, icon_height,
					GDK_INTERP_BILINEAR);
			img = gtk_image_new_from_pixbuf(tmp);
			g_object_unref(G_OBJECT(tmp));
		} else
			img = gtk_image_new_from_pixbuf(icon);
	}
	
	if(img) {
		mi = gtk_image_menu_item_new_with_label(label);
		gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(mi), img);
	} else
		mi = gtk_menu_item_new_with_label(label);
	gtk_label_set_use_markup(GTK_LABEL(gtk_bin_get_child(GTK_BIN(mi))), TRUE);
	
	g_free(label);
	
	return mi;
}

static GtkWidget *
windowlist_create(GdkScreen *gscreen)
{
	GtkWidget *menu, *mi, *label, *img;
	GtkStyle *style;
	NetkScreen *netk_screen;
	gint nworkspaces, i;
	NetkWorkspace *active_workspace, *netk_workspace;
	gchar *ws_label, *rm_label;
	const gchar *ws_name = NULL;
	GList *windows, *l;
	NetkWindow *netk_window;
	gint w, h;
	
	gtk_icon_size_lookup(GTK_ICON_SIZE_MENU, &w, &h);
	
	menu = gtk_menu_new();
	gtk_widget_show(menu);
	style = gtk_widget_get_style(menu);
	
	netk_screen = netk_screen_get(gdk_screen_get_number(gscreen));
	nworkspaces = netk_screen_get_workspace_count(netk_screen);
	active_workspace = netk_screen_get_active_workspace(netk_screen);
	
	for(i = 0; i < nworkspaces; i++) {
		netk_workspace = netk_screen_get_workspace(netk_screen, i);
		ws_name = netk_workspace_get_name(netk_workspace);
		
		if(netk_workspace == active_workspace) {
			if(!ws_name || atoi(ws_name) == i+1)
				ws_label = g_strdup_printf(_("<b>Workspace %d</b>"), i+1);
			else
				ws_label = g_strdup_printf("<b>%s</b>", ws_name);
		} else {
			if(!ws_name || atoi(ws_name) == i+1)
				ws_label = g_strdup_printf(_("<i>Workspace %d</i>"), i+1);
			else
				ws_label = g_strdup_printf("<i>%s</i>", ws_name);
		}
		mi = gtk_menu_item_new_with_label(ws_label);
		g_free(ws_label);
		label = gtk_bin_get_child(GTK_BIN(mi));
		gtk_label_set_use_markup(GTK_LABEL(label), TRUE);
		gtk_widget_show(mi);
		gtk_menu_shell_append(GTK_MENU_SHELL(menu), mi);
		g_signal_connect_swapped(G_OBJECT(mi), "activate",
				G_CALLBACK(netk_workspace_activate), netk_workspace);
		
		mi = gtk_separator_menu_item_new();
		gtk_widget_show(mi);
		gtk_menu_shell_append(GTK_MENU_SHELL(menu), mi);
		
		windows = netk_screen_get_windows_stacked(netk_screen);
		for(l = windows; l; l = l->next) {
			netk_window = l->data;
			
			if(netk_window_get_workspace(netk_window) != netk_workspace
					|| (netk_window_is_sticky(netk_window)
						&& netk_workspace != active_workspace)
					|| netk_window_is_skip_pager(netk_window)
					|| netk_window_is_skip_tasklist(netk_window))
			{
				/* the window isn't on the current WS,
				 * OR,
				 * the window is sticky and is not on the active workspace,
				 * OR,
				 * the window is set to skip the pager or tasklist
				 */
				continue;
			}
			
			mi = menu_item_from_netk_window(netk_window, w, h);
			if(!mi)
				continue;
			if(netk_workspace != active_workspace) {
				gtk_widget_modify_fg(gtk_bin_get_child(GTK_BIN(mi)),
						GTK_STATE_NORMAL, &(style->fg[GTK_STATE_INSENSITIVE]));
			}
			gtk_widget_show(mi);
			gtk_menu_shell_append(GTK_MENU_SHELL(menu), mi);
			g_signal_connect(G_OBJECT(mi), "activate",
					G_CALLBACK(activate_window), netk_window);
		}
		
		mi = gtk_separator_menu_item_new();
		gtk_widget_show(mi);
		gtk_menu_shell_append(GTK_MENU_SHELL(menu), mi);
	}
	
	if(show_windowlist_icons) {
		img = gtk_image_new_from_stock(GTK_STOCK_ADD, GTK_ICON_SIZE_MENU);
		mi = gtk_image_menu_item_new_with_mnemonic(_("_Add Workspace"));
		gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(mi), img);
	} else
		mi = gtk_menu_item_new_with_mnemonic(_("_Add Workspace"));
	gtk_widget_show(mi);
	gtk_menu_shell_append(GTK_MENU_SHELL(menu), mi);
	g_signal_connect(G_OBJECT(mi), "activate",
			G_CALLBACK(set_num_workspaces), GINT_TO_POINTER(nworkspaces+1));
	
	if(!ws_name || atoi(ws_name) == nworkspaces)
		rm_label = g_strdup_printf(_("_Remove Workspace %d"), nworkspaces);
	else
		rm_label = g_strdup_printf(_("_Remove Workspace '%s'"), ws_name);
	if(show_windowlist_icons) {
		img = gtk_image_new_from_stock(GTK_STOCK_REMOVE, GTK_ICON_SIZE_MENU);
		mi = gtk_image_menu_item_new_with_mnemonic(rm_label);
		gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(mi), img);
	} else
		mi = gtk_menu_item_new_with_mnemonic(rm_label);
	g_free(rm_label);
	if(nworkspaces == 1)
		gtk_widget_set_sensitive(mi, FALSE);
	gtk_widget_show(mi);
	gtk_menu_shell_append(GTK_MENU_SHELL(menu), mi);
	g_signal_connect(G_OBJECT(mi), "activate",
			G_CALLBACK(set_num_workspaces), GINT_TO_POINTER(nworkspaces-1));
	
	return menu;
}

void
popup_windowlist(GdkScreen *gscreen, gint button, guint32 time)
{
	if(windowlist) {
		gtk_widget_destroy(windowlist);
		windowlist = NULL;
	}
	
	if(!show_windowlist)
		return;
	
	windowlist = windowlist_create(gscreen);
	gtk_menu_set_screen(GTK_MENU(windowlist), gscreen);
	gtk_menu_popup(GTK_MENU(windowlist), NULL, NULL, NULL, NULL, button, time);
}

void
windowlist_init(McsClient *mcs_client)
{
	McsSetting *setting = NULL;
	
	if(mcs_client) {
		if(MCS_SUCCESS == mcs_client_get_setting(mcs_client, "showwl",
				BACKDROP_CHANNEL, &setting))
		{
			show_windowlist = setting->data.v_int;
			mcs_setting_free(setting);
			setting = NULL;
		}
		
		if(MCS_SUCCESS == mcs_client_get_setting(mcs_client, "showwli",
				BACKDROP_CHANNEL, &setting))
		{
			show_windowlist_icons = setting->data.v_int;
			mcs_setting_free(setting);
			setting = NULL;
		}
	}
}

gboolean
windowlist_settings_changed(McsClient *client, McsAction action,
		McsSetting *setting, gpointer user_data)
{
	switch(action) {
		case MCS_ACTION_NEW:
		case MCS_ACTION_CHANGED:
			if(!strcmp(setting->name, "showwl")) {
				show_windowlist = setting->data.v_int;
				return TRUE;
			} else if(!strcmp(setting->name, "showwli")) {
				show_windowlist_icons = setting->data.v_int;
				return TRUE;
			}
			break;
		
		case MCS_ACTION_DELETED:
			break;
	}
	
	return FALSE;
}

void
windowlist_cleanup()
{
	if(windowlist) {
		gtk_widget_destroy(windowlist);
		windowlist = NULL;
	}
}