annotate src/preferences.c @ 1039:9c8d7ba674cf

Allow all Preferences pages to scroll vertically. Reduce code redundancy.
author zas_
date Thu, 04 Sep 2008 22:04:32 +0000
parents db720c5a9169
children e59a9c96d290
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1 /*
196
f6e307c7bad6 rename GQview -> Geeqie over the code
nadvornik
parents: 170
diff changeset
2 * Geeqie
67
f63ecca6c087 Fri Oct 13 05:22:43 2006 John Ellis <johne@verizon.net>
gqview
parents: 26
diff changeset
3 * (C) 2006 John Ellis
475
48c8e49b571c updated copyright in source files
nadvornik
parents: 469
diff changeset
4 * Copyright (C) 2008 The Geeqie Team
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
5 *
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
6 * Author: John Ellis
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
7 *
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
8 * This software is released under the GNU General Public License (GNU GPL).
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
9 * Please read the included file COPYING for more information.
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
10 * This software comes with no warranty of any kind, use at your own risk!
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
11 */
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
12
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
13
281
9995c5fb202a gqview.h -> main.h
zas_
parents: 267
diff changeset
14 #include "main.h"
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
15 #include "preferences.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
16
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents: 630
diff changeset
17 #include "bar_exif.h"
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
18 #include "cache_maint.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
19 #include "editors.h"
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents: 630
diff changeset
20 #include "exif.h"
586
905688aa2317 split filelist.c to filefilter.c and filedata.c
nadvornik
parents: 566
diff changeset
21 #include "filedata.h"
905688aa2317 split filelist.c to filefilter.c and filedata.c
nadvornik
parents: 566
diff changeset
22 #include "filefilter.h"
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
23 #include "fullscreen.h"
26
acd9885ebd78 Mon Mar 28 20:23:34 2005 John Ellis <johne@verizon.net>
gqview
parents: 15
diff changeset
24 #include "image.h"
469
a05c72927e23 Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents: 468
diff changeset
25 #include "image-overlay.h"
426
9fe0ca1b5263 show the AdobeRGB profile in the menu, indicate input profile from image
nadvornik
parents: 413
diff changeset
26 #include "color-man.h"
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
27 #include "img-view.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
28 #include "layout_config.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
29 #include "layout_util.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
30 #include "pixbuf_util.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
31 #include "slideshow.h"
597
5da092a6a92a moved safe delete functions to separate file
nadvornik
parents: 594
diff changeset
32 #include "trash.h"
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
33 #include "utilops.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
34 #include "ui_fileops.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
35 #include "ui_misc.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
36 #include "ui_tabcomp.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
37 #include "ui_utildlg.h"
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents: 630
diff changeset
38 #include "window.h"
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
39
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
40 #include <math.h>
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
41
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
42
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
43 #define EDITOR_NAME_MAX_LENGTH 32
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
44 #define EDITOR_COMMAND_MAX_LENGTH 1024
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
45
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
46
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
47 typedef struct _ThumbSize ThumbSize;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
48 struct _ThumbSize
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
49 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
50 gint w;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
51 gint h;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
52 };
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
53
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
54 static ThumbSize thumb_size_list[] =
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
55 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
56 { 24, 24 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
57 { 32, 32 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
58 { 48, 48 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
59 { 64, 64 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
60 { 96, 72 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
61 { 96, 96 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
62 { 128, 96 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
63 { 128, 128 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
64 { 160, 120 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
65 { 160, 160 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
66 { 192, 144 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
67 { 192, 192 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
68 { 256, 192 },
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
69 { 256, 256 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
70 };
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
71
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
72 enum {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
73 FE_ENABLE,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
74 FE_EXTENSION,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
75 FE_DESCRIPTION
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
76 };
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
77
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
78 /* config memory values */
321
20d9b3cd7434 options_c -> c_options
zas_
parents: 320
diff changeset
79 static ConfOptions *c_options = NULL;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
80
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
81
227
41fc4bfc8b25 Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents: 226
diff changeset
82 #ifdef DEBUG
41fc4bfc8b25 Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents: 226
diff changeset
83 static gint debug_c;
41fc4bfc8b25 Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents: 226
diff changeset
84 #endif
41fc4bfc8b25 Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents: 226
diff changeset
85
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
86 static GtkWidget *configwindow = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
87 static GtkWidget *startup_path_entry;
980
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
88 static GtkWidget *home_path_entry;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
89 static GtkListStore *filter_store = NULL;
283
e213fb025621 GQVIEW_* -> GQ_*
zas_
parents: 281
diff changeset
90 static GtkWidget *editor_name_entry[GQ_EDITOR_SLOTS];
e213fb025621 GQVIEW_* -> GQ_*
zas_
parents: 281
diff changeset
91 static GtkWidget *editor_command_entry[GQ_EDITOR_SLOTS];
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
92
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
93 static GtkWidget *layout_widget;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
94
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
95 static GtkWidget *safe_delete_path_entry;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
96
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
97 static GtkWidget *color_profile_input_file_entry[COLOR_PROFILE_INPUTS];
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
98 static GtkWidget *color_profile_input_name_entry[COLOR_PROFILE_INPUTS];
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
99 static GtkWidget *color_profile_screen_file_entry;
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
100
170
9a56e3d13e67 basic sidecar files configuration via preferences dialog
nadvornik
parents: 134
diff changeset
101 static GtkWidget *sidecar_ext_entry;
225
649f7cb544e0 Make the preferences window resizeable, and try to improve
zas_
parents: 224
diff changeset
102
649f7cb544e0 Make the preferences window resizeable, and try to improve
zas_
parents: 224
diff changeset
103
649f7cb544e0 Make the preferences window resizeable, and try to improve
zas_
parents: 224
diff changeset
104 #define CONFIG_WINDOW_DEF_WIDTH 700
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
105 #define CONFIG_WINDOW_DEF_HEIGHT 600
225
649f7cb544e0 Make the preferences window resizeable, and try to improve
zas_
parents: 224
diff changeset
106
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
107 /*
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
108 *-----------------------------------------------------------------------------
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
109 * option widget callbacks (private)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
110 *-----------------------------------------------------------------------------
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
111 */
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
112
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
113 static void startup_path_set_current(GtkWidget *widget, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
114 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
115 gtk_entry_set_text(GTK_ENTRY(startup_path_entry), layout_get_path(NULL));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
116 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
117
980
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
118 static void home_path_set_current(GtkWidget *widget, gpointer data)
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
119 {
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
120 gtk_entry_set_text(GTK_ENTRY(home_path_entry), layout_get_path(NULL));
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
121 }
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
122
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
123 static void zoom_mode_cb(GtkWidget *widget, gpointer data)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
124 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
125 if (GTK_TOGGLE_BUTTON (widget)->active)
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
126 c_options->image.zoom_mode = GPOINTER_TO_INT(data);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
127 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
128
1038
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
129 static void scroll_reset_cb(GtkWidget *widget, gpointer data)
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
130 {
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
131 if (GTK_TOGGLE_BUTTON (widget)->active)
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
132 c_options->image.scroll_reset_method = GPOINTER_TO_INT(data);
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
133 }
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
134
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
135 static void zoom_increment_cb(GtkWidget *spin, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
136 {
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
137 c_options->image.zoom_increment = (gint)(gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin)) * 10.0 + 0.01);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
138 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
139
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
140 static void slideshow_delay_cb(GtkWidget *spin, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
141 {
326
509b84801d66 Rename slideshow options.
zas_
parents: 322
diff changeset
142 c_options->slideshow.delay = (gint)(gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin)) *
1000
4fe8f9656107 For the sake of consistency, use glib basic types everywhere.
zas_
parents: 995
diff changeset
143 (gdouble)SLIDESHOW_SUBSECOND_PRECISION + 0.01);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
144 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
145
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
146 /*
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
147 *-----------------------------------------------------------------------------
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
148 * sync progam to config window routine (private)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
149 *-----------------------------------------------------------------------------
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
150 */
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
151
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
152 static void config_window_apply(void)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
153 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
154 const gchar *buf;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
155 gint new_style;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
156 gint i;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
157 gint refresh = FALSE;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
158
670
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
159 {
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
160 GString *errmsg = g_string_new("");
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
161
517
d84f2210a73c 6 for() vs 201 for (): winner is for ().
zas_
parents: 513
diff changeset
162 for (i = 0; i < GQ_EDITOR_SLOTS; i++)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
163 {
768
ff51413f098d Use functions to set editors name and command and ensure they are
zas_
parents: 736
diff changeset
164 gchar *command = NULL;
ff51413f098d Use functions to set editors name and command and ensure they are
zas_
parents: 736
diff changeset
165
283
e213fb025621 GQVIEW_* -> GQ_*
zas_
parents: 281
diff changeset
166 if (i < GQ_EDITOR_GENERIC_SLOTS)
134
9009856628f7 started implementation of external commands; external Delete should work
nadvornik
parents: 113
diff changeset
167 {
768
ff51413f098d Use functions to set editors name and command and ensure they are
zas_
parents: 736
diff changeset
168 gchar *name = NULL;
ff51413f098d Use functions to set editors name and command and ensure they are
zas_
parents: 736
diff changeset
169
134
9009856628f7 started implementation of external commands; external Delete should work
nadvornik
parents: 113
diff changeset
170 buf = gtk_entry_get_text(GTK_ENTRY(editor_name_entry[i]));
768
ff51413f098d Use functions to set editors name and command and ensure they are
zas_
parents: 736
diff changeset
171 if (buf && strlen(buf) > 0) name = g_strdup(buf);
ff51413f098d Use functions to set editors name and command and ensure they are
zas_
parents: 736
diff changeset
172 editor_set_name(i, name);
ff51413f098d Use functions to set editors name and command and ensure they are
zas_
parents: 736
diff changeset
173 g_free(name);
134
9009856628f7 started implementation of external commands; external Delete should work
nadvornik
parents: 113
diff changeset
174 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
175
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
176 buf = gtk_entry_get_text(GTK_ENTRY(editor_command_entry[i]));
670
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
177 if (buf && strlen(buf) > 0)
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
178 {
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
179 gint flags = editor_command_parse(buf, NULL, NULL);
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
180
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
181 if (flags & EDITOR_ERROR_MASK)
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
182 {
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
183 if (errmsg->str[0]) g_string_append(errmsg, "\n\n");
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
184 g_string_append_printf(errmsg, _("%s\n#%d \"%s\":\n%s"), editor_get_error_str(flags),
730
2d8a8e892b5e Use a struct to handle editor's properties.
zas_
parents: 671
diff changeset
185 i+1, options->editor[i].name, buf);
670
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
186
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
187 }
768
ff51413f098d Use functions to set editors name and command and ensure they are
zas_
parents: 736
diff changeset
188 command = g_strdup(buf);
670
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
189 }
768
ff51413f098d Use functions to set editors name and command and ensure they are
zas_
parents: 736
diff changeset
190
ff51413f098d Use functions to set editors name and command and ensure they are
zas_
parents: 736
diff changeset
191 editor_set_command(i, command);
ff51413f098d Use functions to set editors name and command and ensure they are
zas_
parents: 736
diff changeset
192 g_free(command);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
193 }
670
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
194
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
195 if (errmsg->str[0])
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
196 {
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
197 file_util_warning_dialog(_("Invalid editor command"), errmsg->str, GTK_STOCK_DIALOG_ERROR, NULL);
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
198 }
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
199
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
200 g_string_free(errmsg, TRUE);
a484500de88d Improve editor commands error display:
zas_
parents: 648
diff changeset
201 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
202 layout_edit_update_all();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
203
341
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
204 g_free(options->file_ops.safe_delete_path);
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
205 options->file_ops.safe_delete_path = NULL;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
206 buf = gtk_entry_get_text(GTK_ENTRY(safe_delete_path_entry));
341
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
207 if (buf && strlen(buf) > 0) options->file_ops.safe_delete_path = remove_trailing_slash(buf);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
208
356
673d1eb5af73 Rename show_dot_files to show_hidden_files.
zas_
parents: 354
diff changeset
209 if (options->file_filter.show_hidden_files != c_options->file_filter.show_hidden_files) refresh = TRUE;
373
61a3c8b05b24 Add a new option in Preferences > Filtering to allow the
zas_
parents: 356
diff changeset
210 if (options->file_filter.show_dot_directory != c_options->file_filter.show_dot_directory) refresh = TRUE;
329
a51242c032ea Rename file sorting options.
zas_
parents: 327
diff changeset
211 if (options->file_sort.case_sensitive != c_options->file_sort.case_sensitive) refresh = TRUE;
332
3c4bad726e98 Rename file filtering options.
zas_
parents: 330
diff changeset
212 if (options->file_filter.disable != c_options->file_filter.disable) refresh = TRUE;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
213
629
1fa2cb6d9d65 Rename options:
zas_
parents: 625
diff changeset
214 options->startup.restore_path = c_options->startup.restore_path;
630
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
215 options->startup.use_last_path = c_options->startup.use_last_path;
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
216 g_free(options->startup.path);
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
217 options->startup.path = NULL;
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
218 buf = gtk_entry_get_text(GTK_ENTRY(startup_path_entry));
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
219 if (buf && strlen(buf) > 0) options->startup.path = remove_trailing_slash(buf);
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
220
980
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
221 g_free(options->layout.home_path);
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
222 options->layout.home_path = NULL;
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
223 buf = gtk_entry_get_text(GTK_ENTRY(home_path_entry));
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
224 if (buf && strlen(buf) > 0) options->layout.home_path = remove_trailing_slash(buf);
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
225
341
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
226 options->file_ops.confirm_delete = c_options->file_ops.confirm_delete;
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
227 options->file_ops.enable_delete_key = c_options->file_ops.enable_delete_key;
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
228 options->file_ops.safe_delete_enable = c_options->file_ops.safe_delete_enable;
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
229 options->file_ops.safe_delete_folder_maxsize = c_options->file_ops.safe_delete_folder_maxsize;
338
41c3cb73120f Rename window options (moved to layout) and re-order rc file.
zas_
parents: 334
diff changeset
230 options->layout.tools_restore_state = c_options->layout.tools_restore_state;
41c3cb73120f Rename window options (moved to layout) and re-order rc file.
zas_
parents: 334
diff changeset
231 options->layout.save_window_positions = c_options->layout.save_window_positions;
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
232 options->image.zoom_mode = c_options->image.zoom_mode;
1038
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
233 options->image.scroll_reset_method = c_options->image.scroll_reset_method;
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
234 options->image.zoom_2pass = c_options->image.zoom_2pass;
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
235 options->image.fit_window_to_image = c_options->image.fit_window_to_image;
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
236 options->image.limit_window_size = c_options->image.limit_window_size;
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
237 options->image.zoom_to_fit_allow_expand = c_options->image.zoom_to_fit_allow_expand;
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
238 options->image.max_window_size = c_options->image.max_window_size;
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
239 options->image.limit_autofit_size = c_options->image.limit_autofit_size;
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
240 options->image.max_autofit_size = c_options->image.max_autofit_size;
321
20d9b3cd7434 options_c -> c_options
zas_
parents: 320
diff changeset
241 options->progressive_key_scrolling = c_options->progressive_key_scrolling;
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
242 options->thumbnails.max_width = c_options->thumbnails.max_width;
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
243 options->thumbnails.max_height = c_options->thumbnails.max_height;
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
244 options->thumbnails.enable_caching = c_options->thumbnails.enable_caching;
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
245 options->thumbnails.cache_into_dirs = c_options->thumbnails.cache_into_dirs;
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
246 options->thumbnails.fast = c_options->thumbnails.fast;
14
25335c62cd9b ##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents: 9
diff changeset
247 #if 0
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
248 options->thumbnails.use_xvpics = c_options->thumbnails.use_xvpics;
14
25335c62cd9b ##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents: 9
diff changeset
249 #endif
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
250 options->thumbnails.spec_standard = c_options->thumbnails.spec_standard;
321
20d9b3cd7434 options_c -> c_options
zas_
parents: 320
diff changeset
251 options->enable_metadata_dirs = c_options->enable_metadata_dirs;
356
673d1eb5af73 Rename show_dot_files to show_hidden_files.
zas_
parents: 354
diff changeset
252 options->file_filter.show_hidden_files = c_options->file_filter.show_hidden_files;
373
61a3c8b05b24 Add a new option in Preferences > Filtering to allow the
zas_
parents: 356
diff changeset
253 options->file_filter.show_dot_directory = c_options->file_filter.show_dot_directory;
61a3c8b05b24 Add a new option in Preferences > Filtering to allow the
zas_
parents: 356
diff changeset
254
329
a51242c032ea Rename file sorting options.
zas_
parents: 327
diff changeset
255 options->file_sort.case_sensitive = c_options->file_sort.case_sensitive;
332
3c4bad726e98 Rename file filtering options.
zas_
parents: 330
diff changeset
256 options->file_filter.disable = c_options->file_filter.disable;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
257
170
9a56e3d13e67 basic sidecar files configuration via preferences dialog
nadvornik
parents: 134
diff changeset
258 sidecar_ext_parse(gtk_entry_get_text(GTK_ENTRY(sidecar_ext_entry)), FALSE);
9a56e3d13e67 basic sidecar files configuration via preferences dialog
nadvornik
parents: 134
diff changeset
259
326
509b84801d66 Rename slideshow options.
zas_
parents: 322
diff changeset
260 options->slideshow.random = c_options->slideshow.random;
509b84801d66 Rename slideshow options.
zas_
parents: 322
diff changeset
261 options->slideshow.repeat = c_options->slideshow.repeat;
509b84801d66 Rename slideshow options.
zas_
parents: 322
diff changeset
262 options->slideshow.delay = c_options->slideshow.delay;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
263
321
20d9b3cd7434 options_c -> c_options
zas_
parents: 320
diff changeset
264 options->mousewheel_scrolls = c_options->mousewheel_scrolls;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
265
341
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
266 options->file_ops.enable_in_place_rename = c_options->file_ops.enable_in_place_rename;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
267
330
57a4ced53618 Rename collection options.
zas_
parents: 329
diff changeset
268 options->collections.rectangular_selection = c_options->collections.rectangular_selection;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
269
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
270 options->image.tile_cache_max = c_options->image.tile_cache_max;
848
e1d158ac6d36 cache size made configurable
nadvornik
parents: 825
diff changeset
271 options->image.image_cache_max = c_options->image.image_cache_max;
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
272
413
9e521adbf312 Add two new options to control image read buffer at runtime.
zas_
parents: 410
diff changeset
273 options->image.read_buffer_size = c_options->image.read_buffer_size;
9e521adbf312 Add two new options to control image read buffer at runtime.
zas_
parents: 410
diff changeset
274 options->image.idle_read_loop_count = c_options->image.idle_read_loop_count;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
275
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
276 options->thumbnails.quality = c_options->thumbnails.quality;
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
277 options->image.zoom_quality = c_options->image.zoom_quality;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
278
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
279 options->image.zoom_increment = c_options->image.zoom_increment;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
280
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
281 options->image.enable_read_ahead = c_options->image.enable_read_ahead;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
282
339
de1c2cd06fce Rename user_specified_window_background and window_background_color
zas_
parents: 338
diff changeset
283 if (options->image.use_custom_border_color != c_options->image.use_custom_border_color
de1c2cd06fce Rename user_specified_window_background and window_background_color
zas_
parents: 338
diff changeset
284 || !gdk_color_equal(&options->image.border_color, &c_options->image.border_color))
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
285 {
339
de1c2cd06fce Rename user_specified_window_background and window_background_color
zas_
parents: 338
diff changeset
286 options->image.use_custom_border_color = c_options->image.use_custom_border_color;
de1c2cd06fce Rename user_specified_window_background and window_background_color
zas_
parents: 338
diff changeset
287 options->image.border_color = c_options->image.border_color;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
288 layout_colors_update();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
289 view_window_colors_update();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
290 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
291
322
d344bcf37618 Rationalize fullscreen options naming.
zas_
parents: 321
diff changeset
292 options->fullscreen.screen = c_options->fullscreen.screen;
d344bcf37618 Rationalize fullscreen options naming.
zas_
parents: 321
diff changeset
293 options->fullscreen.clean_flip = c_options->fullscreen.clean_flip;
d344bcf37618 Rationalize fullscreen options naming.
zas_
parents: 321
diff changeset
294 options->fullscreen.disable_saver = c_options->fullscreen.disable_saver;
d344bcf37618 Rationalize fullscreen options naming.
zas_
parents: 321
diff changeset
295 options->fullscreen.above = c_options->fullscreen.above;
468
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
296 options->image_overlay.common.show_at_startup = c_options->image_overlay.common.show_at_startup;
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
297 if (c_options->image_overlay.common.template_string)
733
57f759d012c7 Modify set_default_image_overlay_template_string() to accept the pointer to
zas_
parents: 730
diff changeset
298 set_image_overlay_template_string(&options->image_overlay.common.template_string,
57f759d012c7 Modify set_default_image_overlay_template_string() to accept the pointer to
zas_
parents: 730
diff changeset
299 c_options->image_overlay.common.template_string);
57f759d012c7 Modify set_default_image_overlay_template_string() to accept the pointer to
zas_
parents: 730
diff changeset
300
321
20d9b3cd7434 options_c -> c_options
zas_
parents: 320
diff changeset
301 options->update_on_time_change = c_options->update_on_time_change;
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
302 options->image.exif_rotate_enable = c_options->image.exif_rotate_enable;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
303
342
07490120df2d Rename dupe_custom_threshold option to duplicates_similarity_threshold.
zas_
parents: 341
diff changeset
304 options->duplicates_similarity_threshold = c_options->duplicates_similarity_threshold;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
305
321
20d9b3cd7434 options_c -> c_options
zas_
parents: 320
diff changeset
306 options->tree_descend_subdirs = c_options->tree_descend_subdirs;
441
08eb7137cd94 Allow the user to change open_recent_list_maxsize option through
zas_
parents: 426
diff changeset
307
08eb7137cd94 Allow the user to change open_recent_list_maxsize option through
zas_
parents: 426
diff changeset
308 options->open_recent_list_maxsize = c_options->open_recent_list_maxsize;
458
7a69309b91c8 Allow the user to set the drag'n drop icon size through
zas_
parents: 446
diff changeset
309 options->dnd_icon_size = c_options->dnd_icon_size;
497
a33badd85f16 Allow the copy of file paths to clipboard.
zas_
parents: 475
diff changeset
310
a33badd85f16 Allow the copy of file paths to clipboard.
zas_
parents: 475
diff changeset
311 if (options->show_copy_path != c_options->show_copy_path)
a33badd85f16 Allow the copy of file paths to clipboard.
zas_
parents: 475
diff changeset
312 {
a33badd85f16 Allow the copy of file paths to clipboard.
zas_
parents: 475
diff changeset
313 options->show_copy_path = c_options->show_copy_path;
a33badd85f16 Allow the copy of file paths to clipboard.
zas_
parents: 475
diff changeset
314 layout_copy_path_update_all();
a33badd85f16 Allow the copy of file paths to clipboard.
zas_
parents: 475
diff changeset
315 }
441
08eb7137cd94 Allow the user to change open_recent_list_maxsize option through
zas_
parents: 426
diff changeset
316
594
4cfce4ed35e0 Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents: 586
diff changeset
317 options->save_metadata_in_image_file = c_options->save_metadata_in_image_file;
4cfce4ed35e0 Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents: 586
diff changeset
318
227
41fc4bfc8b25 Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents: 226
diff changeset
319 #ifdef DEBUG
507
135570a8bd96 Move debug macros from main.h to new debug.h.
zas_
parents: 497
diff changeset
320 set_debug_level(debug_c);
227
41fc4bfc8b25 Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents: 226
diff changeset
321 #endif
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
322
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
323 #ifdef HAVE_LCMS
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
324 for (i = 0; i < COLOR_PROFILE_INPUTS; i++)
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
325 {
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
326 g_free(options->color_profile.input_name[i]);
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
327 options->color_profile.input_name[i] = NULL;
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
328 buf = gtk_entry_get_text(GTK_ENTRY(color_profile_input_name_entry[i]));
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
329 if (buf && strlen(buf) > 0) options->color_profile.input_name[i] = g_strdup(buf);
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
330
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
331 g_free(options->color_profile.input_file[i]);
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
332 options->color_profile.input_file[i] = NULL;
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
333 buf = gtk_entry_get_text(GTK_ENTRY(color_profile_input_file_entry[i]));
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
334 if (buf && strlen(buf) > 0) options->color_profile.input_file[i] = g_strdup(buf);
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
335 }
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
336 g_free(options->color_profile.screen_file);
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
337 options->color_profile.screen_file = NULL;
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
338 buf = gtk_entry_get_text(GTK_ENTRY(color_profile_screen_file_entry));
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
339 if (buf && strlen(buf) > 0) options->color_profile.screen_file = g_strdup(buf);
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
340 #endif
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
341
520
b5e79bcb46df Add missing spaces around equal sign.
zas_
parents: 517
diff changeset
342 for (i = 0; ExifUIList[i].key; i++)
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
343 {
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
344 ExifUIList[i].current = ExifUIList[i].temp;
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
345 }
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
346
375
612b39ee9a7e Rename l_conf to layout_order and make it more local.
zas_
parents: 374
diff changeset
347 {
612b39ee9a7e Rename l_conf to layout_order and make it more local.
zas_
parents: 374
diff changeset
348 gchar *layout_order = layout_config_get(layout_widget, &new_style);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
349
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
350 if (new_style != options->layout.style ||
375
612b39ee9a7e Rename l_conf to layout_order and make it more local.
zas_
parents: 374
diff changeset
351 (layout_order == NULL) != (options->layout.order == NULL) ||
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
352 !options->layout.order ||
375
612b39ee9a7e Rename l_conf to layout_order and make it more local.
zas_
parents: 374
diff changeset
353 strcmp(layout_order, options->layout.order) != 0)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
354 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
355 if (refresh) filter_rebuild();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
356 refresh = FALSE;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
357
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
358 g_free(options->layout.order);
375
612b39ee9a7e Rename l_conf to layout_order and make it more local.
zas_
parents: 374
diff changeset
359 options->layout.order = layout_order;
612b39ee9a7e Rename l_conf to layout_order and make it more local.
zas_
parents: 374
diff changeset
360 layout_order = NULL; /* g_free() later */
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
361
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
362 options->layout.style = new_style;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
363
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
364 layout_styles_update();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
365 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
366
375
612b39ee9a7e Rename l_conf to layout_order and make it more local.
zas_
parents: 374
diff changeset
367 g_free(layout_order);
612b39ee9a7e Rename l_conf to layout_order and make it more local.
zas_
parents: 374
diff changeset
368 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
369
825
ee33d2ddb661 Optionnally display directory's date in list view.
zas_
parents: 768
diff changeset
370 if (options->layout.show_directory_date != c_options->layout.show_directory_date)
ee33d2ddb661 Optionnally display directory's date in list view.
zas_
parents: 768
diff changeset
371 {
ee33d2ddb661 Optionnally display directory's date in list view.
zas_
parents: 768
diff changeset
372 options->layout.show_directory_date = c_options->layout.show_directory_date;
ee33d2ddb661 Optionnally display directory's date in list view.
zas_
parents: 768
diff changeset
373 refresh = TRUE;
ee33d2ddb661 Optionnally display directory's date in list view.
zas_
parents: 768
diff changeset
374 }
ee33d2ddb661 Optionnally display directory's date in list view.
zas_
parents: 768
diff changeset
375
26
acd9885ebd78 Mon Mar 28 20:23:34 2005 John Ellis <johne@verizon.net>
gqview
parents: 15
diff changeset
376 image_options_sync();
acd9885ebd78 Mon Mar 28 20:23:34 2005 John Ellis <johne@verizon.net>
gqview
parents: 15
diff changeset
377
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
378 if (refresh)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
379 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
380 filter_rebuild();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
381 layout_refresh(NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
382 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
383 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
384
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
385 /*
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
386 *-----------------------------------------------------------------------------
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
387 * config window main button callbacks (private)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
388 *-----------------------------------------------------------------------------
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
389 */
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
390
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
391 static void config_window_close_cb(GtkWidget *widget, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
392 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
393 gtk_widget_destroy(configwindow);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
394 configwindow = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
395 filter_store = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
396 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
397
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
398 static gint config_window_delete(GtkWidget *w, GdkEventAny *event, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
399 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
400 config_window_close_cb(NULL, NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
401 return TRUE;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
402 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
403
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
404 static void config_window_ok_cb(GtkWidget *widget, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
405 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
406 config_window_apply();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
407 config_window_close_cb(NULL, NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
408 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
409
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
410 static void config_window_apply_cb(GtkWidget *widget, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
411 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
412 config_window_apply();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
413 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
414
1024
c92e5a5c3bfa Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents: 1001
diff changeset
415 static void config_window_save_cb(GtkWidget *widget, gpointer data)
c92e5a5c3bfa Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents: 1001
diff changeset
416 {
c92e5a5c3bfa Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents: 1001
diff changeset
417 config_window_apply();
c92e5a5c3bfa Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents: 1001
diff changeset
418 save_options(options);
c92e5a5c3bfa Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents: 1001
diff changeset
419 }
c92e5a5c3bfa Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents: 1001
diff changeset
420
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
421 /*
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
422 *-----------------------------------------------------------------------------
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
423 * config window setup (private)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
424 *-----------------------------------------------------------------------------
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
425 */
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
426
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
427 static void exif_item_cb(GtkWidget *combo, gpointer data)
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
428 {
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
429 gint *option = data;
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
430 *option = gtk_combo_box_get_active(GTK_COMBO_BOX(combo));
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
431 }
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
432
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
433 static void exif_item(GtkWidget *table, gint column, gint row,
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
434 const gchar *text, gint option, gint *option_c)
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
435 {
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
436 GtkWidget *combo;
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
437
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
438 *option_c = option;
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
439
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
440 pref_table_label(table, column, row, text, 0.0);
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
441
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
442 combo = gtk_combo_box_new_text();
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
443
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
444 /* note: the order is important, it must match the values of
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
445 * EXIF_UI_OFF, _IFSET, _ON */
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
446 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Never"));
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
447 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("If set"));
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
448 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Always"));
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
449
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
450 gtk_combo_box_set_active(GTK_COMBO_BOX(combo), option);
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
451
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
452 g_signal_connect(G_OBJECT(combo), "changed",
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
453 G_CALLBACK(exif_item_cb), option_c);
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
454
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
455 gtk_table_attach(GTK_TABLE(table), combo,
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
456 column + 1, column + 2, row, row + 1,
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
457 GTK_EXPAND | GTK_FILL, 0, 0, 0);
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
458 gtk_widget_show(combo);
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
459 }
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
460
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
461 static void quality_menu_cb(GtkWidget *combo, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
462 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
463 gint *option = data;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
464
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
465 switch (gtk_combo_box_get_active(GTK_COMBO_BOX(combo)))
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
466 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
467 case 0:
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
468 default:
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
469 *option = GDK_INTERP_NEAREST;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
470 break;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
471 case 1:
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
472 *option = GDK_INTERP_TILES;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
473 break;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
474 case 2:
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
475 *option = GDK_INTERP_BILINEAR;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
476 break;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
477 case 3:
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
478 *option = GDK_INTERP_HYPER;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
479 break;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
480 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
481 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
482
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
483 static void add_quality_menu(GtkWidget *table, gint column, gint row, const gchar *text,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
484 gint option, gint *option_c)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
485 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
486 GtkWidget *combo;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
487 gint current = 0;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
488
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
489 *option_c = option;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
490
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
491 pref_table_label(table, column, row, text, 0.0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
492
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
493 combo = gtk_combo_box_new_text();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
494
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
495 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Nearest (worst, but fastest)"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
496 if (option == GDK_INTERP_NEAREST) current = 0;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
497 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Tiles"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
498 if (option == GDK_INTERP_TILES) current = 1;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
499 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Bilinear"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
500 if (option == GDK_INTERP_BILINEAR) current = 2;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
501 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Hyper (best, but slowest)"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
502 if (option == GDK_INTERP_HYPER) current = 3;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
503
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
504 gtk_combo_box_set_active(GTK_COMBO_BOX(combo), current);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
505
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
506 g_signal_connect(G_OBJECT(combo), "changed",
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
507 G_CALLBACK(quality_menu_cb), option_c);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
508
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
509 gtk_table_attach(GTK_TABLE(table), combo, column + 1, column + 2, row, row + 1,
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
510 GTK_EXPAND | GTK_FILL, 0, 0, 0);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
511 gtk_widget_show(combo);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
512 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
513
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
514 #if 0
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
515 static void add_dither_menu(gint option, gint *option_c, gchar *text, GtkWidget *box)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
516 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
517 GtkWidget *hbox;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
518 GtkWidget *omenu;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
519 GtkWidget *menu;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
520
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
521 *option_c = option;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
522
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
523 hbox = pref_box_new(box, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
524 pref_label_new(hbox, text);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
525
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
526 omenu = gtk_option_menu_new();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
527 menu = gtk_menu_new();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
528
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
529 add_menu_item(menu, _("None"), option_c, (gint)GDK_RGB_DITHER_NONE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
530 add_menu_item(menu, _("Normal"), option_c, (gint)GDK_RGB_DITHER_NORMAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
531 add_menu_item(menu, _("Best"), option_c, (gint)GDK_RGB_DITHER_MAX);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
532
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
533 gtk_option_menu_set_menu(GTK_OPTION_MENU(omenu), menu);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
534 gtk_option_menu_set_history(GTK_OPTION_MENU(omenu), *option_c);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
535
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
536 gtk_box_pack_start(GTK_BOX(hbox), omenu, FALSE, FALSE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
537 gtk_widget_show(omenu);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
538 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
539 #endif
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
540
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
541 static void thumb_size_menu_cb(GtkWidget *combo, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
542 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
543 gint n;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
544
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
545 n = gtk_combo_box_get_active(GTK_COMBO_BOX(combo));
736
a7289f9e8d29 Fix signed vs unsigned warnings.
zas_
parents: 733
diff changeset
546 if (n < 0) return;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
547
736
a7289f9e8d29 Fix signed vs unsigned warnings.
zas_
parents: 733
diff changeset
548 if ((guint) n < sizeof(thumb_size_list) / sizeof(ThumbSize))
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
549 {
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
550 c_options->thumbnails.max_width = thumb_size_list[n].w;
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
551 c_options->thumbnails.max_height = thumb_size_list[n].h;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
552 }
736
a7289f9e8d29 Fix signed vs unsigned warnings.
zas_
parents: 733
diff changeset
553 else
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
554 {
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
555 c_options->thumbnails.max_width = options->thumbnails.max_width;
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
556 c_options->thumbnails.max_height = options->thumbnails.max_height;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
557 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
558 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
559
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
560 static void add_thumb_size_menu(GtkWidget *table, gint column, gint row, gchar *text)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
561 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
562 GtkWidget *combo;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
563 gint current;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
564 gint i;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
565
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
566 c_options->thumbnails.max_width = options->thumbnails.max_width;
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
567 c_options->thumbnails.max_height = options->thumbnails.max_height;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
568
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
569 pref_table_label(table, column, row, text, 0.0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
570
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
571 combo = gtk_combo_box_new_text();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
572
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
573 current = -1;
736
a7289f9e8d29 Fix signed vs unsigned warnings.
zas_
parents: 733
diff changeset
574 for (i = 0; (guint) i < sizeof(thumb_size_list) / sizeof(ThumbSize); i++)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
575 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
576 gint w, h;
226
3c89da4aef95 Fix and simplify thumbnails size combo box related code.
zas_
parents: 225
diff changeset
577 gchar *buf;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
578
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
579 w = thumb_size_list[i].w;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
580 h = thumb_size_list[i].h;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
581
226
3c89da4aef95 Fix and simplify thumbnails size combo box related code.
zas_
parents: 225
diff changeset
582 buf = g_strdup_printf("%d x %d", w, h);
3c89da4aef95 Fix and simplify thumbnails size combo box related code.
zas_
parents: 225
diff changeset
583 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), buf);
3c89da4aef95 Fix and simplify thumbnails size combo box related code.
zas_
parents: 225
diff changeset
584 g_free(buf);
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
585
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
586 if (w == options->thumbnails.max_width && h == options->thumbnails.max_height) current = i;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
587 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
588
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
589 if (current == -1)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
590 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
591 gchar *buf;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
592
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
593 buf = g_strdup_printf("%s %d x %d", _("Custom"), options->thumbnails.max_width, options->thumbnails.max_height);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
594 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), buf);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
595 g_free(buf);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
596
226
3c89da4aef95 Fix and simplify thumbnails size combo box related code.
zas_
parents: 225
diff changeset
597 current = i;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
598 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
599
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
600 gtk_combo_box_set_active(GTK_COMBO_BOX(combo), current);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
601 g_signal_connect(G_OBJECT(combo), "changed",
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
602 G_CALLBACK(thumb_size_menu_cb), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
603
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
604 gtk_table_attach(GTK_TABLE(table), combo, column + 1, column + 2, row, row + 1,
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
605 GTK_EXPAND | GTK_FILL, 0, 0, 0);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
606 gtk_widget_show(combo);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
607 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
608
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
609 static void filter_store_populate(void)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
610 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
611 GList *work;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
612
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
613 if (!filter_store) return;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
614
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
615 gtk_list_store_clear(filter_store);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
616
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
617 work = filter_get_list();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
618 while (work)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
619 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
620 FilterEntry *fe;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
621 GtkTreeIter iter;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
622
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
623 fe = work->data;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
624 work = work->next;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
625
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
626 gtk_list_store_append(filter_store, &iter);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
627 gtk_list_store_set(filter_store, &iter, 0, fe, -1);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
628 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
629 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
630
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
631 static void filter_store_ext_edit_cb(GtkCellRendererText *cell, gchar *path_str,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
632 gchar *new_text, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
633 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
634 GtkWidget *model = data;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
635 FilterEntry *fe = data;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
636 GtkTreePath *tpath;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
637 GtkTreeIter iter;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
638
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
639 if (!new_text || strlen(new_text) < 1) return;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
640
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
641 tpath = gtk_tree_path_new_from_string(path_str);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
642 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
643 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
644
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
645 g_free(fe->extensions);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
646 fe->extensions = g_strdup(new_text);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
647
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
648 gtk_tree_path_free(tpath);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
649 filter_rebuild();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
650 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
651
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
652 static void filter_store_desc_edit_cb(GtkCellRendererText *cell, gchar *path_str,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
653 gchar *new_text, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
654 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
655 GtkWidget *model = data;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
656 FilterEntry *fe;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
657 GtkTreePath *tpath;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
658 GtkTreeIter iter;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
659
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
660 if (!new_text || strlen(new_text) < 1) return;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
661
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
662 tpath = gtk_tree_path_new_from_string(path_str);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
663 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
664 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
665
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
666 g_free(fe->description);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
667 fe->description = g_strdup(new_text);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
668
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
669 gtk_tree_path_free(tpath);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
670 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
671
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
672 static void filter_store_enable_cb(GtkCellRendererToggle *renderer,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
673 gchar *path_str, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
674 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
675 GtkWidget *model = data;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
676 FilterEntry *fe;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
677 GtkTreePath *tpath;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
678 GtkTreeIter iter;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
679
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
680 tpath = gtk_tree_path_new_from_string(path_str);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
681 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
682 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
683
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
684 fe->enabled = !fe->enabled;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
685
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
686 gtk_tree_path_free(tpath);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
687 filter_rebuild();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
688 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
689
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
690 static void filter_set_func(GtkTreeViewColumn *tree_column, GtkCellRenderer *cell,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
691 GtkTreeModel *tree_model, GtkTreeIter *iter, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
692 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
693 FilterEntry *fe;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
694
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
695 gtk_tree_model_get(tree_model, iter, 0, &fe, -1);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
696
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
697 switch(GPOINTER_TO_INT(data))
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
698 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
699 case FE_ENABLE:
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
700 g_object_set(GTK_CELL_RENDERER(cell),
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
701 "active", fe->enabled, NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
702 break;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
703 case FE_EXTENSION:
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
704 g_object_set(GTK_CELL_RENDERER(cell),
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
705 "text", fe->extensions, NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
706 break;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
707 case FE_DESCRIPTION:
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
708 g_object_set(GTK_CELL_RENDERER(cell),
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
709 "text", fe->description, NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
710 break;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
711 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
712 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
713
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
714 static void filter_add_cb(GtkWidget *widget, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
715 {
212
c7021159079d differentiate among normal image, raw image and metadata
nadvornik
parents: 211
diff changeset
716 filter_add_unique("description", ".new", FORMAT_CLASS_IMAGE, TRUE);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
717 filter_store_populate();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
718
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
719 /* FIXME: implement the scroll to/select row stuff for tree view */
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
720 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
721
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
722 static void filter_remove_cb(GtkWidget *widget, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
723 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
724 GtkWidget *filter_view = data;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
725 GtkTreeSelection *selection;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
726 GtkTreeIter iter;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
727 FilterEntry *fe;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
728
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
729 if (!filter_store) return;
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 980
diff changeset
730 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(filter_view));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
731 if (!gtk_tree_selection_get_selected(selection, NULL, &iter)) return;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
732 gtk_tree_model_get(GTK_TREE_MODEL(filter_store), &iter, 0, &fe, -1);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
733 if (!fe) return;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
734
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
735 filter_remove_entry(fe);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
736 filter_rebuild();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
737 filter_store_populate();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
738 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
739
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
740 static void filter_default_ok_cb(GenericDialog *gd, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
741 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
742 filter_reset();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
743 filter_add_defaults();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
744 filter_rebuild();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
745 filter_store_populate();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
746 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
747
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
748 static void dummy_cancel_cb(GenericDialog *gd, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
749 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
750 /* no op, only so cancel button appears */
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
751 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
752
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
753 static void filter_default_cb(GtkWidget *widget, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
754 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
755 GenericDialog *gd;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
756
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
757 gd = generic_dialog_new(_("Reset filters"),
254
9faf34f047b1 Make the wmclass value unique among the code by defining
zas_
parents: 231
diff changeset
758 GQ_WMCLASS, "reset_filter", widget, TRUE,
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
759 dummy_cancel_cb, NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
760 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Reset filters"),
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
761 _("This will reset the file filters to the defaults.\nContinue?"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
762 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, filter_default_ok_cb, TRUE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
763 gtk_widget_show(gd->dialog);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
764 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
765
1001
d22e21bfd2a3 Consistency: type * instead of type*.
zas_
parents: 1000
diff changeset
766 static void filter_disable_cb(GtkWidget *widget, gpointer data)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
767 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
768 GtkWidget *frame = data;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
769
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
770 gtk_widget_set_sensitive(frame,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
771 !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
772 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
773
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
774 static void editor_default_ok_cb(GenericDialog *gd, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
775 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
776 gint i;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
777
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
778 editor_reset_defaults();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
779 if (!configwindow) return;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
780
283
e213fb025621 GQVIEW_* -> GQ_*
zas_
parents: 281
diff changeset
781 for (i = 0; i < GQ_EDITOR_SLOTS; i++)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
782 {
283
e213fb025621 GQVIEW_* -> GQ_*
zas_
parents: 281
diff changeset
783 if (i < GQ_EDITOR_GENERIC_SLOTS)
134
9009856628f7 started implementation of external commands; external Delete should work
nadvornik
parents: 113
diff changeset
784 gtk_entry_set_text(GTK_ENTRY(editor_name_entry[i]),
730
2d8a8e892b5e Use a struct to handle editor's properties.
zas_
parents: 671
diff changeset
785 (options->editor[i].name) ? options->editor[i].name : "");
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
786 gtk_entry_set_text(GTK_ENTRY(editor_command_entry[i]),
730
2d8a8e892b5e Use a struct to handle editor's properties.
zas_
parents: 671
diff changeset
787 (options->editor[i].command) ? options->editor[i].command : "");
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
788 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
789 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
790
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
791 static void editor_default_cb(GtkWidget *widget, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
792 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
793 GenericDialog *gd;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
794
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
795 gd = generic_dialog_new(_("Reset editors"),
254
9faf34f047b1 Make the wmclass value unique among the code by defining
zas_
parents: 231
diff changeset
796 GQ_WMCLASS, "reset_filter", widget, TRUE,
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
797 dummy_cancel_cb, NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
798 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Reset editors"),
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
799 _("This will reset the edit commands to the defaults.\nContinue?"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
800 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, editor_default_ok_cb, TRUE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
801 gtk_widget_show(gd->dialog);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
802 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
803
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
804 static void editor_help_cb(GtkWidget *widget, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
805 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
806 help_window_show("editors");
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
807 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
808
1001
d22e21bfd2a3 Consistency: type * instead of type*.
zas_
parents: 1000
diff changeset
809 static void safe_delete_view_cb(GtkWidget *widget, gpointer data)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
810 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
811 layout_set_path(NULL, gtk_entry_get_text(GTK_ENTRY(safe_delete_path_entry)));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
812 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
813
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
814 static void safe_delete_clear_ok_cb(GenericDialog *gd, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
815 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
816 file_util_trash_clear();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
817 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
818
1001
d22e21bfd2a3 Consistency: type * instead of type*.
zas_
parents: 1000
diff changeset
819 static void safe_delete_clear_cb(GtkWidget *widget, gpointer data)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
820 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
821 GenericDialog *gd;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
822 GtkWidget *entry;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
823 gd = generic_dialog_new(_("Clear trash"),
254
9faf34f047b1 Make the wmclass value unique among the code by defining
zas_
parents: 231
diff changeset
824 GQ_WMCLASS, "clear_trash", widget, TRUE,
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
825 dummy_cancel_cb, NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
826 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Clear trash"),
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
827 _("This will remove the trash contents."));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
828 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, safe_delete_clear_ok_cb, TRUE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
829 entry = gtk_entry_new();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
830 GTK_WIDGET_UNSET_FLAGS(entry, GTK_CAN_FOCUS);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
831 gtk_editable_set_editable(GTK_EDITABLE(entry), FALSE);
341
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
832 if (options->file_ops.safe_delete_path) gtk_entry_set_text(GTK_ENTRY(entry), options->file_ops.safe_delete_path);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
833 gtk_box_pack_start(GTK_BOX(gd->vbox), entry, FALSE, FALSE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
834 gtk_widget_show(entry);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
835 gtk_widget_show(gd->dialog);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
836 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
837
1001
d22e21bfd2a3 Consistency: type * instead of type*.
zas_
parents: 1000
diff changeset
838 static void image_overlay_template_view_changed_cb(GtkWidget *widget, gpointer data)
218
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
839 {
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
840 GtkWidget *pTextView;
1001
d22e21bfd2a3 Consistency: type * instead of type*.
zas_
parents: 1000
diff changeset
841 GtkTextBuffer *pTextBuffer;
218
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
842 GtkTextIter iStart;
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
843 GtkTextIter iEnd;
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
844
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
845 pTextView = GTK_WIDGET(data);
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
846
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
847 pTextBuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(pTextView));
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
848 gtk_text_buffer_get_start_iter(pTextBuffer, &iStart);
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
849 gtk_text_buffer_get_end_iter(pTextBuffer, &iEnd);
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
850
733
57f759d012c7 Modify set_default_image_overlay_template_string() to accept the pointer to
zas_
parents: 730
diff changeset
851 set_image_overlay_template_string(&c_options->image_overlay.common.template_string,
57f759d012c7 Modify set_default_image_overlay_template_string() to accept the pointer to
zas_
parents: 730
diff changeset
852 gtk_text_buffer_get_text(pTextBuffer, &iStart, &iEnd, TRUE));
218
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
853 }
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
854
469
a05c72927e23 Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents: 468
diff changeset
855 static void image_overlay_default_template_ok_cb(GenericDialog *gd, gpointer data)
354
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
856 {
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
857 GtkTextView *text_view = data;
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
858 GtkTextBuffer *buffer;
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
859
733
57f759d012c7 Modify set_default_image_overlay_template_string() to accept the pointer to
zas_
parents: 730
diff changeset
860 set_default_image_overlay_template_string(&options->image_overlay.common.template_string);
354
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
861 if (!configwindow) return;
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
862
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
863 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text_view));
468
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
864 gtk_text_buffer_set_text(buffer, options->image_overlay.common.template_string, -1);
354
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
865 }
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
866
469
a05c72927e23 Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents: 468
diff changeset
867 static void image_overlay_default_template_cb(GtkWidget *widget, gpointer data)
354
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
868 {
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
869 GenericDialog *gd;
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
870
469
a05c72927e23 Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents: 468
diff changeset
871 gd = generic_dialog_new(_("Reset image overlay template string"),
a05c72927e23 Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents: 468
diff changeset
872 GQ_WMCLASS, "reset_image_overlay_template_string", widget, TRUE,
354
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
873 dummy_cancel_cb, data);
469
a05c72927e23 Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents: 468
diff changeset
874 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Reset image overlay template string"),
a05c72927e23 Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents: 468
diff changeset
875 _("This will reset the image overlay template string to the default.\nContinue?"));
a05c72927e23 Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents: 468
diff changeset
876 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, image_overlay_default_template_ok_cb, TRUE);
354
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
877 gtk_widget_show(gd->dialog);
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
878 }
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
879
625
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
880 static void image_overlay_help_cb(GtkWidget *widget, gpointer data)
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
881 {
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
882 help_window_show("overlay");
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
883 }
354
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
884
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
885 static GtkWidget *scrolled_notebook_page(GtkWidget *notebook, const gchar *title)
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
886 {
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
887 GtkWidget *label;
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
888 GtkWidget *vbox;
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
889 GtkWidget *scrolled;
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
890 GtkWidget *viewport;
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
891
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
892 scrolled = gtk_scrolled_window_new(NULL, NULL);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
893 gtk_container_set_border_width(GTK_CONTAINER(scrolled), PREF_PAD_BORDER);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
894 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled),
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
895 GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
896 label = gtk_label_new(title);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
897 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), scrolled, label);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
898 gtk_widget_show(scrolled);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
899
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
900 viewport = gtk_viewport_new(NULL, NULL);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
901 gtk_viewport_set_shadow_type(GTK_VIEWPORT(viewport), GTK_SHADOW_NONE);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
902 gtk_container_add(GTK_CONTAINER(scrolled), viewport);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
903 gtk_widget_show(viewport);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
904
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
905 vbox = gtk_vbox_new(FALSE, 0);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
906 gtk_container_add(GTK_CONTAINER(viewport), vbox);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
907 gtk_widget_show(vbox);
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
908
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
909 return vbox;
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
910 }
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
911
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
912 /* general options tab */
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
913 static void config_tab_general(GtkWidget *notebook)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
914 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
915 GtkWidget *hbox;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
916 GtkWidget *vbox;
630
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
917 GtkWidget *subvbox;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
918 GtkWidget *group;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
919 GtkWidget *subgroup;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
920 GtkWidget *button;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
921 GtkWidget *tabcomp;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
922 GtkWidget *ct_button;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
923 GtkWidget *table;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
924 GtkWidget *spin;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
925
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
926 vbox = scrolled_notebook_page(notebook, _("General"));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
927
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
928 group = pref_group_new(vbox, FALSE, _("Startup"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
929
630
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
930 button = pref_checkbox_new_int(group, _("Restore folder on startup"),
629
1fa2cb6d9d65 Rename options:
zas_
parents: 625
diff changeset
931 options->startup.restore_path, &c_options->startup.restore_path);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
932
630
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
933 subvbox = pref_box_new(group, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_SPACE);
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
934 pref_checkbox_link_sensitivity(button, subvbox);
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
935
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
936 hbox = pref_box_new(subvbox, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
937
629
1fa2cb6d9d65 Rename options:
zas_
parents: 625
diff changeset
938 tabcomp = tab_completion_new(&startup_path_entry, options->startup.path, NULL, NULL);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
939 tab_completion_add_select_button(startup_path_entry, NULL, TRUE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
940 gtk_box_pack_start(GTK_BOX(hbox), tabcomp, TRUE, TRUE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
941 gtk_widget_show(tabcomp);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
942
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
943 button = pref_button_new(hbox, NULL, _("Use current"), FALSE,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
944 G_CALLBACK(startup_path_set_current), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
945
630
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
946 button = pref_checkbox_new_int(subvbox, _("Use last path"),
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
947 options->startup.use_last_path, &c_options->startup.use_last_path);
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
948 pref_checkbox_link_sensitivity_swap(button, hbox);
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
949
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
950
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
951 group = pref_group_new(vbox, FALSE, _("Thumbnails"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
952
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
953 table = pref_table_new(group, 2, 2, FALSE, FALSE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
954 add_thumb_size_menu(table, 0, 0, _("Size:"));
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
955 add_quality_menu(table, 0, 1, _("Quality:"), options->thumbnails.quality, &c_options->thumbnails.quality);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
956
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
957 ct_button = pref_checkbox_new_int(group, _("Cache thumbnails"),
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
958 options->thumbnails.enable_caching, &c_options->thumbnails.enable_caching);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
959
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
960 subgroup = pref_box_new(group, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
961 pref_checkbox_link_sensitivity(ct_button, subgroup);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
962
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
963 button = pref_checkbox_new_int(subgroup, _("Use shared thumbnail cache"),
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
964 options->thumbnails.spec_standard, &c_options->thumbnails.spec_standard);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
965
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
966 subgroup = pref_box_new(subgroup, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
967 pref_checkbox_link_sensitivity_swap(button, subgroup);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
968
14
25335c62cd9b ##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents: 9
diff changeset
969 pref_checkbox_new_int(subgroup, _("Cache thumbnails into .thumbnails"),
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
970 options->thumbnails.cache_into_dirs, &c_options->thumbnails.cache_into_dirs);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
971
14
25335c62cd9b ##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents: 9
diff changeset
972 #if 0
25335c62cd9b ##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents: 9
diff changeset
973 pref_checkbox_new_int(subgroup, _("Use xvpics thumbnails when found (read only)"),
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
974 options->thumbnails.use_xvpics, &c_options->thumbnails.use_xvpics);
14
25335c62cd9b ##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents: 9
diff changeset
975 #endif
25335c62cd9b ##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents: 9
diff changeset
976
25335c62cd9b ##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents: 9
diff changeset
977 pref_checkbox_new_int(group, _("Faster jpeg thumbnailing (may reduce quality)"),
333
767b53cd9ab7 Rename thumbnails related options.
zas_
parents: 332
diff changeset
978 options->thumbnails.fast, &c_options->thumbnails.fast);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
979
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
980 group = pref_group_new(vbox, FALSE, _("Slide show"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
981
326
509b84801d66 Rename slideshow options.
zas_
parents: 322
diff changeset
982 c_options->slideshow.delay = options->slideshow.delay;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
983 spin = pref_spin_new(group, _("Delay between image change:"), _("seconds"),
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
984 SLIDESHOW_MIN_SECONDS, SLIDESHOW_MAX_SECONDS, 1.0, 1,
1000
4fe8f9656107 For the sake of consistency, use glib basic types everywhere.
zas_
parents: 995
diff changeset
985 options->slideshow.delay ? (gdouble)options->slideshow.delay / SLIDESHOW_SUBSECOND_PRECISION : 10.0,
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
986 G_CALLBACK(slideshow_delay_cb), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
987 gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(spin), GTK_UPDATE_ALWAYS);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
988
326
509b84801d66 Rename slideshow options.
zas_
parents: 322
diff changeset
989 pref_checkbox_new_int(group, _("Random"), options->slideshow.random, &c_options->slideshow.random);
509b84801d66 Rename slideshow options.
zas_
parents: 322
diff changeset
990 pref_checkbox_new_int(group, _("Repeat"), options->slideshow.repeat, &c_options->slideshow.repeat);
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
991 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
992
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
993 /* image tab */
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
994 static void config_tab_image(GtkWidget *notebook)
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
995 {
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
996 GtkWidget *hbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
997 GtkWidget *vbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
998 GtkWidget *group;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
999 GtkWidget *button;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1000 GtkWidget *ct_button;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1001 GtkWidget *table;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1002 GtkWidget *spin;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1003
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
1004 vbox = scrolled_notebook_page(notebook, _("Image"));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1005
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1006 group = pref_group_new(vbox, FALSE, _("Zoom"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1007
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1008 #if 0
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1009 add_dither_menu(dither_quality, &c_options->image.dither_quality, _("Dithering method:"), group);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1010 #endif
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1011 table = pref_table_new(group, 2, 1, FALSE, FALSE);
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1012 add_quality_menu(table, 0, 0, _("Quality:"), options->image.zoom_quality, &c_options->image.zoom_quality);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1013
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1014 pref_checkbox_new_int(group, _("Two pass zooming"),
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1015 options->image.zoom_2pass, &c_options->image.zoom_2pass);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1016
67
f63ecca6c087 Fri Oct 13 05:22:43 2006 John Ellis <johne@verizon.net>
gqview
parents: 26
diff changeset
1017 pref_checkbox_new_int(group, _("Allow enlargement of image for zoom to fit"),
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1018 options->image.zoom_to_fit_allow_expand, &c_options->image.zoom_to_fit_allow_expand);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1019
209
ad78ad18523a configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents: 208
diff changeset
1020 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
ad78ad18523a configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents: 208
diff changeset
1021 ct_button = pref_checkbox_new_int(hbox, _("Limit image size when autofitting (%):"),
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1022 options->image.limit_autofit_size, &c_options->image.limit_autofit_size);
209
ad78ad18523a configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents: 208
diff changeset
1023 spin = pref_spin_new_int(hbox, NULL, NULL,
ad78ad18523a configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents: 208
diff changeset
1024 10, 150, 1,
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1025 options->image.max_autofit_size, &c_options->image.max_autofit_size);
209
ad78ad18523a configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents: 208
diff changeset
1026 pref_checkbox_link_sensitivity(ct_button, spin);
ad78ad18523a configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents: 208
diff changeset
1027
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1028 c_options->image.zoom_increment = options->image.zoom_increment;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1029 spin = pref_spin_new(group, _("Zoom increment:"), NULL,
1000
4fe8f9656107 For the sake of consistency, use glib basic types everywhere.
zas_
parents: 995
diff changeset
1030 0.1, 4.0, 0.1, 1, (gdouble)options->image.zoom_increment / 10.0,
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1031 G_CALLBACK(zoom_increment_cb), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1032 gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(spin), GTK_UPDATE_ALWAYS);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1033
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1034 group = pref_group_new(vbox, FALSE, _("When new image is selected:"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1035
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1036 c_options->image.zoom_mode = options->image.zoom_mode;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1037 button = pref_radiobutton_new(group, NULL, _("Zoom to original size"),
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1038 (options->image.zoom_mode == ZOOM_RESET_ORIGINAL),
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
1039 G_CALLBACK(zoom_mode_cb), GINT_TO_POINTER(ZOOM_RESET_ORIGINAL));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1040 button = pref_radiobutton_new(group, button, _("Fit image to window"),
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1041 (options->image.zoom_mode == ZOOM_RESET_FIT_WINDOW),
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
1042 G_CALLBACK(zoom_mode_cb), GINT_TO_POINTER(ZOOM_RESET_FIT_WINDOW));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1043 button = pref_radiobutton_new(group, button, _("Leave Zoom at previous setting"),
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1044 (options->image.zoom_mode == ZOOM_RESET_NONE),
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
1045 G_CALLBACK(zoom_mode_cb), GINT_TO_POINTER(ZOOM_RESET_NONE));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1046
1038
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1047 group = pref_group_new(vbox, FALSE, _("Scroll reset method:"), GTK_ORIENTATION_VERTICAL);
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1048
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1049 c_options->image.scroll_reset_method = options->image.scroll_reset_method;
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1050 button = pref_radiobutton_new(group, NULL, _("Top left"),
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1051 (options->image.scroll_reset_method == SCROLL_RESET_TOPLEFT),
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1052 G_CALLBACK(scroll_reset_cb), GINT_TO_POINTER(SCROLL_RESET_TOPLEFT));
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1053 button = pref_radiobutton_new(group, button, _("Center"),
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1054 (options->image.scroll_reset_method == SCROLL_RESET_CENTER),
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1055 G_CALLBACK(scroll_reset_cb), GINT_TO_POINTER(SCROLL_RESET_CENTER));
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1056 button = pref_radiobutton_new(group, button, _("No change"),
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1057 (options->image.scroll_reset_method == SCROLL_RESET_NOCHANGE),
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1058 G_CALLBACK(scroll_reset_cb), GINT_TO_POINTER(SCROLL_RESET_NOCHANGE));
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1059
db720c5a9169 Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents: 1024
diff changeset
1060
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1061 group = pref_group_new(vbox, FALSE, _("Appearance"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1062
339
de1c2cd06fce Rename user_specified_window_background and window_background_color
zas_
parents: 338
diff changeset
1063 pref_checkbox_new_int(group, _("Custom border color"),
de1c2cd06fce Rename user_specified_window_background and window_background_color
zas_
parents: 338
diff changeset
1064 options->image.use_custom_border_color, &c_options->image.use_custom_border_color);
208
fa0e05f985c3 set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents: 199
diff changeset
1065
339
de1c2cd06fce Rename user_specified_window_background and window_background_color
zas_
parents: 338
diff changeset
1066 pref_color_button_new(group, _("Border color"), &options->image.border_color,
de1c2cd06fce Rename user_specified_window_background and window_background_color
zas_
parents: 338
diff changeset
1067 G_CALLBACK(pref_color_button_set_cb), &c_options->image.border_color);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1068
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1069 group = pref_group_new(vbox, FALSE, _("Convenience"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1070
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1071 pref_checkbox_new_int(group, _("Refresh on file change"),
321
20d9b3cd7434 options_c -> c_options
zas_
parents: 320
diff changeset
1072 options->update_on_time_change, &c_options->update_on_time_change);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1073 pref_checkbox_new_int(group, _("Preload next image"),
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1074 options->image.enable_read_ahead, &c_options->image.enable_read_ahead);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1075 pref_checkbox_new_int(group, _("Auto rotate image using Exif information"),
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1076 options->image.exif_rotate_enable, &c_options->image.exif_rotate_enable);
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1077 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1078
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1079 /* windows tab */
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1080 static void config_tab_windows(GtkWidget *notebook)
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1081 {
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1082 GtkWidget *hbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1083 GtkWidget *vbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1084 GtkWidget *group;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1085 GtkWidget *ct_button;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1086 GtkWidget *spin;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1087
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
1088 vbox = scrolled_notebook_page(notebook, _("Windows"));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1089
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1090 group = pref_group_new(vbox, FALSE, _("State"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1091
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1092 pref_checkbox_new_int(group, _("Remember window positions"),
338
41c3cb73120f Rename window options (moved to layout) and re-order rc file.
zas_
parents: 334
diff changeset
1093 options->layout.save_window_positions, &c_options->layout.save_window_positions);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1094 pref_checkbox_new_int(group, _("Remember tool state (float/hidden)"),
338
41c3cb73120f Rename window options (moved to layout) and re-order rc file.
zas_
parents: 334
diff changeset
1095 options->layout.tools_restore_state, &c_options->layout.tools_restore_state);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1096
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1097 group = pref_group_new(vbox, FALSE, _("Size"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1098
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1099 pref_checkbox_new_int(group, _("Fit window to image when tools are hidden/floating"),
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1100 options->image.fit_window_to_image, &c_options->image.fit_window_to_image);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1101
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1102 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1103 ct_button = pref_checkbox_new_int(hbox, _("Limit size when auto-sizing window (%):"),
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1104 options->image.limit_window_size, &c_options->image.limit_window_size);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1105 spin = pref_spin_new_int(hbox, NULL, NULL,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1106 10, 150, 1,
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1107 options->image.max_window_size, &c_options->image.max_window_size);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1108 pref_checkbox_link_sensitivity(ct_button, spin);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1109
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1110 group = pref_group_new(vbox, FALSE, _("Layout"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1111
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1112 layout_widget = layout_config_new();
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
1113 layout_config_set(layout_widget, options->layout.style, options->layout.order);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1114 gtk_box_pack_start(GTK_BOX(group), layout_widget, FALSE, FALSE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1115 gtk_widget_show(layout_widget);
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1116 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1117
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1118 /* filtering tab */
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1119 static void config_tab_filtering(GtkWidget *notebook)
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1120 {
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1121 GtkWidget *hbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1122 GtkWidget *frame;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1123 GtkWidget *vbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1124 GtkWidget *group;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1125 GtkWidget *button;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1126 GtkWidget *ct_button;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1127 GtkWidget *scrolled;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1128 GtkWidget *filter_view;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1129 GtkCellRenderer *renderer;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1130 GtkTreeSelection *selection;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1131 GtkTreeViewColumn *column;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1132
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
1133 vbox = scrolled_notebook_page(notebook, _("Filtering"));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1134
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1135 group = pref_box_new(vbox, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1136
356
673d1eb5af73 Rename show_dot_files to show_hidden_files.
zas_
parents: 354
diff changeset
1137 pref_checkbox_new_int(group, _("Show hidden files or folders"),
673d1eb5af73 Rename show_dot_files to show_hidden_files.
zas_
parents: 354
diff changeset
1138 options->file_filter.show_hidden_files, &c_options->file_filter.show_hidden_files);
373
61a3c8b05b24 Add a new option in Preferences > Filtering to allow the
zas_
parents: 356
diff changeset
1139 pref_checkbox_new_int(group, _("Show dot directory"),
61a3c8b05b24 Add a new option in Preferences > Filtering to allow the
zas_
parents: 356
diff changeset
1140 options->file_filter.show_dot_directory, &c_options->file_filter.show_dot_directory);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1141 pref_checkbox_new_int(group, _("Case sensitive sort"),
329
a51242c032ea Rename file sorting options.
zas_
parents: 327
diff changeset
1142 options->file_sort.case_sensitive, &c_options->file_sort.case_sensitive);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1143
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1144 ct_button = pref_checkbox_new_int(group, _("Disable File Filtering"),
332
3c4bad726e98 Rename file filtering options.
zas_
parents: 330
diff changeset
1145 options->file_filter.disable, &c_options->file_filter.disable);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1146
170
9a56e3d13e67 basic sidecar files configuration via preferences dialog
nadvornik
parents: 134
diff changeset
1147
9a56e3d13e67 basic sidecar files configuration via preferences dialog
nadvornik
parents: 134
diff changeset
1148 group = pref_group_new(vbox, FALSE, _("Grouping sidecar extensions"), GTK_ORIENTATION_VERTICAL);
9a56e3d13e67 basic sidecar files configuration via preferences dialog
nadvornik
parents: 134
diff changeset
1149
9a56e3d13e67 basic sidecar files configuration via preferences dialog
nadvornik
parents: 134
diff changeset
1150 sidecar_ext_entry = gtk_entry_new();
9a56e3d13e67 basic sidecar files configuration via preferences dialog
nadvornik
parents: 134
diff changeset
1151 gtk_entry_set_text(GTK_ENTRY(sidecar_ext_entry), sidecar_ext_to_string());
9a56e3d13e67 basic sidecar files configuration via preferences dialog
nadvornik
parents: 134
diff changeset
1152 gtk_box_pack_start(GTK_BOX(group), sidecar_ext_entry, FALSE, FALSE, 0);
9a56e3d13e67 basic sidecar files configuration via preferences dialog
nadvornik
parents: 134
diff changeset
1153 gtk_widget_show(sidecar_ext_entry);
9a56e3d13e67 basic sidecar files configuration via preferences dialog
nadvornik
parents: 134
diff changeset
1154
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1155 group = pref_group_new(vbox, TRUE, _("File types"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1156
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1157 frame = pref_group_parent(group);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1158 g_signal_connect(G_OBJECT(ct_button), "toggled",
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1159 G_CALLBACK(filter_disable_cb), frame);
332
3c4bad726e98 Rename file filtering options.
zas_
parents: 330
diff changeset
1160 gtk_widget_set_sensitive(frame, !options->file_filter.disable);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1161
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1162 scrolled = gtk_scrolled_window_new(NULL, NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1163 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN);
513
985fdfebd89e Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents: 512
diff changeset
1164 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1165 gtk_box_pack_start(GTK_BOX(group), scrolled, TRUE, TRUE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1166 gtk_widget_show(scrolled);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1167
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1168 filter_store = gtk_list_store_new(1, G_TYPE_POINTER);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1169 filter_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(filter_store));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1170 g_object_unref(filter_store);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1171 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(filter_view));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1172 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_SINGLE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1173
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1174 gtk_tree_view_set_enable_search(GTK_TREE_VIEW(filter_view), FALSE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1175
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1176 column = gtk_tree_view_column_new();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1177 gtk_tree_view_column_set_title(column, _("Filter"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1178 gtk_tree_view_column_set_resizable(column, TRUE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1179
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1180 renderer = gtk_cell_renderer_toggle_new();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1181 g_signal_connect(G_OBJECT(renderer), "toggled",
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1182 G_CALLBACK(filter_store_enable_cb), filter_store);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1183 gtk_tree_view_column_pack_start(column, renderer, FALSE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1184 gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1185 GINT_TO_POINTER(FE_ENABLE), NULL);
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1186
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1187 renderer = gtk_cell_renderer_text_new();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1188 g_signal_connect(G_OBJECT(renderer), "edited",
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1189 G_CALLBACK(filter_store_ext_edit_cb), filter_store);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1190 gtk_tree_view_column_pack_start(column, renderer, TRUE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1191 g_object_set(G_OBJECT(renderer), "editable", (gboolean)TRUE, NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1192 gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1193 GINT_TO_POINTER(FE_EXTENSION), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1194 gtk_tree_view_append_column(GTK_TREE_VIEW(filter_view), column);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1195
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1196 column = gtk_tree_view_column_new();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1197 gtk_tree_view_column_set_title(column, _("Description"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1198 gtk_tree_view_column_set_resizable(column, TRUE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1199 renderer = gtk_cell_renderer_text_new();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1200 g_signal_connect(G_OBJECT(renderer), "edited",
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1201 G_CALLBACK(filter_store_desc_edit_cb), filter_store);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1202 g_object_set(G_OBJECT(renderer), "editable", (gboolean)TRUE, NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1203 gtk_tree_view_column_pack_start(column, renderer, FALSE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1204 gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1205 GINT_TO_POINTER(FE_DESCRIPTION), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1206 gtk_tree_view_append_column(GTK_TREE_VIEW(filter_view), column);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1207
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1208 filter_store_populate();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1209 gtk_container_add(GTK_CONTAINER(scrolled), filter_view);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1210 gtk_widget_show(filter_view);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1211
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1212 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1213
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1214 button = pref_button_new(NULL, NULL, _("Defaults"), FALSE,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1215 G_CALLBACK(filter_default_cb), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1216 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1217 gtk_widget_show(button);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1218
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1219 button = pref_button_new(NULL, GTK_STOCK_REMOVE, NULL, FALSE,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1220 G_CALLBACK(filter_remove_cb), filter_view);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1221 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1222 gtk_widget_show(button);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1223
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1224 button = pref_button_new(NULL, GTK_STOCK_ADD, NULL, FALSE,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1225 G_CALLBACK(filter_add_cb), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1226 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1227 gtk_widget_show(button);
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1228 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1229
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1230 /* editors tab */
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1231 static void config_tab_editors(GtkWidget *notebook)
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1232 {
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1233 GtkWidget *hbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1234 GtkWidget *label;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1235 GtkWidget *vbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1236 GtkWidget *button;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1237 GtkWidget *table;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1238 gint i;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1239
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
1240 vbox = scrolled_notebook_page(notebook, _("Editors"));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1241
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1242 table = pref_table_new(vbox, 3, 9, FALSE, FALSE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1243 gtk_table_set_col_spacings(GTK_TABLE(table), PREF_PAD_GAP);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1244
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1245 label = pref_table_label(table, 0, 0, _("#"), 1.0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1246 pref_label_bold(label, TRUE, FALSE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1247
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1248 label = pref_table_label(table, 1, 0, _("Menu name"), 0.0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1249 pref_label_bold(label, TRUE, FALSE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1250
67
f63ecca6c087 Fri Oct 13 05:22:43 2006 John Ellis <johne@verizon.net>
gqview
parents: 26
diff changeset
1251 label = pref_table_label(table, 2, 0, _("Command Line"), 0.0);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1252 pref_label_bold(label, TRUE, FALSE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1253
283
e213fb025621 GQVIEW_* -> GQ_*
zas_
parents: 281
diff changeset
1254 for (i = 0; i < GQ_EDITOR_SLOTS; i++)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1255 {
224
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1256 GtkWidget *entry;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1257
283
e213fb025621 GQVIEW_* -> GQ_*
zas_
parents: 281
diff changeset
1258 if (i < GQ_EDITOR_GENERIC_SLOTS)
134
9009856628f7 started implementation of external commands; external Delete should work
nadvornik
parents: 113
diff changeset
1259 {
224
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1260 gchar *buf;
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1261
134
9009856628f7 started implementation of external commands; external Delete should work
nadvornik
parents: 113
diff changeset
1262 buf = g_strdup_printf("%d", i+1);
9009856628f7 started implementation of external commands; external Delete should work
nadvornik
parents: 113
diff changeset
1263 pref_table_label(table, 0, i+1, buf, 1.0);
9009856628f7 started implementation of external commands; external Delete should work
nadvornik
parents: 113
diff changeset
1264 g_free(buf);
224
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1265 entry = gtk_entry_new();
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1266 gtk_entry_set_max_length(GTK_ENTRY(entry), EDITOR_NAME_MAX_LENGTH);
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1267 gtk_widget_set_size_request(entry, 80, -1);
730
2d8a8e892b5e Use a struct to handle editor's properties.
zas_
parents: 671
diff changeset
1268 if (options->editor[i].name)
2d8a8e892b5e Use a struct to handle editor's properties.
zas_
parents: 671
diff changeset
1269 gtk_entry_set_text(GTK_ENTRY(entry), options->editor[i].name);
134
9009856628f7 started implementation of external commands; external Delete should work
nadvornik
parents: 113
diff changeset
1270 }
9009856628f7 started implementation of external commands; external Delete should work
nadvornik
parents: 113
diff changeset
1271 else
9009856628f7 started implementation of external commands; external Delete should work
nadvornik
parents: 113
diff changeset
1272 {
730
2d8a8e892b5e Use a struct to handle editor's properties.
zas_
parents: 671
diff changeset
1273 entry = gtk_label_new(options->editor[i].name);
225
649f7cb544e0 Make the preferences window resizeable, and try to improve
zas_
parents: 224
diff changeset
1274 gtk_misc_set_alignment(GTK_MISC(entry), 0.0, 0.5);
134
9009856628f7 started implementation of external commands; external Delete should work
nadvornik
parents: 113
diff changeset
1275 }
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1276
513
985fdfebd89e Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents: 512
diff changeset
1277 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, i+1, i+2,
225
649f7cb544e0 Make the preferences window resizeable, and try to improve
zas_
parents: 224
diff changeset
1278 GTK_FILL | GTK_SHRINK, 0, 0, 0);
224
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1279 gtk_widget_show(entry);
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1280 editor_name_entry[i] = entry;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1281
224
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1282 entry = gtk_entry_new();
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1283 gtk_entry_set_max_length(GTK_ENTRY(entry), EDITOR_COMMAND_MAX_LENGTH);
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1284 gtk_widget_set_size_request(entry, 160, -1);
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1285 tab_completion_add_to_entry(entry, NULL, NULL);
730
2d8a8e892b5e Use a struct to handle editor's properties.
zas_
parents: 671
diff changeset
1286 if (options->editor[i].command)
2d8a8e892b5e Use a struct to handle editor's properties.
zas_
parents: 671
diff changeset
1287 gtk_entry_set_text(GTK_ENTRY(entry), options->editor[i].command);
513
985fdfebd89e Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents: 512
diff changeset
1288 gtk_table_attach(GTK_TABLE(table), entry, 2, 3, i+1, i+2,
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1289 GTK_FILL | GTK_EXPAND, 0, 0, 0);
224
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1290 gtk_widget_show(entry);
83f92073e74c Tidy up. Fix indentation and missing whitespaces.
zas_
parents: 223
diff changeset
1291 editor_command_entry[i] = entry;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1292 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1293
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1294 hbox = pref_box_new(vbox, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1295
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1296 button = pref_button_new(NULL, NULL, _("Defaults"), FALSE,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1297 G_CALLBACK(editor_default_cb), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1298 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1299 gtk_widget_show(button);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1300
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1301 button = pref_button_new(NULL, GTK_STOCK_HELP, NULL, FALSE,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1302 G_CALLBACK(editor_help_cb), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1303 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1304 gtk_widget_show(button);
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1305 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1306
256
088b335f2d67 Rename exif preferences tab to "Properties", and name the
zas_
parents: 254
diff changeset
1307 /* properties tab */
088b335f2d67 Rename exif preferences tab to "Properties", and name the
zas_
parents: 254
diff changeset
1308 static void config_tab_properties(GtkWidget *notebook)
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1309 {
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1310 GtkWidget *label;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1311 GtkWidget *vbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1312 GtkWidget *group;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1313 GtkWidget *table;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1314 gint i;
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
1315
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
1316 vbox = scrolled_notebook_page(notebook, _("Properties"));
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
1317
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1318 group = pref_group_new(vbox, FALSE, _("Exif"),
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
1319 GTK_ORIENTATION_VERTICAL);
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1320
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1321
257
c5422b69b40e Re-add "What to show in properties dialog:" label before the table.
zas_
parents: 256
diff changeset
1322 pref_spacer(group, PREF_PAD_INDENT - PREF_PAD_SPACE);
c5422b69b40e Re-add "What to show in properties dialog:" label before the table.
zas_
parents: 256
diff changeset
1323 label = pref_label_new(group, _("What to show in properties dialog:"));
c5422b69b40e Re-add "What to show in properties dialog:" label before the table.
zas_
parents: 256
diff changeset
1324 gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
c5422b69b40e Re-add "What to show in properties dialog:" label before the table.
zas_
parents: 256
diff changeset
1325
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
1326 table = pref_table_new(group, 2, 2, FALSE, FALSE);
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
1327
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
1328 for (i = 0; ExifUIList[i].key; i++)
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
1329 {
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
1330 const gchar *title;
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1331
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1332 title = exif_get_description_by_key(ExifUIList[i].key);
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
1333 exif_item(table, 0, i, title, ExifUIList[i].current,
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
1334 &ExifUIList[i].temp);
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
1335 }
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1336 }
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 218
diff changeset
1337
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1338 /* advanced entry tab */
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1339 static void config_tab_advanced(GtkWidget *notebook)
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1340 {
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1341 GtkWidget *label;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1342 GtkWidget *hbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1343 GtkWidget *vbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1344 GtkWidget *group;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1345 GtkWidget *button;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1346 GtkWidget *tabcomp;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1347 GtkWidget *ct_button;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1348 GtkWidget *table;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1349 GtkWidget *spin;
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
1350 GtkWidget *image_overlay_template_view;
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1351 GtkWidget *scrolled;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1352 GtkTextBuffer *buffer;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1353 gint i;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1354
1039
9c8d7ba674cf Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents: 1038
diff changeset
1355 vbox = scrolled_notebook_page(notebook, _("Advanced"));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1356
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1357 group = pref_group_new(vbox, FALSE, _("Full screen"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1358
322
d344bcf37618 Rationalize fullscreen options naming.
zas_
parents: 321
diff changeset
1359 c_options->fullscreen.screen = options->fullscreen.screen;
d344bcf37618 Rationalize fullscreen options naming.
zas_
parents: 321
diff changeset
1360 c_options->fullscreen.above = options->fullscreen.above;
d344bcf37618 Rationalize fullscreen options naming.
zas_
parents: 321
diff changeset
1361 hbox = fullscreen_prefs_selection_new(_("Location:"), &c_options->fullscreen.screen, &c_options->fullscreen.above);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1362 gtk_box_pack_start(GTK_BOX(group), hbox, FALSE, FALSE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1363 gtk_widget_show(hbox);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1364
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1365 pref_checkbox_new_int(group, _("Smooth image flip"),
322
d344bcf37618 Rationalize fullscreen options naming.
zas_
parents: 321
diff changeset
1366 options->fullscreen.clean_flip, &c_options->fullscreen.clean_flip);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1367 pref_checkbox_new_int(group, _("Disable screen saver"),
322
d344bcf37618 Rationalize fullscreen options naming.
zas_
parents: 321
diff changeset
1368 options->fullscreen.disable_saver, &c_options->fullscreen.disable_saver);
625
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
1369
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
1370
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
1371 group = pref_group_new(vbox, FALSE, _("Overlay Screen Display"), GTK_ORIENTATION_VERTICAL);
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
1372
468
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
1373 pref_checkbox_new_int(group, _("Always show image overlay at startup"),
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
1374 options->image_overlay.common.show_at_startup, &c_options->image_overlay.common.show_at_startup);
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
1375 pref_label_new(group, _("Image overlay template"));
218
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1376
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1377 scrolled = gtk_scrolled_window_new(NULL, NULL);
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1378 gtk_widget_set_size_request(scrolled, 200, 150);
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1379 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN);
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1380 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled),
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1381 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1382 gtk_box_pack_start(GTK_BOX(group), scrolled, TRUE, TRUE, 5);
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1383 gtk_widget_show(scrolled);
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1384
468
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
1385 image_overlay_template_view = gtk_text_view_new();
267
a9adf9e1a746 Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents: 257
diff changeset
1386
a9adf9e1a746 Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents: 257
diff changeset
1387 #if GTK_CHECK_VERSION(2,12,0)
468
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
1388 gtk_widget_set_tooltip_markup(image_overlay_template_view,
218
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1389 _("<i>%name%</i> results in the filename of the picture.\n"
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1390 "Also available: <i>%collection%</i>, <i>%number%</i>, <i>%total%</i>, <i>%date%</i>,\n"
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1391 "<i>%size%</i> (filesize), <i>%width%</i>, <i>%height%</i>, <i>%res%</i> (resolution)\n"
566
db08ccd54169 Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents: 520
diff changeset
1392 "To access exif data use the exif name, e. g. <i>%formatted.Camera%</i> is the formatted camera name,\n"
218
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1393 "<i>%Exif.Photo.DateTimeOriginal%</i> the date of the original shot.\n"
566
db08ccd54169 Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents: 520
diff changeset
1394 "<i>%formatted.Camera:20</i> notation will truncate the displayed data to 20 characters and will add 3 dots at the end to denote the truncation.\n"
218
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1395 "If two or more variables are connected with the |-sign, it prints available variables with a separator.\n"
566
db08ccd54169 Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents: 520
diff changeset
1396 "<i>%formatted.ShutterSpeed%</i>|<i>%formatted.ISOSpeedRating%</i>|<i>%formatted.FocalLength%</i> could show \"1/20s - 400 - 80 mm\" or \"1/200 - 80 mm\",\n"
218
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1397 "if there's no ISO information in the Exif data.\n"
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1398 "If a line is empty, it is removed. This allows to add lines that totally disappear when no data is available.\n"
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1399 ));
267
a9adf9e1a746 Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents: 257
diff changeset
1400 #endif
468
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
1401 gtk_container_add(GTK_CONTAINER(scrolled), image_overlay_template_view);
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
1402 gtk_widget_show(image_overlay_template_view);
218
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1403
354
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
1404 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP);
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
1405
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
1406 button = pref_button_new(NULL, NULL, _("Defaults"), FALSE,
469
a05c72927e23 Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents: 468
diff changeset
1407 G_CALLBACK(image_overlay_default_template_cb), image_overlay_template_view);
354
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
1408 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
1409 gtk_widget_show(button);
5c82855feba7 Add a button to reset fullscreen info string to default value.
zas_
parents: 342
diff changeset
1410
625
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
1411 button = pref_button_new(NULL, GTK_STOCK_HELP, NULL, FALSE,
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
1412 G_CALLBACK(image_overlay_help_cb), NULL);
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
1413 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
1414 gtk_widget_show(button);
076e6f7e9ecb Add an help button to OSD info configuration in Preferences dialog.
zas_
parents: 597
diff changeset
1415
468
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
1416 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(image_overlay_template_view));
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
1417 if (options->image_overlay.common.template_string) gtk_text_buffer_set_text(buffer, options->image_overlay.common.template_string, -1);
218
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1418 g_signal_connect(G_OBJECT(buffer), "changed",
468
2df505c60459 Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents: 458
diff changeset
1419 G_CALLBACK(image_overlay_template_view_changed_cb), image_overlay_template_view);
218
f4a0555794a9 Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents: 212
diff changeset
1420
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1421 group = pref_group_new(vbox, FALSE, _("Delete"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1422
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1423 pref_checkbox_new_int(group, _("Confirm file delete"),
341
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
1424 options->file_ops.confirm_delete, &c_options->file_ops.confirm_delete);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1425 pref_checkbox_new_int(group, _("Enable Delete key"),
341
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
1426 options->file_ops.enable_delete_key, &c_options->file_ops.enable_delete_key);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1427
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1428 ct_button = pref_checkbox_new_int(group, _("Safe delete"),
341
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
1429 options->file_ops.safe_delete_enable, &c_options->file_ops.safe_delete_enable);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1430
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1431 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1432 pref_checkbox_link_sensitivity(ct_button, hbox);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1433
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1434 pref_spacer(hbox, PREF_PAD_INDENT - PREF_PAD_SPACE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1435 pref_label_new(hbox, _("Folder:"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1436
341
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
1437 tabcomp = tab_completion_new(&safe_delete_path_entry, options->file_ops.safe_delete_path, NULL, NULL);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1438 tab_completion_add_select_button(safe_delete_path_entry, NULL, TRUE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1439 gtk_box_pack_start(GTK_BOX(hbox), tabcomp, TRUE, TRUE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1440 gtk_widget_show(tabcomp);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1441
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1442 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1443 pref_checkbox_link_sensitivity(ct_button, hbox);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1444
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1445 pref_spacer(hbox, PREF_PAD_INDENT - PREF_PAD_GAP);
223
73efc1ba150f Setting no limit size to trash directory is now possible using zero as value.
zas_
parents: 222
diff changeset
1446 spin = pref_spin_new_int(hbox, _("Maximum size:"), _("MB"),
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1447 0, 2048, 1, options->file_ops.safe_delete_folder_maxsize, &c_options->file_ops.safe_delete_folder_maxsize);
267
a9adf9e1a746 Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents: 257
diff changeset
1448 #if GTK_CHECK_VERSION(2,12,0)
223
73efc1ba150f Setting no limit size to trash directory is now possible using zero as value.
zas_
parents: 222
diff changeset
1449 gtk_widget_set_tooltip_markup(spin, _("Set to 0 for unlimited size"));
267
a9adf9e1a746 Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents: 257
diff changeset
1450 #endif
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1451 button = pref_button_new(NULL, NULL, _("View"), FALSE,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1452 G_CALLBACK(safe_delete_view_cb), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1453 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1454 gtk_widget_show(button);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1455
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1456 button = pref_button_new(NULL, GTK_STOCK_CLEAR, NULL, FALSE,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1457 G_CALLBACK(safe_delete_clear_cb), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1458 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1459 gtk_widget_show(button);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1460
497
a33badd85f16 Allow the copy of file paths to clipboard.
zas_
parents: 475
diff changeset
1461
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1462 group = pref_group_new(vbox, FALSE, _("Behavior"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1463
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1464 pref_checkbox_new_int(group, _("Rectangular selection in icon view"),
330
57a4ced53618 Rename collection options.
zas_
parents: 329
diff changeset
1465 options->collections.rectangular_selection, &c_options->collections.rectangular_selection);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1466
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1467 pref_checkbox_new_int(group, _("Descend folders in tree view"),
321
20d9b3cd7434 options_c -> c_options
zas_
parents: 320
diff changeset
1468 options->tree_descend_subdirs, &c_options->tree_descend_subdirs);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1469
825
ee33d2ddb661 Optionnally display directory's date in list view.
zas_
parents: 768
diff changeset
1470 pref_checkbox_new_int(group, _("Show date in directories list view"),
ee33d2ddb661 Optionnally display directory's date in list view.
zas_
parents: 768
diff changeset
1471 options->layout.show_directory_date, &c_options->layout.show_directory_date);
ee33d2ddb661 Optionnally display directory's date in list view.
zas_
parents: 768
diff changeset
1472
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1473 pref_checkbox_new_int(group, _("In place renaming"),
341
15c6b94545a2 Move safe_delete* and in place rename options to file_ops
zas_
parents: 339
diff changeset
1474 options->file_ops.enable_in_place_rename, &c_options->file_ops.enable_in_place_rename);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1475
497
a33badd85f16 Allow the copy of file paths to clipboard.
zas_
parents: 475
diff changeset
1476 pref_checkbox_new_int(group, _("Show \"Copy path\" menu item which write the path of selected files to clipboard"),
a33badd85f16 Allow the copy of file paths to clipboard.
zas_
parents: 475
diff changeset
1477 options->show_copy_path, &c_options->show_copy_path);
a33badd85f16 Allow the copy of file paths to clipboard.
zas_
parents: 475
diff changeset
1478
441
08eb7137cd94 Allow the user to change open_recent_list_maxsize option through
zas_
parents: 426
diff changeset
1479 pref_spin_new_int(group, _("Open recent list maximum size"), NULL,
08eb7137cd94 Allow the user to change open_recent_list_maxsize option through
zas_
parents: 426
diff changeset
1480 1, 50, 1, options->open_recent_list_maxsize, &c_options->open_recent_list_maxsize);
458
7a69309b91c8 Allow the user to set the drag'n drop icon size through
zas_
parents: 446
diff changeset
1481
7a69309b91c8 Allow the user to set the drag'n drop icon size through
zas_
parents: 446
diff changeset
1482 pref_spin_new_int(group, _("Drag'n drop icon size"), NULL,
7a69309b91c8 Allow the user to set the drag'n drop icon size through
zas_
parents: 446
diff changeset
1483 16, 256, 16, options->dnd_icon_size, &c_options->dnd_icon_size);
441
08eb7137cd94 Allow the user to change open_recent_list_maxsize option through
zas_
parents: 426
diff changeset
1484
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1485 group = pref_group_new(vbox, FALSE, _("Navigation"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1486
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1487 pref_checkbox_new_int(group, _("Progressive keyboard scrolling"),
321
20d9b3cd7434 options_c -> c_options
zas_
parents: 320
diff changeset
1488 options->progressive_key_scrolling, &c_options->progressive_key_scrolling);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1489 pref_checkbox_new_int(group, _("Mouse wheel scrolls image"),
321
20d9b3cd7434 options_c -> c_options
zas_
parents: 320
diff changeset
1490 options->mousewheel_scrolls, &c_options->mousewheel_scrolls);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1491
980
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
1492 pref_label_new(group, _("Home button path (empty to use your home directory)"));
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
1493 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
1494
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
1495 tabcomp = tab_completion_new(&home_path_entry, options->layout.home_path, NULL, NULL);
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
1496 tab_completion_add_select_button(home_path_entry, NULL, TRUE);
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
1497 gtk_box_pack_start(GTK_BOX(hbox), tabcomp, TRUE, TRUE, 0);
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
1498 gtk_widget_show(tabcomp);
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
1499
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
1500 button = pref_button_new(hbox, NULL, _("Use current"), FALSE,
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
1501 G_CALLBACK(home_path_set_current), NULL);
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
1502
a4a38ea9fbaa Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents: 848
diff changeset
1503
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1504 group = pref_group_new(vbox, FALSE, _("Miscellaneous"), GTK_ORIENTATION_VERTICAL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1505
594
4cfce4ed35e0 Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents: 586
diff changeset
1506 pref_checkbox_new_int(group, _("Store metadata and cache files in source image's directory"),
321
20d9b3cd7434 options_c -> c_options
zas_
parents: 320
diff changeset
1507 options->enable_metadata_dirs, &c_options->enable_metadata_dirs);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1508
594
4cfce4ed35e0 Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents: 586
diff changeset
1509 pref_checkbox_new_int(group, _("Store keywords and comments as XMP tags in image files"),
4cfce4ed35e0 Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents: 586
diff changeset
1510 options->save_metadata_in_image_file, &c_options->save_metadata_in_image_file);
4cfce4ed35e0 Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents: 586
diff changeset
1511
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1512 pref_spin_new_int(group, _("Custom similarity threshold:"), NULL,
342
07490120df2d Rename dupe_custom_threshold option to duplicates_similarity_threshold.
zas_
parents: 341
diff changeset
1513 0, 100, 1, options->duplicates_similarity_threshold, &c_options->duplicates_similarity_threshold);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1514
413
9e521adbf312 Add two new options to control image read buffer at runtime.
zas_
parents: 410
diff changeset
1515 group = pref_group_new(vbox, FALSE, _("Image loading and caching"), GTK_ORIENTATION_VERTICAL);
9e521adbf312 Add two new options to control image read buffer at runtime.
zas_
parents: 410
diff changeset
1516
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1517 pref_spin_new_int(group, _("Offscreen cache size (Mb per image):"), NULL,
334
df868b947aa0 Rename image-related options.
zas_
parents: 333
diff changeset
1518 0, 128, 1, options->image.tile_cache_max, &c_options->image.tile_cache_max);
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1519
848
e1d158ac6d36 cache size made configurable
nadvornik
parents: 825
diff changeset
1520 pref_spin_new_int(group, _("Decoded image cache size (Mb):"), NULL,
e1d158ac6d36 cache size made configurable
nadvornik
parents: 825
diff changeset
1521 0, 1024, 1, options->image.image_cache_max, &c_options->image.image_cache_max);
e1d158ac6d36 cache size made configurable
nadvornik
parents: 825
diff changeset
1522
413
9e521adbf312 Add two new options to control image read buffer at runtime.
zas_
parents: 410
diff changeset
1523 pref_spin_new_int(group, _("Image read buffer size (bytes):"), NULL,
9e521adbf312 Add two new options to control image read buffer at runtime.
zas_
parents: 410
diff changeset
1524 IMAGE_LOADER_READ_BUFFER_SIZE_MIN, IMAGE_LOADER_READ_BUFFER_SIZE_MAX, 512,
9e521adbf312 Add two new options to control image read buffer at runtime.
zas_
parents: 410
diff changeset
1525 options->image.read_buffer_size, &c_options->image.read_buffer_size);
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1526
413
9e521adbf312 Add two new options to control image read buffer at runtime.
zas_
parents: 410
diff changeset
1527 pref_spin_new_int(group, _("Image idle loop read count:"), NULL,
9e521adbf312 Add two new options to control image read buffer at runtime.
zas_
parents: 410
diff changeset
1528 IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MIN, IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MAX, 1,
9e521adbf312 Add two new options to control image read buffer at runtime.
zas_
parents: 410
diff changeset
1529 options->image.idle_read_loop_count, &c_options->image.idle_read_loop_count);
9e521adbf312 Add two new options to control image read buffer at runtime.
zas_
parents: 410
diff changeset
1530
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1531
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1532 group = pref_group_new(vbox, FALSE, _("Color profiles"), GTK_ORIENTATION_VERTICAL);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1533 #ifndef HAVE_LCMS
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1534 gtk_widget_set_sensitive(pref_group_parent(group), FALSE);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1535 #endif
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1536
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1537 table = pref_table_new(group, 3, COLOR_PROFILE_INPUTS + 2, FALSE, FALSE);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1538 gtk_table_set_col_spacings(GTK_TABLE(table), PREF_PAD_GAP);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1539
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1540 label = pref_table_label(table, 0, 0, _("Type"), 0.0);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1541 pref_label_bold(label, TRUE, FALSE);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1542
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1543 label = pref_table_label(table, 1, 0, _("Menu name"), 0.0);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1544 pref_label_bold(label, TRUE, FALSE);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1545
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1546 label = pref_table_label(table, 2, 0, _("File"), 0.0);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1547 pref_label_bold(label, TRUE, FALSE);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1548
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1549 for (i = 0; i < COLOR_PROFILE_INPUTS; i++)
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1550 {
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1551 GtkWidget *entry;
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1552 gchar *buf;
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1553
426
9fe0ca1b5263 show the AdobeRGB profile in the menu, indicate input profile from image
nadvornik
parents: 413
diff changeset
1554 buf = g_strdup_printf("Input %d:", i + COLOR_PROFILE_FILE);
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1555 pref_table_label(table, 0, i + 1, buf, 1.0);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1556 g_free(buf);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1557
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1558 entry = gtk_entry_new();
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1559 gtk_entry_set_max_length(GTK_ENTRY(entry), EDITOR_NAME_MAX_LENGTH);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1560 gtk_widget_set_size_request(editor_name_entry[i], 30, -1);
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
1561 if (options->color_profile.input_name[i])
320
c74af1cbd61a Move more options to ConfOptions.
zas_
parents: 319
diff changeset
1562 {
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
1563 gtk_entry_set_text(GTK_ENTRY(entry), options->color_profile.input_name[i]);
320
c74af1cbd61a Move more options to ConfOptions.
zas_
parents: 319
diff changeset
1564 }
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1565 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, i + 1, i + 2,
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1566 GTK_FILL | GTK_EXPAND, 0, 0, 0);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1567 gtk_widget_show(entry);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1568 color_profile_input_name_entry[i] = entry;
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1569
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
1570 tabcomp = tab_completion_new(&entry, options->color_profile.input_file[i], NULL, NULL);
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1571 tab_completion_add_select_button(entry, _("Select color profile"), FALSE);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1572 gtk_widget_set_size_request(entry, 160, -1);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1573 gtk_table_attach(GTK_TABLE(table), tabcomp, 2, 3, i + 1, i + 2,
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1574 GTK_FILL | GTK_EXPAND, 0, 0, 0);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1575 gtk_widget_show(tabcomp);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1576 color_profile_input_file_entry[i] = entry;
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1577 }
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1578
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1579 pref_table_label(table, 0, COLOR_PROFILE_INPUTS + 1, _("Screen:"), 1.0);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1580 tabcomp = tab_completion_new(&color_profile_screen_file_entry,
327
049d6b00cc14 Rename color profile options.
zas_
parents: 326
diff changeset
1581 options->color_profile.screen_file, NULL, NULL);
113
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1582 tab_completion_add_select_button(color_profile_screen_file_entry, _("Select color profile"), FALSE);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1583 gtk_widget_set_size_request(color_profile_screen_file_entry, 160, -1);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1584 gtk_table_attach(GTK_TABLE(table), tabcomp, 2, 3,
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1585 COLOR_PROFILE_INPUTS + 1, COLOR_PROFILE_INPUTS + 2,
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1586 GTK_FILL | GTK_EXPAND, 0, 0, 0);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1587 gtk_widget_show(tabcomp);
55166d93498d Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents: 91
diff changeset
1588
227
41fc4bfc8b25 Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents: 226
diff changeset
1589 #ifdef DEBUG
41fc4bfc8b25 Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents: 226
diff changeset
1590 group = pref_group_new(vbox, FALSE, _("Debugging"), GTK_ORIENTATION_VERTICAL);
41fc4bfc8b25 Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents: 226
diff changeset
1591
41fc4bfc8b25 Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents: 226
diff changeset
1592 pref_spin_new_int(group, _("Debug level:"), NULL,
507
135570a8bd96 Move debug macros from main.h to new debug.h.
zas_
parents: 497
diff changeset
1593 DEBUG_LEVEL_MIN, DEBUG_LEVEL_MAX, 1, get_debug_level(), &debug_c);
227
41fc4bfc8b25 Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents: 226
diff changeset
1594 #endif
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1595 }
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1596
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1597 /* Main preferences window */
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1598 static void config_window_create(void)
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1599 {
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1600 GtkWidget *win_vbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1601 GtkWidget *hbox;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1602 GtkWidget *notebook;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1603 GtkWidget *button;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1604 GtkWidget *ct_button;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1605
321
20d9b3cd7434 options_c -> c_options
zas_
parents: 320
diff changeset
1606 if (!c_options) c_options = init_options(NULL);
318
b16b9b8979e5 Add a new struct ConfOptions to handle options.
zas_
parents: 298
diff changeset
1607
289
6a7298988a7a Simplify and unify gtk_window creation with the help of
zas_
parents: 288
diff changeset
1608 configwindow = window_new(GTK_WINDOW_TOPLEVEL, "preferences", PIXBUF_INLINE_ICON_CONFIG, NULL, _("Preferences"));
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1609 gtk_window_set_type_hint(GTK_WINDOW(configwindow), GDK_WINDOW_TYPE_HINT_DIALOG);
513
985fdfebd89e Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents: 512
diff changeset
1610 g_signal_connect(G_OBJECT(configwindow), "delete_event",
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1611 G_CALLBACK(config_window_delete), NULL);
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1612 gtk_window_set_default_size(GTK_WINDOW(configwindow), CONFIG_WINDOW_DEF_WIDTH, CONFIG_WINDOW_DEF_HEIGHT);
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1613 gtk_window_set_resizable(GTK_WINDOW(configwindow), TRUE);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1614 gtk_container_set_border_width(GTK_CONTAINER(configwindow), PREF_PAD_BORDER);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1615
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1616 win_vbox = gtk_vbox_new(FALSE, PREF_PAD_SPACE);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1617 gtk_container_add(GTK_CONTAINER(configwindow), win_vbox);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1618 gtk_widget_show(win_vbox);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1619
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1620 hbox = gtk_hbutton_box_new();
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1621 gtk_button_box_set_layout(GTK_BUTTON_BOX(hbox), GTK_BUTTONBOX_END);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1622 gtk_box_set_spacing(GTK_BOX(hbox), PREF_PAD_BUTTON_GAP);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1623 gtk_box_pack_end(GTK_BOX(win_vbox), hbox, FALSE, FALSE, 0);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1624 gtk_widget_show(hbox);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1625
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1626 button = pref_button_new(NULL, GTK_STOCK_OK, NULL, FALSE,
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1627 G_CALLBACK(config_window_ok_cb), NULL);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1628 gtk_container_add(GTK_CONTAINER(hbox), button);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1629 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1630 gtk_widget_grab_default(button);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1631 gtk_widget_show(button);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1632
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1633 ct_button = button;
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1634
1024
c92e5a5c3bfa Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents: 1001
diff changeset
1635 button = pref_button_new(NULL, GTK_STOCK_SAVE, NULL, FALSE,
c92e5a5c3bfa Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents: 1001
diff changeset
1636 G_CALLBACK(config_window_save_cb), NULL);
c92e5a5c3bfa Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents: 1001
diff changeset
1637 gtk_container_add(GTK_CONTAINER(hbox), button);
c92e5a5c3bfa Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents: 1001
diff changeset
1638 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
c92e5a5c3bfa Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents: 1001
diff changeset
1639 gtk_widget_show(button);
c92e5a5c3bfa Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents: 1001
diff changeset
1640
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1641 button = pref_button_new(NULL, GTK_STOCK_APPLY, NULL, FALSE,
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1642 G_CALLBACK(config_window_apply_cb), NULL);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1643 gtk_container_add(GTK_CONTAINER(hbox), button);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1644 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1645 gtk_widget_show(button);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1646
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1647 button = pref_button_new(NULL, GTK_STOCK_CANCEL, NULL, FALSE,
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1648 G_CALLBACK(config_window_close_cb), NULL);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1649 gtk_container_add(GTK_CONTAINER(hbox), button);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1650 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1651 gtk_widget_show(button);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1652
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1653 if (!generic_dialog_get_alternative_button_order(configwindow))
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1654 {
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1655 gtk_box_reorder_child(GTK_BOX(hbox), ct_button, -1);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1656 }
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1657
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1658 notebook = gtk_notebook_new();
512
f9bf33be53ff Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents: 507
diff changeset
1659 gtk_notebook_set_tab_pos(GTK_NOTEBOOK(notebook), GTK_POS_TOP);
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1660 gtk_box_pack_start(GTK_BOX(win_vbox), notebook, TRUE, TRUE, 0);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1661
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1662 config_tab_general(notebook);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1663 config_tab_image(notebook);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1664 config_tab_windows(notebook);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1665 config_tab_filtering(notebook);
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1666 config_tab_editors(notebook);
256
088b335f2d67 Rename exif preferences tab to "Properties", and name the
zas_
parents: 254
diff changeset
1667 config_tab_properties(notebook);
230
4b2fbfafa511 Move tabs code from config_window_create() to new smaller functions.
zas_
parents: 227
diff changeset
1668 config_tab_advanced(notebook);
227
41fc4bfc8b25 Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents: 226
diff changeset
1669
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1670 gtk_widget_show(notebook);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1671
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1672 gtk_widget_show(configwindow);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1673 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1674
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1675 /*
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1676 *-----------------------------------------------------------------------------
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1677 * config window show (public)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1678 *-----------------------------------------------------------------------------
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 441
diff changeset
1679 */
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1680
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1681 void show_config_window(void)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1682 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1683 if (configwindow)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1684 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1685 gtk_window_present(GTK_WINDOW(configwindow));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1686 return;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1687 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1688
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1689 config_window_create();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1690 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1691
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1692 /*
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1693 *-----------------
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1694 * about window
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1695 *-----------------
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1696 */
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1697
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1698 static GtkWidget *about = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1699
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1700 static gint about_delete_cb(GtkWidget *widget, GdkEventAny *event, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1701 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1702 gtk_widget_destroy(about);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1703 about = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1704
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1705 return TRUE;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1706 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1707
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1708 static void about_window_close(GtkWidget *widget, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1709 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1710 if (!about) return;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1711
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1712 gtk_widget_destroy(about);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1713 about = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1714 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1715
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1716 static void about_credits_cb(GtkWidget *widget, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1717 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1718 help_window_show("credits");
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1719 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1720
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1721 void show_about_window(void)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1722 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1723 GtkWidget *vbox;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1724 GtkWidget *hbox;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1725 GtkWidget *label;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1726 GtkWidget *button;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1727 GdkPixbuf *pixbuf;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1728
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1729 gchar *buf;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1730
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1731 if (about)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1732 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1733 gtk_window_present(GTK_WINDOW(about));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1734 return;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1735 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1736
289
6a7298988a7a Simplify and unify gtk_window creation with the help of
zas_
parents: 288
diff changeset
1737 about = window_new(GTK_WINDOW_TOPLEVEL, "about", NULL, NULL, _("About"));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1738 gtk_window_set_type_hint(GTK_WINDOW(about), GDK_WINDOW_TYPE_HINT_DIALOG);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1739 g_signal_connect(G_OBJECT(about), "delete_event",
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1740 G_CALLBACK(about_delete_cb), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1741
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1742 gtk_container_set_border_width(GTK_CONTAINER(about), PREF_PAD_BORDER);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1743
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1744 vbox = gtk_vbox_new(FALSE, PREF_PAD_SPACE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1745 gtk_container_add(GTK_CONTAINER(about), vbox);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1746 gtk_widget_show(vbox);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1747
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1748 pixbuf = pixbuf_inline(PIXBUF_INLINE_LOGO);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1749 button = gtk_image_new_from_pixbuf(pixbuf);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1750 g_object_unref(pixbuf);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1751 gtk_box_pack_start(GTK_BOX(vbox), button, TRUE, TRUE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1752 gtk_widget_show(button);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1753
475
48c8e49b571c updated copyright in source files
nadvornik
parents: 469
diff changeset
1754 buf = g_strdup_printf(_("%s %s\n\nCopyright (c) 2006 John Ellis\nCopyright (c) %s The Geeqie Team\nwebsite: %s\nemail: %s\n\nReleased under the GNU General Public License"),
288
d1f74154463e Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents: 283
diff changeset
1755 GQ_APPNAME,
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1756 VERSION,
475
48c8e49b571c updated copyright in source files
nadvornik
parents: 469
diff changeset
1757 "2008",
288
d1f74154463e Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents: 283
diff changeset
1758 GQ_WEBSITE,
d1f74154463e Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents: 283
diff changeset
1759 GQ_EMAIL_ADDRESS);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1760 label = gtk_label_new(buf);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1761 g_free(buf);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1762
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1763 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_CENTER);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1764 gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1765 gtk_widget_show(label);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1766
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1767 hbox = gtk_hbutton_box_new();
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1768 gtk_button_box_set_layout(GTK_BUTTON_BOX(hbox), GTK_BUTTONBOX_END);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1769 gtk_box_set_spacing(GTK_BOX(hbox), PREF_PAD_BUTTON_GAP);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1770 gtk_box_pack_end(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1771 gtk_widget_show(hbox);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1772
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1773 button = pref_button_new(NULL, NULL, _("Credits..."), FALSE,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1774 G_CALLBACK(about_credits_cb), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1775 gtk_container_add(GTK_CONTAINER(hbox), button);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1776 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1777 gtk_widget_show(button);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1778
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1779 button = pref_button_new(NULL, GTK_STOCK_CLOSE, NULL, FALSE,
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1780 G_CALLBACK(about_window_close), NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1781 gtk_container_add(GTK_CONTAINER(hbox), button);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1782 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1783 gtk_widget_grab_default(button);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1784 gtk_widget_show(button);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1785
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1786 gtk_widget_show(about);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1787 }