Add preference for graphics file directory
[projects/chimara/chimara.git] / player / preferences.c
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3  * callbacks.c
4  * Copyright (C) Philip en Marijn 2008 <>
5  * 
6  * preferences.c is free software copyrighted by Philip en Marijn.
7  * 
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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.
19  * 
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.
31  */
32
33 #include <glib.h>
34 #include <glib/gi18n.h>
35 #include <gtk/gtk.h>
36 #include <libchimara/chimara-glk.h>
37 #include <libchimara/chimara-if.h>
38 #include <config.h>
39 #include "error.h"
40
41 GObject *load_object(const gchar *name);
42 static GtkTextTag *current_tag;
43
44 static void style_tree_select_callback(GtkTreeSelection *selection, ChimaraGlk *glk);
45
46 /* Create the preferences dialog. */
47 void
48 preferences_create(ChimaraGlk *glk)
49 {
50         /* Initialize the tree of style names */
51         GtkTreeStore *style_list = gtk_tree_store_new(1, G_TYPE_STRING);
52         GtkTreeIter buffer, grid, buffer_child, grid_child;
53
54         gtk_tree_store_append(style_list, &buffer, NULL);
55         gtk_tree_store_append(style_list, &grid, NULL);
56         gtk_tree_store_set(style_list, &buffer, 0, "Text buffer", -1);
57         gtk_tree_store_set(style_list, &grid, 0, "Text grid", -1);
58
59         int i;
60     gint num_tags = chimara_glk_get_num_tag_names(glk);
61         const gchar **tag_names = chimara_glk_get_tag_names(glk);
62         for(i=0; i<num_tags; i++) {
63                 gtk_tree_store_append(style_list, &buffer_child, &buffer);
64                 gtk_tree_store_append(style_list, &grid_child, &grid);
65                 gtk_tree_store_set(style_list, &buffer_child, 0, tag_names[i], -1);
66                 gtk_tree_store_set(style_list, &grid_child, 0, tag_names[i], -1);
67         }
68
69         /* Attach the model to the treeview */
70         GtkTreeView *view = GTK_TREE_VIEW( load_object("style-treeview") );
71         gtk_tree_view_set_model(view, GTK_TREE_MODEL(style_list));
72         g_object_unref(style_list);
73
74         /* Set the columns */
75         GtkTreeViewColumn *column = gtk_tree_view_column_new();
76         gtk_tree_view_column_set_title(column, "Style Name");
77         gtk_tree_view_append_column(view, column);
78
79         /* Set the renderers */
80         GtkCellRenderer *renderer = gtk_cell_renderer_text_new();
81         gtk_tree_view_column_pack_start(column, renderer, TRUE);
82         gtk_tree_view_column_add_attribute(column, renderer, "text", 0);
83
84         /* Set selection mode to single select */
85         GtkTreeSelection *selection = gtk_tree_view_get_selection(view);
86         gtk_tree_selection_set_mode(selection, GTK_SELECTION_SINGLE);
87
88         g_signal_connect(selection, "changed", G_CALLBACK(style_tree_select_callback), glk);
89
90         /* Bind the preferences to the entries in the preferences file */
91         extern GSettings *prefs_settings;
92         GObject *flep = G_OBJECT( load_object("flep") );
93         g_settings_bind(prefs_settings, "flep", flep, "active", G_SETTINGS_BIND_DEFAULT);
94         GtkFileChooser *blorb_chooser = GTK_FILE_CHOOSER( load_object("blorb_file_chooser") );
95         char *filename;
96         g_settings_get(prefs_settings, "resource-path", "ms", &filename);
97         if(filename) {
98                 gtk_file_chooser_set_filename(blorb_chooser, filename);
99                 g_free(filename);
100         }
101 }
102
103 static void
104 style_tree_select_callback(GtkTreeSelection *selection, ChimaraGlk *glk)
105 {
106         GtkTreeIter child, parent;
107         gchar *child_name, *parent_name;
108         GtkTreeModel *model;
109
110         if( !gtk_tree_selection_get_selected(selection, &model, &child) )
111                 return;
112
113         gtk_tree_model_get(model, &child, 0, &child_name, -1);
114                 
115         if( !gtk_tree_model_iter_parent(model, &parent, &child) )
116                 return;
117
118         gtk_tree_model_get(model, &parent, 0, &parent_name, -1);
119         if( !strcmp(parent_name, "Text buffer") ) 
120                 current_tag = chimara_glk_get_tag(glk, CHIMARA_GLK_TEXT_BUFFER, child_name);
121         else
122                 current_tag = chimara_glk_get_tag(glk, CHIMARA_GLK_TEXT_GRID, child_name);
123 }
124
125 void
126 on_toggle_left(GtkToggleToolButton *button, ChimaraGlk *glk) {
127         /* No nothing if the button is deactivated */
128         if( !gtk_toggle_tool_button_get_active(button) )
129                 return;
130
131         /* Untoggle other alignment options */
132         GtkToggleToolButton *center = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-center"));
133         GtkToggleToolButton *right = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-right"));
134         GtkToggleToolButton *justify = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-justify"));
135         gtk_toggle_tool_button_set_active(center, FALSE);
136         gtk_toggle_tool_button_set_active(right, FALSE);
137         gtk_toggle_tool_button_set_active(justify, FALSE);
138
139         g_object_set(current_tag, "justification", GTK_JUSTIFY_LEFT, "justification-set", TRUE, NULL);
140         chimara_glk_update_style(glk);
141 }
142
143 void
144 on_toggle_center(GtkToggleToolButton *button, ChimaraGlk *glk) {
145         if( !gtk_toggle_tool_button_get_active(button) )
146                 return;
147
148         /* Untoggle other alignment options */
149         GtkToggleToolButton *left = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-left"));
150         GtkToggleToolButton *right = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-right"));
151         GtkToggleToolButton *justify = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-justify"));
152         gtk_toggle_tool_button_set_active(left, FALSE);
153         gtk_toggle_tool_button_set_active(right, FALSE);
154         gtk_toggle_tool_button_set_active(justify, FALSE);
155
156         g_object_set(current_tag, "justification", GTK_JUSTIFY_CENTER, "justification-set", TRUE, NULL);
157         chimara_glk_update_style(glk);
158 }
159
160 void
161 on_toggle_right(GtkToggleToolButton *button, ChimaraGlk *glk) {
162         if( !gtk_toggle_tool_button_get_active(button) )
163                 return;
164
165         /* Untoggle other alignment options */
166         GtkToggleToolButton *left = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-left"));
167         GtkToggleToolButton *center = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-center"));
168         GtkToggleToolButton *justify = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-justify"));
169         gtk_toggle_tool_button_set_active(left, FALSE);
170         gtk_toggle_tool_button_set_active(center, FALSE);
171         gtk_toggle_tool_button_set_active(justify, FALSE);
172
173         g_object_set(current_tag, "justification", GTK_JUSTIFY_RIGHT, "justification-set", TRUE, NULL);
174         chimara_glk_update_style(glk);
175 }
176
177 void
178 on_toggle_justify(GtkToggleToolButton *button, ChimaraGlk *glk) {
179         if( !gtk_toggle_tool_button_get_active(button) )
180                 return;
181
182         /* Untoggle other alignment options */
183         GtkToggleToolButton *left = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-left"));
184         GtkToggleToolButton *center = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-center"));
185         GtkToggleToolButton *right = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-right"));
186         gtk_toggle_tool_button_set_active(left, FALSE);
187         gtk_toggle_tool_button_set_active(center, FALSE);
188         gtk_toggle_tool_button_set_active(right, FALSE);
189
190         g_object_set(current_tag, "justification", GTK_JUSTIFY_FILL, "justification-set", TRUE, NULL);
191         chimara_glk_update_style(glk);
192 }
193
194 void
195 on_toggle_bold(GtkToggleToolButton *button, ChimaraGlk *glk) {
196         if( gtk_toggle_tool_button_get_active(button) )
197                 g_object_set(current_tag, "weight", PANGO_WEIGHT_BOLD, "weight-set", TRUE, NULL);
198         else
199                 g_object_set(current_tag, "weight", PANGO_WEIGHT_NORMAL, "weight-set", TRUE, NULL);
200
201         chimara_glk_update_style(glk);
202 }
203
204 void
205 on_toggle_italic(GtkToggleToolButton *button, ChimaraGlk *glk) {
206         if( gtk_toggle_tool_button_get_active(button) )
207                 g_object_set(current_tag, "style", PANGO_STYLE_ITALIC, "style-set", TRUE, NULL);
208         else
209                 g_object_set(current_tag, "style", PANGO_STYLE_NORMAL, "style-set", TRUE, NULL);
210
211         chimara_glk_update_style(glk);
212 }
213
214 void
215 on_toggle_underline(GtkToggleToolButton *button, ChimaraGlk *glk) {
216         if( gtk_toggle_tool_button_get_active(button) )
217                 g_object_set(current_tag, "underline", PANGO_UNDERLINE_SINGLE, "underline-set", TRUE, NULL);
218         else
219                 g_object_set(current_tag, "underline", PANGO_UNDERLINE_NONE, "underline-set", TRUE, NULL);
220
221         chimara_glk_update_style(glk);
222 }
223
224 void
225 on_foreground_color_set(GtkColorButton *button, ChimaraGlk *glk)
226 {
227         GdkColor color;
228     gtk_color_button_get_color(button, &color);
229         g_object_set(current_tag, "foreground-gdk", &color, "foreground-set", TRUE, NULL);
230         chimara_glk_update_style(glk);
231 }
232
233 void
234 on_background_color_set(GtkColorButton *button, ChimaraGlk *glk)
235 {
236         GdkColor color;
237     gtk_color_button_get_color(button, &color);
238         g_object_set(current_tag, "background-gdk", &color, "background-set", TRUE, NULL);
239         chimara_glk_update_style(glk);
240 }
241
242 void
243 on_font_set(GtkFontButton *button, ChimaraGlk *glk)
244 {
245         const gchar *font_name = gtk_font_button_get_font_name(button);
246         PangoFontDescription *font_description = pango_font_description_from_string(font_name);
247         g_object_set(current_tag, "font-desc", font_description, NULL);
248         chimara_glk_update_style(glk);
249 }
250
251 void
252 on_resource_file_set(GtkFileChooserButton *button, ChimaraGlk *glk)
253 {
254         extern GSettings *prefs_settings;
255         char *filename = gtk_file_chooser_get_filename( GTK_FILE_CHOOSER(button) );
256         g_settings_set(prefs_settings, "resource-path", "ms", filename);
257         g_free(filename);
258 }