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