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