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