7
|
1 /* vi:set ts=8 sts=4 sw=4:
|
|
2 *
|
|
3 * VIM - Vi IMproved by Bram Moolenaar
|
|
4 *
|
|
5 * Do ":help uganda" in Vim to read copying and usage conditions.
|
|
6 * Do ":help credits" in Vim to see a list of people who contributed.
|
|
7 * See README.txt for an overview of the Vim source code.
|
|
8 */
|
|
9
|
|
10 /*
|
|
11 * Porting to GTK+ was done by:
|
|
12 *
|
70
|
13 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
|
7
|
14 *
|
|
15 * With GREAT support and continuous encouragements by Andy Kahn and of
|
|
16 * course Bram Moolenaar!
|
|
17 *
|
|
18 * Support for GTK+ 2 was added by:
|
|
19 *
|
|
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
|
|
21 * Daniel Elstner <daniel.elstner@gmx.net>
|
|
22 */
|
|
23
|
|
24 #include "vim.h"
|
|
25 #ifdef FEAT_GUI_GNOME
|
|
26 /* Gnome redefines _() and N_(). Grrr... */
|
|
27 # ifdef _
|
|
28 # undef _
|
|
29 # endif
|
|
30 # ifdef N_
|
|
31 # undef N_
|
|
32 # endif
|
|
33 # ifdef textdomain
|
|
34 # undef textdomain
|
|
35 # endif
|
|
36 # ifdef bindtextdomain
|
|
37 # undef bindtextdomain
|
|
38 # endif
|
|
39 # if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS)
|
|
40 # define ENABLE_NLS /* so the texts in the dialog boxes are translated */
|
|
41 # endif
|
|
42 # include <gnome.h>
|
|
43 # include "version.h"
|
798
|
44 # ifdef HAVE_GTK2
|
|
45 /* missing prototype in bonobo-dock-item.h */
|
|
46 extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh);
|
|
47 # endif
|
7
|
48 #endif
|
|
49
|
|
50 #if !defined(FEAT_GUI_GTK) && defined(PROTO)
|
|
51 /* When generating prototypes we don't want syntax errors. */
|
|
52 # define GdkAtom int
|
|
53 # define GdkEventExpose int
|
|
54 # define GdkEventFocus int
|
|
55 # define GdkEventVisibility int
|
|
56 # define GdkEventProperty int
|
|
57 # define GtkContainer int
|
|
58 # define GtkTargetEntry int
|
|
59 # define GtkType int
|
|
60 # define GtkWidget int
|
|
61 # define gint int
|
|
62 # define gpointer int
|
|
63 # define guint int
|
|
64 # define GdkEventKey int
|
|
65 # define GdkEventSelection int
|
|
66 # define GtkSelectionData int
|
|
67 # define GdkEventMotion int
|
|
68 # define GdkEventButton int
|
|
69 # define GdkDragContext int
|
|
70 # define GdkEventConfigure int
|
|
71 # define GdkEventClient int
|
|
72 #else
|
|
73 # include <gdk/gdkkeysyms.h>
|
|
74 # include <gdk/gdk.h>
|
|
75 # ifdef WIN3264
|
|
76 # include <gdk/gdkwin32.h>
|
|
77 # else
|
|
78 # include <gdk/gdkx.h>
|
|
79 # endif
|
|
80
|
|
81 # include <gtk/gtk.h>
|
|
82 # include "gui_gtk_f.h"
|
|
83 #endif
|
|
84
|
|
85 #ifdef HAVE_X11_SUNKEYSYM_H
|
|
86 # include <X11/Sunkeysym.h>
|
|
87 #endif
|
|
88
|
|
89 /*
|
|
90 * Easy-to-use macro for multihead support.
|
|
91 */
|
|
92 #ifdef HAVE_GTK_MULTIHEAD
|
|
93 # define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \
|
|
94 gtk_widget_get_display(gui.mainwin), atom)
|
|
95 #else
|
|
96 # define GET_X_ATOM(atom) ((Atom)(atom))
|
|
97 #endif
|
|
98
|
|
99 /* Selection type distinguishers */
|
|
100 enum
|
|
101 {
|
|
102 TARGET_TYPE_NONE,
|
|
103 TARGET_UTF8_STRING,
|
|
104 TARGET_STRING,
|
|
105 TARGET_COMPOUND_TEXT,
|
|
106 TARGET_TEXT,
|
|
107 TARGET_TEXT_URI_LIST,
|
|
108 TARGET_TEXT_PLAIN,
|
|
109 TARGET_VIM,
|
|
110 TARGET_VIMENC
|
|
111 };
|
|
112
|
|
113 /*
|
|
114 * Table of selection targets supported by Vim.
|
|
115 * Note: Order matters, preferred types should come first.
|
|
116 */
|
|
117 static const GtkTargetEntry selection_targets[] =
|
|
118 {
|
|
119 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC},
|
|
120 {VIM_ATOM_NAME, 0, TARGET_VIM},
|
|
121 #ifdef FEAT_MBYTE
|
|
122 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
|
|
123 #endif
|
|
124 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT},
|
|
125 {"TEXT", 0, TARGET_TEXT},
|
|
126 {"STRING", 0, TARGET_STRING}
|
|
127 };
|
|
128 #define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0]))
|
|
129
|
|
130 #ifdef FEAT_DND
|
|
131 /*
|
|
132 * Table of DnD targets supported by Vim.
|
|
133 * Note: Order matters, preferred types should come first.
|
|
134 */
|
|
135 static const GtkTargetEntry dnd_targets[] =
|
|
136 {
|
|
137 {"text/uri-list", 0, TARGET_TEXT_URI_LIST},
|
|
138 # ifdef FEAT_MBYTE
|
|
139 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
|
|
140 # endif
|
|
141 {"STRING", 0, TARGET_STRING},
|
|
142 {"text/plain", 0, TARGET_TEXT_PLAIN}
|
|
143 };
|
|
144 # define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0]))
|
|
145 #endif
|
|
146
|
|
147
|
|
148 #ifdef HAVE_GTK2
|
|
149 /*
|
|
150 * "Monospace" is a standard font alias that should be present
|
|
151 * on all proper Pango/fontconfig installations.
|
|
152 */
|
|
153 # define DEFAULT_FONT "Monospace 10"
|
|
154
|
|
155 #else /* !HAVE_GTK2 */
|
|
156 /*
|
|
157 * This is the single only fixed width font in X11, which seems to be present
|
|
158 * on all servers and available in all the variants we need.
|
|
159 */
|
|
160 # define DEFAULT_FONT "-adobe-courier-medium-r-normal-*-14-*-*-*-m-*-*-*"
|
|
161
|
|
162 #endif /* !HAVE_GTK2 */
|
|
163
|
|
164 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
|
|
165 /*
|
|
166 * Atoms used to communicate save-yourself from the X11 session manager. There
|
|
167 * is no need to move them into the GUI struct, since they should be constant.
|
|
168 */
|
|
169 static GdkAtom wm_protocols_atom = GDK_NONE;
|
|
170 static GdkAtom save_yourself_atom = GDK_NONE;
|
|
171 #endif
|
|
172
|
|
173 /*
|
|
174 * Atoms used to control/reference X11 selections.
|
|
175 */
|
|
176 #ifdef FEAT_MBYTE
|
|
177 static GdkAtom utf8_string_atom = GDK_NONE;
|
|
178 #endif
|
|
179 #ifndef HAVE_GTK2
|
|
180 static GdkAtom compound_text_atom = GDK_NONE;
|
|
181 static GdkAtom text_atom = GDK_NONE;
|
|
182 #endif
|
|
183 static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */
|
|
184 #ifdef FEAT_MBYTE
|
|
185 static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */
|
|
186 #endif
|
|
187
|
|
188 /*
|
|
189 * Keycodes recognized by vim.
|
|
190 * NOTE: when changing this, the table in gui_x11.c probably needs the same
|
|
191 * change!
|
|
192 */
|
|
193 static struct special_key
|
|
194 {
|
|
195 guint key_sym;
|
|
196 char_u code0;
|
|
197 char_u code1;
|
|
198 }
|
|
199 const special_keys[] =
|
|
200 {
|
|
201 {GDK_Up, 'k', 'u'},
|
|
202 {GDK_Down, 'k', 'd'},
|
|
203 {GDK_Left, 'k', 'l'},
|
|
204 {GDK_Right, 'k', 'r'},
|
|
205 {GDK_F1, 'k', '1'},
|
|
206 {GDK_F2, 'k', '2'},
|
|
207 {GDK_F3, 'k', '3'},
|
|
208 {GDK_F4, 'k', '4'},
|
|
209 {GDK_F5, 'k', '5'},
|
|
210 {GDK_F6, 'k', '6'},
|
|
211 {GDK_F7, 'k', '7'},
|
|
212 {GDK_F8, 'k', '8'},
|
|
213 {GDK_F9, 'k', '9'},
|
|
214 {GDK_F10, 'k', ';'},
|
|
215 {GDK_F11, 'F', '1'},
|
|
216 {GDK_F12, 'F', '2'},
|
|
217 {GDK_F13, 'F', '3'},
|
|
218 {GDK_F14, 'F', '4'},
|
|
219 {GDK_F15, 'F', '5'},
|
|
220 {GDK_F16, 'F', '6'},
|
|
221 {GDK_F17, 'F', '7'},
|
|
222 {GDK_F18, 'F', '8'},
|
|
223 {GDK_F19, 'F', '9'},
|
|
224 {GDK_F20, 'F', 'A'},
|
|
225 {GDK_F21, 'F', 'B'},
|
|
226 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */
|
|
227 {GDK_F22, 'F', 'C'},
|
|
228 {GDK_F23, 'F', 'D'},
|
|
229 {GDK_F24, 'F', 'E'},
|
|
230 {GDK_F25, 'F', 'F'},
|
|
231 {GDK_F26, 'F', 'G'},
|
|
232 {GDK_F27, 'F', 'H'},
|
|
233 {GDK_F28, 'F', 'I'},
|
|
234 {GDK_F29, 'F', 'J'},
|
|
235 {GDK_F30, 'F', 'K'},
|
|
236 {GDK_F31, 'F', 'L'},
|
|
237 {GDK_F32, 'F', 'M'},
|
|
238 {GDK_F33, 'F', 'N'},
|
|
239 {GDK_F34, 'F', 'O'},
|
|
240 {GDK_F35, 'F', 'P'},
|
|
241 #ifdef SunXK_F36
|
|
242 {SunXK_F36, 'F', 'Q'},
|
|
243 {SunXK_F37, 'F', 'R'},
|
|
244 #endif
|
|
245 {GDK_Help, '%', '1'},
|
|
246 {GDK_Undo, '&', '8'},
|
|
247 {GDK_BackSpace, 'k', 'b'},
|
|
248 {GDK_Insert, 'k', 'I'},
|
|
249 {GDK_Delete, 'k', 'D'},
|
|
250 {GDK_3270_BackTab, 'k', 'B'},
|
|
251 {GDK_Clear, 'k', 'C'},
|
|
252 {GDK_Home, 'k', 'h'},
|
|
253 {GDK_End, '@', '7'},
|
|
254 {GDK_Prior, 'k', 'P'},
|
|
255 {GDK_Next, 'k', 'N'},
|
|
256 {GDK_Print, '%', '9'},
|
|
257 /* Keypad keys: */
|
|
258 {GDK_KP_Left, 'k', 'l'},
|
|
259 {GDK_KP_Right, 'k', 'r'},
|
|
260 {GDK_KP_Up, 'k', 'u'},
|
|
261 {GDK_KP_Down, 'k', 'd'},
|
|
262 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
|
|
263 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
|
|
264 {GDK_KP_Home, 'K', '1'},
|
|
265 {GDK_KP_End, 'K', '4'},
|
|
266 {GDK_KP_Prior, 'K', '3'}, /* page up */
|
|
267 {GDK_KP_Next, 'K', '5'}, /* page down */
|
|
268
|
|
269 {GDK_KP_Add, 'K', '6'},
|
|
270 {GDK_KP_Subtract, 'K', '7'},
|
|
271 {GDK_KP_Divide, 'K', '8'},
|
|
272 {GDK_KP_Multiply, 'K', '9'},
|
|
273 {GDK_KP_Enter, 'K', 'A'},
|
|
274 {GDK_KP_Decimal, 'K', 'B'},
|
|
275
|
|
276 {GDK_KP_0, 'K', 'C'},
|
|
277 {GDK_KP_1, 'K', 'D'},
|
|
278 {GDK_KP_2, 'K', 'E'},
|
|
279 {GDK_KP_3, 'K', 'F'},
|
|
280 {GDK_KP_4, 'K', 'G'},
|
|
281 {GDK_KP_5, 'K', 'H'},
|
|
282 {GDK_KP_6, 'K', 'I'},
|
|
283 {GDK_KP_7, 'K', 'J'},
|
|
284 {GDK_KP_8, 'K', 'K'},
|
|
285 {GDK_KP_9, 'K', 'L'},
|
|
286
|
|
287 /* End of list marker: */
|
|
288 {0, 0, 0}
|
|
289 };
|
|
290
|
|
291 /*
|
|
292 * Flags for command line options table below.
|
|
293 */
|
|
294 #define ARG_FONT 1
|
|
295 #define ARG_GEOMETRY 2
|
|
296 #define ARG_REVERSE 3
|
|
297 #define ARG_NOREVERSE 4
|
|
298 #define ARG_BACKGROUND 5
|
|
299 #define ARG_FOREGROUND 6
|
|
300 #define ARG_ICONIC 7
|
|
301 #define ARG_ROLE 8
|
|
302 #define ARG_NETBEANS 9
|
|
303 #define ARG_XRM 10 /* ignored */
|
|
304 #define ARG_MENUFONT 11 /* ignored */
|
|
305 #define ARG_INDEX_MASK 0x00ff
|
|
306 #define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */
|
|
307 #define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */
|
|
308 #define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */
|
|
309 #define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */
|
|
310 #define ARG_KEEP 0x1000 /* don't remove argument from argv[] */
|
|
311
|
|
312 /*
|
|
313 * This table holds all the X GUI command line options allowed. This includes
|
|
314 * the standard ones so that we can skip them when Vim is started without the
|
|
315 * GUI (but the GUI might start up later).
|
|
316 *
|
|
317 * When changing this, also update doc/gui_x11.txt and the usage message!!!
|
|
318 */
|
|
319 typedef struct
|
|
320 {
|
|
321 const char *name;
|
|
322 unsigned int flags;
|
|
323 }
|
|
324 cmdline_option_T;
|
|
325
|
|
326 static const cmdline_option_T cmdline_options[] =
|
|
327 {
|
|
328 /* We handle these options ourselves */
|
|
329 {"-fn", ARG_FONT|ARG_HAS_VALUE},
|
|
330 {"-font", ARG_FONT|ARG_HAS_VALUE},
|
|
331 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE},
|
|
332 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE},
|
|
333 {"-rv", ARG_REVERSE},
|
|
334 {"-reverse", ARG_REVERSE},
|
|
335 {"+rv", ARG_NOREVERSE},
|
|
336 {"+reverse", ARG_NOREVERSE},
|
|
337 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE},
|
|
338 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE},
|
|
339 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE},
|
|
340 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE},
|
|
341 {"-iconic", ARG_ICONIC},
|
|
342 #ifdef HAVE_GTK2
|
|
343 {"--role", ARG_ROLE|ARG_HAS_VALUE},
|
|
344 #endif
|
|
345 #ifdef FEAT_NETBEANS_INTG
|
|
346 {"-nb", ARG_NETBEANS}, /* non-standard value format */
|
|
347 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */
|
|
348 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
|
|
349 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
|
|
350 #endif
|
|
351 #if 0 /* not implemented; these arguments don't make sense for GTK+ */
|
|
352 {"-boldfont", ARG_HAS_VALUE},
|
|
353 {"-italicfont", ARG_HAS_VALUE},
|
|
354 {"-bw", ARG_HAS_VALUE},
|
|
355 {"-borderwidth", ARG_HAS_VALUE},
|
|
356 {"-sw", ARG_HAS_VALUE},
|
|
357 {"-scrollbarwidth", ARG_HAS_VALUE},
|
|
358 #endif
|
|
359 /* Arguments handled by GTK (and GNOME) internally. */
|
|
360 {"--g-fatal-warnings", ARG_FOR_GTK},
|
|
361 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
362 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
363 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
364 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
365 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
366 {"--sync", ARG_FOR_GTK},
|
|
367 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
|
|
368 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
|
|
369 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
|
|
370 #ifdef HAVE_GTK2
|
|
371 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
372 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
373 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
374 #else /* these don't seem to exist anymore */
|
|
375 {"--no-xshm", ARG_FOR_GTK},
|
|
376 {"--xim-preedit", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
377 {"--xim-status", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
378 {"--gxid_host", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
379 {"--gxid_port", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
380 #endif
|
|
381 #ifdef FEAT_GUI_GNOME
|
|
382 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
383 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
384 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
385 {"--sm-disable", ARG_FOR_GTK},
|
|
386 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
387 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
388 {"--oaf-private", ARG_FOR_GTK},
|
|
389 {"--enable-sound", ARG_FOR_GTK},
|
|
390 {"--disable-sound", ARG_FOR_GTK},
|
|
391 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE},
|
|
392 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI},
|
|
393 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP},
|
|
394 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI},
|
|
395 # if 0 /* conflicts with Vim's own --version argument */
|
|
396 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI},
|
|
397 # endif
|
|
398 {"--disable-crash-dialog", ARG_FOR_GTK},
|
|
399 #endif
|
|
400 {NULL, 0}
|
|
401 };
|
|
402
|
|
403 static int gui_argc = 0;
|
|
404 static char **gui_argv = NULL;
|
|
405
|
|
406 #ifdef HAVE_GTK2
|
|
407 static const char *role_argument = NULL;
|
|
408 #endif
|
|
409 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
|
|
410 static const char *restart_command = NULL;
|
|
411 #endif
|
|
412 static int found_iconic_arg = FALSE;
|
|
413
|
|
414 #ifdef FEAT_GUI_GNOME
|
|
415 /*
|
|
416 * Can't use Gnome if --socketid given
|
|
417 */
|
|
418 static int using_gnome = 0;
|
|
419 #else
|
|
420 # define using_gnome 0
|
|
421 #endif
|
|
422
|
|
423 /*
|
|
424 * Parse the GUI related command-line arguments. Any arguments used are
|
|
425 * deleted from argv, and *argc is decremented accordingly. This is called
|
|
426 * when vim is started, whether or not the GUI has been started.
|
|
427 */
|
|
428 void
|
|
429 gui_mch_prepare(int *argc, char **argv)
|
|
430 {
|
|
431 const cmdline_option_T *option;
|
|
432 int i = 0;
|
|
433 int len = 0;
|
|
434
|
|
435 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
|
|
436 /*
|
|
437 * Determine the command used to invoke Vim, to be passed as restart
|
|
438 * command to the session manager. If argv[0] contains any directory
|
|
439 * components try building an absolute path, otherwise leave it as is.
|
|
440 */
|
|
441 restart_command = argv[0];
|
|
442
|
|
443 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
|
|
444 {
|
|
445 char_u buf[MAXPATHL];
|
|
446
|
|
447 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
|
|
448 /* Tiny leak; doesn't matter, and usually we don't even get here */
|
|
449 restart_command = (char *)vim_strsave(buf);
|
|
450 }
|
|
451 #endif
|
|
452
|
|
453 /*
|
|
454 * Move all the entries in argv which are relevant to GTK+ and GNOME
|
|
455 * into gui_argv. Freed later in gui_mch_init().
|
|
456 */
|
|
457 gui_argc = 0;
|
|
458 gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *)));
|
|
459
|
|
460 g_return_if_fail(gui_argv != NULL);
|
|
461
|
|
462 gui_argv[gui_argc++] = argv[i++];
|
|
463
|
|
464 while (i < *argc)
|
|
465 {
|
|
466 /* Don't waste CPU cycles on non-option arguments. */
|
|
467 if (argv[i][0] != '-' && argv[i][0] != '+')
|
|
468 {
|
|
469 ++i;
|
|
470 continue;
|
|
471 }
|
|
472
|
|
473 /* Look for argv[i] in cmdline_options[] table. */
|
|
474 for (option = &cmdline_options[0]; option->name != NULL; ++option)
|
|
475 {
|
|
476 len = strlen(option->name);
|
|
477
|
|
478 if (strncmp(argv[i], option->name, len) == 0)
|
|
479 {
|
|
480 if (argv[i][len] == '\0')
|
|
481 break;
|
|
482 /* allow --foo=bar style */
|
|
483 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
|
|
484 break;
|
|
485 #ifdef FEAT_NETBEANS_INTG
|
|
486 /* darn, -nb has non-standard syntax */
|
|
487 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
|
|
488 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
|
|
489 break;
|
|
490 #endif
|
|
491 }
|
|
492 else if ((option->flags & ARG_COMPAT_LONG)
|
|
493 && strcmp(argv[i], option->name + 1) == 0)
|
|
494 {
|
|
495 /* Replace the standard X arguments "-name" and "-display"
|
|
496 * with their GNU-style long option counterparts. */
|
|
497 argv[i] = (char *)option->name;
|
|
498 break;
|
|
499 }
|
|
500 }
|
|
501 if (option->name == NULL) /* no match */
|
|
502 {
|
|
503 ++i;
|
|
504 continue;
|
|
505 }
|
|
506
|
|
507 if (option->flags & ARG_FOR_GTK)
|
|
508 {
|
|
509 /* Move the argument into gui_argv, which
|
|
510 * will later be passed to gtk_init_check() */
|
|
511 gui_argv[gui_argc++] = argv[i];
|
|
512 }
|
|
513 else
|
|
514 {
|
|
515 char *value = NULL;
|
|
516
|
|
517 /* Extract the option's value if there is one.
|
|
518 * Accept both "--foo bar" and "--foo=bar" style. */
|
|
519 if (option->flags & ARG_HAS_VALUE)
|
|
520 {
|
|
521 if (argv[i][len] == '=')
|
|
522 value = &argv[i][len + 1];
|
|
523 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
|
|
524 value = argv[i + 1];
|
|
525 }
|
|
526
|
|
527 /* Check for options handled by Vim itself */
|
|
528 switch (option->flags & ARG_INDEX_MASK)
|
|
529 {
|
|
530 case ARG_REVERSE:
|
|
531 found_reverse_arg = TRUE;
|
|
532 break;
|
|
533 case ARG_NOREVERSE:
|
|
534 found_reverse_arg = FALSE;
|
|
535 break;
|
|
536 case ARG_FONT:
|
|
537 font_argument = value;
|
|
538 break;
|
|
539 case ARG_GEOMETRY:
|
|
540 if (value != NULL)
|
|
541 gui.geom = vim_strsave((char_u *)value);
|
|
542 break;
|
|
543 case ARG_BACKGROUND:
|
|
544 background_argument = value;
|
|
545 break;
|
|
546 case ARG_FOREGROUND:
|
|
547 foreground_argument = value;
|
|
548 break;
|
|
549 case ARG_ICONIC:
|
|
550 found_iconic_arg = TRUE;
|
|
551 break;
|
|
552 #ifdef HAVE_GTK2
|
|
553 case ARG_ROLE:
|
|
554 role_argument = value; /* used later in gui_mch_open() */
|
|
555 break;
|
|
556 #endif
|
|
557 #ifdef FEAT_NETBEANS_INTG
|
|
558 case ARG_NETBEANS:
|
|
559 ++usingNetbeans;
|
|
560 gui.dofork = FALSE; /* don't fork() when starting GUI */
|
|
561 netbeansArg = argv[i];
|
|
562 break;
|
|
563 #endif
|
|
564 default:
|
|
565 break;
|
|
566 }
|
|
567 }
|
|
568
|
|
569 /* These arguments make gnome_program_init() print a message and exit.
|
|
570 * Must start the GUI for this, otherwise ":gui" will exit later! */
|
|
571 if (option->flags & ARG_NEEDS_GUI)
|
|
572 gui.starting = TRUE;
|
|
573
|
|
574 if (option->flags & ARG_KEEP)
|
|
575 ++i;
|
|
576 else
|
|
577 {
|
|
578 /* Remove the flag from the argument vector. */
|
|
579 if (--*argc > i)
|
|
580 {
|
|
581 int n_strip = 1;
|
|
582
|
|
583 /* Move the argument's value as well, if there is one. */
|
|
584 if ((option->flags & ARG_HAS_VALUE)
|
|
585 && argv[i][len] != '='
|
|
586 && strcmp(argv[i + 1], "--") != 0)
|
|
587 {
|
|
588 ++n_strip;
|
|
589 --*argc;
|
|
590 if (option->flags & ARG_FOR_GTK)
|
|
591 gui_argv[gui_argc++] = argv[i + 1];
|
|
592 }
|
|
593
|
|
594 if (*argc > i)
|
|
595 mch_memmove(&argv[i], &argv[i + n_strip],
|
|
596 (*argc - i) * sizeof(char *));
|
|
597 }
|
|
598 argv[*argc] = NULL;
|
|
599 }
|
|
600 }
|
|
601
|
|
602 gui_argv[gui_argc] = NULL;
|
|
603 }
|
|
604
|
359
|
605 #if defined(EXITFREE) || defined(PROTO)
|
|
606 void
|
|
607 gui_mch_free_all()
|
|
608 {
|
|
609 vim_free(gui_argv);
|
|
610 }
|
|
611 #endif
|
|
612
|
7
|
613 /*
|
|
614 * This should be maybe completely removed.
|
|
615 * Doesn't seem possible, since check_copy_area() relies on
|
|
616 * this information. --danielk
|
|
617 */
|
|
618 /*ARGSUSED*/
|
|
619 static gint
|
|
620 visibility_event(GtkWidget *widget, GdkEventVisibility *event, gpointer data)
|
|
621 {
|
|
622 gui.visibility = event->state;
|
|
623 /*
|
|
624 * When we do an gdk_window_copy_area(), and the window is partially
|
|
625 * obscured, we want to receive an event to tell us whether it worked
|
|
626 * or not.
|
|
627 */
|
|
628 if (gui.text_gc != NULL)
|
|
629 gdk_gc_set_exposures(gui.text_gc,
|
|
630 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
|
|
631 return FALSE;
|
|
632 }
|
|
633
|
|
634 /*
|
|
635 * Redraw the corresponding portions of the screen.
|
|
636 */
|
|
637 /*ARGSUSED*/
|
|
638 static gint
|
|
639 expose_event(GtkWidget *widget, GdkEventExpose *event, gpointer data)
|
|
640 {
|
|
641 /* Skip this when the GUI isn't set up yet, will redraw later. */
|
|
642 if (gui.starting)
|
|
643 return FALSE;
|
|
644
|
|
645 out_flush(); /* make sure all output has been processed */
|
|
646 gui_redraw(event->area.x, event->area.y,
|
|
647 event->area.width, event->area.height);
|
|
648
|
|
649 /* Clear the border areas if needed */
|
|
650 if (event->area.x < FILL_X(0))
|
|
651 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
|
|
652 if (event->area.y < FILL_Y(0))
|
|
653 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
|
|
654 if (event->area.x > FILL_X(Columns))
|
|
655 gdk_window_clear_area(gui.drawarea->window,
|
|
656 FILL_X((int)Columns), 0, 0, 0);
|
|
657 if (event->area.y > FILL_Y(Rows))
|
|
658 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
|
|
659
|
|
660 return FALSE;
|
|
661 }
|
|
662
|
|
663 #ifdef FEAT_CLIENTSERVER
|
|
664 /*
|
|
665 * Handle changes to the "Comm" property
|
|
666 */
|
|
667 /*ARGSUSED2*/
|
|
668 static gint
|
|
669 property_event(GtkWidget *widget, GdkEventProperty *event, gpointer data)
|
|
670 {
|
|
671 if (event->type == GDK_PROPERTY_NOTIFY
|
|
672 && event->state == (int)GDK_PROPERTY_NEW_VALUE
|
|
673 && GDK_WINDOW_XWINDOW(event->window) == commWindow
|
|
674 && GET_X_ATOM(event->atom) == commProperty)
|
|
675 {
|
|
676 XEvent xev;
|
|
677
|
|
678 /* Translate to XLib */
|
|
679 xev.xproperty.type = PropertyNotify;
|
|
680 xev.xproperty.atom = commProperty;
|
|
681 xev.xproperty.window = commWindow;
|
|
682 xev.xproperty.state = PropertyNewValue;
|
|
683 serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev);
|
|
684
|
|
685 if (gtk_main_level() > 0)
|
|
686 gtk_main_quit();
|
|
687 }
|
|
688 return FALSE;
|
|
689 }
|
|
690 #endif
|
|
691
|
|
692
|
|
693 /****************************************************************************
|
|
694 * Focus handlers:
|
|
695 */
|
|
696
|
|
697
|
|
698 /*
|
|
699 * This is a simple state machine:
|
|
700 * BLINK_NONE not blinking at all
|
|
701 * BLINK_OFF blinking, cursor is not shown
|
|
702 * BLINK_ON blinking, cursor is shown
|
|
703 */
|
|
704
|
|
705 #define BLINK_NONE 0
|
|
706 #define BLINK_OFF 1
|
|
707 #define BLINK_ON 2
|
|
708
|
|
709 static int blink_state = BLINK_NONE;
|
|
710 static long_u blink_waittime = 700;
|
|
711 static long_u blink_ontime = 400;
|
|
712 static long_u blink_offtime = 250;
|
|
713 static guint blink_timer = 0;
|
|
714
|
|
715 void
|
|
716 gui_mch_set_blinking(long waittime, long on, long off)
|
|
717 {
|
|
718 blink_waittime = waittime;
|
|
719 blink_ontime = on;
|
|
720 blink_offtime = off;
|
|
721 }
|
|
722
|
|
723 /*
|
|
724 * Stop the cursor blinking. Show the cursor if it wasn't shown.
|
|
725 */
|
|
726 void
|
|
727 gui_mch_stop_blink(void)
|
|
728 {
|
|
729 if (blink_timer)
|
|
730 {
|
|
731 gtk_timeout_remove(blink_timer);
|
|
732 blink_timer = 0;
|
|
733 }
|
|
734 if (blink_state == BLINK_OFF)
|
|
735 gui_update_cursor(TRUE, FALSE);
|
|
736 blink_state = BLINK_NONE;
|
|
737 }
|
|
738
|
|
739 /*ARGSUSED*/
|
|
740 static gint
|
|
741 blink_cb(gpointer data)
|
|
742 {
|
|
743 if (blink_state == BLINK_ON)
|
|
744 {
|
|
745 gui_undraw_cursor();
|
|
746 blink_state = BLINK_OFF;
|
|
747 blink_timer = gtk_timeout_add((guint32)blink_offtime,
|
|
748 (GtkFunction) blink_cb, NULL);
|
|
749 }
|
|
750 else
|
|
751 {
|
|
752 gui_update_cursor(TRUE, FALSE);
|
|
753 blink_state = BLINK_ON;
|
|
754 blink_timer = gtk_timeout_add((guint32)blink_ontime,
|
|
755 (GtkFunction) blink_cb, NULL);
|
|
756 }
|
|
757
|
|
758 return FALSE; /* don't happen again */
|
|
759 }
|
|
760
|
|
761 /*
|
|
762 * Start the cursor blinking. If it was already blinking, this restarts the
|
|
763 * waiting time and shows the cursor.
|
|
764 */
|
|
765 void
|
|
766 gui_mch_start_blink(void)
|
|
767 {
|
|
768 if (blink_timer)
|
|
769 gtk_timeout_remove(blink_timer);
|
|
770 /* Only switch blinking on if none of the times is zero */
|
|
771 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
|
|
772 {
|
|
773 blink_timer = gtk_timeout_add((guint32)blink_waittime,
|
|
774 (GtkFunction) blink_cb, NULL);
|
|
775 blink_state = BLINK_ON;
|
|
776 gui_update_cursor(TRUE, FALSE);
|
|
777 }
|
|
778 }
|
|
779
|
|
780 /*ARGSUSED*/
|
|
781 static gint
|
|
782 enter_notify_event(GtkWidget *widget, GdkEventCrossing *event, gpointer data)
|
|
783 {
|
|
784 if (blink_state == BLINK_NONE)
|
|
785 gui_mch_start_blink();
|
|
786
|
|
787 /* make sure keyboard input goes there */
|
|
788 if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea))
|
|
789 gtk_widget_grab_focus(gui.drawarea);
|
|
790
|
|
791 return FALSE;
|
|
792 }
|
|
793
|
|
794 /*ARGSUSED*/
|
|
795 static gint
|
|
796 leave_notify_event(GtkWidget *widget, GdkEventCrossing *event, gpointer data)
|
|
797 {
|
|
798 if (blink_state != BLINK_NONE)
|
|
799 gui_mch_stop_blink();
|
|
800
|
|
801 return FALSE;
|
|
802 }
|
|
803
|
|
804 /*ARGSUSED*/
|
|
805 static gint
|
|
806 focus_in_event(GtkWidget *widget, GdkEventFocus *event, gpointer data)
|
|
807 {
|
|
808 gui_focus_change(TRUE);
|
|
809
|
|
810 if (blink_state == BLINK_NONE)
|
|
811 gui_mch_start_blink();
|
|
812
|
791
|
813 /* make sure keyboard input goes to the draw area (if this is focus for a window) */
|
|
814 if (widget != gui.drawarea)
|
|
815 gtk_widget_grab_focus(gui.drawarea);
|
7
|
816
|
|
817 return TRUE;
|
|
818 }
|
|
819
|
|
820 /*ARGSUSED*/
|
|
821 static gint
|
|
822 focus_out_event(GtkWidget *widget, GdkEventFocus *event, gpointer data)
|
|
823 {
|
|
824 gui_focus_change(FALSE);
|
|
825
|
|
826 if (blink_state != BLINK_NONE)
|
|
827 gui_mch_stop_blink();
|
|
828
|
|
829 return TRUE;
|
|
830 }
|
|
831
|
|
832
|
|
833 #ifdef HAVE_GTK2
|
|
834 /*
|
|
835 * Translate a GDK key value to UTF-8 independently of the current locale.
|
|
836 * The output is written to string, which must have room for at least 6 bytes
|
|
837 * plus the NUL terminator. Returns the length in bytes.
|
|
838 *
|
|
839 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
|
|
840 * of GdkEventKey::string instead. But event->string is evil; see here why:
|
|
841 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
|
|
842 */
|
|
843 static int
|
|
844 keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
|
|
845 {
|
|
846 int len;
|
|
847 guint32 uc;
|
|
848
|
|
849 uc = gdk_keyval_to_unicode(keyval);
|
|
850 if (uc != 0)
|
|
851 {
|
|
852 /* Check for CTRL-foo */
|
|
853 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
|
|
854 {
|
|
855 /* These mappings look arbitrary at the first glance, but in fact
|
|
856 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
|
|
857 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
|
|
858 * more sense and is consistent with usual terminal behaviour). */
|
|
859 if (uc >= '@')
|
|
860 string[0] = uc & 0x1F;
|
|
861 else if (uc == '2')
|
|
862 string[0] = NUL;
|
|
863 else if (uc >= '3' && uc <= '7')
|
|
864 string[0] = uc ^ 0x28;
|
|
865 else if (uc == '8')
|
|
866 string[0] = BS;
|
|
867 else if (uc == '?')
|
|
868 string[0] = DEL;
|
|
869 else
|
|
870 string[0] = uc;
|
|
871 len = 1;
|
|
872 }
|
|
873 else
|
|
874 {
|
|
875 /* Translate a normal key to UTF-8. This doesn't work for dead
|
|
876 * keys of course, you _have_ to use an input method for that. */
|
|
877 len = utf_char2bytes((int)uc, string);
|
|
878 }
|
|
879 }
|
|
880 else
|
|
881 {
|
|
882 /* Translate keys which are represented by ASCII control codes in Vim.
|
|
883 * There are only a few of those; most control keys are translated to
|
|
884 * special terminal-like control sequences. */
|
|
885 len = 1;
|
|
886 switch (keyval)
|
|
887 {
|
|
888 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
|
|
889 string[0] = TAB;
|
|
890 break;
|
|
891 case GDK_Linefeed:
|
|
892 string[0] = NL;
|
|
893 break;
|
|
894 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
|
|
895 string[0] = CAR;
|
|
896 break;
|
|
897 case GDK_Escape:
|
|
898 string[0] = ESC;
|
|
899 break;
|
|
900 default:
|
|
901 len = 0;
|
|
902 break;
|
|
903 }
|
|
904 }
|
|
905 string[len] = NUL;
|
|
906
|
|
907 return len;
|
|
908 }
|
|
909 #endif /* HAVE_GTK2 */
|
|
910
|
179
|
911 static int
|
|
912 modifiers_gdk2vim(guint state)
|
|
913 {
|
|
914 int modifiers = 0;
|
|
915
|
|
916 if (state & GDK_SHIFT_MASK)
|
|
917 modifiers |= MOD_MASK_SHIFT;
|
|
918 if (state & GDK_CONTROL_MASK)
|
|
919 modifiers |= MOD_MASK_CTRL;
|
|
920 if (state & GDK_MOD1_MASK)
|
|
921 modifiers |= MOD_MASK_ALT;
|
|
922 if (state & GDK_MOD4_MASK)
|
|
923 modifiers |= MOD_MASK_META;
|
|
924
|
|
925 return modifiers;
|
|
926 }
|
|
927
|
|
928 static int
|
|
929 modifiers_gdk2mouse(guint state)
|
|
930 {
|
|
931 int modifiers = 0;
|
|
932
|
|
933 if (state & GDK_SHIFT_MASK)
|
|
934 modifiers |= MOUSE_SHIFT;
|
|
935 if (state & GDK_CONTROL_MASK)
|
|
936 modifiers |= MOUSE_CTRL;
|
|
937 if (state & GDK_MOD1_MASK)
|
|
938 modifiers |= MOUSE_ALT;
|
|
939
|
|
940 return modifiers;
|
|
941 }
|
|
942
|
7
|
943 /*
|
|
944 * Main keyboard handler:
|
|
945 */
|
|
946 /*ARGSUSED*/
|
|
947 static gint
|
|
948 key_press_event(GtkWidget *widget, GdkEventKey *event, gpointer data)
|
|
949 {
|
|
950 #ifdef HAVE_GTK2
|
|
951 /* 256 bytes is way over the top, but for safety let's reduce it only
|
|
952 * for GTK+ 2 where we know for sure how large the string might get.
|
|
953 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
|
|
954 char_u string[32], string2[32];
|
|
955 #else
|
|
956 char_u string[256], string2[256];
|
|
957 #endif
|
|
958 guint key_sym;
|
|
959 int len;
|
|
960 int i;
|
|
961 int modifiers;
|
|
962 int key;
|
|
963 guint state;
|
|
964 char_u *s, *d;
|
|
965
|
|
966 key_sym = event->keyval;
|
|
967 state = event->state;
|
|
968 #ifndef HAVE_GTK2 /* deprecated */
|
|
969 len = event->length;
|
|
970 g_assert(len <= sizeof(string));
|
|
971 #endif
|
|
972
|
|
973 #ifndef HAVE_GTK2
|
|
974 /*
|
|
975 * It appears as if we always want to consume a key-press (there currently
|
|
976 * aren't any 'return FALSE's), so we always do this: when running in a
|
|
977 * GtkPlug and not a window, we must prevent emission of the key_press
|
|
978 * EVENT from continuing (which is 'beyond' the level of stopping mere
|
|
979 * signals by returning FALSE), otherwise things like tab/cursor-keys are
|
|
980 * processed by the GtkPlug default handler, which moves input focus away
|
|
981 * from us!
|
|
982 * Note: This should no longer be necessary with GTK+ 2.
|
|
983 */
|
|
984 if (gtk_socket_id != 0)
|
|
985 gtk_signal_emit_stop_by_name(GTK_OBJECT(widget), "key_press_event");
|
|
986 #endif
|
|
987
|
|
988 #ifdef FEAT_XIM
|
|
989 if (xim_queue_key_press_event(event, TRUE))
|
|
990 return TRUE;
|
|
991 #endif
|
|
992
|
|
993 #ifdef FEAT_HANGULIN
|
|
994 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
|
|
995 {
|
|
996 hangul_input_state_toggle();
|
|
997 return TRUE;
|
|
998 }
|
|
999 #endif
|
|
1000
|
|
1001 #ifdef SunXK_F36
|
|
1002 /*
|
|
1003 * These keys have bogus lookup strings, and trapping them here is
|
|
1004 * easier than trying to XRebindKeysym() on them with every possible
|
|
1005 * combination of modifiers.
|
|
1006 */
|
|
1007 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
|
|
1008 len = 0;
|
|
1009 else
|
|
1010 #endif
|
|
1011 {
|
|
1012 #ifdef HAVE_GTK2
|
|
1013 len = keyval_to_string(key_sym, state, string2);
|
|
1014
|
|
1015 /* Careful: convert_input() doesn't handle the NUL character.
|
|
1016 * No need to convert pure ASCII anyway, thus the len > 1 check. */
|
|
1017 if (len > 1 && input_conv.vc_type != CONV_NONE)
|
|
1018 len = convert_input(string2, len, sizeof(string2));
|
|
1019
|
|
1020 s = string2;
|
|
1021 #else
|
|
1022 # ifdef FEAT_MBYTE
|
|
1023 if (input_conv.vc_type != CONV_NONE)
|
|
1024 {
|
|
1025 mch_memmove(string2, event->string, len);
|
|
1026 len = convert_input(string2, len, sizeof(string2));
|
|
1027 s = string2;
|
|
1028 }
|
|
1029 else
|
|
1030 # endif
|
|
1031 s = (char_u *)event->string;
|
|
1032 #endif
|
|
1033
|
|
1034 d = string;
|
|
1035 for (i = 0; i < len; ++i)
|
|
1036 {
|
|
1037 *d++ = s[i];
|
|
1038 if (d[-1] == CSI && d + 2 < string + sizeof(string))
|
|
1039 {
|
|
1040 /* Turn CSI into K_CSI. */
|
|
1041 *d++ = KS_EXTRA;
|
|
1042 *d++ = (int)KE_CSI;
|
|
1043 }
|
|
1044 }
|
|
1045 len = d - string;
|
|
1046 }
|
|
1047
|
|
1048 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
|
|
1049 if (key_sym == GDK_ISO_Left_Tab)
|
|
1050 {
|
|
1051 key_sym = GDK_Tab;
|
|
1052 state |= GDK_SHIFT_MASK;
|
|
1053 }
|
|
1054
|
|
1055 #ifndef HAVE_GTK2 /* for GTK+ 2, we handle this in keyval_to_string() */
|
|
1056 if ((key_sym == GDK_2 || key_sym == GDK_at) && (state & GDK_CONTROL_MASK))
|
|
1057 {
|
|
1058 string[0] = NUL; /* CTRL-2 and CTRL-@ is NUL */
|
|
1059 len = 1;
|
|
1060 }
|
|
1061 else if (len == 0 && (key_sym == GDK_space || key_sym == GDK_Tab))
|
|
1062 {
|
|
1063 /* When there are modifiers, these keys get zero length; we need the
|
|
1064 * original key here to be able to add a modifier below. */
|
|
1065 string[0] = (key_sym & 0xff);
|
|
1066 len = 1;
|
|
1067 }
|
|
1068 #endif
|
|
1069
|
|
1070 #ifdef FEAT_MENU
|
|
1071 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
|
|
1072 * is a menu shortcut, we ignore everything with the ALT modifier. */
|
|
1073 if ((state & GDK_MOD1_MASK)
|
|
1074 && gui.menu_is_active
|
|
1075 && (*p_wak == 'y'
|
|
1076 || (*p_wak == 'm'
|
|
1077 && len == 1
|
|
1078 && gui_is_menu_shortcut(string[0]))))
|
|
1079 # ifdef HAVE_GTK2
|
|
1080 /* For GTK2 we return false to signify that we haven't handled the
|
|
1081 * keypress, so that gtk will handle the mnemonic or accelerator. */
|
|
1082 return FALSE;
|
|
1083 # else
|
|
1084 return TRUE;
|
|
1085 # endif
|
|
1086 #endif
|
|
1087
|
|
1088 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
|
|
1089 * that already has the 8th bit set.
|
|
1090 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
|
|
1091 * Don't do this for double-byte encodings, it turns the char into a lead
|
|
1092 * byte. */
|
|
1093 if (len == 1
|
|
1094 && (state & GDK_MOD1_MASK)
|
|
1095 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
|
|
1096 && (string[0] & 0x80) == 0
|
|
1097 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
|
|
1098 #ifdef FEAT_MBYTE
|
|
1099 && !enc_dbcs
|
|
1100 #endif
|
|
1101 )
|
|
1102 {
|
|
1103 string[0] |= 0x80;
|
|
1104 state &= ~GDK_MOD1_MASK; /* don't use it again */
|
|
1105 #ifdef FEAT_MBYTE
|
|
1106 if (enc_utf8) /* convert to utf-8 */
|
|
1107 {
|
|
1108 string[1] = string[0] & 0xbf;
|
|
1109 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
|
|
1110 if (string[1] == CSI)
|
|
1111 {
|
|
1112 string[2] = KS_EXTRA;
|
|
1113 string[3] = (int)KE_CSI;
|
|
1114 len = 4;
|
|
1115 }
|
|
1116 else
|
|
1117 len = 2;
|
|
1118 }
|
|
1119 #endif
|
|
1120 }
|
|
1121
|
|
1122 /* Check for special keys. Also do this when len == 1 (key has an ASCII
|
|
1123 * value) to detect backspace, delete and keypad keys. */
|
|
1124 if (len == 0 || len == 1)
|
|
1125 {
|
|
1126 for (i = 0; special_keys[i].key_sym != 0; i++)
|
|
1127 {
|
|
1128 if (special_keys[i].key_sym == key_sym)
|
|
1129 {
|
|
1130 string[0] = CSI;
|
|
1131 string[1] = special_keys[i].code0;
|
|
1132 string[2] = special_keys[i].code1;
|
|
1133 len = -3;
|
|
1134 break;
|
|
1135 }
|
|
1136 }
|
|
1137 }
|
|
1138
|
|
1139 if (len == 0) /* Unrecognized key */
|
|
1140 return TRUE;
|
|
1141
|
|
1142 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) && !defined(HAVE_GTK2)
|
|
1143 /* Cancel or type backspace. For GTK2, im_commit_cb() does the same. */
|
|
1144 preedit_start_col = MAXCOL;
|
|
1145 xim_changed_while_preediting = TRUE;
|
|
1146 #endif
|
|
1147
|
|
1148 /* Special keys (and a few others) may have modifiers. Also when using a
|
|
1149 * double-byte encoding (can't set the 8th bit). */
|
|
1150 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
|
|
1151 || key_sym == GDK_Return || key_sym == GDK_Linefeed
|
|
1152 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
|
|
1153 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
|
|
1154 #ifdef FEAT_MBYTE
|
|
1155 || (enc_dbcs && len == 1 && (state & GDK_MOD1_MASK))
|
|
1156 #endif
|
|
1157 )
|
|
1158 {
|
179
|
1159 modifiers = modifiers_gdk2vim(state);
|
7
|
1160
|
|
1161 /*
|
|
1162 * For some keys a shift modifier is translated into another key
|
|
1163 * code.
|
|
1164 */
|
|
1165 if (len == -3)
|
|
1166 key = TO_SPECIAL(string[1], string[2]);
|
|
1167 else
|
|
1168 key = string[0];
|
|
1169
|
|
1170 key = simplify_key(key, &modifiers);
|
|
1171 if (key == CSI)
|
|
1172 key = K_CSI;
|
|
1173 if (IS_SPECIAL(key))
|
|
1174 {
|
|
1175 string[0] = CSI;
|
|
1176 string[1] = K_SECOND(key);
|
|
1177 string[2] = K_THIRD(key);
|
|
1178 len = 3;
|
|
1179 }
|
|
1180 else
|
|
1181 {
|
|
1182 string[0] = key;
|
|
1183 len = 1;
|
|
1184 }
|
|
1185
|
|
1186 if (modifiers != 0)
|
|
1187 {
|
|
1188 string2[0] = CSI;
|
|
1189 string2[1] = KS_MODIFIER;
|
|
1190 string2[2] = modifiers;
|
|
1191 add_to_input_buf(string2, 3);
|
|
1192 }
|
|
1193 }
|
|
1194
|
|
1195 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
|
|
1196 || (string[0] == intr_char && intr_char != Ctrl_C)))
|
|
1197 {
|
|
1198 trash_input_buf();
|
|
1199 got_int = TRUE;
|
|
1200 }
|
|
1201
|
|
1202 add_to_input_buf(string, len);
|
|
1203
|
|
1204 /* blank out the pointer if necessary */
|
|
1205 if (p_mh)
|
|
1206 gui_mch_mousehide(TRUE);
|
|
1207
|
|
1208 if (gtk_main_level() > 0)
|
|
1209 gtk_main_quit();
|
|
1210
|
|
1211 return TRUE;
|
|
1212 }
|
|
1213
|
|
1214 #if defined(FEAT_XIM) && defined(HAVE_GTK2)
|
|
1215 /*ARGSUSED0*/
|
|
1216 static gboolean
|
|
1217 key_release_event(GtkWidget *widget, GdkEventKey *event, gpointer data)
|
|
1218 {
|
|
1219 /*
|
|
1220 * GTK+ 2 input methods may do fancy stuff on key release events too.
|
|
1221 * With the default IM for instance, you can enter any UCS code point
|
|
1222 * by holding down CTRL-SHIFT and typing hexadecimal digits.
|
|
1223 */
|
|
1224 return xim_queue_key_press_event(event, FALSE);
|
|
1225 }
|
|
1226 #endif
|
|
1227
|
|
1228
|
|
1229 /****************************************************************************
|
|
1230 * Selection handlers:
|
|
1231 */
|
|
1232
|
|
1233 /*ARGSUSED*/
|
|
1234 static gint
|
|
1235 selection_clear_event(GtkWidget *widget,
|
|
1236 GdkEventSelection *event,
|
|
1237 gpointer user_data)
|
|
1238 {
|
|
1239 if (event->selection == clip_plus.gtk_sel_atom)
|
|
1240 clip_lose_selection(&clip_plus);
|
|
1241 else
|
|
1242 clip_lose_selection(&clip_star);
|
|
1243
|
|
1244 if (gtk_main_level() > 0)
|
|
1245 gtk_main_quit();
|
|
1246
|
|
1247 return TRUE;
|
|
1248 }
|
|
1249
|
|
1250 #define RS_NONE 0 /* selection_received_cb() not called yet */
|
|
1251 #define RS_OK 1 /* selection_received_cb() called and OK */
|
|
1252 #define RS_FAIL 2 /* selection_received_cb() called and failed */
|
|
1253 static int received_selection = RS_NONE;
|
|
1254
|
|
1255 /*ARGSUSED*/
|
|
1256 static void
|
|
1257 selection_received_cb(GtkWidget *widget,
|
|
1258 GtkSelectionData *data,
|
|
1259 guint time_,
|
|
1260 gpointer user_data)
|
|
1261 {
|
|
1262 VimClipboard *cbd;
|
|
1263 char_u *text;
|
|
1264 char_u *tmpbuf = NULL;
|
|
1265 #ifdef HAVE_GTK2
|
|
1266 guchar *tmpbuf_utf8 = NULL;
|
|
1267 #endif
|
|
1268 int len;
|
|
1269 int motion_type;
|
|
1270
|
|
1271 if (data->selection == clip_plus.gtk_sel_atom)
|
|
1272 cbd = &clip_plus;
|
|
1273 else
|
|
1274 cbd = &clip_star;
|
|
1275
|
|
1276 text = (char_u *)data->data;
|
|
1277 len = data->length;
|
|
1278 motion_type = MCHAR;
|
|
1279
|
|
1280 if (text == NULL || len <= 0)
|
|
1281 {
|
|
1282 received_selection = RS_FAIL;
|
|
1283 /* clip_free_selection(cbd); ??? */
|
|
1284
|
|
1285 if (gtk_main_level() > 0)
|
|
1286 gtk_main_quit();
|
|
1287
|
|
1288 return;
|
|
1289 }
|
|
1290
|
|
1291 if (data->type == vim_atom)
|
|
1292 {
|
|
1293 motion_type = *text++;
|
|
1294 --len;
|
|
1295 }
|
|
1296
|
|
1297 #ifdef FEAT_MBYTE
|
|
1298 else if (data->type == vimenc_atom)
|
|
1299 {
|
|
1300 char_u *enc;
|
|
1301 vimconv_T conv;
|
|
1302
|
|
1303 motion_type = *text++;
|
|
1304 --len;
|
|
1305
|
|
1306 enc = text;
|
|
1307 text += STRLEN(text) + 1;
|
|
1308 len -= text - enc;
|
|
1309
|
|
1310 /* If the encoding of the text is different from 'encoding', attempt
|
|
1311 * converting it. */
|
|
1312 conv.vc_type = CONV_NONE;
|
|
1313 convert_setup(&conv, enc, p_enc);
|
|
1314 if (conv.vc_type != CONV_NONE)
|
|
1315 {
|
|
1316 tmpbuf = string_convert(&conv, text, &len);
|
|
1317 if (tmpbuf != NULL)
|
|
1318 text = tmpbuf;
|
|
1319 convert_setup(&conv, NULL, NULL);
|
|
1320 }
|
|
1321 }
|
|
1322 #endif
|
|
1323
|
|
1324 #ifdef HAVE_GTK2
|
|
1325 /* gtk_selection_data_get_text() handles all the nasty details
|
|
1326 * and targets and encodings etc. This rocks so hard. */
|
|
1327 else
|
|
1328 {
|
|
1329 tmpbuf_utf8 = gtk_selection_data_get_text(data);
|
|
1330 if (tmpbuf_utf8 != NULL)
|
|
1331 {
|
|
1332 len = STRLEN(tmpbuf_utf8);
|
|
1333 if (input_conv.vc_type != CONV_NONE)
|
|
1334 {
|
|
1335 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
|
|
1336 if (tmpbuf != NULL)
|
|
1337 text = tmpbuf;
|
|
1338 }
|
|
1339 else
|
|
1340 text = tmpbuf_utf8;
|
|
1341 }
|
|
1342 }
|
|
1343 #else /* !HAVE_GTK2 */
|
|
1344 # ifdef FEAT_MBYTE
|
|
1345 else if (data->type == utf8_string_atom)
|
|
1346 {
|
|
1347 vimconv_T conv;
|
|
1348
|
|
1349 conv.vc_type = CONV_NONE;
|
|
1350 convert_setup(&conv, (char_u *)"utf-8", p_enc);
|
|
1351
|
|
1352 if (conv.vc_type != CONV_NONE)
|
|
1353 {
|
|
1354 tmpbuf = string_convert(&conv, text, &len);
|
|
1355 convert_setup(&conv, NULL, NULL);
|
|
1356 }
|
|
1357 if (tmpbuf != NULL)
|
|
1358 text = tmpbuf;
|
|
1359 }
|
|
1360 # endif
|
|
1361 else if (data->type == compound_text_atom || data->type == text_atom)
|
|
1362 {
|
|
1363 char **list = NULL;
|
|
1364 int count;
|
|
1365 int i;
|
|
1366 unsigned tmplen = 0;
|
|
1367
|
|
1368 count = gdk_text_property_to_text_list(data->type, data->format,
|
|
1369 data->data, data->length,
|
|
1370 &list);
|
|
1371 for (i = 0; i < count; ++i)
|
|
1372 tmplen += strlen(list[i]);
|
|
1373
|
|
1374 tmpbuf = alloc(tmplen + 1);
|
|
1375 if (tmpbuf != NULL)
|
|
1376 {
|
|
1377 tmpbuf[0] = NUL;
|
|
1378 for (i = 0; i < count; ++i)
|
|
1379 STRCAT(tmpbuf, list[i]);
|
|
1380 text = tmpbuf;
|
|
1381 len = tmplen;
|
|
1382 }
|
|
1383
|
|
1384 if (list != NULL)
|
|
1385 gdk_free_text_list(list);
|
|
1386 }
|
|
1387 #endif /* !HAVE_GTK2 */
|
|
1388
|
|
1389 clip_yank_selection(motion_type, text, (long)len, cbd);
|
|
1390 received_selection = RS_OK;
|
|
1391 vim_free(tmpbuf);
|
|
1392 #ifdef HAVE_GTK2
|
|
1393 g_free(tmpbuf_utf8);
|
|
1394 #endif
|
|
1395
|
|
1396 if (gtk_main_level() > 0)
|
|
1397 gtk_main_quit();
|
|
1398 }
|
|
1399
|
|
1400 /*
|
|
1401 * Prepare our selection data for passing it to the external selection
|
|
1402 * client.
|
|
1403 */
|
|
1404 /*ARGSUSED*/
|
|
1405 static void
|
|
1406 selection_get_cb(GtkWidget *widget,
|
|
1407 GtkSelectionData *selection_data,
|
|
1408 guint info,
|
|
1409 guint time_,
|
|
1410 gpointer user_data)
|
|
1411 {
|
|
1412 char_u *string;
|
|
1413 char_u *tmpbuf;
|
|
1414 long_u tmplen;
|
|
1415 int length;
|
|
1416 int motion_type;
|
|
1417 GdkAtom type;
|
|
1418 VimClipboard *cbd;
|
|
1419
|
|
1420 if (selection_data->selection == clip_plus.gtk_sel_atom)
|
|
1421 cbd = &clip_plus;
|
|
1422 else
|
|
1423 cbd = &clip_star;
|
|
1424
|
|
1425 if (!cbd->owned)
|
|
1426 return; /* Shouldn't ever happen */
|
|
1427
|
|
1428 if (info != (guint)TARGET_STRING
|
|
1429 #ifdef FEAT_MBYTE
|
|
1430 && info != (guint)TARGET_UTF8_STRING
|
|
1431 && info != (guint)TARGET_VIMENC
|
|
1432 #endif
|
|
1433 && info != (guint)TARGET_VIM
|
|
1434 && info != (guint)TARGET_COMPOUND_TEXT
|
|
1435 && info != (guint)TARGET_TEXT)
|
|
1436 return;
|
|
1437
|
|
1438 /* get the selection from the '*'/'+' register */
|
|
1439 clip_get_selection(cbd);
|
|
1440
|
|
1441 motion_type = clip_convert_selection(&string, &tmplen, cbd);
|
|
1442 if (motion_type < 0 || string == NULL)
|
|
1443 return;
|
|
1444 /* Due to int arguments we can't handle more than G_MAXINT. Also
|
|
1445 * reserve one extra byte for NUL or the motion type; just in case.
|
|
1446 * (Not that pasting 2G of text is ever going to work, but... ;-) */
|
|
1447 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
|
|
1448
|
|
1449 if (info == (guint)TARGET_VIM)
|
|
1450 {
|
|
1451 tmpbuf = alloc((unsigned)length + 1);
|
|
1452 if (tmpbuf != NULL)
|
|
1453 {
|
|
1454 tmpbuf[0] = motion_type;
|
|
1455 mch_memmove(tmpbuf + 1, string, (size_t)length);
|
|
1456 }
|
|
1457 /* For our own format, the first byte contains the motion type */
|
|
1458 ++length;
|
|
1459 vim_free(string);
|
|
1460 string = tmpbuf;
|
|
1461 type = vim_atom;
|
|
1462 }
|
|
1463
|
|
1464 #ifdef FEAT_MBYTE
|
|
1465 else if (info == (guint)TARGET_VIMENC)
|
|
1466 {
|
|
1467 int l = STRLEN(p_enc);
|
|
1468
|
|
1469 /* contents: motion_type 'encoding' NUL text */
|
|
1470 tmpbuf = alloc((unsigned)length + l + 2);
|
|
1471 if (tmpbuf != NULL)
|
|
1472 {
|
|
1473 tmpbuf[0] = motion_type;
|
|
1474 STRCPY(tmpbuf + 1, p_enc);
|
|
1475 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
|
|
1476 }
|
|
1477 length += l + 2;
|
|
1478 vim_free(string);
|
|
1479 string = tmpbuf;
|
|
1480 type = vimenc_atom;
|
|
1481 }
|
|
1482 #endif
|
|
1483
|
|
1484 #ifdef HAVE_GTK2
|
|
1485 /* gtk_selection_data_set_text() handles everything for us. This is
|
|
1486 * so easy and simple and cool, it'd be insane not to use it. */
|
|
1487 else
|
|
1488 {
|
|
1489 if (output_conv.vc_type != CONV_NONE)
|
|
1490 {
|
|
1491 tmpbuf = string_convert(&output_conv, string, &length);
|
|
1492 vim_free(string);
|
|
1493 if (tmpbuf == NULL)
|
|
1494 return;
|
|
1495 string = tmpbuf;
|
|
1496 }
|
|
1497 /* Validate the string to avoid runtime warnings */
|
|
1498 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
|
|
1499 {
|
|
1500 gtk_selection_data_set_text(selection_data,
|
|
1501 (const char *)string, length);
|
|
1502 }
|
|
1503 vim_free(string);
|
|
1504 return;
|
|
1505 }
|
|
1506 #else /* !HAVE_GTK2 */
|
|
1507 # ifdef FEAT_MBYTE
|
|
1508 else if (info == (guint)TARGET_UTF8_STRING)
|
|
1509 {
|
|
1510 vimconv_T conv;
|
|
1511
|
|
1512 conv.vc_type = CONV_NONE;
|
|
1513 convert_setup(&conv, p_enc, (char_u *)"utf-8");
|
|
1514
|
|
1515 if (conv.vc_type != CONV_NONE)
|
|
1516 {
|
|
1517 tmpbuf = string_convert(&conv, string, &length);
|
|
1518 convert_setup(&conv, NULL, NULL);
|
|
1519 vim_free(string);
|
|
1520 string = tmpbuf;
|
|
1521 }
|
|
1522 type = utf8_string_atom;
|
|
1523 }
|
|
1524 # endif
|
|
1525 else if (info == (guint)TARGET_COMPOUND_TEXT
|
|
1526 || info == (guint)TARGET_TEXT)
|
|
1527 {
|
|
1528 int format;
|
|
1529
|
|
1530 /* Copy the string to ensure NUL-termination */
|
|
1531 tmpbuf = vim_strnsave(string, length);
|
|
1532 vim_free(string);
|
|
1533 if (tmpbuf != NULL)
|
|
1534 {
|
|
1535 gdk_string_to_compound_text((const char *)tmpbuf,
|
|
1536 &type, &format, &string, &length);
|
|
1537 vim_free(tmpbuf);
|
|
1538 selection_data->type = type;
|
|
1539 selection_data->format = format;
|
|
1540 gtk_selection_data_set(selection_data, type, format, string, length);
|
|
1541 gdk_free_compound_text(string);
|
|
1542 }
|
|
1543 return;
|
|
1544 }
|
|
1545 else
|
|
1546 {
|
|
1547 type = GDK_TARGET_STRING;
|
|
1548 }
|
|
1549 #endif /* !HAVE_GTK2 */
|
|
1550
|
|
1551 if (string != NULL)
|
|
1552 {
|
|
1553 selection_data->type = selection_data->target;
|
|
1554 selection_data->format = 8; /* 8 bits per char */
|
|
1555
|
|
1556 gtk_selection_data_set(selection_data, type, 8, string, length);
|
|
1557 vim_free(string);
|
|
1558 }
|
|
1559 }
|
|
1560
|
|
1561 /*
|
|
1562 * Check if the GUI can be started. Called before gvimrc is sourced.
|
|
1563 * Return OK or FAIL.
|
|
1564 */
|
|
1565 int
|
|
1566 gui_mch_init_check(void)
|
|
1567 {
|
|
1568 #ifndef HAVE_GTK2
|
|
1569 /* This is needed to make the locale handling consistant between the GUI
|
|
1570 * and the rest of VIM. */
|
|
1571 gtk_set_locale();
|
|
1572 #endif
|
|
1573
|
|
1574 #ifdef FEAT_GUI_GNOME
|
|
1575 if (gtk_socket_id == 0)
|
|
1576 using_gnome = 1;
|
|
1577 #endif
|
|
1578
|
|
1579 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
|
|
1580 if (!gtk_init_check(&gui_argc, &gui_argv))
|
|
1581 {
|
|
1582 gui.dying = TRUE;
|
|
1583 EMSG(_(e_opendisp));
|
|
1584 return FAIL;
|
|
1585 }
|
|
1586
|
|
1587 return OK;
|
|
1588 }
|
|
1589
|
|
1590
|
|
1591 /****************************************************************************
|
|
1592 * Mouse handling callbacks
|
|
1593 */
|
|
1594
|
|
1595
|
|
1596 static guint mouse_click_timer = 0;
|
|
1597 static int mouse_timed_out = TRUE;
|
|
1598
|
|
1599 /*
|
|
1600 * Timer used to recognize multiple clicks of the mouse button
|
|
1601 */
|
|
1602 static gint
|
|
1603 mouse_click_timer_cb(gpointer data)
|
|
1604 {
|
|
1605 /* we don't use this information currently */
|
|
1606 int *timed_out = (int *) data;
|
|
1607
|
|
1608 *timed_out = TRUE;
|
|
1609 return FALSE; /* don't happen again */
|
|
1610 }
|
|
1611
|
|
1612 static guint motion_repeat_timer = 0;
|
|
1613 static int motion_repeat_offset = FALSE;
|
|
1614 static gint motion_repeat_timer_cb(gpointer);
|
|
1615
|
|
1616 static void
|
|
1617 process_motion_notify(int x, int y, GdkModifierType state)
|
|
1618 {
|
|
1619 int button;
|
|
1620 int_u vim_modifiers;
|
|
1621
|
|
1622 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
|
|
1623 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
|
|
1624 GDK_BUTTON5_MASK))
|
|
1625 ? MOUSE_DRAG : ' ';
|
|
1626
|
|
1627 /* If our pointer is currently hidden, then we should show it. */
|
|
1628 gui_mch_mousehide(FALSE);
|
|
1629
|
|
1630 /* Just moving the rodent above the drawing area without any button
|
|
1631 * being pressed. */
|
|
1632 if (button != MOUSE_DRAG)
|
|
1633 {
|
|
1634 gui_mouse_moved(x, y);
|
|
1635 return;
|
|
1636 }
|
|
1637
|
|
1638 /* translate modifier coding between the main engine and GTK */
|
179
|
1639 vim_modifiers = modifiers_gdk2mouse(state);
|
7
|
1640
|
|
1641 /* inform the editor engine about the occurence of this event */
|
|
1642 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
|
|
1643
|
|
1644 if (gtk_main_level() > 0)
|
|
1645 gtk_main_quit();
|
|
1646
|
|
1647 /*
|
|
1648 * Auto repeat timer handling.
|
|
1649 */
|
|
1650 if (x < 0 || y < 0
|
|
1651 || x >= gui.drawarea->allocation.width
|
|
1652 || y >= gui.drawarea->allocation.height)
|
|
1653 {
|
|
1654
|
|
1655 int dx;
|
|
1656 int dy;
|
|
1657 int offshoot;
|
|
1658 int delay = 10;
|
|
1659
|
|
1660 /* Calculate the maximal distance of the cursor from the drawing area.
|
|
1661 * (offshoot can't become negative here!).
|
|
1662 */
|
|
1663 dx = x < 0 ? -x : x - gui.drawarea->allocation.width;
|
|
1664 dy = y < 0 ? -y : y - gui.drawarea->allocation.height;
|
|
1665
|
|
1666 offshoot = dx > dy ? dx : dy;
|
|
1667
|
|
1668 /* Make a linearly declaying timer delay with a threshold of 5 at a
|
|
1669 * distance of 127 pixels from the main window.
|
|
1670 *
|
|
1671 * One could think endlessly about the most ergonomic variant here.
|
|
1672 * For example it could make sense to calculate the distance from the
|
|
1673 * drags start instead...
|
|
1674 *
|
|
1675 * Maybe a parabolic interpolation would suite us better here too...
|
|
1676 */
|
|
1677 if (offshoot > 127)
|
|
1678 {
|
|
1679 /* 5 appears to be somehow near to my perceptual limits :-). */
|
|
1680 delay = 5;
|
|
1681 }
|
|
1682 else
|
|
1683 {
|
|
1684 delay = (130 * (127 - offshoot)) / 127 + 5;
|
|
1685 }
|
|
1686
|
|
1687 /* shoot again */
|
|
1688 if (!motion_repeat_timer)
|
|
1689 motion_repeat_timer = gtk_timeout_add((guint32)delay,
|
|
1690 motion_repeat_timer_cb, NULL);
|
|
1691 }
|
|
1692 }
|
|
1693
|
|
1694 /*
|
|
1695 * Timer used to recognize multiple clicks of the mouse button.
|
|
1696 */
|
|
1697 /*ARGSUSED0*/
|
|
1698 static gint
|
|
1699 motion_repeat_timer_cb(gpointer data)
|
|
1700 {
|
|
1701 int x;
|
|
1702 int y;
|
|
1703 GdkModifierType state;
|
|
1704
|
|
1705 gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state);
|
|
1706
|
|
1707 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
|
|
1708 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
|
|
1709 GDK_BUTTON5_MASK)))
|
|
1710 {
|
|
1711 motion_repeat_timer = 0;
|
|
1712 return FALSE;
|
|
1713 }
|
|
1714
|
|
1715 /* If there already is a mouse click in the input buffer, wait another
|
|
1716 * time (otherwise we would create a backlog of clicks) */
|
|
1717 if (vim_used_in_input_buf() > 10)
|
|
1718 return TRUE;
|
|
1719
|
|
1720 motion_repeat_timer = 0;
|
|
1721
|
|
1722 /*
|
|
1723 * Fake a motion event.
|
|
1724 * Trick: Pretend the mouse moved to the next character on every other
|
|
1725 * event, otherwise drag events will be discarded, because they are still
|
|
1726 * in the same character.
|
|
1727 */
|
|
1728 if (motion_repeat_offset)
|
|
1729 x += gui.char_width;
|
|
1730
|
|
1731 motion_repeat_offset = !motion_repeat_offset;
|
|
1732 process_motion_notify(x, y, state);
|
|
1733
|
|
1734 /* Don't happen again. We will get reinstalled in the synthetic event
|
|
1735 * if needed -- thus repeating should still work. */
|
|
1736 return FALSE;
|
|
1737 }
|
|
1738
|
|
1739 /*ARGSUSED2*/
|
|
1740 static gint
|
|
1741 motion_notify_event(GtkWidget *widget, GdkEventMotion *event, gpointer data)
|
|
1742 {
|
|
1743 if (event->is_hint)
|
|
1744 {
|
|
1745 int x;
|
|
1746 int y;
|
|
1747 GdkModifierType state;
|
|
1748
|
|
1749 gdk_window_get_pointer(widget->window, &x, &y, &state);
|
|
1750 process_motion_notify(x, y, state);
|
|
1751 }
|
|
1752 else
|
|
1753 {
|
|
1754 process_motion_notify((int)event->x, (int)event->y,
|
|
1755 (GdkModifierType)event->state);
|
|
1756 }
|
|
1757
|
|
1758 return TRUE; /* handled */
|
|
1759 }
|
|
1760
|
|
1761
|
|
1762 /*
|
|
1763 * Mouse button handling. Note please that we are capturing multiple click's
|
|
1764 * by our own timeout mechanism instead of the one provided by GTK+ itself.
|
|
1765 * This is due to the way the generic VIM code is recognizing multiple clicks.
|
|
1766 */
|
|
1767 /*ARGSUSED2*/
|
|
1768 static gint
|
|
1769 button_press_event(GtkWidget *widget, GdkEventButton *event, gpointer data)
|
|
1770 {
|
|
1771 int button;
|
|
1772 int repeated_click = FALSE;
|
|
1773 int x, y;
|
|
1774 int_u vim_modifiers;
|
|
1775
|
|
1776 /* Make sure we have focus now we've been selected */
|
|
1777 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
|
|
1778 gtk_widget_grab_focus(widget);
|
|
1779
|
|
1780 /*
|
|
1781 * Don't let additional events about multiple clicks send by GTK to us
|
|
1782 * after the initial button press event confuse us.
|
|
1783 */
|
|
1784 if (event->type != GDK_BUTTON_PRESS)
|
|
1785 return FALSE;
|
|
1786
|
|
1787 x = event->x;
|
|
1788 y = event->y;
|
|
1789
|
|
1790 /* Handle multiple clicks */
|
|
1791 if (!mouse_timed_out && mouse_click_timer)
|
|
1792 {
|
|
1793 gtk_timeout_remove(mouse_click_timer);
|
|
1794 mouse_click_timer = 0;
|
|
1795 repeated_click = TRUE;
|
|
1796 }
|
|
1797
|
|
1798 mouse_timed_out = FALSE;
|
|
1799 mouse_click_timer = gtk_timeout_add((guint32)p_mouset,
|
|
1800 mouse_click_timer_cb, &mouse_timed_out);
|
|
1801
|
|
1802 switch (event->button)
|
|
1803 {
|
|
1804 case 1:
|
|
1805 button = MOUSE_LEFT;
|
|
1806 break;
|
|
1807 case 2:
|
|
1808 button = MOUSE_MIDDLE;
|
|
1809 break;
|
|
1810 case 3:
|
|
1811 button = MOUSE_RIGHT;
|
|
1812 break;
|
|
1813 #ifndef HAVE_GTK2
|
|
1814 case 4:
|
|
1815 button = MOUSE_4;
|
|
1816 break;
|
|
1817 case 5:
|
|
1818 button = MOUSE_5;
|
|
1819 break;
|
|
1820 #endif
|
|
1821 default:
|
|
1822 return FALSE; /* Unknown button */
|
|
1823 }
|
|
1824
|
|
1825 #ifdef FEAT_XIM
|
|
1826 /* cancel any preediting */
|
|
1827 if (im_is_preediting())
|
|
1828 xim_reset();
|
|
1829 #endif
|
|
1830
|
179
|
1831 vim_modifiers = modifiers_gdk2mouse(event->state);
|
7
|
1832
|
|
1833 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
|
|
1834 if (gtk_main_level() > 0)
|
|
1835 gtk_main_quit(); /* make sure the above will be handled immediately */
|
|
1836
|
|
1837 return TRUE;
|
|
1838 }
|
|
1839
|
|
1840 #ifdef HAVE_GTK2
|
|
1841 /*
|
|
1842 * GTK+ 2 doesn't handle mouse buttons 4, 5, 6 and 7 the same way as GTK+ 1.
|
|
1843 * Instead, it abstracts scrolling via the new GdkEventScroll.
|
|
1844 */
|
|
1845 /*ARGSUSED2*/
|
|
1846 static gboolean
|
|
1847 scroll_event(GtkWidget *widget, GdkEventScroll *event, gpointer data)
|
|
1848 {
|
|
1849 int button;
|
179
|
1850 int_u vim_modifiers;
|
7
|
1851
|
|
1852 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
|
|
1853 gtk_widget_grab_focus(widget);
|
|
1854
|
|
1855 switch (event->direction)
|
|
1856 {
|
|
1857 case GDK_SCROLL_UP:
|
|
1858 button = MOUSE_4;
|
|
1859 break;
|
|
1860 case GDK_SCROLL_DOWN:
|
|
1861 button = MOUSE_5;
|
|
1862 break;
|
|
1863 default: /* We don't care about left and right... Yet. */
|
|
1864 return FALSE;
|
|
1865 }
|
|
1866
|
|
1867 # ifdef FEAT_XIM
|
|
1868 /* cancel any preediting */
|
|
1869 if (im_is_preediting())
|
|
1870 xim_reset();
|
|
1871 # endif
|
|
1872
|
179
|
1873 vim_modifiers = modifiers_gdk2mouse(event->state);
|
7
|
1874
|
|
1875 gui_send_mouse_event(button, (int)event->x, (int)event->y,
|
|
1876 FALSE, vim_modifiers);
|
|
1877
|
|
1878 if (gtk_main_level() > 0)
|
|
1879 gtk_main_quit(); /* make sure the above will be handled immediately */
|
|
1880
|
|
1881 return TRUE;
|
|
1882 }
|
|
1883 #endif /* HAVE_GTK2 */
|
|
1884
|
|
1885
|
|
1886 /*ARGSUSED*/
|
|
1887 static gint
|
|
1888 button_release_event(GtkWidget *widget, GdkEventButton *event, gpointer data)
|
|
1889 {
|
|
1890 int x, y;
|
|
1891 int_u vim_modifiers;
|
|
1892
|
|
1893 /* Remove any motion "machine gun" timers used for automatic further
|
|
1894 extension of allocation areas if outside of the applications window
|
|
1895 area .*/
|
|
1896 if (motion_repeat_timer)
|
|
1897 {
|
|
1898 gtk_timeout_remove(motion_repeat_timer);
|
|
1899 motion_repeat_timer = 0;
|
|
1900 }
|
|
1901
|
|
1902 x = event->x;
|
|
1903 y = event->y;
|
|
1904
|
179
|
1905 vim_modifiers = modifiers_gdk2mouse(event->state);
|
7
|
1906
|
|
1907 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
|
|
1908 if (gtk_main_level() > 0)
|
|
1909 gtk_main_quit(); /* make sure it will be handled immediately */
|
|
1910
|
|
1911 return TRUE;
|
|
1912 }
|
|
1913
|
|
1914
|
|
1915 #ifdef FEAT_DND
|
|
1916 /****************************************************************************
|
|
1917 * Drag aNd Drop support handlers.
|
|
1918 */
|
|
1919
|
|
1920 /*
|
|
1921 * Count how many items there may be and separate them with a NUL.
|
|
1922 * Apparently the items are separated with \r\n. This is not documented,
|
|
1923 * thus be careful not to go past the end. Also allow separation with
|
|
1924 * NUL characters.
|
|
1925 */
|
|
1926 static int
|
|
1927 count_and_decode_uri_list(char_u *out, char_u *raw, int len)
|
|
1928 {
|
|
1929 int i;
|
|
1930 char_u *p = out;
|
|
1931 int count = 0;
|
|
1932
|
|
1933 for (i = 0; i < len; ++i)
|
|
1934 {
|
|
1935 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
|
|
1936 {
|
|
1937 if (p > out && p[-1] != NUL)
|
|
1938 {
|
|
1939 ++count;
|
|
1940 *p++ = NUL;
|
|
1941 }
|
|
1942 }
|
|
1943 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
|
|
1944 {
|
|
1945 *p++ = hexhex2nr(raw + i + 1);
|
|
1946 i += 2;
|
|
1947 }
|
|
1948 else
|
|
1949 *p++ = raw[i];
|
|
1950 }
|
|
1951 if (p > out && p[-1] != NUL)
|
|
1952 {
|
|
1953 *p = NUL; /* last item didn't have \r or \n */
|
|
1954 ++count;
|
|
1955 }
|
|
1956 return count;
|
|
1957 }
|
|
1958
|
|
1959 /*
|
|
1960 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
|
|
1961 * this process, URI which protocol is not "file:" are removed. Return
|
|
1962 * length of array (less than "max").
|
|
1963 */
|
|
1964 static int
|
|
1965 filter_uri_list(char_u **outlist, int max, char_u *src)
|
|
1966 {
|
|
1967 int i, j;
|
|
1968
|
|
1969 for (i = j = 0; i < max; ++i)
|
|
1970 {
|
|
1971 outlist[i] = NULL;
|
|
1972 if (STRNCMP(src, "file:", 5) == 0)
|
|
1973 {
|
|
1974 src += 5;
|
|
1975 if (STRNCMP(src, "//localhost", 11) == 0)
|
|
1976 src += 11;
|
|
1977 while (src[0] == '/' && src[1] == '/')
|
|
1978 ++src;
|
|
1979 outlist[j++] = vim_strsave(src);
|
|
1980 }
|
|
1981 src += STRLEN(src) + 1;
|
|
1982 }
|
|
1983 return j;
|
|
1984 }
|
|
1985
|
|
1986 static char_u **
|
|
1987 parse_uri_list(int *count, char_u *data, int len)
|
|
1988 {
|
|
1989 int n = 0;
|
|
1990 char_u *tmp = NULL;
|
|
1991 char_u **array = NULL;;
|
|
1992
|
|
1993 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
|
|
1994 {
|
|
1995 n = count_and_decode_uri_list(tmp, data, len);
|
|
1996 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
|
|
1997 n = filter_uri_list(array, n, tmp);
|
|
1998 }
|
|
1999 vim_free(tmp);
|
|
2000 *count = n;
|
|
2001 return array;
|
|
2002 }
|
|
2003
|
|
2004 static void
|
|
2005 drag_handle_uri_list(GdkDragContext *context,
|
|
2006 GtkSelectionData *data,
|
|
2007 guint time_,
|
|
2008 GdkModifierType state,
|
|
2009 gint x,
|
|
2010 gint y)
|
|
2011 {
|
|
2012 char_u **fnames;
|
|
2013 int nfiles = 0;
|
|
2014
|
|
2015 fnames = parse_uri_list(&nfiles, data->data, data->length);
|
|
2016
|
|
2017 if (fnames != NULL && nfiles > 0)
|
|
2018 {
|
179
|
2019 int_u modifiers;
|
7
|
2020
|
|
2021 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
|
|
2022
|
179
|
2023 modifiers = modifiers_gdk2mouse(state);
|
7
|
2024
|
|
2025 gui_handle_drop(x, y, modifiers, fnames, nfiles);
|
|
2026 }
|
840
|
2027 else
|
|
2028 vim_free(fnames);
|
7
|
2029 }
|
|
2030
|
|
2031 static void
|
|
2032 drag_handle_text(GdkDragContext *context,
|
|
2033 GtkSelectionData *data,
|
|
2034 guint time_,
|
|
2035 GdkModifierType state)
|
|
2036 {
|
|
2037 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
|
|
2038 char_u *text;
|
|
2039 int len;
|
|
2040 # ifdef FEAT_MBYTE
|
|
2041 char_u *tmpbuf = NULL;
|
|
2042 # endif
|
|
2043
|
|
2044 text = data->data;
|
|
2045 len = data->length;
|
|
2046
|
|
2047 # ifdef FEAT_MBYTE
|
|
2048 if (data->type == utf8_string_atom)
|
|
2049 {
|
|
2050 # ifdef HAVE_GTK2
|
|
2051 if (input_conv.vc_type != CONV_NONE)
|
|
2052 tmpbuf = string_convert(&input_conv, text, &len);
|
|
2053 # else
|
|
2054 vimconv_T conv;
|
|
2055
|
|
2056 conv.vc_type = CONV_NONE;
|
|
2057 convert_setup(&conv, (char_u *)"utf-8", p_enc);
|
|
2058
|
|
2059 if (conv.vc_type != CONV_NONE)
|
|
2060 {
|
|
2061 tmpbuf = string_convert(&conv, text, &len);
|
|
2062 convert_setup(&conv, NULL, NULL);
|
|
2063 }
|
|
2064 # endif
|
|
2065 if (tmpbuf != NULL)
|
|
2066 text = tmpbuf;
|
|
2067 }
|
|
2068 # endif /* FEAT_MBYTE */
|
|
2069
|
|
2070 dnd_yank_drag_data(text, (long)len);
|
|
2071 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
|
|
2072 # ifdef FEAT_MBYTE
|
|
2073 vim_free(tmpbuf);
|
|
2074 # endif
|
|
2075
|
179
|
2076 dropkey[2] = modifiers_gdk2vim(state);
|
7
|
2077
|
|
2078 if (dropkey[2] != 0)
|
|
2079 add_to_input_buf(dropkey, (int)sizeof(dropkey));
|
|
2080 else
|
|
2081 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
|
|
2082
|
|
2083 if (gtk_main_level() > 0)
|
|
2084 gtk_main_quit();
|
|
2085 }
|
|
2086
|
|
2087 /*
|
|
2088 * DND receiver.
|
|
2089 */
|
|
2090 /*ARGSUSED2*/
|
|
2091 static void
|
|
2092 drag_data_received_cb(GtkWidget *widget,
|
|
2093 GdkDragContext *context,
|
|
2094 gint x,
|
|
2095 gint y,
|
|
2096 GtkSelectionData *data,
|
|
2097 guint info,
|
|
2098 guint time_,
|
|
2099 gpointer user_data)
|
|
2100 {
|
|
2101 GdkModifierType state;
|
|
2102
|
|
2103 /* Guard against trash */
|
|
2104 if (data->data == NULL
|
|
2105 || data->length <= 0
|
|
2106 || data->format != 8
|
|
2107 || data->data[data->length] != '\0')
|
|
2108 {
|
|
2109 gtk_drag_finish(context, FALSE, FALSE, time_);
|
|
2110 return;
|
|
2111 }
|
|
2112
|
|
2113 /* Get the current modifier state for proper distinguishment between
|
|
2114 * different operations later. */
|
|
2115 gdk_window_get_pointer(widget->window, NULL, NULL, &state);
|
|
2116
|
|
2117 /* Not sure about the role of "text/plain" here... */
|
|
2118 if (info == (guint)TARGET_TEXT_URI_LIST)
|
|
2119 drag_handle_uri_list(context, data, time_, state, x, y);
|
|
2120 else
|
|
2121 drag_handle_text(context, data, time_, state);
|
|
2122
|
|
2123 }
|
|
2124 #endif /* FEAT_DND */
|
|
2125
|
|
2126
|
|
2127 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
|
|
2128 /*
|
|
2129 * GnomeClient interact callback. Check for unsaved buffers that cannot
|
|
2130 * be abandoned and pop up a dialog asking the user for confirmation if
|
|
2131 * necessary.
|
|
2132 */
|
|
2133 /*ARGSUSED0*/
|
|
2134 static void
|
|
2135 sm_client_check_changed_any(GnomeClient *client,
|
|
2136 gint key,
|
|
2137 GnomeDialogType type,
|
|
2138 gpointer data)
|
|
2139 {
|
|
2140 cmdmod_T save_cmdmod;
|
|
2141 gboolean shutdown_cancelled;
|
|
2142
|
|
2143 save_cmdmod = cmdmod;
|
|
2144
|
|
2145 # ifdef FEAT_BROWSE
|
|
2146 cmdmod.browse = TRUE;
|
|
2147 # endif
|
|
2148 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
|
|
2149 cmdmod.confirm = TRUE;
|
|
2150 # endif
|
|
2151 /*
|
|
2152 * If there are changed buffers, present the user with
|
|
2153 * a dialog if possible, otherwise give an error message.
|
|
2154 */
|
|
2155 shutdown_cancelled = check_changed_any(FALSE);
|
|
2156
|
|
2157 exiting = FALSE;
|
|
2158 cmdmod = save_cmdmod;
|
|
2159 setcursor(); /* position the cursor */
|
|
2160 out_flush();
|
|
2161 /*
|
|
2162 * If the user hit the [Cancel] button the whole shutdown
|
|
2163 * will be cancelled. Wow, quite powerful feature (:
|
|
2164 */
|
|
2165 gnome_interaction_key_return(key, shutdown_cancelled);
|
|
2166 }
|
|
2167
|
|
2168 /*
|
|
2169 * Generate a script that can be used to restore the current editing session.
|
|
2170 * Save the value of v:this_session before running :mksession in order to make
|
|
2171 * automagic session save fully transparent. Return TRUE on success.
|
|
2172 */
|
|
2173 static int
|
|
2174 write_session_file(char_u *filename)
|
|
2175 {
|
|
2176 char_u *escaped_filename;
|
|
2177 char *mksession_cmdline;
|
|
2178 unsigned int save_ssop_flags;
|
|
2179 int failed;
|
|
2180
|
|
2181 /*
|
|
2182 * Build an ex command line to create a script that restores the current
|
|
2183 * session if executed. Escape the filename to avoid nasty surprises.
|
|
2184 */
|
|
2185 escaped_filename = vim_strsave_escaped(filename, escape_chars);
|
|
2186 if (escaped_filename == NULL)
|
|
2187 return FALSE;
|
|
2188 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename, NULL);
|
|
2189 vim_free(escaped_filename);
|
|
2190 /*
|
|
2191 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
|
|
2192 * unpredictable effects when the session is saved automatically. Also,
|
|
2193 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
|
|
2194 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
|
|
2195 * enormously large if the GNOME session feature is used regularly.
|
|
2196 */
|
|
2197 save_ssop_flags = ssop_flags;
|
|
2198 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
|
|
2199 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE);
|
|
2200
|
|
2201 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
|
|
2202 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
|
|
2203 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
|
150
|
2204 do_unlet((char_u *)"Save_VV_this_session", TRUE);
|
7
|
2205
|
|
2206 ssop_flags = save_ssop_flags;
|
|
2207 g_free(mksession_cmdline);
|
|
2208 /*
|
|
2209 * Reopen the file and append a command to restore v:this_session,
|
|
2210 * as if this save never happened. This is to avoid conflicts with
|
|
2211 * the user's own sessions. FIXME: It's probably less hackish to add
|
|
2212 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
|
|
2213 */
|
|
2214 if (!failed)
|
|
2215 {
|
|
2216 FILE *fd;
|
|
2217
|
|
2218 fd = open_exfile(filename, TRUE, APPENDBIN);
|
|
2219
|
|
2220 failed = (fd == NULL
|
|
2221 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
|
|
2222 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
|
|
2223
|
|
2224 if (fd != NULL && fclose(fd) != 0)
|
|
2225 failed = TRUE;
|
|
2226
|
|
2227 if (failed)
|
|
2228 mch_remove(filename);
|
|
2229 }
|
|
2230
|
|
2231 return !failed;
|
|
2232 }
|
|
2233
|
|
2234 /*
|
|
2235 * "save_yourself" signal handler. Initiate an interaction to ask the user
|
|
2236 * for confirmation if necessary. Save the current editing session and tell
|
|
2237 * the session manager how to restart Vim.
|
|
2238 */
|
|
2239 /*ARGSUSED1*/
|
|
2240 static gboolean
|
|
2241 sm_client_save_yourself(GnomeClient *client,
|
|
2242 gint phase,
|
|
2243 GnomeSaveStyle save_style,
|
|
2244 gboolean shutdown,
|
|
2245 GnomeInteractStyle interact_style,
|
|
2246 gboolean fast,
|
|
2247 gpointer data)
|
|
2248 {
|
|
2249 static const char suffix[] = "-session.vim";
|
|
2250 char *session_file;
|
|
2251 unsigned int len;
|
|
2252 gboolean success;
|
|
2253
|
|
2254 /* Always request an interaction if possible. check_changed_any()
|
|
2255 * won't actually show a dialog unless any buffers have been modified.
|
|
2256 * There doesn't seem to be an obvious way to check that without
|
|
2257 * automatically firing the dialog. Anyway, it works just fine. */
|
|
2258 if (interact_style == GNOME_INTERACT_ANY)
|
|
2259 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
|
|
2260 &sm_client_check_changed_any,
|
|
2261 NULL);
|
|
2262 out_flush();
|
|
2263 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
|
|
2264
|
|
2265 /* The path is unique for each session save. We do neither know nor care
|
|
2266 * which session script will actually be used later. This decision is in
|
|
2267 * the domain of the session manager. */
|
|
2268 session_file = gnome_config_get_real_path(
|
|
2269 gnome_client_get_config_prefix(client));
|
|
2270 len = strlen(session_file);
|
|
2271
|
|
2272 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
|
|
2273 --len; /* get rid of the superfluous trailing '/' */
|
|
2274
|
|
2275 session_file = g_renew(char, session_file, len + sizeof(suffix));
|
|
2276 memcpy(session_file + len, suffix, sizeof(suffix));
|
|
2277
|
|
2278 success = write_session_file((char_u *)session_file);
|
|
2279
|
|
2280 if (success)
|
|
2281 {
|
|
2282 const char *argv[8];
|
|
2283 int i;
|
|
2284
|
|
2285 /* Tell the session manager how to wipe out the stored session data.
|
|
2286 * This isn't as dangerous as it looks, don't worry :) session_file
|
|
2287 * is a unique absolute filename. Usually it'll be something like
|
|
2288 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
|
|
2289 i = 0;
|
|
2290 argv[i++] = "rm";
|
|
2291 argv[i++] = session_file;
|
|
2292 argv[i] = NULL;
|
|
2293
|
|
2294 gnome_client_set_discard_command(client, i, (char **)argv);
|
|
2295
|
|
2296 /* Tell the session manager how to restore the just saved session.
|
|
2297 * This is easily done thanks to Vim's -S option. Pass the -f flag
|
|
2298 * since there's no need to fork -- it might even cause confusion.
|
|
2299 * Also pass the window role to give the WM something to match on.
|
|
2300 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
|
|
2301 i = 0;
|
|
2302 argv[i++] = restart_command;
|
|
2303 argv[i++] = "-f";
|
|
2304 argv[i++] = "-g";
|
|
2305 # ifdef HAVE_GTK2
|
|
2306 argv[i++] = "--role";
|
|
2307 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
|
|
2308 # endif
|
|
2309 argv[i++] = "-S";
|
|
2310 argv[i++] = session_file;
|
|
2311 argv[i] = NULL;
|
|
2312
|
|
2313 gnome_client_set_restart_command(client, i, (char **)argv);
|
|
2314 gnome_client_set_clone_command(client, 0, NULL);
|
|
2315 }
|
|
2316
|
|
2317 g_free(session_file);
|
|
2318
|
|
2319 return success;
|
|
2320 }
|
|
2321
|
|
2322 /*
|
|
2323 * Called when the session manager wants us to die. There isn't much to save
|
|
2324 * here since "save_yourself" has been emitted before (unless serious trouble
|
|
2325 * is happening).
|
|
2326 */
|
|
2327 /*ARGSUSED0*/
|
|
2328 static void
|
|
2329 sm_client_die(GnomeClient *client, gpointer data)
|
|
2330 {
|
|
2331 /* Don't write messages to the GUI anymore */
|
|
2332 full_screen = FALSE;
|
|
2333
|
419
|
2334 vim_strncpy(IObuff,
|
|
2335 _("Vim: Received \"die\" request from session manager\n"),
|
|
2336 IOSIZE - 1);
|
7
|
2337 preserve_exit();
|
|
2338 }
|
|
2339
|
|
2340 /*
|
|
2341 * Connect our signal handlers to be notified on session save and shutdown.
|
|
2342 */
|
|
2343 static void
|
|
2344 setup_save_yourself(void)
|
|
2345 {
|
|
2346 GnomeClient *client;
|
|
2347
|
|
2348 client = gnome_master_client();
|
|
2349
|
|
2350 if (client != NULL)
|
|
2351 {
|
|
2352 /* Must use the deprecated gtk_signal_connect() for compatibility
|
|
2353 * with GNOME 1. Arrgh, zombies! */
|
|
2354 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
|
|
2355 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
|
|
2356 gtk_signal_connect(GTK_OBJECT(client), "die",
|
|
2357 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
|
|
2358 }
|
|
2359 }
|
|
2360
|
|
2361 #else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
|
|
2362
|
|
2363 # ifdef USE_XSMP
|
|
2364 /*
|
|
2365 * GTK tells us that XSMP needs attention
|
|
2366 */
|
|
2367 /*ARGSUSED*/
|
|
2368 static gboolean
|
|
2369 local_xsmp_handle_requests(source, condition, data)
|
|
2370 GIOChannel *source;
|
|
2371 GIOCondition condition;
|
|
2372 gpointer data;
|
|
2373 {
|
|
2374 if (condition == G_IO_IN)
|
|
2375 {
|
|
2376 /* Do stuff; maybe close connection */
|
|
2377 if (xsmp_handle_requests() == FAIL)
|
|
2378 g_io_channel_unref((GIOChannel *)data);
|
|
2379 return TRUE;
|
|
2380 }
|
|
2381 /* Error */
|
|
2382 g_io_channel_unref((GIOChannel *)data);
|
|
2383 xsmp_close();
|
|
2384 return TRUE;
|
|
2385 }
|
|
2386 # endif /* USE_XSMP */
|
|
2387
|
|
2388 /*
|
|
2389 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
|
|
2390 * This is an ugly use of X functions. GTK doesn't offer an alternative.
|
|
2391 */
|
|
2392 static void
|
|
2393 setup_save_yourself(void)
|
|
2394 {
|
|
2395 Atom *existing_atoms = NULL;
|
|
2396 int count = 0;
|
|
2397
|
|
2398 #ifdef USE_XSMP
|
|
2399 if (xsmp_icefd != -1)
|
|
2400 {
|
|
2401 /*
|
|
2402 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
|
|
2403 * set up GTK IO monitor
|
|
2404 */
|
|
2405 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
|
|
2406
|
|
2407 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
|
|
2408 local_xsmp_handle_requests, (gpointer)g_io);
|
|
2409 }
|
|
2410 else
|
|
2411 #endif
|
|
2412 {
|
|
2413 /* Fall back to old method */
|
|
2414
|
|
2415 /* first get the existing value */
|
|
2416 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
|
|
2417 GDK_WINDOW_XWINDOW(gui.mainwin->window),
|
|
2418 &existing_atoms, &count))
|
|
2419 {
|
|
2420 Atom *new_atoms;
|
|
2421 Atom save_yourself_xatom;
|
|
2422 int i;
|
|
2423
|
|
2424 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
|
|
2425
|
|
2426 /* check if WM_SAVE_YOURSELF isn't there yet */
|
|
2427 for (i = 0; i < count; ++i)
|
|
2428 if (existing_atoms[i] == save_yourself_xatom)
|
|
2429 break;
|
|
2430
|
|
2431 if (i == count)
|
|
2432 {
|
|
2433 /* allocate an Atoms array which is one item longer */
|
|
2434 new_atoms = (Atom *)alloc((unsigned)((count + 1)
|
|
2435 * sizeof(Atom)));
|
|
2436 if (new_atoms != NULL)
|
|
2437 {
|
|
2438 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
|
|
2439 new_atoms[count] = save_yourself_xatom;
|
|
2440 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
|
|
2441 GDK_WINDOW_XWINDOW(gui.mainwin->window),
|
|
2442 new_atoms, count + 1);
|
|
2443 vim_free(new_atoms);
|
|
2444 }
|
|
2445 }
|
|
2446 XFree(existing_atoms);
|
|
2447 }
|
|
2448 }
|
|
2449 }
|
|
2450
|
|
2451 # ifdef HAVE_GTK2
|
|
2452 /*
|
|
2453 * Installing a global event filter seems to be the only way to catch
|
|
2454 * client messages of type WM_PROTOCOLS without overriding GDK's own
|
|
2455 * client message event filter. Well, that's still better than trying
|
|
2456 * to guess what the GDK filter had done if it had been invoked instead
|
|
2457 * (This is what we did for GTK+ 1.2, see below).
|
|
2458 *
|
|
2459 * GTK2_FIXME: This doesn't seem to work. For some reason we never
|
|
2460 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
|
|
2461 * I have the nasty feeling modern session managers just don't send this
|
|
2462 * deprecated message anymore. Addition: confirmed by several people.
|
|
2463 *
|
|
2464 * The GNOME session support is much cooler anyway. Unlike this ugly
|
|
2465 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
|
|
2466 * it should work with KDE as well.
|
|
2467 */
|
|
2468 /*ARGSUSED1*/
|
|
2469 static GdkFilterReturn
|
|
2470 global_event_filter(GdkXEvent *xev, GdkEvent *event, gpointer data)
|
|
2471 {
|
|
2472 XEvent *xevent = (XEvent *)xev;
|
|
2473
|
|
2474 if (xevent != NULL
|
|
2475 && xevent->type == ClientMessage
|
|
2476 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
|
|
2477 && xevent->xclient.data.l[0] == GET_X_ATOM(save_yourself_atom))
|
|
2478 {
|
|
2479 out_flush();
|
|
2480 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
|
|
2481 /*
|
|
2482 * Set the window's WM_COMMAND property, to let the window manager
|
|
2483 * know we are done saving ourselves. We don't want to be
|
|
2484 * restarted, thus set argv to NULL.
|
|
2485 */
|
|
2486 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
|
|
2487 GDK_WINDOW_XWINDOW(gui.mainwin->window),
|
|
2488 NULL, 0);
|
|
2489 return GDK_FILTER_REMOVE;
|
|
2490 }
|
|
2491
|
|
2492 return GDK_FILTER_CONTINUE;
|
|
2493 }
|
|
2494
|
|
2495 # else /* !HAVE_GTK2 */
|
|
2496
|
|
2497 /*
|
|
2498 * GDK handler for X ClientMessage events.
|
|
2499 */
|
|
2500 /*ARGSUSED2*/
|
|
2501 static GdkFilterReturn
|
|
2502 gdk_wm_protocols_filter(GdkXEvent *xev, GdkEvent *event, gpointer data)
|
|
2503 {
|
|
2504 /* From example in gdkevents.c/gdk_wm_protocols_filter */
|
|
2505 XEvent *xevent = (XEvent *)xev;
|
|
2506
|
|
2507 if (xevent != NULL)
|
|
2508 {
|
|
2509 if (xevent->xclient.data.l[0] == GET_X_ATOM(save_yourself_atom))
|
|
2510 {
|
|
2511 out_flush();
|
|
2512 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
|
|
2513
|
|
2514 /* Set the window's WM_COMMAND property, to let the window manager
|
|
2515 * know we are done saving ourselves. We don't want to be
|
|
2516 * restarted, thus set argv to NULL. */
|
|
2517 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
|
|
2518 GDK_WINDOW_XWINDOW(gui.mainwin->window),
|
|
2519 NULL, 0);
|
|
2520 }
|
|
2521 /*
|
|
2522 * Functionality from gdkevents.c/gdk_wm_protocols_filter;
|
|
2523 * Registering this filter apparently overrides the default GDK one,
|
|
2524 * so we need to perform its functionality. There seems no way to
|
|
2525 * register for WM_PROTOCOLS, and only process the WM_SAVE_YOURSELF
|
|
2526 * bit; it's all or nothing. Update: No, there is a way -- but it
|
|
2527 * only works with GTK+ 2 apparently. See above.
|
|
2528 */
|
|
2529 else if (xevent->xclient.data.l[0] == GET_X_ATOM(gdk_wm_delete_window))
|
|
2530 {
|
|
2531 event->any.type = GDK_DELETE;
|
|
2532 return GDK_FILTER_TRANSLATE;
|
|
2533 }
|
|
2534 }
|
|
2535
|
|
2536 return GDK_FILTER_REMOVE;
|
|
2537 }
|
|
2538 # endif /* !HAVE_GTK2 */
|
|
2539
|
|
2540 #endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
|
|
2541
|
|
2542
|
|
2543 /*
|
|
2544 * Setup the window icon & xcmdsrv comm after the main window has been realized.
|
|
2545 */
|
|
2546 /*ARGSUSED*/
|
|
2547 static void
|
|
2548 mainwin_realize(GtkWidget *widget, gpointer data)
|
|
2549 {
|
|
2550 /* If you get an error message here, you still need to unpack the runtime
|
|
2551 * archive! */
|
|
2552 #ifdef magick
|
|
2553 # undef magick
|
|
2554 #endif
|
|
2555 #ifdef HAVE_GTK2
|
|
2556 /* A bit hackish, but avoids casting later and allows optimization */
|
|
2557 # define static static const
|
|
2558 #endif
|
|
2559 #define magick vim32x32
|
|
2560 #include "../runtime/vim32x32.xpm"
|
|
2561 #undef magick
|
|
2562 #define magick vim16x16
|
|
2563 #include "../runtime/vim16x16.xpm"
|
|
2564 #undef magick
|
|
2565 #define magick vim48x48
|
|
2566 #include "../runtime/vim48x48.xpm"
|
|
2567 #undef magick
|
|
2568 #ifdef HAVE_GTK2
|
|
2569 # undef static
|
|
2570 #endif
|
|
2571
|
|
2572 /* When started with "--echo-wid" argument, write window ID on stdout. */
|
|
2573 if (echo_wid_arg)
|
|
2574 {
|
|
2575 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window));
|
|
2576 fflush(stdout);
|
|
2577 }
|
|
2578
|
|
2579 if (vim_strchr(p_go, GO_ICON) != NULL)
|
|
2580 {
|
|
2581 /*
|
|
2582 * Add an icon to the main window. For fun and convenience of the user.
|
|
2583 */
|
|
2584 #ifdef HAVE_GTK2
|
|
2585 GList *icons = NULL;
|
|
2586
|
|
2587 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
|
|
2588 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
|
|
2589 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
|
|
2590
|
|
2591 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
|
|
2592
|
|
2593 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
|
|
2594 g_list_free(icons);
|
|
2595
|
|
2596 #else /* !HAVE_GTK2 */
|
|
2597
|
|
2598 GdkPixmap *icon;
|
|
2599 GdkBitmap *icon_mask = NULL;
|
|
2600 char **magick = vim32x32;
|
|
2601 Display *xdisplay;
|
|
2602 Window root_window;
|
|
2603 XIconSize *size;
|
|
2604 int number_sizes;
|
|
2605 /*
|
|
2606 * Adjust the icon to the preferences of the actual window manager.
|
|
2607 * This is once again a workaround for a defficiency in GTK+ 1.2.
|
|
2608 */
|
|
2609 xdisplay = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
|
|
2610 root_window = XRootWindow(xdisplay, DefaultScreen(xdisplay));
|
|
2611 if (XGetIconSizes(xdisplay, root_window, &size, &number_sizes))
|
|
2612 {
|
|
2613 if (number_sizes > 0)
|
|
2614 {
|
|
2615 if (size->max_height >= 48 && size->max_height >= 48)
|
|
2616 magick = vim48x48;
|
|
2617 else if (size->max_height >= 32 && size->max_height >= 32)
|
|
2618 magick = vim32x32;
|
|
2619 else if (size->max_height >= 16 && size->max_height >= 16)
|
|
2620 magick = vim16x16;
|
|
2621 }
|
|
2622 XFree(size);
|
|
2623 }
|
|
2624 icon = gdk_pixmap_create_from_xpm_d(gui.mainwin->window,
|
|
2625 &icon_mask, NULL, magick);
|
|
2626 if (icon != NULL)
|
|
2627 /* Note: for some reason gdk_window_set_icon() doesn't acquire
|
|
2628 * a reference on the pixmap, thus we _have_ to leak it. */
|
|
2629 gdk_window_set_icon(gui.mainwin->window, NULL, icon, icon_mask);
|
|
2630
|
|
2631 #endif /* !HAVE_GTK2 */
|
|
2632 }
|
|
2633
|
|
2634 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
|
|
2635 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
|
|
2636 # ifdef HAVE_GTK2
|
|
2637 gdk_window_add_filter(NULL, &global_event_filter, NULL);
|
|
2638 # else
|
|
2639 gdk_add_client_message_filter(wm_protocols_atom,
|
|
2640 &gdk_wm_protocols_filter, NULL);
|
|
2641 # endif
|
|
2642 #endif
|
|
2643 /* Setup to indicate to the window manager that we want to catch the
|
|
2644 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
|
|
2645 * manager instead. */
|
|
2646 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
|
|
2647 if (using_gnome)
|
|
2648 #endif
|
|
2649 setup_save_yourself();
|
|
2650
|
|
2651 #ifdef FEAT_CLIENTSERVER
|
|
2652 if (serverName == NULL && serverDelayedStartName != NULL)
|
|
2653 {
|
|
2654 /* This is a :gui command in a plain vim with no previous server */
|
|
2655 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window);
|
|
2656
|
|
2657 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
|
|
2658 serverDelayedStartName);
|
|
2659 }
|
|
2660 else
|
|
2661 {
|
|
2662 /*
|
|
2663 * Cannot handle "XLib-only" windows with gtk event routines, we'll
|
|
2664 * have to change the "server" registration to that of the main window
|
|
2665 * If we have not registered a name yet, remember the window
|
|
2666 */
|
|
2667 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
|
|
2668 GDK_WINDOW_XWINDOW(gui.mainwin->window));
|
|
2669 }
|
|
2670 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
|
|
2671 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event",
|
|
2672 GTK_SIGNAL_FUNC(property_event), NULL);
|
|
2673 #endif
|
|
2674 }
|
|
2675
|
|
2676 static GdkCursor *
|
|
2677 create_blank_pointer(void)
|
|
2678 {
|
|
2679 GdkWindow *root_window = NULL;
|
|
2680 GdkPixmap *blank_mask;
|
|
2681 GdkCursor *cursor;
|
|
2682 GdkColor color = { 0, 0, 0, 0 };
|
|
2683 char blank_data[] = { 0x0 };
|
|
2684
|
|
2685 #ifdef HAVE_GTK_MULTIHEAD
|
|
2686 root_window = gtk_widget_get_root_window(gui.mainwin);
|
|
2687 #endif
|
|
2688
|
|
2689 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
|
|
2690 * in size. */
|
|
2691 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
|
|
2692 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
|
|
2693 &color, &color, 0, 0);
|
|
2694 gdk_bitmap_unref(blank_mask);
|
|
2695
|
|
2696 return cursor;
|
|
2697 }
|
|
2698
|
|
2699 #ifdef HAVE_GTK_MULTIHEAD
|
|
2700 /*ARGSUSED1*/
|
|
2701 static void
|
|
2702 mainwin_screen_changed_cb(GtkWidget *widget,
|
|
2703 GdkScreen *previous_screen,
|
|
2704 gpointer data)
|
|
2705 {
|
|
2706 if (!gtk_widget_has_screen(widget))
|
|
2707 return;
|
|
2708
|
|
2709 /*
|
|
2710 * Recreate the invisble mouse cursor.
|
|
2711 */
|
|
2712 if (gui.blank_pointer != NULL)
|
|
2713 gdk_cursor_unref(gui.blank_pointer);
|
|
2714
|
|
2715 gui.blank_pointer = create_blank_pointer();
|
|
2716
|
|
2717 if (gui.pointer_hidden && gui.drawarea->window != NULL)
|
|
2718 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
|
|
2719
|
|
2720 /*
|
|
2721 * Create a new PangoContext for this screen, and initialize it
|
|
2722 * with the current font if necessary.
|
|
2723 */
|
|
2724 if (gui.text_context != NULL)
|
|
2725 g_object_unref(gui.text_context);
|
|
2726
|
|
2727 gui.text_context = gtk_widget_create_pango_context(widget);
|
|
2728 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
|
|
2729
|
|
2730 if (gui.norm_font != NULL)
|
|
2731 {
|
38
|
2732 gui_mch_init_font(p_guifont, FALSE);
|
814
|
2733 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
|
7
|
2734 }
|
|
2735 }
|
|
2736 #endif /* HAVE_GTK_MULTIHEAD */
|
|
2737
|
|
2738 /*
|
|
2739 * After the drawing area comes up, we calculate all colors and create the
|
|
2740 * dummy blank cursor.
|
|
2741 *
|
|
2742 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
|
|
2743 * fact that the main VIM engine doesn't take them into account anywhere.
|
|
2744 */
|
|
2745 /*ARGSUSED1*/
|
|
2746 static void
|
|
2747 drawarea_realize_cb(GtkWidget *widget, gpointer data)
|
|
2748 {
|
|
2749 GtkWidget *sbar;
|
|
2750
|
|
2751 #ifdef FEAT_XIM
|
|
2752 xim_init();
|
|
2753 #endif
|
|
2754 gui_mch_new_colors();
|
|
2755 gui.text_gc = gdk_gc_new(gui.drawarea->window);
|
|
2756
|
|
2757 gui.blank_pointer = create_blank_pointer();
|
|
2758 if (gui.pointer_hidden)
|
|
2759 gdk_window_set_cursor(widget->window, gui.blank_pointer);
|
|
2760
|
|
2761 /* get the actual size of the scrollbars, if they are realized */
|
|
2762 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
|
|
2763 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
|
|
2764 && firstwin->w_scrollbars[SBAR_RIGHT].id))
|
|
2765 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
|
|
2766 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width)
|
|
2767 gui.scrollbar_width = sbar->allocation.width;
|
|
2768
|
|
2769 sbar = gui.bottom_sbar.id;
|
|
2770 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height)
|
|
2771 gui.scrollbar_height = sbar->allocation.height;
|
|
2772 }
|
|
2773
|
|
2774 /*
|
|
2775 * Properly clean up on shutdown.
|
|
2776 */
|
|
2777 /*ARGSUSED0*/
|
|
2778 static void
|
|
2779 drawarea_unrealize_cb(GtkWidget *widget, gpointer data)
|
|
2780 {
|
|
2781 /* Don't write messages to the GUI anymore */
|
|
2782 full_screen = FALSE;
|
|
2783
|
|
2784 #ifdef FEAT_XIM
|
|
2785 im_shutdown();
|
|
2786 #endif
|
|
2787 #ifdef HAVE_GTK2
|
|
2788 if (gui.ascii_glyphs != NULL)
|
|
2789 {
|
|
2790 pango_glyph_string_free(gui.ascii_glyphs);
|
|
2791 gui.ascii_glyphs = NULL;
|
|
2792 }
|
|
2793 if (gui.ascii_font != NULL)
|
|
2794 {
|
|
2795 g_object_unref(gui.ascii_font);
|
|
2796 gui.ascii_font = NULL;
|
|
2797 }
|
|
2798 g_object_unref(gui.text_context);
|
|
2799 gui.text_context = NULL;
|
|
2800
|
|
2801 g_object_unref(gui.text_gc);
|
|
2802 gui.text_gc = NULL;
|
|
2803
|
|
2804 gdk_cursor_unref(gui.blank_pointer);
|
|
2805 gui.blank_pointer = NULL;
|
|
2806 #else
|
|
2807 gdk_gc_unref(gui.text_gc);
|
|
2808 gui.text_gc = NULL;
|
|
2809
|
|
2810 gdk_cursor_destroy(gui.blank_pointer);
|
|
2811 gui.blank_pointer = NULL;
|
|
2812 #endif
|
|
2813 }
|
|
2814
|
|
2815 /*ARGSUSED0*/
|
|
2816 static void
|
|
2817 drawarea_style_set_cb(GtkWidget *widget,
|
|
2818 GtkStyle *previous_style,
|
|
2819 gpointer data)
|
|
2820 {
|
|
2821 gui_mch_new_colors();
|
|
2822 }
|
|
2823
|
|
2824 /*
|
|
2825 * Callback routine for the "delete_event" signal on the toplevel window.
|
|
2826 * Tries to vim gracefully, or refuses to exit with changed buffers.
|
|
2827 */
|
|
2828 /*ARGSUSED*/
|
|
2829 static gint
|
|
2830 delete_event_cb(GtkWidget *widget, GdkEventAny *event, gpointer data)
|
|
2831 {
|
|
2832 gui_shell_closed();
|
|
2833 return TRUE;
|
|
2834 }
|
|
2835
|
685
|
2836 #if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
|
|
2837 static int
|
|
2838 get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
|
|
2839 {
|
|
2840 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
|
|
2841
|
|
2842 #ifdef FEAT_GUI_GNOME
|
|
2843 if (using_gnome && widget != NULL)
|
|
2844 {
|
|
2845 # ifdef HAVE_GTK2
|
791
|
2846 GtkWidget *parent;
|
685
|
2847 BonoboDockItem *dockitem;
|
|
2848
|
791
|
2849 parent = gtk_widget_get_parent(widget);
|
|
2850 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
|
|
2851 {
|
|
2852 /* Only menu & toolbar are dock items. Could tabline be?
|
|
2853 * Seem to be only the 2 defined in GNOME */
|
|
2854 widget = parent;
|
|
2855 dockitem = BONOBO_DOCK_ITEM(widget);
|
|
2856
|
|
2857 if (dockitem == NULL || dockitem->is_floating)
|
|
2858 return 0;
|
|
2859 item_orientation = bonobo_dock_item_get_orientation(dockitem);
|
|
2860 }
|
685
|
2861 # else
|
|
2862 GnomeDockItem *dockitem;
|
|
2863
|
|
2864 widget = widget->parent;
|
|
2865 dockitem = GNOME_DOCK_ITEM(widget);
|
|
2866
|
|
2867 if (dockitem == NULL || dockitem->is_floating)
|
|
2868 return 0;
|
|
2869 item_orientation = gnome_dock_item_get_orientation(dockitem);
|
|
2870 # endif
|
|
2871 }
|
|
2872 #endif
|
|
2873 if (widget != NULL
|
|
2874 && item_orientation == orientation
|
|
2875 && GTK_WIDGET_REALIZED(widget)
|
|
2876 && GTK_WIDGET_VISIBLE(widget))
|
|
2877 {
|
|
2878 if (orientation == GTK_ORIENTATION_HORIZONTAL)
|
|
2879 return widget->allocation.height;
|
|
2880 else
|
|
2881 return widget->allocation.width;
|
|
2882 }
|
|
2883 return 0;
|
|
2884 }
|
|
2885 #endif
|
|
2886
|
|
2887 static int
|
|
2888 get_menu_tool_width(void)
|
|
2889 {
|
|
2890 int width = 0;
|
|
2891
|
|
2892 #ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
|
|
2893 # ifdef FEAT_MENU
|
|
2894 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
|
|
2895 # endif
|
|
2896 # ifdef FEAT_TOOLBAR
|
|
2897 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
|
|
2898 # endif
|
|
2899 # ifdef FEAT_GUI_TABLINE
|
782
|
2900 if (gui.tabline != NULL)
|
|
2901 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
|
685
|
2902 # endif
|
|
2903 #endif
|
|
2904
|
|
2905 return width;
|
|
2906 }
|
|
2907
|
|
2908 static int
|
|
2909 get_menu_tool_height(void)
|
|
2910 {
|
|
2911 int height = 0;
|
|
2912
|
|
2913 #ifdef FEAT_MENU
|
|
2914 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
|
|
2915 #endif
|
|
2916 #ifdef FEAT_TOOLBAR
|
|
2917 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
|
|
2918 #endif
|
|
2919 #ifdef FEAT_GUI_TABLINE
|
782
|
2920 if (gui.tabline != NULL)
|
|
2921 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
|
685
|
2922 #endif
|
|
2923
|
|
2924 return height;
|
|
2925 }
|
|
2926
|
791
|
2927 /* This controls whether we can set the real window hints at
|
|
2928 * start-up when in a GtkPlug.
|
|
2929 * 0 = normal processing (default)
|
|
2930 * 1 = init. hints set, no-one's tried to reset since last check
|
|
2931 * 2 = init. hints set, attempt made to change hints
|
|
2932 */
|
|
2933 static int init_window_hints_state = 0;
|
|
2934
|
685
|
2935 static void
|
791
|
2936 update_window_manager_hints(int force_width, int force_height)
|
685
|
2937 {
|
|
2938 static int old_width = 0;
|
|
2939 static int old_height = 0;
|
791
|
2940 static int old_min_width = 0;
|
|
2941 static int old_min_height = 0;
|
685
|
2942 static int old_char_width = 0;
|
|
2943 static int old_char_height = 0;
|
|
2944
|
|
2945 int width;
|
|
2946 int height;
|
791
|
2947 int min_width;
|
|
2948 int min_height;
|
|
2949
|
|
2950 /* At start-up, don't try to set the hints until the initial
|
|
2951 * values have been used (those that dictate our initial size)
|
|
2952 * Let forced (i.e., correct) values thruogh always.
|
|
2953 */
|
|
2954 if (!(force_width && force_height) && init_window_hints_state > 0)
|
|
2955 {
|
|
2956 /* Don't do it! */
|
|
2957 init_window_hints_state = 2;
|
|
2958 return;
|
|
2959 }
|
685
|
2960
|
|
2961 /* This also needs to be done when the main window isn't there yet,
|
|
2962 * otherwise the hints don't work. */
|
|
2963 width = gui_get_base_width();
|
|
2964 height = gui_get_base_height();
|
|
2965 # ifdef FEAT_MENU
|
|
2966 height += tabline_height() * gui.char_height;
|
|
2967 # endif
|
|
2968 # ifdef HAVE_GTK2
|
|
2969 width += get_menu_tool_width();
|
|
2970 height += get_menu_tool_height();
|
|
2971 # endif
|
|
2972
|
791
|
2973 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
|
|
2974 * their actual widget size. When we set our size ourselve (e.g.,
|
|
2975 * 'set columns=' or init. -geom) we briefly set the min. to the size
|
|
2976 * we wish to be instead of the legitimate minimum so that we actually
|
|
2977 * resize correctly.
|
|
2978 */
|
|
2979 if (force_width && force_height)
|
|
2980 {
|
|
2981 min_width = force_width;
|
|
2982 min_height = force_height;
|
|
2983 }
|
|
2984 else
|
|
2985 {
|
|
2986 min_width = width + MIN_COLUMNS * gui.char_width;
|
|
2987 min_height = height + MIN_LINES * gui.char_height;
|
|
2988 }
|
|
2989
|
685
|
2990 /* Avoid an expose event when the size didn't change. */
|
|
2991 if (width != old_width
|
|
2992 || height != old_height
|
791
|
2993 || min_width != old_min_width
|
|
2994 || min_height != old_min_height
|
685
|
2995 || gui.char_width != old_char_width
|
|
2996 || gui.char_height != old_char_height)
|
|
2997 {
|
|
2998 GdkGeometry geometry;
|
|
2999 GdkWindowHints geometry_mask;
|
|
3000
|
|
3001 geometry.width_inc = gui.char_width;
|
|
3002 geometry.height_inc = gui.char_height;
|
|
3003 geometry.base_width = width;
|
|
3004 geometry.base_height = height;
|
791
|
3005 geometry.min_width = min_width;
|
|
3006 geometry.min_height = min_height;
|
685
|
3007 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
|
|
3008 |GDK_HINT_MIN_SIZE;
|
|
3009 # ifdef HAVE_GTK2
|
|
3010 /* Using gui.formwin as geometry widget doesn't work as expected
|
|
3011 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
|
|
3012 * in Vim confuse GTK+. */
|
|
3013 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
|
|
3014 &geometry, geometry_mask);
|
|
3015 # else
|
|
3016 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.formwin,
|
|
3017 &geometry, geometry_mask);
|
|
3018 # endif
|
791
|
3019 old_width = width;
|
|
3020 old_height = height;
|
|
3021 old_min_width = min_width;
|
|
3022 old_min_height = min_height;
|
|
3023 old_char_width = gui.char_width;
|
|
3024 old_char_height = gui.char_height;
|
685
|
3025 }
|
|
3026 }
|
|
3027
|
7
|
3028 #ifdef FEAT_TOOLBAR
|
|
3029
|
|
3030 # ifdef HAVE_GTK2
|
|
3031 /*
|
|
3032 * This extra effort wouldn't be necessary if we only used stock icons in the
|
|
3033 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
|
|
3034 * shouldn't be treated differently, thus we do need this.
|
|
3035 */
|
|
3036 static void
|
|
3037 icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
|
|
3038 {
|
|
3039 if (GTK_IS_IMAGE(widget))
|
|
3040 {
|
|
3041 GtkImage *image = (GtkImage *)widget;
|
|
3042
|
|
3043 /* User-defined icons are stored in a GtkIconSet */
|
|
3044 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
|
|
3045 {
|
|
3046 GtkIconSet *icon_set;
|
|
3047 GtkIconSize icon_size;
|
|
3048
|
|
3049 gtk_image_get_icon_set(image, &icon_set, &icon_size);
|
|
3050 icon_size = (GtkIconSize)(long)user_data;
|
|
3051
|
|
3052 gtk_icon_set_ref(icon_set);
|
|
3053 gtk_image_set_from_icon_set(image, icon_set, icon_size);
|
|
3054 gtk_icon_set_unref(icon_set);
|
|
3055 }
|
|
3056 }
|
|
3057 else if (GTK_IS_CONTAINER(widget))
|
|
3058 {
|
|
3059 gtk_container_foreach((GtkContainer *)widget,
|
|
3060 &icon_size_changed_foreach,
|
|
3061 user_data);
|
|
3062 }
|
|
3063 }
|
|
3064 # endif /* HAVE_GTK2 */
|
|
3065
|
|
3066 static void
|
|
3067 set_toolbar_style(GtkToolbar *toolbar)
|
|
3068 {
|
|
3069 GtkToolbarStyle style;
|
|
3070 # ifdef HAVE_GTK2
|
|
3071 GtkIconSize size;
|
|
3072 GtkIconSize oldsize;
|
|
3073 # endif
|
|
3074
|
|
3075 # ifdef HAVE_GTK2
|
|
3076 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
|
|
3077 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
|
|
3078 style = GTK_TOOLBAR_BOTH_HORIZ;
|
|
3079 else
|
|
3080 # endif
|
|
3081 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
|
|
3082 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
|
|
3083 style = GTK_TOOLBAR_BOTH;
|
|
3084 else if (toolbar_flags & TOOLBAR_TEXT)
|
|
3085 style = GTK_TOOLBAR_TEXT;
|
|
3086 else
|
|
3087 style = GTK_TOOLBAR_ICONS;
|
|
3088
|
|
3089 gtk_toolbar_set_style(toolbar, style);
|
|
3090 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
|
|
3091
|
|
3092 # ifdef HAVE_GTK2
|
|
3093 switch (tbis_flags)
|
|
3094 {
|
|
3095 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
|
|
3096 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
|
|
3097 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
|
|
3098 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
|
|
3099 default: size = GTK_ICON_SIZE_INVALID; break;
|
|
3100 }
|
|
3101 oldsize = gtk_toolbar_get_icon_size(toolbar);
|
|
3102
|
|
3103 if (size == GTK_ICON_SIZE_INVALID)
|
|
3104 {
|
|
3105 /* Let global user preferences decide the icon size. */
|
|
3106 gtk_toolbar_unset_icon_size(toolbar);
|
|
3107 size = gtk_toolbar_get_icon_size(toolbar);
|
|
3108 }
|
|
3109 if (size != oldsize)
|
|
3110 {
|
|
3111 gtk_container_foreach(GTK_CONTAINER(toolbar),
|
|
3112 &icon_size_changed_foreach,
|
|
3113 GINT_TO_POINTER((int)size));
|
|
3114 }
|
|
3115 gtk_toolbar_set_icon_size(toolbar, size);
|
|
3116 # endif
|
|
3117 }
|
|
3118
|
|
3119 #endif /* FEAT_TOOLBAR */
|
|
3120
|
685
|
3121 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
|
|
3122 static int ignore_tabline_evt = FALSE;
|
689
|
3123 static GtkWidget *tabline_menu;
|
|
3124 static int clicked_page; /* page clicked in tab line */
|
|
3125
|
|
3126 /*
|
|
3127 * Handle selecting an item in the tab line popup menu.
|
|
3128 */
|
|
3129 /*ARGSUSED*/
|
|
3130 static void
|
|
3131 tabline_menu_handler(GtkMenuItem *item, gpointer user_data)
|
|
3132 {
|
|
3133
|
|
3134 /* Add the string cmd into input buffer */
|
824
|
3135 send_tabline_menu_event(clicked_page, (int)(long)user_data);
|
689
|
3136
|
|
3137 if (gtk_main_level() > 0)
|
|
3138 gtk_main_quit();
|
|
3139 }
|
|
3140
|
|
3141 /*
|
|
3142 * Create a menu for the tab line.
|
|
3143 */
|
|
3144 static GtkWidget *
|
|
3145 create_tabline_menu(void)
|
|
3146 {
|
|
3147 GtkWidget *menu, *item;
|
|
3148
|
|
3149 menu = gtk_menu_new();
|
|
3150
|
|
3151 item = gtk_menu_item_new_with_label(_("Close"));
|
|
3152 gtk_widget_show(item);
|
|
3153 gtk_container_add(GTK_CONTAINER(menu), item);
|
|
3154 gtk_signal_connect(GTK_OBJECT(item), "activate",
|
|
3155 GTK_SIGNAL_FUNC(tabline_menu_handler),
|
|
3156 (gpointer)TABLINE_MENU_CLOSE);
|
|
3157
|
|
3158 item = gtk_menu_item_new_with_label(_("New tab"));
|
|
3159 gtk_widget_show(item);
|
|
3160 gtk_container_add(GTK_CONTAINER(menu), item);
|
|
3161 gtk_signal_connect(GTK_OBJECT(item), "activate",
|
|
3162 GTK_SIGNAL_FUNC(tabline_menu_handler),
|
|
3163 (gpointer)TABLINE_MENU_NEW);
|
|
3164
|
|
3165 item = gtk_menu_item_new_with_label(_("Open Tab..."));
|
|
3166 gtk_widget_show(item);
|
|
3167 gtk_container_add(GTK_CONTAINER(menu), item);
|
|
3168 gtk_signal_connect(GTK_OBJECT(item), "activate",
|
|
3169 GTK_SIGNAL_FUNC(tabline_menu_handler),
|
|
3170 (gpointer)TABLINE_MENU_OPEN);
|
|
3171
|
|
3172 return menu;
|
|
3173 }
|
|
3174
|
|
3175 static gboolean
|
|
3176 on_tabline_menu(GtkWidget *widget, GdkEvent *event)
|
|
3177 {
|
|
3178 /* Was this button press event ? */
|
|
3179 if (event->type == GDK_BUTTON_PRESS)
|
|
3180 {
|
|
3181 GdkEventButton *bevent = (GdkEventButton *)event;
|
|
3182 int x = bevent->x;
|
|
3183 GtkWidget *page;
|
|
3184 GtkWidget *label;
|
|
3185
|
844
|
3186 /* When ignoring events return TRUE so that the selected page doesn't
|
|
3187 * change. */
|
|
3188 if (hold_gui_events
|
|
3189 # ifdef FEAT_CMDWIN
|
|
3190 || cmdwin_type != 0
|
|
3191 # endif
|
|
3192 )
|
|
3193 return TRUE;
|
|
3194
|
689
|
3195 /* Find out where the click was. */
|
|
3196 for (clicked_page = 1; ; ++clicked_page)
|
|
3197 {
|
|
3198 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline),
|
|
3199 clicked_page - 1);
|
|
3200 if (page == NULL)
|
|
3201 {
|
|
3202 /* Past all the labels, return zero. */
|
|
3203 clicked_page = 0;
|
|
3204 break;
|
|
3205 }
|
|
3206 label = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
|
|
3207 /* The label size apparently doesn't include the spacing, estimate
|
|
3208 * it by the page position. */
|
|
3209 if (page->allocation.x * 2 + label->allocation.x
|
841
|
3210 + label->allocation.width + 1 >= x)
|
689
|
3211 break;
|
|
3212 }
|
|
3213
|
|
3214 /* If the event was generated for 3rd button popup the menu. */
|
|
3215 if (bevent->button == 3)
|
|
3216 {
|
|
3217 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
|
|
3218 bevent->button, bevent->time);
|
|
3219 /* We handled the event. */
|
|
3220 return TRUE;
|
|
3221 }
|
|
3222 else if (bevent->button == 1 && clicked_page == 0)
|
693
|
3223 {
|
689
|
3224 /* Click after all tabs moves to next tab page. */
|
693
|
3225 if (send_tabline_event(0) && gtk_main_level() > 0)
|
|
3226 gtk_main_quit();
|
|
3227 }
|
689
|
3228 }
|
844
|
3229
|
689
|
3230 /* We didn't handle the event. */
|
|
3231 return FALSE;
|
|
3232 }
|
685
|
3233
|
|
3234 /*
|
|
3235 * Handle selecting one of the tabs.
|
|
3236 */
|
|
3237 /*ARGSUSED*/
|
|
3238 static void
|
|
3239 on_select_tab(
|
|
3240 GtkNotebook *notebook,
|
|
3241 GtkNotebookPage *page,
|
|
3242 gint index,
|
|
3243 gpointer data)
|
|
3244 {
|
|
3245 if (!ignore_tabline_evt)
|
693
|
3246 {
|
|
3247 if (send_tabline_event(index + 1) && gtk_main_level() > 0)
|
|
3248 gtk_main_quit();
|
|
3249 }
|
685
|
3250 }
|
|
3251
|
714
|
3252 #ifndef HAVE_GTK2
|
|
3253 static int showing_tabline = 0;
|
|
3254 #endif
|
|
3255
|
685
|
3256 /*
|
|
3257 * Show or hide the tabline.
|
|
3258 */
|
|
3259 void
|
|
3260 gui_mch_show_tabline(int showit)
|
|
3261 {
|
|
3262 if (gui.tabline == NULL)
|
|
3263 return;
|
|
3264
|
714
|
3265 #ifdef HAVE_GTK2
|
|
3266 /* gtk_notebook_get_show_tabs does not exist in gtk+-1.2.10 */
|
685
|
3267 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
|
714
|
3268 #else
|
|
3269 if (!showit != !showing_tabline)
|
|
3270 #endif
|
685
|
3271 {
|
708
|
3272 /* Note: this may cause a resize event */
|
685
|
3273 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
|
791
|
3274 update_window_manager_hints(0, 0);
|
714
|
3275 #ifndef HAVE_GTK2
|
|
3276 showing_tabline = showit;
|
|
3277 #endif
|
685
|
3278 }
|
|
3279 }
|
|
3280
|
|
3281 /*
|
708
|
3282 * Return TRUE when tabline is displayed.
|
|
3283 */
|
|
3284 int
|
|
3285 gui_mch_showing_tabline(void)
|
|
3286 {
|
|
3287 return gui.tabline != NULL
|
714
|
3288 #ifdef HAVE_GTK2
|
|
3289 /* gtk_notebook_get_show_tabs does not exist in gtk+-1.2.10 */
|
|
3290 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline))
|
|
3291 #else
|
|
3292 && showing_tabline
|
|
3293 #endif
|
|
3294 ;
|
708
|
3295 }
|
|
3296
|
|
3297 /*
|
685
|
3298 * Update the labels of the tabline.
|
|
3299 */
|
|
3300 void
|
|
3301 gui_mch_update_tabline(void)
|
|
3302 {
|
|
3303 GtkWidget *page;
|
|
3304 GtkWidget *label;
|
|
3305 tabpage_T *tp;
|
|
3306 int nr = 0;
|
|
3307 int curtabidx = 0;
|
836
|
3308 char_u *labeltext;
|
685
|
3309
|
|
3310 if (gui.tabline == NULL)
|
|
3311 return;
|
|
3312
|
|
3313 ignore_tabline_evt = TRUE;
|
|
3314
|
|
3315 /* Add a label for each tab page. They all contain the same text area. */
|
|
3316 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
|
|
3317 {
|
|
3318 if (tp == curtab)
|
|
3319 curtabidx = nr;
|
|
3320
|
|
3321 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
|
|
3322 if (page == NULL)
|
|
3323 {
|
|
3324 /* Add notebook page */
|
|
3325 page = gtk_vbox_new(FALSE, 0);
|
|
3326 gtk_widget_show(page);
|
|
3327 label = gtk_label_new("-Empty-");
|
|
3328 gtk_widget_show(label);
|
|
3329 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
|
|
3330 page,
|
|
3331 label,
|
|
3332 nr++);
|
|
3333 }
|
|
3334
|
839
|
3335 get_tabline_label(tp, FALSE);
|
836
|
3336 labeltext = CONVERT_TO_UTF8(NameBuff);
|
685
|
3337 gtk_notebook_set_tab_label_text(GTK_NOTEBOOK(gui.tabline), page,
|
836
|
3338 (const gchar *)labeltext);
|
|
3339 CONVERT_TO_UTF8_FREE(labeltext);
|
685
|
3340 }
|
|
3341
|
|
3342 /* Remove any old labels. */
|
|
3343 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
|
|
3344 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
|
|
3345
|
|
3346 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
|
|
3347 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
|
|
3348
|
|
3349 ignore_tabline_evt = FALSE;
|
|
3350 }
|
|
3351
|
|
3352 /*
|
|
3353 * Set the current tab to "nr". First tab is 1.
|
|
3354 */
|
|
3355 void
|
|
3356 gui_mch_set_curtab(nr)
|
|
3357 int nr;
|
|
3358 {
|
|
3359 if (gui.tabline == NULL)
|
|
3360 return;
|
|
3361
|
|
3362 ignore_tabline_evt = TRUE;
|
|
3363 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
|
|
3364 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
|
|
3365 ignore_tabline_evt = FALSE;
|
|
3366 }
|
|
3367
|
|
3368 #endif /* FEAT_GUI_TABLINE */
|
|
3369
|
7
|
3370 /*
|
|
3371 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
|
|
3372 * Returns OK for success, FAIL when the GUI can't be started.
|
|
3373 */
|
|
3374 int
|
|
3375 gui_mch_init(void)
|
|
3376 {
|
|
3377 GtkWidget *vbox;
|
|
3378
|
|
3379 #ifdef FEAT_GUI_GNOME
|
|
3380 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
|
|
3381 * exits on failure, but that's a non-issue because we already called
|
|
3382 * gtk_init_check() in gui_mch_init_check(). */
|
|
3383 if (using_gnome)
|
|
3384 # ifdef HAVE_GTK2
|
|
3385 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
|
|
3386 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
|
|
3387 # else
|
|
3388 gnome_init(VIMPACKAGE, VIM_VERSION_SHORT, gui_argc, gui_argv);
|
|
3389 # endif
|
|
3390 #endif
|
|
3391 vim_free(gui_argv);
|
|
3392 gui_argv = NULL;
|
|
3393
|
|
3394 #ifdef HAVE_GTK2
|
|
3395 # if GLIB_CHECK_VERSION(2,1,3)
|
|
3396 /* Set the human-readable application name */
|
|
3397 g_set_application_name("Vim");
|
|
3398 # endif
|
|
3399 /*
|
|
3400 * Force UTF-8 output no matter what the value of 'encoding' is.
|
|
3401 * did_set_string_option() in option.c prohibits changing 'termencoding'
|
|
3402 * to something else than UTF-8 if the GUI is in use.
|
|
3403 */
|
|
3404 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
|
|
3405
|
|
3406 # ifdef FEAT_TOOLBAR
|
|
3407 gui_gtk_register_stock_icons();
|
|
3408 # endif
|
|
3409 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
|
|
3410 * The hard part is deciding install locations and the Makefile magic. */
|
|
3411 # if 0
|
|
3412 gtk_rc_parse("gtkrc");
|
|
3413 # endif
|
|
3414 #endif
|
|
3415
|
|
3416 /* Initialize values */
|
|
3417 gui.border_width = 2;
|
|
3418 gui.scrollbar_width = SB_DEFAULT_WIDTH;
|
|
3419 gui.scrollbar_height = SB_DEFAULT_WIDTH;
|
136
|
3420 /* LINTED: avoid warning: conversion to 'unsigned long' */
|
7
|
3421 gui.fgcolor = g_new0(GdkColor, 1);
|
136
|
3422 /* LINTED: avoid warning: conversion to 'unsigned long' */
|
7
|
3423 gui.bgcolor = g_new0(GdkColor, 1);
|
207
|
3424 /* LINTED: avoid warning: conversion to 'unsigned long' */
|
|
3425 gui.spcolor = g_new0(GdkColor, 1);
|
7
|
3426
|
|
3427 /* Initialise atoms */
|
|
3428 #ifdef FEAT_MBYTE
|
|
3429 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
|
|
3430 #endif
|
|
3431 #ifndef HAVE_GTK2
|
|
3432 compound_text_atom = gdk_atom_intern("COMPOUND_TEXT", FALSE);
|
|
3433 text_atom = gdk_atom_intern("TEXT", FALSE);
|
|
3434 #endif
|
|
3435
|
|
3436 /* Set default foreground and background colors. */
|
|
3437 gui.norm_pixel = gui.def_norm_pixel;
|
|
3438 gui.back_pixel = gui.def_back_pixel;
|
|
3439
|
|
3440 if (gtk_socket_id != 0)
|
|
3441 {
|
|
3442 GtkWidget *plug;
|
|
3443
|
|
3444 /* Use GtkSocket from another app. */
|
|
3445 #ifdef HAVE_GTK_MULTIHEAD
|
|
3446 plug = gtk_plug_new_for_display(gdk_display_get_default(),
|
|
3447 gtk_socket_id);
|
|
3448 #else
|
|
3449 plug = gtk_plug_new(gtk_socket_id);
|
|
3450 #endif
|
|
3451 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
|
|
3452 {
|
|
3453 gui.mainwin = plug;
|
|
3454 }
|
|
3455 else
|
|
3456 {
|
|
3457 g_warning("Connection to GTK+ socket (ID %u) failed",
|
|
3458 (unsigned int)gtk_socket_id);
|
|
3459 /* Pretend we never wanted it if it failed (get own window) */
|
|
3460 gtk_socket_id = 0;
|
|
3461 }
|
|
3462 }
|
|
3463
|
|
3464 if (gtk_socket_id == 0)
|
|
3465 {
|
|
3466 #ifdef FEAT_GUI_GNOME
|
|
3467 if (using_gnome)
|
|
3468 {
|
|
3469 gui.mainwin = gnome_app_new("Vim", NULL);
|
|
3470 # ifdef USE_XSMP
|
|
3471 /* Use the GNOME save-yourself functionality now. */
|
|
3472 xsmp_close();
|
|
3473 # endif
|
|
3474 }
|
|
3475 else
|
|
3476 #endif
|
|
3477 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
|
3478 }
|
|
3479
|
|
3480 gtk_widget_set_name(gui.mainwin, "vim-main-window");
|
|
3481
|
|
3482 #ifdef HAVE_GTK2
|
|
3483 /* Create the PangoContext used for drawing all text. */
|
|
3484 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
|
|
3485 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
|
|
3486 #endif
|
|
3487
|
|
3488 #ifndef HAVE_GTK2
|
|
3489 gtk_window_set_policy(GTK_WINDOW(gui.mainwin), TRUE, TRUE, TRUE);
|
|
3490 #endif
|
|
3491 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
|
|
3492 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
|
|
3493
|
|
3494 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
|
|
3495 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
|
|
3496
|
|
3497 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
|
|
3498 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
|
|
3499 #ifdef HAVE_GTK_MULTIHEAD
|
|
3500 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed",
|
|
3501 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
|
|
3502 #endif
|
|
3503 #ifdef HAVE_GTK2
|
|
3504 gui.accel_group = gtk_accel_group_new();
|
|
3505 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
|
|
3506 #else
|
|
3507 gui.accel_group = gtk_accel_group_get_default();
|
|
3508 #endif
|
|
3509
|
685
|
3510 /* A vertical box holds the menubar, toolbar and main text window. */
|
7
|
3511 vbox = gtk_vbox_new(FALSE, 0);
|
|
3512
|
|
3513 #ifdef FEAT_GUI_GNOME
|
|
3514 if (using_gnome)
|
|
3515 {
|
|
3516 # if defined(HAVE_GTK2) && defined(FEAT_MENU)
|
|
3517 /* automagically restore menubar/toolbar placement */
|
|
3518 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
|
|
3519 # endif
|
|
3520 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
|
|
3521 }
|
|
3522 else
|
|
3523 #endif
|
|
3524 {
|
|
3525 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
|
|
3526 gtk_widget_show(vbox);
|
|
3527 }
|
|
3528
|
|
3529 #ifdef FEAT_MENU
|
|
3530 /*
|
|
3531 * Create the menubar and handle
|
|
3532 */
|
|
3533 gui.menubar = gtk_menu_bar_new();
|
|
3534 gtk_widget_set_name(gui.menubar, "vim-menubar");
|
|
3535
|
36
|
3536 # ifdef HAVE_GTK2
|
|
3537 /* Avoid that GTK takes <F10> away from us. */
|
|
3538 {
|
|
3539 GtkSettings *gtk_settings;
|
|
3540
|
|
3541 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
|
|
3542 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
|
|
3543 }
|
|
3544 # endif
|
|
3545
|
|
3546
|
7
|
3547 # ifdef FEAT_GUI_GNOME
|
|
3548 if (using_gnome)
|
|
3549 {
|
|
3550 # ifdef HAVE_GTK2
|
|
3551 BonoboDockItem *dockitem;
|
|
3552
|
|
3553 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
|
|
3554 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
|
|
3555 GNOME_APP_MENUBAR_NAME);
|
798
|
3556 /* We don't want the menu to float. */
|
|
3557 bonobo_dock_item_set_behavior(dockitem,
|
|
3558 bonobo_dock_item_get_behavior(dockitem)
|
|
3559 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
|
7
|
3560 gui.menubar_h = GTK_WIDGET(dockitem);
|
|
3561 # else
|
|
3562 gui.menubar_h = gnome_dock_item_new("VimMainMenu",
|
|
3563 GNOME_DOCK_ITEM_BEH_EXCLUSIVE |
|
|
3564 GNOME_DOCK_ITEM_BEH_NEVER_VERTICAL);
|
|
3565 gtk_container_add(GTK_CONTAINER(gui.menubar_h), gui.menubar);
|
|
3566
|
|
3567 gnome_dock_add_item(GNOME_DOCK(GNOME_APP(gui.mainwin)->dock),
|
|
3568 GNOME_DOCK_ITEM(gui.menubar_h),
|
|
3569 GNOME_DOCK_TOP, /* placement */
|
|
3570 1, /* band_num */
|
|
3571 0, /* band_position */
|
|
3572 0, /* offset */
|
|
3573 TRUE);
|
|
3574 gtk_widget_show(gui.menubar);
|
|
3575 # endif
|
|
3576 }
|
|
3577 else
|
|
3578 # endif /* FEAT_GUI_GNOME */
|
|
3579 {
|
827
|
3580 /* Always show the menubar, otherwise <F10> doesn't work. It may be
|
|
3581 * disabled in gui_init() later. */
|
|
3582 gtk_widget_show(gui.menubar);
|
7
|
3583 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
|
|
3584 }
|
|
3585 #endif /* FEAT_MENU */
|
|
3586
|
|
3587 #ifdef FEAT_TOOLBAR
|
|
3588 /*
|
|
3589 * Create the toolbar and handle
|
|
3590 */
|
|
3591 # ifdef HAVE_GTK2
|
|
3592 /* some aesthetics on the toolbar */
|
|
3593 gtk_rc_parse_string(
|
|
3594 "style \"vim-toolbar-style\" {\n"
|
|
3595 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
|
|
3596 "}\n"
|
|
3597 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
|
|
3598 gui.toolbar = gtk_toolbar_new();
|
|
3599 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
|
|
3600 # else
|
|
3601 gui.toolbar = gtk_toolbar_new(GTK_ORIENTATION_HORIZONTAL,
|
|
3602 GTK_TOOLBAR_ICONS);
|
|
3603 gtk_toolbar_set_button_relief(GTK_TOOLBAR(gui.toolbar), GTK_RELIEF_NONE);
|
|
3604 # endif
|
|
3605 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
|
|
3606
|
|
3607 # ifdef FEAT_GUI_GNOME
|
|
3608 if (using_gnome)
|
|
3609 {
|
|
3610 # ifdef HAVE_GTK2
|
|
3611 BonoboDockItem *dockitem;
|
|
3612
|
|
3613 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
|
|
3614 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
|
|
3615 GNOME_APP_TOOLBAR_NAME);
|
|
3616 gui.toolbar_h = GTK_WIDGET(dockitem);
|
795
|
3617 /* When the toolbar is floating it gets stuck. So long as that isn't
|
798
|
3618 * fixed let's disallow floating. */
|
795
|
3619 bonobo_dock_item_set_behavior(dockitem,
|
798
|
3620 bonobo_dock_item_get_behavior(dockitem)
|
|
3621 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
|
7
|
3622 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
|
|
3623 # else
|
|
3624 GtkWidget *dockitem;
|
|
3625
|
|
3626 dockitem = gnome_dock_item_new("VimToolBar",
|
|
3627 GNOME_DOCK_ITEM_BEH_EXCLUSIVE);
|
|
3628 gtk_container_add(GTK_CONTAINER(dockitem), GTK_WIDGET(gui.toolbar));
|
|
3629 gui.toolbar_h = dockitem;
|
|
3630
|
|
3631 gnome_dock_add_item(GNOME_DOCK(GNOME_APP(gui.mainwin)->dock),
|
|
3632 GNOME_DOCK_ITEM(dockitem),
|
|
3633 GNOME_DOCK_TOP, /* placement */
|
|
3634 1, /* band_num */
|
|
3635 1, /* band_position */
|
|
3636 0, /* offset */
|
|
3637 TRUE);
|
|
3638 gtk_container_border_width(GTK_CONTAINER(gui.toolbar), 2);
|
|
3639 gtk_widget_show(gui.toolbar);
|
|
3640 # endif
|
|
3641 }
|
|
3642 else
|
|
3643 # endif /* FEAT_GUI_GNOME */
|
|
3644 {
|
|
3645 # ifndef HAVE_GTK2
|
|
3646 gtk_container_border_width(GTK_CONTAINER(gui.toolbar), 1);
|
|
3647 # endif
|
|
3648 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
|
|
3649 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
|
|
3650 gtk_widget_show(gui.toolbar);
|
|
3651 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
|
|
3652 }
|
|
3653 #endif /* FEAT_TOOLBAR */
|
|
3654
|
685
|
3655 #ifdef FEAT_GUI_TABLINE
|
782
|
3656 /*
|
|
3657 * Use a Notebook for the tab pages labels. The labels are hidden by
|
|
3658 * default.
|
|
3659 */
|
791
|
3660 gui.tabline = gtk_notebook_new();
|
|
3661 gtk_widget_show(gui.tabline);
|
|
3662 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
|
|
3663 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
|
|
3664 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
|
841
|
3665 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
|
791
|
3666
|
|
3667 {
|
|
3668 GtkWidget *page, *label;
|
|
3669
|
|
3670 /* Add the first tab. */
|
|
3671 page = gtk_vbox_new(FALSE, 0);
|
|
3672 gtk_widget_show(page);
|
|
3673 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
|
|
3674 label = gtk_label_new("-Empty-");
|
|
3675 gtk_widget_show(label);
|
|
3676 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, label);
|
|
3677 }
|
|
3678 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
|
|
3679 GTK_SIGNAL_FUNC(on_select_tab), NULL);
|
|
3680
|
|
3681 /* Create a popup menu for the tab line and connect it. */
|
|
3682 tabline_menu = create_tabline_menu();
|
|
3683 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
|
|
3684 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
|
685
|
3685 #endif
|
|
3686
|
7
|
3687 gui.formwin = gtk_form_new();
|
|
3688 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
|
|
3689 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
|
|
3690
|
|
3691 gui.drawarea = gtk_drawing_area_new();
|
|
3692
|
|
3693 /* Determine which events we will filter. */
|
|
3694 gtk_widget_set_events(gui.drawarea,
|
|
3695 GDK_EXPOSURE_MASK |
|
|
3696 GDK_ENTER_NOTIFY_MASK |
|
|
3697 GDK_LEAVE_NOTIFY_MASK |
|
|
3698 GDK_BUTTON_PRESS_MASK |
|
|
3699 GDK_BUTTON_RELEASE_MASK |
|
|
3700 #ifdef HAVE_GTK2
|
|
3701 GDK_SCROLL_MASK |
|
|
3702 #endif
|
|
3703 GDK_KEY_PRESS_MASK |
|
|
3704 GDK_KEY_RELEASE_MASK |
|
|
3705 GDK_POINTER_MOTION_MASK |
|
|
3706 GDK_POINTER_MOTION_HINT_MASK);
|
|
3707
|
|
3708 gtk_widget_show(gui.drawarea);
|
|
3709 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
|
|
3710 gtk_widget_show(gui.formwin);
|
|
3711 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
|
|
3712
|
|
3713 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
|
|
3714 * and not the window. */
|
|
3715 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
|
|
3716 : GTK_OBJECT(gui.drawarea),
|
|
3717 "key_press_event",
|
|
3718 GTK_SIGNAL_FUNC(key_press_event), NULL);
|
|
3719 #if defined(FEAT_XIM) && defined(HAVE_GTK2)
|
|
3720 /* Also forward key release events for the benefit of GTK+ 2 input
|
|
3721 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
|
|
3722 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
|
|
3723 : G_OBJECT(gui.drawarea),
|
|
3724 "key_release_event",
|
|
3725 G_CALLBACK(&key_release_event), NULL);
|
|
3726 #endif
|
|
3727 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
|
|
3728 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
|
|
3729 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
|
|
3730 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
|
|
3731
|
|
3732 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
|
|
3733 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
|
|
3734
|
|
3735 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
|
|
3736
|
|
3737 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
|
|
3738 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
|
|
3739 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
|
|
3740 #endif
|
|
3741
|
|
3742 if (gtk_socket_id != 0)
|
|
3743 /* make sure keybord input can go to the drawarea */
|
|
3744 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
|
|
3745
|
|
3746 /*
|
|
3747 * Set clipboard specific atoms
|
|
3748 */
|
|
3749 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
|
|
3750 #ifdef FEAT_MBYTE
|
|
3751 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
|
|
3752 #endif
|
|
3753 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
|
|
3754 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
|
|
3755
|
|
3756 /*
|
|
3757 * Start out by adding the configured border width into the border offset.
|
|
3758 */
|
|
3759 gui.border_offset = gui.border_width;
|
|
3760
|
|
3761 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
|
|
3762 GTK_SIGNAL_FUNC(visibility_event), NULL);
|
|
3763 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
|
|
3764 GTK_SIGNAL_FUNC(expose_event), NULL);
|
|
3765
|
|
3766 /*
|
|
3767 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
|
|
3768 * Only needed for some window managers.
|
|
3769 */
|
|
3770 if (vim_strchr(p_go, GO_POINTER) != NULL)
|
|
3771 {
|
|
3772 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
|
|
3773 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
|
|
3774 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
|
|
3775 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
|
|
3776 }
|
|
3777
|
791
|
3778 /* Real windows can get focus ... GtkPlug, being a mere container can't,
|
|
3779 * only its widgets. Arguably, this could be common code and we not use
|
|
3780 * the window focus at all, but let's be safe.
|
|
3781 */
|
|
3782 if (gtk_socket_id == 0)
|
|
3783 {
|
|
3784 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
|
|
3785 GTK_SIGNAL_FUNC(focus_out_event), NULL);
|
|
3786 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
|
|
3787 GTK_SIGNAL_FUNC(focus_in_event), NULL);
|
|
3788 }
|
|
3789 else
|
|
3790 {
|
|
3791 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
|
|
3792 GTK_SIGNAL_FUNC(focus_out_event), NULL);
|
|
3793 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
|
|
3794 GTK_SIGNAL_FUNC(focus_in_event), NULL);
|
|
3795 #ifdef FEAT_GUI_TABLINE
|
|
3796 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
|
|
3797 GTK_SIGNAL_FUNC(focus_out_event), NULL);
|
|
3798 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
|
|
3799 GTK_SIGNAL_FUNC(focus_in_event), NULL);
|
|
3800 #endif /* FEAT_GUI_TABLINE */
|
|
3801 }
|
7
|
3802
|
|
3803 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
|
|
3804 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
|
|
3805 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
|
|
3806 GTK_SIGNAL_FUNC(button_press_event), NULL);
|
|
3807 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
|
|
3808 GTK_SIGNAL_FUNC(button_release_event), NULL);
|
|
3809 #ifdef HAVE_GTK2
|
|
3810 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
|
|
3811 G_CALLBACK(&scroll_event), NULL);
|
|
3812 #endif
|
|
3813
|
|
3814 /*
|
|
3815 * Add selection handler functions.
|
|
3816 */
|
|
3817 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
|
|
3818 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
|
|
3819 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
|
|
3820 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
|
|
3821
|
|
3822 /*
|
|
3823 * Add selection targets for PRIMARY and CLIPBOARD selections.
|
|
3824 */
|
|
3825 gtk_selection_add_targets(gui.drawarea,
|
|
3826 (GdkAtom)GDK_SELECTION_PRIMARY,
|
|
3827 selection_targets, N_SELECTION_TARGETS);
|
|
3828 gtk_selection_add_targets(gui.drawarea,
|
|
3829 (GdkAtom)clip_plus.gtk_sel_atom,
|
|
3830 selection_targets, N_SELECTION_TARGETS);
|
|
3831
|
|
3832 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
|
|
3833 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
|
|
3834
|
|
3835 /* Pretend we don't have input focus, we will get an event if we do. */
|
|
3836 gui.in_focus = FALSE;
|
|
3837
|
|
3838 return OK;
|
|
3839 }
|
|
3840
|
|
3841 #if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
|
|
3842 /*
|
|
3843 * This is called from gui_start() after a fork() has been done.
|
|
3844 * We have to tell the session manager our new PID.
|
|
3845 */
|
|
3846 void
|
|
3847 gui_mch_forked(void)
|
|
3848 {
|
|
3849 if (using_gnome)
|
|
3850 {
|
|
3851 GnomeClient *client;
|
|
3852
|
|
3853 client = gnome_master_client();
|
|
3854
|
|
3855 if (client != NULL)
|
|
3856 gnome_client_set_process_id(client, getpid());
|
|
3857 }
|
|
3858 }
|
|
3859 #endif /* FEAT_GUI_GNOME && FEAT_SESSION */
|
|
3860
|
|
3861 /*
|
|
3862 * Called when the foreground or background color has been changed.
|
|
3863 * This used to change the graphics contexts directly but we are
|
|
3864 * currently manipulating them where desired.
|
|
3865 */
|
|
3866 void
|
|
3867 gui_mch_new_colors(void)
|
|
3868 {
|
|
3869 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
|
|
3870 {
|
|
3871 GdkColor color = { 0, 0, 0, 0 };
|
|
3872
|
|
3873 color.pixel = gui.back_pixel;
|
|
3874 gdk_window_set_background(gui.drawarea->window, &color);
|
|
3875 }
|
|
3876 }
|
|
3877
|
|
3878 /*
|
|
3879 * This signal informs us about the need to rearrange our sub-widgets.
|
|
3880 */
|
|
3881 /*ARGSUSED*/
|
|
3882 static gint
|
|
3883 form_configure_event(GtkWidget *widget, GdkEventConfigure *event,
|
|
3884 gpointer data)
|
|
3885 {
|
791
|
3886 int usable_height = event->height;
|
|
3887
|
|
3888 /* When in a GtkPlug, we can't guarantee valid heights (as a round
|
|
3889 * no. of char-heights), so we have to manually sanitise them.
|
|
3890 * Widths seem to sort themselves out, don't ask me why.
|
|
3891 */
|
|
3892 if (gtk_socket_id != 0)
|
|
3893 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
|
|
3894
|
7
|
3895 gtk_form_freeze(GTK_FORM(gui.formwin));
|
791
|
3896 gui_resize_shell(event->width, usable_height);
|
7
|
3897 gtk_form_thaw(GTK_FORM(gui.formwin));
|
|
3898
|
|
3899 return TRUE;
|
|
3900 }
|
|
3901
|
|
3902 /*
|
|
3903 * Function called when window already closed.
|
|
3904 * We can't do much more here than to trying to preserve what had been done,
|
|
3905 * since the window is already inevitably going away.
|
|
3906 */
|
|
3907 /*ARGSUSED0*/
|
|
3908 static void
|
|
3909 mainwin_destroy_cb(GtkObject *object, gpointer data)
|
|
3910 {
|
|
3911 /* Don't write messages to the GUI anymore */
|
|
3912 full_screen = FALSE;
|
|
3913
|
|
3914 gui.mainwin = NULL;
|
|
3915 gui.drawarea = NULL;
|
|
3916
|
|
3917 if (!exiting) /* only do anything if the destroy was unexpected */
|
|
3918 {
|
419
|
3919 vim_strncpy(IObuff,
|
|
3920 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
|
|
3921 IOSIZE - 1);
|
7
|
3922 preserve_exit();
|
|
3923 }
|
|
3924 }
|
|
3925
|
791
|
3926
|
|
3927 /*
|
|
3928 * Bit of a hack to ensure we start GtkPlug windows with the correct window
|
|
3929 * hints (and thus the required size from -geom), but that after that we
|
|
3930 * put the hints back to normal (the actual minimum size) so we may
|
|
3931 * subsequently be resized smaller. GtkSocket (the parent end) uses the
|
|
3932 * plug's window 'min hints to set *it's* minum size, but that's also the
|
|
3933 * only way we have of making ourselves bigger (by set lines/columns).
|
|
3934 * Thus set hints at start-up to ensure correct init. size, then a
|
|
3935 * second after the final attempt to reset the real minimum hinst (done by
|
|
3936 * scrollbar init.), actually do the sttandard hinst and stop the timer.
|
|
3937 * We'll not let the default hints be set while this timer's active.
|
|
3938 */
|
|
3939 /*ARGSUSED*/
|
|
3940 static gboolean
|
|
3941 check_startup_plug_hints(gpointer data)
|
|
3942 {
|
|
3943 if (init_window_hints_state == 1)
|
|
3944 {
|
|
3945 /* Safe to use normal hints now */
|
|
3946 init_window_hints_state = 0;
|
|
3947 update_window_manager_hints(0, 0);
|
|
3948 return FALSE; /* stop timer */
|
|
3949 }
|
|
3950
|
|
3951 /* Keep on trying */
|
|
3952 init_window_hints_state = 1;
|
|
3953 return TRUE;
|
|
3954 }
|
|
3955
|
|
3956
|
7
|
3957 /*
|
|
3958 * Open the GUI window which was created by a call to gui_mch_init().
|
|
3959 */
|
|
3960 int
|
|
3961 gui_mch_open(void)
|
|
3962 {
|
|
3963 guicolor_T fg_pixel = INVALCOLOR;
|
|
3964 guicolor_T bg_pixel = INVALCOLOR;
|
|
3965
|
|
3966 #ifdef HAVE_GTK2
|
|
3967 /*
|
|
3968 * Allow setting a window role on the command line, or invent one
|
|
3969 * if none was specified. This is mainly useful for GNOME session
|
|
3970 * support; allowing the WM to restore window placement.
|
|
3971 */
|
|
3972 if (role_argument != NULL)
|
|
3973 {
|
|
3974 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
|
|
3975 }
|
|
3976 else
|
|
3977 {
|
|
3978 char *role;
|
|
3979
|
|
3980 /* Invent a unique-enough ID string for the role */
|
|
3981 role = g_strdup_printf("vim-%u-%u-%u",
|
|
3982 (unsigned)mch_get_pid(),
|
|
3983 (unsigned)g_random_int(),
|
|
3984 (unsigned)time(NULL));
|
|
3985
|
|
3986 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
|
|
3987 g_free(role);
|
|
3988 }
|
|
3989 #endif
|
|
3990
|
|
3991 if (gui_win_x != -1 && gui_win_y != -1)
|
|
3992 #ifdef HAVE_GTK2
|
|
3993 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
|
|
3994 #else
|
|
3995 gtk_widget_set_uposition(gui.mainwin, gui_win_x, gui_win_y);
|
|
3996 #endif
|
|
3997
|
|
3998 /* Determine user specified geometry, if present. */
|
|
3999 if (gui.geom != NULL)
|
|
4000 {
|
|
4001 int mask;
|
|
4002 unsigned int w, h;
|
|
4003 int x = 0;
|
|
4004 int y = 0;
|
|
4005
|
|
4006 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
|
|
4007
|
|
4008 if (mask & WidthValue)
|
|
4009 Columns = w;
|
|
4010 if (mask & HeightValue)
|
|
4011 Rows = h;
|
|
4012 if (mask & (XValue | YValue))
|
|
4013 #ifdef HAVE_GTK2
|
|
4014 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
|
|
4015 #else
|
|
4016 gtk_widget_set_uposition(gui.mainwin, x, y);
|
|
4017 #endif
|
|
4018 vim_free(gui.geom);
|
|
4019 gui.geom = NULL;
|
791
|
4020
|
|
4021 /* From now until everyone's stopped trying to set the window hints
|
|
4022 * to their correct minimum values, stop them being set as we need
|
|
4023 * them to remain at our required size for the parent GtkSocket to
|
|
4024 * give us the right initial size.
|
|
4025 */
|
|
4026 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
|
|
4027 {
|
|
4028 guint pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
|
|
4029 guint pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
|
|
4030
|
|
4031 #ifdef HAVE_GTK2
|
|
4032 pixel_width += get_menu_tool_width();
|
|
4033 pixel_height += get_menu_tool_height();
|
|
4034 #endif
|
|
4035
|
|
4036 update_window_manager_hints(pixel_width, pixel_height);
|
|
4037 init_window_hints_state = 1;
|
|
4038 g_timeout_add(1000, check_startup_plug_hints, NULL);
|
|
4039 }
|
7
|
4040 }
|
|
4041
|
|
4042 gtk_form_set_size(GTK_FORM(gui.formwin),
|
|
4043 (guint)(gui_get_base_width() + Columns * gui.char_width),
|
|
4044 (guint)(gui_get_base_height() + Rows * gui.char_height));
|
791
|
4045 update_window_manager_hints(0, 0);
|
7
|
4046
|
|
4047 if (foreground_argument != NULL)
|
|
4048 fg_pixel = gui_get_color((char_u *)foreground_argument);
|
|
4049 if (fg_pixel == INVALCOLOR)
|
|
4050 fg_pixel = gui_get_color((char_u *)"Black");
|
|
4051
|
|
4052 if (background_argument != NULL)
|
|
4053 bg_pixel = gui_get_color((char_u *)background_argument);
|
|
4054 if (bg_pixel == INVALCOLOR)
|
|
4055 bg_pixel = gui_get_color((char_u *)"White");
|
|
4056
|
|
4057 if (found_reverse_arg)
|
|
4058 {
|
|
4059 gui.def_norm_pixel = bg_pixel;
|
|
4060 gui.def_back_pixel = fg_pixel;
|
|
4061 }
|
|
4062 else
|
|
4063 {
|
|
4064 gui.def_norm_pixel = fg_pixel;
|
|
4065 gui.def_back_pixel = bg_pixel;
|
|
4066 }
|
|
4067
|
|
4068 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
|
|
4069 * in a vimrc file) */
|
|
4070 set_normal_colors();
|
|
4071
|
|
4072 /* Check that none of the colors are the same as the background color */
|
|
4073 gui_check_colors();
|
|
4074
|
|
4075 /* Get the colors for the highlight groups (gui_check_colors() might have
|
|
4076 * changed them). */
|
|
4077 highlight_gui_started(); /* re-init colors and fonts */
|
|
4078
|
|
4079 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy",
|
|
4080 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL);
|
|
4081
|
|
4082 #ifdef FEAT_HANGULIN
|
|
4083 hangul_keyboard_set();
|
|
4084 #endif
|
|
4085
|
|
4086 /*
|
|
4087 * Notify the fixed area about the need to resize the contents of the
|
|
4088 * gui.formwin, which we use for random positioning of the included
|
|
4089 * components.
|
|
4090 *
|
|
4091 * We connect this signal deferred finally after anything is in place,
|
|
4092 * since this is intended to handle resizements coming from the window
|
|
4093 * manager upon us and should not interfere with what VIM is requesting
|
|
4094 * upon startup.
|
|
4095 */
|
|
4096 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event",
|
|
4097 GTK_SIGNAL_FUNC(form_configure_event), NULL);
|
|
4098
|
|
4099 #ifdef FEAT_DND
|
|
4100 /*
|
|
4101 * Set up for receiving DND items.
|
|
4102 */
|
|
4103 gtk_drag_dest_set(gui.drawarea,
|
|
4104 GTK_DEST_DEFAULT_ALL,
|
|
4105 dnd_targets, N_DND_TARGETS,
|
|
4106 GDK_ACTION_COPY);
|
|
4107
|
|
4108 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received",
|
|
4109 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL);
|
|
4110 #endif
|
|
4111
|
|
4112 #ifdef HAVE_GTK2
|
|
4113 /* With GTK+ 2, we need to iconify the window before calling show()
|
|
4114 * to avoid mapping the window for a short time. This is just as one
|
|
4115 * would expect it to work, but it's different in GTK+ 1. The funny
|
|
4116 * thing is that iconifying after show() _does_ work with GTK+ 1.
|
|
4117 * (BTW doing this in the "realize" handler makes no difference.) */
|
|
4118 if (found_iconic_arg && gtk_socket_id == 0)
|
|
4119 gui_mch_iconify();
|
|
4120 #endif
|
|
4121
|
|
4122 {
|
|
4123 #if defined(FEAT_GUI_GNOME) && defined(HAVE_GTK2) && defined(FEAT_MENU)
|
|
4124 unsigned long menu_handler = 0;
|
|
4125 # ifdef FEAT_TOOLBAR
|
|
4126 unsigned long tool_handler = 0;
|
|
4127 # endif
|
|
4128 /*
|
|
4129 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
|
|
4130 * show when restoring the saved layout configuration. We can't just
|
|
4131 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
|
|
4132 * a toplevel window and thus will be realized immediately. Instead,
|
|
4133 * connect signal handlers to hide the widgets just after they've been
|
|
4134 * marked visible, but before the main window is realized.
|
|
4135 */
|
|
4136 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
|
|
4137 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
|
|
4138 G_CALLBACK(>k_widget_hide),
|
|
4139 NULL);
|
|
4140 # ifdef FEAT_TOOLBAR
|
|
4141 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
|
|
4142 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
|
|
4143 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
|
|
4144 G_CALLBACK(>k_widget_hide),
|
|
4145 NULL);
|
|
4146 # endif
|
|
4147 #endif
|
|
4148 gtk_widget_show(gui.mainwin);
|
|
4149
|
|
4150 #if defined(FEAT_GUI_GNOME) && defined(HAVE_GTK2) && defined(FEAT_MENU)
|
|
4151 if (menu_handler != 0)
|
|
4152 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
|
|
4153 # ifdef FEAT_TOOLBAR
|
|
4154 if (tool_handler != 0)
|
|
4155 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
|
|
4156 # endif
|
|
4157 #endif
|
|
4158 }
|
|
4159
|
|
4160 #ifndef HAVE_GTK2
|
|
4161 /* With GTK+ 1, we need to iconify the window after calling show().
|
|
4162 * See the comment above for details. */
|
|
4163 if (found_iconic_arg && gtk_socket_id == 0)
|
|
4164 gui_mch_iconify();
|
|
4165 #endif
|
|
4166
|
|
4167 return OK;
|
|
4168 }
|
|
4169
|
|
4170
|
|
4171 /*ARGSUSED0*/
|
|
4172 void
|
|
4173 gui_mch_exit(int rc)
|
|
4174 {
|
|
4175 if (gui.mainwin != NULL)
|
|
4176 gtk_widget_destroy(gui.mainwin);
|
|
4177
|
|
4178 if (gtk_main_level() > 0)
|
|
4179 gtk_main_quit();
|
|
4180 }
|
|
4181
|
|
4182 /*
|
|
4183 * Get the position of the top left corner of the window.
|
|
4184 */
|
|
4185 int
|
|
4186 gui_mch_get_winpos(int *x, int *y)
|
|
4187 {
|
|
4188 #ifdef HAVE_GTK2
|
|
4189 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
|
|
4190 #else
|
|
4191 /* For some people this must be gdk_window_get_origin() for a correct
|
|
4192 * result. Where is the documentation! */
|
|
4193 gdk_window_get_root_origin(gui.mainwin->window, x, y);
|
|
4194 #endif
|
|
4195 return OK;
|
|
4196 }
|
|
4197
|
|
4198 /*
|
|
4199 * Set the position of the top left corner of the window to the given
|
|
4200 * coordinates.
|
|
4201 */
|
|
4202 void
|
|
4203 gui_mch_set_winpos(int x, int y)
|
|
4204 {
|
|
4205 #ifdef HAVE_GTK2
|
|
4206 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
|
|
4207 #else
|
|
4208 gdk_window_move(gui.mainwin->window, x, y);
|
|
4209 #endif
|
|
4210 }
|
|
4211
|
|
4212 #ifdef HAVE_GTK2
|
|
4213 #if 0
|
|
4214 static int resize_idle_installed = FALSE;
|
|
4215 /*
|
|
4216 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
|
|
4217 * the shell size doesn't exceed the window size, i.e. if the window manager
|
|
4218 * ignored our size request. Usually this happens if the window is maximized.
|
|
4219 *
|
|
4220 * FIXME: It'd be nice if we could find a little more orthodox solution.
|
|
4221 * See also the remark below in gui_mch_set_shellsize().
|
|
4222 *
|
|
4223 * DISABLED: When doing ":set lines+=1" this function would first invoke
|
|
4224 * gui_resize_shell() with the old size, then the normal callback would
|
|
4225 * report the new size through form_configure_event(). That caused the window
|
|
4226 * layout to be messed up.
|
|
4227 */
|
|
4228 /*ARGSUSED0*/
|
|
4229 static gboolean
|
|
4230 force_shell_resize_idle(gpointer data)
|
|
4231 {
|
|
4232 if (gui.mainwin != NULL
|
|
4233 && GTK_WIDGET_REALIZED(gui.mainwin)
|
|
4234 && GTK_WIDGET_VISIBLE(gui.mainwin))
|
|
4235 {
|
|
4236 int width;
|
|
4237 int height;
|
|
4238
|
|
4239 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
|
|
4240
|
|
4241 width -= get_menu_tool_width();
|
|
4242 height -= get_menu_tool_height();
|
|
4243
|
|
4244 gui_resize_shell(width, height);
|
|
4245 }
|
|
4246
|
|
4247 resize_idle_installed = FALSE;
|
|
4248 return FALSE; /* don't call me again */
|
|
4249 }
|
|
4250 #endif
|
|
4251 #endif /* HAVE_GTK2 */
|
|
4252
|
|
4253 /*
|
|
4254 * Set the windows size.
|
|
4255 */
|
|
4256 /*ARGSUSED2*/
|
|
4257 void
|
|
4258 gui_mch_set_shellsize(int width, int height,
|
|
4259 int min_width, int min_height,
|
814
|
4260 int base_width, int base_height,
|
|
4261 int direction)
|
7
|
4262 {
|
|
4263 #ifndef HAVE_GTK2
|
|
4264 /* Hack: When the form already is at the desired size, the window might
|
|
4265 * have been resized with the mouse. Force a resize by setting a
|
|
4266 * different size first. */
|
|
4267 if (GTK_FORM(gui.formwin)->width == width
|
|
4268 && GTK_FORM(gui.formwin)->height == height)
|
|
4269 {
|
|
4270 gtk_form_set_size(GTK_FORM(gui.formwin), width + 1, height + 1);
|
|
4271 gui_mch_update();
|
|
4272 }
|
|
4273 gtk_form_set_size(GTK_FORM(gui.formwin), width, height);
|
|
4274 #endif
|
|
4275
|
|
4276 /* give GTK+ a chance to put all widget's into place */
|
|
4277 gui_mch_update();
|
|
4278
|
791
|
4279 #ifndef HAVE_GTK2
|
7
|
4280 /* this will cause the proper resizement to happen too */
|
791
|
4281 update_window_manager_hints(0, 0);
|
|
4282
|
|
4283 #else /* HAVE_GTK2 */
|
|
4284 /* this will cause the proper resizement to happen too */
|
|
4285 if (gtk_socket_id == 0)
|
|
4286 update_window_manager_hints(0, 0);
|
|
4287
|
7
|
4288 /* With GTK+ 2, changing the size of the form widget doesn't resize
|
791
|
4289 * the window. So let's do it the other way around and resize the
|
7
|
4290 * main window instead. */
|
|
4291 width += get_menu_tool_width();
|
|
4292 height += get_menu_tool_height();
|
|
4293
|
791
|
4294 if (gtk_socket_id == 0)
|
|
4295 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
|
|
4296 else
|
|
4297 update_window_manager_hints(width, height);
|
7
|
4298
|
|
4299 #if 0
|
|
4300 if (!resize_idle_installed)
|
|
4301 {
|
|
4302 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
|
|
4303 &force_shell_resize_idle, NULL, NULL);
|
|
4304 resize_idle_installed = TRUE;
|
|
4305 }
|
|
4306 #endif
|
|
4307 /*
|
|
4308 * Wait until all events are processed to prevent a crash because the
|
|
4309 * real size of the drawing area doesn't reflect Vim's internal ideas.
|
|
4310 *
|
|
4311 * This is a bit of a hack, since Vim is a terminal application with a GUI
|
|
4312 * on top, while the GUI expects to be the boss.
|
|
4313 */
|
|
4314 gui_mch_update();
|
|
4315 #endif
|
|
4316 }
|
|
4317
|
|
4318
|
|
4319 /*
|
|
4320 * The screen size is used to make sure the initial window doesn't get bigger
|
|
4321 * than the screen. This subtracts some room for menubar, toolbar and window
|
|
4322 * decorations.
|
|
4323 */
|
|
4324 void
|
|
4325 gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
|
|
4326 {
|
|
4327 #ifdef HAVE_GTK_MULTIHEAD
|
|
4328 GdkScreen* screen;
|
|
4329
|
|
4330 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin))
|
|
4331 screen = gtk_widget_get_screen(gui.mainwin);
|
|
4332 else
|
|
4333 screen = gdk_screen_get_default();
|
|
4334
|
|
4335 *screen_w = gdk_screen_get_width(screen);
|
|
4336 *screen_h = gdk_screen_get_height(screen) - p_ghr;
|
|
4337 #else
|
|
4338 *screen_w = gdk_screen_width();
|
|
4339 /* Subtract 'guiheadroom' from the height to allow some room for the
|
|
4340 * window manager (task list and window title bar). */
|
|
4341 *screen_h = gdk_screen_height() - p_ghr;
|
|
4342 #endif
|
|
4343
|
|
4344 /*
|
|
4345 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
|
|
4346 * the toolbar and menubar for GTK, we subtract them from the screen
|
|
4347 * hight, so that the window size can be made to fit on the screen.
|
|
4348 * This should be completely changed later.
|
|
4349 */
|
|
4350 *screen_w -= get_menu_tool_width();
|
|
4351 *screen_h -= get_menu_tool_height();
|
|
4352 }
|
|
4353
|
|
4354 #if defined(FEAT_TITLE) || defined(PROTO)
|
|
4355 /*ARGSUSED*/
|
|
4356 void
|
|
4357 gui_mch_settitle(char_u *title, char_u *icon)
|
|
4358 {
|
|
4359 # ifdef HAVE_GTK2
|
|
4360 if (title != NULL && output_conv.vc_type != CONV_NONE)
|
|
4361 title = string_convert(&output_conv, title, NULL);
|
|
4362 # endif
|
|
4363
|
|
4364 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
|
|
4365
|
|
4366 # ifdef HAVE_GTK2
|
|
4367 if (output_conv.vc_type != CONV_NONE)
|
|
4368 vim_free(title);
|
|
4369 # endif
|
|
4370 }
|
|
4371 #endif /* FEAT_TITLE */
|
|
4372
|
|
4373 #if defined(FEAT_MENU) || defined(PROTO)
|
|
4374 void
|
|
4375 gui_mch_enable_menu(int showit)
|
|
4376 {
|
|
4377 GtkWidget *widget;
|
|
4378
|
|
4379 # ifdef FEAT_GUI_GNOME
|
|
4380 if (using_gnome)
|
|
4381 widget = gui.menubar_h;
|
|
4382 else
|
|
4383 # endif
|
|
4384 widget = gui.menubar;
|
|
4385
|
827
|
4386 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
|
|
4387 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
|
7
|
4388 {
|
|
4389 if (showit)
|
|
4390 gtk_widget_show(widget);
|
|
4391 else
|
|
4392 gtk_widget_hide(widget);
|
|
4393
|
791
|
4394 update_window_manager_hints(0, 0);
|
7
|
4395 }
|
|
4396 }
|
|
4397 #endif /* FEAT_MENU */
|
|
4398
|
|
4399 #if defined(FEAT_TOOLBAR) || defined(PROTO)
|
|
4400 void
|
|
4401 gui_mch_show_toolbar(int showit)
|
|
4402 {
|
|
4403 GtkWidget *widget;
|
|
4404
|
|
4405 if (gui.toolbar == NULL)
|
|
4406 return;
|
|
4407
|
|
4408 # ifdef FEAT_GUI_GNOME
|
|
4409 if (using_gnome)
|
|
4410 widget = gui.toolbar_h;
|
|
4411 else
|
|
4412 # endif
|
|
4413 widget = gui.toolbar;
|
|
4414
|
|
4415 if (showit)
|
|
4416 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
|
|
4417
|
|
4418 if (!showit != !GTK_WIDGET_VISIBLE(widget))
|
|
4419 {
|
|
4420 if (showit)
|
|
4421 gtk_widget_show(widget);
|
|
4422 else
|
|
4423 gtk_widget_hide(widget);
|
|
4424
|
791
|
4425 update_window_manager_hints(0, 0);
|
7
|
4426 }
|
|
4427 }
|
|
4428 #endif /* FEAT_TOOLBAR */
|
|
4429
|
|
4430 #ifndef HAVE_GTK2
|
|
4431 /*
|
|
4432 * Get a font structure for highlighting.
|
|
4433 * "cbdata" is a pointer to the global gui structure.
|
|
4434 */
|
|
4435 /*ARGSUSED*/
|
|
4436 static void
|
|
4437 font_sel_ok(GtkWidget *wgt, gpointer cbdata)
|
|
4438 {
|
|
4439 gui_T *vw = (gui_T *)cbdata;
|
|
4440 GtkFontSelectionDialog *fs = (GtkFontSelectionDialog *)vw->fontdlg;
|
|
4441
|
|
4442 if (vw->fontname)
|
|
4443 g_free(vw->fontname);
|
|
4444
|
|
4445 vw->fontname = (char_u *)gtk_font_selection_dialog_get_font_name(fs);
|
|
4446 gtk_widget_hide(vw->fontdlg);
|
|
4447 if (gtk_main_level() > 0)
|
|
4448 gtk_main_quit();
|
|
4449 }
|
|
4450
|
|
4451 /*ARGSUSED*/
|
|
4452 static void
|
|
4453 font_sel_cancel(GtkWidget *wgt, gpointer cbdata)
|
|
4454 {
|
|
4455 gui_T *vw = (gui_T *)cbdata;
|
|
4456
|
|
4457 gtk_widget_hide(vw->fontdlg);
|
|
4458 if (gtk_main_level() > 0)
|
|
4459 gtk_main_quit();
|
|
4460 }
|
|
4461
|
|
4462 /*ARGSUSED*/
|
|
4463 static void
|
|
4464 font_sel_destroy(GtkWidget *wgt, gpointer cbdata)
|
|
4465 {
|
|
4466 gui_T *vw = (gui_T *)cbdata;
|
|
4467
|
|
4468 vw->fontdlg = NULL;
|
|
4469 if (gtk_main_level() > 0)
|
|
4470 gtk_main_quit();
|
|
4471 }
|
|
4472 #endif /* !HAVE_GTK2 */
|
|
4473
|
|
4474 #ifdef HAVE_GTK2
|
|
4475 /*
|
|
4476 * Check if a given font is a CJK font. This is done in a very crude manner. It
|
|
4477 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
|
|
4478 * font. Consequently, this function cannot be used as a general purpose check
|
|
4479 * for CJK-ness for which fontconfig APIs should be used. This is only used by
|
|
4480 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
|
|
4481 */
|
|
4482 static int
|
|
4483 is_cjk_font(PangoFontDescription *font_desc)
|
|
4484 {
|
|
4485 static const char * const cjk_langs[] =
|
|
4486 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
|
|
4487
|
|
4488 PangoFont *font;
|
|
4489 unsigned i;
|
|
4490 int is_cjk = FALSE;
|
|
4491
|
|
4492 font = pango_context_load_font(gui.text_context, font_desc);
|
|
4493
|
|
4494 if (font == NULL)
|
|
4495 return FALSE;
|
|
4496
|
|
4497 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
|
|
4498 {
|
|
4499 PangoCoverage *coverage;
|
|
4500 gunichar uc;
|
|
4501
|
|
4502 coverage = pango_font_get_coverage(
|
|
4503 font, pango_language_from_string(cjk_langs[i]));
|
|
4504
|
|
4505 if (coverage != NULL)
|
|
4506 {
|
|
4507 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
|
|
4508 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
|
|
4509 pango_coverage_unref(coverage);
|
|
4510 }
|
|
4511 }
|
|
4512
|
|
4513 g_object_unref(font);
|
|
4514
|
|
4515 return is_cjk;
|
|
4516 }
|
|
4517 #endif /* HAVE_GTK2 */
|
|
4518
|
445
|
4519 /*
|
|
4520 * Adjust gui.char_height (after 'linespace' was changed).
|
|
4521 */
|
7
|
4522 int
|
445
|
4523 gui_mch_adjust_charheight(void)
|
7
|
4524 {
|
|
4525 #ifdef HAVE_GTK2
|
|
4526 PangoFontMetrics *metrics;
|
|
4527 int ascent;
|
|
4528 int descent;
|
|
4529
|
|
4530 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
|
|
4531 pango_context_get_language(gui.text_context));
|
|
4532 ascent = pango_font_metrics_get_ascent(metrics);
|
|
4533 descent = pango_font_metrics_get_descent(metrics);
|
|
4534
|
|
4535 pango_font_metrics_unref(metrics);
|
|
4536
|
|
4537 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
|
445
|
4538 + p_linespace;
|
136
|
4539 /* LINTED: avoid warning: bitwise operation on signed value */
|
7
|
4540 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
|
|
4541
|
|
4542 #else /* !HAVE_GTK2 */
|
|
4543
|
|
4544 gui.char_height = gui.current_font->ascent + gui.current_font->descent
|
445
|
4545 + p_linespace;
|
7
|
4546 gui.char_ascent = gui.current_font->ascent + p_linespace / 2;
|
|
4547
|
|
4548 #endif /* !HAVE_GTK2 */
|
|
4549
|
|
4550 /* A not-positive value of char_height may crash Vim. Only happens
|
|
4551 * if 'linespace' is negative (which does make sense sometimes). */
|
|
4552 gui.char_ascent = MAX(gui.char_ascent, 0);
|
|
4553 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
|
|
4554
|
|
4555 return OK;
|
|
4556 }
|
|
4557
|
|
4558 #if defined(FEAT_XFONTSET) || defined(PROTO)
|
|
4559 /*
|
|
4560 * Try to load the requested fontset.
|
|
4561 */
|
|
4562 /*ARGSUSED2*/
|
|
4563 GuiFontset
|
|
4564 gui_mch_get_fontset(char_u *name, int report_error, int fixed_width)
|
|
4565 {
|
|
4566 GdkFont *font;
|
|
4567
|
|
4568 if (!gui.in_use || name == NULL)
|
|
4569 return NOFONT;
|
|
4570
|
|
4571 font = gdk_fontset_load((gchar *)name);
|
|
4572
|
|
4573 if (font == NULL)
|
|
4574 {
|
|
4575 if (report_error)
|
|
4576 EMSG2(_(e_fontset), name);
|
|
4577 return NOFONT;
|
|
4578 }
|
|
4579 /* TODO: check if the font is fixed width. */
|
|
4580
|
|
4581 /* reference this font as being in use */
|
|
4582 gdk_font_ref(font);
|
|
4583
|
|
4584 return (GuiFontset)font;
|
|
4585 }
|
|
4586 #endif /* FEAT_XFONTSET */
|
|
4587
|
|
4588 #ifndef HAVE_GTK2
|
|
4589 /*
|
|
4590 * Put up a font dialog and return the selected font name in allocated memory.
|
|
4591 * "oldval" is the previous value.
|
|
4592 * Return NULL when cancelled.
|
|
4593 */
|
|
4594 char_u *
|
|
4595 gui_mch_font_dialog(char_u *oldval)
|
|
4596 {
|
|
4597 char_u *fontname = NULL;
|
|
4598
|
|
4599 if (!gui.fontdlg)
|
|
4600 {
|
|
4601 GtkFontSelectionDialog *fsd = NULL;
|
|
4602
|
|
4603 gui.fontdlg = gtk_font_selection_dialog_new(_("Font Selection"));
|
|
4604 fsd = GTK_FONT_SELECTION_DIALOG(gui.fontdlg);
|
|
4605 gtk_window_set_modal(GTK_WINDOW(gui.fontdlg), TRUE);
|
|
4606 gtk_window_set_transient_for(GTK_WINDOW(gui.fontdlg),
|
|
4607 GTK_WINDOW(gui.mainwin));
|
|
4608 gtk_signal_connect(GTK_OBJECT(gui.fontdlg), "destroy",
|
|
4609 GTK_SIGNAL_FUNC(font_sel_destroy), &gui);
|
|
4610 gtk_signal_connect(GTK_OBJECT(fsd->ok_button), "clicked",
|
|
4611 GTK_SIGNAL_FUNC(font_sel_ok), &gui);
|
|
4612 gtk_signal_connect(GTK_OBJECT(fsd->cancel_button), "clicked",
|
|
4613 GTK_SIGNAL_FUNC(font_sel_cancel), &gui);
|
|
4614 }
|
|
4615
|
|
4616 if (oldval != NULL && *oldval != NUL)
|
|
4617 gtk_font_selection_dialog_set_font_name(
|
|
4618 GTK_FONT_SELECTION_DIALOG(gui.fontdlg), (char *)oldval);
|
|
4619
|
|
4620 if (gui.fontname)
|
|
4621 {
|
|
4622 g_free(gui.fontname);
|
|
4623 gui.fontname = NULL;
|
|
4624 }
|
|
4625 gtk_window_position(GTK_WINDOW(gui.fontdlg), GTK_WIN_POS_MOUSE);
|
|
4626 gtk_widget_show(gui.fontdlg);
|
|
4627 {
|
|
4628 static gchar *spacings[] = {"c", "m", NULL};
|
|
4629
|
|
4630 /* In GTK 1.2.3 this must be after the gtk_widget_show() call,
|
|
4631 * otherwise everything is blocked for ten seconds. */
|
|
4632 gtk_font_selection_dialog_set_filter(
|
|
4633 GTK_FONT_SELECTION_DIALOG(gui.fontdlg),
|
|
4634 GTK_FONT_FILTER_BASE,
|
|
4635 GTK_FONT_ALL, NULL, NULL,
|
|
4636 NULL, NULL, spacings, NULL);
|
|
4637 }
|
|
4638
|
|
4639 /* Wait for the font dialog to be closed. */
|
|
4640 while (gui.fontdlg && GTK_WIDGET_DRAWABLE(gui.fontdlg))
|
|
4641 gtk_main_iteration_do(TRUE);
|
|
4642
|
|
4643 if (gui.fontname != NULL)
|
|
4644 {
|
714
|
4645 /* Apparently some font names include a comma, need to escape that,
|
|
4646 * because in 'guifont' it separates names. */
|
|
4647 fontname = vim_strsave_escaped(gui.fontname, (char_u *)",");
|
7
|
4648 g_free(gui.fontname);
|
|
4649 gui.fontname = NULL;
|
|
4650 }
|
|
4651 return fontname;
|
|
4652 }
|
|
4653 #endif /* !HAVE_GTK2 */
|
|
4654
|
|
4655 #ifdef HAVE_GTK2
|
|
4656 /*
|
|
4657 * Put up a font dialog and return the selected font name in allocated memory.
|
|
4658 * "oldval" is the previous value. Return NULL when cancelled.
|
|
4659 * This should probably go into gui_gtk.c. Hmm.
|
|
4660 * FIXME:
|
|
4661 * The GTK2 font selection dialog has no filtering API. So we could either
|
|
4662 * a) implement our own (possibly copying the code from somewhere else) or
|
|
4663 * b) just live with it.
|
|
4664 */
|
|
4665 char_u *
|
|
4666 gui_mch_font_dialog(char_u *oldval)
|
|
4667 {
|
|
4668 GtkWidget *dialog;
|
|
4669 int response;
|
|
4670 char_u *fontname = NULL;
|
|
4671 char_u *oldname;
|
|
4672
|
|
4673 dialog = gtk_font_selection_dialog_new(NULL);
|
|
4674
|
|
4675 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
|
|
4676 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
|
|
4677
|
|
4678 if (oldval != NULL && oldval[0] != NUL)
|
|
4679 {
|
|
4680 if (output_conv.vc_type != CONV_NONE)
|
|
4681 oldname = string_convert(&output_conv, oldval, NULL);
|
|
4682 else
|
|
4683 oldname = oldval;
|
|
4684
|
|
4685 /* Annoying bug in GTK (or Pango): if the font name does not include a
|
|
4686 * size, zero is used. Use default point size ten. */
|
|
4687 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
|
|
4688 {
|
|
4689 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
|
|
4690
|
|
4691 if (p != NULL)
|
|
4692 {
|
|
4693 STRCPY(p + STRLEN(p), " 10");
|
|
4694 if (oldname != oldval)
|
|
4695 vim_free(oldname);
|
|
4696 oldname = p;
|
|
4697 }
|
|
4698 }
|
|
4699
|
|
4700 gtk_font_selection_dialog_set_font_name(
|
|
4701 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
|
|
4702
|
|
4703 if (oldname != oldval)
|
100
|
4704 vim_free(oldname);
|
7
|
4705 }
|
|
4706
|
|
4707 response = gtk_dialog_run(GTK_DIALOG(dialog));
|
|
4708
|
|
4709 if (response == GTK_RESPONSE_OK)
|
|
4710 {
|
|
4711 char *name;
|
|
4712
|
|
4713 name = gtk_font_selection_dialog_get_font_name(
|
|
4714 GTK_FONT_SELECTION_DIALOG(dialog));
|
|
4715 if (name != NULL)
|
|
4716 {
|
714
|
4717 char_u *p;
|
|
4718
|
|
4719 /* Apparently some font names include a comma, need to escape
|
|
4720 * that, because in 'guifont' it separates names. */
|
|
4721 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
|
|
4722 g_free(name);
|
840
|
4723 if (p != NULL && input_conv.vc_type != CONV_NONE)
|
714
|
4724 {
|
|
4725 fontname = string_convert(&input_conv, p, NULL);
|
|
4726 vim_free(p);
|
|
4727 }
|
7
|
4728 else
|
714
|
4729 fontname = p;
|
7
|
4730 }
|
|
4731 }
|
|
4732
|
|
4733 if (response != GTK_RESPONSE_NONE)
|
|
4734 gtk_widget_destroy(dialog);
|
|
4735
|
|
4736 return fontname;
|
|
4737 }
|
|
4738
|
|
4739 /*
|
|
4740 * Some monospace fonts don't support a bold weight, and fall back
|
|
4741 * silently to the regular weight. But this is no good since our text
|
|
4742 * drawing function can emulate bold by overstriking. So let's try
|
|
4743 * to detect whether bold weight is actually available and emulate it
|
|
4744 * otherwise.
|
|
4745 *
|
|
4746 * Note that we don't need to check for italic style since Xft can
|
|
4747 * emulate italic on its own, provided you have a proper fontconfig
|
|
4748 * setup. We wouldn't be able to emulate it in Vim anyway.
|
|
4749 */
|
|
4750 static void
|
|
4751 get_styled_font_variants(void)
|
|
4752 {
|
|
4753 PangoFontDescription *bold_font_desc;
|
|
4754 PangoFont *plain_font;
|
|
4755 PangoFont *bold_font;
|
|
4756
|
|
4757 gui.font_can_bold = FALSE;
|
|
4758
|
|
4759 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
|
|
4760
|
|
4761 if (plain_font == NULL)
|
|
4762 return;
|
|
4763
|
|
4764 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
|
|
4765 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
|
|
4766
|
|
4767 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
|
|
4768 /*
|
|
4769 * The comparison relies on the unique handle nature of a PangoFont*,
|
|
4770 * i.e. it's assumed that a different PangoFont* won't refer to the
|
|
4771 * same font. Seems to work, and failing here isn't critical anyway.
|
|
4772 */
|
|
4773 if (bold_font != NULL)
|
|
4774 {
|
|
4775 gui.font_can_bold = (bold_font != plain_font);
|
|
4776 g_object_unref(bold_font);
|
|
4777 }
|
|
4778
|
|
4779 pango_font_description_free(bold_font_desc);
|
|
4780 g_object_unref(plain_font);
|
|
4781 }
|
|
4782
|
|
4783 #else /* !HAVE_GTK2 */
|
|
4784
|
|
4785 /*
|
|
4786 * There is only one excuse I can give for the following attempt to manage font
|
|
4787 * styles:
|
|
4788 *
|
|
4789 * I HATE THE BRAIN DEAD WAY X11 IS HANDLING FONTS (--mdcki)
|
|
4790 * (Me too. --danielk)
|
|
4791 */
|
|
4792 static void
|
|
4793 get_styled_font_variants(char_u * font_name)
|
|
4794 {
|
|
4795 char *chunk[32];
|
|
4796 char *sdup;
|
|
4797 char *tmp;
|
|
4798 int len, i;
|
|
4799 GuiFont *styled_font[3];
|
|
4800
|
|
4801 styled_font[0] = &gui.bold_font;
|
|
4802 styled_font[1] = &gui.ital_font;
|
|
4803 styled_font[2] = &gui.boldital_font;
|
|
4804
|
|
4805 /* First free whatever was freviously there. */
|
|
4806 for (i = 0; i < 3; ++i)
|
|
4807 if (*styled_font[i])
|
|
4808 {
|
|
4809 gdk_font_unref(*styled_font[i]);
|
|
4810 *styled_font[i] = NULL;
|
|
4811 }
|
|
4812
|
|
4813 if ((sdup = g_strdup((const char *)font_name)) == NULL)
|
|
4814 return;
|
|
4815
|
|
4816 /* split up the whole */
|
|
4817 i = 0;
|
|
4818 for (tmp = sdup; *tmp != '\0'; ++tmp)
|
|
4819 {
|
|
4820 if (*tmp == '-')
|
|
4821 {
|
|
4822 *tmp = '\0';
|
|
4823
|
|
4824 if (i == 32)
|
|
4825 break;
|
|
4826
|
|
4827 chunk[i] = tmp + 1;
|
|
4828 ++i;
|
|
4829 }
|
|
4830 }
|
|
4831
|
|
4832 if (i == 14)
|
|
4833 {
|
|
4834 GdkFont *font = NULL;
|
|
4835 const char *bold_chunk[3] = { "bold", NULL, "bold" };
|
|
4836 const char *italic_chunk[3] = { NULL, "o", "o" };
|
|
4837
|
|
4838 /* font name was complete */
|
|
4839 len = strlen((const char *)font_name) + 32;
|
|
4840
|
|
4841 for (i = 0; i < 3; ++i)
|
|
4842 {
|
|
4843 char *styled_name;
|
|
4844 int j;
|
|
4845
|
|
4846 styled_name = (char *)alloc(len);
|
|
4847 if (styled_name == NULL)
|
|
4848 {
|
|
4849 g_free(sdup);
|
|
4850 return;
|
|
4851 }
|
|
4852
|
|
4853 *styled_name = '\0';
|
|
4854
|
|
4855 for (j = 0; j < 14; ++j)
|
|
4856 {
|
|
4857 strcat(styled_name, "-");
|
|
4858 if (j == 2 && bold_chunk[i] != NULL)
|
|
4859 strcat(styled_name, bold_chunk[i]);
|
|
4860 else if (j == 3 && italic_chunk[i] != NULL)
|
|
4861 strcat(styled_name, italic_chunk[i]);
|
|
4862 else
|
|
4863 strcat(styled_name, chunk[j]);
|
|
4864 }
|
|
4865
|
|
4866 font = gui_mch_get_font((char_u *)styled_name, FALSE);
|
|
4867 if (font != NULL)
|
|
4868 *styled_font[i] = font;
|
|
4869
|
|
4870 vim_free(styled_name);
|
|
4871 }
|
|
4872 }
|
|
4873
|
|
4874 g_free(sdup);
|
|
4875 }
|
|
4876 #endif /* !HAVE_GTK2 */
|
|
4877
|
|
4878 #ifdef HAVE_GTK2
|
|
4879 static PangoEngineShape *default_shape_engine = NULL;
|
|
4880
|
|
4881 /*
|
|
4882 * Create a map from ASCII characters in the range [32,126] to glyphs
|
|
4883 * of the current font. This is used by gui_gtk2_draw_string() to skip
|
|
4884 * the itemize and shaping process for the most common case.
|
|
4885 */
|
|
4886 static void
|
|
4887 ascii_glyph_table_init(void)
|
|
4888 {
|
|
4889 char_u ascii_chars[128];
|
|
4890 PangoAttrList *attr_list;
|
|
4891 GList *item_list;
|
|
4892 int i;
|
|
4893
|
|
4894 if (gui.ascii_glyphs != NULL)
|
|
4895 pango_glyph_string_free(gui.ascii_glyphs);
|
|
4896 if (gui.ascii_font != NULL)
|
|
4897 g_object_unref(gui.ascii_font);
|
|
4898
|
|
4899 gui.ascii_glyphs = NULL;
|
|
4900 gui.ascii_font = NULL;
|
|
4901
|
|
4902 /* For safety, fill in question marks for the control characters. */
|
|
4903 for (i = 0; i < 32; ++i)
|
|
4904 ascii_chars[i] = '?';
|
|
4905 for (; i < 127; ++i)
|
|
4906 ascii_chars[i] = i;
|
|
4907 ascii_chars[i] = '?';
|
|
4908
|
|
4909 attr_list = pango_attr_list_new();
|
|
4910 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
|
|
4911 0, sizeof(ascii_chars), attr_list, NULL);
|
|
4912
|
|
4913 if (item_list != NULL && item_list->next == NULL) /* play safe */
|
|
4914 {
|
|
4915 PangoItem *item;
|
|
4916 int width;
|
|
4917
|
|
4918 item = (PangoItem *)item_list->data;
|
|
4919 width = gui.char_width * PANGO_SCALE;
|
|
4920
|
|
4921 /* Remember the shape engine used for ASCII. */
|
|
4922 default_shape_engine = item->analysis.shape_engine;
|
|
4923
|
|
4924 gui.ascii_font = item->analysis.font;
|
|
4925 g_object_ref(gui.ascii_font);
|
|
4926
|
|
4927 gui.ascii_glyphs = pango_glyph_string_new();
|
|
4928
|
|
4929 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
|
|
4930 &item->analysis, gui.ascii_glyphs);
|
|
4931
|
|
4932 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
|
|
4933
|
|
4934 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
|
|
4935 {
|
|
4936 PangoGlyphGeometry *geom;
|
|
4937
|
|
4938 geom = &gui.ascii_glyphs->glyphs[i].geometry;
|
|
4939 geom->x_offset += MAX(0, width - geom->width) / 2;
|
|
4940 geom->width = width;
|
|
4941 }
|
|
4942 }
|
|
4943
|
|
4944 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
|
|
4945 g_list_free(item_list);
|
|
4946 pango_attr_list_unref(attr_list);
|
|
4947 }
|
|
4948 #endif /* HAVE_GTK2 */
|
|
4949
|
|
4950 /*
|
|
4951 * Initialize Vim to use the font or fontset with the given name.
|
|
4952 * Return FAIL if the font could not be loaded, OK otherwise.
|
|
4953 */
|
|
4954 /*ARGSUSED1*/
|
|
4955 int
|
|
4956 gui_mch_init_font(char_u *font_name, int fontset)
|
|
4957 {
|
|
4958 #ifdef HAVE_GTK2
|
|
4959 PangoFontDescription *font_desc;
|
|
4960 PangoLayout *layout;
|
|
4961 int width;
|
|
4962
|
|
4963 /* If font_name is NULL, this means to use the default, which should
|
|
4964 * be present on all proper Pango/fontconfig installations. */
|
|
4965 if (font_name == NULL)
|
|
4966 font_name = (char_u *)DEFAULT_FONT;
|
|
4967
|
|
4968 font_desc = gui_mch_get_font(font_name, FALSE);
|
|
4969
|
|
4970 if (font_desc == NULL)
|
|
4971 return FAIL;
|
|
4972
|
|
4973 gui_mch_free_font(gui.norm_font);
|
|
4974 gui.norm_font = font_desc;
|
|
4975
|
|
4976 pango_context_set_font_description(gui.text_context, font_desc);
|
|
4977
|
|
4978 layout = pango_layout_new(gui.text_context);
|
|
4979 pango_layout_set_text(layout, "MW", 2);
|
|
4980 pango_layout_get_size(layout, &width, NULL);
|
|
4981 /*
|
|
4982 * Set char_width to half the width obtained from pango_layout_get_size()
|
|
4983 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
|
|
4984 * Pango to use the same width for both non-CJK characters (e.g. Latin
|
|
4985 * letters and numbers) and CJK characters. This results in 's p a c e d
|
|
4986 * o u t' rendering when a CJK 'fixed width' font is used. To work around
|
|
4987 * that, divide the width returned by Pango by 2 if cjk_width is equal to
|
|
4988 * width for CJK fonts.
|
|
4989 *
|
|
4990 * For related bugs, see:
|
|
4991 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
|
|
4992 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
|
|
4993 *
|
|
4994 * With this, for all four of the following cases, Vim works fine:
|
|
4995 * guifont=CJK_fixed_width_font
|
|
4996 * guifont=Non_CJK_fixed_font
|
|
4997 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
|
|
4998 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
|
|
4999 */
|
|
5000 if (is_cjk_font(gui.norm_font))
|
|
5001 {
|
|
5002 int cjk_width;
|
|
5003
|
|
5004 /* Measure the text extent of U+4E00 and U+4E8C */
|
|
5005 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
|
|
5006 pango_layout_get_size(layout, &cjk_width, NULL);
|
|
5007
|
|
5008 if (width == cjk_width) /* Xft not patched */
|
|
5009 width /= 2;
|
|
5010 }
|
|
5011 g_object_unref(layout);
|
|
5012
|
|
5013 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
|
|
5014
|
|
5015 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
|
|
5016 if (gui.char_width <= 0)
|
|
5017 gui.char_width = 8;
|
|
5018
|
445
|
5019 gui_mch_adjust_charheight();
|
7
|
5020
|
|
5021 /* Set the fontname, which will be used for information purposes */
|
|
5022 hl_set_font_name(font_name);
|
|
5023
|
|
5024 get_styled_font_variants();
|
|
5025 ascii_glyph_table_init();
|
|
5026
|
|
5027 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
|
|
5028 if (gui.wide_font != NULL
|
|
5029 && pango_font_description_equal(gui.norm_font, gui.wide_font))
|
|
5030 {
|
|
5031 pango_font_description_free(gui.wide_font);
|
|
5032 gui.wide_font = NULL;
|
|
5033 }
|
|
5034
|
|
5035 #else /* !HAVE_GTK2 */
|
|
5036
|
|
5037 GdkFont *font = NULL;
|
|
5038
|
|
5039 # ifdef FEAT_XFONTSET
|
|
5040 /* Try loading a fontset. If this fails we try loading a normal font. */
|
|
5041 if (fontset && font_name != NULL)
|
|
5042 font = gui_mch_get_fontset(font_name, TRUE, TRUE);
|
|
5043
|
|
5044 if (font == NULL)
|
|
5045 # endif
|
|
5046 {
|
|
5047 /* If font_name is NULL, this means to use the default, which should
|
|
5048 * be present on all X11 servers. */
|
|
5049 if (font_name == NULL)
|
|
5050 font_name = (char_u *)DEFAULT_FONT;
|
|
5051 font = gui_mch_get_font(font_name, FALSE);
|
|
5052 }
|
|
5053
|
|
5054 if (font == NULL)
|
|
5055 return FAIL;
|
|
5056
|
|
5057 gui_mch_free_font(gui.norm_font);
|
|
5058 # ifdef FEAT_XFONTSET
|
|
5059 gui_mch_free_fontset(gui.fontset);
|
|
5060 if (font->type == GDK_FONT_FONTSET)
|
|
5061 {
|
|
5062 gui.norm_font = NOFONT;
|
|
5063 gui.fontset = (GuiFontset)font;
|
|
5064 /* Use two bytes, this works around the problem that the result would
|
|
5065 * be zero if no 8-bit font was found. */
|
|
5066 gui.char_width = gdk_string_width(font, "xW") / 2;
|
|
5067 }
|
|
5068 else
|
|
5069 # endif
|
|
5070 {
|
|
5071 gui.norm_font = font;
|
|
5072 # ifdef FEAT_XFONTSET
|
|
5073 gui.fontset = NOFONTSET;
|
|
5074 # endif
|
|
5075 gui.char_width = ((XFontStruct *)
|
|
5076 GDK_FONT_XFONT(font))->max_bounds.width;
|
|
5077 }
|
|
5078
|
|
5079 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
|
|
5080 if (gui.char_width <= 0)
|
|
5081 gui.char_width = 8;
|
|
5082
|
|
5083 gui.char_height = font->ascent + font->descent + p_linespace;
|
|
5084 gui.char_ascent = font->ascent + p_linespace / 2;
|
|
5085
|
|
5086 /* A not-positive value of char_height may crash Vim. Only happens
|
|
5087 * if 'linespace' is negative (which does make sense sometimes). */
|
|
5088 gui.char_ascent = MAX(gui.char_ascent, 0);
|
|
5089 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
|
|
5090
|
|
5091 /* Set the fontname, which will be used for information purposes */
|
|
5092 hl_set_font_name(font_name);
|
|
5093
|
|
5094 if (font->type != GDK_FONT_FONTSET)
|
|
5095 get_styled_font_variants(font_name);
|
|
5096
|
|
5097 /* Synchronize the fonts used in user input dialogs, since otherwise
|
|
5098 * search/replace will be esp. annoying in case of international font
|
|
5099 * usage.
|
|
5100 */
|
|
5101 gui_gtk_synch_fonts();
|
|
5102
|
|
5103 # ifdef FEAT_XIM
|
|
5104 /* Adjust input management behaviour to the capabilities of the new
|
|
5105 * fontset */
|
|
5106 xim_decide_input_style();
|
|
5107 if (xim_get_status_area_height())
|
|
5108 {
|
|
5109 /* Status area is required. Just create the empty container so that
|
|
5110 * mainwin will allocate the extra space for status area. */
|
|
5111 GtkWidget *alignment = gtk_alignment_new((gfloat)0.5, (gfloat)0.5,
|
|
5112 (gfloat)1.0, (gfloat)1.0);
|
|
5113
|
|
5114 gtk_widget_set_usize(alignment, 20, gui.char_height + 2);
|
|
5115 gtk_box_pack_end(GTK_BOX(GTK_BIN(gui.mainwin)->child),
|
|
5116 alignment, FALSE, FALSE, 0);
|
|
5117 gtk_widget_show(alignment);
|
|
5118 }
|
|
5119 # endif
|
|
5120 #endif /* !HAVE_GTK2 */
|
|
5121
|
|
5122 /* Preserve the logical dimensions of the screen. */
|
791
|
5123 update_window_manager_hints(0, 0);
|
7
|
5124
|
|
5125 return OK;
|
|
5126 }
|
|
5127
|
|
5128 /*
|
|
5129 * Get a reference to the font "name".
|
|
5130 * Return zero for failure.
|
|
5131 */
|
|
5132 GuiFont
|
|
5133 gui_mch_get_font(char_u *name, int report_error)
|
|
5134 {
|
|
5135 #ifdef HAVE_GTK2
|
|
5136 PangoFontDescription *font;
|
|
5137 #else
|
|
5138 GdkFont *font;
|
|
5139 #endif
|
|
5140
|
|
5141 /* can't do this when GUI is not running */
|
|
5142 if (!gui.in_use || name == NULL)
|
|
5143 return NULL;
|
|
5144
|
|
5145 #ifdef HAVE_GTK2
|
|
5146 if (output_conv.vc_type != CONV_NONE)
|
|
5147 {
|
|
5148 char_u *buf;
|
|
5149
|
|
5150 buf = string_convert(&output_conv, name, NULL);
|
|
5151 if (buf != NULL)
|
|
5152 {
|
|
5153 font = pango_font_description_from_string((const char *)buf);
|
|
5154 vim_free(buf);
|
|
5155 }
|
|
5156 else
|
|
5157 font = NULL;
|
|
5158 }
|
|
5159 else
|
|
5160 font = pango_font_description_from_string((const char *)name);
|
|
5161
|
|
5162 if (font != NULL)
|
|
5163 {
|
|
5164 PangoFont *real_font;
|
|
5165
|
|
5166 /* pango_context_load_font() bails out if no font size is set */
|
|
5167 if (pango_font_description_get_size(font) <= 0)
|
|
5168 pango_font_description_set_size(font, 10 * PANGO_SCALE);
|
|
5169
|
|
5170 real_font = pango_context_load_font(gui.text_context, font);
|
|
5171
|
|
5172 if (real_font == NULL)
|
|
5173 {
|
|
5174 pango_font_description_free(font);
|
|
5175 font = NULL;
|
|
5176 }
|
|
5177 else
|
|
5178 g_object_unref(real_font);
|
|
5179 }
|
|
5180 #else
|
|
5181 font = gdk_font_load((const gchar *)name);
|
|
5182 #endif
|
|
5183
|
|
5184 if (font == NULL)
|
|
5185 {
|
|
5186 if (report_error)
|
|
5187 EMSG2(_(e_font), name);
|
|
5188 return NULL;
|
|
5189 }
|
|
5190
|
|
5191 #ifdef HAVE_GTK2
|
|
5192 /*
|
|
5193 * The fixed-width check has been disabled for GTK+ 2. Rationale:
|
|
5194 *
|
|
5195 * - The check tends to report false positives, particularly
|
|
5196 * in non-Latin locales or with old X fonts.
|
|
5197 * - Thanks to our fixed-width hack in gui_gtk2_draw_string(),
|
|
5198 * GTK+ 2 Vim is actually capable of displaying variable width
|
|
5199 * fonts. Those will just be spaced out like in AA xterm.
|
|
5200 * - Failing here for the default font causes GUI startup to fail
|
|
5201 * even with wiped out configuration files.
|
|
5202 * - The font dialog displays all fonts unfiltered, and it's rather
|
|
5203 * annoying if 95% of the listed fonts produce an error message.
|
|
5204 */
|
|
5205 # if 0
|
|
5206 {
|
|
5207 /* Check that this is a mono-spaced font. Naturally, this is a bit
|
|
5208 * hackish -- fixed-width isn't really suitable for i18n text :/ */
|
|
5209 PangoLayout *layout;
|
|
5210 unsigned int i;
|
|
5211 int last_width = -1;
|
|
5212 const char test_chars[] = { 'W', 'i', ',', 'x' }; /* arbitrary */
|
|
5213
|
|
5214 layout = pango_layout_new(gui.text_context);
|
|
5215 pango_layout_set_font_description(layout, font);
|
|
5216
|
|
5217 for (i = 0; i < G_N_ELEMENTS(test_chars); ++i)
|
|
5218 {
|
|
5219 int width;
|
|
5220
|
|
5221 pango_layout_set_text(layout, &test_chars[i], 1);
|
|
5222 pango_layout_get_size(layout, &width, NULL);
|
|
5223
|
|
5224 if (last_width >= 0 && width != last_width)
|
|
5225 {
|
|
5226 pango_font_description_free(font);
|
|
5227 font = NULL;
|
|
5228 break;
|
|
5229 }
|
|
5230
|
|
5231 last_width = width;
|
|
5232 }
|
|
5233
|
|
5234 g_object_unref(layout);
|
|
5235 }
|
|
5236 # endif
|
|
5237 #else /* !HAVE_GTK2 */
|
|
5238 {
|
|
5239 XFontStruct *xfont;
|
|
5240
|
|
5241 /* reference this font as being in use */
|
|
5242 gdk_font_ref(font);
|
|
5243
|
|
5244 /* Check that this is a mono-spaced font.
|
|
5245 */
|
|
5246 xfont = (XFontStruct *) GDK_FONT_XFONT(font);
|
|
5247
|
|
5248 if (xfont->max_bounds.width != xfont->min_bounds.width)
|
|
5249 {
|
|
5250 gdk_font_unref(font);
|
|
5251 font = NULL;
|
|
5252 }
|
|
5253 }
|
|
5254 #endif /* !HAVE_GTK2 */
|
|
5255
|
|
5256 #if !defined(HAVE_GTK2) || 0 /* disabled for GTK+ 2, see above */
|
|
5257 if (font == NULL && report_error)
|
|
5258 EMSG2(_(e_fontwidth), name);
|
|
5259 #endif
|
|
5260
|
|
5261 return font;
|
|
5262 }
|
|
5263
|
39
|
5264 #if defined(FEAT_EVAL) || defined(PROTO)
|
38
|
5265 /*
|
|
5266 * Return the name of font "font" in allocated memory.
|
|
5267 */
|
|
5268 /*ARGSUSED*/
|
|
5269 char_u *
|
|
5270 gui_mch_get_fontname(GuiFont font, char_u *name)
|
|
5271 {
|
39
|
5272 # ifdef HAVE_GTK2
|
38
|
5273 if (font != NOFONT)
|
|
5274 {
|
|
5275 char *name = pango_font_description_to_string(font);
|
|
5276
|
|
5277 if (name != NULL)
|
|
5278 {
|
|
5279 char_u *s = vim_strsave((char_u *)name);
|
|
5280
|
|
5281 g_free(name);
|
|
5282 return s;
|
|
5283 }
|
|
5284 }
|
39
|
5285 # else
|
38
|
5286 /* Don't know how to get the name, return what we got. */
|
|
5287 if (name != NULL)
|
|
5288 return vim_strsave(name);
|
39
|
5289 # endif
|
38
|
5290 return NULL;
|
|
5291 }
|
39
|
5292 #endif
|
38
|
5293
|
7
|
5294 #if !defined(HAVE_GTK2) || defined(PROTO)
|
|
5295 /*
|
|
5296 * Set the current text font.
|
|
5297 * Since we create all GC on demand, we use just gui.current_font to
|
|
5298 * indicate the desired current font.
|
|
5299 */
|
|
5300 void
|
|
5301 gui_mch_set_font(GuiFont font)
|
|
5302 {
|
|
5303 gui.current_font = font;
|
|
5304 }
|
|
5305 #endif
|
|
5306
|
|
5307 #if defined(FEAT_XFONTSET) || defined(PROTO)
|
|
5308 /*
|
|
5309 * Set the current text fontset.
|
|
5310 */
|
|
5311 void
|
|
5312 gui_mch_set_fontset(GuiFontset fontset)
|
|
5313 {
|
|
5314 gui.current_font = fontset;
|
|
5315 }
|
|
5316 #endif
|
|
5317
|
|
5318 /*
|
|
5319 * If a font is not going to be used, free its structure.
|
|
5320 */
|
|
5321 void
|
|
5322 gui_mch_free_font(GuiFont font)
|
|
5323 {
|
|
5324 if (font != NOFONT)
|
|
5325 #ifdef HAVE_GTK2
|
|
5326 pango_font_description_free(font);
|
|
5327 #else
|
|
5328 gdk_font_unref(font);
|
|
5329 #endif
|
|
5330 }
|
|
5331
|
|
5332 #if defined(FEAT_XFONTSET) || defined(PROTO)
|
|
5333 /*
|
|
5334 * If a fontset is not going to be used, free its structure.
|
|
5335 */
|
|
5336 void
|
|
5337 gui_mch_free_fontset(GuiFontset fontset)
|
|
5338 {
|
|
5339 if (fontset != NOFONTSET)
|
|
5340 gdk_font_unref(fontset);
|
|
5341 }
|
|
5342 #endif
|
|
5343
|
|
5344
|
|
5345 /*
|
|
5346 * Return the Pixel value (color) for the given color name. This routine was
|
|
5347 * pretty much taken from example code in the Silicon Graphics OSF/Motif
|
|
5348 * Programmer's Guide.
|
|
5349 * Return INVALCOLOR for error.
|
|
5350 */
|
|
5351 guicolor_T
|
|
5352 gui_mch_get_color(char_u *name)
|
|
5353 {
|
|
5354 /* A number of colors that some X11 systems don't have */
|
|
5355 static const char *const vimnames[][2] =
|
|
5356 {
|
834
|
5357 {"LightRed", "#FFBBBB"},
|
|
5358 {"LightGreen", "#88FF88"},
|
|
5359 {"LightMagenta","#FFBBFF"},
|
|
5360 {"DarkCyan", "#008888"},
|
|
5361 {"DarkBlue", "#0000BB"},
|
|
5362 {"DarkRed", "#BB0000"},
|
|
5363 {"DarkMagenta", "#BB00BB"},
|
|
5364 {"DarkGrey", "#BBBBBB"},
|
|
5365 {"DarkYellow", "#BBBB00"},
|
|
5366 {"Gray10", "#1A1A1A"},
|
|
5367 {"Grey10", "#1A1A1A"},
|
|
5368 {"Gray20", "#333333"},
|
|
5369 {"Grey20", "#333333"},
|
|
5370 {"Gray30", "#4D4D4D"},
|
|
5371 {"Grey30", "#4D4D4D"},
|
|
5372 {"Gray40", "#666666"},
|
|
5373 {"Grey40", "#666666"},
|
|
5374 {"Gray50", "#7F7F7F"},
|
|
5375 {"Grey50", "#7F7F7F"},
|
|
5376 {"Gray60", "#999999"},
|
|
5377 {"Grey60", "#999999"},
|
|
5378 {"Gray70", "#B3B3B3"},
|
|
5379 {"Grey70", "#B3B3B3"},
|
|
5380 {"Gray80", "#CCCCCC"},
|
|
5381 {"Grey80", "#CCCCCC"},
|
|
5382 {"Gray90", "#E5E5E5"},
|
|
5383 {"Grey90", "#E5E5E5"},
|
7
|
5384 {NULL, NULL}
|
|
5385 };
|
|
5386
|
|
5387 if (!gui.in_use) /* can't do this when GUI not running */
|
|
5388 return INVALCOLOR;
|
|
5389
|
|
5390 while (name != NULL)
|
|
5391 {
|
|
5392 GdkColor color;
|
|
5393 int parsed;
|
|
5394 int i;
|
|
5395
|
|
5396 parsed = gdk_color_parse((const char *)name, &color);
|
|
5397
|
|
5398 #ifndef HAVE_GTK2 /* ohh, lovely GTK+ 2, eases our pain :) */
|
|
5399 /*
|
|
5400 * Since we have already called gtk_set_locale here the bugger
|
|
5401 * XParseColor will accept only explicit color names in the language
|
|
5402 * of the current locale. However this will interferre with:
|
|
5403 * 1. Vim's global startup files
|
|
5404 * 2. Explicit color names in .vimrc
|
|
5405 *
|
|
5406 * Therefore we first try to parse the color in the current locale and
|
|
5407 * if it fails, we fall back to the portable "C" one.
|
|
5408 */
|
|
5409 if (!parsed)
|
|
5410 {
|
|
5411 char *current;
|
|
5412
|
|
5413 current = setlocale(LC_ALL, NULL);
|
|
5414 if (current != NULL)
|
|
5415 {
|
|
5416 char *saved;
|
|
5417
|
|
5418 saved = g_strdup(current);
|
|
5419 setlocale(LC_ALL, "C");
|
|
5420
|
|
5421 parsed = gdk_color_parse((const gchar *)name, &color);
|
|
5422
|
|
5423 setlocale(LC_ALL, saved);
|
|
5424 gtk_set_locale();
|
|
5425
|
|
5426 g_free(saved);
|
|
5427 }
|
|
5428 }
|
|
5429 #endif /* !HAVE_GTK2 */
|
|
5430
|
|
5431 if (parsed)
|
|
5432 {
|
|
5433 #ifdef HAVE_GTK2
|
|
5434 gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
|
|
5435 &color, FALSE, TRUE);
|
|
5436 #else
|
|
5437 gdk_color_alloc(gtk_widget_get_colormap(gui.drawarea), &color);
|
|
5438 #endif
|
|
5439 return (guicolor_T)color.pixel;
|
|
5440 }
|
|
5441 /* add a few builtin names and try again */
|
|
5442 for (i = 0; ; ++i)
|
|
5443 {
|
|
5444 if (vimnames[i][0] == NULL)
|
|
5445 {
|
|
5446 name = NULL;
|
|
5447 break;
|
|
5448 }
|
|
5449 if (STRICMP(name, vimnames[i][0]) == 0)
|
|
5450 {
|
|
5451 name = (char_u *)vimnames[i][1];
|
|
5452 break;
|
|
5453 }
|
|
5454 }
|
|
5455 }
|
|
5456
|
|
5457 return INVALCOLOR;
|
|
5458 }
|
|
5459
|
|
5460 /*
|
|
5461 * Set the current text foreground color.
|
|
5462 */
|
|
5463 void
|
|
5464 gui_mch_set_fg_color(guicolor_T color)
|
|
5465 {
|
|
5466 gui.fgcolor->pixel = (unsigned long)color;
|
|
5467 }
|
|
5468
|
|
5469 /*
|
|
5470 * Set the current text background color.
|
|
5471 */
|
|
5472 void
|
|
5473 gui_mch_set_bg_color(guicolor_T color)
|
|
5474 {
|
|
5475 gui.bgcolor->pixel = (unsigned long)color;
|
|
5476 }
|
|
5477
|
207
|
5478 /*
|
|
5479 * Set the current text special color.
|
|
5480 */
|
|
5481 void
|
|
5482 gui_mch_set_sp_color(guicolor_T color)
|
|
5483 {
|
|
5484 gui.spcolor->pixel = (unsigned long)color;
|
|
5485 }
|
|
5486
|
7
|
5487 #ifdef HAVE_GTK2
|
|
5488 /*
|
|
5489 * Function-like convenience macro for the sake of efficiency.
|
|
5490 */
|
|
5491 #define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
|
|
5492 G_STMT_START{ \
|
|
5493 PangoAttribute *tmp_attr_; \
|
|
5494 tmp_attr_ = (Attribute); \
|
|
5495 tmp_attr_->start_index = (Start); \
|
|
5496 tmp_attr_->end_index = (End); \
|
|
5497 pango_attr_list_insert((AttrList), tmp_attr_); \
|
|
5498 }G_STMT_END
|
|
5499
|
|
5500 static void
|
|
5501 apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
|
|
5502 {
|
|
5503 char_u *start = NULL;
|
|
5504 char_u *p;
|
|
5505 int uc;
|
|
5506
|
|
5507 for (p = s; p < s + len; p += utf_byte2len(*p))
|
|
5508 {
|
|
5509 uc = utf_ptr2char(p);
|
|
5510
|
|
5511 if (start == NULL)
|
|
5512 {
|
|
5513 if (uc >= 0x80 && utf_char2cells(uc) == 2)
|
|
5514 start = p;
|
|
5515 }
|
|
5516 else if (uc < 0x80 /* optimization shortcut */
|
|
5517 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
|
|
5518 {
|
|
5519 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
|
|
5520 attr_list, start - s, p - s);
|
|
5521 start = NULL;
|
|
5522 }
|
|
5523 }
|
|
5524
|
|
5525 if (start != NULL)
|
|
5526 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
|
|
5527 attr_list, start - s, len);
|
|
5528 }
|
|
5529
|
|
5530 static int
|
|
5531 count_cluster_cells(char_u *s, PangoItem *item,
|
|
5532 PangoGlyphString* glyphs, int i,
|
|
5533 int *cluster_width,
|
|
5534 int *last_glyph_rbearing)
|
|
5535 {
|
|
5536 char_u *p;
|
|
5537 int next; /* glyph start index of next cluster */
|
|
5538 int start, end; /* string segment of current cluster */
|
|
5539 int width; /* real cluster width in Pango units */
|
|
5540 int uc;
|
|
5541 int cellcount = 0;
|
|
5542
|
|
5543 width = glyphs->glyphs[i].geometry.width;
|
|
5544
|
|
5545 for (next = i + 1; next < glyphs->num_glyphs; ++next)
|
|
5546 {
|
|
5547 if (glyphs->glyphs[next].attr.is_cluster_start)
|
|
5548 break;
|
|
5549 else if (glyphs->glyphs[next].geometry.width > width)
|
|
5550 width = glyphs->glyphs[next].geometry.width;
|
|
5551 }
|
|
5552
|
|
5553 start = item->offset + glyphs->log_clusters[i];
|
|
5554 end = item->offset + ((next < glyphs->num_glyphs) ?
|
|
5555 glyphs->log_clusters[next] : item->length);
|
|
5556
|
|
5557 for (p = s + start; p < s + end; p += utf_byte2len(*p))
|
|
5558 {
|
|
5559 uc = utf_ptr2char(p);
|
|
5560 if (uc < 0x80)
|
|
5561 ++cellcount;
|
|
5562 else if (!utf_iscomposing(uc))
|
|
5563 cellcount += utf_char2cells(uc);
|
|
5564 }
|
|
5565
|
|
5566 if (last_glyph_rbearing != NULL
|
|
5567 && cellcount > 0 && next == glyphs->num_glyphs)
|
|
5568 {
|
|
5569 PangoRectangle ink_rect;
|
|
5570 /*
|
|
5571 * If a certain combining mark had to be taken from a non-monospace
|
|
5572 * font, we have to compensate manually by adapting x_offset according
|
|
5573 * to the ink extents of the previous glyph.
|
|
5574 */
|
|
5575 pango_font_get_glyph_extents(item->analysis.font,
|
|
5576 glyphs->glyphs[i].glyph,
|
|
5577 &ink_rect, NULL);
|
|
5578
|
|
5579 if (PANGO_RBEARING(ink_rect) > 0)
|
|
5580 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
|
|
5581 }
|
|
5582
|
|
5583 if (cellcount > 0)
|
|
5584 *cluster_width = width;
|
|
5585
|
|
5586 return cellcount;
|
|
5587 }
|
|
5588
|
|
5589 /*
|
|
5590 * If there are only combining characters in the cluster, we cannot just
|
|
5591 * change the width of the previous glyph since there is none. Therefore
|
|
5592 * some guesswork is needed.
|
|
5593 *
|
|
5594 * If ink_rect.x is negative Pango apparently has taken care of the composing
|
|
5595 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
|
|
5596 * to problems with composing from different fonts we still need to fine-tune
|
|
5597 * x_offset to avoid uglyness.
|
|
5598 *
|
|
5599 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
|
|
5600 * the position of the previous glyph. Apparently this happens only with old
|
|
5601 * X fonts which don't provide the special combining information needed by
|
|
5602 * Pango.
|
|
5603 */
|
|
5604 static void
|
|
5605 setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
|
|
5606 int last_cellcount, int last_cluster_width,
|
|
5607 int last_glyph_rbearing)
|
|
5608 {
|
|
5609 PangoRectangle ink_rect;
|
|
5610 PangoRectangle logical_rect;
|
|
5611 int width;
|
|
5612
|
|
5613 width = last_cellcount * gui.char_width * PANGO_SCALE;
|
|
5614 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
|
|
5615 glyph->geometry.width = 0;
|
|
5616
|
|
5617 pango_font_get_glyph_extents(item->analysis.font,
|
|
5618 glyph->glyph,
|
|
5619 &ink_rect, &logical_rect);
|
|
5620 if (ink_rect.x < 0)
|
|
5621 {
|
|
5622 glyph->geometry.x_offset += last_glyph_rbearing;
|
|
5623 glyph->geometry.y_offset = logical_rect.height
|
|
5624 - (gui.char_height - p_linespace) * PANGO_SCALE;
|
|
5625 }
|
|
5626 }
|
|
5627
|
|
5628 static void
|
|
5629 draw_glyph_string(int row, int col, int num_cells, int flags,
|
|
5630 PangoFont *font, PangoGlyphString *glyphs)
|
|
5631 {
|
|
5632 if (!(flags & DRAW_TRANSP))
|
|
5633 {
|
|
5634 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
|
|
5635
|
|
5636 gdk_draw_rectangle(gui.drawarea->window,
|
|
5637 gui.text_gc,
|
|
5638 TRUE,
|
|
5639 FILL_X(col),
|
|
5640 FILL_Y(row),
|
|
5641 num_cells * gui.char_width,
|
|
5642 gui.char_height);
|
|
5643 }
|
|
5644
|
|
5645 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
|
|
5646
|
|
5647 gdk_draw_glyphs(gui.drawarea->window,
|
|
5648 gui.text_gc,
|
|
5649 font,
|
|
5650 TEXT_X(col),
|
|
5651 TEXT_Y(row),
|
|
5652 glyphs);
|
|
5653
|
|
5654 /* redraw the contents with an offset of 1 to emulate bold */
|
|
5655 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
|
|
5656 gdk_draw_glyphs(gui.drawarea->window,
|
|
5657 gui.text_gc,
|
|
5658 font,
|
|
5659 TEXT_X(col) + 1,
|
|
5660 TEXT_Y(row),
|
|
5661 glyphs);
|
|
5662 }
|
|
5663
|
|
5664 #endif /* HAVE_GTK2 */
|
|
5665
|
207
|
5666 /*
|
|
5667 * Draw underline and undercurl at the bottom of the character cell.
|
|
5668 */
|
|
5669 static void
|
|
5670 draw_under(int flags, int row, int col, int cells)
|
|
5671 {
|
|
5672 int i;
|
|
5673 int offset;
|
|
5674 const static int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
|
|
5675 int y = FILL_Y(row + 1) - 1;
|
|
5676
|
|
5677 /* Undercurl: draw curl at the bottom of the character cell. */
|
|
5678 if (flags & DRAW_UNDERC)
|
|
5679 {
|
|
5680 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
|
|
5681 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
|
|
5682 {
|
|
5683 offset = val[i % 8];
|
|
5684 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
|
|
5685 }
|
|
5686 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
|
|
5687 }
|
|
5688
|
|
5689 /* Underline: draw a line at the bottom of the character cell. */
|
|
5690 if (flags & DRAW_UNDERL)
|
|
5691 {
|
|
5692 /* When p_linespace is 0, overwrite the bottom row of pixels.
|
|
5693 * Otherwise put the line just below the character. */
|
|
5694 if (p_linespace > 1)
|
|
5695 y -= p_linespace - 1;
|
|
5696 gdk_draw_line(gui.drawarea->window, gui.text_gc,
|
|
5697 FILL_X(col), y,
|
|
5698 FILL_X(col + cells) - 1, y);
|
|
5699 }
|
|
5700 }
|
|
5701
|
7
|
5702 #if defined(HAVE_GTK2) || defined(PROTO)
|
|
5703 int
|
|
5704 gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
|
|
5705 {
|
|
5706 GdkRectangle area; /* area for clip mask */
|
|
5707 PangoGlyphString *glyphs; /* glyphs of current item */
|
|
5708 int column_offset = 0; /* column offset in cells */
|
|
5709 int i;
|
|
5710 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
|
|
5711 char_u *new_conv_buf;
|
|
5712 int convlen;
|
|
5713 char_u *sp, *bp;
|
|
5714 int plen;
|
|
5715
|
|
5716 if (gui.text_context == NULL || gui.drawarea->window == NULL)
|
|
5717 return len;
|
|
5718
|
|
5719 if (output_conv.vc_type != CONV_NONE)
|
|
5720 {
|
|
5721 /*
|
|
5722 * Convert characters from 'encoding' to 'termencoding', which is set
|
|
5723 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
|
|
5724 * prohibits changing this to something else than UTF-8 if the GUI is
|
|
5725 * in use.
|
|
5726 */
|
|
5727 convlen = len;
|
|
5728 conv_buf = string_convert(&output_conv, s, &convlen);
|
|
5729 g_return_val_if_fail(conv_buf != NULL, len);
|
|
5730
|
|
5731 /* Correct for differences in char width: some chars are
|
|
5732 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
|
|
5733 * compensate for that. */
|
|
5734 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
|
|
5735 {
|
474
|
5736 plen = utf_ptr2len(bp);
|
7
|
5737 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
|
|
5738 {
|
|
5739 new_conv_buf = alloc(convlen + 2);
|
|
5740 if (new_conv_buf == NULL)
|
|
5741 return len;
|
|
5742 plen += bp - conv_buf;
|
|
5743 mch_memmove(new_conv_buf, conv_buf, plen);
|
|
5744 new_conv_buf[plen] = ' ';
|
|
5745 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
|
|
5746 convlen - plen + 1);
|
|
5747 vim_free(conv_buf);
|
|
5748 conv_buf = new_conv_buf;
|
|
5749 ++convlen;
|
|
5750 bp = conv_buf + plen;
|
|
5751 plen = 1;
|
|
5752 }
|
474
|
5753 sp += (*mb_ptr2len)(sp);
|
7
|
5754 bp += plen;
|
|
5755 }
|
|
5756 s = conv_buf;
|
|
5757 len = convlen;
|
|
5758 }
|
|
5759
|
|
5760 /*
|
|
5761 * Restrict all drawing to the current screen line in order to prevent
|
|
5762 * fuzzy font lookups from messing up the screen.
|
|
5763 */
|
|
5764 area.x = gui.border_offset;
|
|
5765 area.y = FILL_Y(row);
|
|
5766 area.width = gui.num_cols * gui.char_width;
|
|
5767 area.height = gui.char_height;
|
|
5768
|
|
5769 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
|
|
5770 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
|
|
5771
|
|
5772 glyphs = pango_glyph_string_new();
|
|
5773
|
|
5774 /*
|
|
5775 * Optimization hack: If possible, skip the itemize and shaping process
|
|
5776 * for pure ASCII strings. This optimization is particularly effective
|
|
5777 * because Vim draws space characters to clear parts of the screen.
|
|
5778 */
|
|
5779 if (!(flags & DRAW_ITALIC)
|
|
5780 && !((flags & DRAW_BOLD) && gui.font_can_bold)
|
|
5781 && gui.ascii_glyphs != NULL)
|
|
5782 {
|
|
5783 char_u *p;
|
|
5784
|
|
5785 for (p = s; p < s + len; ++p)
|
|
5786 if (*p & 0x80)
|
|
5787 goto not_ascii;
|
|
5788
|
|
5789 pango_glyph_string_set_size(glyphs, len);
|
|
5790
|
|
5791 for (i = 0; i < len; ++i)
|
|
5792 {
|
|
5793 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[s[i]];
|
|
5794 glyphs->log_clusters[i] = i;
|
|
5795 }
|
|
5796
|
|
5797 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
|
|
5798
|
|
5799 column_offset = len;
|
|
5800 }
|
|
5801 else
|
|
5802 not_ascii:
|
|
5803 {
|
|
5804 PangoAttrList *attr_list;
|
|
5805 GList *item_list;
|
|
5806 int cluster_width;
|
|
5807 int last_glyph_rbearing;
|
|
5808 int cells = 0; /* cells occupied by current cluster */
|
497
|
5809 #if 0
|
|
5810 int monospace13 = STRICMP(p_guifont, "monospace 13") == 0;
|
|
5811 #endif
|
7
|
5812
|
26
|
5813 /* Safety check: pango crashes when invoked with invalid utf-8
|
|
5814 * characters. */
|
|
5815 if (!utf_valid_string(s, s + len))
|
|
5816 {
|
|
5817 column_offset = len;
|
|
5818 goto skipitall;
|
|
5819 }
|
|
5820
|
7
|
5821 /* original width of the current cluster */
|
|
5822 cluster_width = PANGO_SCALE * gui.char_width;
|
|
5823
|
|
5824 /* right bearing of the last non-composing glyph */
|
|
5825 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
|
|
5826
|
|
5827 attr_list = pango_attr_list_new();
|
|
5828
|
|
5829 /* If 'guifontwide' is set then use that for double-width characters.
|
|
5830 * Otherwise just go with 'guifont' and let Pango do its thing. */
|
|
5831 if (gui.wide_font != NULL)
|
|
5832 apply_wide_font_attr(s, len, attr_list);
|
|
5833
|
|
5834 if ((flags & DRAW_BOLD) && gui.font_can_bold)
|
|
5835 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
|
|
5836 attr_list, 0, len);
|
|
5837 if (flags & DRAW_ITALIC)
|
|
5838 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
|
|
5839 attr_list, 0, len);
|
|
5840 /*
|
|
5841 * Break the text into segments with consistent directional level
|
|
5842 * and shaping engine. Pure Latin text needs only a single segment,
|
|
5843 * so there's no need to worry about the loop's efficiency. Better
|
|
5844 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
|
|
5845 */
|
|
5846 item_list = pango_itemize(gui.text_context,
|
|
5847 (const char *)s, 0, len, attr_list, NULL);
|
|
5848
|
|
5849 while (item_list != NULL)
|
|
5850 {
|
|
5851 PangoItem *item;
|
|
5852 int item_cells = 0; /* item length in cells */
|
|
5853
|
|
5854 item = (PangoItem *)item_list->data;
|
|
5855 item_list = g_list_delete_link(item_list, item_list);
|
|
5856 /*
|
|
5857 * Increment the bidirectional embedding level by 1 if it is not
|
|
5858 * even. An odd number means the output will be RTL, but we don't
|
|
5859 * want that since Vim handles right-to-left text on its own. It
|
|
5860 * would probably be sufficient to just set level = 0, but you can
|
|
5861 * never know :)
|
|
5862 *
|
|
5863 * Unfortunately we can't take advantage of Pango's ability to
|
|
5864 * render both LTR and RTL at the same time. In order to support
|
|
5865 * that, Vim's main screen engine would have to make use of Pango
|
|
5866 * functionality.
|
|
5867 */
|
|
5868 item->analysis.level = (item->analysis.level + 1) & (~1U);
|
|
5869
|
|
5870 /* HACK: Overrule the shape engine, we don't want shaping to be
|
|
5871 * done, because drawing the cursor would change the display. */
|
|
5872 item->analysis.shape_engine = default_shape_engine;
|
|
5873
|
|
5874 pango_shape((const char *)s + item->offset, item->length,
|
|
5875 &item->analysis, glyphs);
|
|
5876 /*
|
|
5877 * Fixed-width hack: iterate over the array and assign a fixed
|
|
5878 * width to each glyph, thus overriding the choice made by the
|
|
5879 * shaping engine. We use utf_char2cells() to determine the
|
|
5880 * number of cells needed.
|
|
5881 *
|
|
5882 * Also perform all kind of dark magic to get composing
|
|
5883 * characters right (and pretty too of course).
|
|
5884 */
|
|
5885 for (i = 0; i < glyphs->num_glyphs; ++i)
|
|
5886 {
|
|
5887 PangoGlyphInfo *glyph;
|
|
5888
|
|
5889 glyph = &glyphs->glyphs[i];
|
|
5890
|
|
5891 if (glyph->attr.is_cluster_start)
|
|
5892 {
|
|
5893 int cellcount;
|
|
5894
|
|
5895 cellcount = count_cluster_cells(
|
|
5896 s, item, glyphs, i, &cluster_width,
|
|
5897 (item_list != NULL) ? &last_glyph_rbearing : NULL);
|
|
5898
|
|
5899 if (cellcount > 0)
|
|
5900 {
|
|
5901 int width;
|
|
5902
|
|
5903 width = cellcount * gui.char_width * PANGO_SCALE;
|
|
5904 glyph->geometry.x_offset +=
|
|
5905 MAX(0, width - cluster_width) / 2;
|
|
5906 glyph->geometry.width = width;
|
|
5907 }
|
|
5908 else
|
|
5909 {
|
|
5910 /* If there are only combining characters in the
|
|
5911 * cluster, we cannot just change the width of the
|
|
5912 * previous glyph since there is none. Therefore
|
|
5913 * some guesswork is needed. */
|
|
5914 setup_zero_width_cluster(item, glyph, cells,
|
|
5915 cluster_width,
|
|
5916 last_glyph_rbearing);
|
|
5917 }
|
|
5918
|
|
5919 item_cells += cellcount;
|
|
5920 cells = cellcount;
|
|
5921 }
|
|
5922 else if (i > 0)
|
|
5923 {
|
|
5924 int width;
|
|
5925
|
|
5926 /* There is a previous glyph, so we deal with combining
|
|
5927 * characters the canonical way. That is, setting the
|
|
5928 * width of the previous glyph to 0. */
|
|
5929 glyphs->glyphs[i - 1].geometry.width = 0;
|
|
5930 width = cells * gui.char_width * PANGO_SCALE;
|
|
5931 glyph->geometry.x_offset +=
|
|
5932 MAX(0, width - cluster_width) / 2;
|
497
|
5933 #if 0
|
|
5934 /* Dirty hack: for "monospace 13" font there is a bug that
|
|
5935 * draws composing chars in the wrong position. Add
|
|
5936 * "width" to the offset to work around that. */
|
|
5937 if (monospace13)
|
|
5938 glyph->geometry.x_offset = width;
|
|
5939 #endif
|
|
5940
|
7
|
5941 glyph->geometry.width = width;
|
|
5942 }
|
|
5943 else /* i == 0 "cannot happen" */
|
|
5944 {
|
|
5945 glyph->geometry.width = 0;
|
|
5946 }
|
|
5947 }
|
|
5948
|
|
5949 /*** Aaaaand action! ***/
|
|
5950 draw_glyph_string(row, col + column_offset, item_cells,
|
|
5951 flags, item->analysis.font, glyphs);
|
|
5952
|
|
5953 pango_item_free(item);
|
|
5954
|
|
5955 column_offset += item_cells;
|
|
5956 }
|
|
5957
|
|
5958 pango_attr_list_unref(attr_list);
|
|
5959 }
|
|
5960
|
26
|
5961 skipitall:
|
207
|
5962 /* Draw underline and undercurl. */
|
|
5963 draw_under(flags, row, col, column_offset);
|
7
|
5964
|
|
5965 pango_glyph_string_free(glyphs);
|
|
5966 vim_free(conv_buf);
|
|
5967
|
|
5968 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
|
|
5969
|
|
5970 return column_offset;
|
|
5971 }
|
|
5972 #endif /* HAVE_GTK2 */
|
|
5973
|
|
5974 #if !defined(HAVE_GTK2) || defined(PROTO)
|
|
5975 void
|
|
5976 gui_mch_draw_string(int row, int col, char_u *s, int len, int flags)
|
|
5977 {
|
|
5978 static XChar2b *buf = NULL;
|
|
5979 static int buflen = 0;
|
|
5980 int is_wide;
|
|
5981 XChar2b *text;
|
|
5982 int textlen;
|
|
5983 XFontStruct *xfont;
|
|
5984 char_u *p;
|
|
5985 # ifdef FEAT_MBYTE
|
|
5986 unsigned c;
|
|
5987 # endif
|
|
5988 int width;
|
|
5989
|
|
5990 if (gui.current_font == NULL || gui.drawarea->window == NULL)
|
|
5991 return;
|
|
5992
|
|
5993 /*
|
|
5994 * Yeah yeah apparently the font support in GTK+ 1.2 only cares for either:
|
|
5995 * asians or 8-bit fonts. It is broken there, but no wonder the whole font
|
|
5996 * stuff is broken in X11 in first place. And the internationalization API
|
|
5997 * isn't something you would really like to use.
|
|
5998 */
|
|
5999
|
|
6000 xfont = (XFontStruct *)((GdkFontPrivate*)gui.current_font)->xfont;
|
|
6001 is_wide = ((xfont->min_byte1 != 0 || xfont->max_byte1 != 0)
|
|
6002 # ifdef FEAT_XFONTSET
|
|
6003 && gui.fontset == NOFONTSET
|
|
6004 # endif
|
|
6005 );
|
|
6006
|
|
6007 if (is_wide)
|
|
6008 {
|
|
6009 /* Convert a byte sequence to 16 bit characters for the Gdk functions.
|
|
6010 * Need a buffer for the 16 bit characters. Keep it between calls,
|
|
6011 * because allocating it each time is slow. */
|
|
6012 if (buflen < len)
|
|
6013 {
|
|
6014 XtFree((char *)buf);
|
|
6015 buf = (XChar2b *)XtMalloc(len * sizeof(XChar2b));
|
|
6016 buflen = len;
|
|
6017 }
|
|
6018
|
|
6019 p = s;
|
|
6020 textlen = 0;
|
|
6021 width = 0;
|
|
6022 while (p < s + len)
|
|
6023 {
|
|
6024 # ifdef FEAT_MBYTE
|
|
6025 if (enc_utf8)
|
|
6026 {
|
|
6027 c = utf_ptr2char(p);
|
|
6028 if (c >= 0x10000) /* show chars > 0xffff as ? */
|
|
6029 c = 0xbf;
|
|
6030 buf[textlen].byte1 = c >> 8;
|
|
6031 buf[textlen].byte2 = c;
|
474
|
6032 p += utf_ptr2len(p);
|
7
|
6033 width += utf_char2cells(c);
|
|
6034 }
|
|
6035 else
|
|
6036 # endif
|
|
6037 {
|
|
6038 buf[textlen].byte1 = '\0'; /* high eight bits */
|
|
6039 buf[textlen].byte2 = *p; /* low eight bits */
|
|
6040 ++p;
|
|
6041 ++width;
|
|
6042 }
|
|
6043 ++textlen;
|
|
6044 }
|
|
6045 text = buf;
|
|
6046 textlen = textlen * 2;
|
|
6047 }
|
|
6048 else
|
|
6049 {
|
|
6050 text = (XChar2b *)s;
|
|
6051 textlen = len;
|
|
6052 # ifdef FEAT_MBYTE
|
|
6053 if (has_mbyte)
|
|
6054 {
|
|
6055 width = 0;
|
474
|
6056 for (p = s; p < s + len; p += (*mb_ptr2len)(p))
|
7
|
6057 width += (*mb_ptr2cells)(p);
|
|
6058 }
|
|
6059 else
|
|
6060 # endif
|
|
6061 width = len;
|
|
6062 }
|
|
6063
|
|
6064 if (!(flags & DRAW_TRANSP))
|
|
6065 {
|
|
6066 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
|
|
6067 gdk_draw_rectangle(gui.drawarea->window,
|
|
6068 gui.text_gc,
|
|
6069 TRUE,
|
|
6070 FILL_X(col), FILL_Y(row),
|
|
6071 width * gui.char_width, gui.char_height);
|
|
6072 }
|
|
6073 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
|
|
6074 gdk_draw_text(gui.drawarea->window,
|
|
6075 gui.current_font,
|
|
6076 gui.text_gc,
|
|
6077 TEXT_X(col), TEXT_Y(row),
|
|
6078 (const gchar *)text, textlen);
|
|
6079
|
|
6080 /* redraw the contents with an offset of 1 to emulate bold */
|
|
6081 if (flags & DRAW_BOLD)
|
|
6082 gdk_draw_text(gui.drawarea->window,
|
|
6083 gui.current_font,
|
|
6084 gui.text_gc,
|
|
6085 TEXT_X(col) + 1, TEXT_Y(row),
|
|
6086 (const gchar *)text, textlen);
|
|
6087
|
207
|
6088 /* Draw underline and undercurl. */
|
|
6089 draw_under(flags, row, col, width);
|
7
|
6090 }
|
|
6091 #endif /* !HAVE_GTK2 */
|
|
6092
|
|
6093 /*
|
|
6094 * Return OK if the key with the termcap name "name" is supported.
|
|
6095 */
|
|
6096 int
|
|
6097 gui_mch_haskey(char_u *name)
|
|
6098 {
|
|
6099 int i;
|
|
6100
|
|
6101 for (i = 0; special_keys[i].key_sym != 0; i++)
|
|
6102 if (name[0] == special_keys[i].code0
|
|
6103 && name[1] == special_keys[i].code1)
|
|
6104 return OK;
|
|
6105 return FAIL;
|
|
6106 }
|
|
6107
|
|
6108 #if defined(FEAT_TITLE) \
|
|
6109 || (defined(FEAT_XIM) && !defined(HAVE_GTK2)) \
|
|
6110 || defined(PROTO)
|
|
6111 /*
|
|
6112 * Return the text window-id and display. Only required for X-based GUI's
|
|
6113 */
|
|
6114 int
|
|
6115 gui_get_x11_windis(Window *win, Display **dis)
|
|
6116 {
|
|
6117 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
|
|
6118 {
|
|
6119 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
|
|
6120 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
|
|
6121 return OK;
|
|
6122 }
|
|
6123
|
|
6124 *dis = NULL;
|
|
6125 *win = 0;
|
|
6126 return FAIL;
|
|
6127 }
|
|
6128 #endif
|
|
6129
|
|
6130 #if defined(FEAT_CLIENTSERVER) \
|
|
6131 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
|
|
6132
|
|
6133 Display *
|
|
6134 gui_mch_get_display(void)
|
|
6135 {
|
|
6136 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
|
|
6137 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
|
|
6138 else
|
|
6139 return NULL;
|
|
6140 }
|
|
6141 #endif
|
|
6142
|
|
6143 void
|
|
6144 gui_mch_beep(void)
|
|
6145 {
|
|
6146 #ifdef HAVE_GTK_MULTIHEAD
|
|
6147 GdkDisplay *display;
|
|
6148
|
|
6149 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
|
|
6150 display = gtk_widget_get_display(gui.mainwin);
|
|
6151 else
|
|
6152 display = gdk_display_get_default();
|
|
6153
|
|
6154 if (display != NULL)
|
|
6155 gdk_display_beep(display);
|
|
6156 #else
|
|
6157 gdk_beep();
|
|
6158 #endif
|
|
6159 }
|
|
6160
|
|
6161 void
|
|
6162 gui_mch_flash(int msec)
|
|
6163 {
|
|
6164 GdkGCValues values;
|
|
6165 GdkGC *invert_gc;
|
|
6166
|
|
6167 if (gui.drawarea->window == NULL)
|
|
6168 return;
|
|
6169
|
|
6170 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
|
|
6171 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
|
|
6172 values.function = GDK_XOR;
|
|
6173 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
|
|
6174 &values,
|
|
6175 GDK_GC_FOREGROUND |
|
|
6176 GDK_GC_BACKGROUND |
|
|
6177 GDK_GC_FUNCTION);
|
|
6178 gdk_gc_set_exposures(invert_gc,
|
|
6179 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
|
|
6180 /*
|
|
6181 * Do a visual beep by changing back and forth in some undetermined way,
|
|
6182 * the foreground and background colors. This is due to the fact that
|
|
6183 * there can't be really any prediction about the effects of XOR on
|
|
6184 * arbitrary X11 servers. However this seems to be enough for what we
|
|
6185 * intend it to do.
|
|
6186 */
|
|
6187 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
|
|
6188 TRUE,
|
|
6189 0, 0,
|
|
6190 FILL_X((int)Columns) + gui.border_offset,
|
|
6191 FILL_Y((int)Rows) + gui.border_offset);
|
|
6192
|
|
6193 gui_mch_flush();
|
|
6194 ui_delay((long)msec, TRUE); /* wait so many msec */
|
|
6195
|
|
6196 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
|
|
6197 TRUE,
|
|
6198 0, 0,
|
|
6199 FILL_X((int)Columns) + gui.border_offset,
|
|
6200 FILL_Y((int)Rows) + gui.border_offset);
|
|
6201
|
|
6202 gdk_gc_destroy(invert_gc);
|
|
6203 }
|
|
6204
|
|
6205 /*
|
|
6206 * Invert a rectangle from row r, column c, for nr rows and nc columns.
|
|
6207 */
|
|
6208 void
|
|
6209 gui_mch_invert_rectangle(int r, int c, int nr, int nc)
|
|
6210 {
|
|
6211 GdkGCValues values;
|
|
6212 GdkGC *invert_gc;
|
|
6213 GdkColor foreground;
|
|
6214 GdkColor background;
|
|
6215
|
|
6216 if (gui.drawarea->window == NULL)
|
|
6217 return;
|
|
6218
|
|
6219 foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
|
|
6220 background.pixel = gui.norm_pixel ^ gui.back_pixel;
|
|
6221
|
|
6222 values.foreground = foreground;
|
|
6223 values.background = background;
|
|
6224 values.function = GDK_XOR;
|
|
6225 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
|
|
6226 &values,
|
|
6227 GDK_GC_FOREGROUND |
|
|
6228 GDK_GC_BACKGROUND |
|
|
6229 GDK_GC_FUNCTION);
|
|
6230 gdk_gc_set_exposures(invert_gc, gui.visibility != GDK_VISIBILITY_UNOBSCURED);
|
|
6231 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
|
|
6232 TRUE,
|
|
6233 FILL_X(c), FILL_Y(r),
|
|
6234 (nc) * gui.char_width, (nr) * gui.char_height);
|
|
6235 gdk_gc_destroy(invert_gc);
|
|
6236 }
|
|
6237
|
|
6238 /*
|
|
6239 * Iconify the GUI window.
|
|
6240 */
|
|
6241 void
|
|
6242 gui_mch_iconify(void)
|
|
6243 {
|
|
6244 #ifdef HAVE_GTK2
|
|
6245 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
|
|
6246 #else
|
|
6247 XIconifyWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
|
|
6248 GDK_WINDOW_XWINDOW(gui.mainwin->window),
|
|
6249 DefaultScreen(GDK_WINDOW_XDISPLAY(gui.mainwin->window)));
|
|
6250 #endif
|
|
6251 }
|
|
6252
|
|
6253 #if defined(FEAT_EVAL) || defined(PROTO)
|
|
6254 /*
|
|
6255 * Bring the Vim window to the foreground.
|
|
6256 */
|
|
6257 void
|
|
6258 gui_mch_set_foreground(void)
|
|
6259 {
|
|
6260 # ifdef HAVE_GTK2
|
|
6261 gtk_window_present(GTK_WINDOW(gui.mainwin));
|
|
6262 # else
|
|
6263 gdk_window_raise(gui.mainwin->window);
|
|
6264 # endif
|
|
6265 }
|
|
6266 #endif
|
|
6267
|
|
6268 /*
|
|
6269 * Draw a cursor without focus.
|
|
6270 */
|
|
6271 void
|
|
6272 gui_mch_draw_hollow_cursor(guicolor_T color)
|
|
6273 {
|
|
6274 int i = 1;
|
|
6275
|
|
6276 if (gui.drawarea->window == NULL)
|
|
6277 return;
|
|
6278
|
|
6279 gui_mch_set_fg_color(color);
|
|
6280
|
|
6281 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
|
|
6282 #ifdef FEAT_MBYTE
|
|
6283 if (mb_lefthalve(gui.row, gui.col))
|
|
6284 i = 2;
|
|
6285 #endif
|
|
6286 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
|
|
6287 FALSE,
|
|
6288 FILL_X(gui.col), FILL_Y(gui.row),
|
|
6289 i * gui.char_width - 1, gui.char_height - 1);
|
|
6290 }
|
|
6291
|
|
6292 /*
|
|
6293 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
|
|
6294 * color "color".
|
|
6295 */
|
|
6296 void
|
|
6297 gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
|
|
6298 {
|
|
6299 if (gui.drawarea->window == NULL)
|
|
6300 return;
|
|
6301
|
|
6302 gui_mch_set_fg_color(color);
|
|
6303
|
|
6304 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
|
|
6305 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
|
|
6306 TRUE,
|
|
6307 #ifdef FEAT_RIGHTLEFT
|
|
6308 /* vertical line should be on the right of current point */
|
|
6309 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
|
|
6310 #endif
|
|
6311 FILL_X(gui.col),
|
|
6312 FILL_Y(gui.row) + gui.char_height - h,
|
|
6313 w, h);
|
|
6314 }
|
|
6315
|
|
6316
|
|
6317 /*
|
|
6318 * Catch up with any queued X11 events. This may put keyboard input into the
|
|
6319 * input buffer, call resize call-backs, trigger timers etc. If there is
|
|
6320 * nothing in the X11 event queue (& no timers pending), then we return
|
|
6321 * immediately.
|
|
6322 */
|
|
6323 void
|
|
6324 gui_mch_update(void)
|
|
6325 {
|
|
6326 while (gtk_events_pending() && !vim_is_input_buf_full())
|
|
6327 gtk_main_iteration_do(FALSE);
|
|
6328 }
|
|
6329
|
|
6330 static gint
|
|
6331 input_timer_cb(gpointer data)
|
|
6332 {
|
|
6333 int *timed_out = (int *) data;
|
|
6334
|
|
6335 /* Just inform the caller about the occurence of it */
|
|
6336 *timed_out = TRUE;
|
|
6337
|
|
6338 if (gtk_main_level() > 0)
|
|
6339 gtk_main_quit();
|
|
6340
|
|
6341 return FALSE; /* don't happen again */
|
|
6342 }
|
|
6343
|
|
6344 #ifdef FEAT_SNIFF
|
|
6345 /*
|
|
6346 * Callback function, used when data is available on the SNiFF connection.
|
|
6347 */
|
|
6348 /* ARGSUSED */
|
|
6349 static void
|
|
6350 sniff_request_cb(
|
|
6351 gpointer data,
|
|
6352 gint source_fd,
|
|
6353 GdkInputCondition condition)
|
|
6354 {
|
|
6355 static char_u bytes[3] = {CSI, (int)KS_EXTRA, (int)KE_SNIFF};
|
|
6356
|
|
6357 add_to_input_buf(bytes, 3);
|
|
6358
|
|
6359 if (gtk_main_level() > 0)
|
|
6360 gtk_main_quit();
|
|
6361 }
|
|
6362 #endif
|
|
6363
|
|
6364 /*
|
|
6365 * GUI input routine called by gui_wait_for_chars(). Waits for a character
|
|
6366 * from the keyboard.
|
|
6367 * wtime == -1 Wait forever.
|
|
6368 * wtime == 0 This should never happen.
|
|
6369 * wtime > 0 Wait wtime milliseconds for a character.
|
|
6370 * Returns OK if a character was found to be available within the given time,
|
|
6371 * or FAIL otherwise.
|
|
6372 */
|
|
6373 int
|
|
6374 gui_mch_wait_for_chars(long wtime)
|
|
6375 {
|
|
6376 int focus;
|
|
6377 guint timer;
|
|
6378 static int timed_out;
|
|
6379 #ifdef FEAT_SNIFF
|
|
6380 static int sniff_on = 0;
|
|
6381 static gint sniff_input_id = 0;
|
|
6382 #endif
|
|
6383
|
|
6384 #ifdef FEAT_SNIFF
|
|
6385 if (sniff_on && !want_sniff_request)
|
|
6386 {
|
|
6387 if (sniff_input_id)
|
|
6388 gdk_input_remove(sniff_input_id);
|
|
6389 sniff_on = 0;
|
|
6390 }
|
|
6391 else if (!sniff_on && want_sniff_request)
|
|
6392 {
|
|
6393 /* Add fd_from_sniff to watch for available data in main loop. */
|
|
6394 sniff_input_id = gdk_input_add(fd_from_sniff,
|
|
6395 GDK_INPUT_READ, sniff_request_cb, NULL);
|
|
6396 sniff_on = 1;
|
|
6397 }
|
|
6398 #endif
|
|
6399
|
|
6400 timed_out = FALSE;
|
|
6401
|
|
6402 /* this timeout makes sure that we will return if no characters arrived in
|
|
6403 * time */
|
|
6404
|
|
6405 if (wtime > 0)
|
|
6406 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out);
|
|
6407 else
|
|
6408 timer = 0;
|
|
6409
|
|
6410 focus = gui.in_focus;
|
|
6411
|
|
6412 do
|
|
6413 {
|
|
6414 /* Stop or start blinking when focus changes */
|
|
6415 if (gui.in_focus != focus)
|
|
6416 {
|
|
6417 if (gui.in_focus)
|
|
6418 gui_mch_start_blink();
|
|
6419 else
|
|
6420 gui_mch_stop_blink();
|
|
6421 focus = gui.in_focus;
|
|
6422 }
|
|
6423
|
|
6424 /*
|
|
6425 * Loop in GTK+ processing until a timeout or input occurs.
|
22
|
6426 * Skip this if input is available anyway (can happen in rare
|
|
6427 * situations, sort of race condition).
|
7
|
6428 */
|
22
|
6429 if (!input_available())
|
|
6430 gtk_main();
|
7
|
6431
|
|
6432 /* Got char, return immediately */
|
|
6433 if (input_available())
|
|
6434 {
|
|
6435 if (timer != 0 && !timed_out)
|
|
6436 gtk_timeout_remove(timer);
|
|
6437 return OK;
|
|
6438 }
|
|
6439 } while (wtime < 0 || !timed_out);
|
|
6440
|
|
6441 /*
|
|
6442 * Flush all eventually pending (drawing) events.
|
|
6443 */
|
|
6444 gui_mch_update();
|
|
6445
|
|
6446 return FAIL;
|
|
6447 }
|
|
6448
|
|
6449
|
|
6450 /****************************************************************************
|
|
6451 * Output drawing routines.
|
|
6452 ****************************************************************************/
|
|
6453
|
|
6454
|
|
6455 /* Flush any output to the screen */
|
|
6456 void
|
|
6457 gui_mch_flush(void)
|
|
6458 {
|
|
6459 #ifdef HAVE_GTK_MULTIHEAD
|
|
6460 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
|
|
6461 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
|
|
6462 #else
|
|
6463 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */
|
|
6464 #endif
|
|
6465 #ifdef HAVE_GTK2
|
|
6466 /* This happens to actually do what gui_mch_flush() is supposed to do,
|
|
6467 * according to the comment above. */
|
|
6468 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
|
|
6469 gdk_window_process_updates(gui.drawarea->window, FALSE);
|
|
6470 #endif
|
|
6471 }
|
|
6472
|
|
6473 /*
|
|
6474 * Clear a rectangular region of the screen from text pos (row1, col1) to
|
|
6475 * (row2, col2) inclusive.
|
|
6476 */
|
|
6477 void
|
|
6478 gui_mch_clear_block(int row1, int col1, int row2, int col2)
|
|
6479 {
|
|
6480 GdkColor color;
|
|
6481
|
|
6482 if (gui.drawarea->window == NULL)
|
|
6483 return;
|
|
6484
|
|
6485 color.pixel = gui.back_pixel;
|
|
6486
|
|
6487 gdk_gc_set_foreground(gui.text_gc, &color);
|
|
6488
|
|
6489 /* Clear one extra pixel at the far right, for when bold characters have
|
|
6490 * spilled over to the window border. */
|
|
6491 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
|
|
6492 FILL_X(col1), FILL_Y(row1),
|
|
6493 (col2 - col1 + 1) * gui.char_width
|
|
6494 + (col2 == Columns - 1),
|
|
6495 (row2 - row1 + 1) * gui.char_height);
|
|
6496 }
|
|
6497
|
|
6498 void
|
|
6499 gui_mch_clear_all(void)
|
|
6500 {
|
|
6501 if (gui.drawarea->window != NULL)
|
|
6502 gdk_window_clear(gui.drawarea->window);
|
|
6503 }
|
|
6504
|
|
6505 /*
|
|
6506 * Redraw any text revealed by scrolling up/down.
|
|
6507 */
|
|
6508 static void
|
|
6509 check_copy_area(void)
|
|
6510 {
|
|
6511 GdkEvent *event;
|
|
6512 int expose_count;
|
|
6513
|
|
6514 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
|
|
6515 return;
|
|
6516
|
|
6517 /* Avoid redrawing the cursor while scrolling or it'll end up where
|
|
6518 * we don't want it to be. I'm not sure if it's correct to call
|
|
6519 * gui_dont_update_cursor() at this point but it works as a quick
|
|
6520 * fix for now. */
|
|
6521 gui_dont_update_cursor();
|
|
6522
|
|
6523 do
|
|
6524 {
|
|
6525 /* Wait to check whether the scroll worked or not. */
|
|
6526 event = gdk_event_get_graphics_expose(gui.drawarea->window);
|
|
6527
|
|
6528 if (event == NULL)
|
|
6529 break; /* received NoExpose event */
|
|
6530
|
|
6531 gui_redraw(event->expose.area.x, event->expose.area.y,
|
|
6532 event->expose.area.width, event->expose.area.height);
|
|
6533
|
|
6534 expose_count = event->expose.count;
|
|
6535 gdk_event_free(event);
|
|
6536 }
|
|
6537 while (expose_count > 0); /* more events follow */
|
|
6538
|
|
6539 gui_can_update_cursor();
|
|
6540 }
|
|
6541
|
|
6542 /*
|
|
6543 * Delete the given number of lines from the given row, scrolling up any
|
|
6544 * text further down within the scroll region.
|
|
6545 */
|
|
6546 void
|
|
6547 gui_mch_delete_lines(int row, int num_lines)
|
|
6548 {
|
|
6549 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
|
|
6550 return; /* Can't see the window */
|
|
6551
|
|
6552 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
|
|
6553 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
|
|
6554
|
|
6555 /* copy one extra pixel, for when bold has spilled over */
|
|
6556 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
|
|
6557 FILL_X(gui.scroll_region_left), FILL_Y(row),
|
|
6558 gui.drawarea->window,
|
|
6559 FILL_X(gui.scroll_region_left),
|
|
6560 FILL_Y(row + num_lines),
|
|
6561 gui.char_width * (gui.scroll_region_right
|
|
6562 - gui.scroll_region_left + 1) + 1,
|
|
6563 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
|
|
6564
|
|
6565 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
|
|
6566 gui.scroll_region_left,
|
|
6567 gui.scroll_region_bot, gui.scroll_region_right);
|
|
6568 check_copy_area();
|
|
6569 }
|
|
6570
|
|
6571 /*
|
|
6572 * Insert the given number of lines before the given row, scrolling down any
|
|
6573 * following text within the scroll region.
|
|
6574 */
|
|
6575 void
|
|
6576 gui_mch_insert_lines(int row, int num_lines)
|
|
6577 {
|
|
6578 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
|
|
6579 return; /* Can't see the window */
|
|
6580
|
|
6581 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
|
|
6582 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
|
|
6583
|
|
6584 /* copy one extra pixel, for when bold has spilled over */
|
|
6585 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
|
|
6586 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
|
|
6587 gui.drawarea->window,
|
|
6588 FILL_X(gui.scroll_region_left), FILL_Y(row),
|
|
6589 gui.char_width * (gui.scroll_region_right
|
|
6590 - gui.scroll_region_left + 1) + 1,
|
|
6591 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
|
|
6592
|
|
6593 gui_clear_block(row, gui.scroll_region_left,
|
|
6594 row + num_lines - 1, gui.scroll_region_right);
|
|
6595 check_copy_area();
|
|
6596 }
|
|
6597
|
|
6598 /*
|
|
6599 * X Selection stuff, for cutting and pasting text to other windows.
|
|
6600 */
|
|
6601 void
|
|
6602 clip_mch_request_selection(VimClipboard *cbd)
|
|
6603 {
|
|
6604 GdkAtom target;
|
|
6605 unsigned i;
|
|
6606 int nbytes;
|
|
6607 char_u *buffer;
|
|
6608
|
|
6609 for (i = 0; i < N_SELECTION_TARGETS; ++i)
|
|
6610 {
|
|
6611 received_selection = RS_NONE;
|
|
6612 target = gdk_atom_intern(selection_targets[i].target, FALSE);
|
|
6613
|
|
6614 gtk_selection_convert(gui.drawarea,
|
|
6615 cbd->gtk_sel_atom, target,
|
|
6616 (guint32)GDK_CURRENT_TIME);
|
|
6617
|
|
6618 while (received_selection == RS_NONE)
|
|
6619 gtk_main(); /* wait for selection_received_cb */
|
|
6620
|
|
6621 if (received_selection != RS_FAIL)
|
|
6622 return;
|
|
6623 }
|
|
6624
|
|
6625 /* Final fallback position - use the X CUT_BUFFER0 store */
|
|
6626 nbytes = 0;
|
|
6627 buffer = (char_u *)XFetchBuffer(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
|
|
6628 &nbytes, 0);
|
|
6629 if (nbytes > 0)
|
|
6630 {
|
|
6631 /* Got something */
|
|
6632 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
|
|
6633 if (p_verbose > 0)
|
294
|
6634 {
|
|
6635 verbose_enter();
|
7
|
6636 smsg((char_u *)_("Used CUT_BUFFER0 instead of empty selection"));
|
294
|
6637 verbose_leave();
|
|
6638 }
|
7
|
6639 }
|
|
6640 if (buffer != NULL)
|
|
6641 XFree(buffer);
|
|
6642 }
|
|
6643
|
|
6644 /*
|
|
6645 * Disown the selection.
|
|
6646 */
|
|
6647 /*ARGSUSED*/
|
|
6648 void
|
|
6649 clip_mch_lose_selection(VimClipboard *cbd)
|
|
6650 {
|
|
6651 /* WEIRD: when using NULL to actually disown the selection, we lose the
|
|
6652 * selection the first time we own it. */
|
|
6653 /*
|
|
6654 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, (guint32)GDK_CURRENT_TIME);
|
|
6655 gui_mch_update();
|
|
6656 */
|
|
6657 }
|
|
6658
|
|
6659 /*
|
|
6660 * Own the selection and return OK if it worked.
|
|
6661 */
|
|
6662 int
|
|
6663 clip_mch_own_selection(VimClipboard *cbd)
|
|
6664 {
|
|
6665 int success;
|
|
6666
|
|
6667 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
|
|
6668 (guint32)GDK_CURRENT_TIME);
|
|
6669 gui_mch_update();
|
|
6670 return (success) ? OK : FAIL;
|
|
6671 }
|
|
6672
|
|
6673 /*
|
|
6674 * Send the current selection to the clipboard. Do nothing for X because we
|
|
6675 * will fill in the selection only when requested by another app.
|
|
6676 */
|
|
6677 /*ARGSUSED*/
|
|
6678 void
|
|
6679 clip_mch_set_selection(VimClipboard *cbd)
|
|
6680 {
|
|
6681 }
|
|
6682
|
|
6683
|
|
6684 #if defined(FEAT_MENU) || defined(PROTO)
|
|
6685 /*
|
|
6686 * Make a menu item appear either active or not active (grey or not grey).
|
|
6687 */
|
|
6688 void
|
|
6689 gui_mch_menu_grey(vimmenu_T *menu, int grey)
|
|
6690 {
|
|
6691 if (menu->id == NULL)
|
|
6692 return;
|
|
6693
|
|
6694 if (menu_is_separator(menu->name))
|
|
6695 grey = TRUE;
|
|
6696
|
|
6697 gui_mch_menu_hidden(menu, FALSE);
|
|
6698 /* Be clever about bitfields versus true booleans here! */
|
|
6699 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
|
|
6700 {
|
|
6701 gtk_widget_set_sensitive(menu->id, !grey);
|
|
6702 gui_mch_update();
|
|
6703 }
|
|
6704 }
|
|
6705
|
|
6706 /*
|
|
6707 * Make menu item hidden or not hidden.
|
|
6708 */
|
|
6709 void
|
|
6710 gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
|
|
6711 {
|
|
6712 if (menu->id == 0)
|
|
6713 return;
|
|
6714
|
|
6715 if (hidden)
|
|
6716 {
|
|
6717 if (GTK_WIDGET_VISIBLE(menu->id))
|
|
6718 {
|
|
6719 gtk_widget_hide(menu->id);
|
|
6720 gui_mch_update();
|
|
6721 }
|
|
6722 }
|
|
6723 else
|
|
6724 {
|
|
6725 if (!GTK_WIDGET_VISIBLE(menu->id))
|
|
6726 {
|
|
6727 gtk_widget_show(menu->id);
|
|
6728 gui_mch_update();
|
|
6729 }
|
|
6730 }
|
|
6731 }
|
|
6732
|
|
6733 /*
|
|
6734 * This is called after setting all the menus to grey/hidden or not.
|
|
6735 */
|
|
6736 void
|
|
6737 gui_mch_draw_menubar(void)
|
|
6738 {
|
|
6739 /* just make sure that the visual changes get effect immediately */
|
|
6740 gui_mch_update();
|
|
6741 }
|
|
6742 #endif /* FEAT_MENU */
|
|
6743
|
|
6744 /*
|
|
6745 * Scrollbar stuff.
|
|
6746 */
|
|
6747 void
|
|
6748 gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
|
|
6749 {
|
|
6750 if (sb->id == NULL)
|
|
6751 return;
|
|
6752
|
|
6753 if (flag)
|
|
6754 gtk_widget_show(sb->id);
|
|
6755 else
|
|
6756 gtk_widget_hide(sb->id);
|
|
6757
|
791
|
6758 update_window_manager_hints(0, 0);
|
7
|
6759 }
|
|
6760
|
|
6761
|
|
6762 /*
|
|
6763 * Return the RGB value of a pixel as long.
|
|
6764 */
|
|
6765 long_u
|
|
6766 gui_mch_get_rgb(guicolor_T pixel)
|
|
6767 {
|
|
6768 GdkColor color;
|
|
6769 #ifndef HAVE_GTK2
|
|
6770 GdkColorContext *cc;
|
|
6771
|
|
6772 cc = gdk_color_context_new(gtk_widget_get_visual(gui.drawarea),
|
|
6773 gtk_widget_get_colormap(gui.drawarea));
|
|
6774 color.pixel = pixel;
|
|
6775 gdk_color_context_query_color(cc, &color);
|
|
6776
|
|
6777 gdk_color_context_free(cc);
|
|
6778 #else
|
|
6779 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
|
|
6780 (unsigned long)pixel, &color);
|
|
6781 #endif
|
|
6782
|
|
6783 return (((unsigned)color.red & 0xff00) << 8)
|
|
6784 | ((unsigned)color.green & 0xff00)
|
|
6785 | (((unsigned)color.blue & 0xff00) >> 8);
|
|
6786 }
|
|
6787
|
|
6788 /*
|
88
|
6789 * Get current mouse coordinates in text window.
|
7
|
6790 */
|
88
|
6791 void
|
|
6792 gui_mch_getmouse(int *x, int *y)
|
7
|
6793 {
|
88
|
6794 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
|
7
|
6795 }
|
|
6796
|
|
6797 void
|
|
6798 gui_mch_setmouse(int x, int y)
|
|
6799 {
|
|
6800 /* Sorry for the Xlib call, but we can't avoid it, since there is no
|
|
6801 * internal GDK mechanism present to accomplish this. (and for good
|
|
6802 * reason...) */
|
|
6803 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
|
|
6804 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
|
|
6805 0, 0, 0U, 0U, x, y);
|
|
6806 }
|
|
6807
|
|
6808
|
|
6809 #ifdef FEAT_MOUSESHAPE
|
|
6810 /* The last set mouse pointer shape is remembered, to be used when it goes
|
|
6811 * from hidden to not hidden. */
|
|
6812 static int last_shape = 0;
|
|
6813 #endif
|
|
6814
|
|
6815 /*
|
|
6816 * Use the blank mouse pointer or not.
|
|
6817 *
|
|
6818 * hide: TRUE = use blank ptr, FALSE = use parent ptr
|
|
6819 */
|
|
6820 void
|
|
6821 gui_mch_mousehide(int hide)
|
|
6822 {
|
|
6823 if (gui.pointer_hidden != hide)
|
|
6824 {
|
|
6825 gui.pointer_hidden = hide;
|
|
6826 if (gui.drawarea->window && gui.blank_pointer != NULL)
|
|
6827 {
|
|
6828 if (hide)
|
|
6829 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
|
|
6830 else
|
|
6831 #ifdef FEAT_MOUSESHAPE
|
|
6832 mch_set_mouse_shape(last_shape);
|
|
6833 #else
|
|
6834 gdk_window_set_cursor(gui.drawarea->window, NULL);
|
|
6835 #endif
|
|
6836 }
|
|
6837 }
|
|
6838 }
|
|
6839
|
|
6840 #if defined(FEAT_MOUSESHAPE) || defined(PROTO)
|
|
6841
|
|
6842 /* Table for shape IDs. Keep in sync with the mshape_names[] table in
|
|
6843 * misc2.c! */
|
|
6844 static const int mshape_ids[] =
|
|
6845 {
|
|
6846 GDK_LEFT_PTR, /* arrow */
|
|
6847 GDK_CURSOR_IS_PIXMAP, /* blank */
|
|
6848 GDK_XTERM, /* beam */
|
|
6849 GDK_SB_V_DOUBLE_ARROW, /* updown */
|
|
6850 GDK_SIZING, /* udsizing */
|
|
6851 GDK_SB_H_DOUBLE_ARROW, /* leftright */
|
|
6852 GDK_SIZING, /* lrsizing */
|
|
6853 GDK_WATCH, /* busy */
|
|
6854 GDK_X_CURSOR, /* no */
|
|
6855 GDK_CROSSHAIR, /* crosshair */
|
|
6856 GDK_HAND1, /* hand1 */
|
|
6857 GDK_HAND2, /* hand2 */
|
|
6858 GDK_PENCIL, /* pencil */
|
|
6859 GDK_QUESTION_ARROW, /* question */
|
|
6860 GDK_RIGHT_PTR, /* right-arrow */
|
|
6861 GDK_CENTER_PTR, /* up-arrow */
|
|
6862 GDK_LEFT_PTR /* last one */
|
|
6863 };
|
|
6864
|
|
6865 void
|
|
6866 mch_set_mouse_shape(int shape)
|
|
6867 {
|
|
6868 int id;
|
|
6869 GdkCursor *c;
|
|
6870
|
|
6871 if (gui.drawarea->window == NULL)
|
|
6872 return;
|
|
6873
|
|
6874 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
|
|
6875 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
|
|
6876 else
|
|
6877 {
|
|
6878 if (shape >= MSHAPE_NUMBERED)
|
|
6879 {
|
|
6880 id = shape - MSHAPE_NUMBERED;
|
|
6881 if (id >= GDK_LAST_CURSOR)
|
|
6882 id = GDK_LEFT_PTR;
|
|
6883 else
|
|
6884 id &= ~1; /* they are always even (why?) */
|
|
6885 }
|
840
|
6886 else if (shape < sizeof(mshape_ids) / sizeof(int))
|
7
|
6887 id = mshape_ids[shape];
|
842
|
6888 else
|
|
6889 return;
|
7
|
6890 # ifdef HAVE_GTK_MULTIHEAD
|
|
6891 c = gdk_cursor_new_for_display(
|
136
|
6892 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
|
7
|
6893 # else
|
136
|
6894 c = gdk_cursor_new((GdkCursorType)id);
|
7
|
6895 # endif
|
|
6896 gdk_window_set_cursor(gui.drawarea->window, c);
|
|
6897 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
|
|
6898 }
|
|
6899 if (shape != MSHAPE_HIDE)
|
|
6900 last_shape = shape;
|
|
6901 }
|
|
6902 #endif /* FEAT_MOUSESHAPE */
|
|
6903
|
|
6904
|
|
6905 #if defined(FEAT_SIGN_ICONS) || defined(PROTO)
|
|
6906 /*
|
|
6907 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
|
|
6908 * scaled down if the current font is not big enough, or scaled up if the image
|
|
6909 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
|
|
6910 * will be cut off if the current font is not big enough, or centered if it's
|
|
6911 * too small.
|
|
6912 */
|
|
6913 # define SIGN_WIDTH (2 * gui.char_width)
|
|
6914 # define SIGN_HEIGHT (gui.char_height)
|
|
6915 # define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
|
|
6916
|
|
6917 # ifdef HAVE_GTK2
|
|
6918
|
|
6919 void
|
|
6920 gui_mch_drawsign(int row, int col, int typenr)
|
|
6921 {
|
|
6922 GdkPixbuf *sign;
|
|
6923
|
|
6924 sign = (GdkPixbuf *)sign_get_image(typenr);
|
|
6925
|
|
6926 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
|
|
6927 {
|
|
6928 int width;
|
|
6929 int height;
|
|
6930 int xoffset;
|
|
6931 int yoffset;
|
|
6932 int need_scale;
|
|
6933
|
|
6934 width = gdk_pixbuf_get_width(sign);
|
|
6935 height = gdk_pixbuf_get_height(sign);
|
|
6936 /*
|
|
6937 * Decide whether we need to scale. Allow one pixel of border
|
|
6938 * width to be cut off, in order to avoid excessive scaling for
|
|
6939 * tiny differences in font size.
|
|
6940 */
|
|
6941 need_scale = (width > SIGN_WIDTH + 2
|
|
6942 || height > SIGN_HEIGHT + 2
|
|
6943 || (width < 3 * SIGN_WIDTH / 4
|
|
6944 && height < 3 * SIGN_HEIGHT / 4));
|
|
6945 if (need_scale)
|
|
6946 {
|
|
6947 double aspect;
|
|
6948
|
|
6949 /* Keep the original aspect ratio */
|
|
6950 aspect = (double)height / (double)width;
|
|
6951 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
|
|
6952 width = MIN(width, SIGN_WIDTH);
|
|
6953 height = (double)width * aspect;
|
|
6954
|
|
6955 /* This doesn't seem to be worth caching, and doing so
|
|
6956 * would complicate the code quite a bit. */
|
|
6957 sign = gdk_pixbuf_scale_simple(sign, width, height,
|
|
6958 GDK_INTERP_BILINEAR);
|
|
6959 if (sign == NULL)
|
|
6960 return; /* out of memory */
|
|
6961 }
|
|
6962
|
|
6963 /* The origin is the upper-left corner of the pixmap. Therefore
|
|
6964 * these offset may become negative if the pixmap is smaller than
|
|
6965 * the 2x1 cells reserved for the sign icon. */
|
|
6966 xoffset = (width - SIGN_WIDTH) / 2;
|
|
6967 yoffset = (height - SIGN_HEIGHT) / 2;
|
|
6968
|
|
6969 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
|
|
6970
|
|
6971 gdk_draw_rectangle(gui.drawarea->window,
|
|
6972 gui.text_gc,
|
|
6973 TRUE,
|
|
6974 FILL_X(col),
|
|
6975 FILL_Y(row),
|
|
6976 SIGN_WIDTH,
|
|
6977 SIGN_HEIGHT);
|
|
6978
|
|
6979 # if GTK_CHECK_VERSION(2,1,1)
|
|
6980 gdk_draw_pixbuf(gui.drawarea->window,
|
|
6981 NULL,
|
|
6982 sign,
|
|
6983 MAX(0, xoffset),
|
|
6984 MAX(0, yoffset),
|
|
6985 FILL_X(col) - MIN(0, xoffset),
|
|
6986 FILL_Y(row) - MIN(0, yoffset),
|
|
6987 MIN(width, SIGN_WIDTH),
|
|
6988 MIN(height, SIGN_HEIGHT),
|
|
6989 GDK_RGB_DITHER_NORMAL,
|
|
6990 0, 0);
|
|
6991 # else
|
|
6992 gdk_pixbuf_render_to_drawable_alpha(sign,
|
|
6993 gui.drawarea->window,
|
|
6994 MAX(0, xoffset),
|
|
6995 MAX(0, yoffset),
|
|
6996 FILL_X(col) - MIN(0, xoffset),
|
|
6997 FILL_Y(row) - MIN(0, yoffset),
|
|
6998 MIN(width, SIGN_WIDTH),
|
|
6999 MIN(height, SIGN_HEIGHT),
|
|
7000 GDK_PIXBUF_ALPHA_BILEVEL,
|
|
7001 127,
|
|
7002 GDK_RGB_DITHER_NORMAL,
|
|
7003 0, 0);
|
|
7004 # endif
|
|
7005 if (need_scale)
|
|
7006 g_object_unref(sign);
|
|
7007 }
|
|
7008 }
|
|
7009
|
|
7010 void *
|
|
7011 gui_mch_register_sign(char_u *signfile)
|
|
7012 {
|
|
7013 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
|
|
7014 {
|
|
7015 GdkPixbuf *sign;
|
|
7016 GError *error = NULL;
|
|
7017 char_u *message;
|
|
7018
|
|
7019 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
|
|
7020
|
|
7021 if (error == NULL)
|
|
7022 return sign;
|
|
7023
|
|
7024 message = (char_u *)error->message;
|
|
7025
|
|
7026 if (message != NULL && input_conv.vc_type != CONV_NONE)
|
|
7027 message = string_convert(&input_conv, message, NULL);
|
|
7028
|
|
7029 if (message != NULL)
|
|
7030 {
|
|
7031 /* The error message is already translated and will be more
|
|
7032 * descriptive than anything we could possibly do ourselves. */
|
|
7033 EMSG2("E255: %s", message);
|
|
7034
|
|
7035 if (input_conv.vc_type != CONV_NONE)
|
|
7036 vim_free(message);
|
|
7037 }
|
|
7038 g_error_free(error);
|
|
7039 }
|
|
7040
|
|
7041 return NULL;
|
|
7042 }
|
|
7043
|
|
7044 void
|
|
7045 gui_mch_destroy_sign(void *sign)
|
|
7046 {
|
|
7047 if (sign != NULL)
|
|
7048 g_object_unref(sign);
|
|
7049 }
|
|
7050
|
|
7051 # else /* !HAVE_GTK2 */
|
|
7052
|
|
7053 typedef struct
|
|
7054 {
|
|
7055 GdkPixmap *pixmap;
|
|
7056 GdkBitmap *mask;
|
|
7057 }
|
|
7058 signicon_T;
|
|
7059
|
|
7060 void
|
|
7061 gui_mch_drawsign(int row, int col, int typenr)
|
|
7062 {
|
|
7063 signicon_T *sign;
|
|
7064
|
|
7065 sign = (signicon_T *)sign_get_image(typenr);
|
|
7066
|
|
7067 if (sign != NULL && sign->pixmap != NULL
|
|
7068 && gui.drawarea != NULL && gui.drawarea->window != NULL)
|
|
7069 {
|
|
7070 int width;
|
|
7071 int height;
|
|
7072 int xoffset;
|
|
7073 int yoffset;
|
|
7074
|
|
7075 gdk_window_get_size(sign->pixmap, &width, &height);
|
|
7076
|
|
7077 /* The origin is the upper-left corner of the pixmap. Therefore
|
|
7078 * these offset may become negative if the pixmap is smaller than
|
|
7079 * the 2x1 cells reserved for the sign icon. */
|
|
7080 xoffset = (width - SIGN_WIDTH) / 2;
|
|
7081 yoffset = (height - SIGN_HEIGHT) / 2;
|
|
7082
|
|
7083 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
|
|
7084
|
|
7085 gdk_draw_rectangle(gui.drawarea->window,
|
|
7086 gui.text_gc,
|
|
7087 TRUE,
|
|
7088 FILL_X(col),
|
|
7089 FILL_Y(row),
|
|
7090 SIGN_WIDTH,
|
|
7091 SIGN_HEIGHT);
|
|
7092
|
|
7093 /* Set the clip mask for bilevel transparency */
|
|
7094 if (sign->mask != NULL)
|
|
7095 {
|
|
7096 gdk_gc_set_clip_origin(gui.text_gc,
|
|
7097 FILL_X(col) - xoffset,
|
|
7098 FILL_Y(row) - yoffset);
|
|
7099 gdk_gc_set_clip_mask(gui.text_gc, sign->mask);
|
|
7100 }
|
|
7101
|
|
7102 gdk_draw_pixmap(gui.drawarea->window,
|
|
7103 gui.text_gc,
|
|
7104 sign->pixmap,
|
|
7105 MAX(0, xoffset),
|
|
7106 MAX(0, yoffset),
|
|
7107 FILL_X(col) - MIN(0, xoffset),
|
|
7108 FILL_Y(row) - MIN(0, yoffset),
|
|
7109 MIN(width, SIGN_WIDTH),
|
|
7110 MIN(height, SIGN_HEIGHT));
|
|
7111
|
|
7112 gdk_gc_set_clip_mask(gui.text_gc, NULL);
|
|
7113 }
|
|
7114 }
|
|
7115
|
|
7116 void *
|
|
7117 gui_mch_register_sign(char_u *signfile)
|
|
7118 {
|
|
7119 signicon_T *sign = NULL;
|
|
7120
|
|
7121 if (signfile[0] != NUL && signfile[0] != '-'
|
|
7122 && gui.drawarea != NULL && gui.drawarea->window != NULL)
|
|
7123 {
|
|
7124 sign = (signicon_T *)alloc(sizeof(signicon_T));
|
|
7125
|
|
7126 if (sign != NULL) /* NULL == OOM == "cannot really happen" */
|
|
7127 {
|
|
7128 sign->mask = NULL;
|
|
7129 sign->pixmap = gdk_pixmap_colormap_create_from_xpm(
|
|
7130 gui.drawarea->window, NULL,
|
|
7131 &sign->mask, NULL,
|
|
7132 (const char *)signfile);
|
|
7133
|
|
7134 if (sign->pixmap == NULL)
|
|
7135 {
|
|
7136 vim_free(sign);
|
|
7137 sign = NULL;
|
|
7138 EMSG(_(e_signdata));
|
|
7139 }
|
|
7140 }
|
|
7141 }
|
|
7142 return sign;
|
|
7143 }
|
|
7144
|
|
7145 void
|
|
7146 gui_mch_destroy_sign(void *sign)
|
|
7147 {
|
|
7148 if (sign != NULL)
|
|
7149 {
|
|
7150 signicon_T *signicon = (signicon_T *)sign;
|
|
7151
|
|
7152 if (signicon->pixmap != NULL)
|
|
7153 gdk_pixmap_unref(signicon->pixmap);
|
|
7154 if (signicon->mask != NULL)
|
|
7155 gdk_bitmap_unref(signicon->mask);
|
|
7156
|
|
7157 vim_free(signicon);
|
|
7158 }
|
|
7159 }
|
|
7160 # endif /* !HAVE_GTK2 */
|
|
7161
|
|
7162 #endif /* FEAT_SIGN_ICONS */
|
|
7163
|