Mercurial > pidgin.yaz
annotate finch/libgnt/gntmain.c @ 17140:3c4280387259
Generate nicer HTML dumps.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Thu, 17 May 2007 22:04:49 +0000 |
parents | 541c5ed54e90 |
children | 4d4a396a478c 8d3c28521112 d8b9bea550bc |
rev | line source |
---|---|
15818 | 1 #define _GNU_SOURCE |
2 #if defined(__APPLE__) | |
3 #define _XOPEN_SOURCE_EXTENDED | |
4 #endif | |
5 | |
6 #include "config.h" | |
7 | |
8 #include <gmodule.h> | |
9 | |
10 #include <sys/types.h> | |
11 #include <sys/wait.h> | |
12 | |
13 #include "gnt.h" | |
14 #include "gntbox.h" | |
16899
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
15 #include "gntbutton.h" |
15818 | 16 #include "gntcolors.h" |
17 #include "gntclipboard.h" | |
18 #include "gntkeys.h" | |
16899
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
19 #include "gntlabel.h" |
15818 | 20 #include "gntmenu.h" |
21 #include "gntstyle.h" | |
22 #include "gnttree.h" | |
23 #include "gntutils.h" | |
16899
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
24 #include "gntwindow.h" |
15818 | 25 #include "gntwm.h" |
26 | |
27 #include <panel.h> | |
28 | |
29 #include <stdio.h> | |
30 #include <stdlib.h> | |
31 #include <locale.h> | |
32 #include <unistd.h> | |
33 #include <signal.h> | |
34 #include <string.h> | |
35 #include <ctype.h> | |
36 #include <errno.h> | |
37 | |
38 /** | |
39 * Notes: Interesting functions to look at: | |
40 * scr_dump, scr_init, scr_restore: for workspaces | |
41 * | |
42 * Need to wattrset for colors to use with PDCurses. | |
43 */ | |
44 | |
45 static GIOChannel *channel = NULL; | |
46 | |
47 static gboolean ascii_only; | |
48 static gboolean mouse_enabled; | |
49 | |
50 static void setup_io(void); | |
51 | |
52 static gboolean refresh_screen(); | |
53 | |
54 GntWM *wm; | |
55 static GntClipboard *clipboard; | |
56 | |
57 #define HOLDING_ESCAPE (escape_stuff.timer != 0) | |
58 | |
59 static struct { | |
60 int timer; | |
61 } escape_stuff; | |
62 | |
63 static gboolean | |
64 escape_timeout(gpointer data) | |
65 { | |
66 gnt_wm_process_input(wm, "\033"); | |
67 escape_stuff.timer = 0; | |
68 return FALSE; | |
69 } | |
70 | |
71 /** | |
72 * Mouse support: | |
73 * - bring a window on top if you click on its taskbar | |
74 * - click on the top-bar of the active window and drag+drop to move a window | |
75 * - click on a window to bring it to focus | |
76 * - allow scrolling in tree/textview on wheel-scroll event | |
77 * - click to activate button or select a row in tree | |
78 * wishlist: | |
79 * - have a little [X] on the windows, and clicking it will close that window. | |
80 */ | |
81 static gboolean | |
82 detect_mouse_action(const char *buffer) | |
83 { | |
84 int x, y; | |
85 static enum { | |
86 MOUSE_NONE, | |
87 MOUSE_LEFT, | |
88 MOUSE_RIGHT, | |
89 MOUSE_MIDDLE | |
90 } button = MOUSE_NONE; | |
91 static GntWidget *remember = NULL; | |
92 static int offset = 0; | |
93 GntMouseEvent event; | |
94 GntWidget *widget = NULL; | |
95 PANEL *p = NULL; | |
96 | |
97 if (!wm->ordered || buffer[0] != 27) | |
98 return FALSE; | |
99 | |
100 buffer++; | |
101 if (strlen(buffer) < 5) | |
102 return FALSE; | |
103 | |
104 x = buffer[3]; | |
105 y = buffer[4]; | |
106 if (x < 0) x += 256; | |
107 if (y < 0) y += 256; | |
108 x -= 33; | |
109 y -= 33; | |
110 | |
111 while ((p = panel_below(p)) != NULL) { | |
112 const GntNode *node = panel_userptr(p); | |
113 GntWidget *wid; | |
114 if (!node) | |
115 continue; | |
116 wid = node->me; | |
117 if (x >= wid->priv.x && x < wid->priv.x + wid->priv.width) { | |
118 if (y >= wid->priv.y && y < wid->priv.y + wid->priv.height) { | |
119 widget = wid; | |
120 break; | |
121 } | |
122 } | |
123 } | |
124 | |
125 if (strncmp(buffer, "[M ", 3) == 0) { | |
126 /* left button down */ | |
127 /* Bring the window you clicked on to front */ | |
128 /* If you click on the topbar, then you can drag to move the window */ | |
129 event = GNT_LEFT_MOUSE_DOWN; | |
130 } else if (strncmp(buffer, "[M\"", 3) == 0) { | |
131 /* right button down */ | |
132 event = GNT_RIGHT_MOUSE_DOWN; | |
133 } else if (strncmp(buffer, "[M!", 3) == 0) { | |
134 /* middle button down */ | |
135 event = GNT_MIDDLE_MOUSE_DOWN; | |
136 } else if (strncmp(buffer, "[M`", 3) == 0) { | |
137 /* wheel up*/ | |
138 event = GNT_MOUSE_SCROLL_UP; | |
139 } else if (strncmp(buffer, "[Ma", 3) == 0) { | |
140 /* wheel down */ | |
141 event = GNT_MOUSE_SCROLL_DOWN; | |
142 } else if (strncmp(buffer, "[M#", 3) == 0) { | |
143 /* button up */ | |
144 event = GNT_MOUSE_UP; | |
145 } else | |
146 return FALSE; | |
17058
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16899
diff
changeset
|
147 |
17064
541c5ed54e90
Fix the commit from earlier today about null-widgets.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17058
diff
changeset
|
148 if (widget && gnt_wm_process_click(wm, event, x, y, widget)) |
15818 | 149 return TRUE; |
150 | |
151 if (event == GNT_LEFT_MOUSE_DOWN && widget && widget != wm->_list.window && | |
152 !GNT_WIDGET_IS_FLAG_SET(widget, GNT_WIDGET_TRANSIENT)) { | |
153 if (widget != wm->ordered->data) { | |
154 gnt_wm_raise_window(wm, widget); | |
155 } | |
156 if (y == widget->priv.y) { | |
157 offset = x - widget->priv.x; | |
158 remember = widget; | |
159 button = MOUSE_LEFT; | |
160 } | |
161 } else if (event == GNT_MOUSE_UP) { | |
162 if (button == MOUSE_NONE && y == getmaxy(stdscr) - 1) { | |
163 /* Clicked on the taskbar */ | |
164 int n = g_list_length(wm->list); | |
165 if (n) { | |
166 int width = getmaxx(stdscr) / n; | |
167 gnt_bindable_perform_action_named(GNT_BINDABLE(wm), "switch-window-n", x/width, NULL); | |
168 } | |
169 } else if (button == MOUSE_LEFT && remember) { | |
170 x -= offset; | |
171 if (x < 0) x = 0; | |
172 if (y < 0) y = 0; | |
173 gnt_screen_move_widget(remember, x, y); | |
174 } | |
175 button = MOUSE_NONE; | |
176 remember = NULL; | |
177 offset = 0; | |
178 } | |
179 | |
17064
541c5ed54e90
Fix the commit from earlier today about null-widgets.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17058
diff
changeset
|
180 if (widget) |
541c5ed54e90
Fix the commit from earlier today about null-widgets.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17058
diff
changeset
|
181 gnt_widget_clicked(widget, event, x, y); |
15818 | 182 return TRUE; |
183 } | |
184 | |
185 static gboolean | |
186 io_invoke_error(GIOChannel *source, GIOCondition cond, gpointer data) | |
187 { | |
188 int id = GPOINTER_TO_INT(data); | |
189 g_source_remove(id); | |
190 g_io_channel_unref(source); | |
191 | |
192 channel = NULL; | |
193 setup_io(); | |
194 return TRUE; | |
195 } | |
196 | |
197 static gboolean | |
198 io_invoke(GIOChannel *source, GIOCondition cond, gpointer null) | |
199 { | |
200 char keys[256]; | |
201 int rd = read(STDIN_FILENO, keys + HOLDING_ESCAPE, sizeof(keys) - 1 - HOLDING_ESCAPE); | |
202 char *k; | |
203 if (rd < 0) | |
204 { | |
205 int ch = getch(); /* This should return ERR, but let's see what it really returns */ | |
206 endwin(); | |
207 printf("ERROR: %s\n", strerror(errno)); | |
208 printf("File descriptor is: %d\n\nGIOChannel is: %p\ngetch() = %d\n", STDIN_FILENO, source, ch); | |
209 raise(SIGABRT); | |
210 } | |
211 else if (rd == 0) | |
212 { | |
213 endwin(); | |
214 printf("EOF\n"); | |
215 raise(SIGABRT); | |
216 } | |
217 | |
16281
82b6fdd899a9
Dialogs opened resulting from a mouse-click should fain focus.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
218 gnt_wm_set_event_stack(wm, TRUE); |
15818 | 219 rd += HOLDING_ESCAPE; |
220 keys[rd] = 0; | |
221 if (mouse_enabled && detect_mouse_action(keys)) | |
16281
82b6fdd899a9
Dialogs opened resulting from a mouse-click should fain focus.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
222 goto end; |
15818 | 223 |
224 if (HOLDING_ESCAPE) | |
225 keys[0] = '\033'; | |
226 k = keys; | |
227 while (rd) { | |
228 char back; | |
229 int p; | |
230 | |
231 if (k[0] == '\033' && rd == 1) { | |
232 if (escape_stuff.timer) { | |
233 gnt_wm_process_input(wm, "\033\033"); | |
234 g_source_remove(escape_stuff.timer); | |
235 escape_stuff.timer = 0; | |
236 break; | |
237 } | |
238 escape_stuff.timer = g_timeout_add(250, escape_timeout, NULL); | |
239 break; | |
240 } | |
241 | |
242 gnt_keys_refine(k); | |
243 p = MAX(1, gnt_keys_find_combination(k)); | |
244 back = k[p]; | |
245 k[p] = '\0'; | |
246 gnt_wm_process_input(wm, k); /* XXX: */ | |
247 k[p] = back; | |
248 rd -= p; | |
249 k += p; | |
250 } | |
16281
82b6fdd899a9
Dialogs opened resulting from a mouse-click should fain focus.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
251 end: |
82b6fdd899a9
Dialogs opened resulting from a mouse-click should fain focus.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
252 gnt_wm_set_event_stack(wm, FALSE); |
15818 | 253 return TRUE; |
254 } | |
255 | |
256 static void | |
257 setup_io() | |
258 { | |
259 int result; | |
260 channel = g_io_channel_unix_new(STDIN_FILENO); | |
261 g_io_channel_set_close_on_unref(channel, TRUE); | |
262 | |
263 #if 0 | |
264 g_io_channel_set_encoding(channel, NULL, NULL); | |
265 g_io_channel_set_buffered(channel, FALSE); | |
266 g_io_channel_set_flags(channel, G_IO_FLAG_NONBLOCK, NULL ); | |
267 #endif | |
268 | |
269 result = g_io_add_watch_full(channel, G_PRIORITY_HIGH, | |
270 (G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_PRI), | |
271 io_invoke, NULL, NULL); | |
272 | |
273 g_io_add_watch_full(channel, G_PRIORITY_HIGH, | |
274 (G_IO_NVAL), | |
275 io_invoke_error, GINT_TO_POINTER(result), NULL); | |
276 | |
277 g_io_channel_unref(channel); /* Apparently this caused crashes for some people. | |
278 But irssi does this, so I am going to assume the | |
279 crashes were caused by some other stuff. */ | |
280 | |
281 g_printerr("gntmain: setting up IO\n"); | |
282 } | |
283 | |
284 static gboolean | |
285 refresh_screen() | |
286 { | |
287 gnt_bindable_perform_action_named(GNT_BINDABLE(wm), "refresh-screen", NULL); | |
288 return FALSE; | |
289 } | |
290 | |
291 /* Xerox */ | |
292 static void | |
293 clean_pid(void) | |
294 { | |
295 int status; | |
296 pid_t pid; | |
297 | |
298 do { | |
299 pid = waitpid(-1, &status, WNOHANG); | |
300 } while (pid != 0 && pid != (pid_t)-1); | |
301 | |
302 if ((pid == (pid_t) - 1) && (errno != ECHILD)) { | |
303 char errmsg[BUFSIZ]; | |
304 g_snprintf(errmsg, BUFSIZ, "Warning: waitpid() returned %d", pid); | |
305 perror(errmsg); | |
306 } | |
307 } | |
308 | |
309 static void | |
16899
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
310 exit_confirmed(gpointer null) |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
311 { |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
312 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:
16792
diff
changeset
|
313 } |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
314 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
315 static void |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
316 exit_win_close(GntWidget *w, GntWidget **win) |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
317 { |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
318 *win = NULL; |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
319 } |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
320 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
321 static void |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
322 ask_before_exit() |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
323 { |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
324 static GntWidget *win = NULL; |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
325 GntWidget *bbox, *button; |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
326 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
327 if (win) |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
328 goto raise; |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
329 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
330 win = gnt_vwindow_new(FALSE); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
331 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:
16792
diff
changeset
|
332 gnt_box_set_title(GNT_BOX(win), "Quit?"); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
333 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:
16792
diff
changeset
|
334 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:
16792
diff
changeset
|
335 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
336 bbox = gnt_hbox_new(FALSE); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
337 gnt_box_add_widget(GNT_BOX(win), bbox); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
338 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
339 button = gnt_button_new("Quit"); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
340 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:
16792
diff
changeset
|
341 gnt_box_add_widget(GNT_BOX(bbox), button); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
342 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
343 button = gnt_button_new("Cancel"); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
344 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:
16792
diff
changeset
|
345 gnt_box_add_widget(GNT_BOX(bbox), button); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
346 |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
347 gnt_widget_show(win); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
348 raise: |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
349 gnt_wm_raise_window(wm, win); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
350 } |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
351 |
17058
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16899
diff
changeset
|
352 #ifdef SIGWINCH |
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16899
diff
changeset
|
353 static void (*org_winch_handler)(int); |
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16899
diff
changeset
|
354 #endif |
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16899
diff
changeset
|
355 |
16899
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
356 static void |
15818 | 357 sighandler(int sig) |
358 { | |
359 switch (sig) { | |
360 #ifdef SIGWINCH | |
361 case SIGWINCH: | |
362 werase(stdscr); | |
363 wrefresh(stdscr); | |
364 g_idle_add(refresh_screen, NULL); | |
17058
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16899
diff
changeset
|
365 org_winch_handler(sig); |
15818 | 366 signal(SIGWINCH, sighandler); |
367 break; | |
368 #endif | |
369 case SIGCHLD: | |
370 clean_pid(); | |
371 signal(SIGCHLD, sighandler); | |
372 break; | |
16899
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
373 case SIGINT: |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
374 ask_before_exit(); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
375 signal(SIGINT, sighandler); |
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
376 break; |
15818 | 377 } |
378 } | |
379 | |
380 static void | |
381 init_wm() | |
382 { | |
383 const char *name = gnt_style_get(GNT_STYLE_WM); | |
384 gpointer handle; | |
385 | |
386 if (name && *name) { | |
387 handle = g_module_open(name, G_MODULE_BIND_LAZY); | |
388 if (handle) { | |
389 gboolean (*init)(GntWM **); | |
390 if (g_module_symbol(handle, "gntwm_init", (gpointer)&init)) { | |
391 init(&wm); | |
392 } | |
393 } | |
394 } | |
395 if (wm == NULL) | |
396 wm = g_object_new(GNT_TYPE_WM, NULL); | |
397 } | |
398 | |
399 void gnt_init() | |
400 { | |
401 char *filename; | |
402 const char *locale; | |
403 | |
404 if (channel) | |
405 return; | |
406 | |
407 locale = setlocale(LC_ALL, ""); | |
408 | |
409 setup_io(); | |
410 | |
411 if (locale && (strstr(locale, "UTF") || strstr(locale, "utf"))) | |
412 ascii_only = FALSE; | |
413 else | |
414 ascii_only = TRUE; | |
415 | |
416 initscr(); | |
417 typeahead(-1); | |
418 noecho(); | |
419 curs_set(0); | |
420 | |
421 gnt_init_keys(); | |
422 gnt_init_styles(); | |
423 | |
424 filename = g_build_filename(g_get_home_dir(), ".gntrc", NULL); | |
425 gnt_style_read_configure_file(filename); | |
426 g_free(filename); | |
427 | |
428 gnt_init_colors(); | |
429 | |
430 wbkgdset(stdscr, '\0' | COLOR_PAIR(GNT_COLOR_NORMAL)); | |
431 refresh(); | |
432 | |
433 #ifdef ALL_MOUSE_EVENTS | |
434 if ((mouse_enabled = gnt_style_get_bool(GNT_STYLE_MOUSE, FALSE))) | |
435 mousemask(ALL_MOUSE_EVENTS | REPORT_MOUSE_POSITION, NULL); | |
436 #endif | |
437 | |
438 wbkgdset(stdscr, '\0' | COLOR_PAIR(GNT_COLOR_NORMAL)); | |
439 werase(stdscr); | |
440 wrefresh(stdscr); | |
441 | |
442 #ifdef SIGWINCH | |
17058
a19b8d71f868
Do not process clicks on no widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16899
diff
changeset
|
443 org_winch_handler = signal(SIGWINCH, sighandler); |
15818 | 444 #endif |
445 signal(SIGCHLD, sighandler); | |
16899
d2904afe89e2
Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
446 signal(SIGINT, sighandler); |
15818 | 447 signal(SIGPIPE, SIG_IGN); |
448 | |
449 g_type_init(); | |
450 | |
451 init_wm(); | |
452 | |
453 clipboard = g_object_new(GNT_TYPE_CLIPBOARD, NULL); | |
454 } | |
455 | |
456 void gnt_main() | |
457 { | |
458 wm->loop = g_main_loop_new(NULL, FALSE); | |
459 g_main_loop_run(wm->loop); | |
460 } | |
461 | |
462 /********************************* | |
463 * Stuff for 'window management' * | |
464 *********************************/ | |
465 | |
466 void gnt_screen_occupy(GntWidget *widget) | |
467 { | |
468 gnt_wm_new_window(wm, widget); | |
469 } | |
470 | |
471 void gnt_screen_release(GntWidget *widget) | |
472 { | |
473 gnt_wm_window_close(wm, widget); | |
474 } | |
475 | |
476 void gnt_screen_update(GntWidget *widget) | |
477 { | |
478 gnt_wm_update_window(wm, widget); | |
479 } | |
480 | |
481 gboolean gnt_widget_has_focus(GntWidget *widget) | |
482 { | |
483 GntWidget *w; | |
484 if (!widget) | |
485 return FALSE; | |
486 | |
487 if (GNT_IS_MENU(widget)) | |
488 return TRUE; | |
489 | |
490 w = widget; | |
491 | |
492 while (widget->parent) | |
493 widget = widget->parent; | |
494 | |
495 if (widget == wm->_list.window) | |
496 return TRUE; | |
497 if (wm->ordered && wm->ordered->data == widget) { | |
498 if (GNT_IS_BOX(widget) && | |
499 (GNT_BOX(widget)->active == w || widget == w)) | |
500 return TRUE; | |
501 } | |
502 return FALSE; | |
503 } | |
504 | |
505 void gnt_widget_set_urgent(GntWidget *widget) | |
506 { | |
507 while (widget->parent) | |
508 widget = widget->parent; | |
509 | |
510 if (wm->ordered && wm->ordered->data == widget) | |
511 return; | |
512 | |
513 GNT_WIDGET_SET_FLAGS(widget, GNT_WIDGET_URGENT); | |
514 | |
515 gnt_wm_update_window(wm, widget); | |
516 } | |
517 | |
518 void gnt_quit() | |
519 { | |
520 g_hash_table_destroy(wm->nodes); /* XXX: */ | |
521 update_panels(); | |
522 doupdate(); | |
523 gnt_uninit_colors(); | |
524 gnt_uninit_styles(); | |
525 endwin(); | |
526 } | |
527 | |
528 gboolean gnt_ascii_only() | |
529 { | |
530 return ascii_only; | |
531 } | |
532 | |
533 void gnt_screen_resize_widget(GntWidget *widget, int width, int height) | |
534 { | |
535 gnt_wm_resize_window(wm, widget, width, height); | |
536 } | |
537 | |
538 void gnt_screen_move_widget(GntWidget *widget, int x, int y) | |
539 { | |
540 gnt_wm_move_window(wm, widget, x, y); | |
541 } | |
542 | |
543 void gnt_screen_rename_widget(GntWidget *widget, const char *text) | |
544 { | |
545 gnt_box_set_title(GNT_BOX(widget), text); | |
546 gnt_widget_draw(widget); | |
547 gnt_wm_update_window(wm, widget); | |
548 } | |
549 | |
550 void gnt_register_action(const char *label, void (*callback)()) | |
551 { | |
552 GntAction *action = g_new0(GntAction, 1); | |
553 action->label = g_strdup(label); | |
554 action->callback = callback; | |
555 | |
556 wm->acts = g_list_append(wm->acts, action); | |
557 } | |
558 | |
559 static void | |
560 reset_menu(GntWidget *widget, gpointer null) | |
561 { | |
562 wm->menu = NULL; | |
563 } | |
564 | |
565 gboolean gnt_screen_menu_show(gpointer newmenu) | |
566 { | |
567 if (wm->menu) { | |
568 /* For now, if a menu is being displayed, then another menu | |
569 * can NOT take over. */ | |
570 return FALSE; | |
571 } | |
572 | |
573 wm->menu = newmenu; | |
574 GNT_WIDGET_UNSET_FLAGS(GNT_WIDGET(wm->menu), GNT_WIDGET_INVISIBLE); | |
575 gnt_widget_draw(GNT_WIDGET(wm->menu)); | |
576 | |
577 g_signal_connect(G_OBJECT(wm->menu), "hide", G_CALLBACK(reset_menu), NULL); | |
16792
d0f9b2b217cf
Fix context menu unusualness in the buddylist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16281
diff
changeset
|
578 g_signal_connect(G_OBJECT(wm->menu), "destroy", G_CALLBACK(reset_menu), NULL); |
15818 | 579 |
580 return TRUE; | |
581 } | |
582 | |
583 void gnt_set_clipboard_string(gchar *string) | |
584 { | |
585 gnt_clipboard_set_string(clipboard, string); | |
586 } | |
587 | |
588 GntClipboard *gnt_get_clipboard() | |
589 { | |
590 return clipboard; | |
591 } | |
592 gchar *gnt_get_clipboard_string() | |
593 { | |
594 return gnt_clipboard_get_string(clipboard); | |
595 } |