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