Mercurial > geeqie.yaz
annotate src/main.c @ 629:1fa2cb6d9d65
Rename options:
startup_path_enable -> startup.restore_path
startup_path -> startup.path
Geeqie is still able to read old options.
author | zas_ |
---|---|
date | Sun, 11 May 2008 12:23:26 +0000 |
parents | bbe8e71cdfb2 |
children | 83d3ded39e49 |
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" | |
507 | 19 #include "debug.h" |
9 | 20 #include "dnd.h" |
21 #include "editors.h" | |
586 | 22 #include "filedata.h" |
23 #include "filefilter.h" | |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
341
diff
changeset
|
24 #include "fullscreen.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
|
25 #include "image-overlay.h" |
9 | 26 #include "img-view.h" |
27 #include "layout.h" | |
28 #include "layout_image.h" | |
29 #include "menu.h" | |
91
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
30 #include "pixbuf_util.h" |
9 | 31 #include "preferences.h" |
32 #include "rcfile.h" | |
33 #include "remote.h" | |
34 #include "similar.h" | |
35 #include "slideshow.h" | |
36 #include "utilops.h" | |
37 #include "ui_bookmark.h" | |
38 #include "ui_help.h" | |
39 #include "ui_fileops.h" | |
40 #include "ui_tabcomp.h" | |
41 #include "ui_utildlg.h" | |
42 | |
1 | 43 #include <gdk/gdkkeysyms.h> /* for keyboard values */ |
44 | |
9 | 45 |
46 #include <math.h> | |
47 | |
48 | |
279 | 49 static RemoteConnection *remote_connection = NULL; |
50 static CollectionData *command_collection = NULL; | |
9 | 51 |
1 | 52 |
53 /* | |
54 *----------------------------------------------------------------------------- | |
9 | 55 * misc (public) |
1 | 56 *----------------------------------------------------------------------------- |
442 | 57 */ |
1 | 58 |
289
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
59 GtkWidget *window_new(GtkWindowType type, const gchar *name, const gchar *icon, |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
60 const gchar *icon_file, const gchar *subtitle) |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
61 { |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
62 gchar *title; |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
63 GtkWidget *window; |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
64 |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
65 window = gtk_window_new(type); |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
66 if (!window) return NULL; |
442 | 67 |
289
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
68 if (subtitle) |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
69 { |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
70 title = g_strdup_printf("%s - %s", subtitle, GQ_APPNAME); |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
71 } |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
72 else |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
73 { |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
74 title = g_strdup_printf("%s", GQ_APPNAME); |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
75 } |
442 | 76 |
289
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
77 gtk_window_set_title(GTK_WINDOW(window), title); |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
78 g_free(title); |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
79 |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
80 window_set_icon(window, icon, icon_file); |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
81 gtk_window_set_role(GTK_WINDOW(window), name); |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
82 gtk_window_set_wmclass(GTK_WINDOW(window), name, GQ_WMCLASS); |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
83 |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
84 return window; |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
85 } |
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
86 |
91
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
87 void window_set_icon(GtkWidget *window, const gchar *icon, const gchar *file) |
1 | 88 { |
91
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
89 if (!icon && !file) icon = PIXBUF_INLINE_ICON; |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
90 |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
91 if (icon) |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
92 { |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
93 GdkPixbuf *pixbuf; |
1 | 94 |
91
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
95 pixbuf = pixbuf_inline(icon); |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
96 if (pixbuf) |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
97 { |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
98 gtk_window_set_icon(GTK_WINDOW(window), pixbuf); |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
99 g_object_unref(pixbuf); |
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
100 } |
9 | 101 } |
102 else | |
103 { | |
91
d063f97503b7
Wed Nov 1 11:39:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
81
diff
changeset
|
104 gtk_window_set_icon_from_file(GTK_WINDOW(window), file, NULL); |
9 | 105 } |
106 } | |
1 | 107 |
9 | 108 gint window_maximized(GtkWidget *window) |
109 { | |
110 GdkWindowState state; | |
111 | |
112 if (!window || !window->window) return FALSE; | |
113 | |
114 state = gdk_window_get_state(window->window); | |
115 return (state & GDK_WINDOW_STATE_MAXIMIZED); | |
116 } | |
117 | |
118 gdouble get_zoom_increment(void) | |
119 { | |
334 | 120 return ((options->image.zoom_increment != 0) ? (gdouble)options->image.zoom_increment / 10.0 : 1.0); |
1 | 121 } |
122 | |
386
0226daf8c30b
in debug mode print time information on selected events
nadvornik
parents:
380
diff
changeset
|
123 |
1 | 124 /* |
125 *----------------------------------------------------------------------------- | |
9 | 126 * Open browser with the help Documentation |
127 *----------------------------------------------------------------------------- | |
128 */ | |
129 | |
130 static gchar *command_result(const gchar *binary, const gchar *command) | |
131 { | |
132 gchar *result = NULL; | |
133 FILE *f; | |
134 char buf[2048]; | |
135 int l; | |
136 | |
137 if (!binary) return NULL; | |
138 if (!file_in_path(binary)) return NULL; | |
139 | |
140 if (!command) return g_strdup(binary); | |
141 if (command[0] == '!') return g_strdup(command + 1); | |
142 | |
143 f = popen(command, "r"); | |
144 if (!f) return NULL; | |
145 | |
146 while ((l = fread(buf, sizeof(char), sizeof(buf), f)) > 0) | |
147 { | |
148 if (!result) | |
149 { | |
150 int n = 0; | |
151 | |
152 while (n < l && buf[n] != '\n' && buf[n] != '\r') n++; | |
153 if (n > 0) result = g_strndup(buf, n); | |
154 } | |
155 } | |
156 | |
157 pclose(f); | |
158 | |
159 return result; | |
160 } | |
161 | |
162 static void help_browser_command(const gchar *command, const gchar *path) | |
163 { | |
164 gchar *result; | |
165 gchar *buf; | |
166 gchar *begin; | |
167 gchar *end; | |
168 | |
169 if (!command || !path) return; | |
170 | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
171 DEBUG_1("Help command pre \"%s\", \"%s\"", command, path); |
9 | 172 |
173 buf = g_strdup(command); | |
174 begin = strstr(buf, "%s"); | |
175 if (begin) | |
176 { | |
177 *begin = '\0'; | |
178 end = begin + 2; | |
179 begin = buf; | |
180 | |
181 result = g_strdup_printf("%s%s%s &", begin, path, end); | |
182 } | |
183 else | |
184 { | |
185 result = g_strdup_printf("%s \"%s\" &", command, path); | |
186 } | |
187 g_free(buf); | |
188 | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
189 DEBUG_1("Help command post [%s]", result); |
9 | 190 |
191 system(result); | |
192 | |
193 g_free(result); | |
194 } | |
195 | |
196 /* | |
197 * each set of 2 strings is one browser: | |
198 * the 1st is the binary to look for in the path | |
199 * the 2nd has 3 capabilities: | |
200 * NULL exec binary with html file path as command line | |
201 * string exec string and use results for command line | |
202 * !string use text following ! as command line, replacing optional %s with html file path | |
203 */ | |
204 static gchar *html_browsers[] = | |
205 { | |
206 /* Redhat has a nifty htmlview script to start the user's preferred browser */ | |
207 "htmlview", NULL, | |
208 /* GNOME 2 */ | |
209 "gconftool-2", "gconftool-2 -g /desktop/gnome/url-handlers/http/command", | |
210 /* KDE */ | |
211 "kfmclient", "!kfmclient exec \"%s\"", | |
212 /* use fallbacks */ | |
213 "firefox", NULL, | |
214 "mozilla", NULL, | |
215 "konqueror", NULL, | |
216 "netscape", NULL, | |
217 NULL, NULL | |
218 }; | |
219 | |
220 static void help_browser_run(void) | |
221 { | |
222 gchar *result = NULL; | |
223 gint i; | |
224 | |
225 i = 0; | |
226 while (!result && html_browsers[i]) | |
227 { | |
228 result = command_result(html_browsers[i], html_browsers[i+1]); | |
229 i += 2; | |
230 } | |
231 | |
232 if (!result) | |
233 { | |
234 printf("Unable to detect an installed browser.\n"); | |
235 return; | |
236 } | |
237 | |
283 | 238 help_browser_command(result, GQ_HTMLDIR "/index.html"); |
9 | 239 |
240 g_free(result); | |
241 } | |
242 | |
243 /* | |
244 *----------------------------------------------------------------------------- | |
245 * help window | |
1 | 246 *----------------------------------------------------------------------------- |
442 | 247 */ |
1 | 248 |
9 | 249 static GtkWidget *help_window = NULL; |
250 | |
251 static void help_window_destroy_cb(GtkWidget *window, gpointer data) | |
1 | 252 { |
9 | 253 help_window = NULL; |
1 | 254 } |
255 | |
9 | 256 void help_window_show(const gchar *key) |
1 | 257 { |
9 | 258 if (key && strcmp(key, "html_contents") == 0) |
259 { | |
260 help_browser_run(); | |
261 return; | |
262 } | |
263 | |
264 if (help_window) | |
1 | 265 { |
9 | 266 gtk_window_present(GTK_WINDOW(help_window)); |
267 if (key) help_window_set_key(help_window, key); | |
268 return; | |
1 | 269 } |
9 | 270 |
628 | 271 help_window = help_window_new(_("Help"), GQ_WMCLASS, "help", |
442 | 272 GQ_HELPDIR "/README", key); |
628 | 273 |
9 | 274 g_signal_connect(G_OBJECT(help_window), "destroy", |
275 G_CALLBACK(help_window_destroy_cb), NULL); | |
1 | 276 } |
277 | |
9 | 278 |
1 | 279 /* |
280 *----------------------------------------------------------------------------- | |
281 * keyboard functions | |
282 *----------------------------------------------------------------------------- | |
283 */ | |
284 | |
285 void keyboard_scroll_calc(gint *x, gint *y, GdkEventKey *event) | |
286 { | |
287 static gint delta = 0; | |
288 static guint32 time_old = 0; | |
289 static guint keyval_old = 0; | |
290 | |
9 | 291 if (event->state & GDK_CONTROL_MASK) |
292 { | |
293 if (*x < 0) *x = G_MININT / 2; | |
294 if (*x > 0) *x = G_MAXINT / 2; | |
295 if (*y < 0) *y = G_MININT / 2; | |
296 if (*y > 0) *y = G_MAXINT / 2; | |
297 | |
298 return; | |
299 } | |
300 | |
318 | 301 if (options->progressive_key_scrolling) |
1 | 302 { |
303 guint32 time_diff; | |
304 | |
305 time_diff = event->time - time_old; | |
306 | |
307 /* key pressed within 125ms ? (1/8 second) */ | |
308 if (time_diff > 125 || event->keyval != keyval_old) delta = 0; | |
309 | |
310 time_old = event->time; | |
311 keyval_old = event->keyval; | |
312 | |
313 delta += 2; | |
314 } | |
315 else | |
316 { | |
317 delta = 8; | |
318 } | |
319 | |
320 *x = *x * delta; | |
321 *y = *y * delta; | |
322 } | |
323 | |
9 | 324 |
325 /* | |
326 *----------------------------------------------------------------------------- | |
327 * remote functions | |
328 *----------------------------------------------------------------------------- | |
329 */ | |
330 | |
331 static void gr_image_next(const gchar *text, gpointer data) | |
332 { | |
333 layout_image_next(NULL); | |
334 } | |
335 | |
336 static void gr_image_prev(const gchar *text, gpointer data) | |
337 { | |
338 layout_image_prev(NULL); | |
339 } | |
340 | |
341 static void gr_image_first(const gchar *text, gpointer data) | |
342 { | |
343 layout_image_first(NULL); | |
344 } | |
345 | |
346 static void gr_image_last(const gchar *text, gpointer data) | |
347 { | |
348 layout_image_last(NULL); | |
349 } | |
350 | |
351 static void gr_fullscreen_toggle(const gchar *text, gpointer data) | |
352 { | |
353 layout_image_full_screen_toggle(NULL); | |
354 } | |
355 | |
356 static void gr_fullscreen_start(const gchar *text, gpointer data) | |
1 | 357 { |
9 | 358 layout_image_full_screen_start(NULL); |
359 } | |
360 | |
361 static void gr_fullscreen_stop(const gchar *text, gpointer data) | |
362 { | |
363 layout_image_full_screen_stop(NULL); | |
364 } | |
365 | |
366 static void gr_slideshow_start_rec(const gchar *text, gpointer data) | |
367 { | |
368 GList *list; | |
369 | |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
370 list = filelist_recursive(text); |
9 | 371 if (!list) return; |
214 | 372 //printf("length: %d\n", g_list_length(list)); |
9 | 373 layout_image_slideshow_stop(NULL); |
374 layout_image_slideshow_start_from_list(NULL, list); | |
375 } | |
1 | 376 |
9 | 377 static void gr_slideshow_toggle(const gchar *text, gpointer data) |
378 { | |
379 layout_image_slideshow_toggle(NULL); | |
380 } | |
381 | |
382 static void gr_slideshow_start(const gchar *text, gpointer data) | |
383 { | |
384 layout_image_slideshow_start(NULL); | |
385 } | |
386 | |
387 static void gr_slideshow_stop(const gchar *text, gpointer data) | |
388 { | |
389 layout_image_slideshow_stop(NULL); | |
390 } | |
391 | |
392 static void gr_slideshow_delay(const gchar *text, gpointer data) | |
393 { | |
394 gdouble n; | |
395 | |
396 n = strtod(text, NULL); | |
397 if (n < SLIDESHOW_MIN_SECONDS || n > SLIDESHOW_MAX_SECONDS) | |
1 | 398 { |
403 | 399 printf_term("Remote slideshow delay out of range (%.1f to %.1f)\n", |
400 SLIDESHOW_MIN_SECONDS, SLIDESHOW_MAX_SECONDS); | |
9 | 401 return; |
402 } | |
326 | 403 options->slideshow.delay = (gint)(n * 10.0 + 0.01); |
9 | 404 } |
405 | |
406 static void gr_tools_show(const gchar *text, gpointer data) | |
407 { | |
408 gint popped; | |
409 gint hidden; | |
410 | |
411 if (layout_tools_float_get(NULL, &popped, &hidden) && hidden) | |
412 { | |
413 layout_tools_float_set(NULL, popped, FALSE); | |
1 | 414 } |
9 | 415 } |
1 | 416 |
9 | 417 static void gr_tools_hide(const gchar *text, gpointer data) |
418 { | |
419 gint popped; | |
420 gint hidden; | |
421 | |
422 if (layout_tools_float_get(NULL, &popped, &hidden) && !hidden) | |
1 | 423 { |
9 | 424 layout_tools_float_set(NULL, popped, TRUE); |
425 } | |
426 } | |
427 | |
428 static gint gr_quit_idle_cb(gpointer data) | |
429 { | |
278 | 430 exit_program(); |
9 | 431 |
432 return FALSE; | |
433 } | |
434 | |
435 static void gr_quit(const gchar *text, gpointer data) | |
436 { | |
437 /* schedule exit when idle, if done from within a | |
438 * remote handler remote_close will crash | |
439 */ | |
440 g_idle_add(gr_quit_idle_cb, NULL); | |
441 } | |
442 | |
443 static void gr_file_load(const gchar *text, gpointer data) | |
444 { | |
445 if (isfile(text)) | |
446 { | |
447 if (file_extension_match(text, ".gqv")) | |
1 | 448 { |
9 | 449 collection_window_new(text); |
450 } | |
451 else | |
452 { | |
453 layout_set_path(NULL, text); | |
1 | 454 } |
455 } | |
9 | 456 else if (isdir(text)) |
457 { | |
458 layout_set_path(NULL, text); | |
459 } | |
460 else | |
461 { | |
462 printf("remote sent filename that does not exist:\"%s\"\n", text); | |
463 } | |
464 } | |
465 | |
466 static void gr_file_view(const gchar *text, gpointer data) | |
467 { | |
138 | 468 view_window_new(file_data_new_simple(text)); |
9 | 469 } |
470 | |
471 static void gr_list_clear(const gchar *text, gpointer data) | |
472 { | |
279 | 473 if (command_collection) collection_unref(command_collection); |
474 command_collection = NULL; | |
9 | 475 } |
476 | |
477 static void gr_list_add(const gchar *text, gpointer data) | |
478 { | |
479 gint new = TRUE; | |
480 | |
279 | 481 if (!command_collection) |
9 | 482 { |
483 CollectionData *cd; | |
484 | |
485 cd = collection_new(""); | |
486 | |
487 g_free(cd->path); | |
488 cd->path = NULL; | |
489 g_free(cd->name); | |
490 cd->name = g_strdup(_("Command line")); | |
491 | |
279 | 492 command_collection = cd; |
9 | 493 } |
494 else | |
495 { | |
279 | 496 new = (!collection_get_first(command_collection)); |
9 | 497 } |
1 | 498 |
279 | 499 if (collection_add(command_collection, file_data_new_simple(text), FALSE) && new) |
9 | 500 { |
279 | 501 layout_image_set_collection(NULL, command_collection, |
502 collection_get_first(command_collection)); | |
9 | 503 } |
504 } | |
505 | |
506 static void gr_raise(const gchar *text, gpointer data) | |
507 { | |
508 LayoutWindow *lw = NULL; | |
509 | |
510 if (layout_valid(&lw)) | |
511 { | |
512 gtk_window_present(GTK_WINDOW(lw->window)); | |
513 } | |
514 } | |
515 | |
516 typedef struct _RemoteCommandEntry RemoteCommandEntry; | |
517 struct _RemoteCommandEntry { | |
518 gchar *opt_s; | |
519 gchar *opt_l; | |
520 void (*func)(const gchar *text, gpointer data); | |
521 gint needs_extra; | |
522 gint prefer_command_line; | |
523 gchar *description; | |
524 }; | |
525 | |
526 static RemoteCommandEntry remote_commands[] = { | |
527 /* short, long callback, extra, prefer,description */ | |
528 { "-n", "--next", gr_image_next, FALSE, FALSE, N_("next image") }, | |
529 { "-b", "--back", gr_image_prev, FALSE, FALSE, N_("previous image") }, | |
530 { NULL, "--first", gr_image_first, FALSE, FALSE, N_("first image") }, | |
442 | 531 { NULL, "--last", gr_image_last, FALSE, FALSE, N_("last image") }, |
9 | 532 { "-f", "--fullscreen", gr_fullscreen_toggle, FALSE, TRUE, N_("toggle full screen") }, |
533 { "-fs","--fullscreen-start", gr_fullscreen_start, FALSE, FALSE, N_("start full screen") }, | |
534 { "-fS","--fullscreen-stop", gr_fullscreen_stop, FALSE, FALSE, N_("stop full screen") }, | |
535 { "-s", "--slideshow", gr_slideshow_toggle, FALSE, TRUE, N_("toggle slide show") }, | |
536 { "-ss","--slideshow-start", gr_slideshow_start, FALSE, FALSE, N_("start slide show") }, | |
537 { "-sS","--slideshow-stop", gr_slideshow_stop, FALSE, FALSE, N_("stop slide show") }, | |
538 { "-sr","--slideshow-recurse", gr_slideshow_start_rec, TRUE, FALSE, N_("start recursive slide show") }, | |
539 { "-d", "--delay=", gr_slideshow_delay, TRUE, FALSE, N_("set slide show delay in seconds") }, | |
540 { "+t", "--tools-show", gr_tools_show, FALSE, TRUE, N_("show tools") }, | |
541 { "-t", "--tools-hide", gr_tools_hide, FALSE, TRUE, N_("hide tools") }, | |
542 { "-q", "--quit", gr_quit, FALSE, FALSE, N_("quit") }, | |
543 { NULL, "file:", gr_file_load, TRUE, FALSE, N_("open file") }, | |
544 { NULL, "view:", gr_file_view, TRUE, FALSE, N_("open file in new window") }, | |
545 { NULL, "--list-clear", gr_list_clear, FALSE, FALSE, NULL }, | |
546 { NULL, "--list-add:", gr_list_add, TRUE, FALSE, NULL }, | |
547 { NULL, "raise", gr_raise, FALSE, FALSE, NULL }, | |
548 { NULL, NULL, NULL, FALSE, FALSE, NULL } | |
549 }; | |
550 | |
279 | 551 static RemoteCommandEntry *remote_command_find(const gchar *text, const gchar **offset) |
9 | 552 { |
553 gint match = FALSE; | |
554 gint i; | |
555 | |
556 i = 0; | |
557 while (!match && remote_commands[i].func != NULL) | |
1 | 558 { |
9 | 559 if (remote_commands[i].needs_extra) |
560 { | |
561 if (remote_commands[i].opt_s && | |
562 strncmp(remote_commands[i].opt_s, text, strlen(remote_commands[i].opt_s)) == 0) | |
563 { | |
564 if (offset) *offset = text + strlen(remote_commands[i].opt_s); | |
565 return &remote_commands[i]; | |
566 } | |
567 else if (remote_commands[i].opt_l && | |
568 strncmp(remote_commands[i].opt_l, text, strlen(remote_commands[i].opt_l)) == 0) | |
569 { | |
570 if (offset) *offset = text + strlen(remote_commands[i].opt_l); | |
571 return &remote_commands[i]; | |
572 } | |
573 } | |
574 else | |
575 { | |
576 if ((remote_commands[i].opt_s && strcmp(remote_commands[i].opt_s, text) == 0) || | |
577 (remote_commands[i].opt_l && strcmp(remote_commands[i].opt_l, text) == 0)) | |
1 | 578 { |
9 | 579 if (offset) *offset = text; |
580 return &remote_commands[i]; | |
1 | 581 } |
9 | 582 } |
583 | |
584 i++; | |
585 } | |
586 | |
587 return NULL; | |
588 } | |
589 | |
279 | 590 static void remote_cb(RemoteConnection *rc, const gchar *text, gpointer data) |
9 | 591 { |
592 RemoteCommandEntry *entry; | |
593 const gchar *offset; | |
594 | |
279 | 595 entry = remote_command_find(text, &offset); |
9 | 596 if (entry && entry->func) |
597 { | |
598 entry->func(offset, data); | |
599 } | |
600 else | |
601 { | |
602 printf("unknown remote command:%s\n", text); | |
603 } | |
604 } | |
605 | |
279 | 606 static void remote_help(void) |
9 | 607 { |
608 gint i; | |
609 | |
610 print_term(_("Remote command list:\n")); | |
611 | |
612 i = 0; | |
613 while (remote_commands[i].func != NULL) | |
614 { | |
615 if (remote_commands[i].description) | |
616 { | |
403 | 617 printf_term(" %-3s%s %-20s %s\n", |
618 (remote_commands[i].opt_s) ? remote_commands[i].opt_s : "", | |
619 (remote_commands[i].opt_s && remote_commands[i].opt_l) ? "," : " ", | |
620 (remote_commands[i].opt_l) ? remote_commands[i].opt_l : "", | |
621 _(remote_commands[i].description)); | |
9 | 622 } |
623 i++; | |
624 } | |
625 } | |
626 | |
279 | 627 static GList *remote_build_list(GList *list, int argc, char *argv[]) |
9 | 628 { |
629 gint i; | |
630 | |
631 i = 1; | |
632 while (i < argc) | |
633 { | |
634 RemoteCommandEntry *entry; | |
635 | |
279 | 636 entry = remote_command_find(argv[i], NULL); |
9 | 637 if (entry) |
638 { | |
639 list = g_list_append(list, argv[i]); | |
640 } | |
641 i++; | |
1 | 642 } |
643 | |
9 | 644 return list; |
645 } | |
646 | |
279 | 647 static void remote_control(const gchar *arg_exec, GList *remote_list, const gchar *path, |
9 | 648 GList *cmd_list, GList *collection_list) |
649 { | |
650 RemoteConnection *rc; | |
651 gint started = FALSE; | |
652 gchar *buf; | |
653 | |
283 | 654 buf = g_strconcat(homedir(), "/", GQ_RC_DIR, "/.command", NULL); |
9 | 655 rc = remote_client_open(buf); |
656 if (!rc) | |
657 { | |
658 GString *command; | |
659 GList *work; | |
660 gint retry_count = 12; | |
661 gint blank = FALSE; | |
662 | |
403 | 663 printf_term(_("Remote %s not running, starting..."), GQ_APPNAME); |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
664 |
9 | 665 command = g_string_new(arg_exec); |
666 | |
667 work = remote_list; | |
668 while (work) | |
669 { | |
670 gchar *text; | |
671 RemoteCommandEntry *entry; | |
672 | |
673 text = work->data; | |
674 work = work->next; | |
675 | |
279 | 676 entry = remote_command_find(text, NULL); |
9 | 677 if (entry) |
678 { | |
679 if (entry->prefer_command_line) | |
680 { | |
681 remote_list = g_list_remove(remote_list, text); | |
682 g_string_append(command, " "); | |
683 g_string_append(command, text); | |
684 } | |
685 if (entry->opt_l && strcmp(entry->opt_l, "file:") == 0) | |
686 { | |
687 blank = TRUE; | |
688 } | |
689 } | |
690 } | |
691 | |
692 if (blank || cmd_list || path) g_string_append(command, " --blank"); | |
507 | 693 if (get_debug_level()) g_string_append(command, " --debug"); |
9 | 694 |
695 g_string_append(command, " &"); | |
696 system(command->str); | |
697 g_string_free(command, TRUE); | |
698 | |
699 while (!rc && retry_count > 0) | |
700 { | |
701 usleep((retry_count > 10) ? 500000 : 1000000); | |
702 rc = remote_client_open(buf); | |
703 if (!rc) print_term("."); | |
704 retry_count--; | |
705 } | |
706 | |
707 print_term("\n"); | |
708 | |
709 started = TRUE; | |
710 } | |
711 g_free(buf); | |
712 | |
713 if (rc) | |
1 | 714 { |
9 | 715 GList *work; |
716 const gchar *prefix; | |
717 gint use_path = TRUE; | |
718 gint sent = FALSE; | |
719 | |
720 work = remote_list; | |
721 while (work) | |
722 { | |
723 gchar *text; | |
724 RemoteCommandEntry *entry; | |
725 | |
726 text = work->data; | |
727 work = work->next; | |
728 | |
279 | 729 entry = remote_command_find(text, NULL); |
9 | 730 if (entry && |
731 entry->opt_l && | |
732 strcmp(entry->opt_l, "file:") == 0) use_path = FALSE; | |
733 | |
734 remote_client_send(rc, text); | |
735 | |
736 sent = TRUE; | |
737 } | |
738 | |
739 if (cmd_list && cmd_list->next) | |
740 { | |
741 prefix = "--list-add:"; | |
742 remote_client_send(rc, "--list-clear"); | |
743 } | |
744 else | |
745 { | |
746 prefix = "file:"; | |
747 } | |
748 | |
749 work = cmd_list; | |
750 while (work) | |
751 { | |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
752 FileData *fd; |
9 | 753 gchar *text; |
754 | |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
755 fd = work->data; |
9 | 756 work = work->next; |
757 | |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
758 text = g_strconcat(prefix, fd->path, NULL); |
9 | 759 remote_client_send(rc, text); |
760 g_free(text); | |
761 | |
762 sent = TRUE; | |
763 } | |
764 | |
765 if (path && !cmd_list && use_path) | |
766 { | |
767 gchar *text; | |
768 | |
769 text = g_strdup_printf("file:%s", path); | |
770 remote_client_send(rc, text); | |
771 g_free(text); | |
772 | |
773 sent = TRUE; | |
774 } | |
775 | |
776 work = collection_list; | |
777 while (work) | |
778 { | |
779 const gchar *name; | |
780 gchar *text; | |
781 | |
782 name = work->data; | |
783 work = work->next; | |
784 | |
785 text = g_strdup_printf("file:%s", name); | |
786 remote_client_send(rc, text); | |
787 g_free(text); | |
788 | |
789 sent = TRUE; | |
790 } | |
791 | |
792 if (!started && !sent) | |
793 { | |
794 remote_client_send(rc, "raise"); | |
795 } | |
796 } | |
797 else | |
798 { | |
799 print_term(_("Remote not available\n")); | |
1 | 800 } |
801 | |
9 | 802 _exit(0); |
1 | 803 } |
804 | |
805 /* | |
806 *----------------------------------------------------------------------------- | |
3 | 807 * command line parser (private) hehe, who needs popt anyway? |
1 | 808 *----------------------------------------------------------------------------- |
442 | 809 */ |
1 | 810 |
9 | 811 static gint startup_blank = FALSE; |
3 | 812 static gint startup_full_screen = FALSE; |
813 static gint startup_in_slideshow = FALSE; | |
9 | 814 static gint startup_command_line_collection = FALSE; |
3 | 815 |
9 | 816 |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
817 static void parse_command_line_add_file(const gchar *file_path, gchar **path, gchar **file, |
442 | 818 GList **list, GList **collection_list) |
1 | 819 { |
9 | 820 gchar *path_parsed; |
821 | |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
822 path_parsed = g_strdup(file_path); |
9 | 823 parse_out_relatives(path_parsed); |
824 | |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
825 if (file_extension_match(path_parsed, ".gqv")) |
9 | 826 { |
827 *collection_list = g_list_append(*collection_list, path_parsed); | |
828 } | |
829 else | |
830 { | |
831 if (!*path) *path = remove_level_from_path(path_parsed); | |
832 if (!*file) *file = g_strdup(path_parsed); | |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
833 *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
|
834 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
835 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
836 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
837 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
|
838 GList **list) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
839 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
840 GList *files = NULL; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
841 gchar *path_parsed; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
842 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
843 path_parsed = g_strdup(dir); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
844 parse_out_relatives(path_parsed); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
845 |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
846 if (filelist_read(path_parsed, &files, NULL)) |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
847 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
848 GList *work; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
849 |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
850 files = filelist_filter(files, FALSE); |
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
851 files = filelist_sort_path(files); |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
852 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
853 work = files; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
854 while (work) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
855 { |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
856 FileData *fd = work->data; |
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
857 if (!*path) *path = remove_level_from_path(fd->path); |
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
858 if (!*file) *file = g_strdup(fd->path); |
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
859 *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
|
860 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
861 work = work->next; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
862 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
863 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
864 g_list_free(files); |
9 | 865 } |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
866 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
867 g_free(path_parsed); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
868 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
869 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
870 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
|
871 GList **list, gchar **first_dir) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
872 { |
442 | 873 |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
874 if (!*list && !*first_dir) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
875 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
876 *first_dir = g_strdup(dir); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
877 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
878 else |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
879 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
880 if (*first_dir) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
881 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
882 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
|
883 g_free(*first_dir); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
884 *first_dir = NULL; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
885 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
886 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
|
887 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
888 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
889 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
890 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
|
891 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
|
892 { |
442 | 893 |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
894 if (*first_dir) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
895 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
896 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
|
897 g_free(*first_dir); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
898 *first_dir = NULL; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
899 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
900 parse_command_line_add_file(file_path, path, file, list, collection_list); |
9 | 901 } |
902 | |
903 static void parse_command_line(int argc, char *argv[], gchar **path, gchar **file, | |
81
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
904 GList **cmd_list, GList **collection_list, |
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
905 gchar **geometry) |
9 | 906 { |
907 GList *list = NULL; | |
908 GList *remote_list = NULL; | |
909 gint remote_do = FALSE; | |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
910 gchar *first_dir = NULL; |
9 | 911 |
1 | 912 if (argc > 1) |
913 { | |
914 gint i; | |
915 gchar *base_dir = get_current_dir(); | |
916 i = 1; | |
917 while (i < argc) | |
918 { | |
9 | 919 const gchar *cmd_line = argv[i]; |
920 gchar *cmd_all = concat_dir_and_file(base_dir, cmd_line); | |
1 | 921 |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
922 if (cmd_line[0] == '/' && isdir(cmd_line)) |
1 | 923 { |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
924 parse_command_line_process_dir(cmd_line, path, file, &list, &first_dir); |
1 | 925 } |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
926 else if (isdir(cmd_all)) |
1 | 927 { |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
928 parse_command_line_process_dir(cmd_all, path, file, &list, &first_dir); |
1 | 929 } |
9 | 930 else if (cmd_line[0] == '/' && isfile(cmd_line)) |
1 | 931 { |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
932 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
|
933 &list, collection_list, &first_dir); |
1 | 934 } |
9 | 935 else if (isfile(cmd_all)) |
1 | 936 { |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
937 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
|
938 &list, collection_list, &first_dir); |
1 | 939 } |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
940 else if (strncmp(cmd_line, "--debug", 7) == 0 && (cmd_line[7] == '\0' || cmd_line[7] == '=')) |
1 | 941 { |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
942 /* do nothing but do not produce warnings */ |
1 | 943 } |
944 else if (strcmp(cmd_line, "+t") == 0 || | |
3 | 945 strcmp(cmd_line, "--with-tools") == 0) |
1 | 946 { |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
947 options->layout.tools_float = FALSE; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
948 options->layout.tools_hidden = FALSE; |
9 | 949 |
950 remote_list = g_list_append(remote_list, "+t"); | |
1 | 951 } |
952 else if (strcmp(cmd_line, "-t") == 0 || | |
3 | 953 strcmp(cmd_line, "--without-tools") == 0) |
1 | 954 { |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
955 options->layout.tools_hidden = TRUE; |
9 | 956 |
957 remote_list = g_list_append(remote_list, "-t"); | |
1 | 958 } |
3 | 959 else if (strcmp(cmd_line, "-f") == 0 || |
960 strcmp(cmd_line, "--fullscreen") == 0) | |
961 { | |
962 startup_full_screen = TRUE; | |
963 } | |
964 else if (strcmp(cmd_line, "-s") == 0 || | |
965 strcmp(cmd_line, "--slideshow") == 0) | |
966 { | |
967 startup_in_slideshow = TRUE; | |
968 } | |
9 | 969 else if (strcmp(cmd_line, "-l") == 0 || |
970 strcmp(cmd_line, "--list") == 0) | |
971 { | |
972 startup_command_line_collection = TRUE; | |
973 } | |
81
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
974 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
|
975 { |
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
976 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
|
977 } |
9 | 978 else if (strcmp(cmd_line, "-r") == 0 || |
979 strcmp(cmd_line, "--remote") == 0) | |
980 { | |
981 if (!remote_do) | |
982 { | |
983 remote_do = TRUE; | |
279 | 984 remote_list = remote_build_list(remote_list, argc, argv); |
9 | 985 } |
986 } | |
987 else if (strcmp(cmd_line, "-rh") == 0 || | |
988 strcmp(cmd_line, "--remote-help") == 0) | |
989 { | |
279 | 990 remote_help(); |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
509
diff
changeset
|
991 exit(0); |
9 | 992 } |
993 else if (strcmp(cmd_line, "--blank") == 0) | |
994 { | |
995 startup_blank = TRUE; | |
996 } | |
997 else if (strcmp(cmd_line, "-v") == 0 || | |
998 strcmp(cmd_line, "--version") == 0) | |
999 { | |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1000 printf("%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
|
1001 exit(0); |
9 | 1002 } |
1003 else if (strcmp(cmd_line, "--alternate") == 0) | |
1004 { | |
1005 /* enable faster experimental algorithm */ | |
1006 printf("Alternate similarity algorithm enabled\n"); | |
1007 image_sim_alternate_set(TRUE); | |
1008 } | |
3 | 1009 else if (strcmp(cmd_line, "-h") == 0 || |
1010 strcmp(cmd_line, "--help") == 0) | |
1 | 1011 { |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1012 printf("%s %s\n", GQ_APPNAME, VERSION); |
403 | 1013 printf_term(_("Usage: %s [options] [path]\n\n"), GQ_APPNAME_LC); |
9 | 1014 print_term(_("valid options are:\n")); |
1015 print_term(_(" +t, --with-tools force show of tools\n")); | |
1016 print_term(_(" -t, --without-tools force hide of tools\n")); | |
1017 print_term(_(" -f, --fullscreen start in full screen mode\n")); | |
1018 print_term(_(" -s, --slideshow start in slideshow mode\n")); | |
1019 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
|
1020 print_term(_(" --geometry=GEOMETRY set main window location\n")); |
9 | 1021 print_term(_(" -r, --remote send following commands to open window\n")); |
1022 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
|
1023 #ifdef DEBUG |
379 | 1024 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
|
1025 #endif |
9 | 1026 print_term(_(" -v, --version print version info\n")); |
1027 print_term(_(" -h, --help show this message\n\n")); | |
442 | 1028 |
9 | 1029 #if 0 |
1030 /* these options are not officially supported! | |
1031 * only for testing new features, no need to translate them */ | |
1032 print_term( " --alternate use alternate similarity algorithm\n"); | |
1033 #endif | |
442 | 1034 |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
509
diff
changeset
|
1035 exit(0); |
1 | 1036 } |
9 | 1037 else if (!remote_do) |
1 | 1038 { |
403 | 1039 printf_term(_("invalid or ignored: %s\nUse --help for options\n"), cmd_line); |
1 | 1040 } |
9 | 1041 |
1 | 1042 g_free(cmd_all); |
1043 i++; | |
1044 } | |
1045 g_free(base_dir); | |
1046 parse_out_relatives(*path); | |
1047 parse_out_relatives(*file); | |
1048 } | |
9 | 1049 |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
1050 list = g_list_reverse(list); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
1051 |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
1052 if (!*path && first_dir) |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
1053 { |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
1054 *path = first_dir; |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
1055 first_dir = NULL; |
79
528e3432e0c0
Thu Oct 19 07:23:37 2006 John Ellis <johne@verizon.net>
gqview
parents:
76
diff
changeset
|
1056 |
528e3432e0c0
Thu Oct 19 07:23:37 2006 John Ellis <johne@verizon.net>
gqview
parents:
76
diff
changeset
|
1057 parse_out_relatives(*path); |
76
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
1058 } |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
1059 g_free(first_dir); |
07773a3c5b29
Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents:
21
diff
changeset
|
1060 |
9 | 1061 if (remote_do) |
1062 { | |
279 | 1063 remote_control(argv[0], remote_list, *path, list, *collection_list); |
9 | 1064 } |
1065 g_list_free(remote_list); | |
1066 | |
1067 if (list && list->next) | |
1068 { | |
1069 *cmd_list = list; | |
1070 } | |
1071 else | |
1072 { | |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
1073 filelist_free(list); |
9 | 1074 *cmd_list = NULL; |
1075 } | |
1 | 1076 } |
1077 | |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1078 static void parse_command_line_for_debug_option(int argc, char *argv[]) |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1079 { |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1080 #ifdef DEBUG |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1081 const gchar *debug_option = "--debug"; |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1082 gint len = strlen(debug_option); |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1083 |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1084 if (argc > 1) |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1085 { |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1086 gint i; |
442 | 1087 |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1088 for (i = 1; i < argc; i++) |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1089 { |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1090 const gchar *cmd_line = argv[i]; |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1091 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
|
1092 { |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1093 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
|
1094 |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1095 /* 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
|
1096 if (cmd_line_len == len) |
507 | 1097 debug_level_add(1); |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1098 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
|
1099 { |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1100 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
|
1101 if (n < 0) n = 1; |
507 | 1102 debug_level_add(n); |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1103 } |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1104 } |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1105 } |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1106 } |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1107 |
507 | 1108 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
|
1109 #endif |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1110 } |
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1111 |
1 | 1112 /* |
1113 *----------------------------------------------------------------------------- | |
1114 * startup, init, and exit | |
1115 *----------------------------------------------------------------------------- | |
442 | 1116 */ |
1 | 1117 |
9 | 1118 #define RC_HISTORY_NAME "history" |
1119 | |
1120 static void keys_load(void) | |
1121 { | |
1122 gchar *path; | |
1123 | |
283 | 1124 path = g_strconcat(homedir(), "/", GQ_RC_DIR, "/", RC_HISTORY_NAME, NULL); |
9 | 1125 history_list_load(path); |
1126 g_free(path); | |
1127 } | |
1128 | |
1129 static void keys_save(void) | |
1130 { | |
1131 gchar *path; | |
1132 | |
283 | 1133 path = g_strconcat(homedir(), "/", GQ_RC_DIR, "/", RC_HISTORY_NAME, NULL); |
9 | 1134 history_list_save(path); |
1135 g_free(path); | |
1136 } | |
1137 | |
1138 static void check_for_home_path(gchar *path) | |
1 | 1139 { |
9 | 1140 gchar *buf; |
1141 | |
1142 buf = g_strconcat(homedir(), "/", path, NULL); | |
1143 if (!isdir(buf)) | |
1144 { | |
403 | 1145 printf_term(_("Creating %s dir:%s\n"), GQ_APPNAME, buf); |
442 | 1146 |
9 | 1147 if (!mkdir_utf8(buf, 0755)) |
1148 { | |
403 | 1149 printf_term(_("Could not create dir:%s\n"), buf); |
9 | 1150 } |
1151 } | |
1152 g_free(buf); | |
1153 } | |
1154 | |
1155 static void setup_default_options(void) | |
1156 { | |
1157 gchar *path; | |
1 | 1158 gint i; |
1159 | |
283 | 1160 for (i = 0; i < GQ_EDITOR_SLOTS; i++) |
1 | 1161 { |
318 | 1162 options->editor_name[i] = NULL; |
1163 options->editor_command[i] = NULL; | |
1 | 1164 } |
1165 | |
9 | 1166 editor_reset_defaults(); |
1 | 1167 |
9 | 1168 bookmark_add_default(_("Home"), homedir()); |
1169 path = concat_dir_and_file(homedir(), "Desktop"); | |
1170 bookmark_add_default(_("Desktop"), path); | |
1171 g_free(path); | |
283 | 1172 path = concat_dir_and_file(homedir(), GQ_RC_DIR_COLLECTIONS); |
9 | 1173 bookmark_add_default(_("Collections"), path); |
1174 g_free(path); | |
1 | 1175 |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
1176 g_free(options->file_ops.safe_delete_path); |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
1177 options->file_ops.safe_delete_path = concat_dir_and_file(homedir(), GQ_RC_DIR_TRASH); |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1178 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1179 for (i = 0; i < COLOR_PROFILE_INPUTS; i++) |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1180 { |
327 | 1181 options->color_profile.input_file[i] = NULL; |
1182 options->color_profile.input_name[i] = NULL; | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1183 } |
189
deea9e11f1d4
fixed reading sidecar extensions from config file
nadvornik
parents:
145
diff
changeset
|
1184 |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
1185 set_default_image_overlay_template_string(options); |
189
deea9e11f1d4
fixed reading sidecar extensions from config file
nadvornik
parents:
145
diff
changeset
|
1186 sidecar_ext_add_defaults(); |
367
3556cc825e59
Move layout.order default init to setup_default_options().
zas_
parents:
358
diff
changeset
|
1187 options->layout.order = g_strdup("123"); |
1 | 1188 } |
1189 | |
278 | 1190 static void exit_program_final(void) |
1 | 1191 { |
9 | 1192 gchar *path; |
1193 gchar *pathl; | |
1194 LayoutWindow *lw = NULL; | |
1195 | |
279 | 1196 remote_close(remote_connection); |
9 | 1197 |
1198 collect_manager_flush(); | |
1 | 1199 |
9 | 1200 if (layout_valid(&lw)) |
1201 { | |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
1202 options->layout.main_window.maximized = window_maximized(lw->window); |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
1203 if (!options->layout.main_window.maximized) |
9 | 1204 { |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
1205 layout_geometry_get(NULL, &options->layout.main_window.x, &options->layout.main_window.y, |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
1206 &options->layout.main_window.w, &options->layout.main_window.h); |
9 | 1207 } |
618
b1a922a32d9c
Save full OSD state to rc file and restore it on startup.
zas_
parents:
614
diff
changeset
|
1208 |
621 | 1209 options->image_overlay.common.enabled = image_osd_get(lw->image); |
9 | 1210 } |
1 | 1211 |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
1212 layout_geometry_get_dividers(NULL, &options->layout.main_window.hdivider_pos, &options->layout.main_window.vdivider_pos); |
9 | 1213 |
556
fe675761d091
Replace Layout icon_view field by more generic file_view_type.
zas_
parents:
512
diff
changeset
|
1214 layout_views_get(NULL, &options->layout.dir_view_type, &options->layout.file_view_type); |
9 | 1215 |
340
77103f3f2cb1
Rename option thumbnails.enabled to layout.show_thumbnails as it makes
zas_
parents:
338
diff
changeset
|
1216 options->layout.show_thumbnails = layout_thumb_get(NULL); |
433
5ddcf93278c7
Save Show Marks state to rc file and display current state in menu.
zas_
parents:
412
diff
changeset
|
1217 options->layout.show_marks = layout_marks_get(NULL); |
5ddcf93278c7
Save Show Marks state to rc file and display current state in menu.
zas_
parents:
412
diff
changeset
|
1218 |
329 | 1219 layout_sort_get(NULL, &options->file_sort.method, &options->file_sort.ascending); |
9 | 1220 |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
1221 layout_geometry_get_tools(NULL, &options->layout.float_window.x, &options->layout.float_window.y, |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
1222 &options->layout.float_window.w, &options->layout.float_window.h, &options->layout.float_window.vdivider_pos); |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
1223 layout_tools_float_get(NULL, &options->layout.tools_float, &options->layout.tools_hidden); |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
1224 options->layout.toolbar_hidden = layout_toolbar_hidden(NULL); |
9 | 1225 |
327 | 1226 options->color_profile.enabled = layout_image_color_profile_get_use(NULL); |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1227 layout_image_color_profile_get(NULL, |
327 | 1228 &options->color_profile.input_type, |
1229 &options->color_profile.screen_type, | |
1230 &options->color_profile.use_image); | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1231 |
1 | 1232 save_options(); |
9 | 1233 keys_save(); |
1234 | |
283 | 1235 path = g_strconcat(homedir(), "/", GQ_RC_DIR, "/accels", NULL); |
9 | 1236 pathl = path_from_utf8(path); |
1237 gtk_accel_map_save(pathl); | |
1238 g_free(pathl); | |
1239 g_free(path); | |
1 | 1240 |
1241 gtk_main_quit(); | |
1242 } | |
1243 | |
9 | 1244 static GenericDialog *exit_dialog = NULL; |
1245 | |
1246 static void exit_confirm_cancel_cb(GenericDialog *gd, gpointer data) | |
1247 { | |
1248 exit_dialog = NULL; | |
1249 generic_dialog_close(gd); | |
1250 } | |
1251 | |
1252 static void exit_confirm_exit_cb(GenericDialog *gd, gpointer data) | |
1253 { | |
1254 exit_dialog = NULL; | |
1255 generic_dialog_close(gd); | |
278 | 1256 exit_program_final(); |
9 | 1257 } |
1258 | |
1259 static gint exit_confirm_dlg(void) | |
1260 { | |
1261 GtkWidget *parent; | |
1262 LayoutWindow *lw; | |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1263 gchar *msg; |
9 | 1264 |
1265 if (exit_dialog) | |
1266 { | |
1267 gtk_window_present(GTK_WINDOW(exit_dialog->dialog)); | |
1268 return TRUE; | |
1269 } | |
1270 | |
1271 if (!collection_window_modified_exists()) return FALSE; | |
1272 | |
1273 parent = NULL; | |
1274 lw = NULL; | |
1275 if (layout_valid(&lw)) | |
1276 { | |
1277 parent = lw->window; | |
1278 } | |
1279 | |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1280 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
|
1281 exit_dialog = generic_dialog_new(msg, |
254
9faf34f047b1
Make the wmclass value unique among the code by defining
zas_
parents:
227
diff
changeset
|
1282 GQ_WMCLASS, "exit", parent, FALSE, |
9 | 1283 exit_confirm_cancel_cb, NULL); |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1284 g_free(msg); |
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1285 msg = g_strdup_printf(_("Quit %s"), GQ_APPNAME); |
9 | 1286 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
|
1287 msg, _("Collections have been modified. Quit anyway?")); |
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1288 g_free(msg); |
9 | 1289 generic_dialog_add_button(exit_dialog, GTK_STOCK_QUIT, NULL, exit_confirm_exit_cb, TRUE); |
1290 | |
1291 gtk_widget_show(exit_dialog->dialog); | |
1292 | |
1293 return TRUE; | |
1294 } | |
1295 | |
278 | 1296 void exit_program(void) |
9 | 1297 { |
1298 layout_image_full_screen_stop(NULL); | |
1299 | |
1300 if (exit_confirm_dlg()) return; | |
1301 | |
278 | 1302 exit_program_final(); |
9 | 1303 } |
1304 | |
1 | 1305 int main (int argc, char *argv[]) |
1306 { | |
9 | 1307 LayoutWindow *lw; |
1308 gchar *path = NULL; | |
1 | 1309 gchar *cmd_path = NULL; |
1310 gchar *cmd_file = NULL; | |
9 | 1311 GList *cmd_list = NULL; |
1312 GList *collection_list = NULL; | |
1313 CollectionData *first_collection = NULL; | |
81
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
1314 gchar *geometry = NULL; |
9 | 1315 gchar *buf; |
1316 gchar *bufl; | |
1 | 1317 |
509 | 1318 /* init execution time counter (debug only) */ |
1319 init_exec_time(); | |
442 | 1320 |
1 | 1321 /* setup locale, i18n */ |
1322 gtk_set_locale(); | |
283 | 1323 bindtextdomain(PACKAGE, GQ_LOCALEDIR); |
10 | 1324 bind_textdomain_codeset(PACKAGE, "UTF-8"); |
1325 textdomain(PACKAGE); | |
1 | 1326 |
1327 /* setup random seed for random slideshow */ | |
442 | 1328 srand(time(NULL)); |
1 | 1329 |
21
56866f205a68
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
10
diff
changeset
|
1330 #if 1 |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1331 printf("%s %s, This is an alpha release.\n", GQ_APPNAME, VERSION); |
9 | 1332 #endif |
378
f1bdbbdb73ba
Parse command line for --debug option as soon as possible and allow
zas_
parents:
367
diff
changeset
|
1333 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
|
1334 |
318 | 1335 options = init_options(NULL); |
1 | 1336 setup_default_options(); |
1337 load_options(); | |
1338 | |
81
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
1339 parse_command_line(argc, argv, &cmd_path, &cmd_file, &cmd_list, &collection_list, &geometry); |
9 | 1340 |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
509
diff
changeset
|
1341 gtk_init(&argc, &argv); |
9 | 1342 |
1343 if (gtk_major_version < GTK_MAJOR_VERSION || | |
1344 (gtk_major_version == GTK_MAJOR_VERSION && gtk_minor_version < GTK_MINOR_VERSION) ) | |
1345 { | |
403 | 1346 printf_term("!!! This is a friendly warning.\n"); |
1347 printf_term("!!! The version of GTK+ in use now is older than when %s was compiled.\n", GQ_APPNAME); | |
1348 printf_term("!!! compiled with GTK+-%d.%d\n", GTK_MAJOR_VERSION, GTK_MINOR_VERSION); | |
1349 printf_term("!!! running with GTK+-%d.%d\n", gtk_major_version, gtk_minor_version); | |
1350 printf_term("!!! %s may quit unexpectedly with a relocation error.\n", GQ_APPNAME); | |
9 | 1351 } |
1352 | |
283 | 1353 check_for_home_path(GQ_RC_DIR); |
1354 check_for_home_path(GQ_RC_DIR_COLLECTIONS); | |
1355 check_for_home_path(GQ_CACHE_RC_THUMB); | |
1356 check_for_home_path(GQ_CACHE_RC_METADATA); | |
9 | 1357 |
1358 keys_load(); | |
1359 filter_add_defaults(); | |
1360 filter_rebuild(); | |
442 | 1361 |
283 | 1362 buf = g_strconcat(homedir(), "/", GQ_RC_DIR, "/accels", NULL); |
9 | 1363 bufl = path_from_utf8(buf); |
1364 gtk_accel_map_load(bufl); | |
1365 g_free(bufl); | |
1366 g_free(buf); | |
1 | 1367 |
9 | 1368 if (startup_blank) |
1369 { | |
1370 g_free(cmd_path); | |
1371 cmd_path = NULL; | |
1372 g_free(cmd_file); | |
1373 cmd_file = NULL; | |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
1374 filelist_free(cmd_list); |
9 | 1375 cmd_list = NULL; |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
1376 string_list_free(collection_list); |
9 | 1377 collection_list = NULL; |
1378 | |
1379 path = NULL; | |
1380 } | |
1381 else if (cmd_path) | |
1382 { | |
1383 path = g_strdup(cmd_path); | |
1384 } | |
629 | 1385 else if (options->startup.restore_path && options->startup.path && isdir(options->startup.path)) |
9 | 1386 { |
629 | 1387 path = g_strdup(options->startup.path); |
9 | 1388 } |
1 | 1389 else |
9 | 1390 { |
1391 path = get_current_dir(); | |
1392 } | |
1393 | |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
1394 lw = layout_new_with_geometry(NULL, options->layout.tools_float, options->layout.tools_hidden, geometry); |
329 | 1395 layout_sort_set(lw, options->file_sort.method, options->file_sort.ascending); |
9 | 1396 |
1397 if (collection_list && !startup_command_line_collection) | |
1398 { | |
1399 GList *work; | |
1400 | |
1401 work = collection_list; | |
1402 while (work) | |
1403 { | |
1404 CollectWindow *cw; | |
1405 const gchar *path; | |
1 | 1406 |
9 | 1407 path = work->data; |
1408 work = work->next; | |
1409 | |
1410 cw = collection_window_new(path); | |
1411 if (!first_collection && cw) first_collection = cw->cd; | |
1412 } | |
1413 } | |
1414 | |
1415 if (cmd_list || | |
1416 (startup_command_line_collection && collection_list)) | |
1417 { | |
1418 CollectionData *cd; | |
1419 GList *work; | |
1420 | |
1421 if (startup_command_line_collection) | |
1422 { | |
1423 CollectWindow *cw; | |
1424 | |
1425 cw = collection_window_new(""); | |
1426 cd = cw->cd; | |
1427 } | |
1428 else | |
1429 { | |
1430 cd = collection_new(""); /* if we pass NULL, untitled counter is falsely increm. */ | |
279 | 1431 command_collection = cd; |
9 | 1432 } |
1433 | |
1434 g_free(cd->path); | |
1435 cd->path = NULL; | |
1436 g_free(cd->name); | |
1437 cd->name = g_strdup(_("Command line")); | |
1438 | |
1439 collection_path_changed(cd); | |
1 | 1440 |
9 | 1441 work = cmd_list; |
1442 while (work) | |
1443 { | |
138 | 1444 collection_add(cd, file_data_new_simple((gchar *)work->data), FALSE); |
9 | 1445 work = work->next; |
1446 } | |
1447 | |
1448 work = collection_list; | |
1449 while (work) | |
1450 { | |
358 | 1451 collection_load(cd, (gchar *)work->data, COLLECTION_LOAD_APPEND); |
9 | 1452 work = work->next; |
1453 } | |
1454 | |
1455 layout_set_path(lw, path); | |
1456 if (cd->list) layout_image_set_collection(lw, cd, cd->list->data); | |
1 | 1457 |
9 | 1458 /* mem leak, we never unref this collection when !startup_command_line_collection |
1459 * (the image view of the main window does not hold a ref to the collection) | |
1460 * this is sort of unavoidable, for if it did hold a ref, next/back | |
1461 * may not work as expected when closing collection windows. | |
1462 * | |
1463 * collection_unref(cd); | |
1464 */ | |
1465 | |
1466 } | |
1467 else if (cmd_file) | |
1468 { | |
1469 layout_set_path(lw, cmd_file); | |
1470 } | |
1471 else | |
1472 { | |
1473 layout_set_path(lw, path); | |
1474 if (first_collection) | |
1475 { | |
1476 layout_image_set_collection(lw, first_collection, | |
1477 collection_get_first(first_collection)); | |
1478 } | |
1479 } | |
614 | 1480 |
618
b1a922a32d9c
Save full OSD state to rc file and restore it on startup.
zas_
parents:
614
diff
changeset
|
1481 image_osd_set(lw->image, options->image_overlay.common.enabled | (options->image_overlay.common.show_at_startup ? OSD_SHOW_INFO : OSD_SHOW_NOTHING)); |
1 | 1482 |
81
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
79
diff
changeset
|
1483 g_free(geometry); |
1 | 1484 g_free(cmd_path); |
1485 g_free(cmd_file); | |
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
1486 filelist_free(cmd_list); |
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
556
diff
changeset
|
1487 string_list_free(collection_list); |
9 | 1488 g_free(path); |
1 | 1489 |
9 | 1490 if (startup_full_screen) layout_image_full_screen_start(lw); |
1491 if (startup_in_slideshow) layout_image_slideshow_start(lw); | |
1492 | |
283 | 1493 buf = g_strconcat(homedir(), "/", GQ_RC_DIR, "/.command", NULL); |
279 | 1494 remote_connection = remote_server_open(buf); |
1495 remote_server_subscribe(remote_connection, remote_cb, NULL); | |
9 | 1496 g_free(buf); |
3 | 1497 |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
509
diff
changeset
|
1498 gtk_main(); |
1 | 1499 return 0; |
1500 } |