annotate src/main.c @ 1733:91a65afb5d77

check gtk_clutter_init return value https://sourceforge.net/tracker/index.php?func=detail&aid=2899866&group_id=222125&atid=1054680
author nadvornik
date Sat, 21 Nov 2009 20:08:51 +0000
parents 548fddf5070a
children 808dd5257146
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
1 /*
196
f6e307c7bad6 rename GQview -> Geeqie over the code
nadvornik
parents: 195
diff changeset
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
1284
8b89e3ff286b Add year 2009 to copyright info everywhere.
zas_
parents: 1272
diff changeset
4 * Copyright (C) 2008 - 2009 The Geeqie Team
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
5 *
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
6 * Author: John Ellis
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
7 *
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
8 * This software is released under the GNU General Public License (GNU GPL).
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
9 * Please read the included file COPYING for more information.
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
10 * This software comes with no warranty of any kind, use at your own risk!
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
11 */
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
12
1685
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
13 #include <gdk/gdkkeysyms.h> /* for keyboard values */
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
14 #ifdef HAVE_LIBCHAMPLAIN
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
15 #ifdef HAVE_LIBCHAMPLAIN_GTK
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
16 #include <clutter-gtk/gtk-clutter-embed.h>
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
17 #endif
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
18 #endif
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
19
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
20 #include <signal.h>
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
21 #include <sys/mman.h>
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
22
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
23 #include <math.h>
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
24 #ifdef G_OS_UNIX
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
25 #include <pwd.h>
babd4142523f Some systems (BSD,MacOsX,HP-UX,...) define MAP_ANON and not MAP_ANONYMOUS. Make each an alias of other to be sure. issue reported by Martin Proetzsch.
zas_
parents: 1647
diff changeset
26 #endif
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
27
281
9995c5fb202a gqview.h -> main.h
zas_
parents: 279
diff changeset
28 #include "main.h"
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
29
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
30 #include "cache.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
31 #include "collect.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
32 #include "collect-io.h"
586
905688aa2317 split filelist.c to filefilter.c and filedata.c
nadvornik
parents: 576
diff changeset
33 #include "filedata.h"
905688aa2317 split filelist.c to filefilter.c and filedata.c
nadvornik
parents: 576
diff changeset
34 #include "filefilter.h"
902
c414002a1f27 Move history_list_*() functions to separate files:
zas_
parents: 877
diff changeset
35 #include "history_list.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
36 #include "image-overlay.h"
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
37 #include "layout.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
38 #include "layout_image.h"
1019
4aa1a6235458 Move save/load_options() to options.[ch].
zas_
parents: 1018
diff changeset
39 #include "options.h"
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
40 #include "remote.h"
1061
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
41 #include "secure_save.h"
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
42 #include "similar.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
43 #include "ui_fileops.h"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
44 #include "ui_utildlg.h"
793
baade53888be used new notification in cache_maint
nadvornik
parents: 786
diff changeset
45 #include "cache_maint.h"
877
21e324dcd78c refresh thumbnails on file change
nadvornik
parents: 840
diff changeset
46 #include "thumb.h"
1214
31402ecb2aed write metadata after timeout, image change or dir change
nadvornik
parents: 1174
diff changeset
47 #include "metadata.h"
1272
e0e12512cde2 read external editors from .desktop files
nadvornik
parents: 1266
diff changeset
48 #include "editors.h"
1288
10073464e6aa use metadata_read_* functions where possible
nadvornik
parents: 1284
diff changeset
49 #include "exif.h"
1294
7ac9664242b2 histogram caching
nadvornik
parents: 1288
diff changeset
50 #include "histogram.h"
1334
f97450e632a1 create toolbar from ui_manager
nadvornik
parents: 1321
diff changeset
51 #include "pixbuf_util.h"
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
52
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
53
1506
d352a44545a6 Force thumbnails refreshing when thumbnails dimensions are modified through Preferences.
zas_
parents: 1463
diff changeset
54 gboolean thumb_format_changed = FALSE;
279
5cd386db1e6c gqview_remote -> remote_connection
zas_
parents: 278
diff changeset
55 static RemoteConnection *remote_connection = NULL;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
56
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
57 /*
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
58 *-----------------------------------------------------------------------------
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
59 * keyboard functions
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
60 *-----------------------------------------------------------------------------
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
61 */
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
62
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
63 void keyboard_scroll_calc(gint *x, gint *y, GdkEventKey *event)
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
64 {
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
65 static gint delta = 0;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
66 static guint32 time_old = 0;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
67 static guint keyval_old = 0;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
68
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
69 if (event->state & GDK_CONTROL_MASK)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
70 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
71 if (*x < 0) *x = G_MININT / 2;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
72 if (*x > 0) *x = G_MAXINT / 2;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
73 if (*y < 0) *y = G_MININT / 2;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
74 if (*y > 0) *y = G_MAXINT / 2;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
75
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
76 return;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
77 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
78
318
b16b9b8979e5 Add a new struct ConfOptions to handle options.
zas_
parents: 289
diff changeset
79 if (options->progressive_key_scrolling)
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
80 {
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
81 guint32 time_diff;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
82
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
83 time_diff = event->time - time_old;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
84
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
85 /* key pressed within 125ms ? (1/8 second) */
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
86 if (time_diff > 125 || event->keyval != keyval_old) delta = 0;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
87
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
88 time_old = event->time;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
89 keyval_old = event->keyval;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
90
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
91 delta += 2;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
92 }
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
93 else
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
94 {
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
95 delta = 8;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
96 }
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
97
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
98 *x = *x * delta;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
99 *y = *y * delta;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
100 }
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
101
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
102
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
103
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
104 /*
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
105 *-----------------------------------------------------------------------------
3
gqview
parents: 1
diff changeset
106 * command line parser (private) hehe, who needs popt anyway?
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
107 *-----------------------------------------------------------------------------
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 433
diff changeset
108 */
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
109
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
110 static void parse_command_line_add_file(const gchar *file_path, gchar **path, gchar **file,
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 433
diff changeset
111 GList **list, GList **collection_list)
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
112 {
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
113 gchar *path_parsed;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
114
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
115 path_parsed = g_strdup(file_path);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
116 parse_out_relatives(path_parsed);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
117
781
2d2cca2bceb0 Replace hardcoded collection filename extension by a macro (GQ_COLLECTION_EXT).
zas_
parents: 780
diff changeset
118 if (file_extension_match(path_parsed, GQ_COLLECTION_EXT))
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
119 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
120 *collection_list = g_list_append(*collection_list, path_parsed);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
121 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
122 else
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
123 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
124 if (!*path) *path = remove_level_from_path(path_parsed);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
125 if (!*file) *file = g_strdup(path_parsed);
576
9dc0513837b5 dropped path_list functions, use filelist functions everywhere
nadvornik
parents: 556
diff changeset
126 *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
127 }
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
128 }
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
129
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
130 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
131 GList **list)
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
132 {
1727
548fddf5070a ignored multiple directories specified on commandline
nadvornik
parents: 1702
diff changeset
133 #if 0
548fddf5070a ignored multiple directories specified on commandline
nadvornik
parents: 1702
diff changeset
134 /* This is broken because file filter is not initialized yet.
548fddf5070a ignored multiple directories specified on commandline
nadvornik
parents: 1702
diff changeset
135 */
780
44128da39e13 Drop initialization to NULL since filelist_read() will take care of it.
zas_
parents: 767
diff changeset
136 GList *files;
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
137 gchar *path_parsed;
783
d6a7fb4b8e7c replaced directory path with FileData* dir_fd
nadvornik
parents: 782
diff changeset
138 FileData *dir_fd;
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
139
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
140 path_parsed = g_strdup(dir);
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
141 parse_out_relatives(path_parsed);
783
d6a7fb4b8e7c replaced directory path with FileData* dir_fd
nadvornik
parents: 782
diff changeset
142 dir_fd = file_data_new_simple(path_parsed);
d6a7fb4b8e7c replaced directory path with FileData* dir_fd
nadvornik
parents: 782
diff changeset
143
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
144
783
d6a7fb4b8e7c replaced directory path with FileData* dir_fd
nadvornik
parents: 782
diff changeset
145 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
146 {
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
147 GList *work;
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
148
576
9dc0513837b5 dropped path_list functions, use filelist functions everywhere
nadvornik
parents: 556
diff changeset
149 files = filelist_filter(files, FALSE);
9dc0513837b5 dropped path_list functions, use filelist functions everywhere
nadvornik
parents: 556
diff changeset
150 files = filelist_sort_path(files);
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
151
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
152 work = files;
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
153 while (work)
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
154 {
576
9dc0513837b5 dropped path_list functions, use filelist functions everywhere
nadvornik
parents: 556
diff changeset
155 FileData *fd = work->data;
9dc0513837b5 dropped path_list functions, use filelist functions everywhere
nadvornik
parents: 556
diff changeset
156 if (!*path) *path = remove_level_from_path(fd->path);
9dc0513837b5 dropped path_list functions, use filelist functions everywhere
nadvornik
parents: 556
diff changeset
157 if (!*file) *file = g_strdup(fd->path);
9dc0513837b5 dropped path_list functions, use filelist functions everywhere
nadvornik
parents: 556
diff changeset
158 *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
159
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
160 work = work->next;
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
161 }
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
162
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
163 g_list_free(files);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
164 }
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
165
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
166 g_free(path_parsed);
783
d6a7fb4b8e7c replaced directory path with FileData* dir_fd
nadvornik
parents: 782
diff changeset
167 file_data_unref(dir_fd);
1727
548fddf5070a ignored multiple directories specified on commandline
nadvornik
parents: 1702
diff changeset
168 #else
548fddf5070a ignored multiple directories specified on commandline
nadvornik
parents: 1702
diff changeset
169 DEBUG_1("multiple directories specified, ignoring: %s", dir);
548fddf5070a ignored multiple directories specified on commandline
nadvornik
parents: 1702
diff changeset
170 #endif
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
171 }
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
172
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
173 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
174 GList **list, gchar **first_dir)
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
175 {
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 433
diff changeset
176
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
177 if (!*list && !*first_dir)
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
178 {
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
179 *first_dir = g_strdup(dir);
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
180 }
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
181 else
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
182 {
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
183 if (*first_dir)
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
184 {
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
185 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
186 g_free(*first_dir);
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
187 *first_dir = NULL;
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
188 }
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
189 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
190 }
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
191 }
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 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
194 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
195 {
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 433
diff changeset
196
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
197 if (*first_dir)
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
198 {
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
199 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
200 g_free(*first_dir);
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
201 *first_dir = NULL;
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
202 }
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
203 parse_command_line_add_file(file_path, path, file, list, collection_list);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
204 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
205
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
206 static void parse_command_line(gint argc, gchar *argv[])
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
207 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
208 GList *list = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
209 GList *remote_list = NULL;
652
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
210 GList *remote_errors = NULL;
1437
a3d3208b0c50 gint -> gboolean.
zas_
parents: 1346
diff changeset
211 gboolean remote_do = FALSE;
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
212 gchar *first_dir = NULL;
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
213
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
214 command_line = g_new0(CommandLine, 1);
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
215
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
216 command_line->argc = argc;
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
217 command_line->argv = argv;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
218
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
219 if (argc > 1)
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
220 {
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
221 gint i;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
222 gchar *base_dir = get_current_dir();
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
223 i = 1;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
224 while (i < argc)
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
225 {
1507
6c2e31dad7ef convert commandline to utf8
nadvornik
parents: 1506
diff changeset
226 gchar *cmd_line = path_to_utf8(argv[i]);
702
e07895754e65 Drop concat_dir_and_file() and use g_build_filename() instead.
zas_
parents: 694
diff changeset
227 gchar *cmd_all = g_build_filename(base_dir, cmd_line, NULL);
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
228
726
a1dcef8cd1ae Use G_DIR_SEPARATOR where applicable.
zas_
parents: 714
diff changeset
229 if (cmd_line[0] == G_DIR_SEPARATOR && isdir(cmd_line))
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
230 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
231 parse_command_line_process_dir(cmd_line, &command_line->path, &command_line->file, &list, &first_dir);
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
232 }
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
233 else if (isdir(cmd_all))
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
234 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
235 parse_command_line_process_dir(cmd_all, &command_line->path, &command_line->file, &list, &first_dir);
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
236 }
726
a1dcef8cd1ae Use G_DIR_SEPARATOR where applicable.
zas_
parents: 714
diff changeset
237 else if (cmd_line[0] == G_DIR_SEPARATOR && isfile(cmd_line))
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
238 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
239 parse_command_line_process_file(cmd_line, &command_line->path, &command_line->file,
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
240 &list, &command_line->collection_list, &first_dir);
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
241 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
242 else if (isfile(cmd_all))
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
243 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
244 parse_command_line_process_file(cmd_all, &command_line->path, &command_line->file,
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
245 &list, &command_line->collection_list, &first_dir);
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
246 }
378
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
247 else if (strncmp(cmd_line, "--debug", 7) == 0 && (cmd_line[7] == '\0' || cmd_line[7] == '='))
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
248 {
378
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
249 /* do nothing but do not produce warnings */
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
250 }
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
251 else if (strcmp(cmd_line, "+t") == 0 ||
3
gqview
parents: 1
diff changeset
252 strcmp(cmd_line, "--with-tools") == 0)
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
253 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
254 command_line->tools_show = TRUE;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
255
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
256 remote_list = g_list_append(remote_list, "+t");
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
257 }
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
258 else if (strcmp(cmd_line, "-t") == 0 ||
3
gqview
parents: 1
diff changeset
259 strcmp(cmd_line, "--without-tools") == 0)
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
260 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
261 command_line->tools_hide = TRUE;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
262
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
263 remote_list = g_list_append(remote_list, "-t");
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
264 }
3
gqview
parents: 1
diff changeset
265 else if (strcmp(cmd_line, "-f") == 0 ||
gqview
parents: 1
diff changeset
266 strcmp(cmd_line, "--fullscreen") == 0)
gqview
parents: 1
diff changeset
267 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
268 command_line->startup_full_screen = TRUE;
3
gqview
parents: 1
diff changeset
269 }
gqview
parents: 1
diff changeset
270 else if (strcmp(cmd_line, "-s") == 0 ||
gqview
parents: 1
diff changeset
271 strcmp(cmd_line, "--slideshow") == 0)
gqview
parents: 1
diff changeset
272 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
273 command_line->startup_in_slideshow = TRUE;
3
gqview
parents: 1
diff changeset
274 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
275 else if (strcmp(cmd_line, "-l") == 0 ||
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
276 strcmp(cmd_line, "--list") == 0)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
277 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
278 command_line->startup_command_line_collection = TRUE;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
279 }
81
0ef72a64930b Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents: 79
diff changeset
280 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
281 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
282 if (!command_line->geometry) command_line->geometry = g_strdup(cmd_line + 11);
81
0ef72a64930b Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents: 79
diff changeset
283 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
284 else if (strcmp(cmd_line, "-r") == 0 ||
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
285 strcmp(cmd_line, "--remote") == 0)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
286 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
287 if (!remote_do)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
288 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
289 remote_do = TRUE;
652
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
290 remote_list = remote_build_list(remote_list, argc - i, &argv[i], &remote_errors);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
291 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
292 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
293 else if (strcmp(cmd_line, "-rh") == 0 ||
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
294 strcmp(cmd_line, "--remote-help") == 0)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
295 {
279
5cd386db1e6c gqview_remote -> remote_connection
zas_
parents: 278
diff changeset
296 remote_help();
512
f9bf33be53ff Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents: 509
diff changeset
297 exit(0);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
298 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
299 else if (strcmp(cmd_line, "--blank") == 0)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
300 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
301 command_line->startup_blank = TRUE;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
302 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
303 else if (strcmp(cmd_line, "-v") == 0 ||
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
304 strcmp(cmd_line, "--version") == 0)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
305 {
694
a3218946bd2d Sort out log_printf() vs printf_term() mix up.
zas_
parents: 687
diff changeset
306 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
307 exit(0);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
308 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
309 else if (strcmp(cmd_line, "--alternate") == 0)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
310 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
311 /* enable faster experimental algorithm */
673
fbebf5cf4a55 Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents: 671
diff changeset
312 log_printf("Alternate similarity algorithm enabled\n");
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
313 image_sim_alternate_set(TRUE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
314 }
3
gqview
parents: 1
diff changeset
315 else if (strcmp(cmd_line, "-h") == 0 ||
gqview
parents: 1
diff changeset
316 strcmp(cmd_line, "--help") == 0)
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
317 {
694
a3218946bd2d Sort out log_printf() vs printf_term() mix up.
zas_
parents: 687
diff changeset
318 printf_term("%s %s\n", GQ_APPNAME, VERSION);
403
2649a28d31b6 Introduce printf_term() macro and use it.
zas_
parents: 387
diff changeset
319 printf_term(_("Usage: %s [options] [path]\n\n"), GQ_APPNAME_LC);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
320 print_term(_("valid options are:\n"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
321 print_term(_(" +t, --with-tools force show of tools\n"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
322 print_term(_(" -t, --without-tools force hide of tools\n"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
323 print_term(_(" -f, --fullscreen start in full screen mode\n"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
324 print_term(_(" -s, --slideshow start in slideshow mode\n"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
325 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
326 print_term(_(" --geometry=GEOMETRY set main window location\n"));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
327 print_term(_(" -r, --remote send following commands to open window\n"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
328 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
329 #ifdef DEBUG
379
a430eb2e3c95 Indicate --debug[=level] in usage display.
zas_
parents: 378
diff changeset
330 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
331 #endif
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
332 print_term(_(" -v, --version print version info\n"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
333 print_term(_(" -h, --help show this message\n\n"));
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 433
diff changeset
334
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
335 #if 0
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
336 /* these options are not officially supported!
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
337 * only for testing new features, no need to translate them */
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
338 print_term( " --alternate use alternate similarity algorithm\n");
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
339 #endif
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 433
diff changeset
340
512
f9bf33be53ff Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents: 509
diff changeset
341 exit(0);
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
342 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
343 else if (!remote_do)
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
344 {
403
2649a28d31b6 Introduce printf_term() macro and use it.
zas_
parents: 387
diff changeset
345 printf_term(_("invalid or ignored: %s\nUse --help for options\n"), cmd_line);
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
346 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
347
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
348 g_free(cmd_all);
1507
6c2e31dad7ef convert commandline to utf8
nadvornik
parents: 1506
diff changeset
349 g_free(cmd_line);
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
350 i++;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
351 }
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
352 g_free(base_dir);
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
353 parse_out_relatives(command_line->path);
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
354 parse_out_relatives(command_line->file);
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
355 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
356
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
357 list = g_list_reverse(list);
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
358
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
359 if (!command_line->path && first_dir)
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
360 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
361 command_line->path = first_dir;
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
362 first_dir = NULL;
79
528e3432e0c0 Thu Oct 19 07:23:37 2006 John Ellis <johne@verizon.net>
gqview
parents: 76
diff changeset
363
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
364 parse_out_relatives(command_line->path);
76
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
365 }
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
366 g_free(first_dir);
07773a3c5b29 Sun Oct 15 04:03:41 2006 John Ellis <johne@verizon.net>
gqview
parents: 21
diff changeset
367
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
368 if (remote_do)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
369 {
652
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
370 if (remote_errors)
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
371 {
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
372 GList *work = remote_errors;
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
373
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
374 printf_term(_("Invalid or ignored remote options: "));
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
375 while (work)
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
376 {
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
377 gchar *opt = work->data;
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
378
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
379 printf_term("%s%s", (work == remote_errors) ? "" : ", ", opt);
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
380 work = work->next;
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
381 }
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
382
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
383 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
384 }
9bcfd6d7a902 Display a message when invalid remote options are used.
zas_
parents: 649
diff changeset
385
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
386 remote_control(argv[0], remote_list, command_line->path, list, command_line->collection_list);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
387 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
388 g_list_free(remote_list);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
389
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
390 if (list && list->next)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
391 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
392 command_line->cmd_list = list;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
393 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
394 else
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
395 {
576
9dc0513837b5 dropped path_list functions, use filelist functions everywhere
nadvornik
parents: 556
diff changeset
396 filelist_free(list);
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
397 command_line->cmd_list = NULL;
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
398 }
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
399
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
400 if (command_line->startup_blank)
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
401 {
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
402 g_free(command_line->path);
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
403 command_line->path = NULL;
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
404 g_free(command_line->file);
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
405 command_line->file = NULL;
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
406 filelist_free(command_line->cmd_list);
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
407 command_line->cmd_list = NULL;
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
408 string_list_free(command_line->collection_list);
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
409 command_line->collection_list = NULL;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
410 }
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
411 }
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
412
1000
4fe8f9656107 For the sake of consistency, use glib basic types everywhere.
zas_
parents: 995
diff changeset
413 static void parse_command_line_for_debug_option(gint argc, gchar *argv[])
378
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
414 {
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
415 #ifdef DEBUG
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
416 const gchar *debug_option = "--debug";
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
417 gint len = strlen(debug_option);
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
418
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
419 if (argc > 1)
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
420 {
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
421 gint i;
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 433
diff changeset
422
378
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
423 for (i = 1; i < argc; i++)
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
424 {
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
425 const gchar *cmd_line = argv[i];
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
426 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
427 {
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
428 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
429
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
430 /* 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
431 if (cmd_line_len == len)
507
135570a8bd96 Move debug macros from main.h to new debug.h.
zas_
parents: 506
diff changeset
432 debug_level_add(1);
378
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
433 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
434 {
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
435 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
436 if (n < 0) n = 1;
507
135570a8bd96 Move debug macros from main.h to new debug.h.
zas_
parents: 506
diff changeset
437 debug_level_add(n);
378
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
438 }
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
439 }
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
440 }
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
441 }
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
442
507
135570a8bd96 Move debug macros from main.h to new debug.h.
zas_
parents: 506
diff changeset
443 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
444 #endif
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
445 }
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
446
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
447 /*
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
448 *-----------------------------------------------------------------------------
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
449 * startup, init, and exit
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
450 *-----------------------------------------------------------------------------
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 433
diff changeset
451 */
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
452
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
453 #define RC_HISTORY_NAME "history"
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
454
1636
c0f6a98c9204 do not install helper scripts into /usr/bin
nadvornik
parents: 1617
diff changeset
455 static void setup_env_path(void)
c0f6a98c9204 do not install helper scripts into /usr/bin
nadvornik
parents: 1617
diff changeset
456 {
c0f6a98c9204 do not install helper scripts into /usr/bin
nadvornik
parents: 1617
diff changeset
457 const gchar *old_path = g_getenv("PATH");
c0f6a98c9204 do not install helper scripts into /usr/bin
nadvornik
parents: 1617
diff changeset
458 gchar *path = g_strconcat(GQ_BIN_DIR, ":", old_path, NULL);
c0f6a98c9204 do not install helper scripts into /usr/bin
nadvornik
parents: 1617
diff changeset
459 g_setenv("PATH", path, TRUE);
c0f6a98c9204 do not install helper scripts into /usr/bin
nadvornik
parents: 1617
diff changeset
460 g_free(path);
c0f6a98c9204 do not install helper scripts into /usr/bin
nadvornik
parents: 1617
diff changeset
461 }
c0f6a98c9204 do not install helper scripts into /usr/bin
nadvornik
parents: 1617
diff changeset
462
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
463 static void keys_load(void)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
464 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
465 gchar *path;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
466
1145
3a7af6a8cd5f Use functions to return directories instead of constants.
zas_
parents: 1089
diff changeset
467 path = g_build_filename(get_rc_dir(), RC_HISTORY_NAME, NULL);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
468 history_list_load(path);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
469 g_free(path);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
470 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
471
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
472 static void keys_save(void)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
473 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
474 gchar *path;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
475
1145
3a7af6a8cd5f Use functions to return directories instead of constants.
zas_
parents: 1089
diff changeset
476 path = g_build_filename(get_rc_dir(), RC_HISTORY_NAME, NULL);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
477 history_list_save(path);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
478 g_free(path);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
479 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
480
1146
11b93d0791db Rename check_for_home_path() to mkdir_if_not_exists().
zas_
parents: 1145
diff changeset
481 static void mkdir_if_not_exists(const gchar *path)
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
482 {
1145
3a7af6a8cd5f Use functions to return directories instead of constants.
zas_
parents: 1089
diff changeset
483 if (isdir(path)) return;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
484
1145
3a7af6a8cd5f Use functions to return directories instead of constants.
zas_
parents: 1089
diff changeset
485 log_printf(_("Creating %s dir:%s\n"), GQ_APPNAME, path);
3a7af6a8cd5f Use functions to return directories instead of constants.
zas_
parents: 1089
diff changeset
486
1148
95860439070b Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents: 1146
diff changeset
487 if (!recursive_mkdir_if_not_exists(path, 0755))
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
488 {
1145
3a7af6a8cd5f Use functions to return directories instead of constants.
zas_
parents: 1089
diff changeset
489 log_printf(_("Could not create dir:%s\n"), path);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
490 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
491 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
492
1061
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
493
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
494 /* We add to duplicate and modify gtk_accel_map_print() and gtk_accel_map_save()
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
495 * to improve the reliability in special cases (especially when disk is full)
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
496 * These functions are now using secure saving stuff.
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
497 */
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
498 static void gq_accel_map_print(
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
499 gpointer data,
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
500 const gchar *accel_path,
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
501 guint accel_key,
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
502 GdkModifierType accel_mods,
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
503 gboolean changed)
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
504 {
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
505 GString *gstring = g_string_new(changed ? NULL : "; ");
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
506 SecureSaveInfo *ssi = data;
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
507 gchar *tmp, *name;
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
508
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
509 g_string_append(gstring, "(gtk_accel_path \"");
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
510
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
511 tmp = g_strescape(accel_path, NULL);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
512 g_string_append(gstring, tmp);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
513 g_free(tmp);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
514
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
515 g_string_append(gstring, "\" \"");
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
516
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
517 name = gtk_accelerator_name(accel_key, accel_mods);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
518 tmp = g_strescape(name, NULL);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
519 g_free(name);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
520 g_string_append(gstring, tmp);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
521 g_free(tmp);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
522
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
523 g_string_append(gstring, "\")\n");
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
524
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
525 secure_fwrite(gstring->str, sizeof(*gstring->str), gstring->len, ssi);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
526
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
527 g_string_free(gstring, TRUE);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
528 }
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
529
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
530 static gboolean gq_accel_map_save(const gchar *path)
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
531 {
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
532 gchar *pathl;
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
533 SecureSaveInfo *ssi;
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
534 GString *gstring;
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
535
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
536 pathl = path_from_utf8(path);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
537 ssi = secure_open(pathl);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
538 g_free(pathl);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
539 if (!ssi)
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
540 {
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
541 log_printf(_("error saving file: %s\n"), path);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
542 return FALSE;
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
543 }
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
544
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
545 gstring = g_string_new("; ");
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
546 if (g_get_prgname())
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
547 g_string_append(gstring, g_get_prgname());
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
548 g_string_append(gstring, " GtkAccelMap rc-file -*- scheme -*-\n");
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
549 g_string_append(gstring, "; this file is an automated accelerator map dump\n");
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
550 g_string_append(gstring, ";\n");
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
551
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
552 secure_fwrite(gstring->str, sizeof(*gstring->str), gstring->len, ssi);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
553
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
554 g_string_free(gstring, TRUE);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
555
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
556 gtk_accel_map_foreach((gpointer) ssi, gq_accel_map_print);
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
557
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
558 if (secure_close(ssi))
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
559 {
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
560 log_printf(_("error saving file: %s\nerror: %s\n"), path,
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
561 secsave_strerror(secsave_errno));
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
562 return FALSE;
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
563 }
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
564
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
565 return TRUE;
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
566 }
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
567
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
568 static gchar *accep_map_filename(void)
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
569 {
1145
3a7af6a8cd5f Use functions to return directories instead of constants.
zas_
parents: 1089
diff changeset
570 return g_build_filename(get_rc_dir(), "accels", NULL);
1061
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
571 }
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
572
1017
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
573 static void accel_map_save(void)
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
574 {
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
575 gchar *path;
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
576
1061
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
577 path = accep_map_filename();
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
578 gq_accel_map_save(path);
1017
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
579 g_free(path);
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
580 }
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
581
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
582 static void accel_map_load(void)
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
583 {
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
584 gchar *path;
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
585 gchar *pathl;
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
586
1061
156a58224c85 Better handling of accels map file writing errors.
zas_
parents: 1055
diff changeset
587 path = accep_map_filename();
1017
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
588 pathl = path_from_utf8(path);
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
589 gtk_accel_map_load(pathl);
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
590 g_free(pathl);
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
591 g_free(path);
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
592 }
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
593
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
594 static void gtkrc_load(void)
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
595 {
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
596 gchar *path;
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
597 gchar *pathl;
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
598
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
599 /* If a gtkrc file exists in the rc directory, add it to the
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
600 * list of files to be parsed at the end of gtk_init() */
1145
3a7af6a8cd5f Use functions to return directories instead of constants.
zas_
parents: 1089
diff changeset
601 path = g_build_filename(get_rc_dir(), "gtkrc", NULL);
1017
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
602 pathl = path_from_utf8(path);
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
603 if (access(pathl, R_OK) == 0)
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
604 gtk_rc_add_default_file(pathl);
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
605 g_free(pathl);
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
606 g_free(path);
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
607 }
630
83d3ded39e49 An option to save and restore the last path used was added.
zas_
parents: 629
diff changeset
608
739
3296f8d3a79b Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents: 738
diff changeset
609 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
610 {
840
cb957189e723 another try to free layout at exit
nadvornik
parents: 799
diff changeset
611 LayoutWindow *lw = NULL;
739
3296f8d3a79b Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents: 738
diff changeset
612
3296f8d3a79b Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents: 738
diff changeset
613 remote_close(remote_connection);
3296f8d3a79b Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents: 738
diff changeset
614
3296f8d3a79b Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents: 738
diff changeset
615 collect_manager_flush();
3296f8d3a79b Move code from exit_program_final() to new sync_options_with_current_state().
zas_
parents: 738
diff changeset
616
742
a336b5545af6 Pass ConfOptions * to save_options() and load_options().
zas_
parents: 740
diff changeset
617 save_options(options);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
618 keys_save();
1017
a8b874774b83 Move some code to new functions, to simplify main().
zas_
parents: 1015
diff changeset
619 accel_map_save();
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
620
840
cb957189e723 another try to free layout at exit
nadvornik
parents: 799
diff changeset
621 if (layout_valid(&lw))
cb957189e723 another try to free layout at exit
nadvornik
parents: 799
diff changeset
622 {
cb957189e723 another try to free layout at exit
nadvornik
parents: 799
diff changeset
623 layout_free(lw);
cb957189e723 another try to free layout at exit
nadvornik
parents: 799
diff changeset
624 }
cb957189e723 another try to free layout at exit
nadvornik
parents: 799
diff changeset
625
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
626 gtk_main_quit();
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
627 }
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
628
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
629 static GenericDialog *exit_dialog = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
630
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
631 static void exit_confirm_cancel_cb(GenericDialog *gd, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
632 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
633 exit_dialog = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
634 generic_dialog_close(gd);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
635 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
636
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
637 static void exit_confirm_exit_cb(GenericDialog *gd, gpointer data)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
638 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
639 exit_dialog = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
640 generic_dialog_close(gd);
278
04abf5b160eb exit_gqview() renamed to exit_program().
zas_
parents: 254
diff changeset
641 exit_program_final();
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
642 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
643
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
644 static gint exit_confirm_dlg(void)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
645 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
646 GtkWidget *parent;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
647 LayoutWindow *lw;
288
d1f74154463e Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents: 283
diff changeset
648 gchar *msg;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
649
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
650 if (exit_dialog)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
651 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
652 gtk_window_present(GTK_WINDOW(exit_dialog->dialog));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
653 return TRUE;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
654 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
655
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
656 if (!collection_window_modified_exists()) return FALSE;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
657
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
658 parent = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
659 lw = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
660 if (layout_valid(&lw))
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
661 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
662 parent = lw->window;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
663 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
664
288
d1f74154463e Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents: 283
diff changeset
665 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
666 exit_dialog = generic_dialog_new(msg,
1174
0bea79d87065 Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents: 1148
diff changeset
667 "exit", parent, FALSE,
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
668 exit_confirm_cancel_cb, NULL);
288
d1f74154463e Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents: 283
diff changeset
669 g_free(msg);
d1f74154463e Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents: 283
diff changeset
670 msg = g_strdup_printf(_("Quit %s"), GQ_APPNAME);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
671 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
672 msg, _("Collections have been modified. Quit anyway?"));
d1f74154463e Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents: 283
diff changeset
673 g_free(msg);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
674 generic_dialog_add_button(exit_dialog, GTK_STOCK_QUIT, NULL, exit_confirm_exit_cb, TRUE);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
675
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
676 gtk_widget_show(exit_dialog->dialog);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
677
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
678 return TRUE;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
679 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
680
1231
ca8ccf0c3e81 added done callback to utilops
nadvornik
parents: 1214
diff changeset
681 static void exit_program_write_metadata_cb(gint success, const gchar *dest_path, gpointer data)
ca8ccf0c3e81 added done callback to utilops
nadvornik
parents: 1214
diff changeset
682 {
ca8ccf0c3e81 added done callback to utilops
nadvornik
parents: 1214
diff changeset
683 if (success) exit_program();
ca8ccf0c3e81 added done callback to utilops
nadvornik
parents: 1214
diff changeset
684 }
ca8ccf0c3e81 added done callback to utilops
nadvornik
parents: 1214
diff changeset
685
278
04abf5b160eb exit_gqview() renamed to exit_program().
zas_
parents: 254
diff changeset
686 void exit_program(void)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
687 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
688 layout_image_full_screen_stop(NULL);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
689
1231
ca8ccf0c3e81 added done callback to utilops
nadvornik
parents: 1214
diff changeset
690 if (metadata_write_queue_confirm(exit_program_write_metadata_cb, NULL)) return;
1214
31402ecb2aed write metadata after timeout, image change or dir change
nadvornik
parents: 1174
diff changeset
691
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
692 if (exit_confirm_dlg()) return;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
693
278
04abf5b160eb exit_gqview() renamed to exit_program().
zas_
parents: 254
diff changeset
694 exit_program_final();
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
695 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
696
1266
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
697 /* This code is supposed to handle situation when a file mmaped by image_loader
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
698 * or by exif loader is truncated by some other process.
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
699 * This is probably not completely correct according to posix, because
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
700 * mmap is not in the list of calls that can be used safely in signal handler,
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
701 * but anyway, the handler is called in situation when the application would
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
702 * crash otherwise.
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
703 * Ideas for improvement are welcome ;)
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
704 */
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
705 /* FIXME: this probably needs some better ifdefs. Please report any compilation problems */
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
706
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
707 #ifdef SIGBUS
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
708 static void sigbus_handler_cb(int signum, siginfo_t *info, void *context)
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
709 {
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
710 unsigned long pagesize = sysconf(_SC_PAGE_SIZE);
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
711 DEBUG_1("SIGBUS %p", info->si_addr);
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
712 mmap((void *)(((unsigned long)info->si_addr / pagesize) * pagesize), pagesize, PROT_READ | PROT_WRITE, MAP_FIXED | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
713 }
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
714 #endif
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
715
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
716 static void setup_sigbus_handler(void)
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
717 {
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
718 #ifdef SIGBUS
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
719 struct sigaction sigbus_action;
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
720 sigfillset(&sigbus_action.sa_mask);
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
721 sigbus_action.sa_sigaction = sigbus_handler_cb;
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
722 sigbus_action.sa_flags = SA_SIGINFO;
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
723
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
724 sigaction(SIGBUS, &sigbus_action, NULL);
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
725 #endif
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
726 }
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
727
1000
4fe8f9656107 For the sake of consistency, use glib basic types everywhere.
zas_
parents: 995
diff changeset
728 gint main(gint argc, gchar *argv[])
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
729 {
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
730 CollectionData *first_collection = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
731 gchar *buf;
649
3097880d7d95 Move all remote stuff from main.c to remote.[ch].
zas_
parents: 648
diff changeset
732 CollectionData *cd = NULL;
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
733
1015
2cdcf67e9300 run image loader in separate thread
nadvornik
parents: 1000
diff changeset
734 #ifdef HAVE_GTHREAD
1346
c9949c19a6d0 No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents: 1334
diff changeset
735 g_thread_init(NULL);
1020
2bd19478ba29 improved thread support in image loader
nadvornik
parents: 1019
diff changeset
736 gdk_threads_init();
2bd19478ba29 improved thread support in image loader
nadvornik
parents: 1019
diff changeset
737 gdk_threads_enter();
1015
2cdcf67e9300 run image loader in separate thread
nadvornik
parents: 1000
diff changeset
738 #endif
2cdcf67e9300 run image loader in separate thread
nadvornik
parents: 1000
diff changeset
739
509
b78a91d0779e Move get_exec_time() to debug.{c,h}.
zas_
parents: 507
diff changeset
740 /* init execution time counter (debug only) */
b78a91d0779e Move get_exec_time() to debug.{c,h}.
zas_
parents: 507
diff changeset
741 init_exec_time();
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 433
diff changeset
742
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
743 /* setup locale, i18n */
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
744 gtk_set_locale();
686
c0dda0ffb931 configure.in was rewritten:
bruclik
parents: 684
diff changeset
745
687
d100e927488f Fix spurious end of line introduced in revision 780.
zas_
parents: 686
diff changeset
746 #ifdef ENABLE_NLS
d100e927488f Fix spurious end of line introduced in revision 780.
zas_
parents: 686
diff changeset
747 bindtextdomain(PACKAGE, GQ_LOCALEDIR);
10
6d50eaba8e4b ########
gqview
parents: 9
diff changeset
748 bind_textdomain_codeset(PACKAGE, "UTF-8");
6d50eaba8e4b ########
gqview
parents: 9
diff changeset
749 textdomain(PACKAGE);
686
c0dda0ffb931 configure.in was rewritten:
bruclik
parents: 684
diff changeset
750 #endif
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 902
diff changeset
751
1288
10073464e6aa use metadata_read_* functions where possible
nadvornik
parents: 1284
diff changeset
752 exif_init();
10073464e6aa use metadata_read_* functions where possible
nadvornik
parents: 1284
diff changeset
753
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
754 /* setup random seed for random slideshow */
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 433
diff changeset
755 srand(time(NULL));
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
756
1647
24360823aa6a hide pointless version warning.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents: 1636
diff changeset
757 #if 0
24360823aa6a hide pointless version warning.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents: 1636
diff changeset
758 log_printf("%s %s, This is a beta release.\n", GQ_APPNAME, VERSION);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
759 #endif
793
baade53888be used new notification in cache_maint
nadvornik
parents: 786
diff changeset
760
1266
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
761 setup_sigbus_handler();
1267d17986f3 added SIGBUS handler
nadvornik
parents: 1231
diff changeset
762
793
baade53888be used new notification in cache_maint
nadvornik
parents: 786
diff changeset
763 /* register global notify functions */
baade53888be used new notification in cache_maint
nadvornik
parents: 786
diff changeset
764 file_data_register_notify_func(cache_notify_cb, NULL, NOTIFY_PRIORITY_HIGH);
877
21e324dcd78c refresh thumbnails on file change
nadvornik
parents: 840
diff changeset
765 file_data_register_notify_func(thumb_notify_cb, NULL, NOTIFY_PRIORITY_HIGH);
1294
7ac9664242b2 histogram caching
nadvornik
parents: 1288
diff changeset
766 file_data_register_notify_func(histogram_notify_cb, NULL, NOTIFY_PRIORITY_HIGH);
799
278962ba162a use the new notification for collections
nadvornik
parents: 793
diff changeset
767 file_data_register_notify_func(collect_manager_notify_cb, NULL, NOTIFY_PRIORITY_LOW);
1702
9efd43f52b5b remove deleted files from metadata queue
nadvornik
parents: 1685
diff changeset
768 file_data_register_notify_func(metadata_notify_cb, NULL, NOTIFY_PRIORITY_LOW);
9efd43f52b5b remove deleted files from metadata queue
nadvornik
parents: 1685
diff changeset
769
793
baade53888be used new notification in cache_maint
nadvornik
parents: 786
diff changeset
770
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
771 gtkrc_load();
1602
6bfe8fc7a403 added GPS map support - patch by Colin Clark
nadvornik
parents: 1507
diff changeset
772
6bfe8fc7a403 added GPS map support - patch by Colin Clark
nadvornik
parents: 1507
diff changeset
773 #ifdef HAVE_LIBCHAMPLAIN
6bfe8fc7a403 added GPS map support - patch by Colin Clark
nadvornik
parents: 1507
diff changeset
774 #ifdef HAVE_LIBCHAMPLAIN_GTK
1733
91a65afb5d77 check gtk_clutter_init return value
nadvornik
parents: 1727
diff changeset
775 if (gtk_clutter_init(&argc, &argv) != CLUTTER_INIT_SUCCESS)
91a65afb5d77 check gtk_clutter_init return value
nadvornik
parents: 1727
diff changeset
776 {
91a65afb5d77 check gtk_clutter_init return value
nadvornik
parents: 1727
diff changeset
777 log_printf("Can't initialize clutter-gtk.\n");
91a65afb5d77 check gtk_clutter_init return value
nadvornik
parents: 1727
diff changeset
778 exit(1);
91a65afb5d77 check gtk_clutter_init return value
nadvornik
parents: 1727
diff changeset
779 }
1602
6bfe8fc7a403 added GPS map support - patch by Colin Clark
nadvornik
parents: 1507
diff changeset
780 #else
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
781 gtk_init(&argc, &argv);
1602
6bfe8fc7a403 added GPS map support - patch by Colin Clark
nadvornik
parents: 1507
diff changeset
782 #endif
6bfe8fc7a403 added GPS map support - patch by Colin Clark
nadvornik
parents: 1507
diff changeset
783 #else
6bfe8fc7a403 added GPS map support - patch by Colin Clark
nadvornik
parents: 1507
diff changeset
784 gtk_init(&argc, &argv);
6bfe8fc7a403 added GPS map support - patch by Colin Clark
nadvornik
parents: 1507
diff changeset
785 #endif
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
786
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
787 if (gtk_major_version < GTK_MAJOR_VERSION ||
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
788 (gtk_major_version == GTK_MAJOR_VERSION && gtk_minor_version < GTK_MINOR_VERSION) )
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
789 {
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
790 log_printf("!!! This is a friendly warning.\n");
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
791 log_printf("!!! The version of GTK+ in use now is older than when %s was compiled.\n", GQ_APPNAME);
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
792 log_printf("!!! compiled with GTK+-%d.%d\n", GTK_MAJOR_VERSION, GTK_MINOR_VERSION);
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
793 log_printf("!!! running with GTK+-%d.%d\n", gtk_major_version, gtk_minor_version);
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
794 log_printf("!!! %s may quit unexpectedly with a relocation error.\n", GQ_APPNAME);
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
795 }
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
796
1334
f97450e632a1 create toolbar from ui_manager
nadvornik
parents: 1321
diff changeset
797 pixbuf_inline_register_stock_icons();
f97450e632a1 create toolbar from ui_manager
nadvornik
parents: 1321
diff changeset
798
378
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
799 parse_command_line_for_debug_option(argc, argv);
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
800 parse_command_line(argc, argv);
378
f1bdbbdb73ba Parse command line for --debug option as soon as possible and allow
zas_
parents: 367
diff changeset
801
1462
75721f22155c initialization clean-up
nadvornik
parents: 1437
diff changeset
802 /* these functions don't depend on config file */
75721f22155c initialization clean-up
nadvornik
parents: 1437
diff changeset
803 mkdir_if_not_exists(get_rc_dir());
75721f22155c initialization clean-up
nadvornik
parents: 1437
diff changeset
804 mkdir_if_not_exists(get_collections_dir());
75721f22155c initialization clean-up
nadvornik
parents: 1437
diff changeset
805 mkdir_if_not_exists(get_thumbnails_cache_dir());
75721f22155c initialization clean-up
nadvornik
parents: 1437
diff changeset
806 mkdir_if_not_exists(get_metadata_cache_dir());
75721f22155c initialization clean-up
nadvornik
parents: 1437
diff changeset
807
1636
c0f6a98c9204 do not install helper scripts into /usr/bin
nadvornik
parents: 1617
diff changeset
808 setup_env_path();
c0f6a98c9204 do not install helper scripts into /usr/bin
nadvornik
parents: 1617
diff changeset
809
1462
75721f22155c initialization clean-up
nadvornik
parents: 1437
diff changeset
810 keys_load();
75721f22155c initialization clean-up
nadvornik
parents: 1437
diff changeset
811 accel_map_load();
75721f22155c initialization clean-up
nadvornik
parents: 1437
diff changeset
812
75721f22155c initialization clean-up
nadvornik
parents: 1437
diff changeset
813 /* restore session from the config file */
75721f22155c initialization clean-up
nadvornik
parents: 1437
diff changeset
814
318
b16b9b8979e5 Add a new struct ConfOptions to handle options.
zas_
parents: 289
diff changeset
815 options = init_options(NULL);
740
9b0ac8d58c89 Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents: 739
diff changeset
816 setup_default_options(options);
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
817
1463
25168240a247 added function to reload external editors at any time
nadvornik
parents: 1462
diff changeset
818 if (!load_options(options))
25168240a247 added function to reload external editors at any time
nadvornik
parents: 1462
diff changeset
819 {
25168240a247 added function to reload external editors at any time
nadvornik
parents: 1462
diff changeset
820 /* load_options calls these functions after it parses global options, we have to call it here if it fails */
25168240a247 added function to reload external editors at any time
nadvornik
parents: 1462
diff changeset
821 filter_add_defaults();
25168240a247 added function to reload external editors at any time
nadvornik
parents: 1462
diff changeset
822 filter_rebuild();
25168240a247 added function to reload external editors at any time
nadvornik
parents: 1462
diff changeset
823
25168240a247 added function to reload external editors at any time
nadvornik
parents: 1462
diff changeset
824 editor_load_descriptions();
25168240a247 added function to reload external editors at any time
nadvornik
parents: 1462
diff changeset
825 }
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
826
1462
75721f22155c initialization clean-up
nadvornik
parents: 1437
diff changeset
827 /* handle missing config file and commandline additions*/
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1294
diff changeset
828 if (!layout_window_list)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
829 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
830 /* broken or no config file */
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
831 layout_new_from_config(NULL, NULL, TRUE);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
832 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
833
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
834 if (command_line->collection_list && !command_line->startup_command_line_collection)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
835 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
836 GList *work;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
837
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
838 work = command_line->collection_list;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
839 while (work)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
840 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
841 CollectWindow *cw;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
842 const gchar *path;
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
843
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
844 path = work->data;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
845 work = work->next;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
846
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
847 cw = collection_window_new(path);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
848 if (!first_collection && cw) first_collection = cw->cd;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
849 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
850 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
851
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
852 if (command_line->cmd_list ||
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
853 (command_line->startup_command_line_collection && command_line->collection_list))
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
854 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
855 GList *work;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
856
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
857 if (command_line->startup_command_line_collection)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
858 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
859 CollectWindow *cw;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
860
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
861 cw = collection_window_new("");
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
862 cd = cw->cd;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
863 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
864 else
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
865 {
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
866 cd = collection_new(""); /* if we pass NULL, untitled counter is falsely increm. */
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
867 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
868
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
869 g_free(cd->path);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
870 cd->path = NULL;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
871 g_free(cd->name);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
872 cd->name = g_strdup(_("Command line"));
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
873
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
874 collection_path_changed(cd);
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
875
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
876 work = command_line->cmd_list;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
877 while (work)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
878 {
1617
62521de19763 fixed incorrect type conversion
nadvornik
parents: 1602
diff changeset
879 collection_add(cd, (FileData *)work->data, FALSE);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
880 work = work->next;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
881 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
882
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
883 work = command_line->collection_list;
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
884 while (work)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
885 {
358
384eed18df04 Use flags for collection_load*().
zas_
parents: 354
diff changeset
886 collection_load(cd, (gchar *)work->data, COLLECTION_LOAD_APPEND);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
887 work = work->next;
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
888 }
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
889
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
890 if (cd->list) layout_image_set_collection(NULL, cd, cd->list->data);
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
891
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
892 /* mem leak, we never unref this collection when !startup_command_line_collection
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
893 * (the image view of the main window does not hold a ref to the collection)
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
894 * this is sort of unavoidable, for if it did hold a ref, next/back
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
895 * may not work as expected when closing collection windows.
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
896 *
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
897 * collection_unref(cd);
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
898 */
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
899
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
900 }
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
901 else if (first_collection)
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
902 {
1313
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
903 layout_image_set_collection(NULL, first_collection,
1ffa5222dc61 enabled commandline again
nadvornik
parents: 1309
diff changeset
904 collection_get_first(first_collection));
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
905 }
614
b2898f04c82e image_osd_get() and image_osd_set() now uses flags.
zas_
parents: 586
diff changeset
906
1145
3a7af6a8cd5f Use functions to return directories instead of constants.
zas_
parents: 1089
diff changeset
907 buf = g_build_filename(get_rc_dir(), ".command", NULL);
649
3097880d7d95 Move all remote stuff from main.c to remote.[ch].
zas_
parents: 648
diff changeset
908 remote_connection = remote_server_init(buf, cd);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents: 3
diff changeset
909 g_free(buf);
1020
2bd19478ba29 improved thread support in image loader
nadvornik
parents: 1019
diff changeset
910
512
f9bf33be53ff Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents: 509
diff changeset
911 gtk_main();
1020
2bd19478ba29 improved thread support in image loader
nadvornik
parents: 1019
diff changeset
912 #ifdef HAVE_GTHREAD
2bd19478ba29 improved thread support in image loader
nadvornik
parents: 1019
diff changeset
913 gdk_threads_leave();
2bd19478ba29 improved thread support in image loader
nadvornik
parents: 1019
diff changeset
914 #endif
1
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
915 return 0;
b3e0e515fabf Initial revision
gqview
parents:
diff changeset
916 }
1055
1646720364cf Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents: 1022
diff changeset
917 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */