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