Mercurial > geeqie.yaz
annotate src/main.c @ 1061:156a58224c85
Better handling of accels map file writing errors.
Secure save is also used for those now, at the expense of
a bit of duplication of gtk functions.
It should fix bug 2146917 (debian BTS #501131), reported by
Stanislav Maslovski.
author | zas_ |
---|---|
date | Sun, 12 Oct 2008 08:36:53 +0000 |
parents | 1646720364cf |
children | 822d98c18062 |
rev | line source |
---|---|
1 | 1 /* |
196 | 2 * Geeqie |
79
528e3432e0c0
Thu Oct 19 07:23:37 2006 John Ellis <johne@verizon.net>
gqview
parents:
76
diff
changeset
|
3 * (C) 2006 John Ellis |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
1 | 5 * |
6 * Author: John Ellis | |
7 * | |
9 | 8 * This software is released under the GNU General Public License (GNU GPL). |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
1 | 11 */ |
12 | |
9 | 13 |
281 | 14 #include "main.h" |
9 | 15 |
16 #include "cache.h" | |
17 #include "collect.h" | |
18 #include "collect-io.h" | |
586 | 19 #include "filedata.h" |
20 #include "filefilter.h" | |
902 | 21 #include "history_list.h" |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
214
diff
changeset
|
22 #include "image-overlay.h" |
9 | 23 #include "layout.h" |
24 #include "layout_image.h" | |
1019 | 25 #include "options.h" |
9 | 26 #include "remote.h" |
1061 | 27 #include "secure_save.h" |
9 | 28 #include "similar.h" |
29 #include "ui_fileops.h" | |
30 #include "ui_utildlg.h" | |
793 | 31 #include "cache_maint.h" |
877 | 32 #include "thumb.h" |
9 | 33 |
1 | 34 #include <gdk/gdkkeysyms.h> /* for keyboard values */ |
35 | |
9 | 36 |
37 #include <math.h> | |
653 | 38 #ifdef G_OS_UNIX |
39 #include <pwd.h> | |
40 #endif | |
9 | 41 |
42 | |
279 | 43 static RemoteConnection *remote_connection = NULL; |
9 | 44 |
1 | 45 |
46 /* | |
47 *----------------------------------------------------------------------------- | |
48 * keyboard functions | |
49 *----------------------------------------------------------------------------- | |
50 */ | |
51 | |
52 void keyboard_scroll_calc(gint *x, gint *y, GdkEventKey *event) | |
53 { | |
54 static gint delta = 0; | |
55 static guint32 time_old = 0; | |
56 static guint keyval_old = 0; | |
57 | |
9 | 58 if (event->state & GDK_CONTROL_MASK) |
59 { | |
60 if (*x < 0) *x = G_MININT / 2; | |
61 if (*x > 0) *x = G_MAXINT / 2; | |
62 if (*y < 0) *y = G_MININT / 2; | |
63 if (*y > 0) *y = G_MAXINT / 2; | |
64 | |
65 return; | |
66 } | |
67 | |
318 | 68 if (options->progressive_key_scrolling) |
1 | 69 { |
70 guint32 time_diff; | |
71 | |
72 time_diff = event->time - time_old; | |
73 | |
74 /* key pressed within 125ms ? (1/8 second) */ | |
75 if (time_diff > 125 || event->keyval != keyval_old) delta = 0; | |
76 | |
77 time_old = event->time; | |
78 keyval_old = event->keyval; | |
79 | |
80 delta += 2; | |
81 } | |
82 else | |
83 { | |
84 delta = 8; | |
85 } | |
86 | |
87 *x = *x * delta; | |
88 *y = *y * delta; | |
89 } | |
90 | |
9 | 91 |
1 | 92 |
93 /* | |
94 *----------------------------------------------------------------------------- | |
3 | 95 * command line parser (private) hehe, who needs popt anyway? |
1 | 96 *----------------------------------------------------------------------------- |
442 | 97 */ |
1 | 98 |
9 | 99 static gint startup_blank = FALSE; |
3 | 100 static gint startup_full_screen = FALSE; |
101 static gint startup_in_slideshow = FALSE; | |
9 | 102 static gint startup_command_line_collection = FALSE; |
3 | 103 |
9 | 104 |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
105 static void parse_command_line_add_file(const gchar *file_path, gchar **path, gchar **file, |
442 | 106 GList **list, GList **collection_list) |
1 | 107 { |
9 | 108 gchar *path_parsed; |
109 | |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
110 path_parsed = g_strdup(file_path); |
9 | 111 parse_out_relatives(path_parsed); |
112 | |
781
2d2cca2bceb0
Replace hardcoded collection filename extension by a macro (GQ_COLLECTION_EXT).
zas_
parents:
780
diff
changeset
|
113 if (file_extension_match(path_parsed, GQ_COLLECTION_EXT)) |
9 | 114 { |
115 *collection_list = g_list_append(*collection_list, path_parsed); | |
116 } | |
117 else | |
118 { | |
119 if (!*path) *path = remove_level_from_path(path_parsed); | |
120 if (!*file) *file = g_strdup(path_parsed); | |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
121 *list = g_list_prepend(*list, file_data_new_simple(path_parsed)); |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
122 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
123 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
124 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
125 static void parse_command_line_add_dir(const gchar *dir, gchar **path, gchar **file, |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
126 GList **list) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
127 { |
780
44128da39e13
Drop initialization to NULL since filelist_read() will take care of it.
zas_
parents:
767
diff
changeset
|
128 GList *files; |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
129 gchar *path_parsed; |
783 | 130 FileData *dir_fd; |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
131 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
132 path_parsed = g_strdup(dir); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
133 parse_out_relatives(path_parsed); |
783 | 134 dir_fd = file_data_new_simple(path_parsed); |
135 | |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
136 |
783 | 137 if (filelist_read(dir_fd, &files, NULL)) |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
138 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
139 GList *work; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
140 |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
141 files = filelist_filter(files, FALSE); |
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
142 files = filelist_sort_path(files); |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
143 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
144 work = files; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
145 while (work) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
146 { |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
147 FileData *fd = work->data; |
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
148 if (!*path) *path = remove_level_from_path(fd->path); |
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
149 if (!*file) *file = g_strdup(fd->path); |
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
150 *list = g_list_prepend(*list, fd); |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
151 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
152 work = work->next; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
153 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
154 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
155 g_list_free(files); |
9 | 156 } |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
157 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
158 g_free(path_parsed); |
783 | 159 file_data_unref(dir_fd); |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
160 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
161 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
162 static void parse_command_line_process_dir(const gchar *dir, gchar **path, gchar **file, |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
163 GList **list, gchar **first_dir) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
164 { |
442 | 165 |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
166 if (!*list && !*first_dir) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
167 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
168 *first_dir = g_strdup(dir); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
169 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
170 else |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
171 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
172 if (*first_dir) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
173 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
174 parse_command_line_add_dir(*first_dir, path, file, list); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
175 g_free(*first_dir); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
176 *first_dir = NULL; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
177 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
178 parse_command_line_add_dir(dir, path, file, list); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
179 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
180 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
181 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
182 static void parse_command_line_process_file(const gchar *file_path, gchar **path, gchar **file, |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
183 GList **list, GList **collection_list, gchar **first_dir) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
184 { |
442 | 185 |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
186 if (*first_dir) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
187 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
188 parse_command_line_add_dir(*first_dir, path, file, list); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
189 g_free(*first_dir); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
190 *first_dir = NULL; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
191 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
192 parse_command_line_add_file(file_path, path, file, list, collection_list); |
9 | 193 } |
194 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
995
diff
changeset
|
195 static void parse_command_line(gint argc, gchar *argv[], gchar **path, gchar **file, |
81
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
196 GList **cmd_list, GList **collection_list, |
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
197 gchar **geometry) |
9 | 198 { |
199 GList *list = NULL; | |
200 GList *remote_list = NULL; | |
652
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
201 GList *remote_errors = NULL; |
9 | 202 gint remote_do = FALSE; |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
203 gchar *first_dir = NULL; |
9 | 204 |
1 | 205 if (argc > 1) |
206 { | |
207 gint i; | |
208 gchar *base_dir = get_current_dir(); | |
209 i = 1; | |
210 while (i < argc) | |
211 { | |
9 | 212 const gchar *cmd_line = argv[i]; |
702
e07895754e65
Drop concat_dir_and_file() and use g_build_filename() instead.
zas_
parents:
694
diff
changeset
|
213 gchar *cmd_all = g_build_filename(base_dir, cmd_line, NULL); |
1 | 214 |
726 | 215 if (cmd_line[0] == G_DIR_SEPARATOR && isdir(cmd_line)) |
1 | 216 { |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
217 parse_command_line_process_dir(cmd_line, path, file, &list, &first_dir); |
1 | 218 } |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
219 else if (isdir(cmd_all)) |
1 | 220 { |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
221 parse_command_line_process_dir(cmd_all, path, file, &list, &first_dir); |
1 | 222 } |
726 | 223 else if (cmd_line[0] == G_DIR_SEPARATOR && isfile(cmd_line)) |
1 | 224 { |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
225 parse_command_line_process_file(cmd_line, path, file, |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
226 &list, collection_list, &first_dir); |
1 | 227 } |
9 | 228 else if (isfile(cmd_all)) |
1 | 229 { |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
230 parse_command_line_process_file(cmd_all, path, file, |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
231 &list, collection_list, &first_dir); |
1 | 232 } |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
233 else if (strncmp(cmd_line, "--debug", 7) == 0 && (cmd_line[7] == '\0' || cmd_line[7] == '=')) |
1 | 234 { |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
235 /* do nothing but do not produce warnings */ |
1 | 236 } |
237 else if (strcmp(cmd_line, "+t") == 0 || | |
3 | 238 strcmp(cmd_line, "--with-tools") == 0) |
1 | 239 { |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
240 options->layout.tools_float = FALSE; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
241 options->layout.tools_hidden = FALSE; |
9 | 242 |
243 remote_list = g_list_append(remote_list, "+t"); | |
1 | 244 } |
245 else if (strcmp(cmd_line, "-t") == 0 || | |
3 | 246 strcmp(cmd_line, "--without-tools") == 0) |
1 | 247 { |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
248 options->layout.tools_hidden = TRUE; |
9 | 249 |
250 remote_list = g_list_append(remote_list, "-t"); | |
1 | 251 } |
3 | 252 else if (strcmp(cmd_line, "-f") == 0 || |
253 strcmp(cmd_line, "--fullscreen") == 0) | |
254 { | |
255 startup_full_screen = TRUE; | |
256 } | |
257 else if (strcmp(cmd_line, "-s") == 0 || | |
258 strcmp(cmd_line, "--slideshow") == 0) | |
259 { | |
260 startup_in_slideshow = TRUE; | |
261 } | |
9 | 262 else if (strcmp(cmd_line, "-l") == 0 || |
263 strcmp(cmd_line, "--list") == 0) | |
264 { | |
265 startup_command_line_collection = TRUE; | |
266 } | |
81
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
267 else if (strncmp(cmd_line, "--geometry=", 11) == 0) |
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
268 { |
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
269 if (!*geometry) *geometry = g_strdup(cmd_line + 11); |
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
270 } |
9 | 271 else if (strcmp(cmd_line, "-r") == 0 || |
272 strcmp(cmd_line, "--remote") == 0) | |
273 { | |
274 if (!remote_do) | |
275 { | |
276 remote_do = TRUE; | |
652
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
277 remote_list = remote_build_list(remote_list, argc - i, &argv[i], &remote_errors); |
9 | 278 } |
279 } | |
280 else if (strcmp(cmd_line, "-rh") == 0 || | |
281 strcmp(cmd_line, "--remote-help") == 0) | |
282 { | |
279 | 283 remote_help(); |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
509
diff
changeset
|
284 exit(0); |
9 | 285 } |
286 else if (strcmp(cmd_line, "--blank") == 0) | |
287 { | |
288 startup_blank = TRUE; | |
289 } | |
290 else if (strcmp(cmd_line, "-v") == 0 || | |
291 strcmp(cmd_line, "--version") == 0) | |
292 { | |
694 | 293 printf_term("%s %s\n", GQ_APPNAME, VERSION); |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
509
diff
changeset
|
294 exit(0); |
9 | 295 } |
296 else if (strcmp(cmd_line, "--alternate") == 0) | |
297 { | |
298 /* enable faster experimental algorithm */ | |
673
fbebf5cf4a55
Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents:
671
diff
changeset
|
299 log_printf("Alternate similarity algorithm enabled\n"); |
9 | 300 image_sim_alternate_set(TRUE); |
301 } | |
3 | 302 else if (strcmp(cmd_line, "-h") == 0 || |
303 strcmp(cmd_line, "--help") == 0) | |
1 | 304 { |
694 | 305 printf_term("%s %s\n", GQ_APPNAME, VERSION); |
403 | 306 printf_term(_("Usage: %s [options] [path]\n\n"), GQ_APPNAME_LC); |
9 | 307 print_term(_("valid options are:\n")); |
308 print_term(_(" +t, --with-tools force show of tools\n")); | |
309 print_term(_(" -t, --without-tools force hide of tools\n")); | |
310 print_term(_(" -f, --fullscreen start in full screen mode\n")); | |
311 print_term(_(" -s, --slideshow start in slideshow mode\n")); | |
312 print_term(_(" -l, --list open collection window for command line\n")); | |
81
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
313 print_term(_(" --geometry=GEOMETRY set main window location\n")); |
9 | 314 print_term(_(" -r, --remote send following commands to open window\n")); |
315 print_term(_(" -rh,--remote-help print remote command list\n")); | |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
218
diff
changeset
|
316 #ifdef DEBUG |
379 | 317 print_term(_(" --debug[=level] turn on debug output\n")); |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
218
diff
changeset
|
318 #endif |
9 | 319 print_term(_(" -v, --version print version info\n")); |
320 print_term(_(" -h, --help show this message\n\n")); | |
442 | 321 |
9 | 322 #if 0 |
323 /* these options are not officially supported! | |
324 * only for testing new features, no need to translate them */ | |
325 print_term( " --alternate use alternate similarity algorithm\n"); | |
326 #endif | |
442 | 327 |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
509
diff
changeset
|
328 exit(0); |
1 | 329 } |
9 | 330 else if (!remote_do) |
1 | 331 { |
403 | 332 printf_term(_("invalid or ignored: %s\nUse --help for options\n"), cmd_line); |
1 | 333 } |
9 | 334 |
1 | 335 g_free(cmd_all); |
336 i++; | |
337 } | |
338 g_free(base_dir); | |
339 parse_out_relatives(*path); | |
340 parse_out_relatives(*file); | |
341 } | |
9 | 342 |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
343 list = g_list_reverse(list); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
344 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
345 if (!*path && first_dir) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
346 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
347 *path = first_dir; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
348 first_dir = NULL; |
79
528e3432e0c0
Thu Oct 19 07:23:37 2006 John Ellis <johne@verizon.net>
gqview
parents:
76
diff
changeset
|
349 |
528e3432e0c0
Thu Oct 19 07:23:37 2006 John Ellis <johne@verizon.net>
gqview
parents:
76
diff
changeset
|
350 parse_out_relatives(*path); |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
351 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
352 g_free(first_dir); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
353 |
9 | 354 if (remote_do) |
355 { | |
652
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
356 if (remote_errors) |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
357 { |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
358 GList *work = remote_errors; |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
359 |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
360 printf_term(_("Invalid or ignored remote options: ")); |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
361 while (work) |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
362 { |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
363 gchar *opt = work->data; |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
364 |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
365 printf_term("%s%s", (work == remote_errors) ? "" : ", ", opt); |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
366 work = work->next; |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
367 } |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
368 |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
369 printf_term(_("\nUse --remote-help for valid remote options.\n")); |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
370 } |
9bcfd6d7a902
Display a message when invalid remote options are used.
zas_
parents:
649
diff
changeset
|
371 |
279 | 372 remote_control(argv[0], remote_list, *path, list, *collection_list); |
9 | 373 } |
374 g_list_free(remote_list); | |
375 | |
376 if (list && list->next) | |
377 { | |
378 *cmd_list = list; | |
379 } | |
380 else | |
381 { | |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
382 filelist_free(list); |
9 | 383 *cmd_list = NULL; |
384 } | |
1 | 385 } |
386 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
995
diff
changeset
|
387 static void parse_command_line_for_debug_option(gint argc, gchar *argv[]) |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
388 { |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
389 #ifdef DEBUG |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
390 const gchar *debug_option = "--debug"; |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
391 gint len = strlen(debug_option); |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
392 |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
393 if (argc > 1) |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
394 { |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
395 gint i; |
442 | 396 |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
397 for (i = 1; i < argc; i++) |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
398 { |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
399 const gchar *cmd_line = argv[i]; |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
400 if (strncmp(cmd_line, debug_option, len) == 0) |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
401 { |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
402 gint cmd_line_len = strlen(cmd_line); |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
403 |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
404 /* we now increment the debug state for verbosity */ |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
405 if (cmd_line_len == len) |
507 | 406 debug_level_add(1); |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
407 else if (cmd_line[len] == '=' && g_ascii_isdigit(cmd_line[len+1])) |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
408 { |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
409 gint n = atoi(cmd_line + len + 1); |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
410 if (n < 0) n = 1; |
507 | 411 debug_level_add(n); |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
412 } |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
413 } |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
414 } |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
415 } |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
416 |
507 | 417 DEBUG_1("debugging output enabled (level %d)", get_debug_level()); |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
418 #endif |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
419 } |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
420 |
1 | 421 /* |
422 *----------------------------------------------------------------------------- | |
423 * startup, init, and exit | |
424 *----------------------------------------------------------------------------- | |
442 | 425 */ |
1 | 426 |
9 | 427 #define RC_HISTORY_NAME "history" |
428 | |
429 static void keys_load(void) | |
430 { | |
431 gchar *path; | |
432 | |
714 | 433 path = g_build_filename(homedir(), GQ_RC_DIR, RC_HISTORY_NAME, NULL); |
9 | 434 history_list_load(path); |
435 g_free(path); | |
436 } | |
437 | |
438 static void keys_save(void) | |
439 { | |
440 gchar *path; | |
441 | |
714 | 442 path = g_build_filename(homedir(), GQ_RC_DIR, RC_HISTORY_NAME, NULL); |
9 | 443 history_list_save(path); |
444 g_free(path); | |
445 } | |
446 | |
447 static void check_for_home_path(gchar *path) | |
1 | 448 { |
9 | 449 gchar *buf; |
450 | |
714 | 451 buf = g_build_filename(homedir(), path, NULL); |
9 | 452 if (!isdir(buf)) |
453 { | |
694 | 454 log_printf(_("Creating %s dir:%s\n"), GQ_APPNAME, buf); |
442 | 455 |
9 | 456 if (!mkdir_utf8(buf, 0755)) |
457 { | |
694 | 458 log_printf(_("Could not create dir:%s\n"), buf); |
9 | 459 } |
460 } | |
461 g_free(buf); | |
462 } | |
463 | |
1061 | 464 |
465 /* We add to duplicate and modify gtk_accel_map_print() and gtk_accel_map_save() | |
466 * to improve the reliability in special cases (especially when disk is full) | |
467 * These functions are now using secure saving stuff. | |
468 */ | |
469 static void gq_accel_map_print( | |
470 gpointer data, | |
471 const gchar *accel_path, | |
472 guint accel_key, | |
473 GdkModifierType accel_mods, | |
474 gboolean changed) | |
475 { | |
476 GString *gstring = g_string_new(changed ? NULL : "; "); | |
477 SecureSaveInfo *ssi = data; | |
478 gchar *tmp, *name; | |
479 | |
480 g_string_append(gstring, "(gtk_accel_path \""); | |
481 | |
482 tmp = g_strescape(accel_path, NULL); | |
483 g_string_append(gstring, tmp); | |
484 g_free(tmp); | |
485 | |
486 g_string_append(gstring, "\" \""); | |
487 | |
488 name = gtk_accelerator_name(accel_key, accel_mods); | |
489 tmp = g_strescape(name, NULL); | |
490 g_free(name); | |
491 g_string_append(gstring, tmp); | |
492 g_free(tmp); | |
493 | |
494 g_string_append(gstring, "\")\n"); | |
495 | |
496 secure_fwrite(gstring->str, sizeof(*gstring->str), gstring->len, ssi); | |
497 | |
498 g_string_free(gstring, TRUE); | |
499 } | |
500 | |
501 static gboolean gq_accel_map_save(const gchar *path) | |
502 { | |
503 gchar *pathl; | |
504 SecureSaveInfo *ssi; | |
505 GString *gstring; | |
506 | |
507 pathl = path_from_utf8(path); | |
508 ssi = secure_open(pathl); | |
509 g_free(pathl); | |
510 if (!ssi) | |
511 { | |
512 log_printf(_("error saving file: %s\n"), path); | |
513 return FALSE; | |
514 } | |
515 | |
516 gstring = g_string_new("; "); | |
517 if (g_get_prgname()) | |
518 g_string_append(gstring, g_get_prgname()); | |
519 g_string_append(gstring, " GtkAccelMap rc-file -*- scheme -*-\n"); | |
520 g_string_append(gstring, "; this file is an automated accelerator map dump\n"); | |
521 g_string_append(gstring, ";\n"); | |
522 | |
523 secure_fwrite(gstring->str, sizeof(*gstring->str), gstring->len, ssi); | |
524 | |
525 g_string_free(gstring, TRUE); | |
526 | |
527 gtk_accel_map_foreach((gpointer) ssi, gq_accel_map_print); | |
528 | |
529 if (secure_close(ssi)) | |
530 { | |
531 log_printf(_("error saving file: %s\nerror: %s\n"), path, | |
532 secsave_strerror(secsave_errno)); | |
533 return FALSE; | |
534 } | |
535 | |
536 return TRUE; | |
537 } | |
538 | |
539 static gchar *accep_map_filename(void) | |
540 { | |
541 return g_build_filename(homedir(), GQ_RC_DIR, "accels", NULL); | |
542 } | |
543 | |
1017 | 544 static void accel_map_save(void) |
545 { | |
546 gchar *path; | |
547 | |
1061 | 548 path = accep_map_filename(); |
549 gq_accel_map_save(path); | |
1017 | 550 g_free(path); |
551 } | |
552 | |
553 static void accel_map_load(void) | |
554 { | |
555 gchar *path; | |
556 gchar *pathl; | |
557 | |
1061 | 558 path = accep_map_filename(); |
1017 | 559 pathl = path_from_utf8(path); |
560 gtk_accel_map_load(pathl); | |
561 g_free(pathl); | |
562 g_free(path); | |
563 } | |
564 | |
565 static void gtkrc_load(void) | |
566 { | |
567 gchar *path; | |
568 gchar *pathl; | |
569 | |
570 /* If a gtkrc file exists in the rc directory, add it to the | |
571 * list of files to be parsed at the end of gtk_init() */ | |
572 path = g_build_filename(homedir(), GQ_RC_DIR, "gtkrc", NULL); | |
573 pathl = path_from_utf8(path); | |
574 if (access(pathl, R_OK) == 0) | |
575 gtk_rc_add_default_file(pathl); | |
576 g_free(pathl); | |
577 g_free(path); | |
578 } | |
630
83d3ded39e49
An option to save and restore the last path used was added.
zas_
parents:
629
diff
changeset
|
579 |
739
3296f8d3a79b
Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents:
738
diff
changeset
|
580 static void exit_program_final(void) |
3296f8d3a79b
Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents:
738
diff
changeset
|
581 { |
840 | 582 LayoutWindow *lw = NULL; |
739
3296f8d3a79b
Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents:
738
diff
changeset
|
583 |
3296f8d3a79b
Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents:
738
diff
changeset
|
584 remote_close(remote_connection); |
3296f8d3a79b
Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents:
738
diff
changeset
|
585 |
3296f8d3a79b
Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents:
738
diff
changeset
|
586 collect_manager_flush(); |
3296f8d3a79b
Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents:
738
diff
changeset
|
587 |
742
a336b5545af6
Pass ConfOptions * to save_options() and load_options().
zas_
parents:
740
diff
changeset
|
588 save_options(options); |
9 | 589 keys_save(); |
1017 | 590 accel_map_save(); |
1 | 591 |
840 | 592 if (layout_valid(&lw)) |
593 { | |
594 layout_free(lw); | |
595 } | |
596 | |
1 | 597 gtk_main_quit(); |
598 } | |
599 | |
9 | 600 static GenericDialog *exit_dialog = NULL; |
601 | |
602 static void exit_confirm_cancel_cb(GenericDialog *gd, gpointer data) | |
603 { | |
604 exit_dialog = NULL; | |
605 generic_dialog_close(gd); | |
606 } | |
607 | |
608 static void exit_confirm_exit_cb(GenericDialog *gd, gpointer data) | |
609 { | |
610 exit_dialog = NULL; | |
611 generic_dialog_close(gd); | |
278 | 612 exit_program_final(); |
9 | 613 } |
614 | |
615 static gint exit_confirm_dlg(void) | |
616 { | |
617 GtkWidget *parent; | |
618 LayoutWindow *lw; | |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
619 gchar *msg; |
9 | 620 |
621 if (exit_dialog) | |
622 { | |
623 gtk_window_present(GTK_WINDOW(exit_dialog->dialog)); | |
624 return TRUE; | |
625 } | |
626 | |
627 if (!collection_window_modified_exists()) return FALSE; | |
628 | |
629 parent = NULL; | |
630 lw = NULL; | |
631 if (layout_valid(&lw)) | |
632 { | |
633 parent = lw->window; | |
634 } | |
635 | |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
636 msg = g_strdup_printf("%s - %s", GQ_APPNAME, _("exit")); |
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
637 exit_dialog = generic_dialog_new(msg, |
254
9faf34f047b1
Make the wmclass value unique among the code by defining
zas_
parents:
227
diff
changeset
|
638 GQ_WMCLASS, "exit", parent, FALSE, |
9 | 639 exit_confirm_cancel_cb, NULL); |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
640 g_free(msg); |
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
641 msg = g_strdup_printf(_("Quit %s"), GQ_APPNAME); |
9 | 642 generic_dialog_add_message(exit_dialog, GTK_STOCK_DIALOG_QUESTION, |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
643 msg, _("Collections have been modified. Quit anyway?")); |
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
644 g_free(msg); |
9 | 645 generic_dialog_add_button(exit_dialog, GTK_STOCK_QUIT, NULL, exit_confirm_exit_cb, TRUE); |
646 | |
647 gtk_widget_show(exit_dialog->dialog); | |
648 | |
649 return TRUE; | |
650 } | |
651 | |
278 | 652 void exit_program(void) |
9 | 653 { |
654 layout_image_full_screen_stop(NULL); | |
655 | |
656 if (exit_confirm_dlg()) return; | |
657 | |
278 | 658 exit_program_final(); |
9 | 659 } |
660 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
995
diff
changeset
|
661 gint main(gint argc, gchar *argv[]) |
1 | 662 { |
9 | 663 LayoutWindow *lw; |
664 gchar *path = NULL; | |
1 | 665 gchar *cmd_path = NULL; |
666 gchar *cmd_file = NULL; | |
9 | 667 GList *cmd_list = NULL; |
668 GList *collection_list = NULL; | |
669 CollectionData *first_collection = NULL; | |
81
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
670 gchar *geometry = NULL; |
9 | 671 gchar *buf; |
649 | 672 CollectionData *cd = NULL; |
1 | 673 |
1015 | 674 #ifdef HAVE_GTHREAD |
675 g_thread_init (NULL); | |
1020 | 676 gdk_threads_init(); |
677 gdk_threads_enter(); | |
1015 | 678 #endif |
679 | |
509 | 680 /* init execution time counter (debug only) */ |
681 init_exec_time(); | |
442 | 682 |
1 | 683 /* setup locale, i18n */ |
684 gtk_set_locale(); | |
686 | 685 |
687 | 686 #ifdef ENABLE_NLS |
687 bindtextdomain(PACKAGE, GQ_LOCALEDIR); | |
10 | 688 bind_textdomain_codeset(PACKAGE, "UTF-8"); |
689 textdomain(PACKAGE); | |
686 | 690 #endif |
995 | 691 |
1 | 692 /* setup random seed for random slideshow */ |
442 | 693 srand(time(NULL)); |
1 | 694 |
21
56866f205a68
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
10
diff
changeset
|
695 #if 1 |
673
fbebf5cf4a55
Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents:
671
diff
changeset
|
696 log_printf("%s %s, This is an alpha release.\n", GQ_APPNAME, VERSION); |
9 | 697 #endif |
793 | 698 |
699 /* register global notify functions */ | |
700 file_data_register_notify_func(cache_notify_cb, NULL, NOTIFY_PRIORITY_HIGH); | |
877 | 701 file_data_register_notify_func(thumb_notify_cb, NULL, NOTIFY_PRIORITY_HIGH); |
799 | 702 file_data_register_notify_func(collect_manager_notify_cb, NULL, NOTIFY_PRIORITY_LOW); |
793 | 703 |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
704 parse_command_line_for_debug_option(argc, argv); |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
705 |
318 | 706 options = init_options(NULL); |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
739
diff
changeset
|
707 setup_default_options(options); |
742
a336b5545af6
Pass ConfOptions * to save_options() and load_options().
zas_
parents:
740
diff
changeset
|
708 load_options(options); |
1 | 709 |
81
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
710 parse_command_line(argc, argv, &cmd_path, &cmd_file, &cmd_list, &collection_list, &geometry); |
9 | 711 |
1017 | 712 gtkrc_load(); |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
509
diff
changeset
|
713 gtk_init(&argc, &argv); |
9 | 714 |
715 if (gtk_major_version < GTK_MAJOR_VERSION || | |
716 (gtk_major_version == GTK_MAJOR_VERSION && gtk_minor_version < GTK_MINOR_VERSION) ) | |
717 { | |
694 | 718 log_printf("!!! This is a friendly warning.\n"); |
719 log_printf("!!! The version of GTK+ in use now is older than when %s was compiled.\n", GQ_APPNAME); | |
720 log_printf("!!! compiled with GTK+-%d.%d\n", GTK_MAJOR_VERSION, GTK_MINOR_VERSION); | |
721 log_printf("!!! running with GTK+-%d.%d\n", gtk_major_version, gtk_minor_version); | |
722 log_printf("!!! %s may quit unexpectedly with a relocation error.\n", GQ_APPNAME); | |
9 | 723 } |
724 | |
283 | 725 check_for_home_path(GQ_RC_DIR); |
726 check_for_home_path(GQ_RC_DIR_COLLECTIONS); | |
727 check_for_home_path(GQ_CACHE_RC_THUMB); | |
728 check_for_home_path(GQ_CACHE_RC_METADATA); | |
9 | 729 |
730 keys_load(); | |
731 filter_add_defaults(); | |
732 filter_rebuild(); | |
442 | 733 |
1017 | 734 accel_map_load(); |
1 | 735 |
9 | 736 if (startup_blank) |
737 { | |
738 g_free(cmd_path); | |
739 cmd_path = NULL; | |
740 g_free(cmd_file); | |
741 cmd_file = NULL; | |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
742 filelist_free(cmd_list); |
9 | 743 cmd_list = NULL; |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
744 string_list_free(collection_list); |
9 | 745 collection_list = NULL; |
746 | |
747 path = NULL; | |
748 } | |
749 else if (cmd_path) | |
750 { | |
751 path = g_strdup(cmd_path); | |
752 } | |
629 | 753 else if (options->startup.restore_path && options->startup.path && isdir(options->startup.path)) |
9 | 754 { |
629 | 755 path = g_strdup(options->startup.path); |
9 | 756 } |
1 | 757 else |
9 | 758 { |
759 path = get_current_dir(); | |
760 } | |
761 | |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
762 lw = layout_new_with_geometry(NULL, options->layout.tools_float, options->layout.tools_hidden, geometry); |
329 | 763 layout_sort_set(lw, options->file_sort.method, options->file_sort.ascending); |
9 | 764 |
765 if (collection_list && !startup_command_line_collection) | |
766 { | |
767 GList *work; | |
768 | |
769 work = collection_list; | |
770 while (work) | |
771 { | |
772 CollectWindow *cw; | |
773 const gchar *path; | |
1 | 774 |
9 | 775 path = work->data; |
776 work = work->next; | |
777 | |
778 cw = collection_window_new(path); | |
779 if (!first_collection && cw) first_collection = cw->cd; | |
780 } | |
781 } | |
782 | |
783 if (cmd_list || | |
784 (startup_command_line_collection && collection_list)) | |
785 { | |
786 GList *work; | |
787 | |
788 if (startup_command_line_collection) | |
789 { | |
790 CollectWindow *cw; | |
791 | |
792 cw = collection_window_new(""); | |
793 cd = cw->cd; | |
794 } | |
795 else | |
796 { | |
797 cd = collection_new(""); /* if we pass NULL, untitled counter is falsely increm. */ | |
798 } | |
799 | |
800 g_free(cd->path); | |
801 cd->path = NULL; | |
802 g_free(cd->name); | |
803 cd->name = g_strdup(_("Command line")); | |
804 | |
805 collection_path_changed(cd); | |
1 | 806 |
9 | 807 work = cmd_list; |
808 while (work) | |
809 { | |
138 | 810 collection_add(cd, file_data_new_simple((gchar *)work->data), FALSE); |
9 | 811 work = work->next; |
812 } | |
813 | |
814 work = collection_list; | |
815 while (work) | |
816 { | |
358 | 817 collection_load(cd, (gchar *)work->data, COLLECTION_LOAD_APPEND); |
9 | 818 work = work->next; |
819 } | |
820 | |
821 layout_set_path(lw, path); | |
822 if (cd->list) layout_image_set_collection(lw, cd, cd->list->data); | |
1 | 823 |
9 | 824 /* mem leak, we never unref this collection when !startup_command_line_collection |
825 * (the image view of the main window does not hold a ref to the collection) | |
826 * this is sort of unavoidable, for if it did hold a ref, next/back | |
827 * may not work as expected when closing collection windows. | |
828 * | |
829 * collection_unref(cd); | |
830 */ | |
831 | |
832 } | |
833 else if (cmd_file) | |
834 { | |
835 layout_set_path(lw, cmd_file); | |
836 } | |
837 else | |
838 { | |
839 layout_set_path(lw, path); | |
840 if (first_collection) | |
841 { | |
842 layout_image_set_collection(lw, first_collection, | |
843 collection_get_first(first_collection)); | |
844 } | |
845 } | |
614 | 846 |
638
8cc9f349c670
Rename option image_overlay.common.enabled to image_overlay.common.state
zas_
parents:
630
diff
changeset
|
847 image_osd_set(lw->image, options->image_overlay.common.state | (options->image_overlay.common.show_at_startup ? OSD_SHOW_INFO : OSD_SHOW_NOTHING)); |
1 | 848 |
81
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
849 g_free(geometry); |
1 | 850 g_free(cmd_path); |
851 g_free(cmd_file); | |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
852 filelist_free(cmd_list); |
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
853 string_list_free(collection_list); |
9 | 854 g_free(path); |
1 | 855 |
9 | 856 if (startup_full_screen) layout_image_full_screen_start(lw); |
857 if (startup_in_slideshow) layout_image_slideshow_start(lw); | |
858 | |
714 | 859 buf = g_build_filename(homedir(), GQ_RC_DIR, ".command", NULL); |
649 | 860 remote_connection = remote_server_init(buf, cd); |
9 | 861 g_free(buf); |
1020 | 862 |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
509
diff
changeset
|
863 gtk_main(); |
1020 | 864 #ifdef HAVE_GTHREAD |
865 gdk_threads_leave(); | |
866 #endif | |
1 | 867 return 0; |
868 } | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1022
diff
changeset
|
869 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |