finch/libgnt/gntmain.c

Fri, 13 Jul 2007 16:50:03 +0000

author
Sadrul Habib Chowdhury <sadrul@pidgin.im>
date
Fri, 13 Jul 2007 16:50:03 +0000
changeset 18778
7cf5400593b8
parent 18623
244951dea82f
child 19180
a814189b2782
child 19307
0027732ddb26
permissions
-rw-r--r--

Allow having a callback after the child process terminates. Use the callback
to remove the temporary file used by the pager.

18114
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
1 /**
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
2 * GNT - The GLib Ncurses Toolkit
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
3 *
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
4 * GNT is the legal property of its developers, whose names are too numerous
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
5 * to list here. Please refer to the COPYRIGHT file distributed with this
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
6 * source distribution.
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
7 *
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
8 * This library is free software; you can redistribute it and/or modify
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
9 * it under the terms of the GNU General Public License as published by
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
10 * the Free Software Foundation; either version 2 of the License, or
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
11 * (at your option) any later version.
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
12 *
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
13 * This program is distributed in the hope that it will be useful,
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
16 * GNU General Public License for more details.
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
17 *
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
18 * You should have received a copy of the GNU General Public License
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
19 * along with this program; if not, write to the Free Software
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
21 */
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
22
14539
7d5528c864a1 [gaim-migrate @ 17195]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14493
diff changeset
23 #define _GNU_SOURCE
17853
b0e5cda11253 Fix libgnt compilation on BSD and solaris. This references #516.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17355
diff changeset
24 #if defined(__APPLE__) || defined(__unix__)
14800
9fb18f4b8d1a [gaim-migrate @ 17494]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14799
diff changeset
25 #define _XOPEN_SOURCE_EXTENDED
9fb18f4b8d1a [gaim-migrate @ 17494]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14799
diff changeset
26 #endif
14487
12503b6b5268 [gaim-migrate @ 17133]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14483
diff changeset
27
14483
82b73e12ce27 [gaim-migrate @ 17129]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14477
diff changeset
28 #include "config.h"
82b73e12ce27 [gaim-migrate @ 17129]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14477
diff changeset
29
14397
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
30 #include <gmodule.h>
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
31
15863
7411e672a88b Re-order includes to fix this compile error:
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 15862
diff changeset
32 #include <sys/types.h>
7411e672a88b Re-order includes to fix this compile error:
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 15862
diff changeset
33 #include <sys/wait.h>
7411e672a88b Re-order includes to fix this compile error:
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 15862
diff changeset
34
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
35 #include "gnt.h"
13950
bd8d39b3a9e2 [gaim-migrate @ 16369]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13947
diff changeset
36 #include "gntbox.h"
16944
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
37 #include "gntbutton.h"
14066
3a97522e09ee [gaim-migrate @ 16589]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14045
diff changeset
38 #include "gntcolors.h"
15814
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
39 #include "gntclipboard.h"
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
40 #include "gntkeys.h"
16944
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
41 #include "gntlabel.h"
14675
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
42 #include "gntmenu.h"
14066
3a97522e09ee [gaim-migrate @ 16589]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14045
diff changeset
43 #include "gntstyle.h"
13978
70d7030b7f26 [gaim-migrate @ 16418]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13973
diff changeset
44 #include "gnttree.h"
14539
7d5528c864a1 [gaim-migrate @ 17195]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14493
diff changeset
45 #include "gntutils.h"
16944
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
46 #include "gntwindow.h"
14397
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
47 #include "gntwm.h"
13950
bd8d39b3a9e2 [gaim-migrate @ 16369]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13947
diff changeset
48
14493
c47f415b7e56 [gaim-migrate @ 17145]
Mark Doliner <markdoliner@pidgin.im>
parents: 14490
diff changeset
49 #include <panel.h>
c47f415b7e56 [gaim-migrate @ 17145]
Mark Doliner <markdoliner@pidgin.im>
parents: 14490
diff changeset
50
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
51 #include <stdio.h>
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
52 #include <stdlib.h>
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
53 #include <locale.h>
13950
bd8d39b3a9e2 [gaim-migrate @ 16369]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13947
diff changeset
54 #include <unistd.h>
14335
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
55 #include <signal.h>
13950
bd8d39b3a9e2 [gaim-migrate @ 16369]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13947
diff changeset
56 #include <string.h>
14282
4b948c7a0eb4 [gaim-migrate @ 16901]
Ethan Blanton <elb@pidgin.im>
parents: 14278
diff changeset
57 #include <ctype.h>
14443
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
58 #include <errno.h>
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
59
14153
9da98052a4e1 [gaim-migrate @ 16715]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14121
diff changeset
60 /**
9da98052a4e1 [gaim-migrate @ 16715]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14121
diff changeset
61 * Notes: Interesting functions to look at:
9da98052a4e1 [gaim-migrate @ 16715]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14121
diff changeset
62 * scr_dump, scr_init, scr_restore: for workspaces
14193
fcfd3eea2160 [gaim-migrate @ 16773]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14187
diff changeset
63 *
fcfd3eea2160 [gaim-migrate @ 16773]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14187
diff changeset
64 * Need to wattrset for colors to use with PDCurses.
14153
9da98052a4e1 [gaim-migrate @ 16715]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14121
diff changeset
65 */
9da98052a4e1 [gaim-migrate @ 16715]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14121
diff changeset
66
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
67 static GIOChannel *channel = NULL;
18603
99a3588da5b1 The input was causing some weird issues. This fixes it.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18599
diff changeset
68 static int channel_read_callback;
13969
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
69
13989
9a647311c9ac [gaim-migrate @ 16447]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13981
diff changeset
70 static gboolean ascii_only;
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
71 static gboolean mouse_enabled;
13989
9a647311c9ac [gaim-migrate @ 16447]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13981
diff changeset
72
15874
46df7421a1b5 Enable DEBUG_CFLAGS in libgnt and fix up a number of compile warnings and
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 15863
diff changeset
73 static void setup_io(void);
13931
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
74
14335
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
75 static gboolean refresh_screen();
14405
4398121ce889 [gaim-migrate @ 17044]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14397
diff changeset
76
18114
adb3cfadc125 Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17853
diff changeset
77 static GntWM *wm;
15814
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
78 static GntClipboard *clipboard;
14307
bfdf8ddf6dda [gaim-migrate @ 16927]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14282
diff changeset
79
15842
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
80 #define HOLDING_ESCAPE (escape_stuff.timer != 0)
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
81
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
82 static struct {
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
83 int timer;
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
84 } escape_stuff;
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
85
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
86 static gboolean
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
87 escape_timeout(gpointer data)
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
88 {
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
89 gnt_wm_process_input(wm, "\033");
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
90 escape_stuff.timer = 0;
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
91 return FALSE;
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
92 }
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
93
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
94 /**
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
95 * Mouse support:
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
96 * - bring a window on top if you click on its taskbar
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
97 * - click on the top-bar of the active window and drag+drop to move a window
14387
c52a8625eab3 [gaim-migrate @ 17020]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14379
diff changeset
98 * - click on a window to bring it to focus
14424
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
99 * - allow scrolling in tree/textview on wheel-scroll event
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
100 * - click to activate button or select a row in tree
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
101 * wishlist:
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
102 * - have a little [X] on the windows, and clicking it will close that window.
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
103 */
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
104 static gboolean
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
105 detect_mouse_action(const char *buffer)
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
106 {
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
107 int x, y;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
108 static enum {
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
109 MOUSE_NONE,
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
110 MOUSE_LEFT,
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
111 MOUSE_RIGHT,
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
112 MOUSE_MIDDLE
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
113 } button = MOUSE_NONE;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
114 static GntWidget *remember = NULL;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
115 static int offset = 0;
14405
4398121ce889 [gaim-migrate @ 17044]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14397
diff changeset
116 GntMouseEvent event;
14424
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
117 GntWidget *widget = NULL;
14539
7d5528c864a1 [gaim-migrate @ 17195]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14493
diff changeset
118 PANEL *p = NULL;
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
119
16519
9458657f5b99 Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents: 16356
diff changeset
120 if (!wm->cws->ordered || buffer[0] != 27)
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
121 return FALSE;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
122
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
123 buffer++;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
124 if (strlen(buffer) < 5)
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
125 return FALSE;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
126
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
127 x = buffer[3];
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
128 y = buffer[4];
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
129 if (x < 0) x += 256;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
130 if (y < 0) y += 256;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
131 x -= 33;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
132 y -= 33;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
133
14539
7d5528c864a1 [gaim-migrate @ 17195]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14493
diff changeset
134 while ((p = panel_below(p)) != NULL) {
7d5528c864a1 [gaim-migrate @ 17195]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14493
diff changeset
135 const GntNode *node = panel_userptr(p);
7d5528c864a1 [gaim-migrate @ 17195]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14493
diff changeset
136 GntWidget *wid;
7d5528c864a1 [gaim-migrate @ 17195]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14493
diff changeset
137 if (!node)
7d5528c864a1 [gaim-migrate @ 17195]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14493
diff changeset
138 continue;
7d5528c864a1 [gaim-migrate @ 17195]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14493
diff changeset
139 wid = node->me;
14424
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
140 if (x >= wid->priv.x && x < wid->priv.x + wid->priv.width) {
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
141 if (y >= wid->priv.y && y < wid->priv.y + wid->priv.height) {
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
142 widget = wid;
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
143 break;
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
144 }
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
145 }
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
146 }
14539
7d5528c864a1 [gaim-migrate @ 17195]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14493
diff changeset
147
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
148 if (strncmp(buffer, "[M ", 3) == 0) {
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
149 /* left button down */
14379
d1bd558266b7 [gaim-migrate @ 17010]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14376
diff changeset
150 /* Bring the window you clicked on to front */
d1bd558266b7 [gaim-migrate @ 17010]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14376
diff changeset
151 /* If you click on the topbar, then you can drag to move the window */
14405
4398121ce889 [gaim-migrate @ 17044]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14397
diff changeset
152 event = GNT_LEFT_MOUSE_DOWN;
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
153 } else if (strncmp(buffer, "[M\"", 3) == 0) {
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
154 /* right button down */
14405
4398121ce889 [gaim-migrate @ 17044]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14397
diff changeset
155 event = GNT_RIGHT_MOUSE_DOWN;
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
156 } else if (strncmp(buffer, "[M!", 3) == 0) {
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
157 /* middle button down */
14405
4398121ce889 [gaim-migrate @ 17044]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14397
diff changeset
158 event = GNT_MIDDLE_MOUSE_DOWN;
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
159 } else if (strncmp(buffer, "[M`", 3) == 0) {
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
160 /* wheel up*/
14405
4398121ce889 [gaim-migrate @ 17044]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14397
diff changeset
161 event = GNT_MOUSE_SCROLL_UP;
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
162 } else if (strncmp(buffer, "[Ma", 3) == 0) {
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
163 /* wheel down */
14405
4398121ce889 [gaim-migrate @ 17044]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14397
diff changeset
164 event = GNT_MOUSE_SCROLL_DOWN;
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
165 } else if (strncmp(buffer, "[M#", 3) == 0) {
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
166 /* button up */
14424
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
167 event = GNT_MOUSE_UP;
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
168 } else
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
169 return FALSE;
17093
7ad0acaf60ab Do not process clicks on no widget.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16944
diff changeset
170
17099
7eb7e94588dd Fix the commit from earlier today about null-widgets.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17093
diff changeset
171 if (widget && gnt_wm_process_click(wm, event, x, y, widget))
14424
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
172 return TRUE;
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
173
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
174 if (event == GNT_LEFT_MOUSE_DOWN && widget && widget != wm->_list.window &&
14539
7d5528c864a1 [gaim-migrate @ 17195]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14493
diff changeset
175 !GNT_WIDGET_IS_FLAG_SET(widget, GNT_WIDGET_TRANSIENT)) {
16519
9458657f5b99 Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents: 16356
diff changeset
176 if (widget != wm->cws->ordered->data) {
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
177 gnt_wm_raise_window(wm, widget);
14424
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
178 }
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
179 if (y == widget->priv.y) {
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
180 offset = x - widget->priv.x;
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
181 remember = widget;
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
182 button = MOUSE_LEFT;
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
183 }
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
184 } else if (event == GNT_MOUSE_UP) {
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
185 if (button == MOUSE_NONE && y == getmaxy(stdscr) - 1) {
14424
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
186 /* Clicked on the taskbar */
16519
9458657f5b99 Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents: 16356
diff changeset
187 int n = g_list_length(wm->cws->list);
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
188 if (n) {
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
189 int width = getmaxx(stdscr) / n;
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
190 gnt_bindable_perform_action_named(GNT_BINDABLE(wm), "switch-window-n", x/width, NULL);
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
191 }
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
192 } else if (button == MOUSE_LEFT && remember) {
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
193 x -= offset;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
194 if (x < 0) x = 0;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
195 if (y < 0) y = 0;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
196 gnt_screen_move_widget(remember, x, y);
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
197 }
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
198 button = MOUSE_NONE;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
199 remember = NULL;
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
200 offset = 0;
14424
8874ec350ebb [gaim-migrate @ 17068]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14405
diff changeset
201 }
14405
4398121ce889 [gaim-migrate @ 17044]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14397
diff changeset
202
17099
7eb7e94588dd Fix the commit from earlier today about null-widgets.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17093
diff changeset
203 if (widget)
7eb7e94588dd Fix the commit from earlier today about null-widgets.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17093
diff changeset
204 gnt_widget_clicked(widget, event, x, y);
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
205 return TRUE;
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
206 }
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
207
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
208 static gboolean
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
209 io_invoke_error(GIOChannel *source, GIOCondition cond, gpointer data)
14539
7d5528c864a1 [gaim-migrate @ 17195]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14493
diff changeset
210 {
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
211 int id = GPOINTER_TO_INT(data);
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
212 g_source_remove(id);
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
213 g_io_channel_unref(source);
14487
12503b6b5268 [gaim-migrate @ 17133]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14483
diff changeset
214
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
215 channel = NULL;
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
216 setup_io();
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
217 return TRUE;
14477
7252d4888bf2 [gaim-migrate @ 17123]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14467
diff changeset
218 }
7252d4888bf2 [gaim-migrate @ 17123]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14467
diff changeset
219
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
220 static gboolean
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
221 io_invoke(GIOChannel *source, GIOCondition cond, gpointer null)
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
222 {
14405
4398121ce889 [gaim-migrate @ 17044]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14397
diff changeset
223 char keys[256];
18599
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
224 int rd;
15839
e2b7b5f4f9aa Change a bit how the keystrokes are processed. When a lot of keystrokes come in at the same time, the shortest key-combination is processed first. This should make typing fast over a very slow connection work properly.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15814
diff changeset
225 char *k;
18599
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
226
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
227 if (wm->mode == GNT_KP_MODE_WAIT_ON_CHILD)
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
228 return FALSE;
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
229
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
230 rd = read(STDIN_FILENO, keys + HOLDING_ESCAPE, sizeof(keys) - 1 - HOLDING_ESCAPE);
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
231 if (rd < 0)
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
232 {
14943
ffd493362a87 [gaim-migrate @ 17650]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14938
diff changeset
233 int ch = getch(); /* This should return ERR, but let's see what it really returns */
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
234 endwin();
14742
57b62b1b4646 [gaim-migrate @ 17432]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14689
diff changeset
235 printf("ERROR: %s\n", strerror(errno));
14943
ffd493362a87 [gaim-migrate @ 17650]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14938
diff changeset
236 printf("File descriptor is: %d\n\nGIOChannel is: %p\ngetch() = %d\n", STDIN_FILENO, source, ch);
ffd493362a87 [gaim-migrate @ 17650]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14938
diff changeset
237 raise(SIGABRT);
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
238 }
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
239 else if (rd == 0)
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
240 {
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
241 endwin();
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
242 printf("EOF\n");
14943
ffd493362a87 [gaim-migrate @ 17650]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14938
diff changeset
243 raise(SIGABRT);
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
244 }
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
245
16356
13cc89b3ab7c Dialogs opened resulting from a mouse-click should fain focus.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15906
diff changeset
246 gnt_wm_set_event_stack(wm, TRUE);
15842
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
247 rd += HOLDING_ESCAPE;
14405
4398121ce889 [gaim-migrate @ 17044]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14397
diff changeset
248 keys[rd] = 0;
4398121ce889 [gaim-migrate @ 17044]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14397
diff changeset
249 if (mouse_enabled && detect_mouse_action(keys))
16356
13cc89b3ab7c Dialogs opened resulting from a mouse-click should fain focus.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15906
diff changeset
250 goto end;
15839
e2b7b5f4f9aa Change a bit how the keystrokes are processed. When a lot of keystrokes come in at the same time, the shortest key-combination is processed first. This should make typing fast over a very slow connection work properly.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15814
diff changeset
251
15842
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
252 if (HOLDING_ESCAPE)
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
253 keys[0] = '\033';
15839
e2b7b5f4f9aa Change a bit how the keystrokes are processed. When a lot of keystrokes come in at the same time, the shortest key-combination is processed first. This should make typing fast over a very slow connection work properly.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15814
diff changeset
254 k = keys;
e2b7b5f4f9aa Change a bit how the keystrokes are processed. When a lot of keystrokes come in at the same time, the shortest key-combination is processed first. This should make typing fast over a very slow connection work properly.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15814
diff changeset
255 while (rd) {
e2b7b5f4f9aa Change a bit how the keystrokes are processed. When a lot of keystrokes come in at the same time, the shortest key-combination is processed first. This should make typing fast over a very slow connection work properly.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15814
diff changeset
256 char back;
15842
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
257 int p;
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
258
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
259 if (k[0] == '\033' && rd == 1) {
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
260 if (escape_stuff.timer) {
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
261 gnt_wm_process_input(wm, "\033\033");
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
262 g_source_remove(escape_stuff.timer);
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
263 escape_stuff.timer = 0;
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
264 break;
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
265 }
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
266 escape_stuff.timer = g_timeout_add(250, escape_timeout, NULL);
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
267 break;
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
268 }
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
269
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
270 gnt_keys_refine(k);
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
271 p = MAX(1, gnt_keys_find_combination(k));
15839
e2b7b5f4f9aa Change a bit how the keystrokes are processed. When a lot of keystrokes come in at the same time, the shortest key-combination is processed first. This should make typing fast over a very slow connection work properly.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15814
diff changeset
272 back = k[p];
e2b7b5f4f9aa Change a bit how the keystrokes are processed. When a lot of keystrokes come in at the same time, the shortest key-combination is processed first. This should make typing fast over a very slow connection work properly.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15814
diff changeset
273 k[p] = '\0';
15840
442102aa7b24 Some changes to the last change. People should really test this thing out.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15839
diff changeset
274 gnt_wm_process_input(wm, k); /* XXX: */
15839
e2b7b5f4f9aa Change a bit how the keystrokes are processed. When a lot of keystrokes come in at the same time, the shortest key-combination is processed first. This should make typing fast over a very slow connection work properly.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15814
diff changeset
275 k[p] = back;
e2b7b5f4f9aa Change a bit how the keystrokes are processed. When a lot of keystrokes come in at the same time, the shortest key-combination is processed first. This should make typing fast over a very slow connection work properly.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15814
diff changeset
276 rd -= p;
e2b7b5f4f9aa Change a bit how the keystrokes are processed. When a lot of keystrokes come in at the same time, the shortest key-combination is processed first. This should make typing fast over a very slow connection work properly.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15814
diff changeset
277 k += p;
e2b7b5f4f9aa Change a bit how the keystrokes are processed. When a lot of keystrokes come in at the same time, the shortest key-combination is processed first. This should make typing fast over a very slow connection work properly.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15814
diff changeset
278 }
16356
13cc89b3ab7c Dialogs opened resulting from a mouse-click should fain focus.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15906
diff changeset
279 end:
13cc89b3ab7c Dialogs opened resulting from a mouse-click should fain focus.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15906
diff changeset
280 gnt_wm_set_event_stack(wm, FALSE);
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
281 return TRUE;
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
282 }
13969
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
283
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
284 static void
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
285 setup_io()
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
286 {
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
287 int result;
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
288 channel = g_io_channel_unix_new(STDIN_FILENO);
15842
0b00e18a33f2 Do some funky stuff with the escape key.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15841
diff changeset
289 g_io_channel_set_close_on_unref(channel, TRUE);
13958
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
290
15485
07050dfe816e More closely imitate the input handling of irssi. Hopefully this will fix the excessive CPU usage bug Alver keeps getting.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15038
diff changeset
291 #if 0
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
292 g_io_channel_set_encoding(channel, NULL, NULL);
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
293 g_io_channel_set_buffered(channel, FALSE);
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
294 g_io_channel_set_flags(channel, G_IO_FLAG_NONBLOCK, NULL );
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
295 #endif
13978
70d7030b7f26 [gaim-migrate @ 16418]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13973
diff changeset
296
18603
99a3588da5b1 The input was causing some weird issues. This fixes it.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18599
diff changeset
297 channel_read_callback = result = g_io_add_watch_full(channel, G_PRIORITY_HIGH,
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
298 (G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_PRI),
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
299 io_invoke, NULL, NULL);
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
300
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
301 g_io_add_watch_full(channel, G_PRIORITY_HIGH,
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
302 (G_IO_NVAL),
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
303 io_invoke_error, GINT_TO_POINTER(result), NULL);
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
304
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
305 g_io_channel_unref(channel); /* Apparently this caused crashes for some people.
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
306 But irssi does this, so I am going to assume the
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
307 crashes were caused by some other stuff. */
13992
a6bbcc09c4eb [gaim-migrate @ 16457]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13989
diff changeset
308
18778
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
309 g_printerr("gntmain: setting up IO (%d)\n", channel_read_callback);
14335
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
310 }
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
311
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
312 static gboolean
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
313 refresh_screen()
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
314 {
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
315 gnt_bindable_perform_action_named(GNT_BINDABLE(wm), "refresh-screen", NULL);
14335
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
316 return FALSE;
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
317 }
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
318
14443
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
319 /* Xerox */
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
320 static void
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
321 clean_pid(void)
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
322 {
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
323 int status;
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
324 pid_t pid;
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
325
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
326 do {
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
327 pid = waitpid(-1, &status, WNOHANG);
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
328 } while (pid != 0 && pid != (pid_t)-1);
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
329
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
330 if ((pid == (pid_t) - 1) && (errno != ECHILD)) {
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
331 char errmsg[BUFSIZ];
14487
12503b6b5268 [gaim-migrate @ 17133]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14483
diff changeset
332 g_snprintf(errmsg, BUFSIZ, "Warning: waitpid() returned %d", pid);
14443
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
333 perror(errmsg);
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
334 }
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
335 }
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
336
14335
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
337 static void
16944
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
338 exit_confirmed(gpointer null)
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
339 {
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
340 gnt_bindable_perform_action_named(GNT_BINDABLE(wm), "wm-quit", NULL);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
341 }
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
342
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
343 static void
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
344 exit_win_close(GntWidget *w, GntWidget **win)
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
345 {
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
346 *win = NULL;
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
347 }
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
348
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
349 static void
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
350 ask_before_exit()
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
351 {
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
352 static GntWidget *win = NULL;
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
353 GntWidget *bbox, *button;
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
354
18623
244951dea82f Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18603
diff changeset
355 if (wm->menu) {
244951dea82f Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18603
diff changeset
356 do {
244951dea82f Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18603
diff changeset
357 gnt_widget_hide(GNT_WIDGET(wm->menu));
244951dea82f Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18603
diff changeset
358 if (wm->menu)
244951dea82f Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18603
diff changeset
359 wm->menu = wm->menu->parentmenu;
244951dea82f Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18603
diff changeset
360 } while (wm->menu);
244951dea82f Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18603
diff changeset
361 }
244951dea82f Hide the menu when ctrl-c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18603
diff changeset
362
16944
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
363 if (win)
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
364 goto raise;
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
365
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
366 win = gnt_vwindow_new(FALSE);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
367 gnt_box_add_widget(GNT_BOX(win), gnt_label_new("Are you sure you want to quit?"));
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
368 gnt_box_set_title(GNT_BOX(win), "Quit?");
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
369 gnt_box_set_alignment(GNT_BOX(win), GNT_ALIGN_MID);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
370 g_signal_connect(G_OBJECT(win), "destroy", G_CALLBACK(exit_win_close), &win);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
371
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
372 bbox = gnt_hbox_new(FALSE);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
373 gnt_box_add_widget(GNT_BOX(win), bbox);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
374
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
375 button = gnt_button_new("Quit");
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
376 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(exit_confirmed), NULL);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
377 gnt_box_add_widget(GNT_BOX(bbox), button);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
378
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
379 button = gnt_button_new("Cancel");
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
380 g_signal_connect_swapped(G_OBJECT(button), "activate", G_CALLBACK(gnt_widget_destroy), win);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
381 gnt_box_add_widget(GNT_BOX(bbox), button);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
382
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
383 gnt_widget_show(win);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
384 raise:
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
385 gnt_wm_raise_window(wm, win);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
386 }
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
387
17093
7ad0acaf60ab Do not process clicks on no widget.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16944
diff changeset
388 #ifdef SIGWINCH
7ad0acaf60ab Do not process clicks on no widget.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16944
diff changeset
389 static void (*org_winch_handler)(int);
7ad0acaf60ab Do not process clicks on no widget.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16944
diff changeset
390 #endif
7ad0acaf60ab Do not process clicks on no widget.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16944
diff changeset
391
16944
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
392 static void
14335
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
393 sighandler(int sig)
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
394 {
14443
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
395 switch (sig) {
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
396 #ifdef SIGWINCH
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
397 case SIGWINCH:
17355
8cb2af48afee I think this fixes #532.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 17099
diff changeset
398 erase();
14335
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
399 g_idle_add(refresh_screen, NULL);
17093
7ad0acaf60ab Do not process clicks on no widget.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16944
diff changeset
400 org_winch_handler(sig);
14443
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
401 signal(SIGWINCH, sighandler);
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
402 break;
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
403 #endif
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
404 case SIGCHLD:
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
405 clean_pid();
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
406 signal(SIGCHLD, sighandler);
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
407 break;
16944
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
408 case SIGINT:
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
409 ask_before_exit();
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
410 signal(SIGINT, sighandler);
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
411 break;
14335
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
412 }
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
413 }
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
414
14397
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
415 static void
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
416 init_wm()
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
417 {
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
418 const char *name = gnt_style_get(GNT_STYLE_WM);
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
419 gpointer handle;
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
420
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
421 if (name && *name) {
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
422 handle = g_module_open(name, G_MODULE_BIND_LAZY);
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
423 if (handle) {
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
424 gboolean (*init)(GntWM **);
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
425 if (g_module_symbol(handle, "gntwm_init", (gpointer)&init)) {
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
426 init(&wm);
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
427 }
14397
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
428 }
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
429 }
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
430 if (wm == NULL)
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
431 wm = g_object_new(GNT_TYPE_WM, NULL);
14397
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
432 }
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
433
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
434 void gnt_init()
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
435 {
14066
3a97522e09ee [gaim-migrate @ 16589]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14045
diff changeset
436 char *filename;
14264
f8399abdcb46 [gaim-migrate @ 16875]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14201
diff changeset
437 const char *locale;
f8399abdcb46 [gaim-migrate @ 16875]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14201
diff changeset
438
14045
12b8c2bfd3fb [gaim-migrate @ 16552]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14026
diff changeset
439 if (channel)
12b8c2bfd3fb [gaim-migrate @ 16552]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14026
diff changeset
440 return;
12b8c2bfd3fb [gaim-migrate @ 16552]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14026
diff changeset
441
15485
07050dfe816e More closely imitate the input handling of irssi. Hopefully this will fix the excessive CPU usage bug Alver keeps getting.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15038
diff changeset
442 locale = setlocale(LC_ALL, "");
14264
f8399abdcb46 [gaim-migrate @ 16875]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14201
diff changeset
443
15485
07050dfe816e More closely imitate the input handling of irssi. Hopefully this will fix the excessive CPU usage bug Alver keeps getting.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15038
diff changeset
444 setup_io();
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
445
18262
17ac69b18163 Detect wide character non-support at compile time, if possible.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18133
diff changeset
446 #ifdef NO_WIDECHAR
17ac69b18163 Detect wide character non-support at compile time, if possible.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18133
diff changeset
447 ascii_only = TRUE;
17ac69b18163 Detect wide character non-support at compile time, if possible.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18133
diff changeset
448 #else
13989
9a647311c9ac [gaim-migrate @ 16447]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13981
diff changeset
449 if (locale && (strstr(locale, "UTF") || strstr(locale, "utf")))
9a647311c9ac [gaim-migrate @ 16447]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13981
diff changeset
450 ascii_only = FALSE;
9a647311c9ac [gaim-migrate @ 16447]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13981
diff changeset
451 else
9a647311c9ac [gaim-migrate @ 16447]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13981
diff changeset
452 ascii_only = TRUE;
18262
17ac69b18163 Detect wide character non-support at compile time, if possible.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18133
diff changeset
453 #endif
13989
9a647311c9ac [gaim-migrate @ 16447]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13981
diff changeset
454
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
455 initscr();
14153
9da98052a4e1 [gaim-migrate @ 16715]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14121
diff changeset
456 typeahead(-1);
9da98052a4e1 [gaim-migrate @ 16715]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14121
diff changeset
457 noecho();
9da98052a4e1 [gaim-migrate @ 16715]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14121
diff changeset
458 curs_set(0);
9da98052a4e1 [gaim-migrate @ 16715]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14121
diff changeset
459
15862
895c0f69faa0 Make sure unbound key-combinations are handled properly.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15842
diff changeset
460 gnt_init_keys();
14072
4e64a4f18686 [gaim-migrate @ 16602]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14066
diff changeset
461 gnt_init_styles();
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
462
14066
3a97522e09ee [gaim-migrate @ 16589]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14045
diff changeset
463 filename = g_build_filename(g_get_home_dir(), ".gntrc", NULL);
3a97522e09ee [gaim-migrate @ 16589]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14045
diff changeset
464 gnt_style_read_configure_file(filename);
3a97522e09ee [gaim-migrate @ 16589]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14045
diff changeset
465 g_free(filename);
3a97522e09ee [gaim-migrate @ 16589]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14045
diff changeset
466
14361
4d6014205744 [gaim-migrate @ 16989]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14354
diff changeset
467 gnt_init_colors();
13931
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
468
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
469 wbkgdset(stdscr, '\0' | COLOR_PAIR(GNT_COLOR_NORMAL));
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
470 refresh();
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
471
14379
d1bd558266b7 [gaim-migrate @ 17010]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14376
diff changeset
472 #ifdef ALL_MOUSE_EVENTS
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
473 if ((mouse_enabled = gnt_style_get_bool(GNT_STYLE_MOUSE, FALSE)))
14379
d1bd558266b7 [gaim-migrate @ 17010]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14376
diff changeset
474 mousemask(ALL_MOUSE_EVENTS | REPORT_MOUSE_POSITION, NULL);
14376
43b7dc7d2a52 [gaim-migrate @ 17007]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14372
diff changeset
475 #endif
14372
61f53bc11687 [gaim-migrate @ 17000]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14361
diff changeset
476
13969
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
477 wbkgdset(stdscr, '\0' | COLOR_PAIR(GNT_COLOR_NORMAL));
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
478 werase(stdscr);
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
479 wrefresh(stdscr);
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
480
14335
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
481 #ifdef SIGWINCH
17093
7ad0acaf60ab Do not process clicks on no widget.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16944
diff changeset
482 org_winch_handler = signal(SIGWINCH, sighandler);
14335
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
483 #endif
14443
b7b18eddd910 [gaim-migrate @ 17087]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14424
diff changeset
484 signal(SIGCHLD, sighandler);
16944
921fc0bccf3a Ask before exiting when ctrl+c is pressed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16837
diff changeset
485 signal(SIGINT, sighandler);
14799
4e25a23ab343 [gaim-migrate @ 17493]
Richard Nelson <wabz@pidgin.im>
parents: 14742
diff changeset
486 signal(SIGPIPE, SIG_IGN);
14335
43dec8ee3096 [gaim-migrate @ 16958]
Mark Schneider <queueram@gmail.com>
parents: 14318
diff changeset
487
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
488 g_type_init();
14397
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
489
e53755c4dcab [gaim-migrate @ 17031]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14387
diff changeset
490 init_wm();
15814
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
491
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
492 clipboard = g_object_new(GNT_TYPE_CLIPBOARD, NULL);
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
493 }
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
494
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
495 void gnt_main()
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
496 {
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
497 wm->loop = g_main_loop_new(NULL, FALSE);
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
498 g_main_loop_run(wm->loop);
13852
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
499 }
1d3ae9f34d42 [gaim-migrate @ 16308]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
500
13931
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
501 /*********************************
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
502 * Stuff for 'window management' *
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
503 *********************************/
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
504
18399
f4043513f791 Allow raising window only from an event-stack, otherwise set the urgent flag.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18262
diff changeset
505 void gnt_window_present(GntWidget *window)
f4043513f791 Allow raising window only from an event-stack, otherwise set the urgent flag.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18262
diff changeset
506 {
f4043513f791 Allow raising window only from an event-stack, otherwise set the urgent flag.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18262
diff changeset
507 if (wm->event_stack)
f4043513f791 Allow raising window only from an event-stack, otherwise set the urgent flag.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18262
diff changeset
508 gnt_wm_raise_window(wm, window);
f4043513f791 Allow raising window only from an event-stack, otherwise set the urgent flag.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18262
diff changeset
509 else
f4043513f791 Allow raising window only from an event-stack, otherwise set the urgent flag.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18262
diff changeset
510 gnt_widget_set_urgent(window);
18133
bc6e30a08d9a add gnt_window_present
Richard Nelson <wabz@pidgin.im>
parents: 18132
diff changeset
511 }
bc6e30a08d9a add gnt_window_present
Richard Nelson <wabz@pidgin.im>
parents: 18132
diff changeset
512
13931
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
513 void gnt_screen_occupy(GntWidget *widget)
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
514 {
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
515 gnt_wm_new_window(wm, widget);
13931
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
516 }
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
517
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
518 void gnt_screen_release(GntWidget *widget)
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
519 {
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
520 gnt_wm_window_close(wm, widget);
13931
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
521 }
a0a91e17f899 [gaim-migrate @ 16335]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13922
diff changeset
522
13940
26ed45b11483 [gaim-migrate @ 16355]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13931
diff changeset
523 void gnt_screen_update(GntWidget *widget)
26ed45b11483 [gaim-migrate @ 16355]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13931
diff changeset
524 {
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
525 gnt_wm_update_window(wm, widget);
13940
26ed45b11483 [gaim-migrate @ 16355]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13931
diff changeset
526 }
26ed45b11483 [gaim-migrate @ 16355]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13931
diff changeset
527
13958
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
528 gboolean gnt_widget_has_focus(GntWidget *widget)
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
529 {
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
530 GntWidget *w;
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
531 if (!widget)
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
532 return FALSE;
14675
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
533
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
534 if (GNT_IS_MENU(widget))
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
535 return TRUE;
13958
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
536
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
537 w = widget;
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
538
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
539 while (widget->parent)
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
540 widget = widget->parent;
13992
a6bbcc09c4eb [gaim-migrate @ 16457]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13989
diff changeset
541
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
542 if (widget == wm->_list.window)
13992
a6bbcc09c4eb [gaim-migrate @ 16457]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13989
diff changeset
543 return TRUE;
16519
9458657f5b99 Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents: 16356
diff changeset
544 if (wm->cws->ordered && wm->cws->ordered->data == widget) {
13969
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
545 if (GNT_IS_BOX(widget) &&
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
546 (GNT_BOX(widget)->active == w || widget == w))
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
547 return TRUE;
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
548 }
13958
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
549 return FALSE;
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
550 }
bd1c3bb3f33d [gaim-migrate @ 16381]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13955
diff changeset
551
13959
49d3a87c2679 [gaim-migrate @ 16382]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13958
diff changeset
552 void gnt_widget_set_urgent(GntWidget *widget)
49d3a87c2679 [gaim-migrate @ 16382]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13958
diff changeset
553 {
49d3a87c2679 [gaim-migrate @ 16382]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13958
diff changeset
554 while (widget->parent)
49d3a87c2679 [gaim-migrate @ 16382]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13958
diff changeset
555 widget = widget->parent;
49d3a87c2679 [gaim-migrate @ 16382]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13958
diff changeset
556
16519
9458657f5b99 Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents: 16356
diff changeset
557 if (wm->cws->ordered && wm->cws->ordered->data == widget)
13959
49d3a87c2679 [gaim-migrate @ 16382]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13958
diff changeset
558 return;
49d3a87c2679 [gaim-migrate @ 16382]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13958
diff changeset
559
49d3a87c2679 [gaim-migrate @ 16382]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13958
diff changeset
560 GNT_WIDGET_SET_FLAGS(widget, GNT_WIDGET_URGENT);
14452
a21351048a3a [gaim-migrate @ 17096]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14450
diff changeset
561
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
562 gnt_wm_update_window(wm, widget);
13959
49d3a87c2679 [gaim-migrate @ 16382]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13958
diff changeset
563 }
49d3a87c2679 [gaim-migrate @ 16382]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13958
diff changeset
564
13969
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
565 void gnt_quit()
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
566 {
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
567 g_hash_table_destroy(wm->nodes); /* XXX: */
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
568 update_panels();
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
569 doupdate();
14026
ad91ce0effe2 [gaim-migrate @ 16520]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14019
diff changeset
570 gnt_uninit_colors();
14072
4e64a4f18686 [gaim-migrate @ 16602]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14066
diff changeset
571 gnt_uninit_styles();
13969
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
572 endwin();
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
573 }
0541f389442e [gaim-migrate @ 16402]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13959
diff changeset
574
13989
9a647311c9ac [gaim-migrate @ 16447]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13981
diff changeset
575 gboolean gnt_ascii_only()
9a647311c9ac [gaim-migrate @ 16447]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13981
diff changeset
576 {
9a647311c9ac [gaim-migrate @ 16447]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13981
diff changeset
577 return ascii_only;
9a647311c9ac [gaim-migrate @ 16447]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13981
diff changeset
578 }
9a647311c9ac [gaim-migrate @ 16447]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13981
diff changeset
579
14005
198d1658b390 [gaim-migrate @ 16480]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13996
diff changeset
580 void gnt_screen_resize_widget(GntWidget *widget, int width, int height)
198d1658b390 [gaim-migrate @ 16480]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13996
diff changeset
581 {
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
582 gnt_wm_resize_window(wm, widget, width, height);
14005
198d1658b390 [gaim-migrate @ 16480]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13996
diff changeset
583 }
198d1658b390 [gaim-migrate @ 16480]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 13996
diff changeset
584
14201
d54dc208efe2 [gaim-migrate @ 16781]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14193
diff changeset
585 void gnt_screen_move_widget(GntWidget *widget, int x, int y)
d54dc208efe2 [gaim-migrate @ 16781]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14193
diff changeset
586 {
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
587 gnt_wm_move_window(wm, widget, x, y);
14201
d54dc208efe2 [gaim-migrate @ 16781]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14193
diff changeset
588 }
d54dc208efe2 [gaim-migrate @ 16781]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14193
diff changeset
589
14450
1ac2b6e98ef8 [gaim-migrate @ 17094]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14449
diff changeset
590 void gnt_screen_rename_widget(GntWidget *widget, const char *text)
1ac2b6e98ef8 [gaim-migrate @ 17094]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14449
diff changeset
591 {
1ac2b6e98ef8 [gaim-migrate @ 17094]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14449
diff changeset
592 gnt_box_set_title(GNT_BOX(widget), text);
1ac2b6e98ef8 [gaim-migrate @ 17094]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14449
diff changeset
593 gnt_widget_draw(widget);
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
594 gnt_wm_update_window(wm, widget);
14450
1ac2b6e98ef8 [gaim-migrate @ 17094]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14449
diff changeset
595 }
1ac2b6e98ef8 [gaim-migrate @ 17094]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14449
diff changeset
596
14467
359d9aad0f01 [gaim-migrate @ 17113]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14452
diff changeset
597 void gnt_register_action(const char *label, void (*callback)())
359d9aad0f01 [gaim-migrate @ 17113]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14452
diff changeset
598 {
359d9aad0f01 [gaim-migrate @ 17113]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14452
diff changeset
599 GntAction *action = g_new0(GntAction, 1);
359d9aad0f01 [gaim-migrate @ 17113]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14452
diff changeset
600 action->label = g_strdup(label);
359d9aad0f01 [gaim-migrate @ 17113]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14452
diff changeset
601 action->callback = callback;
359d9aad0f01 [gaim-migrate @ 17113]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14452
diff changeset
602
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
603 wm->acts = g_list_append(wm->acts, action);
14467
359d9aad0f01 [gaim-migrate @ 17113]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14452
diff changeset
604 }
359d9aad0f01 [gaim-migrate @ 17113]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14452
diff changeset
605
14675
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
606 static void
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
607 reset_menu(GntWidget *widget, gpointer null)
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
608 {
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
609 wm->menu = NULL;
14675
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
610 }
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
611
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
612 gboolean gnt_screen_menu_show(gpointer newmenu)
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
613 {
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
614 if (wm->menu) {
14675
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
615 /* For now, if a menu is being displayed, then another menu
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
616 * can NOT take over. */
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
617 return FALSE;
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
618 }
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
619
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
620 wm->menu = newmenu;
14968
2b1ed06a4773 [gaim-migrate @ 17678]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14962
diff changeset
621 GNT_WIDGET_UNSET_FLAGS(GNT_WIDGET(wm->menu), GNT_WIDGET_INVISIBLE);
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
622 gnt_widget_draw(GNT_WIDGET(wm->menu));
14675
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
623
14962
abfaa2e03ac7 [gaim-migrate @ 17672]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14943
diff changeset
624 g_signal_connect(G_OBJECT(wm->menu), "hide", G_CALLBACK(reset_menu), NULL);
16837
d3b8ba967fdc Fix context menu unusualness in the buddylist.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 16356
diff changeset
625 g_signal_connect(G_OBJECT(wm->menu), "destroy", G_CALLBACK(reset_menu), NULL);
14675
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
626
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
627 return TRUE;
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
628 }
be8af28d1980 [gaim-migrate @ 17341]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14606
diff changeset
629
15814
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
630 void gnt_set_clipboard_string(gchar *string)
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
631 {
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
632 gnt_clipboard_set_string(clipboard, string);
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
633 }
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
634
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
635 GntClipboard *gnt_get_clipboard()
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
636 {
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
637 return clipboard;
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
638 }
18599
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
639
15814
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
640 gchar *gnt_get_clipboard_string()
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
641 {
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
642 return gnt_clipboard_get_string(clipboard);
2db42c6a13fa Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
Richard Nelson <wabz@pidgin.im>
parents: 15485
diff changeset
643 }
18599
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
644
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
645 #if GLIB_CHECK_VERSION(2,4,0)
18778
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
646 typedef struct
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
647 {
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
648 void (*callback)(int status, gpointer data);
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
649 gpointer data;
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
650 } ChildProcess;
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
651
18599
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
652 static void
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
653 reap_child(GPid pid, gint status, gpointer data)
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
654 {
18778
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
655 ChildProcess *cp = data;
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
656 if (cp->callback) {
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
657 cp->callback(status, cp->data);
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
658 }
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
659 g_free(cp);
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
660 clean_pid();
18599
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
661 wm->mode = GNT_KP_MODE_NORMAL;
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
662 clear();
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
663 setup_io();
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
664 refresh_screen();
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
665 }
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
666 #endif
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
667
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
668 gboolean gnt_giveup_console(const char *wd, char **argv, char **envp,
18778
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
669 gint *stin, gint *stout, gint *sterr,
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
670 void (*callback)(int status, gpointer data), gpointer data)
18599
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
671 {
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
672 #if GLIB_CHECK_VERSION(2,4,0)
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
673 GPid pid = 0;
18778
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
674 ChildProcess *cp = NULL;
18599
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
675
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
676 if (!g_spawn_async_with_pipes(wd, argv, envp,
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
677 G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD,
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
678 (GSpawnChildSetupFunc)endwin, NULL,
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
679 &pid, stin, stout, sterr, NULL))
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
680 return FALSE;
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
681
18778
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
682 cp = g_new0(ChildProcess, 1);
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
683 cp->callback = callback;
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
684 cp->data = data;
18603
99a3588da5b1 The input was causing some weird issues. This fixes it.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18599
diff changeset
685 g_source_remove(channel_read_callback);
18599
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
686 wm->mode = GNT_KP_MODE_WAIT_ON_CHILD;
18778
7cf5400593b8 Allow having a callback after the child process terminates. Use the callback
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18623
diff changeset
687 g_child_watch_add(pid, reap_child, cp);
18599
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
688
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
689 return TRUE;
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
690 #else
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
691 return FALSE;
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
692 #endif
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
693 }
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
694
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
695 gboolean gnt_is_refugee()
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
696 {
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
697 #if GLIB_CHECK_VERSION(2,4,0)
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
698 return (wm && wm->mode == GNT_KP_MODE_WAIT_ON_CHILD);
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
699 #else
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
700 return FALSE;
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
701 #endif
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
702 }
7e31405a2cbb Allow executing another application (eg. PAGER) that will use the same
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18399
diff changeset
703

mercurial