Italian translation update.
[rox-filer.git] / ROX-Filer / src / pinboard.c
blobc1bced9183800b87a75b7d3e95a5bdb2183c5722
1 /*
2 * ROX-Filer, filer for the ROX desktop project
3 * Copyright (C) 2006, Thomas Leonard and others (see changelog for details).
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation; either version 2 of the License, or (at your option)
8 * any later version.
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
17 * Place, Suite 330, Boston, MA 02111-1307 USA
20 /* pinboard.c - icons on the desktop background */
22 #include "config.h"
24 #include <ctype.h>
25 #include <string.h>
26 #include <stdio.h>
27 #include <errno.h>
28 #include <gtk/gtk.h>
29 #include <gdk/gdkx.h>
30 #include <stdlib.h>
31 #include <math.h>
32 #include <libxml/parser.h>
33 #include <signal.h>
35 #include "global.h"
37 #include "pinboard.h"
38 #include "main.h"
39 #include "dnd.h"
40 #include "pixmaps.h"
41 #include "type.h"
42 #include "choices.h"
43 #include "support.h"
44 #include "gui_support.h"
45 #include "options.h"
46 #include "diritem.h"
47 #include "bind.h"
48 #include "icon.h"
49 #include "run.h"
50 #include "appinfo.h"
51 #include "menu.h"
52 #include "xml.h"
53 #include "tasklist.h"
54 #include "panel.h" /* For panel_mark_used() */
55 #include "wrapped.h"
56 #include "dropbox.h"
58 static gboolean tmp_icon_selected = FALSE; /* When dragging */
60 static GtkWidget *set_backdrop_dialog = NULL;
62 struct _Pinboard {
63 guchar *name; /* Leaf name */
64 GList *icons;
65 GtkStyle *style;
67 gchar *backdrop; /* Pathname */
68 BackdropStyle backdrop_style;
69 gint to_backdrop_app; /* pipe FD, or -1 */
70 gint from_backdrop_app; /* pipe FD, or -1 */
71 gint input_tag;
72 GString *input_buffer;
74 GtkWidget *window; /* Screen-sized window */
75 GtkWidget *fixed;
76 GdkGC *shadow_gc;
79 #define IS_PIN_ICON(obj) G_TYPE_CHECK_INSTANCE_TYPE((obj), pin_icon_get_type())
81 typedef struct _PinIconClass PinIconClass;
82 typedef struct _PinIcon PinIcon;
84 struct _PinIconClass {
85 IconClass parent;
88 struct _PinIcon {
89 Icon icon;
91 int x, y;
92 GtkWidget *win;
93 GtkWidget *widget; /* The drawing area for the icon */
94 GtkWidget *label;
97 /* The number of pixels between the bottom of the image and the top
98 * of the text.
100 #define GAP 4
102 /* The size of the border around the icon which is used when winking */
103 #define WINK_FRAME 2
105 /* Grid sizes */
106 #define GRID_STEP_FINE 2
107 #define GRID_STEP_MED 16
108 #define GRID_STEP_COARSE 32
110 /* Used in options */
111 #define CORNER_TOP_LEFT 0
112 #define CORNER_TOP_RIGHT 1
113 #define CORNER_BOTTOM_LEFT 2
114 #define CORNER_BOTTOM_RIGHT 3
116 #define DIR_HORZ 0
117 #define DIR_VERT 1
119 static PinIcon *current_wink_icon = NULL;
120 static gint wink_timeout;
122 /* Used for the text colours (only) in the icons */
123 GdkColor pin_text_fg_col, pin_text_bg_col;
124 PangoFontDescription *pinboard_font = NULL; /* NULL => Gtk default */
126 static GdkColor pin_text_shadow_col;
128 Pinboard *current_pinboard = NULL;
129 static gint loading_pinboard = 0; /* Non-zero => loading */
131 /* The Icon that was used to start the current drag, if any */
132 Icon *pinboard_drag_in_progress = NULL;
134 /* For selecting groups of icons */
135 static gboolean lasso_in_progress = FALSE;
136 static int lasso_rect_x1, lasso_rect_x2;
137 static int lasso_rect_y1, lasso_rect_y2;
139 /* Tracking icon positions */
140 static GHashTable *placed_icons=NULL;
142 Option o_pinboard_tasklist_per_workspace;
143 static Option o_pinboard_clamp_icons, o_pinboard_grid_step;
144 static Option o_pinboard_fg_colour, o_pinboard_bg_colour;
145 static Option o_pinboard_tasklist, o_forward_buttons_13;
146 static Option o_iconify_start, o_iconify_dir;
147 static Option o_label_font, o_pinboard_shadow_colour;
148 static Option o_pinboard_shadow_labels;
149 static Option o_blackbox_hack;
151 static Option o_top_margin, o_bottom_margin, o_left_margin, o_right_margin;
152 static Option o_pinboard_image_scaling;
154 /* Static prototypes */
155 static GType pin_icon_get_type(void);
156 static void set_size_and_style(PinIcon *pi);
157 static gint draw_icon(GtkWidget *widget, GdkEventExpose *event, PinIcon *pi);
158 static gint end_wink(gpointer data);
159 static gboolean button_release_event(GtkWidget *widget,
160 GdkEventButton *event,
161 PinIcon *pi);
162 static gboolean enter_notify(GtkWidget *widget,
163 GdkEventCrossing *event,
164 PinIcon *pi);
165 static gint leave_notify(GtkWidget *widget,
166 GdkEventCrossing *event,
167 PinIcon *pi);
168 static gboolean button_press_event(GtkWidget *widget,
169 GdkEventButton *event,
170 PinIcon *pi);
171 static gboolean scroll_event(GtkWidget *widget,
172 GdkEventScroll *event);
173 static gint icon_motion_notify(GtkWidget *widget,
174 GdkEventMotion *event,
175 PinIcon *pi);
176 static const char *pin_from_file(gchar *line);
177 static void snap_to_grid(int *x, int *y);
178 static void offset_from_centre(PinIcon *pi, int *x, int *y);
179 static gboolean drag_motion(GtkWidget *widget,
180 GdkDragContext *context,
181 gint x,
182 gint y,
183 guint time,
184 PinIcon *pi);
185 static void drag_set_pinicon_dest(PinIcon *pi);
186 static void drag_leave(GtkWidget *widget,
187 GdkDragContext *context,
188 guint32 time,
189 PinIcon *pi);
190 static gboolean bg_drag_motion(GtkWidget *widget,
191 GdkDragContext *context,
192 gint x,
193 gint y,
194 guint time,
195 gpointer data);
196 static gboolean bg_drag_leave(GtkWidget *widget,
197 GdkDragContext *context,
198 guint32 time,
199 gpointer data);
200 static gboolean bg_expose(GtkWidget *window,
201 GdkEventExpose *event, gpointer data);
202 static void drag_end(GtkWidget *widget,
203 GdkDragContext *context,
204 PinIcon *pi);
205 static void reshape_all(void);
206 static void pinboard_check_options(void);
207 static void pinboard_load_from_xml(xmlDocPtr doc);
208 static void pinboard_clear(void);
209 static void pinboard_save(void);
210 static PinIcon *pin_icon_new(const char *pathname, const char *name);
211 static void pin_icon_destroyed(PinIcon *pi);
212 static void pin_icon_set_tip(PinIcon *pi);
213 static void pinboard_show_menu(GdkEventButton *event, PinIcon *pi);
214 static void create_pinboard_window(Pinboard *pinboard);
215 static void reload_backdrop(Pinboard *pinboard,
216 const gchar *backdrop,
217 BackdropStyle backdrop_style);
218 static void pinboard_reshape_icon(Icon *icon);
219 static gint draw_wink(GtkWidget *widget, GdkEventExpose *event, PinIcon *pi);
220 static void abandon_backdrop_app(Pinboard *pinboard);
221 static void drag_backdrop_dropped(GtkWidget *drop_box,
222 const guchar *path,
223 GtkWidget *dialog);
224 static void backdrop_response(GtkWidget *dialog, gint response, gpointer data);
225 static void find_free_rect(Pinboard *pinboard, GdkRectangle *rect,
226 gboolean old, int start, int direction);
227 static void update_pinboard_font(void);
228 static void draw_lasso(void);
229 static gint lasso_motion(GtkWidget *widget, GdkEventMotion *event, gpointer d);
230 static void clear_backdrop(GtkWidget *drop_box, gpointer data);
231 static void radios_changed(Radios *radios, gpointer data);
232 static void update_radios(GtkWidget *dialog);
233 static void pinboard_set_backdrop_box(void);
235 /****************************************************************
236 * EXTERNAL INTERFACE *
237 ****************************************************************/
239 void pinboard_init(void)
241 option_add_string(&o_pinboard_fg_colour, "pinboard_fg_colour", "#fff");
242 option_add_string(&o_pinboard_bg_colour, "pinboard_bg_colour", "#888");
243 option_add_string(&o_pinboard_shadow_colour, "pinboard_shadow_colour",
244 "#000");
245 option_add_string(&o_label_font, "label_font", "");
246 option_add_int(&o_pinboard_shadow_labels, "pinboard_shadow_labels", 1);
248 option_add_int(&o_pinboard_clamp_icons, "pinboard_clamp_icons", 1);
249 option_add_int(&o_pinboard_grid_step, "pinboard_grid_step",
250 GRID_STEP_COARSE);
251 option_add_int(&o_pinboard_tasklist, "pinboard_tasklist", TRUE);
252 option_add_int(&o_pinboard_tasklist_per_workspace, "pinboard_tasklist_per_workspace", FALSE);
253 option_add_int(&o_forward_buttons_13, "pinboard_forward_buttons_13",
254 FALSE);
256 option_add_int(&o_iconify_start, "iconify_start", CORNER_TOP_RIGHT);
257 option_add_int(&o_iconify_dir, "iconify_dir", DIR_VERT);
259 option_add_int(&o_blackbox_hack, "blackbox_hack", FALSE);
261 option_add_int(&o_top_margin, "pinboard_top_margin", 0);
262 option_add_int(&o_bottom_margin, "pinboard_bottom_margin", 0);
263 option_add_int(&o_left_margin, "pinboard_left_margin", 0);
264 option_add_int(&o_right_margin, "pinboard_right_margin", 0);
266 option_add_int(&o_pinboard_image_scaling, "pinboard_image_scaling", 0);
268 option_add_notify(pinboard_check_options);
270 gdk_color_parse(o_pinboard_fg_colour.value, &pin_text_fg_col);
271 gdk_color_parse(o_pinboard_bg_colour.value, &pin_text_bg_col);
272 gdk_color_parse(o_pinboard_shadow_colour.value, &pin_text_shadow_col);
273 update_pinboard_font();
275 placed_icons=g_hash_table_new(g_str_hash, g_str_equal);
278 /* Load 'pb_<pinboard>' config file from Choices (if it exists)
279 * and make it the current pinboard.
280 * Any existing pinned items are removed. You must call this
281 * at least once before using the pinboard. NULL disables the
282 * pinboard.
284 void pinboard_activate(const gchar *name)
286 Pinboard *old_board = current_pinboard;
287 guchar *path, *slash;
289 /* Treat an empty name the same as NULL */
290 if (name && !*name)
291 name = NULL;
293 if (old_board)
294 pinboard_clear();
296 if (!name)
298 if (number_of_windows < 1 && gtk_main_level() > 0)
299 gtk_main_quit();
301 gdk_property_delete(gdk_get_default_root_window(),
302 gdk_atom_intern("_XROOTPMAP_ID", FALSE));
303 return;
306 number_of_windows++;
308 slash = strchr(name, '/');
309 if (slash)
311 if (access(name, F_OK))
312 path = NULL; /* File does not (yet) exist */
313 else
314 path = g_strdup(name);
316 else
318 guchar *leaf;
320 leaf = g_strconcat("pb_", name, NULL);
321 path = choices_find_xdg_path_load(leaf, PROJECT, SITE);
322 g_free(leaf);
325 current_pinboard = g_new(Pinboard, 1);
326 current_pinboard->name = g_strdup(name);
327 current_pinboard->icons = NULL;
328 current_pinboard->window = NULL;
329 current_pinboard->backdrop = NULL;
330 current_pinboard->backdrop_style = BACKDROP_NONE;
331 current_pinboard->to_backdrop_app = -1;
332 current_pinboard->from_backdrop_app = -1;
333 current_pinboard->input_tag = -1;
334 current_pinboard->input_buffer = NULL;
336 create_pinboard_window(current_pinboard);
338 loading_pinboard++;
339 if (path)
341 xmlDocPtr doc;
342 doc = xmlParseFile(path);
343 if (doc)
345 pinboard_load_from_xml(doc);
346 xmlFreeDoc(doc);
347 reload_backdrop(current_pinboard,
348 current_pinboard->backdrop,
349 current_pinboard->backdrop_style);
351 else
353 parse_file(path, pin_from_file);
354 info_message(_("Your old pinboard file has been "
355 "converted to the new XML format."));
356 pinboard_save();
358 g_free(path);
360 else
361 pinboard_pin(home_dir, "Home",
362 4 + ICON_WIDTH / 2,
363 4 + ICON_HEIGHT / 2,
364 NULL);
365 loading_pinboard--;
367 if (o_pinboard_tasklist.int_value)
368 tasklist_set_active(TRUE);
371 /* Return the window of the current pinboard, or NULL.
372 * Used to make sure lowering the panels doesn't lose them...
374 GdkWindow *pinboard_get_window(void)
376 if (current_pinboard)
377 return current_pinboard->window->window;
378 return NULL;
381 const char *pinboard_get_name(void)
383 g_return_val_if_fail(current_pinboard != NULL, NULL);
385 return current_pinboard->name;
388 /* Add widget to the pinboard. Caller is responsible for coping with pinboard
389 * being cleared.
391 void pinboard_add_widget(GtkWidget *widget, const gchar *name)
393 GtkRequisition req;
394 GdkRectangle *rect=NULL;
395 gboolean found=FALSE;
397 g_return_if_fail(current_pinboard != NULL);
399 gtk_fixed_put(GTK_FIXED(current_pinboard->fixed), widget, 0, 0);
401 gtk_widget_size_request(widget, &req);
403 if(name) {
404 rect=g_hash_table_lookup(placed_icons, name);
405 if(rect)
406 found=TRUE;
408 /*printf("%s at %p %d\n", name? name: "(nil)", rect, found);*/
410 if(rect) {
411 if(rect->width<req.width || rect->height<req.height) {
412 found=FALSE;
414 } else {
415 rect=g_new(GdkRectangle, 1);
416 rect->width = req.width;
417 rect->height = req.height;
419 /*printf("%s at %d,%d %d\n", name? name: "(nil)", rect->x,
420 rect->y, found);*/
421 find_free_rect(current_pinboard, rect, found,
422 o_iconify_start.int_value, o_iconify_dir.int_value);
423 /*printf("%s at %d,%d %d\n", name? name: "(nil)", rect->x,
424 rect->y, found);*/
426 gtk_fixed_move(GTK_FIXED(current_pinboard->fixed),
427 widget, rect->x, rect->y);
429 /* Store the new position (key and value are never freed) */
430 if(name)
431 g_hash_table_insert(placed_icons, g_strdup(name),
432 rect);
435 void pinboard_moved_widget(GtkWidget *widget, const gchar *name,
436 int x, int y)
438 GdkRectangle *rect;
440 if(!name)
441 return;
442 rect=g_hash_table_lookup(placed_icons, name);
443 if(!rect)
444 return;
446 rect->x=x;
447 rect->y=y;
450 /* Add a new icon to the background.
451 * 'path' should be an absolute pathname.
452 * 'x' and 'y' are the coordinates of the point in the middle of the text.
453 * If they are negative, the icon is placed automatically.
454 * The values then indicate where they should be added.
455 * x: -1 means left, -2 means right
456 * y: -1 means top, -2 means bottom
457 * 'name' is the name to use. If NULL then the leafname of path is used.
458 * If update is TRUE and there's already an icon for that path, it is updated.
460 void pinboard_pin_with_args(const gchar *path, const gchar *name,
461 int x, int y, const gchar *shortcut,
462 const gchar *args, gboolean locked, gboolean update)
464 GtkWidget *align, *vbox;
465 GdkWindow *events;
466 PinIcon *pi;
467 Icon *icon;
469 g_return_if_fail(path != NULL);
470 g_return_if_fail(current_pinboard != NULL);
472 pi = NULL;
474 if (update)
476 GList *iter;
478 for (iter = current_pinboard->icons; iter; iter = iter->next)
480 icon = (Icon *) iter->data;
481 if (strcmp(icon->path, path) == 0)
483 pi = (PinIcon *) icon;
484 break;
487 if (pi)
489 if (x < 0)
490 x = pi->x;
491 if (y < 0)
492 y = pi->y;
493 icon_set_path(icon, path, name);
494 goto out; /* The icon is already on the pinboard. */
498 pi = pin_icon_new(path, name);
499 icon = (Icon *) pi;
501 /* This is a bit complicated...
503 * An icon needs to be a NO_WINDOW widget so that the image can
504 * blend with the background (A ParentRelative window also works, but
505 * is slow, causes the xfree86's memory consumption to grow without
506 * bound, and doesn't even get freed when the filer quits!).
508 * However, the icon also needs to have a window, so we get events
509 * delivered correctly. The solution is to float an InputOnly window
510 * over the icon. Since GtkButton works the same way, we just use
511 * that :-)
514 /* Button takes the initial ref of Icon */
515 pi->win = gtk_button_new();
516 gtk_container_set_border_width(GTK_CONTAINER(pi->win), WINK_FRAME);
517 g_signal_connect(pi->win, "expose-event", G_CALLBACK(draw_wink), pi);
518 gtk_button_set_relief(GTK_BUTTON(pi->win), GTK_RELIEF_NONE);
520 vbox = gtk_vbox_new(FALSE, 0);
521 gtk_container_add(GTK_CONTAINER(pi->win), vbox);
523 align = gtk_alignment_new(0.5, 0.5, 0, 0);
524 pi->widget = gtk_hbox_new(FALSE, 0); /* Placeholder */
525 gtk_container_add(GTK_CONTAINER(align), pi->widget);
527 gtk_box_pack_start(GTK_BOX(vbox), align, FALSE, TRUE, 0);
528 drag_set_pinicon_dest(pi);
529 g_signal_connect(pi->win, "drag_data_get",
530 G_CALLBACK(drag_data_get), NULL);
532 pi->label = wrapped_label_new(icon->item->leafname, 180);
533 gtk_box_pack_start(GTK_BOX(vbox), pi->label, TRUE, TRUE, 0);
535 gtk_fixed_put(GTK_FIXED(current_pinboard->fixed), pi->win, 0, 0);
537 /* find free space for item if position is not given */
538 if (x < 0 || y < 0)
540 GtkRequisition req;
541 GdkRectangle rect;
542 int placement = CORNER_TOP_LEFT;
544 switch (x)
546 case -1:
547 if (y == -2)
548 placement = CORNER_BOTTOM_LEFT;
549 break;
550 case -2:
551 switch (y)
553 case -1:
554 placement = CORNER_TOP_RIGHT;
555 break;
556 case -2:
557 placement = CORNER_BOTTOM_RIGHT;
558 break;
560 break;
563 pinboard_reshape_icon((Icon *) pi);
564 gtk_widget_size_request(pi->widget, &req);
565 rect.width = req.width;
566 rect.height = req.height;
567 gtk_widget_size_request(pi->label, &req);
568 rect.width = MAX(rect.width, req.width);
569 rect.height += req.height;
570 find_free_rect(current_pinboard, &rect, FALSE, placement, DIR_VERT);
571 x = rect.x + rect.width/2;
572 y = rect.y + rect.height/2;
575 gtk_widget_show_all(pi->win);
577 events = GTK_BUTTON(pi->win)->event_window;
578 gdk_window_set_events(events,
579 GDK_EXPOSURE_MASK |
580 GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK |
581 GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
582 GDK_BUTTON1_MOTION_MASK | GDK_BUTTON2_MOTION_MASK |
583 GDK_BUTTON3_MOTION_MASK);
584 g_signal_connect(pi->win, "enter-notify-event",
585 G_CALLBACK(enter_notify), pi);
586 g_signal_connect(pi->win, "leave-notify-event",
587 G_CALLBACK(leave_notify), pi);
588 g_signal_connect(pi->win, "button-press-event",
589 G_CALLBACK(button_press_event), pi);
590 g_signal_connect(pi->win, "button-release-event",
591 G_CALLBACK(button_release_event), pi);
592 g_signal_connect(pi->win, "motion-notify-event",
593 G_CALLBACK(icon_motion_notify), pi);
594 g_signal_connect(pi->win, "expose-event",
595 G_CALLBACK(draw_icon), pi);
596 g_signal_connect_swapped(pi->win, "style-set",
597 G_CALLBACK(pinboard_reshape_icon), pi);
598 g_signal_connect_swapped(pi->win, "destroy",
599 G_CALLBACK(pin_icon_destroyed), pi);
601 current_pinboard->icons = g_list_prepend(current_pinboard->icons, pi);
603 out:
604 snap_to_grid(&x, &y);
606 pi->x = x;
607 pi->y = y;
609 pinboard_reshape_icon((Icon *) pi);
611 gtk_widget_realize(pi->win);
613 pin_icon_set_tip(pi);
615 icon_set_shortcut(icon, shortcut);
616 icon_set_arguments(icon, args);
617 icon->locked = locked;
619 if (!loading_pinboard)
620 pinboard_save();
623 void pinboard_pin(const gchar *path, const gchar *name, int x, int y,
624 const gchar *shortcut)
626 pinboard_pin_with_args(path, name, x, y, shortcut, NULL, FALSE, FALSE);
630 * Remove an icon from the background. The first icon with a matching
631 * path is removed. If name is not NULL then that also must match
633 gboolean pinboard_remove(const gchar *path, const gchar *name)
635 GList *item;
636 PinIcon *pi;
637 Icon *icon;
639 g_return_val_if_fail(current_pinboard != NULL, FALSE);
641 for(item=current_pinboard->icons; item; item=g_list_next(item)) {
642 pi=(PinIcon *) item->data;
643 icon=(Icon *) pi;
645 if(strcmp(icon->path, path)!=0)
646 continue;
648 if(name && strcmp(name, icon->item->leafname)!=0)
649 continue;
651 icon->locked = FALSE;
652 icon_destroy(icon);
654 pinboard_save();
656 return TRUE;
659 return FALSE;
662 /* Put a border around the icon, briefly.
663 * If icon is NULL then cancel any existing wink.
664 * The icon will automatically unhighlight unless timeout is FALSE,
665 * in which case you must call this function again (with NULL or another
666 * icon) to remove the highlight.
668 static void pinboard_wink_item(PinIcon *pi, gboolean timeout)
670 PinIcon *old = current_wink_icon;
672 if (old == pi)
673 return;
675 current_wink_icon = pi;
677 if (old)
679 gtk_widget_queue_draw(old->win);
680 gdk_window_process_updates(old->widget->window, TRUE);
682 if (wink_timeout != -1)
683 g_source_remove(wink_timeout);
686 if (pi)
688 gtk_widget_queue_draw(pi->win);
689 gdk_window_process_updates(pi->widget->window, TRUE);
691 if (timeout)
692 wink_timeout = g_timeout_add(300, end_wink, NULL);
693 else
694 wink_timeout = -1;
698 /* 'app' is saved as the new application to set the backdrop. It will then be
699 * run, and should communicate with the filer as described in the manual.
701 void pinboard_set_backdrop_app(const gchar *app)
703 XMLwrapper *ai;
704 DirItem *item;
705 gboolean can_set;
707 item = diritem_new("");
708 diritem_restat(app, item, NULL);
709 if (!(item->flags & ITEM_FLAG_APPDIR))
711 delayed_error(_("The backdrop handler must be an application "
712 "directory. Drag an application directory "
713 "into the Set Backdrop dialog box, or (for "
714 "programmers) pass it to the SOAP "
715 "SetBackdropApp method."));
716 diritem_free(item);
717 return;
720 ai = appinfo_get(app, item);
721 diritem_free(item);
723 can_set = ai && xml_get_section(ai, ROX_NS, "CanSetBackdrop") != NULL;
724 if (ai)
725 g_object_unref(ai);
727 if (can_set)
728 pinboard_set_backdrop(app, BACKDROP_PROGRAM);
729 else
730 delayed_error(_("You can only set the backdrop to an image "
731 "or to a program which knows how to "
732 "manage ROX-Filer's backdrop.\n\n"
733 "Programmers: the application's AppInfo.xml "
734 "must contain the CanSetBackdrop element, as "
735 "described in ROX-Filer's manual."));
738 /* Open a dialog box allowing the user to set the backdrop */
739 static void pinboard_set_backdrop_box(void)
741 GtkWidget *dialog, *frame, *label, *hbox;
742 GtkBox *vbox;
743 Radios *radios;
745 g_return_if_fail(current_pinboard != NULL);
747 if (set_backdrop_dialog)
748 gtk_widget_destroy(set_backdrop_dialog);
750 dialog = gtk_dialog_new_with_buttons(_("Set backdrop"), NULL,
751 GTK_DIALOG_NO_SEPARATOR,
752 GTK_STOCK_CLOSE, GTK_RESPONSE_OK,
753 NULL);
754 set_backdrop_dialog = dialog;
755 g_signal_connect(dialog, "destroy",
756 G_CALLBACK(gtk_widget_destroyed), &set_backdrop_dialog);
757 vbox = GTK_BOX(GTK_DIALOG(dialog)->vbox);
759 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_MOUSE);
761 label = gtk_label_new(_("Choose a style and drag an image in:"));
762 gtk_misc_set_padding(GTK_MISC(label), 4, 0);
763 gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
764 gtk_box_pack_start(vbox, label, TRUE, TRUE, 4);
766 /* The Centred, Scaled, Fit, Tiled radios... */
767 hbox = gtk_hbox_new(TRUE, 2);
768 gtk_box_pack_start(vbox, hbox, TRUE, TRUE, 4);
770 radios = radios_new(radios_changed, dialog);
771 g_object_set_data(G_OBJECT(dialog), "rox-radios", radios);
772 g_object_set_data(G_OBJECT(dialog), "rox-radios-hbox", hbox);
774 radios_add(radios, _("Centre the image without scaling it"),
775 BACKDROP_CENTRE, _("Centre"));
776 radios_add(radios, _("Scale the image to fit the backdrop area, "
777 "without distorting it"),
778 BACKDROP_SCALE, _("Scale"));
779 radios_add(radios, _("Scale the image to fit the backdrop area, "
780 "regardless of image dimensions - overscale"),
781 BACKDROP_FIT, _("Fit"));
782 radios_add(radios, _("Stretch the image to fill the backdrop area"),
783 BACKDROP_STRETCH, _("Stretch"));
784 radios_add(radios, _("Tile the image over the backdrop area"),
785 BACKDROP_TILE, _("Tile"));
787 update_radios(dialog);
789 /* The drop area... */
790 frame = drop_box_new(_("Drop an image here"));
791 g_object_set_data(G_OBJECT(dialog), "rox-dropbox", frame);
793 radios_pack(radios, GTK_BOX(hbox));
794 gtk_box_pack_start(vbox, frame, TRUE, TRUE, 4);
796 drop_box_set_path(DROP_BOX(frame), current_pinboard->backdrop);
798 g_signal_connect(frame, "path_dropped",
799 G_CALLBACK(drag_backdrop_dropped), dialog);
800 g_signal_connect(frame, "clear",
801 G_CALLBACK(clear_backdrop), dialog);
803 g_signal_connect(dialog, "response",
804 G_CALLBACK(backdrop_response), NULL);
805 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_OK);
807 gtk_widget_show_all(dialog);
810 /* Also used by tasklist.c */
811 void draw_label_shadow(WrappedLabel *wl, GdkRegion *region)
813 GtkWidget *widget;
814 gint x, y;
816 if (!o_pinboard_shadow_labels.int_value)
817 return;
819 gdk_gc_set_clip_region(current_pinboard->shadow_gc, region);
821 widget = GTK_WIDGET(wl);
823 y = widget->allocation.y - wl->y_off;
824 x = widget->allocation.x - wl->x_off -
825 ((wl->text_width - widget->allocation.width) >> 1);
827 gdk_draw_layout(widget->window, current_pinboard->shadow_gc,
828 x + 1, y + 1, wl->layout);
830 if (o_pinboard_shadow_labels.int_value > 1)
831 gdk_draw_layout(widget->window, current_pinboard->shadow_gc,
832 x + 2, y + 2, wl->layout);
834 gdk_gc_set_clip_region(current_pinboard->shadow_gc, NULL);
837 /* Set and save (path, style) as the new backdrop.
838 * If style is BACKDROP_PROGRAM, the program is run to get the backdrop.
839 * Otherwise, the image is displayed now.
841 void pinboard_set_backdrop(const gchar *path, BackdropStyle style)
843 g_return_if_fail((path == NULL && style == BACKDROP_NONE) ||
844 (path != NULL && style != BACKDROP_NONE));
846 if (!current_pinboard)
848 if (!path)
849 return;
850 pinboard_activate("Default");
851 delayed_error(_("No pinboard was in use... "
852 "the 'Default' pinboard has been selected. "
853 "Use 'rox -p=Default' to turn it on in "
854 "future."));
855 g_return_if_fail(current_pinboard != NULL);
858 /* We might have just run the old backdrop program and now
859 * we're going to set a new one! Seems a bit mean...
862 abandon_backdrop_app(current_pinboard);
864 g_free(current_pinboard->backdrop);
865 current_pinboard->backdrop = g_strdup(path);
866 current_pinboard->backdrop_style = style;
867 reload_backdrop(current_pinboard,
868 current_pinboard->backdrop,
869 current_pinboard->backdrop_style);
871 pinboard_save();
873 if (set_backdrop_dialog)
875 DropBox *box = g_object_get_data(G_OBJECT(set_backdrop_dialog),
876 "rox-dropbox");
877 g_return_if_fail(box != NULL);
878 drop_box_set_path(box, current_pinboard->backdrop);
879 update_radios(set_backdrop_dialog);
883 /* Called on xrandr screen resizes */
884 void pinboard_update_size(void)
886 int width, height;
888 if (!current_pinboard)
889 return;
891 gtk_window_get_size(GTK_WINDOW(current_pinboard->window),
892 &width, &height);
894 /* Only update the pinboard's size if the screen gets bigger,
895 * not smaller. Not sure what to do about icons that end up
896 * offscreen if the screen shrinks, but perhaps a good policy
897 * is to leave them there until the screen size is increased
898 * again rather than mess them around. */
899 width = MAX(width, screen_width);
900 height = MAX(height, screen_height);
902 gtk_widget_set_size_request(current_pinboard->window, width, height);
905 /****************************************************************
906 * INTERNAL FUNCTIONS *
907 ****************************************************************/
909 static void backdrop_response(GtkWidget *dialog, gint response, gpointer data)
911 gtk_widget_destroy(dialog);
914 static void clear_backdrop(GtkWidget *drop_box, gpointer data)
916 pinboard_set_backdrop(NULL, BACKDROP_NONE);
919 static void drag_backdrop_dropped(GtkWidget *drop_box,
920 const guchar *path,
921 GtkWidget *dialog)
923 struct stat info;
924 Radios *radios;
926 radios = g_object_get_data(G_OBJECT(dialog), "rox-radios");
927 g_return_if_fail(radios != NULL);
929 if (mc_stat(path, &info))
931 delayed_error(
932 _("Can't access '%s':\n%s"), path,
933 g_strerror(errno));
934 return;
937 if (S_ISDIR(info.st_mode))
939 /* Use this program to set the backdrop */
940 pinboard_set_backdrop_app(path);
942 else if (S_ISREG(info.st_mode))
943 pinboard_set_backdrop(path, radios_get_value(radios));
944 else
945 delayed_error(_("Only files (and certain applications) can be "
946 "used to set the background image."));
949 /* Do this in the idle loop so that we don't try to put an unmanaged
950 * pinboard behind a managed panel (crashes some WMs).
952 static gboolean recreate_pinboard(gchar *name)
954 pinboard_activate(name);
955 g_free(name);
957 return FALSE;
960 static void pinboard_check_options(void)
962 GdkColor n_fg, n_bg, n_shadow;
964 gdk_color_parse(o_pinboard_fg_colour.value, &n_fg);
965 gdk_color_parse(o_pinboard_bg_colour.value, &n_bg);
966 gdk_color_parse(o_pinboard_shadow_colour.value, &n_shadow);
968 if (o_override_redirect.has_changed && current_pinboard)
970 gchar *name;
971 name = g_strdup(current_pinboard->name);
972 pinboard_activate(NULL);
973 g_idle_add((GtkFunction) recreate_pinboard, name);
976 tasklist_set_active(o_pinboard_tasklist.int_value && current_pinboard);
978 if (gdk_color_equal(&n_fg, &pin_text_fg_col) == 0 ||
979 gdk_color_equal(&n_bg, &pin_text_bg_col) == 0 ||
980 gdk_color_equal(&n_shadow, &pin_text_shadow_col) == 0 ||
981 o_pinboard_shadow_labels.has_changed ||
982 o_label_font.has_changed)
984 pin_text_fg_col = n_fg;
985 pin_text_bg_col = n_bg;
986 pin_text_shadow_col = n_shadow;
987 update_pinboard_font();
989 if (current_pinboard)
991 GtkWidget *w = current_pinboard->window;
992 GdkColormap *cm;
994 cm = gtk_widget_get_colormap(w);
996 gdk_colormap_alloc_color(cm, &n_bg, FALSE, TRUE);
997 gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &n_bg);
999 gdk_gc_set_rgb_fg_color(current_pinboard->shadow_gc,
1000 &n_shadow);
1002 abandon_backdrop_app(current_pinboard);
1003 reload_backdrop(current_pinboard,
1004 current_pinboard->backdrop,
1005 current_pinboard->backdrop_style);
1007 reshape_all();
1010 tasklist_style_changed();
1014 static gint end_wink(gpointer data)
1016 pinboard_wink_item(NULL, FALSE);
1017 return FALSE;
1020 /* Sets the appearance from the options and updates the size request of
1021 * the image.
1023 static void set_size_and_style(PinIcon *pi)
1025 Icon *icon = (Icon *) pi;
1026 MaskedPixmap *image = di_image(icon->item);
1027 int iwidth = image->width;
1028 int iheight = image->height;
1030 gtk_widget_modify_fg(pi->label, GTK_STATE_PRELIGHT, &pin_text_fg_col);
1031 gtk_widget_modify_bg(pi->label, GTK_STATE_PRELIGHT, &pin_text_bg_col);
1032 gtk_widget_modify_fg(pi->label, GTK_STATE_NORMAL, &pin_text_fg_col);
1033 gtk_widget_modify_bg(pi->label, GTK_STATE_NORMAL, &pin_text_bg_col);
1034 widget_modify_font(pi->label, pinboard_font);
1036 wrapped_label_set_text(WRAPPED_LABEL(pi->label), icon->item->leafname);
1038 gtk_widget_set_size_request(pi->widget, iwidth, iheight);
1041 static gint draw_icon(GtkWidget *widget, GdkEventExpose *event, PinIcon *pi)
1043 static GtkWidgetClass *parent_class = NULL;
1044 Icon *icon = (Icon *) pi;
1045 DirItem *item = icon->item;
1046 MaskedPixmap *image = di_image(item);
1047 int iwidth = image->width;
1048 int iheight = image->height;
1049 int x, y;
1050 GdkPixbuf *pixbuf;
1052 if (!parent_class)
1054 gpointer c = ((GTypeInstance *) widget)->g_class;
1055 parent_class = (GtkWidgetClass *) g_type_class_peek_parent(c);
1058 x = pi->widget->allocation.x;
1059 y = pi->widget->allocation.y;
1061 gdk_gc_set_clip_region(pi->widget->style->black_gc, event->region);
1063 pixbuf = icon->selected
1064 ? create_spotlight_pixbuf(image->pixbuf,
1065 &pi->widget->style->base[GTK_STATE_SELECTED])
1066 : image->pixbuf;
1068 render_pixbuf(pixbuf,
1069 pi->widget->window,
1070 pi->widget->style->black_gc,
1071 x, y, iwidth, iheight);
1073 if (icon->selected)
1074 g_object_unref(pixbuf);
1076 if (item->flags & ITEM_FLAG_SYMLINK)
1078 render_pixbuf(im_symlink->pixbuf, pi->widget->window,
1079 pi->widget->style->black_gc,
1080 x, y, -1, -1);
1082 else if (item->flags & ITEM_FLAG_MOUNT_POINT)
1084 MaskedPixmap *mp = item->flags & ITEM_FLAG_MOUNTED
1085 ? im_mounted
1086 : im_unmounted;
1088 render_pixbuf(mp->pixbuf, pi->widget->window,
1089 pi->widget->style->black_gc,
1090 x, y, -1, -1);
1093 gdk_gc_set_clip_region(pi->widget->style->black_gc, NULL);
1095 if (icon->selected)
1097 GtkStyle *style = pi->label->style;
1098 GdkGC *gc = style->bg_gc[GTK_STATE_SELECTED];
1100 gdk_gc_set_clip_region(gc, event->region);
1101 gdk_draw_rectangle(pi->label->window, gc, TRUE,
1102 pi->label->allocation.x,
1103 pi->label->allocation.y,
1104 pi->label->allocation.width,
1105 pi->label->allocation.height);
1106 gdk_gc_set_clip_region(gc, NULL);
1108 else if (o_pinboard_shadow_labels.int_value)
1109 draw_label_shadow((WrappedLabel *) pi->label, event->region);
1111 /* Draw children */
1112 gdk_gc_set_clip_region(pi->label->style->fg_gc[GTK_STATE_NORMAL],
1113 event->region);
1114 (parent_class->expose_event)(widget, event);
1115 gdk_gc_set_clip_region(pi->label->style->fg_gc[GTK_STATE_NORMAL], NULL);
1117 /* Stop the button effect */
1118 return TRUE;
1121 static gint draw_wink(GtkWidget *widget, GdkEventExpose *event, PinIcon *pi)
1123 gint x, y, width, height;
1125 if (current_wink_icon != pi)
1126 return FALSE;
1128 x = widget->allocation.x;
1129 y = widget->allocation.y;
1130 width = widget->allocation.width;
1131 height = widget->allocation.height;
1133 gdk_draw_rectangle(widget->window,
1134 pi->widget->style->white_gc,
1135 FALSE,
1136 x, y, width - 1, height - 1);
1137 gdk_draw_rectangle(widget->window,
1138 pi->widget->style->black_gc,
1139 FALSE,
1140 x + 1, y + 1, width - 3, height - 3);
1142 return FALSE;
1145 static gboolean enter_notify(GtkWidget *widget,
1146 GdkEventCrossing *event,
1147 PinIcon *pi)
1149 icon_may_update((Icon *) pi);
1150 pin_icon_set_tip(pi);
1151 return TRUE;
1154 static gint leave_notify(GtkWidget *widget,
1155 GdkEventCrossing *event,
1156 PinIcon *pi)
1158 return TRUE;
1161 static void select_lasso(void)
1163 GList *next;
1164 int minx, miny, maxx, maxy;
1166 g_return_if_fail(lasso_in_progress == TRUE);
1168 minx = MIN(lasso_rect_x1, lasso_rect_x2);
1169 miny = MIN(lasso_rect_y1, lasso_rect_y2);
1170 maxx = MAX(lasso_rect_x1, lasso_rect_x2);
1171 maxy = MAX(lasso_rect_y1, lasso_rect_y2);
1173 for (next = current_pinboard->icons; next; next = next->next)
1175 PinIcon *pi = (PinIcon *) next->data;
1176 GtkAllocation *alloc = &pi->win->allocation;
1177 int cx = alloc->x + alloc->width / 2;
1178 int cy = alloc->y + alloc->height / 2;
1180 if (cx > minx && cx < maxx && cy > miny && cy < maxy)
1181 icon_set_selected((Icon *) pi, TRUE);
1185 static void cancel_lasso(void)
1187 draw_lasso();
1188 lasso_in_progress = FALSE;
1191 static void pinboard_lasso_box(int start_x, int start_y)
1193 if (lasso_in_progress)
1194 cancel_lasso();
1195 lasso_in_progress = TRUE;
1196 lasso_rect_x1 = lasso_rect_x2 = start_x;
1197 lasso_rect_y1 = lasso_rect_y2 = start_y;
1199 draw_lasso();
1202 static gint lasso_motion(GtkWidget *widget, GdkEventMotion *event, gpointer d)
1204 if (!lasso_in_progress)
1205 return FALSE;
1207 if (lasso_rect_x2 != event->x || lasso_rect_y2 != event->y)
1209 draw_lasso();
1210 lasso_rect_x2 = event->x;
1211 lasso_rect_y2 = event->y;
1212 draw_lasso();
1215 return FALSE;
1218 /* Mark the area of the screen covered by the lasso box for redraw */
1219 static void draw_lasso(void)
1221 GdkRectangle area, edge;
1223 if (!lasso_in_progress)
1224 return;
1226 area.x = MIN(lasso_rect_x1, lasso_rect_x2);
1227 area.y = MIN(lasso_rect_y1, lasso_rect_y2);
1228 area.width = ABS(lasso_rect_x1 - lasso_rect_x2);
1229 area.height = ABS(lasso_rect_y1 - lasso_rect_y2);
1231 edge.x = area.x;
1232 edge.y = area.y;
1233 edge.width = area.width;
1235 edge.height = 2; /* Top */
1236 gdk_window_invalidate_rect(current_pinboard->window->window,
1237 &edge, TRUE);
1239 edge.y += area.height - 2; /* Bottom */
1240 gdk_window_invalidate_rect(current_pinboard->window->window,
1241 &edge, TRUE);
1243 edge.y = area.y;
1244 edge.height = area.height;
1245 edge.width = 2; /* Left */
1246 gdk_window_invalidate_rect(current_pinboard->window->window,
1247 &edge, TRUE);
1249 edge.x += area.width - 2; /* Right */
1250 gdk_window_invalidate_rect(current_pinboard->window->window,
1251 &edge, TRUE);
1254 static void perform_action(PinIcon *pi, GdkEventButton *event)
1256 BindAction action;
1257 Icon *icon = (Icon *) pi;
1259 action = bind_lookup_bev(pi ? BIND_PINBOARD_ICON : BIND_PINBOARD,
1260 event);
1262 /* Actions that can happen with or without an icon */
1263 switch (action)
1265 case ACT_LASSO_CLEAR:
1266 icon_select_only(NULL);
1267 /* (no break) */
1268 case ACT_LASSO_MODIFY:
1269 pinboard_lasso_box(event->x, event->y);
1270 return;
1271 case ACT_CLEAR_SELECTION:
1272 icon_select_only(NULL);
1273 return;
1274 case ACT_POPUP_MENU:
1275 dnd_motion_ungrab();
1276 pinboard_show_menu(event, pi);
1277 return;
1278 case ACT_IGNORE:
1279 return;
1280 default:
1281 break;
1284 g_return_if_fail(pi != NULL);
1286 switch (action)
1288 case ACT_OPEN_ITEM:
1289 dnd_motion_ungrab();
1290 pinboard_wink_item(pi, TRUE);
1291 if (event->type == GDK_2BUTTON_PRESS)
1292 icon_set_selected(icon, FALSE);
1293 icon_run(icon);
1294 break;
1295 case ACT_EDIT_ITEM:
1296 dnd_motion_ungrab();
1297 pinboard_wink_item(pi, TRUE);
1298 if (event->type == GDK_2BUTTON_PRESS)
1299 icon_set_selected(icon, FALSE);
1300 run_diritem(icon->path, icon->item, NULL, NULL, TRUE);
1301 break;
1302 case ACT_PRIME_AND_SELECT:
1303 if (!icon->selected)
1304 icon_select_only(icon);
1305 dnd_motion_start(MOTION_READY_FOR_DND);
1306 break;
1307 case ACT_PRIME_AND_TOGGLE:
1308 icon_set_selected(icon, !icon->selected);
1309 dnd_motion_start(MOTION_READY_FOR_DND);
1310 break;
1311 case ACT_PRIME_FOR_DND:
1312 dnd_motion_start(MOTION_READY_FOR_DND);
1313 break;
1314 case ACT_TOGGLE_SELECTED:
1315 icon_set_selected(icon, !icon->selected);
1316 break;
1317 case ACT_SELECT_EXCL:
1318 icon_select_only(icon);
1319 break;
1320 default:
1321 g_warning("Unsupported action : %d\n", action);
1322 break;
1326 static void forward_to_root(GdkEventButton *event)
1328 XButtonEvent xev;
1330 if (event->type == GDK_BUTTON_PRESS)
1332 xev.type = ButtonPress;
1333 if (!o_blackbox_hack.int_value)
1334 XUngrabPointer(gdk_display, event->time);
1336 else
1337 xev.type = ButtonRelease;
1339 xev.window = gdk_x11_get_default_root_xwindow();
1340 xev.root = xev.window;
1341 xev.subwindow = None;
1342 xev.time = event->time;
1343 xev.x = event->x_root; /* Needed for icewm */
1344 xev.y = event->y_root;
1345 xev.x_root = event->x_root;
1346 xev.y_root = event->y_root;
1347 xev.state = event->state;
1348 xev.button = event->button;
1349 xev.same_screen = True;
1351 XSendEvent(gdk_display, xev.window, False,
1352 ButtonPressMask | ButtonReleaseMask, (XEvent *) &xev);
1355 #define FORWARDED_BUTTON(pi, b) ((b) == 2 || \
1356 (((b) == 3 || (b) == 1) && o_forward_buttons_13.int_value && !pi))
1358 /* pi is NULL if this is a root event */
1359 static gboolean button_release_event(GtkWidget *widget,
1360 GdkEventButton *event,
1361 PinIcon *pi)
1363 if (FORWARDED_BUTTON(pi, event->button))
1364 forward_to_root(event);
1365 else if (dnd_motion_release(event))
1367 if (motion_buttons_pressed == 0 && lasso_in_progress)
1369 select_lasso();
1370 cancel_lasso();
1372 return FALSE;
1375 perform_action(pi, event);
1377 return TRUE;
1380 /* pi is NULL if this is a root event */
1381 static gboolean button_press_event(GtkWidget *widget,
1382 GdkEventButton *event,
1383 PinIcon *pi)
1385 /* Just in case we've jumped in front of everything... */
1386 gdk_window_lower(current_pinboard->window->window);
1388 if (FORWARDED_BUTTON(pi, event->button))
1389 forward_to_root(event);
1390 else if (dnd_motion_press(widget, event))
1391 perform_action(pi, event);
1393 return TRUE;
1396 /* Forward mouse scroll events as buttons 4 and 5 to the window manager
1397 * (for old window managers that don't catch the buttons themselves)
1399 static gboolean scroll_event(GtkWidget *widget, GdkEventScroll *event)
1401 XButtonEvent xev;
1403 xev.type = ButtonPress;
1404 xev.window = gdk_x11_get_default_root_xwindow();
1405 xev.root = xev.window;
1406 xev.subwindow = None;
1407 xev.time = event->time;
1408 xev.x = event->x_root; /* Needed for icewm */
1409 xev.y = event->y_root;
1410 xev.x_root = event->x_root;
1411 xev.y_root = event->y_root;
1412 xev.state = event->state;
1413 xev.same_screen = True;
1415 if (event->direction == GDK_SCROLL_UP)
1416 xev.button = 4;
1417 else if (event->direction == GDK_SCROLL_DOWN)
1418 xev.button = 5;
1419 else
1420 return FALSE;
1422 XSendEvent(gdk_display, xev.window, False,
1423 ButtonPressMask, (XEvent *) &xev);
1425 return TRUE;
1428 static void start_drag(PinIcon *pi, GdkEventMotion *event)
1430 GtkWidget *widget = pi->win;
1431 Icon *icon = (Icon *) pi;
1433 if (!icon->selected)
1435 tmp_icon_selected = TRUE;
1436 icon_select_only(icon);
1439 g_return_if_fail(icon_selection != NULL);
1441 pinboard_drag_in_progress = icon;
1443 if (icon_selection->next == NULL)
1444 drag_one_item(widget, event, icon->path, icon->item, NULL);
1445 else
1447 guchar *uri_list;
1449 uri_list = icon_create_uri_list();
1450 drag_selection(widget, event, uri_list);
1451 g_free(uri_list);
1455 /* An icon is being dragged around... */
1456 static gint icon_motion_notify(GtkWidget *widget,
1457 GdkEventMotion *event,
1458 PinIcon *pi)
1460 if (motion_state == MOTION_READY_FOR_DND)
1462 if (dnd_motion_moved(event))
1463 start_drag(pi, event);
1464 return TRUE;
1467 return FALSE;
1470 static void backdrop_from_xml(xmlNode *node)
1472 gchar *style;
1474 g_free(current_pinboard->backdrop);
1475 current_pinboard->backdrop = xmlNodeGetContent(node);
1477 style = xmlGetProp(node, "style");
1479 if (style)
1481 current_pinboard->backdrop_style =
1482 g_strcasecmp(style, "Tiled") == 0 ? BACKDROP_TILE :
1483 g_strcasecmp(style, "Scaled") == 0 ? BACKDROP_SCALE :
1484 g_strcasecmp(style, "Fit") == 0 ? BACKDROP_FIT :
1485 g_strcasecmp(style, "Stretched") == 0 ? BACKDROP_STRETCH :
1486 g_strcasecmp(style, "Centred") == 0 ? BACKDROP_CENTRE :
1487 g_strcasecmp(style, "Program") == 0 ? BACKDROP_PROGRAM :
1488 BACKDROP_NONE;
1489 g_free(style);
1491 else
1492 current_pinboard->backdrop_style = BACKDROP_TILE;
1495 /* Create one pinboard icon for each icon in the doc */
1496 static void pinboard_load_from_xml(xmlDocPtr doc)
1498 xmlNodePtr node, root;
1499 char *tmp, *label, *path, *shortcut, *args;
1500 int x, y;
1501 gboolean locked;
1503 root = xmlDocGetRootElement(doc);
1505 for (node = root->xmlChildrenNode; node; node = node->next)
1507 if (node->type != XML_ELEMENT_NODE)
1508 continue;
1509 if (strcmp(node->name, "backdrop") == 0)
1511 backdrop_from_xml(node);
1512 continue;
1514 if (strcmp(node->name, "icon") != 0)
1515 continue;
1517 tmp = xmlGetProp(node, "x");
1518 if (!tmp)
1519 continue;
1520 x = atoi(tmp);
1521 g_free(tmp);
1523 tmp = xmlGetProp(node, "y");
1524 if (!tmp)
1525 continue;
1526 y = atoi(tmp);
1527 g_free(tmp);
1529 label = xmlGetProp(node, "label");
1530 if (!label)
1531 label = g_strdup("<missing label>");
1532 path = xmlNodeGetContent(node);
1533 if (!path)
1534 path = g_strdup("<missing path>");
1535 shortcut = xmlGetProp(node, "shortcut");
1536 args = xmlGetProp(node, "args");
1538 tmp = xmlGetProp(node, "locked");
1539 if (tmp)
1541 locked = text_to_boolean(tmp, FALSE);
1542 g_free(tmp);
1544 else
1545 locked = FALSE;
1547 pinboard_pin_with_args(path, label, x, y, shortcut, args, locked, FALSE);
1549 g_free(path);
1550 g_free(label);
1551 g_free(shortcut);
1552 g_free(args);
1556 /* Called for each line in the pinboard file while loading a new board.
1557 * Only used for old-format files when converting to XML.
1559 static const char *pin_from_file(gchar *line)
1561 gchar *leaf = NULL;
1562 int x, y, n;
1564 if (*line == '<')
1566 gchar *end;
1568 end = strchr(line + 1, '>');
1569 if (!end)
1570 return _("Missing '>' in icon label");
1572 leaf = g_strndup(line + 1, end - line - 1);
1574 line = end + 1;
1576 while (g_ascii_isspace(*line))
1577 line++;
1578 if (*line != ',')
1579 return _("Missing ',' after icon label");
1580 line++;
1583 if (sscanf(line, " %d , %d , %n", &x, &y, &n) < 2)
1584 return NULL; /* Ignore format errors */
1586 pinboard_pin(line + n, leaf, x, y, NULL);
1588 g_free(leaf);
1590 return NULL;
1593 /* Write the current state of the pinboard to the current pinboard file */
1594 static void pinboard_save(void)
1596 guchar *save = NULL;
1597 guchar *save_new = NULL;
1598 GList *next;
1599 xmlDocPtr doc = NULL;
1600 xmlNodePtr root;
1602 g_return_if_fail(current_pinboard != NULL);
1604 if (strchr(current_pinboard->name, '/'))
1605 save = g_strdup(current_pinboard->name);
1606 else
1608 guchar *leaf;
1610 leaf = g_strconcat("pb_", current_pinboard->name, NULL);
1611 save = choices_find_xdg_path_save(leaf, PROJECT, SITE, TRUE);
1612 g_free(leaf);
1615 if (!save)
1616 return;
1618 doc = xmlNewDoc("1.0");
1619 xmlDocSetRootElement(doc, xmlNewDocNode(doc, NULL, "pinboard", NULL));
1621 root = xmlDocGetRootElement(doc);
1623 if (current_pinboard->backdrop)
1625 BackdropStyle style = current_pinboard->backdrop_style;
1626 xmlNodePtr tree;
1628 tree = xmlNewTextChild(root, NULL, "backdrop",
1629 current_pinboard->backdrop);
1630 xmlSetProp(tree, "style",
1631 style == BACKDROP_TILE ? "Tiled" :
1632 style == BACKDROP_CENTRE ? "Centred" :
1633 style == BACKDROP_SCALE ? "Scaled" :
1634 style == BACKDROP_FIT ? "Fit" :
1635 style == BACKDROP_STRETCH ? "Stretched" :
1636 "Program");
1639 for (next = current_pinboard->icons; next; next = next->next)
1641 xmlNodePtr tree;
1642 PinIcon *pi = (PinIcon *) next->data;
1643 Icon *icon = (Icon *) pi;
1644 char *tmp;
1646 tree = xmlNewTextChild(root, NULL, "icon", icon->src_path);
1648 tmp = g_strdup_printf("%d", pi->x);
1649 xmlSetProp(tree, "x", tmp);
1650 g_free(tmp);
1652 tmp = g_strdup_printf("%d", pi->y);
1653 xmlSetProp(tree, "y", tmp);
1654 g_free(tmp);
1656 xmlSetProp(tree, "label", icon->item->leafname);
1657 if (icon->shortcut)
1658 xmlSetProp(tree, "shortcut", icon->shortcut);
1659 if (icon->args)
1660 xmlSetProp(tree, "args", icon->args);
1661 if (icon->locked)
1662 xmlSetProp(tree, "locked", "true");
1665 save_new = g_strconcat(save, ".new", NULL);
1666 if (save_xml_file(doc, save_new) || rename(save_new, save))
1667 delayed_error(_("Error saving pinboard %s: %s"),
1668 save, g_strerror(errno));
1669 g_free(save_new);
1671 g_free(save);
1672 if (doc)
1673 xmlFreeDoc(doc);
1676 static void snap_to_grid(int *x, int *y)
1678 int step = o_pinboard_grid_step.int_value;
1680 *x = ((*x + step / 2) / step) * step;
1681 *y = ((*y + step / 2) / step) * step;
1684 /* Convert (x,y) from a centre point to a window position */
1685 static void offset_from_centre(PinIcon *pi, int *x, int *y)
1687 gboolean clamp = o_pinboard_clamp_icons.int_value;
1688 GtkRequisition req;
1690 gtk_widget_size_request(pi->win, &req);
1692 *x -= req.width >> 1;
1693 *y -= req.height >> 1;
1694 *x = CLAMP(*x, 0, screen_width - (clamp ? req.width : 0));
1695 *y = CLAMP(*y, 0, screen_height - (clamp ? req.height : 0));
1698 /* Same as drag_set_dest(), but for pinboard icons */
1699 static void drag_set_pinicon_dest(PinIcon *pi)
1701 GtkObject *obj = GTK_OBJECT(pi->win);
1703 make_drop_target(pi->win, 0);
1705 g_signal_connect(obj, "drag_motion", G_CALLBACK(drag_motion), pi);
1706 g_signal_connect(obj, "drag_leave", G_CALLBACK(drag_leave), pi);
1707 g_signal_connect(obj, "drag_end", G_CALLBACK(drag_end), pi);
1710 /* Called during the drag when the mouse is in a widget registered
1711 * as a drop target. Returns TRUE if we can accept the drop.
1713 static gboolean drag_motion(GtkWidget *widget,
1714 GdkDragContext *context,
1715 gint x,
1716 gint y,
1717 guint time,
1718 PinIcon *pi)
1720 GdkDragAction action = context->suggested_action;
1721 const char *type = NULL;
1722 Icon *icon = (Icon *) pi;
1723 DirItem *item = icon->item;
1725 if (gtk_drag_get_source_widget(context) == widget)
1727 g_dataset_set_data(context, "drop_dest_type",
1728 (gpointer) drop_dest_pass_through);
1729 return FALSE; /* Can't drag something to itself! */
1732 if (icon->selected)
1733 goto out; /* Can't drag a selection to itself */
1735 type = dnd_motion_item(context, &item);
1737 if ((context->actions & GDK_ACTION_ASK) && o_dnd_left_menu.int_value
1738 && type != drop_dest_prog)
1740 guint state;
1741 gdk_window_get_pointer(NULL, NULL, NULL, &state);
1742 if (state & GDK_BUTTON1_MASK)
1743 action = GDK_ACTION_ASK;
1746 if (!item)
1747 type = NULL;
1748 out:
1749 /* We actually must pretend to accept the drop, even if the
1750 * directory isn't writeable, so that the spring-opening
1751 * thing works.
1754 /* Don't allow drops to non-writeable directories */
1755 if (o_dnd_spring_open.int_value == FALSE &&
1756 type == drop_dest_dir &&
1757 access(icon->path, W_OK) != 0)
1759 type = NULL;
1762 g_dataset_set_data(context, "drop_dest_type", (gpointer) type);
1763 if (type)
1765 gdk_drag_status(context, action, time);
1766 g_dataset_set_data_full(context, "drop_dest_path",
1767 g_strdup(icon->path), g_free);
1768 if (type == drop_dest_dir)
1769 dnd_spring_load(context, NULL);
1771 pinboard_wink_item(pi, FALSE);
1773 else
1774 gdk_drag_status(context, 0, time);
1776 /* Always return TRUE to stop the pinboard getting the events */
1777 return TRUE;
1780 static gboolean pinboard_shadow = FALSE;
1781 static gint shadow_x, shadow_y;
1782 #define SHADOW_SIZE (ICON_WIDTH)
1784 static gboolean bg_expose(GtkWidget *widget,
1785 GdkEventExpose *event, gpointer data)
1787 GdkRectangle clipbox;
1788 gpointer gclass = ((GTypeInstance *) widget)->g_class;
1789 gboolean double_buffer;
1791 gdk_gc_set_clip_region(widget->style->white_gc, event->region);
1792 gdk_gc_set_clip_region(widget->style->black_gc, event->region);
1794 gdk_region_get_clipbox(event->region, &clipbox);
1796 double_buffer = (clipbox.width * clipbox.height) < 20000;
1797 if (double_buffer)
1798 gdk_window_begin_paint_region(widget->window, event->region);
1800 /* Clear the area to the background image */
1802 GtkStyle *style = current_pinboard->window->style;
1803 GdkGC *gc = style->bg_gc[GTK_STATE_NORMAL];
1805 gdk_gc_set_clip_region(gc, event->region);
1806 if (style->bg_pixmap[GTK_STATE_NORMAL])
1808 gdk_gc_set_ts_origin(gc, 0, 0);
1809 gdk_gc_set_fill(gc, GDK_TILED);
1810 gdk_gc_set_tile(gc, style->bg_pixmap[GTK_STATE_NORMAL]);
1813 gdk_draw_rectangle(current_pinboard->window->window, gc, TRUE,
1814 clipbox.x, clipbox.y,
1815 clipbox.width, clipbox.height);
1816 if (style->bg_pixmap[GTK_STATE_NORMAL])
1817 gdk_gc_set_fill(gc, GDK_SOLID);
1819 gdk_gc_set_clip_region(gc, NULL);
1822 if (pinboard_shadow)
1824 gdk_draw_rectangle(widget->window,
1825 widget->style->white_gc, FALSE,
1826 shadow_x, shadow_y,
1827 SHADOW_SIZE, SHADOW_SIZE);
1828 gdk_draw_rectangle(widget->window,
1829 widget->style->black_gc, FALSE,
1830 shadow_x + 1, shadow_y + 1,
1831 SHADOW_SIZE - 2, SHADOW_SIZE - 2);
1834 if (lasso_in_progress)
1836 GdkRectangle area;
1838 area.x = MIN(lasso_rect_x1, lasso_rect_x2);
1839 area.y = MIN(lasso_rect_y1, lasso_rect_y2);
1840 area.width = ABS(lasso_rect_x1 - lasso_rect_x2);
1841 area.height = ABS(lasso_rect_y1 - lasso_rect_y2);
1843 if (area.width > 4 && area.height > 4)
1845 gdk_draw_rectangle(widget->window,
1846 widget->style->white_gc, FALSE,
1847 area.x, area.y,
1848 area.width - 1, area.height - 1);
1849 gdk_draw_rectangle(widget->window,
1850 widget->style->black_gc, FALSE,
1851 area.x + 1, area.y + 1,
1852 area.width - 3, area.height - 3);
1856 gdk_gc_set_clip_region(widget->style->white_gc, NULL);
1857 gdk_gc_set_clip_region(widget->style->black_gc, NULL);
1859 ((GtkWidgetClass *) gclass)->expose_event(widget, event);
1861 if (double_buffer)
1862 gdk_window_end_paint(widget->window);
1864 return TRUE;
1867 /* Draw a 'shadow' under an icon being dragged, showing where
1868 * it will land.
1870 static void pinboard_set_shadow(gboolean on)
1872 GdkRectangle area;
1874 if (pinboard_shadow)
1876 area.x = shadow_x;
1877 area.y = shadow_y;
1878 area.width = SHADOW_SIZE + 1;
1879 area.height = SHADOW_SIZE + 1;
1881 gdk_window_invalidate_rect(current_pinboard->window->window,
1882 &area, TRUE);
1885 if (on)
1887 int old_x = shadow_x, old_y = shadow_y;
1889 gdk_window_get_pointer(current_pinboard->fixed->window,
1890 &shadow_x, &shadow_y, NULL);
1891 snap_to_grid(&shadow_x, &shadow_y);
1892 shadow_x -= SHADOW_SIZE / 2;
1893 shadow_y -= SHADOW_SIZE / 2;
1896 if (pinboard_shadow && shadow_x == old_x && shadow_y == old_y)
1897 return;
1899 area.x = shadow_x;
1900 area.y = shadow_y;
1901 area.width = SHADOW_SIZE + 1;
1902 area.height = SHADOW_SIZE + 1;
1904 gdk_window_invalidate_rect(current_pinboard->window->window,
1905 &area, TRUE);
1908 pinboard_shadow = on;
1911 /* Called when dragging some pinboard icons finishes */
1912 void pinboard_move_icons(void)
1914 int x = shadow_x, y = shadow_y;
1915 PinIcon *pi = (PinIcon *) pinboard_drag_in_progress;
1916 int width, height;
1917 int dx, dy;
1918 GList *next;
1920 g_return_if_fail(pi != NULL);
1922 x += SHADOW_SIZE / 2;
1923 y += SHADOW_SIZE / 2;
1924 snap_to_grid(&x, &y);
1926 if (pi->x == x && pi->y == y)
1927 return;
1929 /* Find out how much the dragged icon moved (after snapping).
1930 * Move all selected icons by the same amount.
1932 dx = x - pi->x;
1933 dy = y - pi->y;
1935 /* Move the other selected icons to keep the same relative
1936 * position.
1938 for (next = icon_selection; next; next = next->next)
1940 PinIcon *pi = (PinIcon *) next->data;
1941 int nx, ny;
1943 g_return_if_fail(IS_PIN_ICON(pi));
1945 pi->x += dx;
1946 pi->y += dy;
1947 nx = pi->x;
1948 ny = pi->y;
1950 gdk_drawable_get_size(pi->win->window, &width, &height);
1951 offset_from_centre(pi, &nx, &ny);
1953 fixed_move_fast(GTK_FIXED(current_pinboard->fixed),
1954 pi->win, nx, ny);
1957 pinboard_save();
1960 static void drag_leave(GtkWidget *widget,
1961 GdkDragContext *context,
1962 guint32 time,
1963 PinIcon *pi)
1965 pinboard_wink_item(NULL, FALSE);
1966 dnd_spring_abort();
1969 static gboolean bg_drag_leave(GtkWidget *widget,
1970 GdkDragContext *context,
1971 guint32 time,
1972 gpointer data)
1974 pinboard_set_shadow(FALSE);
1975 return TRUE;
1978 static gboolean bg_drag_motion(GtkWidget *widget,
1979 GdkDragContext *context,
1980 gint x,
1981 gint y,
1982 guint time,
1983 gpointer data)
1985 /* Dragging from the pinboard to the pinboard is not allowed */
1987 if (!provides(context, text_uri_list))
1988 return FALSE;
1990 pinboard_set_shadow(TRUE);
1992 gdk_drag_status(context,
1993 context->suggested_action == GDK_ACTION_ASK
1994 ? GDK_ACTION_LINK : context->suggested_action,
1995 time);
1996 return TRUE;
1999 static void drag_end(GtkWidget *widget,
2000 GdkDragContext *context,
2001 PinIcon *pi)
2003 pinboard_drag_in_progress = NULL;
2004 if (tmp_icon_selected)
2006 icon_select_only(NULL);
2007 tmp_icon_selected = FALSE;
2011 /* Something which affects all the icons has changed - reshape
2012 * and redraw all of them.
2014 static void reshape_all(void)
2016 GList *next;
2018 g_return_if_fail(current_pinboard != NULL);
2020 for (next = current_pinboard->icons; next; next = next->next)
2022 Icon *icon = (Icon *) next->data;
2023 pinboard_reshape_icon(icon);
2027 /* Turns off the pinboard. Does not call gtk_main_quit. */
2028 static void pinboard_clear(void)
2030 GList *next;
2032 g_return_if_fail(current_pinboard != NULL);
2034 tasklist_set_active(FALSE);
2036 next = current_pinboard->icons;
2037 while (next)
2039 PinIcon *pi = (PinIcon *) next->data;
2041 next = next->next;
2043 gtk_widget_destroy(pi->win);
2046 gtk_widget_destroy(current_pinboard->window);
2048 abandon_backdrop_app(current_pinboard);
2050 g_object_unref(current_pinboard->shadow_gc);
2051 current_pinboard->shadow_gc = NULL;
2053 g_free(current_pinboard->name);
2054 null_g_free(&current_pinboard);
2056 number_of_windows--;
2059 static gpointer parent_class;
2061 static void pin_icon_destroy(Icon *icon)
2063 PinIcon *pi = (PinIcon *) icon;
2065 g_return_if_fail(pi->win != NULL);
2067 gtk_widget_hide(pi->win); /* Stops flicker - stupid GtkFixed! */
2068 gtk_widget_destroy(pi->win);
2071 static void pinboard_remove_items(void)
2073 g_return_if_fail(icon_selection != NULL);
2075 while (icon_selection)
2076 icon_destroy((Icon *) icon_selection->data);
2078 pinboard_save();
2081 static void pin_icon_update(Icon *icon)
2083 pinboard_reshape_icon(icon);
2084 pinboard_save();
2087 static gboolean pin_icon_same_group(Icon *icon, Icon *other)
2089 return IS_PIN_ICON(other);
2092 static void pin_wink_icon(Icon *icon)
2094 pinboard_wink_item((PinIcon *) icon, TRUE);
2097 static void pin_icon_class_init(gpointer gclass, gpointer data)
2099 IconClass *icon = (IconClass *) gclass;
2101 parent_class = g_type_class_peek_parent(gclass);
2103 icon->destroy = pin_icon_destroy;
2104 icon->redraw = pinboard_reshape_icon;
2105 icon->update = pin_icon_update;
2106 icon->wink = pin_wink_icon;
2107 icon->remove_items = pinboard_remove_items;
2108 icon->same_group = pin_icon_same_group;
2111 static void pin_icon_init(GTypeInstance *object, gpointer gclass)
2115 static GType pin_icon_get_type(void)
2117 static GType type = 0;
2119 if (!type)
2121 static const GTypeInfo info =
2123 sizeof (PinIconClass),
2124 NULL, /* base_init */
2125 NULL, /* base_finalise */
2126 pin_icon_class_init,
2127 NULL, /* class_finalise */
2128 NULL, /* class_data */
2129 sizeof(PinIcon),
2130 0, /* n_preallocs */
2131 pin_icon_init
2134 type = g_type_register_static(icon_get_type(),
2135 "PinIcon", &info, 0);
2138 return type;
2141 static PinIcon *pin_icon_new(const char *pathname, const char *name)
2143 PinIcon *pi;
2144 Icon *icon;
2146 pi = g_object_new(pin_icon_get_type(), NULL);
2147 icon = (Icon *) pi;
2149 icon_set_path(icon, pathname, name);
2151 return pi;
2154 /* Called when the window widget is somehow destroyed */
2155 static void pin_icon_destroyed(PinIcon *pi)
2157 g_return_if_fail(pi->win != NULL);
2159 pi->win = NULL;
2161 pinboard_wink_item(NULL, FALSE);
2163 if (pinboard_drag_in_progress == (Icon *) pi)
2164 pinboard_drag_in_progress = NULL;
2166 if (current_pinboard)
2167 current_pinboard->icons =
2168 g_list_remove(current_pinboard->icons, pi);
2170 g_object_unref(pi);
2173 /* Set the tooltip */
2174 static void pin_icon_set_tip(PinIcon *pi)
2176 XMLwrapper *ai;
2177 xmlNode *node;
2178 Icon *icon = (Icon *) pi;
2180 g_return_if_fail(pi != NULL);
2182 ai = appinfo_get(icon->path, icon->item);
2184 if (ai && ((node = xml_get_section(ai, NULL, "Summary"))))
2186 guchar *str;
2187 str = xmlNodeListGetString(node->doc,
2188 node->xmlChildrenNode, 1);
2189 if (str)
2191 gtk_tooltips_set_tip(tooltips, pi->win, str, NULL);
2192 g_free(str);
2195 else
2196 gtk_tooltips_set_tip(tooltips, pi->widget, NULL, NULL);
2198 if (ai)
2199 g_object_unref(ai);
2202 static void pinboard_show_menu(GdkEventButton *event, PinIcon *pi)
2204 GtkWidget *option_item;
2205 GtkWidget *new_panel_item;
2206 int pos[3];
2207 GList *list;
2209 pos[0] = event->x_root;
2210 pos[1] = event->y_root;
2212 option_item = gtk_image_menu_item_new_with_label(_("Backdrop..."));
2213 g_signal_connect(option_item, "activate",
2214 G_CALLBACK(pinboard_set_backdrop_box), NULL);
2215 new_panel_item = gtk_image_menu_item_new_with_label(_("Add Panel"));
2216 add_stock_to_menu_item(new_panel_item, GTK_STOCK_ADD);
2217 gtk_menu_item_set_submenu(GTK_MENU_ITEM(new_panel_item),
2218 panel_new_panel_submenu());
2219 icon_prepare_menu((Icon *) pi, option_item, new_panel_item, NULL);
2221 list = gtk_container_get_children(GTK_CONTAINER(icon_menu));
2222 pos[2] = g_list_length(list) - 6;
2223 g_list_free(list);
2225 gtk_menu_popup(GTK_MENU(icon_menu), NULL, NULL,
2226 position_menu,
2227 (gpointer) pos, event->button, event->time);
2230 static void create_pinboard_window(Pinboard *pinboard)
2232 GtkWidget *win;
2234 g_return_if_fail(pinboard->window == NULL);
2236 win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
2237 gtk_widget_set_style(win, gtk_widget_get_default_style());
2239 gtk_widget_set_double_buffered(win, FALSE);
2240 gtk_widget_set_app_paintable(win, TRUE);
2241 gtk_widget_set_name(win, "rox-pinboard");
2242 pinboard->window = win;
2243 pinboard->fixed = gtk_fixed_new();
2244 gtk_container_add(GTK_CONTAINER(win), pinboard->fixed);
2246 gtk_window_set_wmclass(GTK_WINDOW(win), "ROX-Pinboard", PROJECT);
2248 gtk_widget_set_size_request(win, screen_width, screen_height);
2249 gtk_widget_realize(win);
2250 gtk_window_move(GTK_WINDOW(win), 0, 0);
2251 make_panel_window(win);
2253 /* TODO: Use gdk function when it supports this type */
2255 GdkAtom desktop_type;
2257 desktop_type = gdk_atom_intern("_NET_WM_WINDOW_TYPE_DESKTOP",
2258 FALSE);
2259 gdk_property_change(win->window,
2260 gdk_atom_intern("_NET_WM_WINDOW_TYPE", FALSE),
2261 gdk_atom_intern("ATOM", FALSE), 32,
2262 GDK_PROP_MODE_REPLACE, (guchar *) &desktop_type, 1);
2265 gtk_widget_add_events(win,
2266 GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
2267 GDK_EXPOSURE_MASK |
2268 GDK_BUTTON1_MOTION_MASK |
2269 GDK_BUTTON2_MOTION_MASK | GDK_BUTTON3_MOTION_MASK);
2270 g_signal_connect(win, "button-press-event",
2271 G_CALLBACK(button_press_event), NULL);
2272 g_signal_connect(win, "button-release-event",
2273 G_CALLBACK(button_release_event), NULL);
2274 g_signal_connect(win, "motion-notify-event",
2275 G_CALLBACK(lasso_motion), NULL);
2276 g_signal_connect(pinboard->fixed, "expose_event",
2277 G_CALLBACK(bg_expose), NULL);
2279 /* Some window managers use scroll events on the root to switch
2280 * desktops, but don't cope with our pinboard window, so we forward
2281 * them manually in that case.
2283 g_signal_connect(win, "scroll-event", G_CALLBACK(scroll_event), NULL);
2285 /* Drag and drop handlers */
2286 drag_set_pinboard_dest(win);
2287 g_signal_connect(win, "drag_motion", G_CALLBACK(bg_drag_motion), NULL);
2288 g_signal_connect(win, "drag_leave", G_CALLBACK(bg_drag_leave), NULL);
2290 pinboard->shadow_gc = gdk_gc_new(win->window);
2291 gdk_gc_set_rgb_fg_color(pinboard->shadow_gc, &pin_text_shadow_col);
2293 reload_backdrop(current_pinboard, NULL, BACKDROP_NONE);
2295 gtk_widget_show_all(win);
2296 gdk_window_lower(win->window);
2299 /* Load image 'path' and scale according to 'style' */
2300 static GdkPixmap *load_backdrop(const gchar *path, BackdropStyle style)
2302 GdkPixmap *pixmap;
2303 GdkPixbuf *pixbuf;
2304 GError *error = NULL;
2306 pixbuf = gdk_pixbuf_new_from_file(path, &error);
2307 if (error)
2309 delayed_error(_("Error loading backdrop image:\n%s\n"
2310 "Backdrop removed."),
2311 error->message);
2312 g_error_free(error);
2313 pinboard_set_backdrop(NULL, BACKDROP_NONE);
2314 return NULL;
2317 if (style == BACKDROP_STRETCH)
2319 GdkPixbuf *old = pixbuf;
2321 pixbuf = gdk_pixbuf_scale_simple(old,
2322 screen_width, screen_height,
2323 GDK_INTERP_HYPER);
2325 g_object_unref(old);
2327 else if (style == BACKDROP_CENTRE || style == BACKDROP_SCALE || style == BACKDROP_FIT)
2329 GdkPixbuf *old = pixbuf;
2330 int x, y, width, height;
2331 float scale;
2333 width = gdk_pixbuf_get_width(pixbuf);
2334 height = gdk_pixbuf_get_height(pixbuf);
2336 if (style == BACKDROP_SCALE)
2338 float scale_x, scale_y;
2339 scale_x = screen_width / ((float) width);
2340 scale_y = screen_height / ((float) height);
2341 scale = MIN(scale_x, scale_y);
2343 else if (style == BACKDROP_FIT)
2345 float scale_x, scale_y;
2346 scale_x = screen_width / ((float) width);
2347 scale_y = screen_height / ((float) height);
2348 scale = MAX(scale_x, scale_y);
2350 else
2351 scale = 1;
2353 pixbuf = gdk_pixbuf_new(
2354 gdk_pixbuf_get_colorspace(pixbuf), FALSE,
2355 8, screen_width, screen_height);
2356 gdk_pixbuf_fill(pixbuf, ((pin_text_bg_col.red & 0xff00) << 16) |
2357 ((pin_text_bg_col.green & 0xff00) << 8) |
2358 ((pin_text_bg_col.blue & 0xff00)));
2360 x = (screen_width - width * scale) / 2;
2361 y = (screen_height - height * scale) / 2;
2362 x = MAX(x, 0);
2363 y = MAX(y, 0);
2365 gdk_pixbuf_composite(old, pixbuf,
2366 x, y,
2367 MIN(screen_width, width * scale),
2368 MIN(screen_height, height * scale),
2369 x, y, scale, scale,
2370 o_pinboard_image_scaling.int_value?
2371 GDK_INTERP_BILINEAR: GDK_INTERP_HYPER,
2372 255);
2373 g_object_unref(old);
2376 gdk_pixbuf_render_pixmap_and_mask(pixbuf,
2377 &pixmap, NULL, 0);
2378 g_object_unref(pixbuf);
2380 return pixmap;
2383 static void abandon_backdrop_app(Pinboard *pinboard)
2385 g_return_if_fail(pinboard != NULL);
2387 if (pinboard->to_backdrop_app != -1)
2389 close(pinboard->to_backdrop_app);
2390 close(pinboard->from_backdrop_app);
2391 g_source_remove(pinboard->input_tag);
2392 g_string_free(pinboard->input_buffer, TRUE);
2393 pinboard->to_backdrop_app = -1;
2394 pinboard->from_backdrop_app = -1;
2395 pinboard->input_tag = -1;
2396 pinboard->input_buffer = NULL;
2399 g_return_if_fail(pinboard->to_backdrop_app == -1);
2400 g_return_if_fail(pinboard->from_backdrop_app == -1);
2401 g_return_if_fail(pinboard->input_tag == -1);
2402 g_return_if_fail(pinboard->input_buffer == NULL);
2405 /* A single line has been read from the child.
2406 * Processes the command, and replies 'ok' (or abandons the child on error).
2408 static void command_from_backdrop_app(Pinboard *pinboard, const gchar *command)
2410 BackdropStyle style;
2411 const char *ok = "ok\n";
2413 if (strncmp(command, "tile ", 5) == 0)
2415 style = BACKDROP_TILE;
2416 command += 5;
2418 else if (strncmp(command, "scale ", 6) == 0)
2420 style = BACKDROP_SCALE;
2421 command += 6;
2423 else if (strncmp(command, "fit ", 4) == 0)
2425 style = BACKDROP_FIT;
2426 command += 4;
2428 else if (strncmp(command, "stretch ", 8) == 0)
2430 style = BACKDROP_STRETCH;
2431 command += 8;
2433 else if (strncmp(command, "centre ", 7) == 0)
2435 style = BACKDROP_CENTRE;
2436 command += 7;
2438 else
2440 g_warning("Invalid command '%s' from backdrop app\n",
2441 command);
2442 abandon_backdrop_app(pinboard);
2443 return;
2446 /* Load the backdrop. May abandon the program if loading fails. */
2447 reload_backdrop(pinboard, command, style);
2449 if (pinboard->to_backdrop_app == -1)
2450 return;
2452 while (*ok)
2454 int sent;
2456 sent = write(pinboard->to_backdrop_app, ok, strlen(ok));
2457 if (sent <= 0)
2459 /* Remote app quit? Not an error. */
2460 abandon_backdrop_app(pinboard);
2461 break;
2463 ok += sent;
2467 static void backdrop_from_child(Pinboard *pinboard,
2468 int src, GdkInputCondition cond)
2470 char buf[256];
2471 int got;
2473 got = read(src, buf, sizeof(buf));
2475 if (got <= 0)
2477 if (got < 0)
2478 g_warning("backdrop_from_child: %s\n",
2479 g_strerror(errno));
2480 abandon_backdrop_app(pinboard);
2481 return;
2484 g_string_append_len(pinboard->input_buffer, buf, got);
2486 while (pinboard->from_backdrop_app != -1)
2488 int len;
2489 char *nl, *command;
2491 nl = strchr(pinboard->input_buffer->str, '\n');
2492 if (!nl)
2493 return; /* Haven't got a whole line yet */
2495 len = nl - pinboard->input_buffer->str;
2496 command = g_strndup(pinboard->input_buffer->str, len);
2497 g_string_erase(pinboard->input_buffer, 0, len + 1);
2499 command_from_backdrop_app(pinboard, command);
2501 g_free(command);
2505 static void reload_backdrop(Pinboard *pinboard,
2506 const gchar *backdrop,
2507 BackdropStyle backdrop_style)
2509 GtkStyle *style;
2511 if (backdrop && backdrop_style == BACKDROP_PROGRAM)
2513 const char *argv[] = {NULL, "--backdrop", NULL};
2514 GError *error = NULL;
2516 g_return_if_fail(pinboard->to_backdrop_app == -1);
2517 g_return_if_fail(pinboard->from_backdrop_app == -1);
2518 g_return_if_fail(pinboard->input_tag == -1);
2519 g_return_if_fail(pinboard->input_buffer == NULL);
2521 argv[0] = make_path(backdrop, "AppRun");
2523 /* Run the program. It'll send us a SOAP message and we'll
2524 * get back here with a different style and image.
2527 if (g_spawn_async_with_pipes(NULL, (gchar **) argv, NULL,
2528 G_SPAWN_DO_NOT_REAP_CHILD |
2529 G_SPAWN_SEARCH_PATH,
2530 NULL, NULL, /* Child setup fn */
2531 NULL, /* Child PID */
2532 &pinboard->to_backdrop_app,
2533 &pinboard->from_backdrop_app,
2534 NULL, /* Standard error */
2535 &error))
2537 pinboard->input_buffer = g_string_new(NULL);
2538 pinboard->input_tag = gdk_input_add_full(
2539 pinboard->from_backdrop_app,
2540 GDK_INPUT_READ,
2541 (GdkInputFunction) backdrop_from_child,
2542 pinboard, NULL);
2544 else
2546 delayed_error("%s", error ? error->message : "(null)");
2547 g_error_free(error);
2549 return;
2552 /* Note: Copying a style does not ref the pixmaps! */
2554 style = gtk_style_copy(gtk_widget_get_style(pinboard->window));
2555 style->bg_pixmap[GTK_STATE_NORMAL] = NULL;
2557 if (backdrop)
2558 style->bg_pixmap[GTK_STATE_NORMAL] =
2559 load_backdrop(backdrop, backdrop_style);
2561 gdk_color_parse(o_pinboard_bg_colour.value,
2562 &style->bg[GTK_STATE_NORMAL]);
2564 gtk_widget_set_style(pinboard->window, style);
2566 g_object_unref(style);
2568 gtk_widget_queue_draw(pinboard->window);
2570 /* Also update root window property (for transparent xterms, etc) */
2571 if (style->bg_pixmap[GTK_STATE_NORMAL])
2573 XID id = GDK_DRAWABLE_XID(style->bg_pixmap[GTK_STATE_NORMAL]);
2574 gdk_property_change(gdk_get_default_root_window(),
2575 gdk_atom_intern("_XROOTPMAP_ID", FALSE),
2576 gdk_atom_intern("PIXMAP", FALSE),
2577 32, GDK_PROP_MODE_REPLACE,
2578 (guchar *) &id, 1);
2580 else
2582 gdk_property_delete(gdk_get_default_root_window(),
2583 gdk_atom_intern("_XROOTPMAP_ID", FALSE));
2587 #define SEARCH_STEP 32
2589 /* Search the area (omin, imin) to (omax, imax) for a free region the size of
2590 * 'rect' that doesn't overlap 'used'. Which of inner and outer is the
2591 * vertical axis depends on the configuration.
2593 * id and od give the direction of the search (step size).
2595 * Returns the start of the found region in inner/outer, or -1 if there is no
2596 * free space.
2598 static void search_free(GdkRectangle *rect, GdkRegion *used,
2599 int *outer, int od, int omin, int omax,
2600 int *inner, int id, int imin, int imax)
2602 *outer = od > 0 ? omin : omax;
2603 while (*outer >= omin && *outer <= omax)
2605 *inner = id > 0 ? imin : imax;
2606 while (*inner >= imin && *inner <= imax)
2608 if (gdk_region_rect_in(used, rect) ==
2609 GDK_OVERLAP_RECTANGLE_OUT)
2610 return;
2611 *inner += id;
2614 *outer += od;
2617 rect->x = -1;
2618 rect->y = -1;
2621 /* Search the width x height area from (x0, y0) for a free region of size
2622 * 'rect'. direction indicates whether to search rows or columns. dx, dy gives
2623 * the direction of the search.
2625 static void search_free_area(GdkRectangle *rect, GdkRegion *used,
2626 int direction, int dx, int dy, int x0, int y0, int width, int height)
2628 if (direction == DIR_VERT)
2630 search_free(rect, used,
2631 &rect->x, dx, x0, width,
2632 &rect->y, dy, y0, height);
2634 else
2636 search_free(rect, used,
2637 &rect->y, dy, x0, height,
2638 &rect->x, dx, y0, width);
2642 static gboolean search_free_xinerama(GdkRectangle *rect, GdkRegion *used,
2643 int direction, int dx, int dy, int rwidth, int rheight)
2645 GdkRectangle *geom = &monitor_geom[get_monitor_under_pointer()];
2647 search_free_area(rect, used, direction, dx, dy,
2648 geom->x, geom->y, geom->width - rwidth, geom->height - rheight);
2649 return rect->x != -1;
2652 /* Finds a free area on the pinboard large enough for the width and height
2653 * of the given rectangle, by filling in the x and y fields of 'rect'.
2654 * If 'old' is true, 'rect' has a previous position and we first check
2655 * if it is viable.
2656 * The search order respects user preferences.
2657 * If no area is free, returns any old area.
2659 static void find_free_rect(Pinboard *pinboard, GdkRectangle *rect,
2660 gboolean old, int start, int direction)
2662 GdkRegion *used;
2663 GList *next;
2664 GdkRectangle used_rect;
2665 int dx = SEARCH_STEP, dy = SEARCH_STEP;
2667 used = gdk_region_new();
2669 panel_mark_used(used);
2671 /* Subtract the no-go areas... */
2673 if (o_top_margin.int_value > 0)
2675 used_rect.x = 0;
2676 used_rect.y = 0;
2677 used_rect.width = gdk_screen_width();
2678 used_rect.height = o_top_margin.int_value;
2679 gdk_region_union_with_rect(used, &used_rect);
2682 if (o_bottom_margin.int_value > 0)
2684 used_rect.x = 0;
2685 used_rect.y = gdk_screen_height() - o_bottom_margin.int_value;
2686 used_rect.width = gdk_screen_width();
2687 used_rect.height = o_bottom_margin.int_value;
2688 gdk_region_union_with_rect(used, &used_rect);
2691 if (o_left_margin.int_value > 0)
2693 used_rect.x = 0;
2694 used_rect.y = 0;
2695 used_rect.width = o_left_margin.int_value;
2696 used_rect.height = gdk_screen_height();
2697 gdk_region_union_with_rect(used, &used_rect);
2700 if (o_right_margin.int_value > 0)
2702 used_rect.x = gdk_screen_width() - o_right_margin.int_value;
2703 used_rect.y = 0;
2704 used_rect.width = o_right_margin.int_value;
2705 used_rect.height = gdk_screen_height();
2706 gdk_region_union_with_rect(used, &used_rect);
2709 /* Subtract the used areas... */
2711 next = GTK_FIXED(pinboard->fixed)->children;
2712 for (; next; next = next->next)
2714 GtkFixedChild *fix = (GtkFixedChild *) next->data;
2716 if (!GTK_WIDGET_VISIBLE(fix->widget))
2717 continue;
2719 used_rect.x = fix->x;
2720 used_rect.y = fix->y;
2721 used_rect.width = fix->widget->requisition.width;
2722 used_rect.height = fix->widget->requisition.height;
2724 gdk_region_union_with_rect(used, &used_rect);
2727 /* Check the previous area */
2728 if(old) {
2729 if(gdk_region_rect_in(used, rect)==GDK_OVERLAP_RECTANGLE_OUT) {
2730 gdk_region_destroy(used);
2731 return;
2735 /* Find the first free area (yes, this isn't exactly pretty, but
2736 * it works). If you know a better (fast!) algorithm, let me know!
2739 if (start == CORNER_TOP_RIGHT ||
2740 start == CORNER_BOTTOM_RIGHT)
2741 dx = -SEARCH_STEP;
2743 if (start == CORNER_BOTTOM_LEFT ||
2744 start == CORNER_BOTTOM_RIGHT)
2745 dy = -SEARCH_STEP;
2747 /* If pinboard covers more than one monitor, try to find free space on
2748 * monitor under pointer first, then whole screen if that fails */
2749 if (n_monitors == 1 || !search_free_xinerama(rect, used,
2750 direction, dx, dy, rect->width, rect->height))
2752 search_free_area(rect, used, direction, dx, dy,
2753 0, 0, screen_width - rect->width, screen_height - rect->height);
2756 gdk_region_destroy(used);
2758 if (rect->x == -1)
2760 rect->x = 0;
2761 rect->y = 0;
2765 /* Icon's size, shape or appearance has changed - update the display */
2766 static void pinboard_reshape_icon(Icon *icon)
2768 PinIcon *pi = (PinIcon *) icon;
2769 int x = pi->x, y = pi->y;
2771 set_size_and_style(pi);
2772 offset_from_centre(pi, &x, &y);
2774 if (pi->win->allocation.x != x || pi->win->allocation.y != y)
2776 fixed_move_fast(GTK_FIXED(current_pinboard->fixed),
2777 pi->win, x, y);
2780 /* Newer versions of GTK seem to need this, or the icon doesn't
2781 * get redrawn.
2783 gtk_widget_queue_draw(pi->win);
2786 /* Sets the pinboard_font global from the option. Doesn't do anything else. */
2787 static void update_pinboard_font(void)
2789 if (pinboard_font)
2790 pango_font_description_free(pinboard_font);
2791 pinboard_font = o_label_font.value[0] != '\0'
2792 ? pango_font_description_from_string(o_label_font.value)
2793 : NULL;
2796 static void radios_changed(Radios *radios, gpointer data)
2798 GObject *dialog = G_OBJECT(data);
2799 DropBox *drop_box;
2800 const guchar *path;
2802 g_return_if_fail(dialog != NULL);
2804 drop_box = g_object_get_data(G_OBJECT(dialog), "rox-dropbox");
2806 g_return_if_fail(radios != NULL);
2807 g_return_if_fail(drop_box != NULL);
2808 g_return_if_fail(current_pinboard != NULL);
2810 if (current_pinboard->backdrop_style != BACKDROP_PROGRAM)
2812 path = drop_box_get_path(drop_box);
2813 if (path)
2814 pinboard_set_backdrop(path, radios_get_value(radios));
2818 static void update_radios(GtkWidget *dialog)
2820 Radios *radios;
2821 GtkWidget *hbox;
2823 g_return_if_fail(dialog != NULL);
2825 radios = g_object_get_data(G_OBJECT(dialog), "rox-radios");
2826 hbox = g_object_get_data(G_OBJECT(dialog), "rox-radios-hbox");
2828 g_return_if_fail(current_pinboard != NULL);
2829 g_return_if_fail(radios != NULL);
2830 g_return_if_fail(hbox != NULL);
2832 switch (current_pinboard->backdrop_style)
2834 case BACKDROP_TILE:
2835 case BACKDROP_STRETCH:
2836 case BACKDROP_SCALE:
2837 case BACKDROP_CENTRE:
2838 case BACKDROP_FIT:
2839 radios_set_value(radios,
2840 current_pinboard->backdrop_style);
2841 gtk_widget_set_sensitive(hbox, TRUE);
2842 break;
2843 default:
2844 gtk_widget_set_sensitive(hbox, FALSE);
2845 radios_set_value(radios, BACKDROP_TILE);
2846 break;