Mercurial > pidgin
annotate finch/libgnt/gntmain.c @ 20803:371f590b9657
Thanks deryni.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sat, 06 Oct 2007 21:22:19 +0000 |
parents | 09300c787a88 |
children | e119edfc0fb0 9187d331aebe |
rev | line source |
---|---|
18049
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
1 /** |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
2 * GNT - The GLib Ncurses Toolkit |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
3 * |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
4 * GNT is the legal property of its developers, whose names are too numerous |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
5 * to list here. Please refer to the COPYRIGHT file distributed with this |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
6 * source distribution. |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
7 * |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
8 * This library is free software; you can redistribute it and/or modify |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
9 * it under the terms of the GNU General Public License as published by |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
10 * the Free Software Foundation; either version 2 of the License, or |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
11 * (at your option) any later version. |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
12 * |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
13 * This program is distributed in the hope that it will be useful, |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
16 * GNU General Public License for more details. |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
17 * |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
18 * You should have received a copy of the GNU General Public License |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
19 * along with this program; if not, write to the Free Software |
19681
44b4e8bd759b
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
19179
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
18049
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
21 */ |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
22 |
15817 | 23 #define _GNU_SOURCE |
17812
c0c17a81f5fe
Fix libgnt compilation on BSD and solaris. This references #516.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17745
diff
changeset
|
24 #if defined(__APPLE__) || defined(__unix__) |
15817 | 25 #define _XOPEN_SOURCE_EXTENDED |
26 #endif | |
27 | |
28 #include "config.h" | |
29 | |
30 #include <gmodule.h> | |
31 | |
32 #include <sys/types.h> | |
33 #include <sys/wait.h> | |
34 | |
35 #include "gnt.h" | |
36 #include "gntbox.h" | |
16888
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
37 #include "gntbutton.h" |
15817 | 38 #include "gntcolors.h" |
39 #include "gntclipboard.h" | |
40 #include "gntkeys.h" | |
16888
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
41 #include "gntlabel.h" |
15817 | 42 #include "gntmenu.h" |
43 #include "gntstyle.h" | |
44 #include "gnttree.h" | |
45 #include "gntutils.h" | |
16888
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
46 #include "gntwindow.h" |
15817 | 47 #include "gntwm.h" |
48 | |
49 #include <panel.h> | |
50 | |
51 #include <stdio.h> | |
52 #include <stdlib.h> | |
53 #include <locale.h> | |
54 #include <unistd.h> | |
55 #include <signal.h> | |
56 #include <string.h> | |
57 #include <ctype.h> | |
58 #include <errno.h> | |
59 | |
60 /** | |
61 * Notes: Interesting functions to look at: | |
62 * scr_dump, scr_init, scr_restore: for workspaces | |
63 * | |
64 * Need to wattrset for colors to use with PDCurses. | |
65 */ | |
66 | |
67 static GIOChannel *channel = NULL; | |
18425
84d318eadc62
The input was causing some weird issues. This fixes it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18421
diff
changeset
|
68 static int channel_read_callback; |
15817 | 69 |
70 static gboolean ascii_only; | |
71 static gboolean mouse_enabled; | |
72 | |
73 static void setup_io(void); | |
74 | |
75 static gboolean refresh_screen(); | |
76 | |
18049
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17812
diff
changeset
|
77 static GntWM *wm; |
15817 | 78 static GntClipboard *clipboard; |
79 | |
80 #define HOLDING_ESCAPE (escape_stuff.timer != 0) | |
81 | |
82 static struct { | |
83 int timer; | |
84 } escape_stuff; | |
85 | |
86 static gboolean | |
87 escape_timeout(gpointer data) | |
88 { | |
89 gnt_wm_process_input(wm, "\033"); | |
90 escape_stuff.timer = 0; | |
91 return FALSE; | |
92 } | |
93 | |
94 /** | |
95 * Mouse support: | |
96 * - bring a window on top if you click on its taskbar | |
97 * - click on the top-bar of the active window and drag+drop to move a window | |
98 * - click on a window to bring it to focus | |
99 * - allow scrolling in tree/textview on wheel-scroll event | |
100 * - click to activate button or select a row in tree | |
101 * wishlist: | |
102 * - have a little [X] on the windows, and clicking it will close that window. | |
103 */ | |
104 static gboolean | |
105 detect_mouse_action(const char *buffer) | |
106 { | |
107 int x, y; | |
108 static enum { | |
109 MOUSE_NONE, | |
110 MOUSE_LEFT, | |
111 MOUSE_RIGHT, | |
112 MOUSE_MIDDLE | |
113 } button = MOUSE_NONE; | |
114 static GntWidget *remember = NULL; | |
115 static int offset = 0; | |
116 GntMouseEvent event; | |
117 GntWidget *widget = NULL; | |
118 PANEL *p = NULL; | |
119 | |
17698
56d2ae9cbb5c
Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents:
16281
diff
changeset
|
120 if (!wm->cws->ordered || buffer[0] != 27) |
15817 | 121 return FALSE; |
122 | |
123 buffer++; | |
124 if (strlen(buffer) < 5) | |
125 return FALSE; | |
126 | |
127 x = buffer[3]; | |
128 y = buffer[4]; | |
129 if (x < 0) x += 256; | |
130 if (y < 0) y += 256; | |
131 x -= 33; | |
132 y -= 33; | |
133 | |
134 while ((p = panel_below(p)) != NULL) { | |
135 const GntNode *node = panel_userptr(p); | |
136 GntWidget *wid; | |
137 if (!node) | |
138 continue; | |
139 wid = node->me; | |
140 if (x >= wid->priv.x && x < wid->priv.x + wid->priv.width) { | |
141 if (y >= wid->priv.y && y < wid->priv.y + wid->priv.height) { | |
142 widget = wid; | |
143 break; | |
144 } | |
145 } | |
146 } | |
147 | |
148 if (strncmp(buffer, "[M ", 3) == 0) { | |
149 /* left button down */ | |
150 /* Bring the window you clicked on to front */ | |
151 /* If you click on the topbar, then you can drag to move the window */ | |
152 event = GNT_LEFT_MOUSE_DOWN; | |
153 } else if (strncmp(buffer, "[M\"", 3) == 0) { | |
154 /* right button down */ | |
155 event = GNT_RIGHT_MOUSE_DOWN; | |
156 } else if (strncmp(buffer, "[M!", 3) == 0) { | |
157 /* middle button down */ | |
158 event = GNT_MIDDLE_MOUSE_DOWN; | |
159 } else if (strncmp(buffer, "[M`", 3) == 0) { | |
160 /* wheel up*/ | |
161 event = GNT_MOUSE_SCROLL_UP; | |
162 } else if (strncmp(buffer, "[Ma", 3) == 0) { | |
163 /* wheel down */ | |
164 event = GNT_MOUSE_SCROLL_DOWN; | |
165 } else if (strncmp(buffer, "[M#", 3) == 0) { | |
166 /* button up */ | |
167 event = GNT_MOUSE_UP; | |
168 } else | |
169 return FALSE; | |
17047
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16888
diff
changeset
|
170 |
17053
541c5ed54e90
Fix the commit from earlier today about null-widgets.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17047
diff
changeset
|
171 if (widget && gnt_wm_process_click(wm, event, x, y, widget)) |
15817 | 172 return TRUE; |
173 | |
174 if (event == GNT_LEFT_MOUSE_DOWN && widget && widget != wm->_list.window && | |
175 !GNT_WIDGET_IS_FLAG_SET(widget, GNT_WIDGET_TRANSIENT)) { | |
17698
56d2ae9cbb5c
Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents:
16281
diff
changeset
|
176 if (widget != wm->cws->ordered->data) { |
15817 | 177 gnt_wm_raise_window(wm, widget); |
178 } | |
179 if (y == widget->priv.y) { | |
180 offset = x - widget->priv.x; | |
181 remember = widget; | |
182 button = MOUSE_LEFT; | |
183 } | |
184 } else if (event == GNT_MOUSE_UP) { | |
185 if (button == MOUSE_NONE && y == getmaxy(stdscr) - 1) { | |
186 /* Clicked on the taskbar */ | |
17698
56d2ae9cbb5c
Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents:
16281
diff
changeset
|
187 int n = g_list_length(wm->cws->list); |
15817 | 188 if (n) { |
189 int width = getmaxx(stdscr) / n; | |
190 gnt_bindable_perform_action_named(GNT_BINDABLE(wm), "switch-window-n", x/width, NULL); | |
191 } | |
192 } else if (button == MOUSE_LEFT && remember) { | |
193 x -= offset; | |
194 if (x < 0) x = 0; | |
195 if (y < 0) y = 0; | |
196 gnt_screen_move_widget(remember, x, y); | |
197 } | |
198 button = MOUSE_NONE; | |
199 remember = NULL; | |
200 offset = 0; | |
201 } | |
202 | |
17053
541c5ed54e90
Fix the commit from earlier today about null-widgets.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17047
diff
changeset
|
203 if (widget) |
541c5ed54e90
Fix the commit from earlier today about null-widgets.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17047
diff
changeset
|
204 gnt_widget_clicked(widget, event, x, y); |
15817 | 205 return TRUE; |
206 } | |
207 | |
208 static gboolean | |
209 io_invoke_error(GIOChannel *source, GIOCondition cond, gpointer data) | |
210 { | |
211 int id = GPOINTER_TO_INT(data); | |
212 g_source_remove(id); | |
213 g_io_channel_unref(source); | |
214 | |
215 channel = NULL; | |
216 setup_io(); | |
217 return TRUE; | |
218 } | |
219 | |
220 static gboolean | |
221 io_invoke(GIOChannel *source, GIOCondition cond, gpointer null) | |
222 { | |
223 char keys[256]; | |
18421
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
224 int rd; |
15817 | 225 char *k; |
20756
09300c787a88
plucked revision to convert input from locale to utf8.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20225
diff
changeset
|
226 char *cvrt = NULL; |
18421
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
227 |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
228 if (wm->mode == GNT_KP_MODE_WAIT_ON_CHILD) |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
229 return FALSE; |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
230 |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
231 rd = read(STDIN_FILENO, keys + HOLDING_ESCAPE, sizeof(keys) - 1 - HOLDING_ESCAPE); |
15817 | 232 if (rd < 0) |
233 { | |
234 int ch = getch(); /* This should return ERR, but let's see what it really returns */ | |
235 endwin(); | |
236 printf("ERROR: %s\n", strerror(errno)); | |
237 printf("File descriptor is: %d\n\nGIOChannel is: %p\ngetch() = %d\n", STDIN_FILENO, source, ch); | |
238 raise(SIGABRT); | |
239 } | |
240 else if (rd == 0) | |
241 { | |
242 endwin(); | |
243 printf("EOF\n"); | |
244 raise(SIGABRT); | |
245 } | |
246 | |
247 rd += HOLDING_ESCAPE; | |
248 if (HOLDING_ESCAPE) | |
249 keys[0] = '\033'; | |
20756
09300c787a88
plucked revision to convert input from locale to utf8.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20225
diff
changeset
|
250 keys[rd] = 0; |
09300c787a88
plucked revision to convert input from locale to utf8.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20225
diff
changeset
|
251 gnt_wm_set_event_stack(wm, TRUE); |
09300c787a88
plucked revision to convert input from locale to utf8.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20225
diff
changeset
|
252 |
09300c787a88
plucked revision to convert input from locale to utf8.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20225
diff
changeset
|
253 cvrt = g_locale_to_utf8(keys, rd, (gsize*)&rd, NULL, NULL); |
09300c787a88
plucked revision to convert input from locale to utf8.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20225
diff
changeset
|
254 k = cvrt ? cvrt : keys; |
09300c787a88
plucked revision to convert input from locale to utf8.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20225
diff
changeset
|
255 if (mouse_enabled && detect_mouse_action(k)) |
09300c787a88
plucked revision to convert input from locale to utf8.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20225
diff
changeset
|
256 goto end; |
19176
33201366bcd4
Fix some white-space and other similar issues. Preparing for a merge.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19171
diff
changeset
|
257 |
33201366bcd4
Fix some white-space and other similar issues. Preparing for a merge.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19171
diff
changeset
|
258 #if 0 |
33201366bcd4
Fix some white-space and other similar issues. Preparing for a merge.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19171
diff
changeset
|
259 /* I am not sure what's happening here. If this actually does something, |
33201366bcd4
Fix some white-space and other similar issues. Preparing for a merge.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19171
diff
changeset
|
260 * then this needs to go in gnt_keys_refine. */ |
33201366bcd4
Fix some white-space and other similar issues. Preparing for a merge.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19171
diff
changeset
|
261 if (*k < 0) { /* Alt not sending ESC* */ |
17819
d8b9bea550bc
Added a few lines to gnt_main::io_invoke to deal with ALT not sending ESC.
Eric Polino <aluink@pidgin.im>
parents:
17053
diff
changeset
|
262 *(k + 1) = 128 - *k; |
d8b9bea550bc
Added a few lines to gnt_main::io_invoke to deal with ALT not sending ESC.
Eric Polino <aluink@pidgin.im>
parents:
17053
diff
changeset
|
263 *k = 27; |
d8b9bea550bc
Added a few lines to gnt_main::io_invoke to deal with ALT not sending ESC.
Eric Polino <aluink@pidgin.im>
parents:
17053
diff
changeset
|
264 *(k + 2) = 0; |
d8b9bea550bc
Added a few lines to gnt_main::io_invoke to deal with ALT not sending ESC.
Eric Polino <aluink@pidgin.im>
parents:
17053
diff
changeset
|
265 rd++; |
d8b9bea550bc
Added a few lines to gnt_main::io_invoke to deal with ALT not sending ESC.
Eric Polino <aluink@pidgin.im>
parents:
17053
diff
changeset
|
266 } |
19176
33201366bcd4
Fix some white-space and other similar issues. Preparing for a merge.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19171
diff
changeset
|
267 #endif |
33201366bcd4
Fix some white-space and other similar issues. Preparing for a merge.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19171
diff
changeset
|
268 |
15817 | 269 while (rd) { |
270 char back; | |
271 int p; | |
272 | |
273 if (k[0] == '\033' && rd == 1) { | |
274 if (escape_stuff.timer) { | |
275 gnt_wm_process_input(wm, "\033\033"); | |
276 g_source_remove(escape_stuff.timer); | |
277 escape_stuff.timer = 0; | |
278 break; | |
279 } | |
280 escape_stuff.timer = g_timeout_add(250, escape_timeout, NULL); | |
281 break; | |
282 } | |
283 | |
284 gnt_keys_refine(k); | |
285 p = MAX(1, gnt_keys_find_combination(k)); | |
286 back = k[p]; | |
287 k[p] = '\0'; | |
288 gnt_wm_process_input(wm, k); /* XXX: */ | |
289 k[p] = back; | |
290 rd -= p; | |
291 k += p; | |
292 } | |
16281
82b6fdd899a9
Dialogs opened resulting from a mouse-click should fain focus.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15817
diff
changeset
|
293 end: |
82b6fdd899a9
Dialogs opened resulting from a mouse-click should fain focus.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15817
diff
changeset
|
294 gnt_wm_set_event_stack(wm, FALSE); |
20756
09300c787a88
plucked revision to convert input from locale to utf8.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20225
diff
changeset
|
295 g_free(cvrt); |
15817 | 296 return TRUE; |
297 } | |
298 | |
299 static void | |
300 setup_io() | |
301 { | |
302 int result; | |
303 channel = g_io_channel_unix_new(STDIN_FILENO); | |
304 g_io_channel_set_close_on_unref(channel, TRUE); | |
305 | |
306 #if 0 | |
307 g_io_channel_set_encoding(channel, NULL, NULL); | |
308 g_io_channel_set_buffered(channel, FALSE); | |
309 g_io_channel_set_flags(channel, G_IO_FLAG_NONBLOCK, NULL ); | |
310 #endif | |
311 | |
18425
84d318eadc62
The input was causing some weird issues. This fixes it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18421
diff
changeset
|
312 channel_read_callback = result = g_io_add_watch_full(channel, G_PRIORITY_HIGH, |
15817 | 313 (G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_PRI), |
314 io_invoke, NULL, NULL); | |
315 | |
316 g_io_add_watch_full(channel, G_PRIORITY_HIGH, | |
317 (G_IO_NVAL), | |
318 io_invoke_error, GINT_TO_POINTER(result), NULL); | |
319 | |
320 g_io_channel_unref(channel); /* Apparently this caused crashes for some people. | |
321 But irssi does this, so I am going to assume the | |
322 crashes were caused by some other stuff. */ | |
323 | |
18526
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
324 g_printerr("gntmain: setting up IO (%d)\n", channel_read_callback); |
15817 | 325 } |
326 | |
327 static gboolean | |
328 refresh_screen() | |
329 { | |
330 gnt_bindable_perform_action_named(GNT_BINDABLE(wm), "refresh-screen", NULL); | |
331 return FALSE; | |
332 } | |
333 | |
334 /* Xerox */ | |
335 static void | |
336 clean_pid(void) | |
337 { | |
338 int status; | |
339 pid_t pid; | |
340 | |
341 do { | |
342 pid = waitpid(-1, &status, WNOHANG); | |
343 } while (pid != 0 && pid != (pid_t)-1); | |
344 | |
345 if ((pid == (pid_t) - 1) && (errno != ECHILD)) { | |
346 char errmsg[BUFSIZ]; | |
347 g_snprintf(errmsg, BUFSIZ, "Warning: waitpid() returned %d", pid); | |
348 perror(errmsg); | |
349 } | |
350 } | |
351 | |
352 static void | |
16888
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
353 exit_confirmed(gpointer null) |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
354 { |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
355 gnt_bindable_perform_action_named(GNT_BINDABLE(wm), "wm-quit", NULL); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
356 } |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
357 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
358 static void |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
359 exit_win_close(GntWidget *w, GntWidget **win) |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
360 { |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
361 *win = NULL; |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
362 } |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
363 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
364 static void |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
365 ask_before_exit() |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
366 { |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
367 static GntWidget *win = NULL; |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
368 GntWidget *bbox, *button; |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
369 |
18439
ec80e921818c
Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18425
diff
changeset
|
370 if (wm->menu) { |
ec80e921818c
Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18425
diff
changeset
|
371 do { |
ec80e921818c
Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18425
diff
changeset
|
372 gnt_widget_hide(GNT_WIDGET(wm->menu)); |
ec80e921818c
Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18425
diff
changeset
|
373 if (wm->menu) |
ec80e921818c
Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18425
diff
changeset
|
374 wm->menu = wm->menu->parentmenu; |
ec80e921818c
Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18425
diff
changeset
|
375 } while (wm->menu); |
ec80e921818c
Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18425
diff
changeset
|
376 } |
ec80e921818c
Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18425
diff
changeset
|
377 |
16888
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
378 if (win) |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
379 goto raise; |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
380 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
381 win = gnt_vwindow_new(FALSE); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
382 gnt_box_add_widget(GNT_BOX(win), gnt_label_new("Are you sure you want to quit?")); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
383 gnt_box_set_title(GNT_BOX(win), "Quit?"); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
384 gnt_box_set_alignment(GNT_BOX(win), GNT_ALIGN_MID); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
385 g_signal_connect(G_OBJECT(win), "destroy", G_CALLBACK(exit_win_close), &win); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
386 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
387 bbox = gnt_hbox_new(FALSE); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
388 gnt_box_add_widget(GNT_BOX(win), bbox); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
389 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
390 button = gnt_button_new("Quit"); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
391 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(exit_confirmed), NULL); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
392 gnt_box_add_widget(GNT_BOX(bbox), button); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
393 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
394 button = gnt_button_new("Cancel"); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
395 g_signal_connect_swapped(G_OBJECT(button), "activate", G_CALLBACK(gnt_widget_destroy), win); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
396 gnt_box_add_widget(GNT_BOX(bbox), button); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
397 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
398 gnt_widget_show(win); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
399 raise: |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
400 gnt_wm_raise_window(wm, win); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
401 } |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
402 |
17047
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16888
diff
changeset
|
403 #ifdef SIGWINCH |
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16888
diff
changeset
|
404 static void (*org_winch_handler)(int); |
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16888
diff
changeset
|
405 #endif |
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16888
diff
changeset
|
406 |
16888
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
407 static void |
15817 | 408 sighandler(int sig) |
409 { | |
410 switch (sig) { | |
411 #ifdef SIGWINCH | |
412 case SIGWINCH: | |
17745
8d3c28521112
I think this fixes #532.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17053
diff
changeset
|
413 erase(); |
15817 | 414 g_idle_add(refresh_screen, NULL); |
20225
3c415481a943
applied changes from 388507622896337fe56945f851e3aabee3c0427f
Richard Laager <rlaager@wiktel.com>
parents:
19681
diff
changeset
|
415 if (org_winch_handler) |
3c415481a943
applied changes from 388507622896337fe56945f851e3aabee3c0427f
Richard Laager <rlaager@wiktel.com>
parents:
19681
diff
changeset
|
416 org_winch_handler(sig); |
15817 | 417 signal(SIGWINCH, sighandler); |
418 break; | |
419 #endif | |
420 case SIGCHLD: | |
421 clean_pid(); | |
422 signal(SIGCHLD, sighandler); | |
423 break; | |
16888
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
424 case SIGINT: |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
425 ask_before_exit(); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
426 signal(SIGINT, sighandler); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
427 break; |
15817 | 428 } |
429 } | |
430 | |
431 static void | |
432 init_wm() | |
433 { | |
434 const char *name = gnt_style_get(GNT_STYLE_WM); | |
435 gpointer handle; | |
436 | |
437 if (name && *name) { | |
438 handle = g_module_open(name, G_MODULE_BIND_LAZY); | |
439 if (handle) { | |
440 gboolean (*init)(GntWM **); | |
441 if (g_module_symbol(handle, "gntwm_init", (gpointer)&init)) { | |
442 init(&wm); | |
443 } | |
444 } | |
445 } | |
446 if (wm == NULL) | |
447 wm = g_object_new(GNT_TYPE_WM, NULL); | |
448 } | |
449 | |
450 void gnt_init() | |
451 { | |
452 char *filename; | |
453 const char *locale; | |
454 | |
455 if (channel) | |
456 return; | |
457 | |
458 locale = setlocale(LC_ALL, ""); | |
459 | |
460 setup_io(); | |
461 | |
18199
1bb3b07a6879
Detect wide character non-support at compile time, if possible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18070
diff
changeset
|
462 #ifdef NO_WIDECHAR |
1bb3b07a6879
Detect wide character non-support at compile time, if possible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18070
diff
changeset
|
463 ascii_only = TRUE; |
1bb3b07a6879
Detect wide character non-support at compile time, if possible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18070
diff
changeset
|
464 #else |
15817 | 465 if (locale && (strstr(locale, "UTF") || strstr(locale, "utf"))) |
466 ascii_only = FALSE; | |
467 else | |
468 ascii_only = TRUE; | |
18199
1bb3b07a6879
Detect wide character non-support at compile time, if possible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18070
diff
changeset
|
469 #endif |
15817 | 470 |
471 initscr(); | |
472 typeahead(-1); | |
473 noecho(); | |
474 curs_set(0); | |
475 | |
476 gnt_init_keys(); | |
477 gnt_init_styles(); | |
478 | |
479 filename = g_build_filename(g_get_home_dir(), ".gntrc", NULL); | |
480 gnt_style_read_configure_file(filename); | |
481 g_free(filename); | |
482 | |
483 gnt_init_colors(); | |
484 | |
485 wbkgdset(stdscr, '\0' | COLOR_PAIR(GNT_COLOR_NORMAL)); | |
486 refresh(); | |
487 | |
488 #ifdef ALL_MOUSE_EVENTS | |
489 if ((mouse_enabled = gnt_style_get_bool(GNT_STYLE_MOUSE, FALSE))) | |
490 mousemask(ALL_MOUSE_EVENTS | REPORT_MOUSE_POSITION, NULL); | |
491 #endif | |
492 | |
493 wbkgdset(stdscr, '\0' | COLOR_PAIR(GNT_COLOR_NORMAL)); | |
494 werase(stdscr); | |
495 wrefresh(stdscr); | |
496 | |
497 #ifdef SIGWINCH | |
17047
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16888
diff
changeset
|
498 org_winch_handler = signal(SIGWINCH, sighandler); |
15817 | 499 #endif |
500 signal(SIGCHLD, sighandler); | |
16888
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16781
diff
changeset
|
501 signal(SIGINT, sighandler); |
15817 | 502 signal(SIGPIPE, SIG_IGN); |
503 | |
504 g_type_init(); | |
505 | |
506 init_wm(); | |
507 | |
508 clipboard = g_object_new(GNT_TYPE_CLIPBOARD, NULL); | |
509 } | |
510 | |
511 void gnt_main() | |
512 { | |
513 wm->loop = g_main_loop_new(NULL, FALSE); | |
514 g_main_loop_run(wm->loop); | |
515 } | |
516 | |
517 /********************************* | |
518 * Stuff for 'window management' * | |
519 *********************************/ | |
520 | |
18344
310bad6dafe4
Allow raising window only from an event-stack, otherwise set the urgent flag.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18199
diff
changeset
|
521 void gnt_window_present(GntWidget *window) |
310bad6dafe4
Allow raising window only from an event-stack, otherwise set the urgent flag.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18199
diff
changeset
|
522 { |
310bad6dafe4
Allow raising window only from an event-stack, otherwise set the urgent flag.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18199
diff
changeset
|
523 if (wm->event_stack) |
310bad6dafe4
Allow raising window only from an event-stack, otherwise set the urgent flag.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18199
diff
changeset
|
524 gnt_wm_raise_window(wm, window); |
310bad6dafe4
Allow raising window only from an event-stack, otherwise set the urgent flag.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18199
diff
changeset
|
525 else |
310bad6dafe4
Allow raising window only from an event-stack, otherwise set the urgent flag.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18199
diff
changeset
|
526 gnt_widget_set_urgent(window); |
18070 | 527 } |
528 | |
15817 | 529 void gnt_screen_occupy(GntWidget *widget) |
530 { | |
531 gnt_wm_new_window(wm, widget); | |
532 } | |
533 | |
534 void gnt_screen_release(GntWidget *widget) | |
535 { | |
18716
0873698f8cce
This fixes a few weird crashes in pygnt.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18526
diff
changeset
|
536 if (wm) |
0873698f8cce
This fixes a few weird crashes in pygnt.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18526
diff
changeset
|
537 gnt_wm_window_close(wm, widget); |
15817 | 538 } |
539 | |
540 void gnt_screen_update(GntWidget *widget) | |
541 { | |
542 gnt_wm_update_window(wm, widget); | |
543 } | |
544 | |
545 gboolean gnt_widget_has_focus(GntWidget *widget) | |
546 { | |
547 GntWidget *w; | |
548 if (!widget) | |
549 return FALSE; | |
550 | |
551 if (GNT_IS_MENU(widget)) | |
552 return TRUE; | |
553 | |
554 w = widget; | |
555 | |
556 while (widget->parent) | |
557 widget = widget->parent; | |
558 | |
559 if (widget == wm->_list.window) | |
560 return TRUE; | |
17698
56d2ae9cbb5c
Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents:
16281
diff
changeset
|
561 if (wm->cws->ordered && wm->cws->ordered->data == widget) { |
15817 | 562 if (GNT_IS_BOX(widget) && |
563 (GNT_BOX(widget)->active == w || widget == w)) | |
564 return TRUE; | |
565 } | |
566 return FALSE; | |
567 } | |
568 | |
569 void gnt_widget_set_urgent(GntWidget *widget) | |
570 { | |
571 while (widget->parent) | |
572 widget = widget->parent; | |
573 | |
17698
56d2ae9cbb5c
Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents:
16281
diff
changeset
|
574 if (wm->cws->ordered && wm->cws->ordered->data == widget) |
15817 | 575 return; |
576 | |
577 GNT_WIDGET_SET_FLAGS(widget, GNT_WIDGET_URGENT); | |
578 | |
579 gnt_wm_update_window(wm, widget); | |
580 } | |
581 | |
582 void gnt_quit() | |
583 { | |
18716
0873698f8cce
This fixes a few weird crashes in pygnt.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18526
diff
changeset
|
584 g_object_unref(G_OBJECT(wm)); |
0873698f8cce
This fixes a few weird crashes in pygnt.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18526
diff
changeset
|
585 wm = NULL; |
0873698f8cce
This fixes a few weird crashes in pygnt.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18526
diff
changeset
|
586 |
15817 | 587 update_panels(); |
588 doupdate(); | |
589 gnt_uninit_colors(); | |
590 gnt_uninit_styles(); | |
591 endwin(); | |
592 } | |
593 | |
594 gboolean gnt_ascii_only() | |
595 { | |
596 return ascii_only; | |
597 } | |
598 | |
599 void gnt_screen_resize_widget(GntWidget *widget, int width, int height) | |
600 { | |
601 gnt_wm_resize_window(wm, widget, width, height); | |
602 } | |
603 | |
604 void gnt_screen_move_widget(GntWidget *widget, int x, int y) | |
605 { | |
606 gnt_wm_move_window(wm, widget, x, y); | |
607 } | |
608 | |
609 void gnt_screen_rename_widget(GntWidget *widget, const char *text) | |
610 { | |
611 gnt_box_set_title(GNT_BOX(widget), text); | |
612 gnt_widget_draw(widget); | |
613 gnt_wm_update_window(wm, widget); | |
614 } | |
615 | |
616 void gnt_register_action(const char *label, void (*callback)()) | |
617 { | |
618 GntAction *action = g_new0(GntAction, 1); | |
619 action->label = g_strdup(label); | |
620 action->callback = callback; | |
621 | |
622 wm->acts = g_list_append(wm->acts, action); | |
623 } | |
624 | |
625 static void | |
626 reset_menu(GntWidget *widget, gpointer null) | |
627 { | |
628 wm->menu = NULL; | |
629 } | |
630 | |
631 gboolean gnt_screen_menu_show(gpointer newmenu) | |
632 { | |
633 if (wm->menu) { | |
634 /* For now, if a menu is being displayed, then another menu | |
635 * can NOT take over. */ | |
636 return FALSE; | |
637 } | |
638 | |
639 wm->menu = newmenu; | |
640 GNT_WIDGET_UNSET_FLAGS(GNT_WIDGET(wm->menu), GNT_WIDGET_INVISIBLE); | |
641 gnt_widget_draw(GNT_WIDGET(wm->menu)); | |
642 | |
643 g_signal_connect(G_OBJECT(wm->menu), "hide", G_CALLBACK(reset_menu), NULL); | |
16781
d0f9b2b217cf
Fix context menu unusualness in the buddylist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16281
diff
changeset
|
644 g_signal_connect(G_OBJECT(wm->menu), "destroy", G_CALLBACK(reset_menu), NULL); |
15817 | 645 |
646 return TRUE; | |
647 } | |
648 | |
649 void gnt_set_clipboard_string(gchar *string) | |
650 { | |
651 gnt_clipboard_set_string(clipboard, string); | |
652 } | |
653 | |
654 GntClipboard *gnt_get_clipboard() | |
655 { | |
656 return clipboard; | |
657 } | |
18421
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
658 |
15817 | 659 gchar *gnt_get_clipboard_string() |
660 { | |
661 return gnt_clipboard_get_string(clipboard); | |
662 } | |
18421
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
663 |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
664 #if GLIB_CHECK_VERSION(2,4,0) |
18526
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
665 typedef struct |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
666 { |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
667 void (*callback)(int status, gpointer data); |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
668 gpointer data; |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
669 } ChildProcess; |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
670 |
18421
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
671 static void |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
672 reap_child(GPid pid, gint status, gpointer data) |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
673 { |
18526
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
674 ChildProcess *cp = data; |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
675 if (cp->callback) { |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
676 cp->callback(status, cp->data); |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
677 } |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
678 g_free(cp); |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
679 clean_pid(); |
18421
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
680 wm->mode = GNT_KP_MODE_NORMAL; |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
681 clear(); |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
682 setup_io(); |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
683 refresh_screen(); |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
684 } |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
685 #endif |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
686 |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
687 gboolean gnt_giveup_console(const char *wd, char **argv, char **envp, |
18526
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
688 gint *stin, gint *stout, gint *sterr, |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
689 void (*callback)(int status, gpointer data), gpointer data) |
18421
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
690 { |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
691 #if GLIB_CHECK_VERSION(2,4,0) |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
692 GPid pid = 0; |
18526
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
693 ChildProcess *cp = NULL; |
18421
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
694 |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
695 if (!g_spawn_async_with_pipes(wd, argv, envp, |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
696 G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD, |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
697 (GSpawnChildSetupFunc)endwin, NULL, |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
698 &pid, stin, stout, sterr, NULL)) |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
699 return FALSE; |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
700 |
18526
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
701 cp = g_new0(ChildProcess, 1); |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
702 cp->callback = callback; |
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
703 cp->data = data; |
18425
84d318eadc62
The input was causing some weird issues. This fixes it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18421
diff
changeset
|
704 g_source_remove(channel_read_callback); |
18421
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
705 wm->mode = GNT_KP_MODE_WAIT_ON_CHILD; |
18526
09db6fec9dce
Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18439
diff
changeset
|
706 g_child_watch_add(pid, reap_child, cp); |
18421
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
707 |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
708 return TRUE; |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
709 #else |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
710 return FALSE; |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
711 #endif |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
712 } |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
713 |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
714 gboolean gnt_is_refugee() |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
715 { |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
716 #if GLIB_CHECK_VERSION(2,4,0) |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
717 return (wm && wm->mode == GNT_KP_MODE_WAIT_ON_CHILD); |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
718 #else |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
719 return FALSE; |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
720 #endif |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
721 } |
e16d097c5739
Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18344
diff
changeset
|
722 |