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