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