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