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 /* toolbar.c - for the button bars that go along the tops of windows */
43 #include "view_iface.h"
44 #include "bookmarks.h"
45 #include "gui_support.h"
47 typedef struct _Tool Tool
;
49 typedef enum {DROP_NONE
, DROP_TO_PARENT
, DROP_TO_HOME
, DROP_BOOKMARK
} DropDest
;
54 const gchar
*tip
; /* Tooltip */
55 void (*clicked
)(GtkWidget
*w
, FilerWindow
*filer_window
);
58 gboolean menu
; /* Activate on button-press */
61 Option o_toolbar
, o_toolbar_info
, o_toolbar_disable
;
62 Option o_toolbar_min_width
;
64 static FilerWindow
*filer_window_being_counted
;
66 /* TRUE if the button presses (or released) should open a new window,
67 * rather than reusing the existing one.
69 #define NEW_WIN_BUTTON(button_event) \
70 (o_new_button_1.int_value \
71 ? ((GdkEventButton *) button_event)->button == 1 \
72 : ((GdkEventButton *) button_event)->button != 1)
74 /* Static prototypes */
75 static void toolbar_close_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
);
76 static void toolbar_up_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
);
77 static void toolbar_home_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
);
78 static void toolbar_bookmarks_clicked(GtkWidget
*widget
,
79 FilerWindow
*filer_window
);
80 static void toolbar_help_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
);
81 static void toolbar_refresh_clicked(GtkWidget
*widget
,
82 FilerWindow
*filer_window
);
83 static void toolbar_size_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
);
84 static void toolbar_autosize_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
);
85 static void toolbar_details_clicked(GtkWidget
*widget
,
86 FilerWindow
*filer_window
);
87 static void toolbar_hidden_clicked(GtkWidget
*widget
,
88 FilerWindow
*filer_window
);
89 static void toolbar_select_clicked(GtkWidget
*widget
,
90 FilerWindow
*filer_window
);
91 static void toolbar_sort_clicked(GtkWidget
*widget
,
92 FilerWindow
*filer_window
);
93 static GtkWidget
*add_button(GtkWidget
*bar
, Tool
*tool
,
94 FilerWindow
*filer_window
);
95 static GtkWidget
*create_toolbar(FilerWindow
*filer_window
);
96 static gboolean
drag_motion(GtkWidget
*widget
,
97 GdkDragContext
*context
,
101 FilerWindow
*filer_window
);
102 static void drag_leave(GtkWidget
*widget
,
103 GdkDragContext
*context
,
105 FilerWindow
*filer_window
);
106 static void handle_drops(FilerWindow
*filer_window
,
109 static void toggle_selected(GtkToggleButton
*widget
, gpointer data
);
110 static void option_notify(void);
111 static GList
*build_tool_options(Option
*option
, xmlNode
*node
, guchar
*label
);
112 static void tally_items(gpointer key
, gpointer value
, gpointer data
);
114 static Tool all_tools
[] = {
115 {N_("Close"), GTK_STOCK_CLOSE
, N_("Close filer window"),
116 toolbar_close_clicked
, DROP_NONE
, FALSE
,
119 {N_("Up"), GTK_STOCK_GO_UP
, N_("Change to parent directory"),
120 toolbar_up_clicked
, DROP_TO_PARENT
, TRUE
,
123 {N_("Home"), GTK_STOCK_HOME
, N_("Change to home directory"),
124 toolbar_home_clicked
, DROP_TO_HOME
, TRUE
,
127 {N_("Bookmarks"), ROX_STOCK_BOOKMARKS
, N_("Bookmarks menu"),
128 toolbar_bookmarks_clicked
, DROP_BOOKMARK
, FALSE
,
131 {N_("Scan"), GTK_STOCK_REFRESH
, N_("Rescan directory contents"),
132 toolbar_refresh_clicked
, DROP_NONE
, TRUE
,
135 {N_("Size"), GTK_STOCK_ZOOM_IN
, N_("Change icon size"),
136 toolbar_size_clicked
, DROP_NONE
, TRUE
,
139 {N_("Size"), GTK_STOCK_ZOOM_FIT
, N_("Automatic size mode"),
140 toolbar_autosize_clicked
, DROP_NONE
, TRUE
,
143 {N_("Details"), ROX_STOCK_SHOW_DETAILS
, N_("Show extra details"),
144 toolbar_details_clicked
, DROP_NONE
, TRUE
,
147 {N_("Sort"), GTK_STOCK_SORT_ASCENDING
, N_("Change sort criteria"),
148 toolbar_sort_clicked
, DROP_NONE
, FALSE
,
151 {N_("Hidden"), ROX_STOCK_SHOW_HIDDEN
, N_("Show/hide hidden files"),
152 toolbar_hidden_clicked
, DROP_NONE
, TRUE
,
155 {N_("Select"), ROX_STOCK_SELECT
, N_("Select all/invert selection"),
156 toolbar_select_clicked
, DROP_NONE
, FALSE
,
159 {N_("Help"), GTK_STOCK_HELP
, N_("Show ROX-Filer help"),
160 toolbar_help_clicked
, DROP_NONE
, TRUE
,
165 /****************************************************************
166 * EXTERNAL INTERFACE *
167 ****************************************************************/
169 void toolbar_init(void)
171 option_add_int(&o_toolbar
, "toolbar_type", TOOLBAR_NORMAL
);
172 option_add_int(&o_toolbar_info
, "toolbar_show_info", 1);
173 option_add_string(&o_toolbar_disable
, "toolbar_disable",
175 option_add_int(&o_toolbar_min_width
, "toolbar_min_width", 1);
176 option_add_notify(option_notify
);
178 option_register_widget("tool-options", build_tool_options
);
181 void toolbar_update_info(FilerWindow
*filer_window
)
187 g_return_if_fail(filer_window
!= NULL
);
189 if (o_toolbar
.int_value
== TOOLBAR_NONE
|| !o_toolbar_info
.int_value
)
190 return; /* Not showing info */
192 if (filer_window
->target_cb
)
195 view
= filer_window
->view
;
197 n_selected
= view_count_selected(view
);
204 if (filer_window
->scanning
)
207 GTK_LABEL(filer_window
->toolbar_text
), "");
211 if (!(filer_window
->show_hidden
||
212 filer_window
->temp_show_hidden
) ||
213 filer_window
->filter
!=FILER_SHOW_ALL
)
215 GHashTable
*hash
= filer_window
->directory
->known_items
;
218 filer_window_being_counted
=filer_window
;
219 g_hash_table_foreach(hash
, tally_items
, &tally
);
222 s
= g_strdup_printf(_(" (%u hidden)"), tally
);
225 n_items
= view_count_items(view
);
228 label
= g_strdup_printf("%d %s%s",
230 n_items
!= 1 ? _("items") : _("item"),
232 else /* (French plurals work differently for zero) */
233 label
= g_strdup_printf(_("No items%s"),
243 view_get_iter(filer_window
->view
, &iter
, VIEW_ITER_SELECTED
);
245 while ((item
= iter
.next(&iter
)))
247 if (item
->base_type
!= TYPE_DIRECTORY
&&
248 item
->base_type
!= TYPE_UNKNOWN
)
249 size
+= (double) item
->size
;
252 label
= g_strdup_printf(_("%u selected (%s)"),
253 n_selected
, format_double_size(size
));
256 gtk_label_set_text(GTK_LABEL(filer_window
->toolbar_text
), label
);
260 /* Create, destroy or recreate toolbar for this window so that it
261 * matches the option setting.
263 void toolbar_update_toolbar(FilerWindow
*filer_window
)
265 g_return_if_fail(filer_window
!= NULL
);
267 if (filer_window
->toolbar
)
269 gtk_widget_destroy(filer_window
->toolbar
);
270 filer_window
->toolbar
= NULL
;
271 filer_window
->toolbar_text
= NULL
;
274 if (o_toolbar
.int_value
!= TOOLBAR_NONE
)
276 filer_window
->toolbar
= create_toolbar(filer_window
);
277 gtk_box_pack_start(filer_window
->toplevel_vbox
,
278 filer_window
->toolbar
, FALSE
, TRUE
, 0);
279 gtk_box_reorder_child(filer_window
->toplevel_vbox
,
280 filer_window
->toolbar
, 0);
281 gtk_widget_show_all(filer_window
->toolbar
);
284 filer_target_mode(filer_window
, NULL
, NULL
, NULL
);
285 toolbar_update_info(filer_window
);
288 /****************************************************************
289 * INTERNAL FUNCTIONS *
290 ****************************************************************/
292 static void toolbar_help_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
)
296 event
= gtk_get_current_event();
297 if (event
->type
== GDK_BUTTON_RELEASE
&&
298 ((GdkEventButton
*) event
)->button
!= 1)
299 menu_rox_help(NULL
, HELP_MANUAL
, NULL
);
301 filer_opendir(make_path(app_dir
, "Help"), NULL
, NULL
);
302 gdk_event_free(event
);
305 static void toolbar_refresh_clicked(GtkWidget
*widget
,
306 FilerWindow
*filer_window
)
310 event
= gtk_get_current_event();
311 if (event
->type
== GDK_BUTTON_RELEASE
&&
312 ((GdkEventButton
*) event
)->button
!= 1)
314 filer_opendir(filer_window
->sym_path
, filer_window
, NULL
);
317 filer_refresh(filer_window
);
318 gdk_event_free(event
);
321 static void toolbar_home_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
)
325 event
= gtk_get_current_event();
326 if (event
->type
== GDK_BUTTON_RELEASE
&& NEW_WIN_BUTTON(event
))
328 filer_opendir(home_dir
, filer_window
, NULL
);
331 filer_change_to(filer_window
, home_dir
, NULL
);
332 gdk_event_free(event
);
335 static void toolbar_bookmarks_clicked(GtkWidget
*widget
,
336 FilerWindow
*filer_window
)
340 g_return_if_fail(filer_window
!= NULL
);
342 event
= gtk_get_current_event();
343 if (event
->type
== GDK_BUTTON_PRESS
&&
344 ((GdkEventButton
*) event
)->button
== 1)
346 bookmarks_show_menu(filer_window
);
348 else if (event
->type
== GDK_BUTTON_RELEASE
&&
349 ((GdkEventButton
*) event
)->button
!= 1)
353 gdk_event_free(event
);
356 static void toolbar_close_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
)
360 g_return_if_fail(filer_window
!= NULL
);
362 event
= gtk_get_current_event();
363 if (event
->type
== GDK_BUTTON_RELEASE
&&
364 ((GdkEventButton
*) event
)->button
!= 1)
366 filer_opendir(filer_window
->sym_path
, filer_window
, NULL
);
368 else if (!filer_window_delete(filer_window
->window
, NULL
, filer_window
))
369 gtk_widget_destroy(filer_window
->window
);
370 gdk_event_free(event
);
373 static void toolbar_up_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
)
377 event
= gtk_get_current_event();
378 if (event
->type
== GDK_BUTTON_RELEASE
&& NEW_WIN_BUTTON(event
))
380 filer_open_parent(filer_window
);
383 change_to_parent(filer_window
);
384 gdk_event_free(event
);
387 static void toolbar_autosize_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
)
391 bev
= (GdkEventButton
*) gtk_get_current_event();
392 if (bev
->type
== GDK_BUTTON_RELEASE
)
394 display_set_layout(filer_window
, AUTO_SIZE_ICONS
, filer_window
->details_type
,
397 gdk_event_free((GdkEvent
*) bev
);
400 static void toolbar_size_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
)
404 bev
= (GdkEventButton
*) gtk_get_current_event();
405 if (bev
->type
== GDK_BUTTON_RELEASE
)
406 display_change_size(filer_window
, bev
->button
== 1);
407 gdk_event_free((GdkEvent
*) bev
);
410 static void toolbar_sort_clicked(GtkWidget
*widget
,
411 FilerWindow
*filer_window
)
414 int i
, current
, next
, next_wrapped
;
419 static const SortType sorts
[]={
420 SORT_NAME
, SORT_TYPE
, SORT_DATE
, SORT_SIZE
,
421 SORT_OWNER
, SORT_GROUP
,
423 static const char *sort_names
[] = {
424 N_("Sort by name"), N_("Sort by type"), N_("Sort by date"),
425 N_("Sort by size"), N_("Sort by owner"), N_("Sort by group"),
428 bev
= (GdkEventButton
*) gtk_get_current_event();
429 adjust
= (bev
->button
!= 1) && bev
->type
== GDK_BUTTON_RELEASE
;
430 gdk_event_free((GdkEvent
*) bev
);
433 dir
= filer_window
->sort_order
;
434 for (i
=0; i
< G_N_ELEMENTS(sort_names
); i
++)
436 if (filer_window
->sort_type
== sorts
[i
])
450 next_wrapped
= next
% G_N_ELEMENTS(sorts
);
452 if (next_wrapped
!= next
)
453 dir
= (dir
== GTK_SORT_ASCENDING
)
454 ? GTK_SORT_DESCENDING
: GTK_SORT_ASCENDING
;
456 display_set_sort_type(filer_window
, sorts
[next_wrapped
], dir
);
457 tip
= g_strconcat(_(sort_names
[next_wrapped
]), ", ",
458 dir
== GTK_SORT_ASCENDING
459 ? _("ascending") : _("descending"),
465 static void toolbar_details_clicked(GtkWidget
*widget
,
466 FilerWindow
*filer_window
)
468 if (filer_window
->view_type
== VIEW_TYPE_DETAILS
)
469 filer_set_view_type(filer_window
, VIEW_TYPE_COLLECTION
);
471 filer_set_view_type(filer_window
, VIEW_TYPE_DETAILS
);
474 static void toolbar_hidden_clicked(GtkWidget
*widget
,
475 FilerWindow
*filer_window
)
477 display_set_hidden(filer_window
, !filer_window
->show_hidden
);
480 static gboolean
invert_cb(ViewIter
*iter
, gpointer data
)
482 return !view_get_selected((ViewIface
*) data
, iter
);
485 static void toolbar_select_clicked(GtkWidget
*widget
, FilerWindow
*filer_window
)
489 event
= gtk_get_current_event();
490 if (event
->type
== GDK_BUTTON_RELEASE
)
492 if (((GdkEventButton
*) event
)->button
== 1)
493 view_select_all(filer_window
->view
);
495 view_select_if(filer_window
->view
, invert_cb
,
498 filer_window
->temp_item_selected
= FALSE
;
499 gdk_event_free(event
);
502 /* If filer_window is NULL, the toolbar is for the options window */
503 static GtkWidget
*create_toolbar(FilerWindow
*filer_window
)
510 bar
= gtk_toolbar_new();
512 if (o_toolbar
.int_value
== TOOLBAR_NORMAL
|| !filer_window
)
513 gtk_toolbar_set_style(GTK_TOOLBAR(bar
), GTK_TOOLBAR_ICONS
);
514 else if (o_toolbar
.int_value
== TOOLBAR_HORIZONTAL
)
515 gtk_toolbar_set_style(GTK_TOOLBAR(bar
), GTK_TOOLBAR_BOTH_HORIZ
);
517 gtk_toolbar_set_style(GTK_TOOLBAR(bar
), GTK_TOOLBAR_BOTH
);
520 for (i
= 0; i
< sizeof(all_tools
) / sizeof(*all_tools
); i
++)
522 Tool
*tool
= &all_tools
[i
];
525 if (filer_window
&& !tool
->enabled
)
528 b
= add_button(bar
, tool
, filer_window
);
530 gtk_widget_size_request(b
, &req
);
533 if (filer_window
&& tool
->drop_action
!= DROP_NONE
)
534 handle_drops(filer_window
, b
, tool
->drop_action
);
539 if(o_toolbar_min_width
.int_value
)
541 /* Make the toolbar wide enough for all icons to be
542 seen, plus a little for the (start of the) text
544 gtk_widget_set_size_request(bar
, width
+32, -1);
546 gtk_widget_set_size_request(bar
, 100, -1);
549 filer_window
->toolbar_text
= gtk_label_new("");
550 gtk_misc_set_alignment(GTK_MISC(filer_window
->toolbar_text
),
552 gtk_toolbar_append_widget(GTK_TOOLBAR(bar
),
553 filer_window
->toolbar_text
, NULL
, NULL
);
559 /* This is used to simulate a click when button 3 is used (GtkButton
560 * normally ignores this).
562 static gint toolbar_other_button
= 0;
563 static gint
toolbar_button_pressed(GtkButton
*button
,
564 GdkEventButton
*event
,
565 FilerWindow
*filer_window
)
567 gint b
= event
->button
;
570 tool
= g_object_get_data(G_OBJECT(button
), "rox-tool");
571 g_return_val_if_fail(tool
!= NULL
, TRUE
);
573 if (tool
->menu
&& b
== 1)
575 tool
->clicked((GtkWidget
*) button
, filer_window
);
579 if ((b
== 2 || b
== 3) && toolbar_other_button
== 0)
581 toolbar_other_button
= event
->button
;
582 gtk_grab_add(GTK_WIDGET(button
));
583 gtk_button_pressed(button
);
591 static gint
toolbar_button_released(GtkButton
*button
,
592 GdkEventButton
*event
,
593 FilerWindow
*filer_window
)
595 if (event
->button
== toolbar_other_button
)
597 toolbar_other_button
= 0;
598 gtk_grab_remove(GTK_WIDGET(button
));
599 gtk_button_released(button
);
607 /* If filer_window is NULL, the toolbar is for the options window */
608 static GtkWidget
*add_button(GtkWidget
*bar
, Tool
*tool
,
609 FilerWindow
*filer_window
)
611 GtkWidget
*button
, *icon_widget
;
613 icon_widget
= gtk_image_new_from_stock(tool
->name
,
614 GTK_ICON_SIZE_LARGE_TOOLBAR
);
616 button
= gtk_toolbar_insert_element(GTK_TOOLBAR(bar
),
617 filer_window
? GTK_TOOLBAR_CHILD_BUTTON
618 : GTK_TOOLBAR_CHILD_TOGGLEBUTTON
,
623 NULL
, NULL
, /* CB, userdata */
624 GTK_TOOLBAR(bar
)->num_children
);
625 GTK_WIDGET_UNSET_FLAGS(button
, GTK_CAN_FOCUS
);
627 if (o_toolbar
.int_value
== TOOLBAR_HORIZONTAL
)
629 GtkWidget
*hbox
, *label
;
631 hbox
= GTK_BIN(button
)->child
;
632 kids
= gtk_container_get_children(GTK_CONTAINER(hbox
));
633 label
= g_list_nth_data(kids
, 1);
638 gtk_box_set_child_packing(GTK_BOX(hbox
), label
,
639 TRUE
, TRUE
, 0, GTK_PACK_END
);
640 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0.5);
644 g_object_set_data(G_OBJECT(button
), "rox-tool", tool
);
648 g_signal_connect(button
, "clicked",
649 G_CALLBACK(tool
->clicked
), filer_window
);
650 g_signal_connect(button
, "button_press_event",
651 G_CALLBACK(toolbar_button_pressed
), filer_window
);
652 g_signal_connect(button
, "button_release_event",
653 G_CALLBACK(toolbar_button_released
), filer_window
);
657 g_signal_connect(button
, "clicked",
658 G_CALLBACK(toggle_selected
), NULL
);
659 g_object_set_data(G_OBJECT(button
), "tool_name",
660 (gpointer
) tool
->name
);
666 static void toggle_selected(GtkToggleButton
*widget
, gpointer data
)
668 option_check_widget(&o_toolbar_disable
);
671 /* Called during the drag when the mouse is in a widget registered
672 * as a drop target. Returns TRUE if we can accept the drop.
674 static gboolean
drag_motion(GtkWidget
*widget
,
675 GdkDragContext
*context
,
679 FilerWindow
*filer_window
)
681 GdkDragAction action
= context
->suggested_action
;
683 gpointer type
= (gpointer
) drop_dest_dir
;
685 dest
= (DropDest
) g_object_get_data(G_OBJECT(widget
), "toolbar_dest");
687 if ((context
->actions
& GDK_ACTION_ASK
) && o_dnd_left_menu
.int_value
&&
688 dest
!= DROP_BOOKMARK
)
691 gdk_window_get_pointer(NULL
, NULL
, NULL
, &state
);
692 if (state
& GDK_BUTTON1_MASK
)
693 action
= GDK_ACTION_ASK
;
696 if (dest
== DROP_TO_HOME
)
697 g_dataset_set_data(context
, "drop_dest_path",
699 else if (dest
== DROP_BOOKMARK
)
700 type
= (gpointer
) drop_dest_bookmark
;
702 g_dataset_set_data_full(context
, "drop_dest_path",
703 g_path_get_dirname(filer_window
->sym_path
),
706 g_dataset_set_data(context
, "drop_dest_type", type
);
707 gdk_drag_status(context
, action
, time
);
709 dnd_spring_load(context
, filer_window
);
710 gtk_button_set_relief(GTK_BUTTON(widget
), GTK_RELIEF_NORMAL
);
715 static void drag_leave(GtkWidget
*widget
,
716 GdkDragContext
*context
,
718 FilerWindow
*filer_window
)
720 gtk_button_set_relief(GTK_BUTTON(widget
), GTK_RELIEF_NONE
);
724 static void handle_drops(FilerWindow
*filer_window
,
728 make_drop_target(button
, 0);
729 g_signal_connect(button
, "drag_motion",
730 G_CALLBACK(drag_motion
), filer_window
);
731 g_signal_connect(button
, "drag_leave",
732 G_CALLBACK(drag_leave
), filer_window
);
733 g_object_set_data(G_OBJECT(button
), "toolbar_dest", (gpointer
) dest
);
736 static void tally_items(gpointer key
, gpointer value
, gpointer data
)
738 guchar
*leafname
= (guchar
*) key
;
739 int *tally
= (int *) data
;
741 if (!filer_match_filter(filer_window_being_counted
, leafname
))
745 static void option_notify(void)
748 gboolean changed
= FALSE
;
749 guchar
*list
= o_toolbar_disable
.value
;
751 for (i
= 0; i
< sizeof(all_tools
) / sizeof(*all_tools
); i
++)
753 Tool
*tool
= &all_tools
[i
];
754 gboolean old
= tool
->enabled
;
756 tool
->enabled
= !in_list(tool
->name
, list
);
758 if (old
!= tool
->enabled
)
762 if (changed
|| o_toolbar
.has_changed
|| o_toolbar_info
.has_changed
)
766 for (next
= all_filer_windows
; next
; next
= next
->next
)
768 FilerWindow
*filer_window
= (FilerWindow
*) next
->data
;
770 toolbar_update_toolbar(filer_window
);
775 static void update_tools(Option
*option
)
779 kids
= gtk_container_get_children(GTK_CONTAINER(option
->widget
));
781 for (next
= kids
; next
; next
= next
->next
)
783 GtkToggleButton
*kid
= (GtkToggleButton
*) next
->data
;
786 name
= g_object_get_data(G_OBJECT(kid
), "tool_name");
788 g_return_if_fail(name
!= NULL
);
790 gtk_toggle_button_set_active(kid
,
791 !in_list(name
, option
->value
));
797 static guchar
*read_tools(Option
*option
)
803 list
= g_string_new(NULL
);
805 kids
= gtk_container_get_children(GTK_CONTAINER(option
->widget
));
807 for (next
= kids
; next
; next
= next
->next
)
809 GtkToggleButton
*kid
= (GtkToggleButton
*) next
->data
;
812 if (!gtk_toggle_button_get_active(kid
))
814 name
= g_object_get_data(G_OBJECT(kid
), "tool_name");
815 g_return_val_if_fail(name
!= NULL
, list
->str
);
818 g_string_append(list
, ", ");
819 g_string_append(list
, name
);
825 g_string_free(list
, FALSE
);
830 static GList
*build_tool_options(Option
*option
, xmlNode
*node
, guchar
*label
)
834 g_return_val_if_fail(option
!= NULL
, NULL
);
836 bar
= create_toolbar(NULL
);
838 option
->update_widget
= update_tools
;
839 option
->read_widget
= read_tools
;
840 option
->widget
= bar
;
842 return g_list_append(NULL
, bar
);