4 * ROX-Filer, filer for the ROX desktop project
5 * Copyright (C) 2005, the ROX-Filer team.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation; either version 2 of the License, or (at your option)
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
19 * Place, Suite 330, Boston, MA 02111-1307 USA
22 /* gui_support.c - general (GUI) support routines */
29 #include <sys/param.h>
35 #include <X11/Xatom.h>
38 #include <gdk/gdkkeysyms.h>
43 #include "gui_support.h"
49 gint screen_width
, screen_height
;
52 GdkRectangle
*monitor_geom
= NULL
;
53 gint monitor_width
, monitor_height
;
54 MonitorAdjacent
*monitor_adjacent
;
56 static GdkAtom xa_cardinal
;
58 static GtkWidget
*current_dialog
= NULL
;
60 static GtkWidget
*tip_widget
= NULL
;
61 static time_t tip_time
= 0; /* Time tip widget last closed */
62 static gint tip_timeout
= 0; /* When primed */
64 /* Static prototypes */
65 static void run_error_info_dialog(GtkMessageType type
, const char *message
,
67 static GType
simple_image_get_type(void);
68 static void gui_get_monitor_adjacent(int monitor
, MonitorAdjacent
*adj
);
70 void gui_store_screen_geometry(GdkScreen
*screen
)
74 screen_width
= gdk_screen_get_width(screen
);
75 screen_height
= gdk_screen_get_height(screen
);
78 g_free(monitor_adjacent
);
80 monitor_width
= monitor_height
= G_MAXINT
;
81 n_monitors
= gdk_screen_get_n_monitors(screen
);
84 monitor_geom
= g_new(GdkRectangle
, n_monitors
? n_monitors
: 1);
88 for (mon
= 0; mon
< n_monitors
; ++mon
)
90 gdk_screen_get_monitor_geometry(screen
, mon
,
92 if (monitor_geom
[mon
].width
< monitor_width
)
93 monitor_width
= monitor_geom
[mon
].width
;
94 if (monitor_geom
[mon
].height
< monitor_height
)
95 monitor_height
= monitor_geom
[mon
].height
;
97 monitor_adjacent
= g_new(MonitorAdjacent
, n_monitors
);
98 for (mon
= 0; mon
< n_monitors
; ++mon
)
100 gui_get_monitor_adjacent(mon
, &monitor_adjacent
[mon
]);
106 monitor_geom
[0].x
= monitor_geom
[0].y
= 0;
107 monitor_width
= monitor_geom
[0].width
= screen_width
;
108 monitor_height
= monitor_geom
[0].height
= screen_height
;
109 monitor_adjacent
= g_new0(MonitorAdjacent
, 1);
114 void gui_support_init()
118 xa_cardinal
= gdk_atom_intern("CARDINAL", FALSE
);
120 gui_store_screen_geometry(gdk_screen_get_default());
122 /* Work around the scrollbar placement bug */
123 klass
= g_type_class_ref(gtk_scrolled_window_get_type());
124 ((GtkScrolledWindowClass
*) klass
)->scrollbar_spacing
= 0;
125 /* (don't unref, ever) */
128 /* Open a modal dialog box showing a message.
129 * The user can choose from a selection of buttons at the bottom.
130 * Returns -1 if the window is destroyed, or the number of the button
131 * if one is clicked (starting from zero).
133 * If a dialog is already open, returns -1 without waiting AND
134 * brings the current dialog to the front.
136 * Each button has two arguments, a GTK_STOCK icon and some text. If the
137 * text is NULL, the stock's text is used.
139 int get_choice(const char *title
,
141 int number_of_buttons
, ...)
144 GtkWidget
*button
= NULL
;
150 gtk_widget_hide(current_dialog
);
151 gtk_widget_show(current_dialog
);
155 current_dialog
= dialog
= gtk_message_dialog_new(NULL
,
157 GTK_MESSAGE_QUESTION
,
160 gtk_window_set_position(GTK_WINDOW(dialog
), GTK_WIN_POS_CENTER
);
162 va_start(ap
, number_of_buttons
);
164 for (i
= 0; i
< number_of_buttons
; i
++)
166 const char *stock
= va_arg(ap
, char *);
167 const char *text
= va_arg(ap
, char *);
170 button
= button_new_mixed(stock
, text
);
172 button
= gtk_button_new_from_stock(stock
);
174 GTK_WIDGET_SET_FLAGS(button
, GTK_CAN_DEFAULT
);
175 gtk_widget_show(button
);
177 gtk_dialog_add_action_widget(GTK_DIALOG(current_dialog
),
181 gtk_window_set_title(GTK_WINDOW(dialog
), title
);
182 gtk_window_set_position(GTK_WINDOW(dialog
), GTK_WIN_POS_CENTER
);
184 gtk_dialog_set_default_response(GTK_DIALOG(dialog
), i
- 1);
188 retval
= gtk_dialog_run(GTK_DIALOG(dialog
));
189 if (retval
== GTK_RESPONSE_NONE
)
191 gtk_widget_destroy(dialog
);
193 current_dialog
= NULL
;
198 void info_message(const char *message
, ...)
202 va_start(args
, message
);
204 run_error_info_dialog(GTK_MESSAGE_INFO
, message
, args
);
207 /* Display a message in a window with "ROX-Filer" as title */
208 void report_error(const char *message
, ...)
212 va_start(args
, message
);
214 run_error_info_dialog(GTK_MESSAGE_ERROR
, message
, args
);
217 void set_cardinal_property(GdkWindow
*window
, GdkAtom prop
, gulong value
)
219 gdk_property_change(window
, prop
, xa_cardinal
, 32,
220 GDK_PROP_MODE_REPLACE
, (gchar
*) &value
, 1);
223 /* NB: Also used for pinned icons.
224 * TODO: Set the level here too.
226 void make_panel_window(GtkWidget
*widget
)
228 static gboolean need_init
= TRUE
;
229 static GdkAtom xa_state
, xa_atom
, xa_hints
, xa_win_hints
;
230 static GdkAtom xa_NET_WM_DESKTOP
;
231 GdkWindow
*window
= widget
->window
;
232 long wm_hints_values
[] = {1, False
, 0, 0, 0, 0, 0, 0};
233 GdkAtom wm_protocols
[2];
235 g_return_if_fail(window
!= NULL
);
237 if (o_override_redirect
.int_value
)
239 gdk_window_set_override_redirect(window
, TRUE
);
245 xa_win_hints
= gdk_atom_intern("_WIN_HINTS", FALSE
);
246 xa_state
= gdk_atom_intern("_WIN_STATE", FALSE
);
247 xa_atom
= gdk_atom_intern("ATOM", FALSE
);
248 xa_hints
= gdk_atom_intern("WM_HINTS", FALSE
);
249 xa_NET_WM_DESKTOP
= gdk_atom_intern("_NET_WM_DESKTOP", FALSE
);
254 gdk_window_set_decorations(window
, 0);
255 gdk_window_set_functions(window
, 0);
256 gtk_window_set_resizable(GTK_WINDOW(widget
), FALSE
);
258 /* Don't hide panel/pinboard windows initially (WIN_STATE_HIDDEN).
259 * Needed for IceWM - Christopher Arndt <chris.arndt@web.de>
261 set_cardinal_property(window
, xa_state
,
263 WIN_STATE_FIXED_POSITION
| WIN_STATE_ARRANGE_IGNORE
);
265 set_cardinal_property(window
, xa_win_hints
,
266 WIN_HINTS_SKIP_FOCUS
| WIN_HINTS_SKIP_WINLIST
|
267 WIN_HINTS_SKIP_TASKBAR
);
269 /* Appear on all workspaces */
270 set_cardinal_property(window
, xa_NET_WM_DESKTOP
, 0xffffffff);
272 gdk_property_change(window
, xa_hints
, xa_hints
, 32,
273 GDK_PROP_MODE_REPLACE
, (guchar
*) wm_hints_values
,
274 sizeof(wm_hints_values
) / sizeof(long));
276 wm_protocols
[0] = gdk_atom_intern("WM_DELETE_WINDOW", FALSE
);
277 wm_protocols
[1] = gdk_atom_intern("_NET_WM_PING", FALSE
);
278 gdk_property_change(window
,
279 gdk_atom_intern("WM_PROTOCOLS", FALSE
), xa_atom
, 32,
280 GDK_PROP_MODE_REPLACE
, (guchar
*) wm_protocols
,
281 sizeof(wm_protocols
) / sizeof(GdkAtom
));
283 gdk_window_set_skip_taskbar_hint(window
, TRUE
);
284 gdk_window_set_skip_pager_hint(window
, TRUE
);
286 if (g_object_class_find_property(G_OBJECT_GET_CLASS(widget
),
289 GValue vfalse
= { 0, };
290 g_value_init(&vfalse
, G_TYPE_BOOLEAN
);
291 g_value_set_boolean(&vfalse
, FALSE
);
292 g_object_set_property(G_OBJECT(widget
),
293 "accept_focus", &vfalse
);
294 g_value_unset(&vfalse
);
298 static gboolean
error_idle_cb(gpointer data
)
300 char **error
= (char **) data
;
302 report_error("%s", *error
);
309 /* Display an error with "ROX-Filer" as title next time we are idle.
310 * If multiple errors are reported this way before the window is opened,
311 * all are displayed in a single window.
312 * If an error is reported while the error window is open, it is discarded.
314 void delayed_error(const char *error
, ...)
316 static char *delayed_error_data
= NULL
;
320 g_return_if_fail(error
!= NULL
);
322 old
= delayed_error_data
;
324 va_start(args
, error
);
325 new = g_strdup_vprintf(error
, args
);
330 delayed_error_data
= g_strconcat(old
,
338 delayed_error_data
= new;
339 g_idle_add(error_idle_cb
, &delayed_error_data
);
345 /* Load the file into memory. Return TRUE on success.
346 * Block is zero terminated (but this is not included in the length).
348 gboolean
load_file(const char *pathname
, char **data_out
, long *length_out
)
351 GError
*error
= NULL
;
353 if (!g_file_get_contents(pathname
, data_out
, &len
, &error
))
355 delayed_error("%s", error
->message
);
365 GtkWidget
*new_help_button(HelpFunc show_help
, gpointer data
)
369 b
= gtk_button_new();
370 gtk_button_set_relief(GTK_BUTTON(b
), GTK_RELIEF_NONE
);
371 icon
= gtk_image_new_from_stock(GTK_STOCK_HELP
,
372 GTK_ICON_SIZE_SMALL_TOOLBAR
);
373 gtk_container_add(GTK_CONTAINER(b
), icon
);
374 g_signal_connect_swapped(b
, "clicked", G_CALLBACK(show_help
), data
);
376 GTK_WIDGET_UNSET_FLAGS(b
, GTK_CAN_FOCUS
);
381 /* Read file into memory. Call parse_line(guchar *line) for each line
382 * in the file. Callback returns NULL on success, or an error message
383 * if something went wrong. Only the first error is displayed to the user.
385 void parse_file(const char *path
, ParseFunc
*parse_line
)
389 gboolean seen_error
= FALSE
;
391 if (load_file(path
, &data
, &length
))
398 if (strncmp(data
, "<?xml ", 6) == 0)
400 delayed_error(_("Attempt to read an XML file as "
401 "a text file. File '%s' may be "
402 "corrupted."), path
);
406 while (line
&& *line
)
408 eol
= strchr(line
, '\n');
412 error
= parse_line(line
);
414 if (error
&& !seen_error
)
417 _("Error in '%s' file at line %d: "
419 "This may be due to upgrading from a previous version of "
420 "ROX-Filer. Open the Options window and click on Save.\n"
421 "Further errors will be ignored."),
437 /* Returns the position of the pointer.
438 * TRUE if any modifier keys or mouse buttons are pressed.
440 gboolean
get_pointer_xy(int *x
, int *y
)
444 gdk_window_get_pointer(NULL
, x
, y
, &mask
);
449 #define DECOR_BORDER 32
451 /* Centre the window at these coords */
452 void centre_window(GdkWindow
*window
, int x
, int y
)
457 g_return_if_fail(window
!= NULL
);
459 m
= gdk_screen_get_monitor_at_point(gdk_screen_get_default(), x
, y
);
461 gdk_drawable_get_size(window
, &w
, &h
);
466 gdk_window_move(window
,
467 CLAMP(x
, DECOR_BORDER
+ monitor_geom
[m
].x
,
468 monitor_geom
[m
].x
+ monitor_geom
[m
].width
470 CLAMP(y
, DECOR_BORDER
+ monitor_geom
[m
].y
,
471 monitor_geom
[m
].y
+ monitor_geom
[m
].height
472 - h
- DECOR_BORDER
));
475 static void run_error_info_dialog(GtkMessageType type
, const char *message
,
481 g_return_if_fail(message
!= NULL
);
483 s
= g_strdup_vprintf(message
, args
);
486 dialog
= gtk_message_dialog_new(NULL
,
491 gtk_window_set_position(GTK_WINDOW(dialog
), GTK_WIN_POS_CENTER
);
492 gtk_dialog_set_default_response(GTK_DIALOG(dialog
), GTK_RESPONSE_OK
);
493 gtk_dialog_run(GTK_DIALOG(dialog
));
494 gtk_widget_destroy(dialog
);
499 static GtkWidget
*current_wink_widget
= NULL
;
500 static gint wink_timeout
= -1; /* Called when it's time to stop */
501 static gulong wink_destroy
; /* Called if the widget dies first */
503 static gboolean
end_wink(gpointer data
)
505 gtk_drag_unhighlight(current_wink_widget
);
507 g_signal_handler_disconnect(current_wink_widget
, wink_destroy
);
509 current_wink_widget
= NULL
;
514 static void cancel_wink(void)
516 g_source_remove(wink_timeout
);
520 static void wink_widget_died(gpointer data
)
522 current_wink_widget
= NULL
;
523 g_source_remove(wink_timeout
);
526 /* Draw a black box around this widget, briefly.
527 * Note: uses the drag highlighting code for now.
529 void wink_widget(GtkWidget
*widget
)
531 g_return_if_fail(widget
!= NULL
);
533 if (current_wink_widget
)
536 current_wink_widget
= widget
;
537 gtk_drag_highlight(current_wink_widget
);
539 wink_timeout
= g_timeout_add(300, (GSourceFunc
) end_wink
, NULL
);
541 wink_destroy
= g_signal_connect_swapped(widget
, "destroy",
542 G_CALLBACK(wink_widget_died
), NULL
);
545 static gboolean
idle_destroy_cb(GtkWidget
*widget
)
547 gtk_widget_unref(widget
);
548 gtk_widget_destroy(widget
);
552 /* Destroy the widget in an idle callback */
553 void destroy_on_idle(GtkWidget
*widget
)
555 gtk_widget_ref(widget
);
556 g_idle_add((GSourceFunc
) idle_destroy_cb
, widget
);
559 /* Spawn a child process (as spawn_full), and report errors.
560 * Returns the child's PID on succes, or 0 on failure.
562 gint
rox_spawn(const gchar
*dir
, const gchar
**argv
)
564 GError
*error
= NULL
;
567 if (!g_spawn_async_with_pipes(dir
, (gchar
**) argv
, NULL
,
568 G_SPAWN_DO_NOT_REAP_CHILD
| G_SPAWN_STDOUT_TO_DEV_NULL
|
570 NULL
, NULL
, /* Child setup fn */
571 &pid
, /* Child PID */
572 NULL
, NULL
, NULL
, /* Standard pipes */
575 delayed_error("%s", error
? error
->message
: "(null)");
584 GtkWidget
*button_new_image_text(GtkWidget
*image
, const char *message
)
586 GtkWidget
*button
, *align
, *hbox
, *label
;
588 button
= gtk_button_new();
589 label
= gtk_label_new_with_mnemonic(message
);
590 gtk_label_set_mnemonic_widget(GTK_LABEL(label
), button
);
592 hbox
= gtk_hbox_new(FALSE
, 2);
594 align
= gtk_alignment_new(0.5, 0.5, 0.0, 0.0);
596 gtk_box_pack_start(GTK_BOX(hbox
), image
, FALSE
, FALSE
, 0);
597 gtk_box_pack_end(GTK_BOX(hbox
), label
, FALSE
, FALSE
, 0);
599 gtk_container_add(GTK_CONTAINER(button
), align
);
600 gtk_container_add(GTK_CONTAINER(align
), hbox
);
601 gtk_widget_show_all(align
);
606 GtkWidget
*button_new_mixed(const char *stock
, const char *message
)
608 return button_new_image_text(gtk_image_new_from_stock(stock
,
609 GTK_ICON_SIZE_BUTTON
),
613 /* Highlight entry in red if 'error' is TRUE */
614 void entry_set_error(GtkWidget
*entry
, gboolean error
)
616 const GdkColor red
= {0, 0xffff, 0, 0};
617 const GdkColor white
= {0, 0xffff, 0xffff, 0xffff};
619 gtk_widget_modify_text(entry
, GTK_STATE_NORMAL
, error
? &red
: NULL
);
620 gtk_widget_modify_base(entry
, GTK_STATE_NORMAL
, error
? &white
: NULL
);
623 /* Change stacking position of higher to be just above lower.
624 * If lower is NULL, put higher at the bottom of the stack.
626 void window_put_just_above(GdkWindow
*higher
, GdkWindow
*lower
)
628 if (o_override_redirect
.int_value
&& lower
)
630 XWindowChanges restack
;
632 gdk_error_trap_push();
634 restack
.stack_mode
= Above
;
636 restack
.sibling
= GDK_WINDOW_XWINDOW(lower
);
638 XConfigureWindow(gdk_display
, GDK_WINDOW_XWINDOW(higher
),
639 CWSibling
| CWStackMode
, &restack
);
642 if (gdk_error_trap_pop())
643 g_warning("window_put_just_above()\n");
646 gdk_window_lower(higher
); /* To bottom of stack */
649 /* Copied from Gtk */
650 static GtkFixedChild
* fixed_get_child(GtkFixed
*fixed
, GtkWidget
*widget
)
654 children
= fixed
->children
;
657 GtkFixedChild
*child
;
659 child
= children
->data
;
660 children
= children
->next
;
662 if (child
->widget
== widget
)
669 /* Like gtk_fixed_move(), except not insanely slow */
670 void fixed_move_fast(GtkFixed
*fixed
, GtkWidget
*widget
, int x
, int y
)
672 GtkFixedChild
*child
;
674 child
= fixed_get_child(fixed
, widget
);
678 gtk_widget_freeze_child_notify(widget
);
681 gtk_widget_child_notify(widget
, "x");
684 gtk_widget_child_notify(widget
, "y");
686 gtk_widget_thaw_child_notify(widget
);
688 if (GTK_WIDGET_VISIBLE(widget
) && GTK_WIDGET_VISIBLE(fixed
))
690 int border_width
= GTK_CONTAINER(fixed
)->border_width
;
691 GtkAllocation child_allocation
;
692 GtkRequisition child_requisition
;
694 gtk_widget_get_child_requisition(child
->widget
,
696 child_allocation
.x
= child
->x
+ border_width
;
697 child_allocation
.y
= child
->y
+ border_width
;
699 child_allocation
.x
+= GTK_WIDGET(fixed
)->allocation
.x
;
700 child_allocation
.y
+= GTK_WIDGET(fixed
)->allocation
.y
;
702 child_allocation
.width
= child_requisition
.width
;
703 child_allocation
.height
= child_requisition
.height
;
704 gtk_widget_size_allocate(child
->widget
, &child_allocation
);
708 /* Draw the black border */
709 static gint
tooltip_draw(GtkWidget
*w
)
711 gdk_draw_rectangle(w
->window
, w
->style
->fg_gc
[w
->state
], FALSE
, 0, 0,
712 w
->allocation
.width
- 1, w
->allocation
.height
- 1);
717 /* When the tips window closed, record the time. If we try to open another
718 * tip soon, it will appear more quickly.
720 static void tooltip_destroyed(gpointer data
)
725 /* Display a tooltip-like widget near the pointer with 'text'. If 'text' is
726 * NULL, close any current tooltip.
728 void tooltip_show(guchar
*text
)
737 g_source_remove(tip_timeout
);
743 gtk_widget_destroy(tip_widget
);
751 tip_widget
= gtk_window_new(GTK_WINDOW_POPUP
);
752 gtk_widget_set_app_paintable(tip_widget
, TRUE
);
753 gtk_widget_set_name(tip_widget
, "gtk-tooltips");
755 g_signal_connect_swapped(tip_widget
, "expose_event",
756 G_CALLBACK(tooltip_draw
), tip_widget
);
758 label
= gtk_label_new(text
);
759 gtk_misc_set_padding(GTK_MISC(label
), 4, 2);
760 gtk_container_add(GTK_CONTAINER(tip_widget
), label
);
761 gtk_widget_show(label
);
762 gtk_widget_realize(tip_widget
);
764 w
= tip_widget
->allocation
.width
;
765 h
= tip_widget
->allocation
.height
;
766 gdk_window_get_pointer(NULL
, &x
, &py
, NULL
);
768 m
= gdk_screen_get_monitor_at_point(gdk_screen_get_default(), x
, py
);
771 y
= py
+ 12; /* I don't know the pointer height so I use a constant */
773 /* Now check for screen boundaries */
774 x
= CLAMP(x
, monitor_geom
[m
].x
,
775 monitor_geom
[m
].x
+ monitor_geom
[m
].width
- w
);
776 y
= CLAMP(y
, monitor_geom
[m
].y
,
777 monitor_geom
[m
].y
+ monitor_geom
[m
].height
- h
);
779 /* And again test if pointer is over the tooltip window */
780 if (py
>= y
&& py
<= y
+ h
)
782 gtk_window_move(GTK_WINDOW(tip_widget
), x
, y
);
783 gtk_widget_show(tip_widget
);
785 g_signal_connect_swapped(tip_widget
, "destroy",
786 G_CALLBACK(tooltip_destroyed
), NULL
);
790 /* Call callback(user_data) after a while, unless cancelled.
791 * Object is refd now and unref when cancelled / after callback called.
793 void tooltip_prime(GtkFunction callback
, GObject
*object
)
798 g_return_if_fail(tip_timeout
== 0);
801 delay
= now
- tip_time
> 2 ? 1000 : 200;
803 g_object_ref(object
);
804 tip_timeout
= g_timeout_add_full(G_PRIORITY_DEFAULT_IDLE
,
806 (GSourceFunc
) callback
,
811 /* Like gtk_widget_modify_font, but copes with font_desc == NULL */
812 void widget_modify_font(GtkWidget
*widget
, PangoFontDescription
*font_desc
)
814 GtkRcStyle
*rc_style
;
816 g_return_if_fail(GTK_IS_WIDGET(widget
));
818 rc_style
= gtk_widget_get_modifier_style(widget
);
820 if (rc_style
->font_desc
)
821 pango_font_description_free(rc_style
->font_desc
);
823 rc_style
->font_desc
= font_desc
824 ? pango_font_description_copy(font_desc
)
827 gtk_widget_modify_style(widget
, rc_style
);
830 /* Confirm the action with the user. If action is NULL, the text from stock
833 gboolean
confirm(const gchar
*message
, const gchar
*stock
, const gchar
*action
)
835 return get_choice(PROJECT
, message
, 2,
836 GTK_STOCK_CANCEL
, NULL
,
843 void (*changed
)(Radios
*, gpointer data
);
844 gpointer changed_data
;
847 /* Create a new set of radio buttons.
848 * Use radios_add to add options, then radios_pack to put them into something.
849 * The radios object will self-destruct with the first widget it contains.
850 * changed(data) is called (if not NULL) when pack is called, and on any
853 Radios
*radios_new(void (*changed
)(Radios
*, gpointer data
), gpointer data
)
857 radios
= g_new(Radios
, 1);
859 radios
->widgets
= NULL
;
860 radios
->changed
= changed
;
861 radios
->changed_data
= data
;
866 static void radios_free(GtkWidget
*radio
, Radios
*radios
)
868 g_return_if_fail(radios
!= NULL
);
870 g_list_free(radios
->widgets
);
874 void radios_add(Radios
*radios
, const gchar
*tip
, gint value
,
875 const gchar
*label
, ...)
878 GSList
*group
= NULL
;
882 g_return_if_fail(radios
!= NULL
);
883 g_return_if_fail(label
!= NULL
);
885 va_start(args
, label
);
886 s
= g_strdup_vprintf(label
, args
);
891 GtkRadioButton
*first
= GTK_RADIO_BUTTON(radios
->widgets
->data
);
892 group
= gtk_radio_button_get_group(first
);
895 radio
= gtk_radio_button_new_with_label(group
, s
);
896 gtk_label_set_line_wrap(GTK_LABEL(GTK_BIN(radio
)->child
), TRUE
);
897 gtk_widget_show(radio
);
899 gtk_tooltips_set_tip(tooltips
, radio
, tip
, NULL
);
901 g_signal_connect(G_OBJECT(radio
), "destroy",
902 G_CALLBACK(radios_free
), radios
);
904 radios
->widgets
= g_list_prepend(radios
->widgets
, radio
);
905 g_object_set_data(G_OBJECT(radio
), "rox-radios-value",
906 GINT_TO_POINTER(value
));
909 static void radio_toggled(GtkToggleButton
*button
, Radios
*radios
)
911 g_return_if_fail(radios
!= NULL
);
913 if (button
&& !gtk_toggle_button_get_active(button
))
914 return; /* Stop double-notifies */
917 radios
->changed(radios
, radios
->changed_data
);
920 void radios_pack(Radios
*radios
, GtkBox
*box
)
924 g_return_if_fail(radios
!= NULL
);
926 for (next
= g_list_last(radios
->widgets
); next
; next
= next
->prev
)
928 GtkWidget
*button
= GTK_WIDGET(next
->data
);
930 gtk_box_pack_start(box
, button
, FALSE
, TRUE
, 0);
931 g_signal_connect(button
, "toggled",
932 G_CALLBACK(radio_toggled
), radios
);
934 radio_toggled(NULL
, radios
);
937 void radios_set_value(Radios
*radios
, gint value
)
941 g_return_if_fail(radios
!= NULL
);
943 for (next
= radios
->widgets
; next
; next
= next
->next
)
945 GtkToggleButton
*radio
= GTK_TOGGLE_BUTTON(next
->data
);
948 radio_value
= GPOINTER_TO_INT(g_object_get_data(G_OBJECT(radio
),
949 "rox-radios-value"));
951 if (radio_value
== value
)
953 gtk_toggle_button_set_active(radio
, TRUE
);
958 g_warning("Value %d not in radio group!", value
);
961 gint
radios_get_value(Radios
*radios
)
965 g_return_val_if_fail(radios
!= NULL
, -1);
967 for (next
= radios
->widgets
; next
; next
= next
->next
)
969 GtkToggleButton
*radio
= GTK_TOGGLE_BUTTON(next
->data
);
971 if (gtk_toggle_button_get_active(radio
))
972 return GPOINTER_TO_INT(g_object_get_data(
973 G_OBJECT(radio
), "rox-radios-value"));
976 g_warning("Nothing in the radio group is selected!");
981 /* Convert a list of URIs as a string into a GList of EscapedPath URIs.
982 * No unescaping is done.
983 * Lines beginning with # are skipped.
984 * The text block passed in is zero terminated (after the final CRLF)
986 GList
*uri_list_to_glist(const char *uri_list
)
995 linebreak
= strchr(uri_list
, 13);
997 if (!linebreak
|| linebreak
[1] != 10)
999 delayed_error("uri_list_to_glist: %s",
1000 _("Incorrect or missing line "
1001 "break in text/uri-list data"));
1005 length
= linebreak
- uri_list
;
1007 if (length
&& uri_list
[0] != '#')
1008 list
= g_list_append(list
, g_strndup(uri_list
, length
));
1010 uri_list
= linebreak
+ 2;
1016 typedef struct _SimpleImageClass SimpleImageClass
;
1017 typedef struct _SimpleImage SimpleImage
;
1019 struct _SimpleImageClass
{
1020 GtkWidgetClass parent
;
1023 struct _SimpleImage
{
1030 #define SIMPLE_IMAGE(obj) (GTK_CHECK_CAST((obj), \
1031 simple_image_get_type(), SimpleImage))
1033 static void simple_image_finialize(GObject
*object
)
1035 SimpleImage
*image
= SIMPLE_IMAGE(object
);
1037 g_object_unref(G_OBJECT(image
->pixbuf
));
1038 image
->pixbuf
= NULL
;
1041 static void simple_image_size_request(GtkWidget
*widget
,
1042 GtkRequisition
*requisition
)
1044 SimpleImage
*image
= (SimpleImage
*) widget
;
1046 requisition
->width
= image
->width
;
1047 requisition
->height
= image
->height
;
1050 /* Render a pixbuf without messing up the clipping */
1051 void render_pixbuf(GdkPixbuf
*pixbuf
, GdkDrawable
*target
, GdkGC
*gc
,
1052 int x
, int y
, int width
, int height
)
1054 gdk_draw_pixbuf(target
, gc
, pixbuf
, 0, 0, x
, y
, width
, height
,
1055 GDK_RGB_DITHER_NORMAL
, 0, 0);
1059 static gint
simple_image_expose(GtkWidget
*widget
, GdkEventExpose
*event
)
1061 SimpleImage
*image
= (SimpleImage
*) widget
;
1064 gdk_gc_set_clip_region(widget
->style
->black_gc
, event
->region
);
1066 x
= widget
->allocation
.x
+
1067 (widget
->allocation
.width
- image
->width
) / 2;
1069 render_pixbuf(image
->pixbuf
, widget
->window
, widget
->style
->black_gc
,
1070 x
, widget
->allocation
.y
,
1071 image
->width
, image
->height
);
1073 gdk_gc_set_clip_region(widget
->style
->black_gc
, NULL
);
1077 static void simple_image_class_init(gpointer gclass
, gpointer data
)
1079 GObjectClass
*object
= (GObjectClass
*) gclass
;
1080 GtkWidgetClass
*widget
= (GtkWidgetClass
*) gclass
;
1082 object
->finalize
= simple_image_finialize
;
1083 widget
->size_request
= simple_image_size_request
;
1084 widget
->expose_event
= simple_image_expose
;
1087 static void simple_image_init(GTypeInstance
*object
, gpointer gclass
)
1089 GTK_WIDGET_SET_FLAGS(object
, GTK_NO_WINDOW
);
1092 static GType
simple_image_get_type(void)
1094 static GType type
= 0;
1098 static const GTypeInfo info
=
1100 sizeof (SimpleImageClass
),
1101 NULL
, /* base_init */
1102 NULL
, /* base_finalise */
1103 simple_image_class_init
,
1104 NULL
, /* class_finalise */
1105 NULL
, /* class_data */
1106 sizeof(SimpleImage
),
1107 0, /* n_preallocs */
1111 type
= g_type_register_static(gtk_widget_get_type(),
1112 "SimpleImage", &info
, 0);
1118 GtkWidget
*simple_image_new(GdkPixbuf
*pixbuf
)
1122 g_return_val_if_fail(pixbuf
!= NULL
, NULL
);
1124 image
= g_object_new(simple_image_get_type(), NULL
);
1126 image
->pixbuf
= pixbuf
;
1127 g_object_ref(G_OBJECT(pixbuf
));
1129 image
->width
= gdk_pixbuf_get_width(pixbuf
);
1130 image
->height
= gdk_pixbuf_get_height(pixbuf
);
1132 return GTK_WIDGET(image
);
1135 /* Whether a line l1 long starting from n1 overlaps a line l2 from n2 */
1136 inline static gboolean
gui_ranges_overlap(int n1
, int l1
, int n2
, int l2
)
1138 return (n1
> n2
&& n1
< n2
+ l2
) ||
1139 (n1
+ l1
> n2
&& n1
+ l1
< n2
+ l2
) ||
1140 (n1
<= n2
&& n1
+ l1
>= n2
+ l2
);
1143 static void gui_get_monitor_adjacent(int monitor
, MonitorAdjacent
*adj
)
1147 adj
->left
= adj
->right
= adj
->top
= adj
->bottom
= FALSE
;
1149 for (m
= 0; m
< n_monitors
; ++m
)
1153 if (gui_ranges_overlap(monitor_geom
[m
].y
,
1154 monitor_geom
[m
].height
,
1155 monitor_geom
[monitor
].y
,
1156 monitor_geom
[monitor
].height
))
1158 if (monitor_geom
[m
].x
< monitor_geom
[monitor
].x
)
1162 else if (monitor_geom
[m
].x
> monitor_geom
[monitor
].x
)
1167 if (gui_ranges_overlap(monitor_geom
[m
].x
,
1168 monitor_geom
[m
].width
,
1169 monitor_geom
[monitor
].x
,
1170 monitor_geom
[monitor
].width
))
1172 if (monitor_geom
[m
].y
< monitor_geom
[monitor
].y
)
1176 else if (monitor_geom
[m
].y
> monitor_geom
[monitor
].y
)
1184 static void rox_wmspec_change_state(gboolean add
, GdkWindow
*window
,
1185 GdkAtom state1
, GdkAtom state2
)
1187 GdkDisplay
*display
= gdk_drawable_get_display(GDK_DRAWABLE(window
));
1190 #define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
1191 #define _NET_WM_STATE_ADD 1 /* add/set property */
1192 #define _NET_WM_STATE_TOGGLE 2 /* toggle property */
1194 xev
.xclient
.type
= ClientMessage
;
1195 xev
.xclient
.serial
= 0;
1196 xev
.xclient
.send_event
= True
;
1197 xev
.xclient
.window
= GDK_WINDOW_XID(window
);
1198 xev
.xclient
.message_type
= gdk_x11_get_xatom_by_name_for_display(
1199 display
, "_NET_WM_STATE");
1200 xev
.xclient
.format
= 32;
1201 xev
.xclient
.data
.l
[0] = add
? _NET_WM_STATE_ADD
: _NET_WM_STATE_REMOVE
;
1202 xev
.xclient
.data
.l
[1] = gdk_x11_atom_to_xatom_for_display(display
,
1204 xev
.xclient
.data
.l
[2] = gdk_x11_atom_to_xatom_for_display(display
,
1206 xev
.xclient
.data
.l
[3] = 0;
1207 xev
.xclient
.data
.l
[4] = 0;
1209 XSendEvent(GDK_DISPLAY_XDISPLAY(display
),
1211 gdk_screen_get_root_window(
1212 gdk_drawable_get_screen(GDK_DRAWABLE(window
)))),
1214 SubstructureRedirectMask
| SubstructureNotifyMask
,
1218 void keep_below(GdkWindow
*window
, gboolean setting
)
1220 g_return_if_fail(GDK_IS_WINDOW(window
));
1222 if (GDK_WINDOW_DESTROYED(window
))
1225 if (gdk_window_is_visible(window
))
1229 rox_wmspec_change_state(FALSE
, window
,
1230 gdk_atom_intern("_NET_WM_STATE_ABOVE", FALSE
),
1233 rox_wmspec_change_state(setting
, window
,
1234 gdk_atom_intern("_NET_WM_STATE_BELOW", FALSE
),
1240 #if GTK_CHECK_VERSION(2,4,0)
1241 gdk_synthesize_window_state(window
,
1242 setting
? GDK_WINDOW_STATE_ABOVE
:
1243 GDK_WINDOW_STATE_BELOW
,
1244 setting
? GDK_WINDOW_STATE_BELOW
: 0);
1251 size_prepared_cb (GdkPixbufLoader
*loader
,
1259 gboolean preserve_aspect_ratio
;
1262 g_return_if_fail (width
> 0 && height
> 0);
1264 if(info
->preserve_aspect_ratio
) {
1265 if ((double)height
* (double)info
->width
>
1266 (double)width
* (double)info
->height
) {
1267 width
= 0.5 + (double)width
* (double)info
->height
/ (double)height
;
1268 height
= info
->height
;
1270 height
= 0.5 + (double)height
* (double)info
->width
/ (double)width
;
1271 width
= info
->width
;
1274 width
= info
->width
;
1275 height
= info
->height
;
1278 gdk_pixbuf_loader_set_size (loader
, width
, height
);
1282 * rox_pixbuf_new_from_file_at_scale:
1283 * @filename: Name of file to load.
1284 * @width: The width the image should have
1285 * @height: The height the image should have
1286 * @preserve_aspect_ratio: %TRUE to preserve the image's aspect ratio
1287 * @error: Return location for an error
1289 * Creates a new pixbuf by loading an image from a file. The file format is
1290 * detected automatically. If %NULL is returned, then @error will be set.
1291 * Possible errors are in the #GDK_PIXBUF_ERROR and #G_FILE_ERROR domains.
1292 * The image will be scaled to fit in the requested size, optionally preserving
1293 * the image's aspect ratio.
1295 * Return value: A newly-created pixbuf with a reference count of 1, or %NULL
1296 * if any of several error conditions occurred: the file could not be opened,
1297 * there was no loader for the file's format, there was not enough memory to
1298 * allocate the image buffer, or the image file contained invalid data.
1300 * Taken from GTK 2.6.
1303 rox_pixbuf_new_from_file_at_scale (const char *filename
,
1306 gboolean preserve_aspect_ratio
,
1310 GdkPixbufLoader
*loader
;
1313 guchar buffer
[4096];
1319 gboolean preserve_aspect_ratio
;
1322 g_return_val_if_fail (filename
!= NULL
, NULL
);
1323 g_return_val_if_fail (width
> 0 && height
> 0, NULL
);
1325 f
= fopen (filename
, "rb");
1327 gchar
*utf8_filename
= g_filename_to_utf8 (filename
, -1,
1331 g_file_error_from_errno (errno
),
1332 _("Failed to open file '%s': %s"),
1333 utf8_filename
? utf8_filename
: "???",
1334 g_strerror (errno
));
1335 g_free (utf8_filename
);
1339 loader
= gdk_pixbuf_loader_new ();
1342 info
.height
= height
;
1343 info
.preserve_aspect_ratio
= preserve_aspect_ratio
;
1345 g_signal_connect (loader
, "size-prepared", G_CALLBACK (size_prepared_cb
), &info
);
1347 while (!feof (f
) && !ferror (f
)) {
1348 length
= fread (buffer
, 1, sizeof (buffer
), f
);
1350 if (!gdk_pixbuf_loader_write (loader
, buffer
, length
, error
)) {
1351 gdk_pixbuf_loader_close (loader
, NULL
);
1353 g_object_unref (loader
);
1360 if (!gdk_pixbuf_loader_close (loader
, error
)) {
1361 g_object_unref (loader
);
1365 pixbuf
= gdk_pixbuf_loader_get_pixbuf (loader
);
1368 gchar
*utf8_filename
= g_filename_to_utf8 (filename
, -1,
1371 g_object_unref (loader
);
1375 GDK_PIXBUF_ERROR_FAILED
,
1376 _("Failed to load image '%s': reason not known, probably a corrupt image file"),
1377 utf8_filename
? utf8_filename
: "???");
1378 g_free (utf8_filename
);
1382 g_object_ref (pixbuf
);
1384 g_object_unref (loader
);
1389 /* Make the name bolder and larger.
1390 * scale_factor can be PANGO_SCALE_X_LARGE, etc.
1392 void make_heading(GtkWidget
*label
, double scale_factor
)
1394 PangoAttribute
*attr
;
1395 PangoAttrList
*list
;
1397 list
= pango_attr_list_new();
1399 attr
= pango_attr_weight_new(PANGO_WEIGHT_BOLD
);
1400 attr
->start_index
= 0;
1401 attr
->end_index
= -1;
1402 pango_attr_list_insert(list
, attr
);
1404 attr
= pango_attr_scale_new(scale_factor
);
1405 attr
->start_index
= 0;
1406 attr
->end_index
= -1;
1407 pango_attr_list_insert(list
, attr
);
1409 gtk_label_set_attributes(GTK_LABEL(label
), list
);