Introduce preferences file
[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 *settings;
92         GObject *flep = G_OBJECT( load_object("flep") );
93         g_settings_bind(settings, "flep", flep, "active", G_SETTINGS_BIND_DEFAULT);
94 }
95
96 static void
97 style_tree_select_callback(GtkTreeSelection *selection, ChimaraGlk *glk)
98 {
99         GtkTreeIter child, parent;
100         gchar *child_name, *parent_name;
101         GtkTreeModel *model;
102
103         if( !gtk_tree_selection_get_selected(selection, &model, &child) )
104                 return;
105
106         gtk_tree_model_get(model, &child, 0, &child_name, -1);
107                 
108         if( !gtk_tree_model_iter_parent(model, &parent, &child) )
109                 return;
110
111         gtk_tree_model_get(model, &parent, 0, &parent_name, -1);
112         if( !strcmp(parent_name, "Text buffer") ) 
113                 current_tag = chimara_glk_get_tag(glk, CHIMARA_GLK_TEXT_BUFFER, child_name);
114         else
115                 current_tag = chimara_glk_get_tag(glk, CHIMARA_GLK_TEXT_GRID, child_name);
116 }
117
118 void
119 on_toggle_left(GtkToggleAction *action, ChimaraGlk *glk) {
120         /* No nothing if the button is deactivated */
121         if( !gtk_toggle_action_get_active(action) ) 
122                 return;
123
124         /* Untoggle other alignment options */
125         GtkToggleToolButton *center = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-center"));
126         GtkToggleToolButton *right = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-right"));
127         GtkToggleToolButton *justify = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-justify"));
128         gtk_toggle_tool_button_set_active(center, FALSE);
129         gtk_toggle_tool_button_set_active(right, FALSE);
130         gtk_toggle_tool_button_set_active(justify, FALSE);
131
132         g_object_set(current_tag, "justification", GTK_JUSTIFY_LEFT, "justification-set", TRUE, NULL);
133         chimara_glk_update_style(glk);
134 }
135
136 void
137 on_toggle_center(GtkToggleAction *action, ChimaraGlk *glk) {
138         if( !gtk_toggle_action_get_active(action) )
139                 return;
140
141         /* Untoggle other alignment options */
142         GtkToggleToolButton *left = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-left"));
143         GtkToggleToolButton *right = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-right"));
144         GtkToggleToolButton *justify = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-justify"));
145         gtk_toggle_tool_button_set_active(left, FALSE);
146         gtk_toggle_tool_button_set_active(right, FALSE);
147         gtk_toggle_tool_button_set_active(justify, FALSE);
148
149         g_object_set(current_tag, "justification", GTK_JUSTIFY_CENTER, "justification-set", TRUE, NULL);
150         chimara_glk_update_style(glk);
151 }
152
153 void
154 on_toggle_right(GtkToggleAction *action, ChimaraGlk *glk) {
155         if( !gtk_toggle_action_get_active(action) )
156                 return;
157
158         /* Untoggle other alignment options */
159         GtkToggleToolButton *left = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-left"));
160         GtkToggleToolButton *center = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-center"));
161         GtkToggleToolButton *justify = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-justify"));
162         gtk_toggle_tool_button_set_active(left, FALSE);
163         gtk_toggle_tool_button_set_active(center, FALSE);
164         gtk_toggle_tool_button_set_active(justify, FALSE);
165
166         g_object_set(current_tag, "justification", GTK_JUSTIFY_RIGHT, "justification-set", TRUE, NULL);
167         chimara_glk_update_style(glk);
168 }
169
170 void
171 on_toggle_justify(GtkToggleAction *action, ChimaraGlk *glk) {
172         if( !gtk_toggle_action_get_active(action) )
173                 return;
174
175         /* Untoggle other alignment options */
176         GtkToggleToolButton *left = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-left"));
177         GtkToggleToolButton *center = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-center"));
178         GtkToggleToolButton *right = GTK_TOGGLE_TOOL_BUTTON(load_object("toolbutton-right"));
179         gtk_toggle_tool_button_set_active(left, FALSE);
180         gtk_toggle_tool_button_set_active(center, FALSE);
181         gtk_toggle_tool_button_set_active(right, FALSE);
182
183         g_object_set(current_tag, "justification", GTK_JUSTIFY_FILL, "justification-set", TRUE, NULL);
184         chimara_glk_update_style(glk);
185 }
186
187 void
188 on_toggle_bold(GtkToggleAction *action, ChimaraGlk *glk) {
189         if( gtk_toggle_action_get_active(action) )
190                 g_object_set(current_tag, "weight", PANGO_WEIGHT_BOLD, "weight-set", TRUE, NULL);
191         else
192                 g_object_set(current_tag, "weight", PANGO_WEIGHT_NORMAL, "weight-set", TRUE, NULL);
193
194         chimara_glk_update_style(glk);
195 }
196
197 void
198 on_toggle_italic(GtkToggleAction *action, ChimaraGlk *glk) {
199         if( gtk_toggle_action_get_active(action) )
200                 g_object_set(current_tag, "style", PANGO_STYLE_ITALIC, "style-set", TRUE, NULL);
201         else
202                 g_object_set(current_tag, "style", PANGO_STYLE_NORMAL, "style-set", TRUE, NULL);
203
204         chimara_glk_update_style(glk);
205 }
206
207 void
208 on_toggle_underline(GtkToggleAction *action, ChimaraGlk *glk) {
209         if( gtk_toggle_action_get_active(action) )
210                 g_object_set(current_tag, "underline", PANGO_UNDERLINE_SINGLE, "underline-set", TRUE, NULL);
211         else
212                 g_object_set(current_tag, "underline", PANGO_UNDERLINE_NONE, "underline-set", TRUE, NULL);
213
214         chimara_glk_update_style(glk);
215 }
216
217 void
218 on_foreground_color_set(GtkColorButton *button, ChimaraGlk *glk)
219 {
220         GdkColor color;
221     gtk_color_button_get_color(button, &color);
222         g_object_set(current_tag, "foreground-gdk", &color, "foreground-set", TRUE, NULL);
223         chimara_glk_update_style(glk);
224 }
225
226 void
227 on_background_color_set(GtkColorButton *button, ChimaraGlk *glk)
228 {
229         GdkColor color;
230     gtk_color_button_get_color(button, &color);
231         g_object_set(current_tag, "background-gdk", &color, "background-set", TRUE, NULL);
232         chimara_glk_update_style(glk);
233 }
234
235 void
236 on_font_set(GtkFontButton *button, ChimaraGlk *glk)
237 {
238         const gchar *font_name = gtk_font_button_get_font_name(button);
239         PangoFontDescription *font_description = pango_font_description_from_string(font_name);
240         g_object_set(current_tag, "font-desc", font_description, NULL);
241         chimara_glk_update_style(glk);
242 }