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