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