Fix callbacks to scintilla functions to work with splitwindow
[geany-mirror.git] / src / stash.c
blob1b35a16e98477d25ea7bcb0ee3c113e5fb556389
1 /*
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.
22 /**
23 * @file stash.h
24 * Lightweight library for reading/writing @c GKeyFile settings and synchronizing widgets with
25 * C variables.
27 * Note: Stash should only depend on GLib and GTK, but currently has some minor
28 * dependencies on Geany's utils.c.
30 * @section Terms
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
57 * just data settings.
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.
79 #include "stash.h"
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);
102 return type;
104 #endif /* !GTK_TYPE_COMBO_BOX_ENTRY */
107 struct StashPref
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*) */
115 union
117 struct EnumWidget *radio_buttons;
118 const gchar *property_name;
119 } extra; /* extra fields depending on widget_type */
122 typedef struct StashPref StashPref;
124 struct StashGroup
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;
135 gint enum_id;
137 EnumWidget;
140 typedef enum SettingAction
142 SETTING_READ,
143 SETTING_WRITE
145 SettingAction;
147 typedef enum PrefAction
149 PREF_DISPLAY,
150 PREF_UPDATE
152 PrefAction;
155 static void handle_boolean_setting(StashGroup *group, StashPref *se,
156 GKeyFile *config, SettingAction action)
158 gboolean *setting = se->setting;
160 switch (action)
162 case SETTING_READ:
163 *setting = utils_get_setting_boolean(config, group->name, se->key_name,
164 GPOINTER_TO_INT(se->default_value));
165 break;
166 case SETTING_WRITE:
167 g_key_file_set_boolean(config, group->name, se->key_name, *setting);
168 break;
173 static void handle_integer_setting(StashGroup *group, StashPref *se,
174 GKeyFile *config, SettingAction action)
176 gint *setting = se->setting;
178 switch (action)
180 case SETTING_READ:
181 *setting = utils_get_setting_integer(config, group->name, se->key_name,
182 GPOINTER_TO_INT(se->default_value));
183 break;
184 case SETTING_WRITE:
185 g_key_file_set_integer(config, group->name, se->key_name, *setting);
186 break;
191 static void handle_string_setting(StashGroup *group, StashPref *se,
192 GKeyFile *config, SettingAction action)
194 gchararray *setting = se->setting;
196 switch (action)
198 case SETTING_READ:
199 g_free(*setting);
200 *setting = utils_get_setting_string(config, group->name, se->key_name,
201 se->default_value);
202 break;
203 case SETTING_WRITE:
204 g_key_file_set_string(config, group->name, se->key_name,
205 *setting ? *setting : "");
206 break;
211 static void handle_strv_setting(StashGroup *group, StashPref *se,
212 GKeyFile *config, SettingAction action)
214 gchararray **setting = se->setting;
216 switch (action)
218 case SETTING_READ:
219 g_strfreev(*setting);
220 *setting = g_key_file_get_string_list(config, group->name, se->key_name,
221 NULL, NULL);
222 if (*setting == NULL)
223 *setting = g_strdupv(se->default_value);
224 break;
226 case SETTING_WRITE:
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));
234 break;
240 static void keyfile_action(SettingAction action, StashGroup *group, GKeyFile *keyfile)
242 StashPref *entry;
243 guint i;
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))
250 continue;
252 switch (entry->setting_type)
254 case G_TYPE_BOOLEAN:
255 handle_boolean_setting(group, entry, keyfile, action); break;
256 case G_TYPE_INT:
257 handle_integer_setting(group, entry, keyfile, action); break;
258 case G_TYPE_STRING:
259 handle_string_setting(group, entry, keyfile, action); break;
260 default:
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);
264 else
265 g_warning("Unhandled type for %s::%s in %s()!", group->name, entry->key_name,
266 G_STRFUNC);
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.
275 * @param group .
276 * @param keyfile Usually loaded from a configuration file first. */
277 GEANY_API_SYMBOL
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.
286 * @param group .
287 * @param keyfile . */
288 GEANY_API_SYMBOL
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.
298 * @param group .
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().
303 GEANY_API_SYMBOL
304 gboolean stash_group_load_from_file(StashGroup *group, const gchar *filename)
306 GKeyFile *keyfile;
307 gboolean ret;
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);
315 return ret;
319 /** Writes group settings to a configuration file using @c GKeyFile.
321 * @param group .
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().
328 GEANY_API_SYMBOL
329 gint stash_group_save_to_file(StashGroup *group, const gchar *filename,
330 GKeyFileFlags flags)
332 GKeyFile *keyfile;
333 gchar *data;
334 gint ret;
336 keyfile = g_key_file_new();
337 /* if we need to keep comments or translations, try to load first */
338 if (flags)
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);
344 g_free(data);
345 g_key_file_free(keyfile);
346 return ret;
350 /** Creates a new group.
351 * @param name Name used for @c GKeyFile group.
352 * @return Group. */
353 GEANY_API_SYMBOL
354 StashGroup *stash_group_new(const gchar *name)
356 StashGroup *group = g_new0(StashGroup, 1);
358 group->name = name;
359 group->entries = g_ptr_array_new();
360 group->use_defaults = TRUE;
361 return group;
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().
368 * @param group . */
369 GEANY_API_SYMBOL
370 void stash_group_free_settings(StashGroup *group)
372 StashPref *entry;
373 guint i;
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);
381 else
382 continue;
384 *(gpointer**) entry->setting = NULL;
389 /** Frees a group.
390 * @param group . */
391 GEANY_API_SYMBOL
392 void stash_group_free(StashGroup *group)
394 StashPref *entry;
395 guint i;
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);
406 g_free(group);
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;
427 static StashPref *
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);
434 *entry = init;
436 /* init any pointer settings to NULL so they can be freed later */
437 if (type == G_TYPE_STRING ||
438 type == G_TYPE_STRV)
439 if (group->use_defaults)
440 *(gpointer**)setting = NULL;
442 g_ptr_array_add(group->entries, entry);
443 return entry;
447 /** Adds boolean setting.
448 * @param group .
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. */
452 GEANY_API_SYMBOL
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.
461 * @param group .
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. */
465 GEANY_API_SYMBOL
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.
475 * @param group .
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. */
479 GEANY_API_SYMBOL
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.
489 * @param group .
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. */
493 GEANY_API_SYMBOL
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,
504 PrefAction action)
506 switch (action)
508 case PREF_DISPLAY:
509 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), *setting);
510 break;
511 case PREF_UPDATE:
512 *setting = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
513 break;
518 static void handle_spin_button(GtkWidget *widget, StashPref *entry,
519 PrefAction action)
521 gint *setting = entry->setting;
523 g_assert(entry->setting_type == G_TYPE_INT); /* only int spin prefs */
525 switch (action)
527 case PREF_DISPLAY:
528 gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), *setting);
529 break;
530 case PREF_UPDATE:
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));
534 break;
539 static void handle_combo_box(GtkWidget *widget, StashPref *entry,
540 PrefAction action)
542 gint *setting = entry->setting;
544 switch (action)
546 case PREF_DISPLAY:
547 gtk_combo_box_set_active(GTK_COMBO_BOX(widget), *setting);
548 break;
549 case PREF_UPDATE:
550 *setting = gtk_combo_box_get_active(GTK_COMBO_BOX(widget));
551 break;
556 static void handle_entry(GtkWidget *widget, StashPref *entry,
557 PrefAction action)
559 gchararray *setting = entry->setting;
561 switch (action)
563 case PREF_DISPLAY:
564 gtk_entry_set_text(GTK_ENTRY(widget), *setting);
565 break;
566 case PREF_UPDATE:
567 g_free(*setting);
568 *setting = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
569 break;
574 static void handle_combo_box_entry(GtkWidget *widget, StashPref *entry,
575 PrefAction action)
577 widget = gtk_bin_get_child(GTK_BIN(widget));
578 handle_entry(widget, entry, action);
582 /* taken from Glade 2.x generated support.c */
583 static GtkWidget*
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);
591 for (;;)
593 if (GTK_IS_MENU(widget))
594 parent = gtk_menu_get_attach_widget(GTK_MENU(widget));
595 else
596 parent = gtk_widget_get_parent(widget);
597 if (parent == NULL)
598 parent = (GtkWidget*) g_object_get_data(G_OBJECT(widget), "GladeParentKey");
599 if (parent == NULL)
600 break;
601 widget = parent;
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);
607 return found_widget;
611 static GtkWidget *
612 get_widget(GtkWidget *owner, StashWidgetID widget_id)
614 GtkWidget *widget;
616 if (owner)
617 widget = lookup_widget(owner, (const gchar *)widget_id);
618 else
619 widget = (GtkWidget *)widget_id;
621 if (!GTK_IS_WIDGET(widget))
623 g_warning("Unknown widget in %s()!", G_STRFUNC);
624 return NULL;
626 return widget;
630 static void handle_radio_button(GtkWidget *widget, gint enum_id, gboolean *setting,
631 PrefAction action)
633 switch (action)
635 case PREF_DISPLAY:
636 if (*setting == enum_id)
637 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), TRUE);
638 break;
639 case PREF_UPDATE:
640 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)))
641 *setting = enum_id;
642 break;
647 static void handle_radio_buttons(GtkWidget *owner, StashPref *entry,
648 PrefAction action)
650 EnumWidget *field = entry->extra.radio_buttons;
651 gsize count = 0;
652 GtkWidget *widget = NULL;
654 while (1)
656 widget = get_widget(owner, field->widget_id);
658 if (!widget)
659 continue;
661 count++;
662 handle_radio_button(widget, field->enum_id, entry->setting, action);
663 field++;
664 if (!field->widget_id)
665 break;
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,
673 PrefAction action)
675 GObject *object = G_OBJECT(widget);
676 const gchar *name = entry->extra.property_name;
678 switch (action)
680 case PREF_DISPLAY:
681 g_object_set(object, name, entry->setting, NULL);
682 break;
683 case PREF_UPDATE:
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);
689 break;
694 static void pref_action(PrefAction action, StashGroup *group, GtkWidget *owner)
696 StashPref *entry;
697 guint i;
699 foreach_ptr_array(entry, i, group->entries)
701 GtkWidget *widget;
703 /* ignore settings with no widgets */
704 if (entry->widget_type == G_TYPE_NONE)
705 continue;
707 /* radio buttons have several widgets */
708 if (entry->widget_type == GTK_TYPE_RADIO_BUTTON)
710 handle_radio_buttons(owner, entry, action);
711 continue;
714 widget = get_widget(owner, entry->widget_id);
715 if (!widget)
717 g_warning("Unknown widget for %s::%s in %s()!", group->name, entry->key_name,
718 G_STRFUNC);
719 continue;
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);
735 else
736 g_warning("Unhandled type for %s::%s in %s()!", group->name, entry->key_name,
737 G_STRFUNC);
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.
744 * @param group .
745 * @param owner If non-NULL, used to lookup widgets by name, otherwise
746 * widget pointers are assumed.
747 * @see stash_group_update(). */
748 GEANY_API_SYMBOL
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.
757 * @param group .
758 * @param owner If non-NULL, used to lookup widgets by name, otherwise
759 * widget pointers are assumed.
760 * @see stash_group_display(). */
761 GEANY_API_SYMBOL
762 void stash_group_update(StashGroup *group, GtkWidget *owner)
764 pref_action(PREF_UPDATE, group, owner);
768 static StashPref *
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)
773 StashPref *entry =
774 add_pref(group, setting_type, setting, key_name, default_value);
776 entry->widget_type = widget_type;
777 entry->widget_id = widget_id;
778 return entry;
782 /** Adds a @c GtkToggleButton (or @c GtkCheckButton) widget pref.
783 * @param group .
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(). */
789 GEANY_API_SYMBOL
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.
799 * @param group .
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):
807 * @code
808 * enum {FOO, BAR};
809 * stash_group_add_radio_buttons(group, &which_one_setting, "which_one", BAR,
810 * "radio_foo", FOO, "radio_bar", BAR, NULL);
811 * @endcode */
812 GEANY_API_SYMBOL
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, ...)
817 StashPref *entry =
818 add_widget_pref(group, G_TYPE_INT, setting, key_name, GINT_TO_POINTER(default_value),
819 GTK_TYPE_RADIO_BUTTON, NULL);
820 va_list args;
821 gsize count = 1;
822 EnumWidget *item, *array;
824 /* count pairs of args */
825 va_start(args, enum_id);
826 while (1)
828 if (!va_arg(args, gpointer))
829 break;
830 va_arg(args, gint);
831 count++;
833 va_end(args);
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)
841 if (item == array)
843 /* first element */
844 item->widget_id = widget_id;
845 item->enum_id = enum_id;
847 else
849 item->widget_id = va_arg(args, gpointer);
850 item->enum_id = va_arg(args, gint);
853 va_end(args);
857 /** Adds a @c GtkSpinButton widget pref.
858 * @param group .
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. */
863 GEANY_API_SYMBOL
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.
873 * @param group .
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(). */
879 GEANY_API_SYMBOL
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.
889 * @param group .
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? */
896 GEANY_API_SYMBOL
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.
906 * @param group .
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. */
911 GEANY_API_SYMBOL
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);
923 GParamSpec *ps;
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().
933 * @param group .
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
941 * @c GObject data.
942 * @warning Currently only string GValue properties will be freed before setting; patch for
943 * other types - see @c handle_widget_property(). */
944 GEANY_API_SYMBOL
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)
949 if (!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;
957 enum
959 STASH_TREE_NAME,
960 STASH_TREE_VALUE,
961 STASH_TREE_COUNT
965 struct StashTreeValue
967 const gchar *group_name;
968 StashPref *pref;
969 union
971 gchararray tree_string;
972 gint tree_int;
973 } data;
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;
984 StashPref *pref;
985 gboolean matches_type;
987 gtk_tree_model_get(model, iter, STASH_TREE_VALUE, &value, -1);
988 pref = value->pref;
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);
993 if (matches_type)
995 switch (pref->setting_type)
997 case G_TYPE_BOOLEAN:
998 g_object_set(cell, "active", value->data.tree_int, NULL);
999 break;
1000 case G_TYPE_INT:
1002 gchar *text = g_strdup_printf("%d", value->data.tree_int);
1003 g_object_set(cell, "text", text, NULL);
1004 g_free(text);
1005 break;
1007 case G_TYPE_STRING:
1008 g_object_set(cell, "text", value->data.tree_string, NULL);
1009 break;
1015 static void stash_tree_renderer_edited(gchar *path_str, gchar *new_text, GtkTreeModel *model)
1017 GtkTreePath *path;
1018 GtkTreeIter iter;
1019 StashTreeValue *value;
1020 StashPref *pref;
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);
1025 pref = value->pref;
1027 switch (pref->setting_type)
1029 case G_TYPE_BOOLEAN:
1030 value->data.tree_int = !value->data.tree_int;
1031 break;
1032 case G_TYPE_INT:
1033 value->data.tree_int = atoi(new_text);
1034 break;
1035 case G_TYPE_STRING:
1036 SETPTR(value->data.tree_string, g_strdup(new_text));
1037 break;
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);
1067 g_free(value);
1069 return FALSE;
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,
1081 PrefAction action)
1083 GtkTreeIter iter;
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)
1100 StashGroup *group;
1101 guint i, j;
1102 StashPref *entry;
1104 foreach_ptr_array(group, i, group_array)
1106 if (group->various)
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;
1176 break;
1177 case G_TYPE_INT:
1178 value->data.tree_int = *(gint *) entry->setting;
1179 break;
1180 case G_TYPE_STRING:
1181 SETPTR(value->data.tree_string, g_strdup(*(gchararray *) entry->setting));
1182 break;
1183 default:
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;
1196 break;
1197 case G_TYPE_INT:
1198 *(gint *) entry->setting = value->data.tree_int;
1199 break;
1200 case G_TYPE_STRING:
1202 gchararray *text = entry->setting;
1203 SETPTR(*text, g_strdup(value->data.tree_string));
1204 break;
1206 default:
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)
1215 GtkTreeIter iter;
1216 gboolean valid = gtk_tree_model_get_iter_first(model, &iter);
1217 StashTreeValue *value;
1219 while (valid)
1221 gtk_tree_model_get(model, &iter, STASH_TREE_VALUE, &value, -1);
1223 switch (action)
1225 case PREF_DISPLAY:
1226 stash_tree_display_pref(value, value->pref);
1227 break;
1228 case PREF_UPDATE:
1229 stash_tree_update_pref(value, value->pref);
1230 break;
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);