1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
4 * Copyright (C) Philip en Marijn 2008 <>
6 * preferences.c is free software copyrighted by Philip en Marijn.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name ``Philip en Marijn'' nor the name of any other
17 * contributor may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * preferences.c IS PROVIDED BY Philip en Marijn ``AS IS'' AND ANY EXPRESS
21 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL Philip en Marijn OR ANY OTHER CONTRIBUTORS
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
27 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
30 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #include <glib/gi18n.h>
37 #include <libchimara/chimara-glk.h>
38 #include <libchimara/chimara-if.h>
42 GObject *load_object(const gchar *name);
43 static GtkTextTag *current_tag;
44 static GtkListStore *preferred_list;
46 static void style_tree_select_callback(GtkTreeSelection *selection, ChimaraGlk *glk);
48 /* Internal functions to convert from human-readable names in the config file
49 to enums and back. Later: replace with plugin functions. */
50 static ChimaraIFFormat
51 parse_format(const char *format)
53 if(strcmp(format, "z5") == 0)
54 return CHIMARA_IF_FORMAT_Z5;
55 if(strcmp(format, "z6") == 0)
56 return CHIMARA_IF_FORMAT_Z6;
57 if(strcmp(format, "z8") == 0)
58 return CHIMARA_IF_FORMAT_Z8;
59 if(strcmp(format, "zblorb") == 0)
60 return CHIMARA_IF_FORMAT_Z_BLORB;
61 if(strcmp(format, "glulx") == 0)
62 return CHIMARA_IF_FORMAT_GLULX;
63 if(strcmp(format, "gblorb") == 0)
64 return CHIMARA_IF_FORMAT_GLULX_BLORB;
65 return CHIMARA_IF_FORMAT_NONE;
68 static const char *format_strings[CHIMARA_IF_NUM_FORMATS] = {
69 "z5", "z6", "z8", "zblorb", "glulx", "gblorb"
72 static const char *format_to_string(ChimaraIFFormat format)
74 if(format >= 0 && format < CHIMARA_IF_NUM_FORMATS)
75 return format_strings[format];
79 static const char *format_display_strings[CHIMARA_IF_NUM_FORMATS] = {
80 N_("Z-machine version 5"),
81 N_("Z-machine version 6"),
82 N_("Z-machine version 8"),
83 N_("Z-machine Blorb file"),
85 N_("Glulx Blorb file")
89 format_to_display_string(ChimaraIFFormat format)
91 if(format >= 0 && format < CHIMARA_IF_NUM_FORMATS)
92 return gettext(format_display_strings[format]);
96 static ChimaraIFInterpreter
97 parse_interpreter(const char *interp)
99 if(strcmp(interp, "frotz") == 0)
100 return CHIMARA_IF_INTERPRETER_FROTZ;
101 if(strcmp(interp, "nitfol") == 0)
102 return CHIMARA_IF_INTERPRETER_NITFOL;
103 if(strcmp(interp, "glulxe") == 0)
104 return CHIMARA_IF_INTERPRETER_GLULXE;
105 if(strcmp(interp, "git") == 0)
106 return CHIMARA_IF_INTERPRETER_GIT;
107 if(strcmp(interp, "bocfel") == 0)
108 return CHIMARA_IF_INTERPRETER_BOCFEL;
109 return CHIMARA_IF_INTERPRETER_NONE;
112 static const char *interpreter_strings[CHIMARA_IF_NUM_INTERPRETERS] = {
113 "frotz", "nitfol", "glulxe", "git", "bocfel"
117 interpreter_to_string(ChimaraIFInterpreter interp)
119 if(interp >= 0 && interp < CHIMARA_IF_NUM_INTERPRETERS)
120 return interpreter_strings[interp];
124 static const char *interpreter_display_strings[CHIMARA_IF_NUM_INTERPRETERS] = {
133 interpreter_to_display_string(ChimaraIFInterpreter interp)
135 if(interp >= 0 && interp < CHIMARA_IF_NUM_INTERPRETERS)
136 return gettext(interpreter_display_strings[interp]);
140 /* Create the preferences dialog. */
142 preferences_create(ChimaraGlk *glk)
144 /* Initialize the tree of style names */
145 GtkTreeStore *style_list = GTK_TREE_STORE( load_object("style-list") );
146 GtkTreeIter buffer, grid, buffer_child, grid_child;
148 gtk_tree_store_append(style_list, &buffer, NULL);
149 gtk_tree_store_append(style_list, &grid, NULL);
150 gtk_tree_store_set(style_list, &buffer, 0, "Text buffer", -1);
151 gtk_tree_store_set(style_list, &grid, 0, "Text grid", -1);
154 unsigned int num_tags;
155 const gchar **tag_names = chimara_glk_get_tag_names(glk, &num_tags);
156 for(i=0; i<num_tags; i++) {
157 gtk_tree_store_append(style_list, &buffer_child, &buffer);
158 gtk_tree_store_append(style_list, &grid_child, &grid);
159 gtk_tree_store_set(style_list, &buffer_child, 0, tag_names[i], -1);
160 gtk_tree_store_set(style_list, &grid_child, 0, tag_names[i], -1);
163 /* Set selection mode to single select */
164 GtkTreeView *view = GTK_TREE_VIEW( load_object("style-treeview") );
165 GtkTreeSelection *selection = gtk_tree_view_get_selection(view);
166 gtk_tree_selection_set_mode(selection, GTK_SELECTION_SINGLE);
167 g_signal_connect(selection, "changed", G_CALLBACK(style_tree_select_callback), glk);
169 /* Bind the preferences to the entries in the preferences file */
170 extern GSettings *prefs_settings;
171 GObject *flep = G_OBJECT( load_object("flep") );
172 g_settings_bind(prefs_settings, "flep", flep, "active", G_SETTINGS_BIND_DEFAULT);
173 GtkFileChooser *blorb_chooser = GTK_FILE_CHOOSER( load_object("blorb_file_chooser") );
174 GtkFileChooser *css_chooser = GTK_FILE_CHOOSER( load_object("css-filechooser") );
176 g_settings_get(prefs_settings, "resource-path", "ms", &filename);
178 gtk_file_chooser_set_filename(blorb_chooser, filename);
181 g_settings_get(prefs_settings, "css-file", "ms", &filename);
183 if(!chimara_glk_set_css_from_file(glk, filename, NULL)) {
184 /* If the setting didn't point to a CSS file, fail silently and
186 g_settings_set(prefs_settings, "css-file", "ms", NULL);
188 gtk_file_chooser_set_filename(css_chooser, filename);
193 /* Populate the list of available interpreters */
194 GtkListStore *interp_list = GTK_LIST_STORE( load_object("available_interpreters") );
196 GtkTreeIter tree_iter;
197 for(count = 0; count < CHIMARA_IF_NUM_INTERPRETERS; count++) {
198 gtk_list_store_append(interp_list, &tree_iter);
199 gtk_list_store_set(interp_list, &tree_iter,
200 0, interpreter_to_display_string(count),
204 /* Get the list of preferred interpreters from the preferences */
206 char *format, *plugin;
207 g_settings_get(prefs_settings, "preferred-interpreters", "a{ss}", &iter);
208 while(g_variant_iter_loop(iter, "{ss}", &format, &plugin)) {
209 ChimaraIFFormat format_num = parse_format(format);
210 if(format_num == CHIMARA_IF_FORMAT_NONE)
212 ChimaraIFInterpreter interp_num = parse_interpreter(plugin);
213 if(interp_num == CHIMARA_IF_INTERPRETER_NONE)
215 chimara_if_set_preferred_interpreter(CHIMARA_IF(glk), format_num, interp_num);
217 g_variant_iter_free(iter);
219 /* Display it all in the list */
220 preferred_list = GTK_LIST_STORE( load_object("interpreters") );
221 for(count = 0; count < CHIMARA_IF_NUM_FORMATS; count++) {
222 gtk_list_store_append(preferred_list, &tree_iter);
223 gtk_list_store_set(preferred_list, &tree_iter,
224 0, format_to_display_string(count),
225 1, interpreter_to_display_string(chimara_if_get_preferred_interpreter(CHIMARA_IF(glk), count)),
231 style_tree_select_callback(GtkTreeSelection *selection, ChimaraGlk *glk)
233 GtkTreeIter child, parent;
234 gchar *child_name, *parent_name;
237 if( !gtk_tree_selection_get_selected(selection, &model, &child) )
240 gtk_tree_model_get(model, &child, 0, &child_name, -1);
242 if( !gtk_tree_model_iter_parent(model, &parent, &child) )
245 gtk_tree_model_get(model, &parent, 0, &parent_name, -1);
246 if( !strcmp(parent_name, "Text buffer") )
247 current_tag = chimara_glk_get_tag(glk, CHIMARA_GLK_TEXT_BUFFER, child_name);
249 current_tag = chimara_glk_get_tag(glk, CHIMARA_GLK_TEXT_GRID, child_name);
253 on_toggle_left(GtkToggleButton *button, ChimaraGlk *glk) {
254 /* No nothing if the button is deactivated */
255 if( !gtk_toggle_button_get_active(button) )
257 g_object_set(current_tag, "justification", GTK_JUSTIFY_LEFT, "justification-set", TRUE, NULL);
261 on_toggle_center(GtkToggleButton *button, ChimaraGlk *glk) {
262 if( !gtk_toggle_button_get_active(button) )
264 g_object_set(current_tag, "justification", GTK_JUSTIFY_CENTER, "justification-set", TRUE, NULL);
268 on_toggle_right(GtkToggleButton *button, ChimaraGlk *glk) {
269 if( !gtk_toggle_button_get_active(button) )
271 g_object_set(current_tag, "justification", GTK_JUSTIFY_RIGHT, "justification-set", TRUE, NULL);
275 on_toggle_justify(GtkToggleButton *button, ChimaraGlk *glk) {
276 if( !gtk_toggle_button_get_active(button) )
278 g_object_set(current_tag, "justification", GTK_JUSTIFY_FILL, "justification-set", TRUE, NULL);
282 on_toggle_bold(GtkToggleButton *button, ChimaraGlk *glk) {
283 if( gtk_toggle_button_get_active(button) )
284 g_object_set(current_tag, "weight", PANGO_WEIGHT_BOLD, "weight-set", TRUE, NULL);
286 g_object_set(current_tag, "weight", PANGO_WEIGHT_NORMAL, "weight-set", TRUE, NULL);
290 on_toggle_italic(GtkToggleButton *button, ChimaraGlk *glk) {
291 if( gtk_toggle_button_get_active(button) )
292 g_object_set(current_tag, "style", PANGO_STYLE_ITALIC, "style-set", TRUE, NULL);
294 g_object_set(current_tag, "style", PANGO_STYLE_NORMAL, "style-set", TRUE, NULL);
298 on_toggle_underline(GtkToggleButton *button, ChimaraGlk *glk) {
299 if( gtk_toggle_button_get_active(button) )
300 g_object_set(current_tag, "underline", PANGO_UNDERLINE_SINGLE, "underline-set", TRUE, NULL);
302 g_object_set(current_tag, "underline", PANGO_UNDERLINE_NONE, "underline-set", TRUE, NULL);
306 on_foreground_color_set(GtkColorButton *button, ChimaraGlk *glk)
309 gtk_color_chooser_get_rgba(GTK_COLOR_CHOOSER(button), &color);
310 g_object_set(current_tag,
311 "foreground-rgba", &color,
312 "foreground-set", TRUE,
317 on_background_color_set(GtkColorButton *button, ChimaraGlk *glk)
320 gtk_color_chooser_get_rgba(GTK_COLOR_CHOOSER(button), &color);
321 g_object_set(current_tag,
322 "background-rgba", &color,
323 "background-set", TRUE,
328 on_font_set(GtkFontButton *button, ChimaraGlk *glk)
330 const gchar *font_name = gtk_font_button_get_font_name(button);
331 PangoFontDescription *font_description = pango_font_description_from_string(font_name);
332 g_object_set(current_tag, "font-desc", font_description, NULL);
336 on_css_filechooser_file_set(GtkFileChooserButton *button, ChimaraGlk *glk)
338 GError *error = NULL;
339 extern GSettings *prefs_settings;
340 char *filename = gtk_file_chooser_get_filename( GTK_FILE_CHOOSER(button) );
341 if(!chimara_glk_set_css_from_file(glk, filename, &error)) {
342 error_dialog(NULL, error, "There was a problem reading the CSS file: ");
343 g_settings_set(prefs_settings, "css-file", "ms", NULL);
345 g_settings_set(prefs_settings, "css-file", "ms", filename);
351 on_resource_file_set(GtkFileChooserButton *button, ChimaraGlk *glk)
353 extern GSettings *prefs_settings;
354 char *filename = gtk_file_chooser_get_filename( GTK_FILE_CHOOSER(button) );
355 g_settings_set(prefs_settings, "resource-path", "ms", filename);
360 on_interpreter_cell_changed(GtkCellRendererCombo *combo, char *path_string, GtkTreeIter *new_iter, ChimaraGlk *glk)
362 unsigned int format, interpreter;
363 format = (unsigned int)strtol(path_string, NULL, 10);
364 GtkTreeModel *combo_model;
365 g_object_get(combo, "model", &combo_model, NULL);
366 char *combo_string = gtk_tree_model_get_string_from_iter(combo_model, new_iter);
367 interpreter = (unsigned int)strtol(combo_string, NULL, 10);
368 g_free(combo_string);
370 chimara_if_set_preferred_interpreter(CHIMARA_IF(glk), format, interpreter);
372 /* Display the new setting in the list */
374 GtkTreePath *path = gtk_tree_path_new_from_string(path_string);
375 gtk_tree_model_get_iter(GTK_TREE_MODEL(preferred_list), &iter, path);
376 gtk_tree_path_free(path);
377 gtk_list_store_set(preferred_list, &iter,
378 1, interpreter_to_display_string(interpreter),
381 /* Save the new settings in the preferences file */
382 extern GSettings *prefs_settings;
383 GVariantBuilder *builder = g_variant_builder_new( G_VARIANT_TYPE("a{ss}") );
385 for(count = 0; count < CHIMARA_IF_NUM_FORMATS; count++) {
386 g_variant_builder_add(builder, "{ss}",
387 format_to_string(count),
388 interpreter_to_string(chimara_if_get_preferred_interpreter(CHIMARA_IF(glk), count)));
390 g_settings_set(prefs_settings, "preferred-interpreters", "a{ss}", builder);
391 g_variant_builder_unref(builder);