annotate src/window.c @ 1802:956aab097ea7

added 2010 to copyright text
author nadvornik
date Tue, 16 Feb 2010 21:18:03 +0000
parents df106a76897c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
1 /*
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
2 * Geeqie
1802
956aab097ea7 added 2010 to copyright text
nadvornik
parents: 1775
diff changeset
3 * Copyright (C) 2008 - 2010 The Geeqie Team
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
4 *
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
5 * Authors: Vladimir Nadvornik / Laurent Monin
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 884
diff changeset
6 *
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
7 * This software is released under the GNU General Public License (GNU GPL).
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
8 * Please read the included file COPYING for more information.
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
9 * This software comes with no warranty of any kind, use at your own risk!
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
10 */
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
11
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
12 #include "main.h"
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
13 #include "window.h"
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
14
1144
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
15 #include "misc.h"
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
16 #include "pixbuf_util.h"
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
17 #include "ui_fileops.h"
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
18 #include "ui_help.h"
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
19
1175
2518a4a73d89 Rename wmsubclass and name to role, which corresponds better to the purpose of the parameter as it ends to be passed to gtk_window_set_role().
zas_
parents: 1174
diff changeset
20 GtkWidget *window_new(GtkWindowType type, const gchar *role, const gchar *icon,
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
21 const gchar *icon_file, const gchar *subtitle)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
22 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
23 gchar *title;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
24 GtkWidget *window;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
25
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
26 window = gtk_window_new(type);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
27 if (!window) return NULL;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
28
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
29 if (subtitle)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
30 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
31 title = g_strdup_printf("%s - %s", subtitle, GQ_APPNAME);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
32 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
33 else
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
34 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
35 title = g_strdup_printf("%s", GQ_APPNAME);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
36 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
37
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
38 gtk_window_set_title(GTK_WINDOW(window), title);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
39 g_free(title);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
40
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
41 window_set_icon(window, icon, icon_file);
1175
2518a4a73d89 Rename wmsubclass and name to role, which corresponds better to the purpose of the parameter as it ends to be passed to gtk_window_set_role().
zas_
parents: 1174
diff changeset
42 gtk_window_set_role(GTK_WINDOW(window), role);
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
43
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
44 return window;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
45 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
46
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
47 void window_set_icon(GtkWidget *window, const gchar *icon, const gchar *file)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
48 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
49 if (!icon && !file) icon = PIXBUF_INLINE_ICON;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
50
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
51 if (icon)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
52 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
53 GdkPixbuf *pixbuf;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
54
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
55 pixbuf = pixbuf_inline(icon);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
56 if (pixbuf)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
57 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
58 gtk_window_set_icon(GTK_WINDOW(window), pixbuf);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
59 g_object_unref(pixbuf);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
60 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
61 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
62 else
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
63 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
64 gtk_window_set_icon_from_file(GTK_WINDOW(window), file, NULL);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
65 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
66 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
67
1453
bc3f5c0432f6 gint -> gboolean where applicable. The end (ouf!).
zas_
parents: 1284
diff changeset
68 gboolean window_maximized(GtkWidget *window)
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
69 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
70 GdkWindowState state;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
71
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
72 if (!window || !window->window) return FALSE;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
73
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
74 state = gdk_window_get_state(window->window);
1453
bc3f5c0432f6 gint -> gboolean where applicable. The end (ouf!).
zas_
parents: 1284
diff changeset
75 return !!(state & GDK_WINDOW_STATE_MAXIMIZED);
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
76 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
77
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
78 /*
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
79 *-----------------------------------------------------------------------------
884
ff16ed0d2c8a Improve ways to specify html browser (used for help, see bug 2015099).
zas_
parents: 883
diff changeset
80 * Open browser with the help Documentation
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
81 *-----------------------------------------------------------------------------
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
82 */
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
83
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
84 static gchar *command_result(const gchar *binary, const gchar *command)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
85 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
86 gchar *result = NULL;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
87 FILE *f;
884
ff16ed0d2c8a Improve ways to specify html browser (used for help, see bug 2015099).
zas_
parents: 883
diff changeset
88 gchar buf[2048];
ff16ed0d2c8a Improve ways to specify html browser (used for help, see bug 2015099).
zas_
parents: 883
diff changeset
89 gint l;
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
90
884
ff16ed0d2c8a Improve ways to specify html browser (used for help, see bug 2015099).
zas_
parents: 883
diff changeset
91 if (!binary || binary[0] == '\0') return NULL;
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
92 if (!file_in_path(binary)) return NULL;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
93
884
ff16ed0d2c8a Improve ways to specify html browser (used for help, see bug 2015099).
zas_
parents: 883
diff changeset
94 if (!command || command[0] == '\0') return g_strdup(binary);
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
95 if (command[0] == '!') return g_strdup(command + 1);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
96
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
97 f = popen(command, "r");
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
98 if (!f) return NULL;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
99
1000
4fe8f9656107 For the sake of consistency, use glib basic types everywhere.
zas_
parents: 995
diff changeset
100 while ((l = fread(buf, sizeof(gchar), sizeof(buf), f)) > 0)
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
101 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
102 if (!result)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
103 {
884
ff16ed0d2c8a Improve ways to specify html browser (used for help, see bug 2015099).
zas_
parents: 883
diff changeset
104 gint n = 0;
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
105
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
106 while (n < l && buf[n] != '\n' && buf[n] != '\r') n++;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
107 if (n > 0) result = g_strndup(buf, n);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
108 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
109 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
110
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
111 pclose(f);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
112
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
113 return result;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
114 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
115
1144
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
116 static int help_browser_command(const gchar *command, const gchar *path)
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
117 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
118 gchar *result;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
119 gchar *buf;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
120 gchar *begin;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
121 gchar *end;
1144
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
122 int retval = -1;
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
123
1144
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
124 if (!command || !path) return retval;
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
125
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
126 DEBUG_1("Help command pre \"%s\", \"%s\"", command, path);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
127
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
128 buf = g_strdup(command);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
129 begin = strstr(buf, "%s");
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
130 if (begin)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
131 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
132 *begin = '\0';
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
133 end = begin + 2;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
134 begin = buf;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
135
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
136 result = g_strdup_printf("%s%s%s &", begin, path, end);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
137 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
138 else
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
139 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
140 result = g_strdup_printf("%s \"%s\" &", command, path);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
141 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
142 g_free(buf);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
143
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
144 DEBUG_1("Help command post [%s]", result);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
145
1144
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
146 retval = runcmd(result);
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
147 DEBUG_1("Help command exit code: %d", retval);
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
148
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
149 g_free(result);
1144
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
150 return retval;
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
151 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
152
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
153 /*
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
154 * each set of 2 strings is one browser:
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
155 * the 1st is the binary to look for in the path
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
156 * the 2nd has 3 capabilities:
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
157 * NULL exec binary with html file path as command line
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
158 * string exec string and use results for command line
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
159 * !string use text following ! as command line, replacing optional %s with html file path
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
160 */
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
161 static gchar *html_browsers[] =
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
162 {
884
ff16ed0d2c8a Improve ways to specify html browser (used for help, see bug 2015099).
zas_
parents: 883
diff changeset
163 /* Our specific script */
ff16ed0d2c8a Improve ways to specify html browser (used for help, see bug 2015099).
zas_
parents: 883
diff changeset
164 GQ_APPNAME_LC "_html_browser", NULL,
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
165 /* Redhat has a nifty htmlview script to start the user's preferred browser */
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
166 "htmlview", NULL,
883
391a9e3336db Apply debian-specific patch to launch help browser (bug 2015099).
zas_
parents: 728
diff changeset
167 /* Debian has even better approach with alternatives */
391a9e3336db Apply debian-specific patch to launch help browser (bug 2015099).
zas_
parents: 728
diff changeset
168 "sensible-browser", NULL,
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
169 /* GNOME 2 */
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
170 "gconftool-2", "gconftool-2 -g /desktop/gnome/url-handlers/http/command",
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
171 /* KDE */
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
172 "kfmclient", "!kfmclient exec \"%s\"",
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
173 /* use fallbacks */
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
174 "firefox", NULL,
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
175 "mozilla", NULL,
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
176 "konqueror", NULL,
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
177 "netscape", NULL,
1775
df106a76897c Add Opera to the list of browsers. Patch by Christian Heckendorf (feature request ID: 2908469).
zas_
parents: 1453
diff changeset
178 "opera", "!opera --remote 'openURL(%s,new-page)'",
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
179 NULL, NULL
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
180 };
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
181
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
182 static void help_browser_run(void)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
183 {
1144
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
184 gchar *name = options->helpers.html_browser.command_name;
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
185 gchar *cmd = options->helpers.html_browser.command_line;
1267
dfa378900ec9 Remove harmful documentation.helpdir and documentation.htmldir options. These paths can still be modified through --with-readmedir and --htmldir configure options. Reported by Christopher Beland.
zas_
parents: 1175
diff changeset
186 gchar *path = g_build_filename(GQ_HTMLDIR, "index.html", NULL);
1144
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
187 gchar *result = NULL;
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
188 gint i;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
189
1144
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
190 i = 0;
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
191 while (!result)
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
192 {
1144
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
193 if ((name && *name) || (cmd && *cmd)) {
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
194 DEBUG_1("Trying browser: name=%s command=%s", name, cmd);
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
195 result = command_result(name, cmd);
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
196 DEBUG_1("Result: %s", result);
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
197 if (result)
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
198 {
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
199 int ret = help_browser_command(result, path);
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
200
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
201 if (ret == 0) break;
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
202 g_free(result);
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
203 result = NULL;
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
204 }
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
205 }
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
206 if (!html_browsers[i]) break;
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
207 name = html_browsers[i++];
5fe3b8b3a612 Add a wrapper around system() call named runcmd() which allows easier debugging. Improve the code launching the help browser.
zas_
parents: 1055
diff changeset
208 cmd = html_browsers[i++];
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
209 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
210
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
211 if (!result)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
212 {
673
fbebf5cf4a55 Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents: 671
diff changeset
213 log_printf("Unable to detect an installed browser.\n");
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
214 return;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
215 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
216
1013
88ebc61e33ae Allow to override documentation paths through options:
zas_
parents: 1000
diff changeset
217 g_free(path);
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
218 g_free(result);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
219 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
220
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
221 /*
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
222 *-----------------------------------------------------------------------------
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
223 * help window
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
224 *-----------------------------------------------------------------------------
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
225 */
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
226
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
227 static GtkWidget *help_window = NULL;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
228
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
229 static void help_window_destroy_cb(GtkWidget *window, gpointer data)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
230 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
231 help_window = NULL;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
232 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
233
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
234 void help_window_show(const gchar *key)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
235 {
1013
88ebc61e33ae Allow to override documentation paths through options:
zas_
parents: 1000
diff changeset
236 gchar *path;
88ebc61e33ae Allow to override documentation paths through options:
zas_
parents: 1000
diff changeset
237
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
238 if (key && strcmp(key, "html_contents") == 0)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
239 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
240 help_browser_run();
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
241 return;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
242 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
243
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
244 if (help_window)
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
245 {
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
246 gtk_window_present(GTK_WINDOW(help_window));
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
247 if (key) help_window_set_key(help_window, key);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
248 return;
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
249 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
250
1267
dfa378900ec9 Remove harmful documentation.helpdir and documentation.htmldir options. These paths can still be modified through --with-readmedir and --htmldir configure options. Reported by Christopher Beland.
zas_
parents: 1175
diff changeset
251 path = g_build_filename(GQ_HELPDIR, "README", NULL);
1174
0bea79d87065 Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents: 1144
diff changeset
252 help_window = help_window_new(_("Help"), "help", path, key);
1013
88ebc61e33ae Allow to override documentation paths through options:
zas_
parents: 1000
diff changeset
253 g_free(path);
648
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
254
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
255 g_signal_connect(G_OBJECT(help_window), "destroy",
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
256 G_CALLBACK(help_window_destroy_cb), NULL);
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
257 }
e34c1002e553 Move some functions from main.[ch] to new window.[ch].
zas_
parents:
diff changeset
258
1055
1646720364cf Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents: 1013
diff changeset
259 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */