annotate src/main.c @ 995:6ca2c5fd7b13

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