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)
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
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 /* options.c - code for handling user choices */
26 * - The <Choices>/PROJECT/Options file is read in, which contains a list of
27 * name/value pairs, and these are stored in the 'loading' hash table.
29 * - Each part of the filer then calls option_add_int(), or a related function,
30 * supplying the name for each option and a default value. Once an option is
31 * registered, it is removed from the loading table.
33 * - If things need to happen when values change, modules register with
34 * option_add_notify().
36 * - option_register_widget() can be used during initialisation (any time
37 * before the Options box is displayed) to tell the system how to render a
38 * particular type of option.
40 * - Finally, all notify callbacks are called. Use the Option->has_changed
41 * field to work out what has changed from the defaults.
43 * When the user opens the Options box:
45 * - The Options.xml file is read and used to create the Options dialog box.
46 * Each element in the file has a key corresponding to an option named
49 * - For each widget in the box, the current value of the option is used to
50 * set the widget's state.
52 * - All current values are saved for a possible Revert later.
54 * When the user changes an option or clicks on Revert:
56 * - The option values are updated.
58 * - All notify callbacks are called. Use the Option->has_changed field
59 * to see what changed.
63 * - If anything changed then:
64 * - All the options are written to the filesystem
65 * - The saver_callbacks are called.
76 #include <libxml/parser.h>
83 #include "gui_support.h"
86 /* Add all option tooltips to this group */
87 static GtkTooltips
*option_tooltips
= NULL
;
88 #define OPTION_TIP(widget, tip) \
89 gtk_tooltips_set_tip(option_tooltips, widget, tip, NULL)
91 /* The Options window. NULL if not yet created. */
92 static GtkWidget
*window
= NULL
;
94 /* "filer_unique" -> (Option *) */
95 static GHashTable
*option_hash
= NULL
;
97 /* A mapping (name -> value) for options which have been loaded by not
98 * yet registered. The options in this table cannot be used until
99 * option_add_*() is called to move them into option_hash.
101 static GHashTable
*loading
= NULL
;
103 /* A mapping (XML name -> OptionBuildFn). When reading the Options.xml
104 * file, this table gives the function used to create the widgets.
106 static GHashTable
*widget_builder
= NULL
;
108 /* A mapping (name -> GtkSizeGroup) of size groups used by the widgets
109 * in the options box. This hash table is created/destroyed every time
110 * the box is opened/destroyed.
112 static GHashTable
*size_groups
= NULL
;
114 /* List of functions to call after all option values are updated */
115 static GList
*notify_callbacks
= NULL
;
117 /* List of functions to call after all options are saved */
118 static GList
*saver_callbacks
= NULL
;
120 static int updating_widgets
= 0; /* Ignore change signals when set */
122 static GtkWidget
*revert_widget
= NULL
;
124 /* Static prototypes */
125 static void save_options(void);
126 static void revert_options(GtkWidget
*widget
, gpointer data
);
127 static void build_options_window(void);
128 static GtkWidget
*build_window_frame(GtkTreeView
**tree_view
);
129 static void update_option_widgets(void);
130 static void button_patch_set_colour(GtkWidget
*button
, GdkColor
*color
);
131 static void option_add(Option
*option
, const gchar
*key
);
132 static void set_not_changed(gpointer key
, gpointer value
, gpointer data
);
133 static void load_options(xmlDoc
*doc
);
134 static gboolean
check_anything_changed(void);
135 static int get_int(xmlNode
*node
, guchar
*attr
);
136 static void may_add_tip(GtkWidget
*widget
, xmlNode
*element
);
137 static void add_to_size_group(xmlNode
*node
, GtkWidget
*widget
);
139 static const char *process_option_line(gchar
*line
);
141 static GList
*build_label(Option
*option
, xmlNode
*node
, guchar
*label
);
142 static GList
*build_spacer(Option
*option
, xmlNode
*node
, guchar
*label
);
143 static GList
*build_frame(Option
*option
, xmlNode
*node
, guchar
*label
);
145 static GList
*build_toggle(Option
*option
, xmlNode
*node
, guchar
*label
);
146 static GList
*build_slider(Option
*option
, xmlNode
*node
, guchar
*label
);
147 static GList
*build_entry(Option
*option
, xmlNode
*node
, guchar
*label
);
148 static GList
*build_radio_group(Option
*option
, xmlNode
*node
, guchar
*label
);
149 static GList
*build_colour(Option
*option
, xmlNode
*node
, guchar
*label
);
150 static GList
*build_menu(Option
*option
, xmlNode
*node
, guchar
*label
);
151 static GList
*build_font(Option
*option
, xmlNode
*node
, guchar
*label
);
152 static GList
*build_numentry(Option
*option
, xmlNode
*node
, guchar
*label
);
153 static void update_numentry(Option
*option
);
154 static guchar
*read_numentry(Option
*option
);
156 static gboolean updating_file_format
= FALSE
;
158 /****************************************************************
159 * EXTERNAL INTERFACE *
160 ****************************************************************/
162 void options_init(void)
167 loading
= g_hash_table_new(g_str_hash
, g_str_equal
);
168 option_hash
= g_hash_table_new(g_str_hash
, g_str_equal
);
169 widget_builder
= g_hash_table_new(g_str_hash
, g_str_equal
);
171 path
= choices_find_xdg_path_load("Options", PROJECT
, SITE
);
174 /* Load in all the options set in the filer, storing them
175 * temporarily in the loading hash table.
176 * They get moved to option_hash when they're registered.
178 doc
= xmlParseFile(path
);
186 parse_file(path
, process_option_line
);
187 updating_file_format
= TRUE
;
193 option_register_widget("label", build_label
);
194 option_register_widget("spacer", build_spacer
);
195 option_register_widget("frame", build_frame
);
197 option_register_widget("toggle", build_toggle
);
198 option_register_widget("slider", build_slider
);
199 option_register_widget("entry", build_entry
);
200 option_register_widget("numentry", build_numentry
);
201 option_register_widget("radio-group", build_radio_group
);
202 option_register_widget("colour", build_colour
);
203 option_register_widget("menu", build_menu
);
204 option_register_widget("font", build_font
);
207 /* When parsing the XML file, process an element named 'name' by
208 * calling 'builder(option, xml_node, label)'.
209 * builder returns the new widgets to add to the options box.
210 * 'name' should be a static string. Call 'option_check_widget' when
211 * the widget's value is modified.
213 * Functions to set or get the widget's state can be stored in 'option'.
214 * If the option doesn't have a name attribute in Options.xml then
215 * ui will be NULL on entry (this is used for buttons).
217 void option_register_widget(char *name
, OptionBuildFn builder
)
219 g_hash_table_insert(widget_builder
, name
, builder
);
222 /* This is called when the widget's value is modified by the user.
223 * Reads the new value of the widget into the option and calls
224 * the notify callbacks.
226 void option_check_widget(Option
*option
)
230 if (updating_widgets
)
231 return; /* Not caused by the user... */
233 g_return_if_fail(option
->read_widget
!= NULL
);
235 new = option
->read_widget(option
);
237 g_return_if_fail(new != NULL
);
239 g_hash_table_foreach(option_hash
, set_not_changed
, NULL
);
241 option
->has_changed
= strcmp(option
->value
, new) != 0;
243 if (!option
->has_changed
)
249 g_free(option
->value
);
251 option
->int_value
= atoi(new);
256 /* Call all the notify callbacks. This should happen after any options
257 * have their values changed.
258 * Set each option->has_changed flag before calling this function.
260 void options_notify(void)
264 for (next
= notify_callbacks
; next
; next
= next
->next
)
266 OptionNotify
*cb
= (OptionNotify
*) next
->data
;
271 if (updating_file_format
)
273 updating_file_format
= FALSE
;
275 info_message(_("ROX-Filer has converted your Options file "
276 "to the new XML format"));
280 gtk_widget_set_sensitive(revert_widget
,
281 check_anything_changed());
284 /* Store values used by Revert */
285 static void store_backup(gpointer key
, gpointer value
, gpointer data
)
287 Option
*option
= (Option
*) value
;
289 g_free(option
->backup
);
290 option
->backup
= g_strdup(option
->value
);
293 /* Allow the user to edit the options. Returns the window widget (you don't
294 * normally need this). NULL if already open.
296 GtkWidget
*options_show(void)
298 if (!option_tooltips
)
299 option_tooltips
= gtk_tooltips_new();
302 if (g_hash_table_size(loading) != 0)
304 g_print(PROJECT ": Some options loaded but not used:\n");
305 g_hash_table_foreach(loading, (GHFunc) puts, NULL);
311 gtk_window_present(GTK_WINDOW(window
));
315 g_hash_table_foreach(option_hash
, store_backup
, NULL
);
317 build_options_window();
319 update_option_widgets();
321 gtk_widget_show_all(window
);
326 /* Initialise and register a new integer option */
327 void option_add_int(Option
*option
, const gchar
*key
, int value
)
329 option
->value
= g_strdup_printf("%d", value
);
330 option
->int_value
= value
;
331 option_add(option
, key
);
334 void option_add_string(Option
*option
, const gchar
*key
, const gchar
*value
)
336 option
->value
= g_strdup(value
);
337 option
->int_value
= atoi(value
);
338 option_add(option
, key
);
341 /* Add a callback which will be called after any options have changed their
342 * values. If several options change at once, this is called after all
345 void option_add_notify(OptionNotify
*callback
)
347 g_return_if_fail(callback
!= NULL
);
349 notify_callbacks
= g_list_append(notify_callbacks
, callback
);
352 /* Call 'callback' after all the options have been saved */
353 void option_add_saver(OptionNotify
*callback
)
355 g_return_if_fail(callback
!= NULL
);
357 saver_callbacks
= g_list_append(saver_callbacks
, callback
);
360 /* Base class for building numentry widgets with particular ranges */
361 GList
*build_numentry_base(Option
*option
, xmlNode
*node
,
362 guchar
*label
, GtkAdjustment
*adj
)
366 GtkWidget
*label_wid
;
370 width
= get_int(node
, "width");
371 unit
= xmlGetProp(node
, "unit");
373 hbox
= gtk_hbox_new(FALSE
, 4);
377 label_wid
= gtk_label_new(_(label
));
378 gtk_misc_set_alignment(GTK_MISC(label_wid
), 1.0, 0.5);
379 gtk_box_pack_start(GTK_BOX(hbox
), label_wid
, FALSE
, TRUE
, 0);
380 add_to_size_group(node
, label_wid
);
383 spin
= gtk_spin_button_new(adj
, adj
->step_increment
, 0);
384 gtk_entry_set_width_chars(GTK_ENTRY(spin
),
385 width
> 1 ? width
+ 1 : 2);
386 gtk_box_pack_start(GTK_BOX(hbox
), spin
, FALSE
, TRUE
, 0);
387 may_add_tip(spin
, node
);
391 gtk_box_pack_start(GTK_BOX(hbox
), gtk_label_new(_(unit
)),
396 option
->update_widget
= update_numentry
;
397 option
->read_widget
= read_numentry
;
398 option
->widget
= spin
;
400 g_signal_connect_swapped(spin
, "value-changed",
401 G_CALLBACK(option_check_widget
), option
);
403 return g_list_append(NULL
, hbox
);
406 /****************************************************************
407 * INTERNAL FUNCTIONS *
408 ****************************************************************/
410 /* Option should contain the default value.
411 * It must never be destroyed after being registered (Options are typically
412 * statically allocated).
413 * The key corresponds to the option's name in Options.xml, and to the key
414 * in the saved options file.
416 * On exit, the value will have been updated to the loaded value, if
417 * different to the default.
419 static void option_add(Option
*option
, const gchar
*key
)
421 gpointer okey
, value
;
423 g_return_if_fail(option_hash
!= NULL
);
424 g_return_if_fail(g_hash_table_lookup(option_hash
, key
) == NULL
);
425 g_return_if_fail(option
->value
!= NULL
);
427 option
->has_changed
= FALSE
;
429 option
->widget
= NULL
;
430 option
->update_widget
= NULL
;
431 option
->read_widget
= NULL
;
432 option
->backup
= NULL
;
434 g_hash_table_insert(option_hash
, (gchar
*) key
, option
);
436 /* Use the value loaded from the file, if any */
437 if (g_hash_table_lookup_extended(loading
, key
, &okey
, &value
))
439 option
->has_changed
= strcmp(option
->value
, value
) != 0;
441 g_free(option
->value
);
442 option
->value
= value
;
443 option
->int_value
= atoi(value
);
444 g_hash_table_remove(loading
, key
);
449 static GtkColorSelectionDialog
*current_csel_box
= NULL
;
450 static GtkFontSelectionDialog
*current_fontsel_box
= NULL
;
452 static void get_new_colour(GtkWidget
*ok
, Option
*option
)
457 g_return_if_fail(current_csel_box
!= NULL
);
459 csel
= current_csel_box
->colorsel
;
461 gtk_color_selection_get_current_color(GTK_COLOR_SELECTION(csel
), &c
);
463 button_patch_set_colour(option
->widget
, &c
);
465 gtk_widget_destroy(GTK_WIDGET(current_csel_box
));
467 option_check_widget(option
);
470 static void open_coloursel(GtkWidget
*button
, Option
*option
)
472 GtkColorSelectionDialog
*csel
;
473 GtkWidget
*dialog
, *patch
;
475 if (current_csel_box
)
476 gtk_widget_destroy(GTK_WIDGET(current_csel_box
));
478 dialog
= gtk_color_selection_dialog_new(NULL
);
479 csel
= GTK_COLOR_SELECTION_DIALOG(dialog
);
480 current_csel_box
= csel
;
481 gtk_window_set_position(GTK_WINDOW(csel
), GTK_WIN_POS_MOUSE
);
483 g_signal_connect(dialog
, "destroy",
484 G_CALLBACK(gtk_widget_destroyed
), ¤t_csel_box
);
485 gtk_widget_hide(csel
->help_button
);
486 g_signal_connect_swapped(csel
->cancel_button
, "clicked",
487 G_CALLBACK(gtk_widget_destroy
), dialog
);
488 g_signal_connect(csel
->ok_button
, "clicked",
489 G_CALLBACK(get_new_colour
), option
);
491 patch
= GTK_BIN(button
)->child
;
493 gtk_color_selection_set_current_color(
494 GTK_COLOR_SELECTION(csel
->colorsel
),
495 &patch
->style
->bg
[GTK_STATE_NORMAL
]);
497 gtk_widget_show(dialog
);
500 static void font_chosen(GtkWidget
*dialog
, gint response
, Option
*option
)
504 if (response
!= GTK_RESPONSE_OK
)
507 font
= gtk_font_selection_dialog_get_font_name(
508 GTK_FONT_SELECTION_DIALOG(dialog
));
510 gtk_label_set_text(GTK_LABEL(option
->widget
), font
);
514 option_check_widget(option
);
517 gtk_widget_destroy(dialog
);
521 static void toggle_active_font(GtkToggleButton
*toggle
, Option
*option
)
523 if (current_fontsel_box
)
524 gtk_widget_destroy(GTK_WIDGET(current_fontsel_box
));
526 if (gtk_toggle_button_get_active(toggle
))
528 gtk_widget_set_sensitive(option
->widget
->parent
, TRUE
);
529 gtk_label_set_text(GTK_LABEL(option
->widget
), "Sans 12");
533 gtk_widget_set_sensitive(option
->widget
->parent
, FALSE
);
534 gtk_label_set_text(GTK_LABEL(option
->widget
),
538 option_check_widget(option
);
541 static void open_fontsel(GtkWidget
*button
, Option
*option
)
543 if (current_fontsel_box
)
544 gtk_widget_destroy(GTK_WIDGET(current_fontsel_box
));
546 current_fontsel_box
= GTK_FONT_SELECTION_DIALOG(
547 gtk_font_selection_dialog_new(PROJECT
));
549 gtk_window_set_position(GTK_WINDOW(current_fontsel_box
),
552 g_signal_connect(current_fontsel_box
, "destroy",
553 G_CALLBACK(gtk_widget_destroyed
), ¤t_fontsel_box
);
555 gtk_font_selection_dialog_set_font_name(current_fontsel_box
,
558 g_signal_connect(current_fontsel_box
, "response",
559 G_CALLBACK(font_chosen
), option
);
561 gtk_widget_show(GTK_WIDGET(current_fontsel_box
));
564 /* These are used during parsing... */
565 static xmlDocPtr options_doc
= NULL
;
567 #define DATA(node) (xmlNodeListGetString(options_doc, node->xmlChildrenNode, 1))
569 static void may_add_tip(GtkWidget
*widget
, xmlNode
*element
)
573 data
= DATA(element
);
577 tip
= g_strstrip(g_strdup(data
));
580 OPTION_TIP(widget
, _(tip
));
584 /* Returns zero if attribute is not present */
585 static int get_int(xmlNode
*node
, guchar
*attr
)
590 txt
= xmlGetProp(node
, attr
);
600 /* Adds 'widget' to the GtkSizeGroup selected by 'index'. This function
601 * does nothing if 'node' has no "sizegroup" attribute.
602 * The value of "sizegroup" is either a key. All widgets with the same
603 * key request the same size.
604 * Size groups are created on the fly and get destroyed when the options
607 static void add_to_size_group(xmlNode
*node
, GtkWidget
*widget
)
612 g_return_if_fail(node
!= NULL
);
613 g_return_if_fail(widget
!= NULL
);
615 name
= xmlGetProp(node
, "sizegroup");
619 if (size_groups
== NULL
)
620 size_groups
= g_hash_table_new_full(g_str_hash
, g_str_equal
,
623 sg
= (GtkSizeGroup
*) g_hash_table_lookup(size_groups
, name
);
627 sg
= (GtkSizeGroup
*) gtk_size_group_new(
628 GTK_SIZE_GROUP_HORIZONTAL
);
629 g_hash_table_insert(size_groups
, name
, sg
);
630 gtk_size_group_add_widget(sg
, widget
);
631 g_object_unref(G_OBJECT(sg
));
635 gtk_size_group_add_widget(sg
, widget
);
640 static GtkWidget
*build_radio(xmlNode
*radio
, GtkWidget
*prev
)
643 GtkRadioButton
*prev_button
= (GtkRadioButton
*) prev
;
646 label
= xmlGetProp(radio
, "label");
648 button
= gtk_radio_button_new_with_label(
649 prev_button
? gtk_radio_button_get_group(prev_button
)
654 may_add_tip(button
, radio
);
656 g_object_set_data(G_OBJECT(button
), "value",
657 xmlGetProp(radio
, "value"));
662 static void build_menu_item(xmlNode
*node
, GtkWidget
*menu
)
667 g_return_if_fail(strcmp(node
->name
, "item") == 0);
669 label
= xmlGetProp(node
, "label");
670 item
= gtk_menu_item_new_with_label(_(label
));
673 gtk_widget_show(item
);
674 gtk_menu_shell_append(GTK_MENU_SHELL(menu
), item
);
676 g_object_set_data(G_OBJECT(item
), "value", xmlGetProp(node
, "value"));
679 static void build_widget(xmlNode
*widget
, GtkWidget
*box
)
681 const char *name
= widget
->name
;
682 OptionBuildFn builder
;
687 label
= xmlGetProp(widget
, "label");
689 if (strcmp(name
, "hbox") == 0 || strcmp(name
, "vbox") == 0)
695 nbox
= gtk_hbox_new(FALSE
, 4);
697 nbox
= gtk_vbox_new(FALSE
, 0);
700 gtk_box_pack_start(GTK_BOX(nbox
),
701 gtk_label_new(_(label
)), FALSE
, TRUE
, 4);
702 gtk_box_pack_start(GTK_BOX(box
), nbox
, FALSE
, TRUE
, 0);
704 for (hw
= widget
->xmlChildrenNode
; hw
; hw
= hw
->next
)
706 if (hw
->type
== XML_ELEMENT_NODE
)
707 build_widget(hw
, nbox
);
714 oname
= xmlGetProp(widget
, "name");
718 option
= g_hash_table_lookup(option_hash
, oname
);
722 g_warning("No Option for '%s'!\n", oname
);
732 builder
= g_hash_table_lookup(widget_builder
, name
);
735 GList
*widgets
, *next
;
737 if (option
&& option
->widget
)
738 g_warning("Widget for option already exists!");
740 widgets
= builder(option
, widget
, label
);
742 for (next
= widgets
; next
; next
= next
->next
)
744 GtkWidget
*w
= (GtkWidget
*) next
->data
;
745 gtk_box_pack_start(GTK_BOX(box
), w
, FALSE
, TRUE
, 0);
747 g_list_free(widgets
);
750 g_warning("Unknown option type '%s'\n", name
);
755 static void build_section(xmlNode
*section
, GtkWidget
*notebook
,
756 GtkTreeStore
*tree_store
, GtkTreeIter
*parent
)
758 guchar
*title
= NULL
;
763 title
= xmlGetProp(section
, "title");
764 page
= gtk_vbox_new(FALSE
, 4);
765 gtk_container_set_border_width(GTK_CONTAINER(page
), 4);
766 gtk_notebook_append_page(GTK_NOTEBOOK(notebook
), page
, NULL
);
768 gtk_tree_store_append(tree_store
, &iter
, parent
);
769 gtk_tree_store_set(tree_store
, &iter
, 0, _(title
), 1, page
, -1);
772 widget
= section
->xmlChildrenNode
;
773 for (; widget
; widget
= widget
->next
)
775 if (widget
->type
== XML_ELEMENT_NODE
)
777 if (strcmp(widget
->name
, "section") == 0)
778 build_section(widget
, notebook
,
781 build_widget(widget
, page
);
786 /* Parse <app_dir>/Options.xml to create the options window.
787 * Sets the global 'window' variable.
789 static void build_options_window(void)
794 xmlDocPtr options_doc
;
795 xmlNode
*options
, *section
;
798 notebook
= build_window_frame(&tree
);
800 path
= g_strconcat(app_dir
, "/Options.xml", NULL
);
801 options_doc
= xmlParseFile(path
);
805 report_error(_("Internal error: %s unreadable"), path
);
812 options
= xmlDocGetRootElement(options_doc
);
813 if (strcmp(options
->name
, "options") == 0)
815 GtkTreePath
*treepath
;
817 store
= (GtkTreeStore
*) gtk_tree_view_get_model(tree
);
818 section
= options
->xmlChildrenNode
;
819 for (; section
; section
= section
->next
)
820 if (section
->type
== XML_ELEMENT_NODE
)
821 build_section(section
, notebook
, store
, NULL
);
823 gtk_tree_view_expand_all(tree
);
824 treepath
= gtk_tree_path_new_first();
827 gtk_tree_view_set_cursor(tree
, treepath
, NULL
, FALSE
);
828 gtk_tree_path_free(treepath
);
832 xmlFreeDoc(options_doc
);
836 static void null_widget(gpointer key
, gpointer value
, gpointer data
)
838 Option
*option
= (Option
*) value
;
840 option
->widget
= NULL
;
843 static void options_destroyed(GtkWidget
*widget
, gpointer data
)
845 if (current_csel_box
)
846 gtk_widget_destroy(GTK_WIDGET(current_csel_box
));
847 if (current_fontsel_box
)
848 gtk_widget_destroy(GTK_WIDGET(current_fontsel_box
));
850 revert_widget
= NULL
;
852 if (check_anything_changed())
855 if (widget
== window
)
859 g_hash_table_foreach(option_hash
, null_widget
, NULL
);
863 g_hash_table_destroy(size_groups
);
870 /* The cursor has been changed in the tree view, so switch to the new
871 * page in the notebook.
873 static void tree_cursor_changed(GtkTreeView
*tv
, gpointer data
)
875 GtkTreePath
*path
= NULL
;
876 GtkNotebook
*nbook
= GTK_NOTEBOOK(data
);
878 GtkWidget
*page
= NULL
;
881 gtk_tree_view_get_cursor(tv
, &path
, NULL
);
885 model
= gtk_tree_view_get_model(tv
);
886 gtk_tree_model_get_iter(model
, &iter
, path
);
887 gtk_tree_path_free(path
);
888 gtk_tree_model_get(model
, &iter
, 1, &page
, -1);
892 gtk_notebook_set_current_page(nbook
,
893 gtk_notebook_page_num(nbook
, page
));
894 g_object_unref(page
);
898 /* Creates the window and adds the various buttons to it.
899 * Returns the notebook to add sections to and sets the global
900 * 'window'. If 'tree_view' is non-NULL, it stores the address
901 * of the tree view widget there.
903 static GtkWidget
*build_window_frame(GtkTreeView
**tree_view
)
906 GtkWidget
*tl_vbox
, *hbox
, *frame
, *tv
;
907 GtkWidget
*actions
, *button
;
909 char *string
, *save_path
;
911 window
= gtk_window_new(GTK_WINDOW_TOPLEVEL
);
913 gtk_window_set_position(GTK_WINDOW(window
), GTK_WIN_POS_CENTER
);
914 gtk_window_set_title(GTK_WINDOW(window
), _("Options"));
915 g_signal_connect(window
, "destroy",
916 G_CALLBACK(options_destroyed
), NULL
);
917 gtk_container_set_border_width(GTK_CONTAINER(window
), 4);
919 tl_vbox
= gtk_vbox_new(FALSE
, 4);
920 gtk_container_add(GTK_CONTAINER(window
), tl_vbox
);
922 hbox
= gtk_hbox_new(FALSE
, 4);
923 gtk_box_pack_start(GTK_BOX(tl_vbox
), hbox
, TRUE
, TRUE
, 0);
925 frame
= gtk_frame_new(NULL
);
926 gtk_frame_set_shadow_type(GTK_FRAME(frame
), GTK_SHADOW_IN
);
927 gtk_box_pack_end(GTK_BOX(hbox
), frame
, TRUE
, TRUE
, 0);
929 notebook
= gtk_notebook_new();
930 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(notebook
), FALSE
);
931 gtk_notebook_set_show_border(GTK_NOTEBOOK(notebook
), FALSE
);
932 gtk_container_add(GTK_CONTAINER(frame
), notebook
);
934 frame
= gtk_frame_new(NULL
);
935 gtk_frame_set_shadow_type(GTK_FRAME(frame
), GTK_SHADOW_IN
);
936 gtk_box_pack_start(GTK_BOX(hbox
), frame
, FALSE
, TRUE
, 0);
939 model
= gtk_tree_store_new(2, G_TYPE_STRING
, GTK_TYPE_WIDGET
);
940 tv
= gtk_tree_view_new_with_model(GTK_TREE_MODEL(model
));
941 g_object_unref(model
);
942 gtk_tree_selection_set_mode(
943 gtk_tree_view_get_selection(GTK_TREE_VIEW(tv
)),
944 GTK_SELECTION_BROWSE
);
945 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(tv
), FALSE
);
946 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(tv
), -1,
947 NULL
, gtk_cell_renderer_text_new(), "text", 0, NULL
);
948 gtk_container_add(GTK_CONTAINER(frame
), tv
);
949 g_signal_connect(tv
, "cursor_changed",
950 G_CALLBACK(tree_cursor_changed
), notebook
);
952 actions
= gtk_hbutton_box_new();
953 gtk_button_box_set_layout(GTK_BUTTON_BOX(actions
),
955 gtk_box_set_spacing(GTK_BOX(actions
), 10);
957 gtk_box_pack_start(GTK_BOX(tl_vbox
), actions
, FALSE
, TRUE
, 0);
959 revert_widget
= button_new_mixed(GTK_STOCK_UNDO
, _("_Revert"));
960 GTK_WIDGET_SET_FLAGS(revert_widget
, GTK_CAN_DEFAULT
);
961 gtk_box_pack_start(GTK_BOX(actions
), revert_widget
, FALSE
, TRUE
, 0);
962 g_signal_connect(revert_widget
, "clicked",
963 G_CALLBACK(revert_options
), NULL
);
964 gtk_tooltips_set_tip(option_tooltips
, revert_widget
,
965 _("Restore all choices to how they were when the "
966 "Options box was opened."), NULL
);
967 gtk_widget_set_sensitive(revert_widget
, check_anything_changed());
969 button
= gtk_button_new_from_stock(GTK_STOCK_OK
);
970 GTK_WIDGET_SET_FLAGS(button
, GTK_CAN_DEFAULT
);
971 gtk_box_pack_start(GTK_BOX(actions
), button
, FALSE
, TRUE
, 0);
972 g_signal_connect_swapped(button
, "clicked",
973 G_CALLBACK(gtk_widget_destroy
), window
);
974 gtk_widget_grab_default(button
);
975 gtk_widget_grab_focus(button
);
977 save_path
= choices_find_xdg_path_save("...", PROJECT
, SITE
, FALSE
);
980 string
= g_strdup_printf(_("Choices will be saved as:\n%s"),
982 gtk_tooltips_set_tip(option_tooltips
, button
, string
, NULL
);
987 gtk_tooltips_set_tip(option_tooltips
, button
,
988 _("(saving disabled by CHOICESPATH)"), NULL
);
991 *tree_view
= GTK_TREE_VIEW(tv
);
996 /* Given the last radio button in the group, select whichever
997 * radio button matches the given value.
999 static void radio_group_set_value(GtkRadioButton
*last
, guchar
*value
)
1003 for (next
= gtk_radio_button_get_group(last
); next
; next
= next
->next
)
1005 GtkToggleButton
*button
= (GtkToggleButton
*) next
->data
;
1008 val
= g_object_get_data(G_OBJECT(button
), "value");
1009 g_return_if_fail(val
!= NULL
);
1011 if (strcmp(val
, value
) == 0)
1013 gtk_toggle_button_set_active(button
, TRUE
);
1018 g_warning("Can't find radio button with value %s\n", value
);
1021 /* Given the last radio button in the group, return a copy of the
1022 * value for the selected radio item.
1024 static guchar
*radio_group_get_value(GtkRadioButton
*last
)
1028 for (next
= gtk_radio_button_get_group(last
); next
; next
= next
->next
)
1030 GtkToggleButton
*button
= (GtkToggleButton
*) next
->data
;
1032 if (gtk_toggle_button_get_active(button
))
1036 val
= g_object_get_data(G_OBJECT(button
), "value");
1037 g_return_val_if_fail(val
!= NULL
, NULL
);
1039 return g_strdup(val
);
1046 /* Select this item with this value */
1047 static void option_menu_set(GtkOptionMenu
*om
, guchar
*value
)
1053 menu
= gtk_option_menu_get_menu(om
);
1054 list
= gtk_container_get_children(GTK_CONTAINER(menu
));
1056 for (next
= list
; next
; next
= next
->next
)
1058 GObject
*item
= (GObject
*) next
->data
;
1061 data
= g_object_get_data(item
, "value");
1062 g_return_if_fail(data
!= NULL
);
1064 if (strcmp(data
, value
) == 0)
1066 gtk_option_menu_set_history(om
, i
);
1076 /* Get the value (static) of the selected item */
1077 static guchar
*option_menu_get(GtkOptionMenu
*om
)
1079 GtkWidget
*menu
, *item
;
1081 menu
= gtk_option_menu_get_menu(om
);
1082 item
= gtk_menu_get_active(GTK_MENU(menu
));
1084 return g_object_get_data(G_OBJECT(item
), "value");
1087 static void restore_backup(gpointer key
, gpointer value
, gpointer data
)
1089 Option
*option
= (Option
*) value
;
1091 g_return_if_fail(option
->backup
!= NULL
);
1093 option
->has_changed
= strcmp(option
->value
, option
->backup
) != 0;
1094 if (!option
->has_changed
)
1097 g_free(option
->value
);
1098 option
->value
= g_strdup(option
->backup
);
1099 option
->int_value
= atoi(option
->value
);
1102 static void revert_options(GtkWidget
*widget
, gpointer data
)
1104 g_hash_table_foreach(option_hash
, restore_backup
, NULL
);
1106 update_option_widgets();
1109 static void check_changed_cb(gpointer key
, gpointer value
, gpointer data
)
1111 Option
*option
= (Option
*) value
;
1112 gboolean
*changed
= (gboolean
*) data
;
1114 g_return_if_fail(option
->backup
!= NULL
);
1119 if (strcmp(option
->value
, option
->backup
) != 0)
1123 static gboolean
check_anything_changed(void)
1125 gboolean retval
= FALSE
;
1127 g_hash_table_foreach(option_hash
, check_changed_cb
, &retval
);
1132 static void write_option(gpointer key
, gpointer value
, gpointer data
)
1134 xmlNodePtr doc
= (xmlNodePtr
) data
;
1135 Option
*option
= (Option
*) value
;
1138 tree
= xmlNewTextChild(doc
, NULL
, "Option", option
->value
);
1139 xmlSetProp(tree
, "name", (gchar
*) key
);
1142 static void save_options(void)
1146 guchar
*save
, *save_new
;
1148 save
= choices_find_xdg_path_save("Options", PROJECT
, SITE
, TRUE
);
1152 save_new
= g_strconcat(save
, ".new", NULL
);
1154 doc
= xmlNewDoc("1.0");
1155 xmlDocSetRootElement(doc
, xmlNewDocNode(doc
, NULL
, "Options", NULL
));
1157 g_hash_table_foreach(option_hash
, write_option
,
1158 xmlDocGetRootElement(doc
));
1160 if (save_xml_file(doc
, save_new
) || rename(save_new
, save
))
1161 report_error(_("Error saving %s: %s"), save
, g_strerror(errno
));
1167 for (next
= saver_callbacks
; next
; next
= next
->next
)
1169 OptionNotify
*cb
= (OptionNotify
*) next
->data
;
1175 gtk_widget_destroy(window
);
1178 /* Make the widget reflect the current value of the option */
1179 static void update_cb(gpointer key
, gpointer value
, gpointer data
)
1181 Option
*option
= (Option
*) value
;
1183 g_return_if_fail(option
!= NULL
);
1184 if (option
->widget
== NULL
)
1189 if (option
->update_widget
)
1190 option
->update_widget(option
);
1195 /* Reflect the values in the Option structures by changing the widgets
1196 * in the Options window.
1198 static void update_option_widgets(void)
1200 g_hash_table_foreach(option_hash
, update_cb
, NULL
);
1203 /* Each of the following update the widget to make it show the current
1204 * value of the option.
1207 static void update_toggle(Option
*option
)
1209 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(option
->widget
),
1213 static void update_entry(Option
*option
)
1215 gtk_entry_set_text(GTK_ENTRY(option
->widget
), option
->value
);
1218 static void update_numentry(Option
*option
)
1220 gtk_spin_button_set_value(GTK_SPIN_BUTTON(option
->widget
),
1224 static void update_radio_group(Option
*option
)
1226 radio_group_set_value(GTK_RADIO_BUTTON(option
->widget
), option
->value
);
1229 static void update_slider(Option
*option
)
1231 gtk_adjustment_set_value(
1232 gtk_range_get_adjustment(GTK_RANGE(option
->widget
)),
1236 static void update_menu(Option
*option
)
1238 option_menu_set(GTK_OPTION_MENU(option
->widget
), option
->value
);
1241 static void update_font(Option
*option
)
1243 GtkToggleButton
*active
;
1244 gboolean have_font
= option
->value
[0] != '\0';
1246 active
= g_object_get_data(G_OBJECT(option
->widget
), "rox_override");
1250 gtk_toggle_button_set_active(active
, have_font
);
1251 gtk_widget_set_sensitive(option
->widget
->parent
, have_font
);
1254 gtk_label_set_text(GTK_LABEL(option
->widget
),
1255 have_font
? option
->value
1256 : (guchar
*) _("(use default)"));
1259 static void update_colour(Option
*option
)
1263 gdk_color_parse(option
->value
, &colour
);
1264 button_patch_set_colour(option
->widget
, &colour
);
1267 /* Each of these read_* calls get the new (string) value of an option
1271 static guchar
*read_toggle(Option
*option
)
1273 GtkToggleButton
*toggle
= GTK_TOGGLE_BUTTON(option
->widget
);
1275 return g_strdup_printf("%d", gtk_toggle_button_get_active(toggle
));
1278 static guchar
*read_entry(Option
*option
)
1280 return gtk_editable_get_chars(GTK_EDITABLE(option
->widget
), 0, -1);
1283 static guchar
*read_numentry(Option
*option
)
1285 return g_strdup_printf("%d", (int)
1286 gtk_spin_button_get_value(GTK_SPIN_BUTTON(option
->widget
)));
1289 static guchar
*read_slider(Option
*option
)
1291 return g_strdup_printf("%d", (int)
1292 gtk_range_get_adjustment(GTK_RANGE(option
->widget
))->value
);
1295 static guchar
*read_radio_group(Option
*option
)
1297 return radio_group_get_value(GTK_RADIO_BUTTON(option
->widget
));
1300 static guchar
*read_menu(Option
*option
)
1302 return g_strdup(option_menu_get(GTK_OPTION_MENU(option
->widget
)));
1305 static guchar
*read_font(Option
*option
)
1307 GtkToggleButton
*active
;
1309 active
= g_object_get_data(G_OBJECT(option
->widget
), "rox_override");
1310 if (active
&& !gtk_toggle_button_get_active(active
))
1311 return g_strdup("");
1313 return g_strdup(gtk_label_get_text(GTK_LABEL(option
->widget
)));
1316 static guchar
*read_colour(Option
*option
)
1318 GtkStyle
*style
= GTK_BIN(option
->widget
)->child
->style
;
1320 return g_strdup_printf("#%04x%04x%04x",
1321 style
->bg
[GTK_STATE_NORMAL
].red
,
1322 style
->bg
[GTK_STATE_NORMAL
].green
,
1323 style
->bg
[GTK_STATE_NORMAL
].blue
);
1326 static void set_not_changed(gpointer key
, gpointer value
, gpointer data
)
1328 Option
*option
= (Option
*) value
;
1330 option
->has_changed
= FALSE
;
1333 /* Builders for decorations (no corresponding option) */
1335 static GList
*build_label(Option
*option
, xmlNode
*node
, guchar
*label
)
1341 g_return_val_if_fail(option
== NULL
, NULL
);
1342 g_return_val_if_fail(label
== NULL
, NULL
);
1345 widget
= gtk_label_new(_(text
));
1348 help
= get_int(node
, "help");
1350 gtk_misc_set_alignment(GTK_MISC(widget
), 0, help
? 0.5 : 1);
1351 gtk_label_set_justify(GTK_LABEL(widget
), GTK_JUSTIFY_LEFT
);
1352 gtk_label_set_line_wrap(GTK_LABEL(widget
), TRUE
);
1356 GtkWidget
*hbox
, *image
, *align
, *spacer
;
1358 hbox
= gtk_hbox_new(FALSE
, 4);
1359 image
= gtk_image_new_from_stock(GTK_STOCK_DIALOG_INFO
,
1360 GTK_ICON_SIZE_BUTTON
);
1361 align
= gtk_alignment_new(0, 0, 0, 0);
1363 gtk_container_add(GTK_CONTAINER(align
), image
);
1364 gtk_box_pack_start(GTK_BOX(hbox
), align
, FALSE
, TRUE
, 0);
1365 gtk_box_pack_start(GTK_BOX(hbox
), widget
, FALSE
, TRUE
, 0);
1367 spacer
= gtk_event_box_new();
1368 gtk_widget_set_size_request(spacer
, 6, 6);
1370 return g_list_append(g_list_append(NULL
, hbox
), spacer
);
1373 return g_list_append(NULL
, widget
);
1376 static GList
*build_spacer(Option
*option
, xmlNode
*node
, guchar
*label
)
1380 g_return_val_if_fail(option
== NULL
, NULL
);
1381 g_return_val_if_fail(label
== NULL
, NULL
);
1383 eb
= gtk_event_box_new();
1384 gtk_widget_set_size_request(eb
, 12, 12);
1386 return g_list_append(NULL
, eb
);
1389 static GList
*build_frame(Option
*option
, xmlNode
*node
, guchar
*label
)
1391 GtkWidget
*nbox
, *frame
, *label_widget
;
1393 PangoAttrList
*list
;
1394 PangoAttribute
*attr
;
1396 g_return_val_if_fail(option
== NULL
, NULL
);
1397 g_return_val_if_fail(label
!= NULL
, NULL
);
1399 frame
= gtk_frame_new(_(label
));
1400 gtk_frame_set_shadow_type(GTK_FRAME(frame
), GTK_SHADOW_NONE
);
1402 /* Make the title bold */
1403 label_widget
= gtk_frame_get_label_widget(GTK_FRAME(frame
));
1404 attr
= pango_attr_weight_new(PANGO_WEIGHT_BOLD
);
1406 attr
->start_index
= 0;
1407 attr
->end_index
= -1;
1408 list
= pango_attr_list_new();
1409 pango_attr_list_insert(list
, attr
);
1410 gtk_label_set_attributes(GTK_LABEL(label_widget
), list
);
1412 nbox
= gtk_vbox_new(FALSE
, 0);
1413 gtk_container_set_border_width(GTK_CONTAINER(nbox
), 12);
1414 gtk_container_add(GTK_CONTAINER(frame
), nbox
);
1416 for (hw
= node
->xmlChildrenNode
; hw
; hw
= hw
->next
)
1417 if (hw
->type
== XML_ELEMENT_NODE
)
1418 build_widget(hw
, nbox
);
1420 return g_list_append(NULL
, frame
);
1423 /* These create new widgets in the options window and set the appropriate
1427 static GList
*build_toggle(Option
*option
, xmlNode
*node
, guchar
*label
)
1431 g_return_val_if_fail(option
!= NULL
, NULL
);
1433 toggle
= gtk_check_button_new_with_label(_(label
));
1435 may_add_tip(toggle
, node
);
1437 option
->update_widget
= update_toggle
;
1438 option
->read_widget
= read_toggle
;
1439 option
->widget
= toggle
;
1441 g_signal_connect_swapped(toggle
, "toggled",
1442 G_CALLBACK(option_check_widget
), option
);
1444 return g_list_append(NULL
, toggle
);
1447 static GList
*build_slider(Option
*option
, xmlNode
*node
, guchar
*label
)
1450 GtkWidget
*hbox
, *slide
, *label_wid
;
1456 g_return_val_if_fail(option
!= NULL
, NULL
);
1458 min
= get_int(node
, "min");
1459 max
= get_int(node
, "max");
1460 fixed
= get_int(node
, "fixed");
1461 showvalue
= get_int(node
, "showvalue");
1463 adj
= GTK_ADJUSTMENT(gtk_adjustment_new(0,
1464 min
, max
, 1, 10, 0));
1466 hbox
= gtk_hbox_new(FALSE
, 4);
1470 label_wid
= gtk_label_new(_(label
));
1471 gtk_misc_set_alignment(GTK_MISC(label_wid
), 0, 0.5);
1472 gtk_box_pack_start(GTK_BOX(hbox
), label_wid
, FALSE
, TRUE
, 0);
1473 add_to_size_group(node
, label_wid
);
1476 end
= xmlGetProp(node
, "end");
1479 gtk_box_pack_end(GTK_BOX(hbox
), gtk_label_new(_(end
)),
1484 slide
= gtk_hscale_new(adj
);
1487 gtk_widget_set_size_request(slide
, adj
->upper
, 24);
1490 gtk_scale_set_draw_value(GTK_SCALE(slide
), TRUE
);
1491 gtk_scale_set_value_pos(GTK_SCALE(slide
),
1493 gtk_scale_set_digits(GTK_SCALE(slide
), 0);
1496 gtk_scale_set_draw_value(GTK_SCALE(slide
), FALSE
);
1497 GTK_WIDGET_UNSET_FLAGS(slide
, GTK_CAN_FOCUS
);
1499 may_add_tip(slide
, node
);
1501 gtk_box_pack_start(GTK_BOX(hbox
), slide
, !fixed
, TRUE
, 0);
1503 option
->update_widget
= update_slider
;
1504 option
->read_widget
= read_slider
;
1505 option
->widget
= slide
;
1507 g_signal_connect_swapped(adj
, "value-changed",
1508 G_CALLBACK(option_check_widget
), option
);
1510 return g_list_append(NULL
, hbox
);
1513 static GList
*build_entry(Option
*option
, xmlNode
*node
, guchar
*label
)
1517 GtkWidget
*label_wid
;
1519 g_return_val_if_fail(option
!= NULL
, NULL
);
1521 hbox
= gtk_hbox_new(FALSE
, 4);
1525 label_wid
= gtk_label_new(_(label
));
1526 gtk_misc_set_alignment(GTK_MISC(label_wid
), 1.0, 0.5);
1527 gtk_box_pack_start(GTK_BOX(hbox
), label_wid
, FALSE
, TRUE
, 0);
1530 entry
= gtk_entry_new();
1531 gtk_box_pack_start(GTK_BOX(hbox
), entry
, TRUE
, TRUE
, 0);
1532 add_to_size_group(node
, entry
);
1533 may_add_tip(entry
, node
);
1535 option
->update_widget
= update_entry
;
1536 option
->read_widget
= read_entry
;
1537 option
->widget
= entry
;
1539 g_signal_connect_data(entry
, "changed",
1540 G_CALLBACK(option_check_widget
), option
,
1541 NULL
, G_CONNECT_AFTER
| G_CONNECT_SWAPPED
);
1543 return g_list_append(NULL
, hbox
);
1546 static GList
*build_numentry(Option
*option
, xmlNode
*node
, guchar
*label
)
1551 g_return_val_if_fail(option
!= NULL
, NULL
);
1553 min
= get_int(node
, "min");
1554 max
= get_int(node
, "max");
1555 step
= MAX(1, get_int(node
, "step"));
1557 adj
= gtk_adjustment_new(min
, min
, max
, step
, step
* 10, 1);
1559 return build_numentry_base(option
, node
, label
, GTK_ADJUSTMENT(adj
));
1562 static GList
*build_radio_group(Option
*option
, xmlNode
*node
, guchar
*label
)
1565 GtkWidget
*button
= NULL
;
1569 g_return_val_if_fail(option
!= NULL
, NULL
);
1571 for (rn
= node
->xmlChildrenNode
; rn
; rn
= rn
->next
)
1573 if (rn
->type
== XML_ELEMENT_NODE
)
1575 button
= build_radio(rn
, button
);
1576 g_signal_connect_swapped(button
, "toggled",
1577 G_CALLBACK(option_check_widget
), option
);
1578 list
= g_list_append(list
, button
);
1582 option
->update_widget
= update_radio_group
;
1583 option
->read_widget
= read_radio_group
;
1584 option
->widget
= button
;
1586 cols
= get_int(node
, "columns");
1594 n
= g_list_length(list
);
1595 rows
= (n
+ cols
- 1) / cols
;
1597 table
= gtk_table_new(rows
, cols
, FALSE
);
1600 for (next
= list
; next
; next
= next
->next
)
1602 GtkWidget
*button
= GTK_WIDGET(next
->data
);
1603 int left
= i
/ rows
;
1606 gtk_table_attach_defaults(GTK_TABLE(table
), button
,
1607 left
, left
+ 1, top
, top
+ 1);
1613 list
= g_list_prepend(NULL
, table
);
1619 static GList
*build_colour(Option
*option
, xmlNode
*node
, guchar
*label
)
1621 GtkWidget
*hbox
, *da
, *button
, *label_wid
;
1623 g_return_val_if_fail(option
!= NULL
, NULL
);
1625 hbox
= gtk_hbox_new(FALSE
, 4);
1629 label_wid
= gtk_label_new(_(label
));
1630 gtk_misc_set_alignment(GTK_MISC(label_wid
), 1.0, 0.5);
1631 gtk_box_pack_start(GTK_BOX(hbox
), label_wid
, TRUE
, TRUE
, 0);
1634 button
= gtk_button_new();
1635 da
= gtk_drawing_area_new();
1636 gtk_widget_set_size_request(da
, 64, 12);
1637 gtk_container_add(GTK_CONTAINER(button
), da
);
1638 g_signal_connect(button
, "clicked", G_CALLBACK(open_coloursel
), option
);
1640 may_add_tip(button
, node
);
1642 gtk_box_pack_start(GTK_BOX(hbox
), button
, FALSE
, TRUE
, 0);
1644 option
->update_widget
= update_colour
;
1645 option
->read_widget
= read_colour
;
1646 option
->widget
= button
;
1648 return g_list_append(NULL
, hbox
);
1651 static GList
*build_menu(Option
*option
, xmlNode
*node
, guchar
*label
)
1653 GtkWidget
*hbox
, *om
, *option_menu
, *label_wid
;
1656 g_return_val_if_fail(option
!= NULL
, NULL
);
1658 hbox
= gtk_hbox_new(FALSE
, 4);
1660 label_wid
= gtk_label_new(_(label
));
1661 gtk_misc_set_alignment(GTK_MISC(label_wid
), 1.0, 0.5);
1662 gtk_box_pack_start(GTK_BOX(hbox
), label_wid
, TRUE
, TRUE
, 0);
1664 option_menu
= gtk_option_menu_new();
1665 gtk_box_pack_start(GTK_BOX(hbox
), option_menu
, FALSE
, TRUE
, 0);
1667 om
= gtk_menu_new();
1669 for (item
= node
->xmlChildrenNode
; item
; item
= item
->next
)
1671 if (item
->type
== XML_ELEMENT_NODE
)
1672 build_menu_item(item
, om
);
1675 gtk_widget_show(om
);
1676 gtk_option_menu_set_menu(GTK_OPTION_MENU(option_menu
), om
);
1677 add_to_size_group(node
, option_menu
);
1679 option
->update_widget
= update_menu
;
1680 option
->read_widget
= read_menu
;
1681 option
->widget
= option_menu
;
1683 g_signal_connect_data(option_menu
, "changed",
1684 G_CALLBACK(option_check_widget
), option
,
1685 NULL
, G_CONNECT_AFTER
| G_CONNECT_SWAPPED
);
1687 return g_list_append(NULL
, hbox
);
1690 static GList
*build_font(Option
*option
, xmlNode
*node
, guchar
*label
)
1692 GtkWidget
*hbox
, *button
;
1693 GtkWidget
*active
= NULL
;
1696 g_return_val_if_fail(option
!= NULL
, NULL
);
1698 override
= get_int(node
, "override");
1700 hbox
= gtk_hbox_new(FALSE
, 4);
1704 /* Add a check button to enable the font chooser. If off,
1705 * the option's value is "".
1707 active
= gtk_check_button_new_with_label(_(label
));
1708 gtk_box_pack_start(GTK_BOX(hbox
), active
, FALSE
, TRUE
, 0);
1709 g_signal_connect(active
, "toggled",
1710 G_CALLBACK(toggle_active_font
), option
);
1713 gtk_box_pack_start(GTK_BOX(hbox
), gtk_label_new(_(label
)),
1716 button
= gtk_button_new_with_label("");
1717 gtk_box_pack_start(GTK_BOX(hbox
), button
, FALSE
, TRUE
, 0);
1719 option
->update_widget
= update_font
;
1720 option
->read_widget
= read_font
;
1721 option
->widget
= GTK_BIN(button
)->child
;
1722 may_add_tip(button
, node
);
1724 g_object_set_data(G_OBJECT(option
->widget
), "rox_override", active
);
1726 g_signal_connect(button
, "clicked", G_CALLBACK(open_fontsel
), option
);
1728 return g_list_append(NULL
, hbox
);
1731 static void button_patch_set_colour(GtkWidget
*button
, GdkColor
*colour
)
1736 patch
= GTK_BIN(button
)->child
;
1738 style
= gtk_style_copy(GTK_WIDGET(patch
)->style
);
1739 style
->bg
[GTK_STATE_NORMAL
].red
= colour
->red
;
1740 style
->bg
[GTK_STATE_NORMAL
].green
= colour
->green
;
1741 style
->bg
[GTK_STATE_NORMAL
].blue
= colour
->blue
;
1742 gtk_widget_set_style(patch
, style
);
1743 g_object_unref(G_OBJECT(style
));
1745 if (GTK_WIDGET_REALIZED(patch
))
1746 gdk_window_clear(patch
->window
);
1749 static void load_options(xmlDoc
*doc
)
1751 xmlNode
*root
, *node
;
1753 root
= xmlDocGetRootElement(doc
);
1755 g_return_if_fail(strcmp(root
->name
, "Options") == 0);
1757 for (node
= root
->xmlChildrenNode
; node
; node
= node
->next
)
1759 gchar
*value
, *name
;
1761 if (node
->type
!= XML_ELEMENT_NODE
)
1763 if (strcmp(node
->name
, "Option") != 0)
1765 name
= xmlGetProp(node
, "name");
1769 value
= xmlNodeGetContent(node
);
1771 if (g_hash_table_lookup(loading
, name
))
1772 g_warning("Duplicate option found!");
1774 g_hash_table_insert(loading
, name
, value
);
1776 /* (don't need to free name or value) */
1780 /* Process one line from the options file (\0 term'd).
1781 * Returns NULL on success, or a pointer to an error message.
1782 * The line is modified.
1784 static const char *process_option_line(gchar
*line
)
1789 g_return_val_if_fail(option_hash
!= NULL
, "No registered options!");
1791 eq
= strchr(line
, '=');
1793 return _("Missing '='");
1796 while (c
> line
&& (*c
== ' ' || *c
== '\t'))
1800 while (*c
== ' ' || *c
== '\t')
1803 if (g_hash_table_lookup(loading
, name
))
1804 return "Duplicate option found!";
1806 g_hash_table_insert(loading
, g_strdup(name
), g_strdup(g_strstrip(c
)));