2 * stash.c - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2008-2012 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
5 * Copyright 2008-2012 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 * Lightweight library for reading/writing @c GKeyFile settings and synchronizing widgets with
27 * Note: Stash should only depend on GLib and GTK, but currently has some minor
28 * dependencies on Geany's utils.c.
31 * 'Setting' is used only for data stored on disk or in memory.
32 * 'Pref' can also include visual widget information.
34 * @section Memory Usage
35 * Stash will not duplicate strings if they are normally static arrays, such as
36 * keyfile group names and key names, string default values, widget_id names, property names.
38 * @section String Settings
39 * String settings and other dynamically allocated settings will be initialized to NULL when
40 * added to a StashGroup (so they can safely be reassigned later).
42 * @section Widget Support
43 * Widgets very commonly used in configuration dialogs will be supported with their own function.
44 * Widgets less commonly used such as @c GtkExpander or widget settings that aren't commonly needed
45 * to be persistent won't be directly supported, to keep the library lightweight. However, you can
46 * use stash_group_add_widget_property() to also save these settings for any read/write widget
47 * property. Macros could be added for common widget properties such as @c GtkExpander:"expanded".
49 * @section settings-example Settings Example
50 * Here we have some settings for how to make a cup - whether it should be made of china
51 * and who's going to make it. (Yes, it's a stupid example).
52 * @include stash-example.c
53 * @note You might want to handle the warning/error conditions differently from above.
55 * @section prefs-example GUI Prefs Example
56 * For prefs, it's the same as the above example but you tell Stash to add widget prefs instead of
59 * This example uses lookup strings for widgets as they are more flexible than widget pointers.
60 * Code to load and save the settings is omitted - see the first example instead.
62 * Here we show a dialog with a toggle button for whether the cup should have a handle.
63 * @include stash-gui-example.c
64 * @note This example should also work for other widget containers besides dialogs, e.g. popup menus.
67 /* Implementation Note
68 * We dynamically allocate prefs. It would be more efficient for user code to declare
69 * a static array of StashPref structs, but we don't do this because:
71 * * It would be more ugly (lots of casts and NULLs).
72 * * Less type checking.
73 * * The API & ABI would have to break when adding/changing fields.
75 * Usually the prefs code isn't what user code will spend most of its time doing, so this
76 * should be efficient enough.
81 #include "support.h" /* only for _("text") */
82 #include "utils.h" /* only for foreach_*, utils_get_setting_*(). Stash should not depend on Geany. */
84 #include <stdlib.h> /* only for atoi() */
87 /* GTK3 removed ComboBoxEntry, but we need a value to differentiate combo box with and
88 * without entries, and it must not collide with other GTypes */
89 #ifdef GTK_TYPE_COMBO_BOX_ENTRY
90 # define TYPE_COMBO_BOX_ENTRY GTK_TYPE_COMBO_BOX_ENTRY
91 #else /* !GTK_TYPE_COMBO_BOX_ENTRY */
92 # define TYPE_COMBO_BOX_ENTRY get_combo_box_entry_type()
93 static GType
get_combo_box_entry_type(void)
95 static volatile gsize type
= 0;
96 if (g_once_init_enter(&type
))
98 GType g_type
= g_type_register_static_simple(GTK_TYPE_COMBO_BOX
, "dummy-combo-box-entry",
99 sizeof(GtkComboBoxClass
), NULL
, sizeof(GtkComboBox
), NULL
, G_TYPE_FLAG_ABSTRACT
);
100 g_once_init_leave(&type
, g_type
);
104 #endif /* !GTK_TYPE_COMBO_BOX_ENTRY */
109 GType setting_type
; /* e.g. G_TYPE_INT */
110 gpointer setting
; /* Address of a variable */
111 const gchar
*key_name
;
112 gpointer default_value
; /* Default value, e.g. (gpointer)1 */
113 GType widget_type
; /* e.g. GTK_TYPE_TOGGLE_BUTTON */
114 StashWidgetID widget_id
; /* (GtkWidget*) or (gchar*) */
117 struct EnumWidget
*radio_buttons
;
118 const gchar
*property_name
;
119 } extra
; /* extra fields depending on widget_type */
122 typedef struct StashPref StashPref
;
126 const gchar
*name
; /* group name to use in the keyfile */
127 GPtrArray
*entries
; /* array of (StashPref*) */
128 gboolean various
; /* mark group for display/edit in stash treeview */
129 gboolean use_defaults
; /* use default values if there's no keyfile entry */
132 typedef struct EnumWidget
134 StashWidgetID widget_id
;
140 typedef enum SettingAction
147 typedef enum PrefAction
155 static void handle_boolean_setting(StashGroup
*group
, StashPref
*se
,
156 GKeyFile
*config
, SettingAction action
)
158 gboolean
*setting
= se
->setting
;
163 *setting
= utils_get_setting_boolean(config
, group
->name
, se
->key_name
,
164 GPOINTER_TO_INT(se
->default_value
));
167 g_key_file_set_boolean(config
, group
->name
, se
->key_name
, *setting
);
173 static void handle_integer_setting(StashGroup
*group
, StashPref
*se
,
174 GKeyFile
*config
, SettingAction action
)
176 gint
*setting
= se
->setting
;
181 *setting
= utils_get_setting_integer(config
, group
->name
, se
->key_name
,
182 GPOINTER_TO_INT(se
->default_value
));
185 g_key_file_set_integer(config
, group
->name
, se
->key_name
, *setting
);
191 static void handle_string_setting(StashGroup
*group
, StashPref
*se
,
192 GKeyFile
*config
, SettingAction action
)
194 gchararray
*setting
= se
->setting
;
200 *setting
= utils_get_setting_string(config
, group
->name
, se
->key_name
,
204 g_key_file_set_string(config
, group
->name
, se
->key_name
,
205 *setting
? *setting
: "");
211 static void handle_strv_setting(StashGroup
*group
, StashPref
*se
,
212 GKeyFile
*config
, SettingAction action
)
214 gchararray
**setting
= se
->setting
;
219 g_strfreev(*setting
);
220 *setting
= g_key_file_get_string_list(config
, group
->name
, se
->key_name
,
222 if (*setting
== NULL
)
223 *setting
= g_strdupv(se
->default_value
);
228 /* don't try to save a NULL string vector */
229 const gchar
*dummy
[] = { "", NULL
};
230 const gchar
**strv
= *setting
? (const gchar
**)*setting
: dummy
;
232 g_key_file_set_string_list(config
, group
->name
, se
->key_name
,
233 strv
, g_strv_length((gchar
**)strv
));
240 static void keyfile_action(SettingAction action
, StashGroup
*group
, GKeyFile
*keyfile
)
245 foreach_ptr_array(entry
, i
, group
->entries
)
247 /* don't override settings with default values */
248 if (!group
->use_defaults
&& action
== SETTING_READ
&&
249 !g_key_file_has_key(keyfile
, group
->name
, entry
->key_name
, NULL
))
252 switch (entry
->setting_type
)
255 handle_boolean_setting(group
, entry
, keyfile
, action
); break;
257 handle_integer_setting(group
, entry
, keyfile
, action
); break;
259 handle_string_setting(group
, entry
, keyfile
, action
); break;
261 /* Note: G_TYPE_STRV is not a constant, can't use case label */
262 if (entry
->setting_type
== G_TYPE_STRV
)
263 handle_strv_setting(group
, entry
, keyfile
, action
);
265 g_warning("Unhandled type for %s::%s in %s()!", group
->name
, entry
->key_name
,
272 /** Reads key values from @a keyfile into the group settings.
273 * @note You should still call this even if the keyfile couldn't be loaded from disk
274 * so that all Stash settings are initialized to defaults.
276 * @param keyfile Usually loaded from a configuration file first. */
278 void stash_group_load_from_key_file(StashGroup
*group
, GKeyFile
*keyfile
)
280 keyfile_action(SETTING_READ
, group
, keyfile
);
284 /** Writes group settings into key values in @a keyfile.
285 * @a keyfile is usually written to a configuration file afterwards.
287 * @param keyfile . */
289 void stash_group_save_to_key_file(StashGroup
*group
, GKeyFile
*keyfile
)
291 keyfile_action(SETTING_WRITE
, group
, keyfile
);
295 /** Reads group settings from a configuration file using @c GKeyFile.
296 * @note Stash settings will be initialized to defaults if the keyfile
297 * couldn't be loaded from disk.
299 * @param filename Filename of the file to read, in locale encoding.
300 * @return @c TRUE if a key file could be loaded.
301 * @see stash_group_load_from_key_file().
304 gboolean
stash_group_load_from_file(StashGroup
*group
, const gchar
*filename
)
309 keyfile
= g_key_file_new();
310 ret
= g_key_file_load_from_file(keyfile
, filename
, 0, NULL
);
311 /* even on failure we load settings to apply defaults */
312 stash_group_load_from_key_file(group
, keyfile
);
314 g_key_file_free(keyfile
);
319 /** Writes group settings to a configuration file using @c GKeyFile.
322 * @param filename Filename of the file to write, in locale encoding.
323 * @param flags Keyfile options - @c G_KEY_FILE_NONE is the most efficient.
324 * @return 0 if the file was successfully written, otherwise the @c errno of the
325 * failed operation is returned.
326 * @see stash_group_save_to_key_file().
329 gint
stash_group_save_to_file(StashGroup
*group
, const gchar
*filename
,
336 keyfile
= g_key_file_new();
337 /* if we need to keep comments or translations, try to load first */
339 g_key_file_load_from_file(keyfile
, filename
, flags
, NULL
);
341 stash_group_save_to_key_file(group
, keyfile
);
342 data
= g_key_file_to_data(keyfile
, NULL
, NULL
);
343 ret
= utils_write_file(filename
, data
);
345 g_key_file_free(keyfile
);
350 /** Creates a new group.
351 * @param name Name used for @c GKeyFile group.
354 StashGroup
*stash_group_new(const gchar
*name
)
356 StashGroup
*group
= g_new0(StashGroup
, 1);
359 group
->entries
= g_ptr_array_new();
360 group
->use_defaults
= TRUE
;
365 /** Frees the memory allocated for setting values in a group.
366 * Useful e.g. to avoid freeing strings individually.
367 * @note This is *not* called by stash_group_free().
370 void stash_group_free_settings(StashGroup
*group
)
375 foreach_ptr_array(entry
, i
, group
->entries
)
377 if (entry
->setting_type
== G_TYPE_STRING
)
378 g_free(*(gchararray
*) entry
->setting
);
379 else if (entry
->setting_type
== G_TYPE_STRV
)
380 g_strfreev(*(gchararray
**) entry
->setting
);
384 *(gpointer
**) entry
->setting
= NULL
;
392 void stash_group_free(StashGroup
*group
)
397 foreach_ptr_array(entry
, i
, group
->entries
)
399 if (entry
->widget_type
== GTK_TYPE_RADIO_BUTTON
)
401 g_free(entry
->extra
.radio_buttons
);
403 g_slice_free(StashPref
, entry
);
405 g_ptr_array_free(group
->entries
, TRUE
);
410 /* Used for selecting groups passed to stash_tree_setup().
411 * @c FALSE by default. */
412 void stash_group_set_various(StashGroup
*group
, gboolean various
)
414 group
->various
= various
;
418 /* When @c FALSE, Stash doesn't change the setting if there is no keyfile entry, so it
419 * remains whatever it was initialized/set to by user code.
420 * @c TRUE by default. */
421 void stash_group_set_use_defaults(StashGroup
*group
, gboolean use_defaults
)
423 group
->use_defaults
= use_defaults
;
428 add_pref(StashGroup
*group
, GType type
, gpointer setting
,
429 const gchar
*key_name
, gpointer default_value
)
431 StashPref init
= {type
, setting
, key_name
, default_value
, G_TYPE_NONE
, NULL
, {NULL
}};
432 StashPref
*entry
= g_slice_new(StashPref
);
436 /* init any pointer settings to NULL so they can be freed later */
437 if (type
== G_TYPE_STRING
||
439 if (group
->use_defaults
)
440 *(gpointer
**)setting
= NULL
;
442 g_ptr_array_add(group
->entries
, entry
);
447 /** Adds boolean setting.
449 * @param setting Address of setting variable.
450 * @param key_name Name for key in a @c GKeyFile.
451 * @param default_value Value to use if the key doesn't exist when loading. */
453 void stash_group_add_boolean(StashGroup
*group
, gboolean
*setting
,
454 const gchar
*key_name
, gboolean default_value
)
456 add_pref(group
, G_TYPE_BOOLEAN
, setting
, key_name
, GINT_TO_POINTER(default_value
));
460 /** Adds integer setting.
462 * @param setting Address of setting variable.
463 * @param key_name Name for key in a @c GKeyFile.
464 * @param default_value Value to use if the key doesn't exist when loading. */
466 void stash_group_add_integer(StashGroup
*group
, gint
*setting
,
467 const gchar
*key_name
, gint default_value
)
469 add_pref(group
, G_TYPE_INT
, setting
, key_name
, GINT_TO_POINTER(default_value
));
473 /** Adds string setting.
474 * The contents of @a setting will be initialized to @c NULL.
476 * @param setting Address of setting variable.
477 * @param key_name Name for key in a @c GKeyFile.
478 * @param default_value String to copy if the key doesn't exist when loading, or @c NULL. */
480 void stash_group_add_string(StashGroup
*group
, gchar
**setting
,
481 const gchar
*key_name
, const gchar
*default_value
)
483 add_pref(group
, G_TYPE_STRING
, setting
, key_name
, (gpointer
)default_value
);
487 /** Adds string vector setting (array of strings).
488 * The contents of @a setting will be initialized to @c NULL.
490 * @param setting Address of setting variable.
491 * @param key_name Name for key in a @c GKeyFile.
492 * @param default_value Vector to copy if the key doesn't exist when loading. Usually @c NULL. */
494 void stash_group_add_string_vector(StashGroup
*group
, gchar
***setting
,
495 const gchar
*key_name
, const gchar
**default_value
)
497 add_pref(group
, G_TYPE_STRV
, setting
, key_name
, (gpointer
)default_value
);
501 /* *** GTK-related functions *** */
503 static void handle_toggle_button(GtkWidget
*widget
, gboolean
*setting
,
509 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget
), *setting
);
512 *setting
= gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget
));
518 static void handle_spin_button(GtkWidget
*widget
, StashPref
*entry
,
521 gint
*setting
= entry
->setting
;
523 g_assert(entry
->setting_type
== G_TYPE_INT
); /* only int spin prefs */
528 gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget
), *setting
);
531 /* if the widget is focussed, the value might not be updated */
532 gtk_spin_button_update(GTK_SPIN_BUTTON(widget
));
533 *setting
= gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget
));
539 static void handle_combo_box(GtkWidget
*widget
, StashPref
*entry
,
542 gint
*setting
= entry
->setting
;
547 gtk_combo_box_set_active(GTK_COMBO_BOX(widget
), *setting
);
550 *setting
= gtk_combo_box_get_active(GTK_COMBO_BOX(widget
));
556 static void handle_entry(GtkWidget
*widget
, StashPref
*entry
,
559 gchararray
*setting
= entry
->setting
;
564 gtk_entry_set_text(GTK_ENTRY(widget
), *setting
);
568 *setting
= g_strdup(gtk_entry_get_text(GTK_ENTRY(widget
)));
574 static void handle_combo_box_entry(GtkWidget
*widget
, StashPref
*entry
,
577 widget
= gtk_bin_get_child(GTK_BIN(widget
));
578 handle_entry(widget
, entry
, action
);
582 /* taken from Glade 2.x generated support.c */
584 lookup_widget(GtkWidget
*widget
, const gchar
*widget_name
)
586 GtkWidget
*parent
, *found_widget
;
588 g_return_val_if_fail(widget
!= NULL
, NULL
);
589 g_return_val_if_fail(widget_name
!= NULL
, NULL
);
593 if (GTK_IS_MENU(widget
))
594 parent
= gtk_menu_get_attach_widget(GTK_MENU(widget
));
596 parent
= gtk_widget_get_parent(widget
);
598 parent
= (GtkWidget
*) g_object_get_data(G_OBJECT(widget
), "GladeParentKey");
604 found_widget
= (GtkWidget
*) g_object_get_data(G_OBJECT(widget
), widget_name
);
605 if (G_UNLIKELY(found_widget
== NULL
))
606 g_warning("Widget not found: %s", widget_name
);
612 get_widget(GtkWidget
*owner
, StashWidgetID widget_id
)
617 widget
= lookup_widget(owner
, (const gchar
*)widget_id
);
619 widget
= (GtkWidget
*)widget_id
;
621 if (!GTK_IS_WIDGET(widget
))
623 g_warning("Unknown widget in %s()!", G_STRFUNC
);
630 static void handle_radio_button(GtkWidget
*widget
, gint enum_id
, gboolean
*setting
,
636 if (*setting
== enum_id
)
637 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget
), TRUE
);
640 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget
)))
647 static void handle_radio_buttons(GtkWidget
*owner
, StashPref
*entry
,
650 EnumWidget
*field
= entry
->extra
.radio_buttons
;
652 GtkWidget
*widget
= NULL
;
656 widget
= get_widget(owner
, field
->widget_id
);
662 handle_radio_button(widget
, field
->enum_id
, entry
->setting
, action
);
664 if (!field
->widget_id
)
667 if (g_slist_length(gtk_radio_button_get_group(GTK_RADIO_BUTTON(widget
))) != count
)
668 g_warning("Missing/invalid radio button widget IDs found!");
672 static void handle_widget_property(GtkWidget
*widget
, StashPref
*entry
,
675 GObject
*object
= G_OBJECT(widget
);
676 const gchar
*name
= entry
->extra
.property_name
;
681 g_object_set(object
, name
, entry
->setting
, NULL
);
684 if (entry
->setting_type
== G_TYPE_STRING
)
685 g_free(entry
->setting
);
686 /* TODO: Which other types need freeing here? */
688 g_object_get(object
, name
, entry
->setting
, NULL
);
694 static void pref_action(PrefAction action
, StashGroup
*group
, GtkWidget
*owner
)
699 foreach_ptr_array(entry
, i
, group
->entries
)
703 /* ignore settings with no widgets */
704 if (entry
->widget_type
== G_TYPE_NONE
)
707 /* radio buttons have several widgets */
708 if (entry
->widget_type
== GTK_TYPE_RADIO_BUTTON
)
710 handle_radio_buttons(owner
, entry
, action
);
714 widget
= get_widget(owner
, entry
->widget_id
);
717 g_warning("Unknown widget for %s::%s in %s()!", group
->name
, entry
->key_name
,
722 /* note: can't use switch for GTK_TYPE macros */
723 if (entry
->widget_type
== GTK_TYPE_TOGGLE_BUTTON
)
724 handle_toggle_button(widget
, entry
->setting
, action
);
725 else if (entry
->widget_type
== GTK_TYPE_SPIN_BUTTON
)
726 handle_spin_button(widget
, entry
, action
);
727 else if (entry
->widget_type
== GTK_TYPE_COMBO_BOX
)
728 handle_combo_box(widget
, entry
, action
);
729 else if (entry
->widget_type
== TYPE_COMBO_BOX_ENTRY
)
730 handle_combo_box_entry(widget
, entry
, action
);
731 else if (entry
->widget_type
== GTK_TYPE_ENTRY
)
732 handle_entry(widget
, entry
, action
);
733 else if (entry
->widget_type
== G_TYPE_PARAM
)
734 handle_widget_property(widget
, entry
, action
);
736 g_warning("Unhandled type for %s::%s in %s()!", group
->name
, entry
->key_name
,
742 /** Applies Stash settings to widgets, usually called before displaying the widgets.
743 * The @a owner argument depends on which type you use for @ref StashWidgetID.
745 * @param owner If non-NULL, used to lookup widgets by name, otherwise
746 * widget pointers are assumed.
747 * @see stash_group_update(). */
749 void stash_group_display(StashGroup
*group
, GtkWidget
*owner
)
751 pref_action(PREF_DISPLAY
, group
, owner
);
755 /** Applies widget values to Stash settings, usually called after displaying the widgets.
756 * The @a owner argument depends on which type you use for @ref StashWidgetID.
758 * @param owner If non-NULL, used to lookup widgets by name, otherwise
759 * widget pointers are assumed.
760 * @see stash_group_display(). */
762 void stash_group_update(StashGroup
*group
, GtkWidget
*owner
)
764 pref_action(PREF_UPDATE
, group
, owner
);
769 add_widget_pref(StashGroup
*group
, GType setting_type
, gpointer setting
,
770 const gchar
*key_name
, gpointer default_value
,
771 GType widget_type
, StashWidgetID widget_id
)
774 add_pref(group
, setting_type
, setting
, key_name
, default_value
);
776 entry
->widget_type
= widget_type
;
777 entry
->widget_id
= widget_id
;
782 /** Adds a @c GtkToggleButton (or @c GtkCheckButton) widget pref.
784 * @param setting Address of setting variable.
785 * @param key_name Name for key in a @c GKeyFile.
786 * @param default_value Value to use if the key doesn't exist when loading.
787 * @param widget_id @c GtkWidget pointer or string to lookup widget later.
788 * @see stash_group_add_radio_buttons(). */
790 void stash_group_add_toggle_button(StashGroup
*group
, gboolean
*setting
,
791 const gchar
*key_name
, gboolean default_value
, StashWidgetID widget_id
)
793 add_widget_pref(group
, G_TYPE_BOOLEAN
, setting
, key_name
, GINT_TO_POINTER(default_value
),
794 GTK_TYPE_TOGGLE_BUTTON
, widget_id
);
798 /** Adds a @c GtkRadioButton widget group pref.
800 * @param setting Address of setting variable.
801 * @param key_name Name for key in a @c GKeyFile.
802 * @param default_value Value to use if the key doesn't exist when loading.
803 * @param widget_id @c GtkWidget pointer or string to lookup widget later.
804 * @param enum_id Enum value for @a widget_id.
805 * @param ... pairs of @a widget_id, @a enum_id.
806 * Example (using widget lookup strings, but widget pointers can also work):
809 * stash_group_add_radio_buttons(group, &which_one_setting, "which_one", BAR,
810 * "radio_foo", FOO, "radio_bar", BAR, NULL);
813 void stash_group_add_radio_buttons(StashGroup
*group
, gint
*setting
,
814 const gchar
*key_name
, gint default_value
,
815 StashWidgetID widget_id
, gint enum_id
, ...)
818 add_widget_pref(group
, G_TYPE_INT
, setting
, key_name
, GINT_TO_POINTER(default_value
),
819 GTK_TYPE_RADIO_BUTTON
, NULL
);
822 EnumWidget
*item
, *array
;
824 /* count pairs of args */
825 va_start(args
, enum_id
);
828 if (!va_arg(args
, gpointer
))
835 array
= g_new0(EnumWidget
, count
+ 1);
836 entry
->extra
.radio_buttons
= array
;
838 va_start(args
, enum_id
);
839 foreach_c_array(item
, array
, count
)
844 item
->widget_id
= widget_id
;
845 item
->enum_id
= enum_id
;
849 item
->widget_id
= va_arg(args
, gpointer
);
850 item
->enum_id
= va_arg(args
, gint
);
857 /** Adds a @c GtkSpinButton widget pref.
859 * @param setting Address of setting variable.
860 * @param key_name Name for key in a @c GKeyFile.
861 * @param default_value Value to use if the key doesn't exist when loading.
862 * @param widget_id @c GtkWidget pointer or string to lookup widget later. */
864 void stash_group_add_spin_button_integer(StashGroup
*group
, gint
*setting
,
865 const gchar
*key_name
, gint default_value
, StashWidgetID widget_id
)
867 add_widget_pref(group
, G_TYPE_INT
, setting
, key_name
, GINT_TO_POINTER(default_value
),
868 GTK_TYPE_SPIN_BUTTON
, widget_id
);
872 /** Adds a @c GtkComboBox widget pref.
874 * @param setting Address of setting variable.
875 * @param key_name Name for key in a @c GKeyFile.
876 * @param default_value Value to use if the key doesn't exist when loading.
877 * @param widget_id @c GtkWidget pointer or string to lookup widget later.
878 * @see stash_group_add_combo_box_entry(). */
880 void stash_group_add_combo_box(StashGroup
*group
, gint
*setting
,
881 const gchar
*key_name
, gint default_value
, StashWidgetID widget_id
)
883 add_widget_pref(group
, G_TYPE_INT
, setting
, key_name
, GINT_TO_POINTER(default_value
),
884 GTK_TYPE_COMBO_BOX
, widget_id
);
888 /** Adds a @c GtkComboBoxEntry widget pref.
890 * @param setting Address of setting variable.
891 * @param key_name Name for key in a @c GKeyFile.
892 * @param default_value Value to use if the key doesn't exist when loading.
893 * @param widget_id @c GtkWidget pointer or string to lookup widget later. */
894 /* We could maybe also have something like stash_group_add_combo_box_entry_with_menu()
895 * for the history list - or should that be stored as a separate setting? */
897 void stash_group_add_combo_box_entry(StashGroup
*group
, gchar
**setting
,
898 const gchar
*key_name
, const gchar
*default_value
, StashWidgetID widget_id
)
900 add_widget_pref(group
, G_TYPE_STRING
, setting
, key_name
, (gpointer
)default_value
,
901 TYPE_COMBO_BOX_ENTRY
, widget_id
);
905 /** Adds a @c GtkEntry widget pref.
907 * @param setting Address of setting variable.
908 * @param key_name Name for key in a @c GKeyFile.
909 * @param default_value Value to use if the key doesn't exist when loading.
910 * @param widget_id @c GtkWidget pointer or string to lookup widget later. */
912 void stash_group_add_entry(StashGroup
*group
, gchar
**setting
,
913 const gchar
*key_name
, const gchar
*default_value
, StashWidgetID widget_id
)
915 add_widget_pref(group
, G_TYPE_STRING
, setting
, key_name
, (gpointer
)default_value
,
916 GTK_TYPE_ENTRY
, widget_id
);
920 static GType
object_get_property_type(GObject
*object
, const gchar
*property_name
)
922 GObjectClass
*klass
= G_OBJECT_GET_CLASS(object
);
925 ps
= g_object_class_find_property(klass
, property_name
);
926 return ps
->value_type
;
930 /** Adds a widget's read/write property to the stash group.
931 * The property will be set when calling
932 * stash_group_display(), and read when calling stash_group_update().
934 * @param setting Address of e.g. an integer if using an integer property.
935 * @param key_name Name for key in a @c GKeyFile.
936 * @param default_value Value to use if the key doesn't exist when loading.
937 * Should be cast into a pointer e.g. with @c GINT_TO_POINTER().
938 * @param widget_id @c GtkWidget pointer or string to lookup widget later.
939 * @param property_name .
940 * @param type can be @c 0 if passing a @c GtkWidget as the @a widget_id argument to look it up from the
942 * @warning Currently only string GValue properties will be freed before setting; patch for
943 * other types - see @c handle_widget_property(). */
945 void stash_group_add_widget_property(StashGroup
*group
, gpointer setting
,
946 const gchar
*key_name
, gpointer default_value
, StashWidgetID widget_id
,
947 const gchar
*property_name
, GType type
)
950 type
= object_get_property_type(G_OBJECT(widget_id
), property_name
);
952 add_widget_pref(group
, type
, setting
, key_name
, default_value
,
953 G_TYPE_PARAM
, widget_id
)->extra
.property_name
= property_name
;
965 struct StashTreeValue
967 const gchar
*group_name
;
971 gchararray tree_string
;
976 typedef struct StashTreeValue StashTreeValue
;
979 static void stash_tree_renderer_set_data(GtkCellLayout
*cell_layout
, GtkCellRenderer
*cell
,
980 GtkTreeModel
*model
, GtkTreeIter
*iter
, gpointer user_data
)
982 GType cell_type
= GPOINTER_TO_SIZE(user_data
);
983 StashTreeValue
*value
;
985 gboolean matches_type
;
987 gtk_tree_model_get(model
, iter
, STASH_TREE_VALUE
, &value
, -1);
989 matches_type
= pref
->setting_type
== cell_type
;
990 g_object_set(cell
, "visible", matches_type
, "sensitive", matches_type
,
991 cell_type
== G_TYPE_BOOLEAN
? "activatable" : "editable", matches_type
, NULL
);
995 switch (pref
->setting_type
)
998 g_object_set(cell
, "active", value
->data
.tree_int
, NULL
);
1002 gchar
*text
= g_strdup_printf("%d", value
->data
.tree_int
);
1003 g_object_set(cell
, "text", text
, NULL
);
1008 g_object_set(cell
, "text", value
->data
.tree_string
, NULL
);
1015 static void stash_tree_renderer_edited(gchar
*path_str
, gchar
*new_text
, GtkTreeModel
*model
)
1019 StashTreeValue
*value
;
1022 path
= gtk_tree_path_new_from_string(path_str
);
1023 gtk_tree_model_get_iter(model
, &iter
, path
);
1024 gtk_tree_model_get(model
, &iter
, STASH_TREE_VALUE
, &value
, -1);
1027 switch (pref
->setting_type
)
1029 case G_TYPE_BOOLEAN
:
1030 value
->data
.tree_int
= !value
->data
.tree_int
;
1033 value
->data
.tree_int
= atoi(new_text
);
1036 SETPTR(value
->data
.tree_string
, g_strdup(new_text
));
1040 gtk_tree_model_row_changed(model
, path
, &iter
);
1041 gtk_tree_path_free(path
);
1045 static void stash_tree_boolean_toggled(GtkCellRendererToggle
*cell
, gchar
*path_str
,
1046 GtkTreeModel
*model
)
1048 stash_tree_renderer_edited(path_str
, NULL
, model
);
1052 static void stash_tree_string_edited(GtkCellRenderer
*cell
, gchar
*path_str
, gchar
*new_text
,
1053 GtkTreeModel
*model
)
1055 stash_tree_renderer_edited(path_str
, new_text
, model
);
1059 static gboolean
stash_tree_discard_value(GtkTreeModel
*model
, GtkTreePath
*path
,
1060 GtkTreeIter
*iter
, gpointer user_data
)
1062 StashTreeValue
*value
;
1064 gtk_tree_model_get(model
, iter
, STASH_TREE_VALUE
, &value
, -1);
1065 if (value
->pref
->setting_type
== G_TYPE_STRING
)
1066 g_free(value
->data
.tree_string
);
1073 static void stash_tree_destroy_cb(GtkWidget
*widget
, gpointer user_data
)
1075 GtkTreeModel
*model
= gtk_tree_view_get_model(GTK_TREE_VIEW(widget
));
1076 gtk_tree_model_foreach(model
, stash_tree_discard_value
, NULL
);
1080 static void stash_tree_append_pref(StashGroup
*group
, StashPref
*entry
, GtkListStore
*store
,
1084 StashTreeValue
*value
;
1086 value
= g_new0(StashTreeValue
, 1);
1088 value
->group_name
= group
->name
;
1089 value
->pref
= entry
;
1091 gtk_list_store_append(store
, &iter
);
1092 gtk_list_store_set(store
, &iter
, STASH_TREE_NAME
, entry
->key_name
,
1093 STASH_TREE_VALUE
, value
, -1);
1097 static void stash_tree_append_prefs(GPtrArray
*group_array
,
1098 GtkListStore
*store
, PrefAction action
)
1104 foreach_ptr_array(group
, i
, group_array
)
1108 foreach_ptr_array(entry
, j
, group
->entries
)
1109 stash_tree_append_pref(group
, entry
, store
, action
);
1115 /* Setups a simple editor for stash preferences based on the widget arguments.
1116 * group_array - Array of groups which's settings will be edited.
1117 * tree - GtkTreeView in which to edit the preferences. Must be empty. */
1118 void stash_tree_setup(GPtrArray
*group_array
, GtkTreeView
*tree
)
1120 GtkListStore
*store
;
1121 GtkTreeModel
*model
;
1122 GtkCellRenderer
*cell
;
1123 GtkTreeViewColumn
*column
;
1124 GtkAdjustment
*adjustment
;
1126 store
= gtk_list_store_new(STASH_TREE_COUNT
, G_TYPE_STRING
, G_TYPE_POINTER
);
1127 stash_tree_append_prefs(group_array
, store
, PREF_DISPLAY
);
1128 gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(store
), STASH_TREE_NAME
,
1129 GTK_SORT_ASCENDING
);
1131 model
= GTK_TREE_MODEL(store
);
1132 gtk_tree_view_set_model(tree
, model
);
1133 g_object_unref(G_OBJECT(store
));
1134 g_signal_connect(tree
, "destroy", G_CALLBACK(stash_tree_destroy_cb
), NULL
);
1136 cell
= gtk_cell_renderer_text_new();
1137 column
= gtk_tree_view_column_new_with_attributes(_("Name"), cell
, "text",
1138 STASH_TREE_NAME
, NULL
);
1139 gtk_tree_view_column_set_sort_column_id(column
, STASH_TREE_NAME
);
1140 gtk_tree_view_column_set_sort_indicator(column
, TRUE
);
1141 gtk_tree_view_append_column(tree
, column
);
1143 column
= gtk_tree_view_column_new();
1144 gtk_tree_view_column_set_title(column
, _("Value"));
1145 gtk_tree_view_append_column(tree
, column
);
1146 /* boolean renderer */
1147 cell
= gtk_cell_renderer_toggle_new();
1148 g_signal_connect(cell
, "toggled", G_CALLBACK(stash_tree_boolean_toggled
), model
);
1149 gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(column
), cell
, FALSE
);
1150 gtk_cell_layout_set_cell_data_func(GTK_CELL_LAYOUT(column
), cell
,
1151 stash_tree_renderer_set_data
, GSIZE_TO_POINTER(G_TYPE_BOOLEAN
), NULL
);
1152 /* string renderer */
1153 cell
= gtk_cell_renderer_text_new();
1154 g_object_set(cell
, "ellipsize", PANGO_ELLIPSIZE_END
, NULL
);
1155 g_signal_connect(cell
, "edited", G_CALLBACK(stash_tree_string_edited
), model
);
1156 gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(column
), cell
, TRUE
);
1157 gtk_cell_layout_set_cell_data_func(GTK_CELL_LAYOUT(column
), cell
,
1158 stash_tree_renderer_set_data
, GSIZE_TO_POINTER(G_TYPE_STRING
), NULL
);
1159 /* integer renderer */
1160 cell
= gtk_cell_renderer_spin_new();
1161 adjustment
= GTK_ADJUSTMENT(gtk_adjustment_new(0, G_MININT
, G_MAXINT
, 1, 10, 0));
1162 g_object_set(cell
, "adjustment", adjustment
, NULL
);
1163 g_signal_connect(cell
, "edited", G_CALLBACK(stash_tree_string_edited
), model
);
1164 gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(column
), cell
, FALSE
);
1165 gtk_cell_layout_set_cell_data_func(GTK_CELL_LAYOUT(column
), cell
,
1166 stash_tree_renderer_set_data
, GSIZE_TO_POINTER(G_TYPE_INT
), NULL
);
1170 static void stash_tree_display_pref(StashTreeValue
*value
, StashPref
*entry
)
1172 switch (entry
->setting_type
)
1174 case G_TYPE_BOOLEAN
:
1175 value
->data
.tree_int
= *(gboolean
*) entry
->setting
;
1178 value
->data
.tree_int
= *(gint
*) entry
->setting
;
1181 SETPTR(value
->data
.tree_string
, g_strdup(*(gchararray
*) entry
->setting
));
1184 g_warning("Unhandled type for %s::%s in %s()!", value
->group_name
,
1185 entry
->key_name
, G_STRFUNC
);
1190 static void stash_tree_update_pref(StashTreeValue
*value
, StashPref
*entry
)
1192 switch (entry
->setting_type
)
1194 case G_TYPE_BOOLEAN
:
1195 *(gboolean
*) entry
->setting
= value
->data
.tree_int
;
1198 *(gint
*) entry
->setting
= value
->data
.tree_int
;
1202 gchararray
*text
= entry
->setting
;
1203 SETPTR(*text
, g_strdup(value
->data
.tree_string
));
1207 g_warning("Unhandled type for %s::%s in %s()!", value
->group_name
,
1208 entry
->key_name
, G_STRFUNC
);
1213 static void stash_tree_action(GtkTreeModel
*model
, PrefAction action
)
1216 gboolean valid
= gtk_tree_model_get_iter_first(model
, &iter
);
1217 StashTreeValue
*value
;
1221 gtk_tree_model_get(model
, &iter
, STASH_TREE_VALUE
, &value
, -1);
1226 stash_tree_display_pref(value
, value
->pref
);
1229 stash_tree_update_pref(value
, value
->pref
);
1232 valid
= gtk_tree_model_iter_next(model
, &iter
);
1237 void stash_tree_display(GtkTreeView
*tree
)
1239 stash_tree_action(gtk_tree_view_get_model(tree
), PREF_DISPLAY
);
1243 void stash_tree_update(GtkTreeView
*tree
)
1245 stash_tree_action(gtk_tree_view_get_model(tree
), PREF_UPDATE
);