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