blob: 23318bb7a3e30f4094f962d94a1a59ac29b80fb0 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* 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 *
Bram Moolenaar0a56cb82005-01-04 21:45:14 +000013 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
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"
Bram Moolenaardb552d602006-03-23 22:59:57 +000044# ifdef HAVE_GTK2
45/* missing prototype in bonobo-dock-item.h */
46extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh);
47# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000048#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 */
100enum
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 */
117static 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 */
135static 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 */
169static GdkAtom wm_protocols_atom = GDK_NONE;
170static GdkAtom save_yourself_atom = GDK_NONE;
171#endif
172
173/*
174 * Atoms used to control/reference X11 selections.
175 */
176#ifdef FEAT_MBYTE
177static GdkAtom utf8_string_atom = GDK_NONE;
178#endif
179#ifndef HAVE_GTK2
180static GdkAtom compound_text_atom = GDK_NONE;
181static GdkAtom text_atom = GDK_NONE;
182#endif
183static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */
184#ifdef FEAT_MBYTE
185static 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 */
193static struct special_key
194{
195 guint key_sym;
196 char_u code0;
197 char_u code1;
198}
199const 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 */
319typedef struct
320{
321 const char *name;
322 unsigned int flags;
323}
324cmdline_option_T;
325
326static 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
403static int gui_argc = 0;
404static char **gui_argv = NULL;
405
406#ifdef HAVE_GTK2
407static const char *role_argument = NULL;
408#endif
409#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
410static const char *restart_command = NULL;
411#endif
412static int found_iconic_arg = FALSE;
413
414#ifdef FEAT_GUI_GNOME
415/*
416 * Can't use Gnome if --socketid given
417 */
418static 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
429gui_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
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000605#if defined(EXITFREE) || defined(PROTO)
606 void
607gui_mch_free_all()
608{
609 vim_free(gui_argv);
610}
611#endif
612
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613/*
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
620visibility_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
639expose_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
669property_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
709static int blink_state = BLINK_NONE;
710static long_u blink_waittime = 700;
711static long_u blink_ontime = 400;
712static long_u blink_offtime = 250;
713static guint blink_timer = 0;
714
715 void
716gui_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
727gui_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
741blink_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
766gui_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
782enter_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
796leave_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
806focus_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
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000813 /* 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);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816
817 return TRUE;
818}
819
820/*ARGSUSED*/
821 static gint
822focus_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
844keyval_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
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000911 static int
912modifiers_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
929modifiers_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
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943/*
944 * Main keyboard handler:
945 */
946/*ARGSUSED*/
947 static gint
948key_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 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001159 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160
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
1217key_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
1235selection_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 */
1253static int received_selection = RS_NONE;
1254
1255/*ARGSUSED*/
1256 static void
1257selection_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
1406selection_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
1566gui_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
1596static guint mouse_click_timer = 0;
1597static int mouse_timed_out = TRUE;
1598
1599/*
1600 * Timer used to recognize multiple clicks of the mouse button
1601 */
1602 static gint
1603mouse_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
1612static guint motion_repeat_timer = 0;
1613static int motion_repeat_offset = FALSE;
1614static gint motion_repeat_timer_cb(gpointer);
1615
1616 static void
1617process_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 */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001639 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640
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
1699motion_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
1741motion_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
1769button_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
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001831 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832
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
1847scroll_event(GtkWidget *widget, GdkEventScroll *event, gpointer data)
1848{
1849 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001850 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851
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
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001873 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874
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
1888button_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
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001905 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906
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
1927count_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
1965filter_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 **
1987parse_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
2005drag_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 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002019 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020
2021 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2022
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002023 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024
2025 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2026 }
2027}
2028
2029 static void
2030drag_handle_text(GdkDragContext *context,
2031 GtkSelectionData *data,
2032 guint time_,
2033 GdkModifierType state)
2034{
2035 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2036 char_u *text;
2037 int len;
2038# ifdef FEAT_MBYTE
2039 char_u *tmpbuf = NULL;
2040# endif
2041
2042 text = data->data;
2043 len = data->length;
2044
2045# ifdef FEAT_MBYTE
2046 if (data->type == utf8_string_atom)
2047 {
2048# ifdef HAVE_GTK2
2049 if (input_conv.vc_type != CONV_NONE)
2050 tmpbuf = string_convert(&input_conv, text, &len);
2051# else
2052 vimconv_T conv;
2053
2054 conv.vc_type = CONV_NONE;
2055 convert_setup(&conv, (char_u *)"utf-8", p_enc);
2056
2057 if (conv.vc_type != CONV_NONE)
2058 {
2059 tmpbuf = string_convert(&conv, text, &len);
2060 convert_setup(&conv, NULL, NULL);
2061 }
2062# endif
2063 if (tmpbuf != NULL)
2064 text = tmpbuf;
2065 }
2066# endif /* FEAT_MBYTE */
2067
2068 dnd_yank_drag_data(text, (long)len);
2069 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2070# ifdef FEAT_MBYTE
2071 vim_free(tmpbuf);
2072# endif
2073
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002074 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075
2076 if (dropkey[2] != 0)
2077 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2078 else
2079 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
2080
2081 if (gtk_main_level() > 0)
2082 gtk_main_quit();
2083}
2084
2085/*
2086 * DND receiver.
2087 */
2088/*ARGSUSED2*/
2089 static void
2090drag_data_received_cb(GtkWidget *widget,
2091 GdkDragContext *context,
2092 gint x,
2093 gint y,
2094 GtkSelectionData *data,
2095 guint info,
2096 guint time_,
2097 gpointer user_data)
2098{
2099 GdkModifierType state;
2100
2101 /* Guard against trash */
2102 if (data->data == NULL
2103 || data->length <= 0
2104 || data->format != 8
2105 || data->data[data->length] != '\0')
2106 {
2107 gtk_drag_finish(context, FALSE, FALSE, time_);
2108 return;
2109 }
2110
2111 /* Get the current modifier state for proper distinguishment between
2112 * different operations later. */
2113 gdk_window_get_pointer(widget->window, NULL, NULL, &state);
2114
2115 /* Not sure about the role of "text/plain" here... */
2116 if (info == (guint)TARGET_TEXT_URI_LIST)
2117 drag_handle_uri_list(context, data, time_, state, x, y);
2118 else
2119 drag_handle_text(context, data, time_, state);
2120
2121}
2122#endif /* FEAT_DND */
2123
2124
2125#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2126/*
2127 * GnomeClient interact callback. Check for unsaved buffers that cannot
2128 * be abandoned and pop up a dialog asking the user for confirmation if
2129 * necessary.
2130 */
2131/*ARGSUSED0*/
2132 static void
2133sm_client_check_changed_any(GnomeClient *client,
2134 gint key,
2135 GnomeDialogType type,
2136 gpointer data)
2137{
2138 cmdmod_T save_cmdmod;
2139 gboolean shutdown_cancelled;
2140
2141 save_cmdmod = cmdmod;
2142
2143# ifdef FEAT_BROWSE
2144 cmdmod.browse = TRUE;
2145# endif
2146# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2147 cmdmod.confirm = TRUE;
2148# endif
2149 /*
2150 * If there are changed buffers, present the user with
2151 * a dialog if possible, otherwise give an error message.
2152 */
2153 shutdown_cancelled = check_changed_any(FALSE);
2154
2155 exiting = FALSE;
2156 cmdmod = save_cmdmod;
2157 setcursor(); /* position the cursor */
2158 out_flush();
2159 /*
2160 * If the user hit the [Cancel] button the whole shutdown
2161 * will be cancelled. Wow, quite powerful feature (:
2162 */
2163 gnome_interaction_key_return(key, shutdown_cancelled);
2164}
2165
2166/*
2167 * Generate a script that can be used to restore the current editing session.
2168 * Save the value of v:this_session before running :mksession in order to make
2169 * automagic session save fully transparent. Return TRUE on success.
2170 */
2171 static int
2172write_session_file(char_u *filename)
2173{
2174 char_u *escaped_filename;
2175 char *mksession_cmdline;
2176 unsigned int save_ssop_flags;
2177 int failed;
2178
2179 /*
2180 * Build an ex command line to create a script that restores the current
2181 * session if executed. Escape the filename to avoid nasty surprises.
2182 */
2183 escaped_filename = vim_strsave_escaped(filename, escape_chars);
2184 if (escaped_filename == NULL)
2185 return FALSE;
2186 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename, NULL);
2187 vim_free(escaped_filename);
2188 /*
2189 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
2190 * unpredictable effects when the session is saved automatically. Also,
2191 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
2192 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
2193 * enormously large if the GNOME session feature is used regularly.
2194 */
2195 save_ssop_flags = ssop_flags;
2196 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
2197 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE);
2198
2199 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
2200 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
2201 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
Bram Moolenaar485db9b2005-01-31 19:23:41 +00002202 do_unlet((char_u *)"Save_VV_this_session", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203
2204 ssop_flags = save_ssop_flags;
2205 g_free(mksession_cmdline);
2206 /*
2207 * Reopen the file and append a command to restore v:this_session,
2208 * as if this save never happened. This is to avoid conflicts with
2209 * the user's own sessions. FIXME: It's probably less hackish to add
2210 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
2211 */
2212 if (!failed)
2213 {
2214 FILE *fd;
2215
2216 fd = open_exfile(filename, TRUE, APPENDBIN);
2217
2218 failed = (fd == NULL
2219 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
2220 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
2221
2222 if (fd != NULL && fclose(fd) != 0)
2223 failed = TRUE;
2224
2225 if (failed)
2226 mch_remove(filename);
2227 }
2228
2229 return !failed;
2230}
2231
2232/*
2233 * "save_yourself" signal handler. Initiate an interaction to ask the user
2234 * for confirmation if necessary. Save the current editing session and tell
2235 * the session manager how to restart Vim.
2236 */
2237/*ARGSUSED1*/
2238 static gboolean
2239sm_client_save_yourself(GnomeClient *client,
2240 gint phase,
2241 GnomeSaveStyle save_style,
2242 gboolean shutdown,
2243 GnomeInteractStyle interact_style,
2244 gboolean fast,
2245 gpointer data)
2246{
2247 static const char suffix[] = "-session.vim";
2248 char *session_file;
2249 unsigned int len;
2250 gboolean success;
2251
2252 /* Always request an interaction if possible. check_changed_any()
2253 * won't actually show a dialog unless any buffers have been modified.
2254 * There doesn't seem to be an obvious way to check that without
2255 * automatically firing the dialog. Anyway, it works just fine. */
2256 if (interact_style == GNOME_INTERACT_ANY)
2257 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2258 &sm_client_check_changed_any,
2259 NULL);
2260 out_flush();
2261 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2262
2263 /* The path is unique for each session save. We do neither know nor care
2264 * which session script will actually be used later. This decision is in
2265 * the domain of the session manager. */
2266 session_file = gnome_config_get_real_path(
2267 gnome_client_get_config_prefix(client));
2268 len = strlen(session_file);
2269
2270 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2271 --len; /* get rid of the superfluous trailing '/' */
2272
2273 session_file = g_renew(char, session_file, len + sizeof(suffix));
2274 memcpy(session_file + len, suffix, sizeof(suffix));
2275
2276 success = write_session_file((char_u *)session_file);
2277
2278 if (success)
2279 {
2280 const char *argv[8];
2281 int i;
2282
2283 /* Tell the session manager how to wipe out the stored session data.
2284 * This isn't as dangerous as it looks, don't worry :) session_file
2285 * is a unique absolute filename. Usually it'll be something like
2286 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2287 i = 0;
2288 argv[i++] = "rm";
2289 argv[i++] = session_file;
2290 argv[i] = NULL;
2291
2292 gnome_client_set_discard_command(client, i, (char **)argv);
2293
2294 /* Tell the session manager how to restore the just saved session.
2295 * This is easily done thanks to Vim's -S option. Pass the -f flag
2296 * since there's no need to fork -- it might even cause confusion.
2297 * Also pass the window role to give the WM something to match on.
2298 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2299 i = 0;
2300 argv[i++] = restart_command;
2301 argv[i++] = "-f";
2302 argv[i++] = "-g";
2303# ifdef HAVE_GTK2
2304 argv[i++] = "--role";
2305 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
2306# endif
2307 argv[i++] = "-S";
2308 argv[i++] = session_file;
2309 argv[i] = NULL;
2310
2311 gnome_client_set_restart_command(client, i, (char **)argv);
2312 gnome_client_set_clone_command(client, 0, NULL);
2313 }
2314
2315 g_free(session_file);
2316
2317 return success;
2318}
2319
2320/*
2321 * Called when the session manager wants us to die. There isn't much to save
2322 * here since "save_yourself" has been emitted before (unless serious trouble
2323 * is happening).
2324 */
2325/*ARGSUSED0*/
2326 static void
2327sm_client_die(GnomeClient *client, gpointer data)
2328{
2329 /* Don't write messages to the GUI anymore */
2330 full_screen = FALSE;
2331
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002332 vim_strncpy(IObuff,
2333 _("Vim: Received \"die\" request from session manager\n"),
2334 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 preserve_exit();
2336}
2337
2338/*
2339 * Connect our signal handlers to be notified on session save and shutdown.
2340 */
2341 static void
2342setup_save_yourself(void)
2343{
2344 GnomeClient *client;
2345
2346 client = gnome_master_client();
2347
2348 if (client != NULL)
2349 {
2350 /* Must use the deprecated gtk_signal_connect() for compatibility
2351 * with GNOME 1. Arrgh, zombies! */
2352 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2353 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2354 gtk_signal_connect(GTK_OBJECT(client), "die",
2355 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2356 }
2357}
2358
2359#else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2360
2361# ifdef USE_XSMP
2362/*
2363 * GTK tells us that XSMP needs attention
2364 */
2365/*ARGSUSED*/
2366 static gboolean
2367local_xsmp_handle_requests(source, condition, data)
2368 GIOChannel *source;
2369 GIOCondition condition;
2370 gpointer data;
2371{
2372 if (condition == G_IO_IN)
2373 {
2374 /* Do stuff; maybe close connection */
2375 if (xsmp_handle_requests() == FAIL)
2376 g_io_channel_unref((GIOChannel *)data);
2377 return TRUE;
2378 }
2379 /* Error */
2380 g_io_channel_unref((GIOChannel *)data);
2381 xsmp_close();
2382 return TRUE;
2383}
2384# endif /* USE_XSMP */
2385
2386/*
2387 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2388 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2389 */
2390 static void
2391setup_save_yourself(void)
2392{
2393 Atom *existing_atoms = NULL;
2394 int count = 0;
2395
2396#ifdef USE_XSMP
2397 if (xsmp_icefd != -1)
2398 {
2399 /*
2400 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2401 * set up GTK IO monitor
2402 */
2403 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2404
2405 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2406 local_xsmp_handle_requests, (gpointer)g_io);
2407 }
2408 else
2409#endif
2410 {
2411 /* Fall back to old method */
2412
2413 /* first get the existing value */
2414 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2415 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2416 &existing_atoms, &count))
2417 {
2418 Atom *new_atoms;
2419 Atom save_yourself_xatom;
2420 int i;
2421
2422 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2423
2424 /* check if WM_SAVE_YOURSELF isn't there yet */
2425 for (i = 0; i < count; ++i)
2426 if (existing_atoms[i] == save_yourself_xatom)
2427 break;
2428
2429 if (i == count)
2430 {
2431 /* allocate an Atoms array which is one item longer */
2432 new_atoms = (Atom *)alloc((unsigned)((count + 1)
2433 * sizeof(Atom)));
2434 if (new_atoms != NULL)
2435 {
2436 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2437 new_atoms[count] = save_yourself_xatom;
2438 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2439 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2440 new_atoms, count + 1);
2441 vim_free(new_atoms);
2442 }
2443 }
2444 XFree(existing_atoms);
2445 }
2446 }
2447}
2448
2449# ifdef HAVE_GTK2
2450/*
2451 * Installing a global event filter seems to be the only way to catch
2452 * client messages of type WM_PROTOCOLS without overriding GDK's own
2453 * client message event filter. Well, that's still better than trying
2454 * to guess what the GDK filter had done if it had been invoked instead
2455 * (This is what we did for GTK+ 1.2, see below).
2456 *
2457 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2458 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2459 * I have the nasty feeling modern session managers just don't send this
2460 * deprecated message anymore. Addition: confirmed by several people.
2461 *
2462 * The GNOME session support is much cooler anyway. Unlike this ugly
2463 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2464 * it should work with KDE as well.
2465 */
2466/*ARGSUSED1*/
2467 static GdkFilterReturn
2468global_event_filter(GdkXEvent *xev, GdkEvent *event, gpointer data)
2469{
2470 XEvent *xevent = (XEvent *)xev;
2471
2472 if (xevent != NULL
2473 && xevent->type == ClientMessage
2474 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
2475 && xevent->xclient.data.l[0] == GET_X_ATOM(save_yourself_atom))
2476 {
2477 out_flush();
2478 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2479 /*
2480 * Set the window's WM_COMMAND property, to let the window manager
2481 * know we are done saving ourselves. We don't want to be
2482 * restarted, thus set argv to NULL.
2483 */
2484 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2485 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2486 NULL, 0);
2487 return GDK_FILTER_REMOVE;
2488 }
2489
2490 return GDK_FILTER_CONTINUE;
2491}
2492
2493# else /* !HAVE_GTK2 */
2494
2495/*
2496 * GDK handler for X ClientMessage events.
2497 */
2498/*ARGSUSED2*/
2499 static GdkFilterReturn
2500gdk_wm_protocols_filter(GdkXEvent *xev, GdkEvent *event, gpointer data)
2501{
2502 /* From example in gdkevents.c/gdk_wm_protocols_filter */
2503 XEvent *xevent = (XEvent *)xev;
2504
2505 if (xevent != NULL)
2506 {
2507 if (xevent->xclient.data.l[0] == GET_X_ATOM(save_yourself_atom))
2508 {
2509 out_flush();
2510 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2511
2512 /* Set the window's WM_COMMAND property, to let the window manager
2513 * know we are done saving ourselves. We don't want to be
2514 * restarted, thus set argv to NULL. */
2515 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2516 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2517 NULL, 0);
2518 }
2519 /*
2520 * Functionality from gdkevents.c/gdk_wm_protocols_filter;
2521 * Registering this filter apparently overrides the default GDK one,
2522 * so we need to perform its functionality. There seems no way to
2523 * register for WM_PROTOCOLS, and only process the WM_SAVE_YOURSELF
2524 * bit; it's all or nothing. Update: No, there is a way -- but it
2525 * only works with GTK+ 2 apparently. See above.
2526 */
2527 else if (xevent->xclient.data.l[0] == GET_X_ATOM(gdk_wm_delete_window))
2528 {
2529 event->any.type = GDK_DELETE;
2530 return GDK_FILTER_TRANSLATE;
2531 }
2532 }
2533
2534 return GDK_FILTER_REMOVE;
2535}
2536# endif /* !HAVE_GTK2 */
2537
2538#endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2539
2540
2541/*
2542 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2543 */
2544/*ARGSUSED*/
2545 static void
2546mainwin_realize(GtkWidget *widget, gpointer data)
2547{
2548/* If you get an error message here, you still need to unpack the runtime
2549 * archive! */
2550#ifdef magick
2551# undef magick
2552#endif
2553#ifdef HAVE_GTK2
2554 /* A bit hackish, but avoids casting later and allows optimization */
2555# define static static const
2556#endif
2557#define magick vim32x32
2558#include "../runtime/vim32x32.xpm"
2559#undef magick
2560#define magick vim16x16
2561#include "../runtime/vim16x16.xpm"
2562#undef magick
2563#define magick vim48x48
2564#include "../runtime/vim48x48.xpm"
2565#undef magick
2566#ifdef HAVE_GTK2
2567# undef static
2568#endif
2569
2570 /* When started with "--echo-wid" argument, write window ID on stdout. */
2571 if (echo_wid_arg)
2572 {
2573 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window));
2574 fflush(stdout);
2575 }
2576
2577 if (vim_strchr(p_go, GO_ICON) != NULL)
2578 {
2579 /*
2580 * Add an icon to the main window. For fun and convenience of the user.
2581 */
2582#ifdef HAVE_GTK2
2583 GList *icons = NULL;
2584
2585 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2586 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2587 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2588
2589 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2590
2591 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2592 g_list_free(icons);
2593
2594#else /* !HAVE_GTK2 */
2595
2596 GdkPixmap *icon;
2597 GdkBitmap *icon_mask = NULL;
2598 char **magick = vim32x32;
2599 Display *xdisplay;
2600 Window root_window;
2601 XIconSize *size;
2602 int number_sizes;
2603 /*
2604 * Adjust the icon to the preferences of the actual window manager.
2605 * This is once again a workaround for a defficiency in GTK+ 1.2.
2606 */
2607 xdisplay = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
2608 root_window = XRootWindow(xdisplay, DefaultScreen(xdisplay));
2609 if (XGetIconSizes(xdisplay, root_window, &size, &number_sizes))
2610 {
2611 if (number_sizes > 0)
2612 {
2613 if (size->max_height >= 48 && size->max_height >= 48)
2614 magick = vim48x48;
2615 else if (size->max_height >= 32 && size->max_height >= 32)
2616 magick = vim32x32;
2617 else if (size->max_height >= 16 && size->max_height >= 16)
2618 magick = vim16x16;
2619 }
2620 XFree(size);
2621 }
2622 icon = gdk_pixmap_create_from_xpm_d(gui.mainwin->window,
2623 &icon_mask, NULL, magick);
2624 if (icon != NULL)
2625 /* Note: for some reason gdk_window_set_icon() doesn't acquire
2626 * a reference on the pixmap, thus we _have_ to leak it. */
2627 gdk_window_set_icon(gui.mainwin->window, NULL, icon, icon_mask);
2628
2629#endif /* !HAVE_GTK2 */
2630 }
2631
2632#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2633 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
2634# ifdef HAVE_GTK2
2635 gdk_window_add_filter(NULL, &global_event_filter, NULL);
2636# else
2637 gdk_add_client_message_filter(wm_protocols_atom,
2638 &gdk_wm_protocols_filter, NULL);
2639# endif
2640#endif
2641 /* Setup to indicate to the window manager that we want to catch the
2642 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2643 * manager instead. */
2644#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2645 if (using_gnome)
2646#endif
2647 setup_save_yourself();
2648
2649#ifdef FEAT_CLIENTSERVER
2650 if (serverName == NULL && serverDelayedStartName != NULL)
2651 {
2652 /* This is a :gui command in a plain vim with no previous server */
2653 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window);
2654
2655 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2656 serverDelayedStartName);
2657 }
2658 else
2659 {
2660 /*
2661 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2662 * have to change the "server" registration to that of the main window
2663 * If we have not registered a name yet, remember the window
2664 */
2665 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2666 GDK_WINDOW_XWINDOW(gui.mainwin->window));
2667 }
2668 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
2669 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event",
2670 GTK_SIGNAL_FUNC(property_event), NULL);
2671#endif
2672}
2673
2674 static GdkCursor *
2675create_blank_pointer(void)
2676{
2677 GdkWindow *root_window = NULL;
2678 GdkPixmap *blank_mask;
2679 GdkCursor *cursor;
2680 GdkColor color = { 0, 0, 0, 0 };
2681 char blank_data[] = { 0x0 };
2682
2683#ifdef HAVE_GTK_MULTIHEAD
2684 root_window = gtk_widget_get_root_window(gui.mainwin);
2685#endif
2686
2687 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2688 * in size. */
2689 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2690 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2691 &color, &color, 0, 0);
2692 gdk_bitmap_unref(blank_mask);
2693
2694 return cursor;
2695}
2696
2697#ifdef HAVE_GTK_MULTIHEAD
2698/*ARGSUSED1*/
2699 static void
2700mainwin_screen_changed_cb(GtkWidget *widget,
2701 GdkScreen *previous_screen,
2702 gpointer data)
2703{
2704 if (!gtk_widget_has_screen(widget))
2705 return;
2706
2707 /*
2708 * Recreate the invisble mouse cursor.
2709 */
2710 if (gui.blank_pointer != NULL)
2711 gdk_cursor_unref(gui.blank_pointer);
2712
2713 gui.blank_pointer = create_blank_pointer();
2714
2715 if (gui.pointer_hidden && gui.drawarea->window != NULL)
2716 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
2717
2718 /*
2719 * Create a new PangoContext for this screen, and initialize it
2720 * with the current font if necessary.
2721 */
2722 if (gui.text_context != NULL)
2723 g_object_unref(gui.text_context);
2724
2725 gui.text_context = gtk_widget_create_pango_context(widget);
2726 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2727
2728 if (gui.norm_font != NULL)
2729 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002730 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar04a9d452006-03-27 21:03:26 +00002731 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732 }
2733}
2734#endif /* HAVE_GTK_MULTIHEAD */
2735
2736/*
2737 * After the drawing area comes up, we calculate all colors and create the
2738 * dummy blank cursor.
2739 *
2740 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2741 * fact that the main VIM engine doesn't take them into account anywhere.
2742 */
2743/*ARGSUSED1*/
2744 static void
2745drawarea_realize_cb(GtkWidget *widget, gpointer data)
2746{
2747 GtkWidget *sbar;
2748
2749#ifdef FEAT_XIM
2750 xim_init();
2751#endif
2752 gui_mch_new_colors();
2753 gui.text_gc = gdk_gc_new(gui.drawarea->window);
2754
2755 gui.blank_pointer = create_blank_pointer();
2756 if (gui.pointer_hidden)
2757 gdk_window_set_cursor(widget->window, gui.blank_pointer);
2758
2759 /* get the actual size of the scrollbars, if they are realized */
2760 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2761 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2762 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2763 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
2764 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width)
2765 gui.scrollbar_width = sbar->allocation.width;
2766
2767 sbar = gui.bottom_sbar.id;
2768 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height)
2769 gui.scrollbar_height = sbar->allocation.height;
2770}
2771
2772/*
2773 * Properly clean up on shutdown.
2774 */
2775/*ARGSUSED0*/
2776 static void
2777drawarea_unrealize_cb(GtkWidget *widget, gpointer data)
2778{
2779 /* Don't write messages to the GUI anymore */
2780 full_screen = FALSE;
2781
2782#ifdef FEAT_XIM
2783 im_shutdown();
2784#endif
2785#ifdef HAVE_GTK2
2786 if (gui.ascii_glyphs != NULL)
2787 {
2788 pango_glyph_string_free(gui.ascii_glyphs);
2789 gui.ascii_glyphs = NULL;
2790 }
2791 if (gui.ascii_font != NULL)
2792 {
2793 g_object_unref(gui.ascii_font);
2794 gui.ascii_font = NULL;
2795 }
2796 g_object_unref(gui.text_context);
2797 gui.text_context = NULL;
2798
2799 g_object_unref(gui.text_gc);
2800 gui.text_gc = NULL;
2801
2802 gdk_cursor_unref(gui.blank_pointer);
2803 gui.blank_pointer = NULL;
2804#else
2805 gdk_gc_unref(gui.text_gc);
2806 gui.text_gc = NULL;
2807
2808 gdk_cursor_destroy(gui.blank_pointer);
2809 gui.blank_pointer = NULL;
2810#endif
2811}
2812
2813/*ARGSUSED0*/
2814 static void
2815drawarea_style_set_cb(GtkWidget *widget,
2816 GtkStyle *previous_style,
2817 gpointer data)
2818{
2819 gui_mch_new_colors();
2820}
2821
2822/*
2823 * Callback routine for the "delete_event" signal on the toplevel window.
2824 * Tries to vim gracefully, or refuses to exit with changed buffers.
2825 */
2826/*ARGSUSED*/
2827 static gint
2828delete_event_cb(GtkWidget *widget, GdkEventAny *event, gpointer data)
2829{
2830 gui_shell_closed();
2831 return TRUE;
2832}
2833
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002834#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
2835 static int
2836get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
2837{
2838 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
2839
2840#ifdef FEAT_GUI_GNOME
2841 if (using_gnome && widget != NULL)
2842 {
2843# ifdef HAVE_GTK2
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002844 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002845 BonoboDockItem *dockitem;
2846
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002847 parent = gtk_widget_get_parent(widget);
2848 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
2849 {
2850 /* Only menu & toolbar are dock items. Could tabline be?
2851 * Seem to be only the 2 defined in GNOME */
2852 widget = parent;
2853 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002854
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002855 if (dockitem == NULL || dockitem->is_floating)
2856 return 0;
2857 item_orientation = bonobo_dock_item_get_orientation(dockitem);
2858 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002859# else
2860 GnomeDockItem *dockitem;
2861
2862 widget = widget->parent;
2863 dockitem = GNOME_DOCK_ITEM(widget);
2864
2865 if (dockitem == NULL || dockitem->is_floating)
2866 return 0;
2867 item_orientation = gnome_dock_item_get_orientation(dockitem);
2868# endif
2869 }
2870#endif
2871 if (widget != NULL
2872 && item_orientation == orientation
2873 && GTK_WIDGET_REALIZED(widget)
2874 && GTK_WIDGET_VISIBLE(widget))
2875 {
2876 if (orientation == GTK_ORIENTATION_HORIZONTAL)
2877 return widget->allocation.height;
2878 else
2879 return widget->allocation.width;
2880 }
2881 return 0;
2882}
2883#endif
2884
2885 static int
2886get_menu_tool_width(void)
2887{
2888 int width = 0;
2889
2890#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
2891# ifdef FEAT_MENU
2892 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
2893# endif
2894# ifdef FEAT_TOOLBAR
2895 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
2896# endif
2897# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002898 if (gui.tabline != NULL)
2899 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002900# endif
2901#endif
2902
2903 return width;
2904}
2905
2906 static int
2907get_menu_tool_height(void)
2908{
2909 int height = 0;
2910
2911#ifdef FEAT_MENU
2912 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
2913#endif
2914#ifdef FEAT_TOOLBAR
2915 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
2916#endif
2917#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002918 if (gui.tabline != NULL)
2919 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002920#endif
2921
2922 return height;
2923}
2924
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002925/* This controls whether we can set the real window hints at
2926 * start-up when in a GtkPlug.
2927 * 0 = normal processing (default)
2928 * 1 = init. hints set, no-one's tried to reset since last check
2929 * 2 = init. hints set, attempt made to change hints
2930 */
2931static int init_window_hints_state = 0;
2932
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002933 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002934update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002935{
2936 static int old_width = 0;
2937 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002938 static int old_min_width = 0;
2939 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002940 static int old_char_width = 0;
2941 static int old_char_height = 0;
2942
2943 int width;
2944 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002945 int min_width;
2946 int min_height;
2947
2948 /* At start-up, don't try to set the hints until the initial
2949 * values have been used (those that dictate our initial size)
2950 * Let forced (i.e., correct) values thruogh always.
2951 */
2952 if (!(force_width && force_height) && init_window_hints_state > 0)
2953 {
2954 /* Don't do it! */
2955 init_window_hints_state = 2;
2956 return;
2957 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002958
2959 /* This also needs to be done when the main window isn't there yet,
2960 * otherwise the hints don't work. */
2961 width = gui_get_base_width();
2962 height = gui_get_base_height();
2963# ifdef FEAT_MENU
2964 height += tabline_height() * gui.char_height;
2965# endif
2966# ifdef HAVE_GTK2
2967 width += get_menu_tool_width();
2968 height += get_menu_tool_height();
2969# endif
2970
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002971 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
2972 * their actual widget size. When we set our size ourselve (e.g.,
2973 * 'set columns=' or init. -geom) we briefly set the min. to the size
2974 * we wish to be instead of the legitimate minimum so that we actually
2975 * resize correctly.
2976 */
2977 if (force_width && force_height)
2978 {
2979 min_width = force_width;
2980 min_height = force_height;
2981 }
2982 else
2983 {
2984 min_width = width + MIN_COLUMNS * gui.char_width;
2985 min_height = height + MIN_LINES * gui.char_height;
2986 }
2987
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002988 /* Avoid an expose event when the size didn't change. */
2989 if (width != old_width
2990 || height != old_height
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002991 || min_width != old_min_width
2992 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002993 || gui.char_width != old_char_width
2994 || gui.char_height != old_char_height)
2995 {
2996 GdkGeometry geometry;
2997 GdkWindowHints geometry_mask;
2998
2999 geometry.width_inc = gui.char_width;
3000 geometry.height_inc = gui.char_height;
3001 geometry.base_width = width;
3002 geometry.base_height = height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003003 geometry.min_width = min_width;
3004 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003005 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3006 |GDK_HINT_MIN_SIZE;
3007# ifdef HAVE_GTK2
3008 /* Using gui.formwin as geometry widget doesn't work as expected
3009 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3010 * in Vim confuse GTK+. */
3011 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3012 &geometry, geometry_mask);
3013# else
3014 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.formwin,
3015 &geometry, geometry_mask);
3016# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003017 old_width = width;
3018 old_height = height;
3019 old_min_width = min_width;
3020 old_min_height = min_height;
3021 old_char_width = gui.char_width;
3022 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003023 }
3024}
3025
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026#ifdef FEAT_TOOLBAR
3027
3028# ifdef HAVE_GTK2
3029/*
3030 * This extra effort wouldn't be necessary if we only used stock icons in the
3031 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3032 * shouldn't be treated differently, thus we do need this.
3033 */
3034 static void
3035icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3036{
3037 if (GTK_IS_IMAGE(widget))
3038 {
3039 GtkImage *image = (GtkImage *)widget;
3040
3041 /* User-defined icons are stored in a GtkIconSet */
3042 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3043 {
3044 GtkIconSet *icon_set;
3045 GtkIconSize icon_size;
3046
3047 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3048 icon_size = (GtkIconSize)(long)user_data;
3049
3050 gtk_icon_set_ref(icon_set);
3051 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3052 gtk_icon_set_unref(icon_set);
3053 }
3054 }
3055 else if (GTK_IS_CONTAINER(widget))
3056 {
3057 gtk_container_foreach((GtkContainer *)widget,
3058 &icon_size_changed_foreach,
3059 user_data);
3060 }
3061}
3062# endif /* HAVE_GTK2 */
3063
3064 static void
3065set_toolbar_style(GtkToolbar *toolbar)
3066{
3067 GtkToolbarStyle style;
3068# ifdef HAVE_GTK2
3069 GtkIconSize size;
3070 GtkIconSize oldsize;
3071# endif
3072
3073# ifdef HAVE_GTK2
3074 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3075 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3076 style = GTK_TOOLBAR_BOTH_HORIZ;
3077 else
3078# endif
3079 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
3080 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3081 style = GTK_TOOLBAR_BOTH;
3082 else if (toolbar_flags & TOOLBAR_TEXT)
3083 style = GTK_TOOLBAR_TEXT;
3084 else
3085 style = GTK_TOOLBAR_ICONS;
3086
3087 gtk_toolbar_set_style(toolbar, style);
3088 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
3089
3090# ifdef HAVE_GTK2
3091 switch (tbis_flags)
3092 {
3093 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3094 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3095 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3096 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
3097 default: size = GTK_ICON_SIZE_INVALID; break;
3098 }
3099 oldsize = gtk_toolbar_get_icon_size(toolbar);
3100
3101 if (size == GTK_ICON_SIZE_INVALID)
3102 {
3103 /* Let global user preferences decide the icon size. */
3104 gtk_toolbar_unset_icon_size(toolbar);
3105 size = gtk_toolbar_get_icon_size(toolbar);
3106 }
3107 if (size != oldsize)
3108 {
3109 gtk_container_foreach(GTK_CONTAINER(toolbar),
3110 &icon_size_changed_foreach,
3111 GINT_TO_POINTER((int)size));
3112 }
3113 gtk_toolbar_set_icon_size(toolbar, size);
3114# endif
3115}
3116
3117#endif /* FEAT_TOOLBAR */
3118
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003119#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3120static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003121static GtkWidget *tabline_menu;
3122static int clicked_page; /* page clicked in tab line */
3123
3124/*
3125 * Handle selecting an item in the tab line popup menu.
3126 */
3127/*ARGSUSED*/
3128 static void
3129tabline_menu_handler(GtkMenuItem *item, gpointer user_data)
3130{
Bram Moolenaara5621492006-02-25 21:55:24 +00003131
3132 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003133 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003134
3135 if (gtk_main_level() > 0)
3136 gtk_main_quit();
3137}
3138
3139/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003140 * Create a menu for the tab line.
3141 */
3142 static GtkWidget *
3143create_tabline_menu(void)
3144{
3145 GtkWidget *menu, *item;
3146
3147 menu = gtk_menu_new();
3148
3149 item = gtk_menu_item_new_with_label(_("Close"));
3150 gtk_widget_show(item);
3151 gtk_container_add(GTK_CONTAINER(menu), item);
3152 gtk_signal_connect(GTK_OBJECT(item), "activate",
3153 GTK_SIGNAL_FUNC(tabline_menu_handler),
3154 (gpointer)TABLINE_MENU_CLOSE);
3155
3156 item = gtk_menu_item_new_with_label(_("New tab"));
3157 gtk_widget_show(item);
3158 gtk_container_add(GTK_CONTAINER(menu), item);
3159 gtk_signal_connect(GTK_OBJECT(item), "activate",
3160 GTK_SIGNAL_FUNC(tabline_menu_handler),
3161 (gpointer)TABLINE_MENU_NEW);
3162
3163 item = gtk_menu_item_new_with_label(_("Open Tab..."));
3164 gtk_widget_show(item);
3165 gtk_container_add(GTK_CONTAINER(menu), item);
3166 gtk_signal_connect(GTK_OBJECT(item), "activate",
3167 GTK_SIGNAL_FUNC(tabline_menu_handler),
3168 (gpointer)TABLINE_MENU_OPEN);
3169
3170 return menu;
3171}
3172
3173 static gboolean
3174on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3175{
3176 /* Was this button press event ? */
3177 if (event->type == GDK_BUTTON_PRESS)
3178 {
3179 GdkEventButton *bevent = (GdkEventButton *)event;
3180 int x = bevent->x;
3181 GtkWidget *page;
3182 GtkWidget *label;
3183
3184 /* Find out where the click was. */
3185 for (clicked_page = 1; ; ++clicked_page)
3186 {
3187 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline),
3188 clicked_page - 1);
3189 if (page == NULL)
3190 {
3191 /* Past all the labels, return zero. */
3192 clicked_page = 0;
3193 break;
3194 }
3195 label = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
3196 /* The label size apparently doesn't include the spacing, estimate
3197 * it by the page position. */
3198 if (page->allocation.x * 2 + label->allocation.x
3199 + label->allocation.width + 1>= x)
3200 break;
3201 }
3202
3203 /* If the event was generated for 3rd button popup the menu. */
3204 if (bevent->button == 3)
3205 {
3206 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3207 bevent->button, bevent->time);
3208 /* We handled the event. */
3209 return TRUE;
3210 }
3211 else if (bevent->button == 1 && clicked_page == 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003212 {
Bram Moolenaara5621492006-02-25 21:55:24 +00003213 /* Click after all tabs moves to next tab page. */
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003214 if (send_tabline_event(0) && gtk_main_level() > 0)
3215 gtk_main_quit();
3216 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003217 }
3218 /* We didn't handle the event. */
3219 return FALSE;
3220}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003221
3222/*
3223 * Handle selecting one of the tabs.
3224 */
3225/*ARGSUSED*/
3226 static void
3227on_select_tab(
3228 GtkNotebook *notebook,
3229 GtkNotebookPage *page,
3230 gint index,
3231 gpointer data)
3232{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003233 if (!ignore_tabline_evt)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003234 {
3235 if (send_tabline_event(index + 1) && gtk_main_level() > 0)
3236 gtk_main_quit();
3237 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003238}
3239
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003240#ifndef HAVE_GTK2
3241static int showing_tabline = 0;
3242#endif
3243
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003244/*
3245 * Show or hide the tabline.
3246 */
3247 void
3248gui_mch_show_tabline(int showit)
3249{
3250 if (gui.tabline == NULL)
3251 return;
3252
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003253#ifdef HAVE_GTK2
3254 /* gtk_notebook_get_show_tabs does not exist in gtk+-1.2.10 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003255 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003256#else
3257 if (!showit != !showing_tabline)
3258#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003259 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003260 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003261 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003262 update_window_manager_hints(0, 0);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003263#ifndef HAVE_GTK2
3264 showing_tabline = showit;
3265#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003266 }
3267}
3268
3269/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003270 * Return TRUE when tabline is displayed.
3271 */
3272 int
3273gui_mch_showing_tabline(void)
3274{
3275 return gui.tabline != NULL
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003276#ifdef HAVE_GTK2
3277 /* gtk_notebook_get_show_tabs does not exist in gtk+-1.2.10 */
3278 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline))
3279#else
3280 && showing_tabline
3281#endif
3282 ;
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003283}
3284
3285/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003286 * Update the labels of the tabline.
3287 */
3288 void
3289gui_mch_update_tabline(void)
3290{
3291 GtkWidget *page;
3292 GtkWidget *label;
3293 tabpage_T *tp;
3294 int nr = 0;
3295 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003296 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003297
3298 if (gui.tabline == NULL)
3299 return;
3300
3301 ignore_tabline_evt = TRUE;
3302
3303 /* Add a label for each tab page. They all contain the same text area. */
3304 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3305 {
3306 if (tp == curtab)
3307 curtabidx = nr;
3308
3309 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3310 if (page == NULL)
3311 {
3312 /* Add notebook page */
3313 page = gtk_vbox_new(FALSE, 0);
3314 gtk_widget_show(page);
3315 label = gtk_label_new("-Empty-");
3316 gtk_widget_show(label);
3317 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3318 page,
3319 label,
3320 nr++);
3321 }
3322
3323 get_tabline_label(tp);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003324 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003325 gtk_notebook_set_tab_label_text(GTK_NOTEBOOK(gui.tabline), page,
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003326 (const gchar *)labeltext);
3327 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003328 }
3329
3330 /* Remove any old labels. */
3331 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3332 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3333
3334 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3335 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
3336
3337 ignore_tabline_evt = FALSE;
3338}
3339
3340/*
3341 * Set the current tab to "nr". First tab is 1.
3342 */
3343 void
3344gui_mch_set_curtab(nr)
3345 int nr;
3346{
3347 if (gui.tabline == NULL)
3348 return;
3349
3350 ignore_tabline_evt = TRUE;
3351 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3352 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
3353 ignore_tabline_evt = FALSE;
3354}
3355
3356#endif /* FEAT_GUI_TABLINE */
3357
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358/*
3359 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3360 * Returns OK for success, FAIL when the GUI can't be started.
3361 */
3362 int
3363gui_mch_init(void)
3364{
3365 GtkWidget *vbox;
3366
3367#ifdef FEAT_GUI_GNOME
3368 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3369 * exits on failure, but that's a non-issue because we already called
3370 * gtk_init_check() in gui_mch_init_check(). */
3371 if (using_gnome)
3372# ifdef HAVE_GTK2
3373 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3374 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
3375# else
3376 gnome_init(VIMPACKAGE, VIM_VERSION_SHORT, gui_argc, gui_argv);
3377# endif
3378#endif
3379 vim_free(gui_argv);
3380 gui_argv = NULL;
3381
3382#ifdef HAVE_GTK2
3383# if GLIB_CHECK_VERSION(2,1,3)
3384 /* Set the human-readable application name */
3385 g_set_application_name("Vim");
3386# endif
3387 /*
3388 * Force UTF-8 output no matter what the value of 'encoding' is.
3389 * did_set_string_option() in option.c prohibits changing 'termencoding'
3390 * to something else than UTF-8 if the GUI is in use.
3391 */
3392 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3393
3394# ifdef FEAT_TOOLBAR
3395 gui_gtk_register_stock_icons();
3396# endif
3397 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3398 * The hard part is deciding install locations and the Makefile magic. */
3399# if 0
3400 gtk_rc_parse("gtkrc");
3401# endif
3402#endif
3403
3404 /* Initialize values */
3405 gui.border_width = 2;
3406 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3407 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003408 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003410 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003412 /* LINTED: avoid warning: conversion to 'unsigned long' */
3413 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414
3415 /* Initialise atoms */
3416#ifdef FEAT_MBYTE
3417 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
3418#endif
3419#ifndef HAVE_GTK2
3420 compound_text_atom = gdk_atom_intern("COMPOUND_TEXT", FALSE);
3421 text_atom = gdk_atom_intern("TEXT", FALSE);
3422#endif
3423
3424 /* Set default foreground and background colors. */
3425 gui.norm_pixel = gui.def_norm_pixel;
3426 gui.back_pixel = gui.def_back_pixel;
3427
3428 if (gtk_socket_id != 0)
3429 {
3430 GtkWidget *plug;
3431
3432 /* Use GtkSocket from another app. */
3433#ifdef HAVE_GTK_MULTIHEAD
3434 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3435 gtk_socket_id);
3436#else
3437 plug = gtk_plug_new(gtk_socket_id);
3438#endif
3439 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
3440 {
3441 gui.mainwin = plug;
3442 }
3443 else
3444 {
3445 g_warning("Connection to GTK+ socket (ID %u) failed",
3446 (unsigned int)gtk_socket_id);
3447 /* Pretend we never wanted it if it failed (get own window) */
3448 gtk_socket_id = 0;
3449 }
3450 }
3451
3452 if (gtk_socket_id == 0)
3453 {
3454#ifdef FEAT_GUI_GNOME
3455 if (using_gnome)
3456 {
3457 gui.mainwin = gnome_app_new("Vim", NULL);
3458# ifdef USE_XSMP
3459 /* Use the GNOME save-yourself functionality now. */
3460 xsmp_close();
3461# endif
3462 }
3463 else
3464#endif
3465 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3466 }
3467
3468 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3469
3470#ifdef HAVE_GTK2
3471 /* Create the PangoContext used for drawing all text. */
3472 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3473 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
3474#endif
3475
3476#ifndef HAVE_GTK2
3477 gtk_window_set_policy(GTK_WINDOW(gui.mainwin), TRUE, TRUE, TRUE);
3478#endif
3479 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
3480 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3481
3482 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
3483 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
3484
3485 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
3486 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
3487#ifdef HAVE_GTK_MULTIHEAD
3488 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed",
3489 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
3490#endif
3491#ifdef HAVE_GTK2
3492 gui.accel_group = gtk_accel_group_new();
3493 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
3494#else
3495 gui.accel_group = gtk_accel_group_get_default();
3496#endif
3497
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003498 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 vbox = gtk_vbox_new(FALSE, 0);
3500
3501#ifdef FEAT_GUI_GNOME
3502 if (using_gnome)
3503 {
3504# if defined(HAVE_GTK2) && defined(FEAT_MENU)
3505 /* automagically restore menubar/toolbar placement */
3506 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3507# endif
3508 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3509 }
3510 else
3511#endif
3512 {
3513 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3514 gtk_widget_show(vbox);
3515 }
3516
3517#ifdef FEAT_MENU
3518 /*
3519 * Create the menubar and handle
3520 */
3521 gui.menubar = gtk_menu_bar_new();
3522 gtk_widget_set_name(gui.menubar, "vim-menubar");
3523
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003524# ifdef HAVE_GTK2
3525 /* Avoid that GTK takes <F10> away from us. */
3526 {
3527 GtkSettings *gtk_settings;
3528
3529 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3530 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3531 }
3532# endif
3533
3534
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535# ifdef FEAT_GUI_GNOME
3536 if (using_gnome)
3537 {
3538# ifdef HAVE_GTK2
3539 BonoboDockItem *dockitem;
3540
3541 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3542 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3543 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00003544 /* We don't want the menu to float. */
3545 bonobo_dock_item_set_behavior(dockitem,
3546 bonobo_dock_item_get_behavior(dockitem)
3547 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 gui.menubar_h = GTK_WIDGET(dockitem);
3549# else
3550 gui.menubar_h = gnome_dock_item_new("VimMainMenu",
3551 GNOME_DOCK_ITEM_BEH_EXCLUSIVE |
3552 GNOME_DOCK_ITEM_BEH_NEVER_VERTICAL);
3553 gtk_container_add(GTK_CONTAINER(gui.menubar_h), gui.menubar);
3554
3555 gnome_dock_add_item(GNOME_DOCK(GNOME_APP(gui.mainwin)->dock),
3556 GNOME_DOCK_ITEM(gui.menubar_h),
3557 GNOME_DOCK_TOP, /* placement */
3558 1, /* band_num */
3559 0, /* band_position */
3560 0, /* offset */
3561 TRUE);
3562 gtk_widget_show(gui.menubar);
3563# endif
3564 }
3565 else
3566# endif /* FEAT_GUI_GNOME */
3567 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00003568 /* Always show the menubar, otherwise <F10> doesn't work. It may be
3569 * disabled in gui_init() later. */
3570 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3572 }
3573#endif /* FEAT_MENU */
3574
3575#ifdef FEAT_TOOLBAR
3576 /*
3577 * Create the toolbar and handle
3578 */
3579# ifdef HAVE_GTK2
3580 /* some aesthetics on the toolbar */
3581 gtk_rc_parse_string(
3582 "style \"vim-toolbar-style\" {\n"
3583 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3584 "}\n"
3585 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
3586 gui.toolbar = gtk_toolbar_new();
3587 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
3588# else
3589 gui.toolbar = gtk_toolbar_new(GTK_ORIENTATION_HORIZONTAL,
3590 GTK_TOOLBAR_ICONS);
3591 gtk_toolbar_set_button_relief(GTK_TOOLBAR(gui.toolbar), GTK_RELIEF_NONE);
3592# endif
3593 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3594
3595# ifdef FEAT_GUI_GNOME
3596 if (using_gnome)
3597 {
3598# ifdef HAVE_GTK2
3599 BonoboDockItem *dockitem;
3600
3601 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3602 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3603 GNOME_APP_TOOLBAR_NAME);
3604 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003605 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00003606 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003607 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003608 bonobo_dock_item_get_behavior(dockitem)
3609 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
3611# else
3612 GtkWidget *dockitem;
3613
3614 dockitem = gnome_dock_item_new("VimToolBar",
3615 GNOME_DOCK_ITEM_BEH_EXCLUSIVE);
3616 gtk_container_add(GTK_CONTAINER(dockitem), GTK_WIDGET(gui.toolbar));
3617 gui.toolbar_h = dockitem;
3618
3619 gnome_dock_add_item(GNOME_DOCK(GNOME_APP(gui.mainwin)->dock),
3620 GNOME_DOCK_ITEM(dockitem),
3621 GNOME_DOCK_TOP, /* placement */
3622 1, /* band_num */
3623 1, /* band_position */
3624 0, /* offset */
3625 TRUE);
3626 gtk_container_border_width(GTK_CONTAINER(gui.toolbar), 2);
3627 gtk_widget_show(gui.toolbar);
3628# endif
3629 }
3630 else
3631# endif /* FEAT_GUI_GNOME */
3632 {
3633# ifndef HAVE_GTK2
3634 gtk_container_border_width(GTK_CONTAINER(gui.toolbar), 1);
3635# endif
3636 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3637 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3638 gtk_widget_show(gui.toolbar);
3639 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3640 }
3641#endif /* FEAT_TOOLBAR */
3642
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003643#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003644 /*
3645 * Use a Notebook for the tab pages labels. The labels are hidden by
3646 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003647 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003648 gui.tabline = gtk_notebook_new();
3649 gtk_widget_show(gui.tabline);
3650 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3651 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3652 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
3653
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003654 {
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003655 GtkWidget *page, *label;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003656
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003657 /* Add the first tab. */
3658 page = gtk_vbox_new(FALSE, 0);
3659 gtk_widget_show(page);
3660 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3661 label = gtk_label_new("-Empty-");
3662 gtk_widget_show(label);
3663 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, label);
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003664 }
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003665 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
3666 GTK_SIGNAL_FUNC(on_select_tab), NULL);
3667
3668 /* Create a popup menu for the tab line and connect it. */
3669 tabline_menu = create_tabline_menu();
3670 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
3671 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003672#endif
3673
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 gui.formwin = gtk_form_new();
3675 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
3676 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
3677
3678 gui.drawarea = gtk_drawing_area_new();
3679
3680 /* Determine which events we will filter. */
3681 gtk_widget_set_events(gui.drawarea,
3682 GDK_EXPOSURE_MASK |
3683 GDK_ENTER_NOTIFY_MASK |
3684 GDK_LEAVE_NOTIFY_MASK |
3685 GDK_BUTTON_PRESS_MASK |
3686 GDK_BUTTON_RELEASE_MASK |
3687#ifdef HAVE_GTK2
3688 GDK_SCROLL_MASK |
3689#endif
3690 GDK_KEY_PRESS_MASK |
3691 GDK_KEY_RELEASE_MASK |
3692 GDK_POINTER_MOTION_MASK |
3693 GDK_POINTER_MOTION_HINT_MASK);
3694
3695 gtk_widget_show(gui.drawarea);
3696 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
3697 gtk_widget_show(gui.formwin);
3698 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3699
3700 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
3701 * and not the window. */
3702 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
3703 : GTK_OBJECT(gui.drawarea),
3704 "key_press_event",
3705 GTK_SIGNAL_FUNC(key_press_event), NULL);
3706#if defined(FEAT_XIM) && defined(HAVE_GTK2)
3707 /* Also forward key release events for the benefit of GTK+ 2 input
3708 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
3709 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3710 : G_OBJECT(gui.drawarea),
3711 "key_release_event",
3712 G_CALLBACK(&key_release_event), NULL);
3713#endif
3714 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
3715 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
3716 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
3717 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
3718
3719 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
3720 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
3721
3722 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
3723
3724#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
3725 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3726 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3727#endif
3728
3729 if (gtk_socket_id != 0)
3730 /* make sure keybord input can go to the drawarea */
3731 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
3732
3733 /*
3734 * Set clipboard specific atoms
3735 */
3736 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
3737#ifdef FEAT_MBYTE
3738 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
3739#endif
3740 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3741 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3742
3743 /*
3744 * Start out by adding the configured border width into the border offset.
3745 */
3746 gui.border_offset = gui.border_width;
3747
3748 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3749 GTK_SIGNAL_FUNC(visibility_event), NULL);
3750 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3751 GTK_SIGNAL_FUNC(expose_event), NULL);
3752
3753 /*
3754 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3755 * Only needed for some window managers.
3756 */
3757 if (vim_strchr(p_go, GO_POINTER) != NULL)
3758 {
3759 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
3760 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
3761 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
3762 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
3763 }
3764
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003765 /* Real windows can get focus ... GtkPlug, being a mere container can't,
3766 * only its widgets. Arguably, this could be common code and we not use
3767 * the window focus at all, but let's be safe.
3768 */
3769 if (gtk_socket_id == 0)
3770 {
3771 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
3772 GTK_SIGNAL_FUNC(focus_out_event), NULL);
3773 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
3774 GTK_SIGNAL_FUNC(focus_in_event), NULL);
3775 }
3776 else
3777 {
3778 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
3779 GTK_SIGNAL_FUNC(focus_out_event), NULL);
3780 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
3781 GTK_SIGNAL_FUNC(focus_in_event), NULL);
3782#ifdef FEAT_GUI_TABLINE
3783 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
3784 GTK_SIGNAL_FUNC(focus_out_event), NULL);
3785 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
3786 GTK_SIGNAL_FUNC(focus_in_event), NULL);
3787#endif /* FEAT_GUI_TABLINE */
3788 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789
3790 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
3791 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
3792 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
3793 GTK_SIGNAL_FUNC(button_press_event), NULL);
3794 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
3795 GTK_SIGNAL_FUNC(button_release_event), NULL);
3796#ifdef HAVE_GTK2
3797 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
3798 G_CALLBACK(&scroll_event), NULL);
3799#endif
3800
3801 /*
3802 * Add selection handler functions.
3803 */
3804 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
3805 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
3806 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
3807 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
3808
3809 /*
3810 * Add selection targets for PRIMARY and CLIPBOARD selections.
3811 */
3812 gtk_selection_add_targets(gui.drawarea,
3813 (GdkAtom)GDK_SELECTION_PRIMARY,
3814 selection_targets, N_SELECTION_TARGETS);
3815 gtk_selection_add_targets(gui.drawarea,
3816 (GdkAtom)clip_plus.gtk_sel_atom,
3817 selection_targets, N_SELECTION_TARGETS);
3818
3819 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
3820 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
3821
3822 /* Pretend we don't have input focus, we will get an event if we do. */
3823 gui.in_focus = FALSE;
3824
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 return OK;
3826}
3827
3828#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
3829/*
3830 * This is called from gui_start() after a fork() has been done.
3831 * We have to tell the session manager our new PID.
3832 */
3833 void
3834gui_mch_forked(void)
3835{
3836 if (using_gnome)
3837 {
3838 GnomeClient *client;
3839
3840 client = gnome_master_client();
3841
3842 if (client != NULL)
3843 gnome_client_set_process_id(client, getpid());
3844 }
3845}
3846#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
3847
3848/*
3849 * Called when the foreground or background color has been changed.
3850 * This used to change the graphics contexts directly but we are
3851 * currently manipulating them where desired.
3852 */
3853 void
3854gui_mch_new_colors(void)
3855{
3856 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
3857 {
3858 GdkColor color = { 0, 0, 0, 0 };
3859
3860 color.pixel = gui.back_pixel;
3861 gdk_window_set_background(gui.drawarea->window, &color);
3862 }
3863}
3864
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865/*
3866 * This signal informs us about the need to rearrange our sub-widgets.
3867 */
3868/*ARGSUSED*/
3869 static gint
3870form_configure_event(GtkWidget *widget, GdkEventConfigure *event,
3871 gpointer data)
3872{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003873 int usable_height = event->height;
3874
3875 /* When in a GtkPlug, we can't guarantee valid heights (as a round
3876 * no. of char-heights), so we have to manually sanitise them.
3877 * Widths seem to sort themselves out, don't ask me why.
3878 */
3879 if (gtk_socket_id != 0)
3880 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
3881
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003883 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 gtk_form_thaw(GTK_FORM(gui.formwin));
3885
3886 return TRUE;
3887}
3888
3889/*
3890 * Function called when window already closed.
3891 * We can't do much more here than to trying to preserve what had been done,
3892 * since the window is already inevitably going away.
3893 */
3894/*ARGSUSED0*/
3895 static void
3896mainwin_destroy_cb(GtkObject *object, gpointer data)
3897{
3898 /* Don't write messages to the GUI anymore */
3899 full_screen = FALSE;
3900
3901 gui.mainwin = NULL;
3902 gui.drawarea = NULL;
3903
3904 if (!exiting) /* only do anything if the destroy was unexpected */
3905 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003906 vim_strncpy(IObuff,
3907 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
3908 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 preserve_exit();
3910 }
3911}
3912
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003913
3914/*
3915 * Bit of a hack to ensure we start GtkPlug windows with the correct window
3916 * hints (and thus the required size from -geom), but that after that we
3917 * put the hints back to normal (the actual minimum size) so we may
3918 * subsequently be resized smaller. GtkSocket (the parent end) uses the
3919 * plug's window 'min hints to set *it's* minum size, but that's also the
3920 * only way we have of making ourselves bigger (by set lines/columns).
3921 * Thus set hints at start-up to ensure correct init. size, then a
3922 * second after the final attempt to reset the real minimum hinst (done by
3923 * scrollbar init.), actually do the sttandard hinst and stop the timer.
3924 * We'll not let the default hints be set while this timer's active.
3925 */
3926/*ARGSUSED*/
3927 static gboolean
3928check_startup_plug_hints(gpointer data)
3929{
3930 if (init_window_hints_state == 1)
3931 {
3932 /* Safe to use normal hints now */
3933 init_window_hints_state = 0;
3934 update_window_manager_hints(0, 0);
3935 return FALSE; /* stop timer */
3936 }
3937
3938 /* Keep on trying */
3939 init_window_hints_state = 1;
3940 return TRUE;
3941}
3942
3943
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944/*
3945 * Open the GUI window which was created by a call to gui_mch_init().
3946 */
3947 int
3948gui_mch_open(void)
3949{
3950 guicolor_T fg_pixel = INVALCOLOR;
3951 guicolor_T bg_pixel = INVALCOLOR;
3952
3953#ifdef HAVE_GTK2
3954 /*
3955 * Allow setting a window role on the command line, or invent one
3956 * if none was specified. This is mainly useful for GNOME session
3957 * support; allowing the WM to restore window placement.
3958 */
3959 if (role_argument != NULL)
3960 {
3961 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
3962 }
3963 else
3964 {
3965 char *role;
3966
3967 /* Invent a unique-enough ID string for the role */
3968 role = g_strdup_printf("vim-%u-%u-%u",
3969 (unsigned)mch_get_pid(),
3970 (unsigned)g_random_int(),
3971 (unsigned)time(NULL));
3972
3973 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
3974 g_free(role);
3975 }
3976#endif
3977
3978 if (gui_win_x != -1 && gui_win_y != -1)
3979#ifdef HAVE_GTK2
3980 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
3981#else
3982 gtk_widget_set_uposition(gui.mainwin, gui_win_x, gui_win_y);
3983#endif
3984
3985 /* Determine user specified geometry, if present. */
3986 if (gui.geom != NULL)
3987 {
3988 int mask;
3989 unsigned int w, h;
3990 int x = 0;
3991 int y = 0;
3992
3993 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
3994
3995 if (mask & WidthValue)
3996 Columns = w;
3997 if (mask & HeightValue)
3998 Rows = h;
3999 if (mask & (XValue | YValue))
4000#ifdef HAVE_GTK2
4001 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
4002#else
4003 gtk_widget_set_uposition(gui.mainwin, x, y);
4004#endif
4005 vim_free(gui.geom);
4006 gui.geom = NULL;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004007
4008 /* From now until everyone's stopped trying to set the window hints
4009 * to their correct minimum values, stop them being set as we need
4010 * them to remain at our required size for the parent GtkSocket to
4011 * give us the right initial size.
4012 */
4013 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
4014 {
4015 guint pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4016 guint pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4017
4018#ifdef HAVE_GTK2
4019 pixel_width += get_menu_tool_width();
4020 pixel_height += get_menu_tool_height();
4021#endif
4022
4023 update_window_manager_hints(pixel_width, pixel_height);
4024 init_window_hints_state = 1;
4025 g_timeout_add(1000, check_startup_plug_hints, NULL);
4026 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 }
4028
4029 gtk_form_set_size(GTK_FORM(gui.formwin),
4030 (guint)(gui_get_base_width() + Columns * gui.char_width),
4031 (guint)(gui_get_base_height() + Rows * gui.char_height));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004032 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033
4034 if (foreground_argument != NULL)
4035 fg_pixel = gui_get_color((char_u *)foreground_argument);
4036 if (fg_pixel == INVALCOLOR)
4037 fg_pixel = gui_get_color((char_u *)"Black");
4038
4039 if (background_argument != NULL)
4040 bg_pixel = gui_get_color((char_u *)background_argument);
4041 if (bg_pixel == INVALCOLOR)
4042 bg_pixel = gui_get_color((char_u *)"White");
4043
4044 if (found_reverse_arg)
4045 {
4046 gui.def_norm_pixel = bg_pixel;
4047 gui.def_back_pixel = fg_pixel;
4048 }
4049 else
4050 {
4051 gui.def_norm_pixel = fg_pixel;
4052 gui.def_back_pixel = bg_pixel;
4053 }
4054
4055 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4056 * in a vimrc file) */
4057 set_normal_colors();
4058
4059 /* Check that none of the colors are the same as the background color */
4060 gui_check_colors();
4061
4062 /* Get the colors for the highlight groups (gui_check_colors() might have
4063 * changed them). */
4064 highlight_gui_started(); /* re-init colors and fonts */
4065
4066 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy",
4067 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL);
4068
4069#ifdef FEAT_HANGULIN
4070 hangul_keyboard_set();
4071#endif
4072
4073 /*
4074 * Notify the fixed area about the need to resize the contents of the
4075 * gui.formwin, which we use for random positioning of the included
4076 * components.
4077 *
4078 * We connect this signal deferred finally after anything is in place,
4079 * since this is intended to handle resizements coming from the window
4080 * manager upon us and should not interfere with what VIM is requesting
4081 * upon startup.
4082 */
4083 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event",
4084 GTK_SIGNAL_FUNC(form_configure_event), NULL);
4085
4086#ifdef FEAT_DND
4087 /*
4088 * Set up for receiving DND items.
4089 */
4090 gtk_drag_dest_set(gui.drawarea,
4091 GTK_DEST_DEFAULT_ALL,
4092 dnd_targets, N_DND_TARGETS,
4093 GDK_ACTION_COPY);
4094
4095 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received",
4096 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL);
4097#endif
4098
4099#ifdef HAVE_GTK2
4100 /* With GTK+ 2, we need to iconify the window before calling show()
4101 * to avoid mapping the window for a short time. This is just as one
4102 * would expect it to work, but it's different in GTK+ 1. The funny
4103 * thing is that iconifying after show() _does_ work with GTK+ 1.
4104 * (BTW doing this in the "realize" handler makes no difference.) */
4105 if (found_iconic_arg && gtk_socket_id == 0)
4106 gui_mch_iconify();
4107#endif
4108
4109 {
4110#if defined(FEAT_GUI_GNOME) && defined(HAVE_GTK2) && defined(FEAT_MENU)
4111 unsigned long menu_handler = 0;
4112# ifdef FEAT_TOOLBAR
4113 unsigned long tool_handler = 0;
4114# endif
4115 /*
4116 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4117 * show when restoring the saved layout configuration. We can't just
4118 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4119 * a toplevel window and thus will be realized immediately. Instead,
4120 * connect signal handlers to hide the widgets just after they've been
4121 * marked visible, but before the main window is realized.
4122 */
4123 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4124 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4125 G_CALLBACK(&gtk_widget_hide),
4126 NULL);
4127# ifdef FEAT_TOOLBAR
4128 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4129 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4130 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4131 G_CALLBACK(&gtk_widget_hide),
4132 NULL);
4133# endif
4134#endif
4135 gtk_widget_show(gui.mainwin);
4136
4137#if defined(FEAT_GUI_GNOME) && defined(HAVE_GTK2) && defined(FEAT_MENU)
4138 if (menu_handler != 0)
4139 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4140# ifdef FEAT_TOOLBAR
4141 if (tool_handler != 0)
4142 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4143# endif
4144#endif
4145 }
4146
4147#ifndef HAVE_GTK2
4148 /* With GTK+ 1, we need to iconify the window after calling show().
4149 * See the comment above for details. */
4150 if (found_iconic_arg && gtk_socket_id == 0)
4151 gui_mch_iconify();
4152#endif
4153
4154 return OK;
4155}
4156
4157
4158/*ARGSUSED0*/
4159 void
4160gui_mch_exit(int rc)
4161{
4162 if (gui.mainwin != NULL)
4163 gtk_widget_destroy(gui.mainwin);
4164
4165 if (gtk_main_level() > 0)
4166 gtk_main_quit();
4167}
4168
4169/*
4170 * Get the position of the top left corner of the window.
4171 */
4172 int
4173gui_mch_get_winpos(int *x, int *y)
4174{
4175#ifdef HAVE_GTK2
4176 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
4177#else
4178 /* For some people this must be gdk_window_get_origin() for a correct
4179 * result. Where is the documentation! */
4180 gdk_window_get_root_origin(gui.mainwin->window, x, y);
4181#endif
4182 return OK;
4183}
4184
4185/*
4186 * Set the position of the top left corner of the window to the given
4187 * coordinates.
4188 */
4189 void
4190gui_mch_set_winpos(int x, int y)
4191{
4192#ifdef HAVE_GTK2
4193 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
4194#else
4195 gdk_window_move(gui.mainwin->window, x, y);
4196#endif
4197}
4198
4199#ifdef HAVE_GTK2
4200#if 0
4201static int resize_idle_installed = FALSE;
4202/*
4203 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4204 * the shell size doesn't exceed the window size, i.e. if the window manager
4205 * ignored our size request. Usually this happens if the window is maximized.
4206 *
4207 * FIXME: It'd be nice if we could find a little more orthodox solution.
4208 * See also the remark below in gui_mch_set_shellsize().
4209 *
4210 * DISABLED: When doing ":set lines+=1" this function would first invoke
4211 * gui_resize_shell() with the old size, then the normal callback would
4212 * report the new size through form_configure_event(). That caused the window
4213 * layout to be messed up.
4214 */
4215/*ARGSUSED0*/
4216 static gboolean
4217force_shell_resize_idle(gpointer data)
4218{
4219 if (gui.mainwin != NULL
4220 && GTK_WIDGET_REALIZED(gui.mainwin)
4221 && GTK_WIDGET_VISIBLE(gui.mainwin))
4222 {
4223 int width;
4224 int height;
4225
4226 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4227
4228 width -= get_menu_tool_width();
4229 height -= get_menu_tool_height();
4230
4231 gui_resize_shell(width, height);
4232 }
4233
4234 resize_idle_installed = FALSE;
4235 return FALSE; /* don't call me again */
4236}
4237#endif
4238#endif /* HAVE_GTK2 */
4239
4240/*
4241 * Set the windows size.
4242 */
4243/*ARGSUSED2*/
4244 void
4245gui_mch_set_shellsize(int width, int height,
4246 int min_width, int min_height,
Bram Moolenaar04a9d452006-03-27 21:03:26 +00004247 int base_width, int base_height,
4248 int direction)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249{
4250#ifndef HAVE_GTK2
4251 /* Hack: When the form already is at the desired size, the window might
4252 * have been resized with the mouse. Force a resize by setting a
4253 * different size first. */
4254 if (GTK_FORM(gui.formwin)->width == width
4255 && GTK_FORM(gui.formwin)->height == height)
4256 {
4257 gtk_form_set_size(GTK_FORM(gui.formwin), width + 1, height + 1);
4258 gui_mch_update();
4259 }
4260 gtk_form_set_size(GTK_FORM(gui.formwin), width, height);
4261#endif
4262
4263 /* give GTK+ a chance to put all widget's into place */
4264 gui_mch_update();
4265
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004266#ifndef HAVE_GTK2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 /* this will cause the proper resizement to happen too */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004268 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004270#else /* HAVE_GTK2 */
4271 /* this will cause the proper resizement to happen too */
4272 if (gtk_socket_id == 0)
4273 update_window_manager_hints(0, 0);
4274
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004276 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 * main window instead. */
4278 width += get_menu_tool_width();
4279 height += get_menu_tool_height();
4280
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004281 if (gtk_socket_id == 0)
4282 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
4283 else
4284 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285
4286#if 0
4287 if (!resize_idle_installed)
4288 {
4289 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4290 &force_shell_resize_idle, NULL, NULL);
4291 resize_idle_installed = TRUE;
4292 }
4293#endif
4294 /*
4295 * Wait until all events are processed to prevent a crash because the
4296 * real size of the drawing area doesn't reflect Vim's internal ideas.
4297 *
4298 * This is a bit of a hack, since Vim is a terminal application with a GUI
4299 * on top, while the GUI expects to be the boss.
4300 */
4301 gui_mch_update();
4302#endif
4303}
4304
4305
4306/*
4307 * The screen size is used to make sure the initial window doesn't get bigger
4308 * than the screen. This subtracts some room for menubar, toolbar and window
4309 * decorations.
4310 */
4311 void
4312gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4313{
4314#ifdef HAVE_GTK_MULTIHEAD
4315 GdkScreen* screen;
4316
4317 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin))
4318 screen = gtk_widget_get_screen(gui.mainwin);
4319 else
4320 screen = gdk_screen_get_default();
4321
4322 *screen_w = gdk_screen_get_width(screen);
4323 *screen_h = gdk_screen_get_height(screen) - p_ghr;
4324#else
4325 *screen_w = gdk_screen_width();
4326 /* Subtract 'guiheadroom' from the height to allow some room for the
4327 * window manager (task list and window title bar). */
4328 *screen_h = gdk_screen_height() - p_ghr;
4329#endif
4330
4331 /*
4332 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4333 * the toolbar and menubar for GTK, we subtract them from the screen
4334 * hight, so that the window size can be made to fit on the screen.
4335 * This should be completely changed later.
4336 */
4337 *screen_w -= get_menu_tool_width();
4338 *screen_h -= get_menu_tool_height();
4339}
4340
4341#if defined(FEAT_TITLE) || defined(PROTO)
4342/*ARGSUSED*/
4343 void
4344gui_mch_settitle(char_u *title, char_u *icon)
4345{
4346# ifdef HAVE_GTK2
4347 if (title != NULL && output_conv.vc_type != CONV_NONE)
4348 title = string_convert(&output_conv, title, NULL);
4349# endif
4350
4351 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4352
4353# ifdef HAVE_GTK2
4354 if (output_conv.vc_type != CONV_NONE)
4355 vim_free(title);
4356# endif
4357}
4358#endif /* FEAT_TITLE */
4359
4360#if defined(FEAT_MENU) || defined(PROTO)
4361 void
4362gui_mch_enable_menu(int showit)
4363{
4364 GtkWidget *widget;
4365
4366# ifdef FEAT_GUI_GNOME
4367 if (using_gnome)
4368 widget = gui.menubar_h;
4369 else
4370# endif
4371 widget = gui.menubar;
4372
Bram Moolenaar18144c82006-04-12 21:52:12 +00004373 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
4374 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 {
4376 if (showit)
4377 gtk_widget_show(widget);
4378 else
4379 gtk_widget_hide(widget);
4380
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004381 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 }
4383}
4384#endif /* FEAT_MENU */
4385
4386#if defined(FEAT_TOOLBAR) || defined(PROTO)
4387 void
4388gui_mch_show_toolbar(int showit)
4389{
4390 GtkWidget *widget;
4391
4392 if (gui.toolbar == NULL)
4393 return;
4394
4395# ifdef FEAT_GUI_GNOME
4396 if (using_gnome)
4397 widget = gui.toolbar_h;
4398 else
4399# endif
4400 widget = gui.toolbar;
4401
4402 if (showit)
4403 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4404
4405 if (!showit != !GTK_WIDGET_VISIBLE(widget))
4406 {
4407 if (showit)
4408 gtk_widget_show(widget);
4409 else
4410 gtk_widget_hide(widget);
4411
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004412 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 }
4414}
4415#endif /* FEAT_TOOLBAR */
4416
4417#ifndef HAVE_GTK2
4418/*
4419 * Get a font structure for highlighting.
4420 * "cbdata" is a pointer to the global gui structure.
4421 */
4422/*ARGSUSED*/
4423 static void
4424font_sel_ok(GtkWidget *wgt, gpointer cbdata)
4425{
4426 gui_T *vw = (gui_T *)cbdata;
4427 GtkFontSelectionDialog *fs = (GtkFontSelectionDialog *)vw->fontdlg;
4428
4429 if (vw->fontname)
4430 g_free(vw->fontname);
4431
4432 vw->fontname = (char_u *)gtk_font_selection_dialog_get_font_name(fs);
4433 gtk_widget_hide(vw->fontdlg);
4434 if (gtk_main_level() > 0)
4435 gtk_main_quit();
4436}
4437
4438/*ARGSUSED*/
4439 static void
4440font_sel_cancel(GtkWidget *wgt, gpointer cbdata)
4441{
4442 gui_T *vw = (gui_T *)cbdata;
4443
4444 gtk_widget_hide(vw->fontdlg);
4445 if (gtk_main_level() > 0)
4446 gtk_main_quit();
4447}
4448
4449/*ARGSUSED*/
4450 static void
4451font_sel_destroy(GtkWidget *wgt, gpointer cbdata)
4452{
4453 gui_T *vw = (gui_T *)cbdata;
4454
4455 vw->fontdlg = NULL;
4456 if (gtk_main_level() > 0)
4457 gtk_main_quit();
4458}
4459#endif /* !HAVE_GTK2 */
4460
4461#ifdef HAVE_GTK2
4462/*
4463 * Check if a given font is a CJK font. This is done in a very crude manner. It
4464 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4465 * font. Consequently, this function cannot be used as a general purpose check
4466 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4467 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4468 */
4469 static int
4470is_cjk_font(PangoFontDescription *font_desc)
4471{
4472 static const char * const cjk_langs[] =
4473 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4474
4475 PangoFont *font;
4476 unsigned i;
4477 int is_cjk = FALSE;
4478
4479 font = pango_context_load_font(gui.text_context, font_desc);
4480
4481 if (font == NULL)
4482 return FALSE;
4483
4484 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4485 {
4486 PangoCoverage *coverage;
4487 gunichar uc;
4488
4489 coverage = pango_font_get_coverage(
4490 font, pango_language_from_string(cjk_langs[i]));
4491
4492 if (coverage != NULL)
4493 {
4494 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4495 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4496 pango_coverage_unref(coverage);
4497 }
4498 }
4499
4500 g_object_unref(font);
4501
4502 return is_cjk;
4503}
4504#endif /* HAVE_GTK2 */
4505
Bram Moolenaar231334e2005-07-25 20:46:57 +00004506/*
4507 * Adjust gui.char_height (after 'linespace' was changed).
4508 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004510gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511{
4512#ifdef HAVE_GTK2
4513 PangoFontMetrics *metrics;
4514 int ascent;
4515 int descent;
4516
4517 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4518 pango_context_get_language(gui.text_context));
4519 ascent = pango_font_metrics_get_ascent(metrics);
4520 descent = pango_font_metrics_get_descent(metrics);
4521
4522 pango_font_metrics_unref(metrics);
4523
4524 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00004525 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00004526 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4528
4529#else /* !HAVE_GTK2 */
4530
4531 gui.char_height = gui.current_font->ascent + gui.current_font->descent
Bram Moolenaar231334e2005-07-25 20:46:57 +00004532 + p_linespace;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 gui.char_ascent = gui.current_font->ascent + p_linespace / 2;
4534
4535#endif /* !HAVE_GTK2 */
4536
4537 /* A not-positive value of char_height may crash Vim. Only happens
4538 * if 'linespace' is negative (which does make sense sometimes). */
4539 gui.char_ascent = MAX(gui.char_ascent, 0);
4540 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4541
4542 return OK;
4543}
4544
4545#if defined(FEAT_XFONTSET) || defined(PROTO)
4546/*
4547 * Try to load the requested fontset.
4548 */
4549/*ARGSUSED2*/
4550 GuiFontset
4551gui_mch_get_fontset(char_u *name, int report_error, int fixed_width)
4552{
4553 GdkFont *font;
4554
4555 if (!gui.in_use || name == NULL)
4556 return NOFONT;
4557
4558 font = gdk_fontset_load((gchar *)name);
4559
4560 if (font == NULL)
4561 {
4562 if (report_error)
4563 EMSG2(_(e_fontset), name);
4564 return NOFONT;
4565 }
4566 /* TODO: check if the font is fixed width. */
4567
4568 /* reference this font as being in use */
4569 gdk_font_ref(font);
4570
4571 return (GuiFontset)font;
4572}
4573#endif /* FEAT_XFONTSET */
4574
4575#ifndef HAVE_GTK2
4576/*
4577 * Put up a font dialog and return the selected font name in allocated memory.
4578 * "oldval" is the previous value.
4579 * Return NULL when cancelled.
4580 */
4581 char_u *
4582gui_mch_font_dialog(char_u *oldval)
4583{
4584 char_u *fontname = NULL;
4585
4586 if (!gui.fontdlg)
4587 {
4588 GtkFontSelectionDialog *fsd = NULL;
4589
4590 gui.fontdlg = gtk_font_selection_dialog_new(_("Font Selection"));
4591 fsd = GTK_FONT_SELECTION_DIALOG(gui.fontdlg);
4592 gtk_window_set_modal(GTK_WINDOW(gui.fontdlg), TRUE);
4593 gtk_window_set_transient_for(GTK_WINDOW(gui.fontdlg),
4594 GTK_WINDOW(gui.mainwin));
4595 gtk_signal_connect(GTK_OBJECT(gui.fontdlg), "destroy",
4596 GTK_SIGNAL_FUNC(font_sel_destroy), &gui);
4597 gtk_signal_connect(GTK_OBJECT(fsd->ok_button), "clicked",
4598 GTK_SIGNAL_FUNC(font_sel_ok), &gui);
4599 gtk_signal_connect(GTK_OBJECT(fsd->cancel_button), "clicked",
4600 GTK_SIGNAL_FUNC(font_sel_cancel), &gui);
4601 }
4602
4603 if (oldval != NULL && *oldval != NUL)
4604 gtk_font_selection_dialog_set_font_name(
4605 GTK_FONT_SELECTION_DIALOG(gui.fontdlg), (char *)oldval);
4606
4607 if (gui.fontname)
4608 {
4609 g_free(gui.fontname);
4610 gui.fontname = NULL;
4611 }
4612 gtk_window_position(GTK_WINDOW(gui.fontdlg), GTK_WIN_POS_MOUSE);
4613 gtk_widget_show(gui.fontdlg);
4614 {
4615 static gchar *spacings[] = {"c", "m", NULL};
4616
4617 /* In GTK 1.2.3 this must be after the gtk_widget_show() call,
4618 * otherwise everything is blocked for ten seconds. */
4619 gtk_font_selection_dialog_set_filter(
4620 GTK_FONT_SELECTION_DIALOG(gui.fontdlg),
4621 GTK_FONT_FILTER_BASE,
4622 GTK_FONT_ALL, NULL, NULL,
4623 NULL, NULL, spacings, NULL);
4624 }
4625
4626 /* Wait for the font dialog to be closed. */
4627 while (gui.fontdlg && GTK_WIDGET_DRAWABLE(gui.fontdlg))
4628 gtk_main_iteration_do(TRUE);
4629
4630 if (gui.fontname != NULL)
4631 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004632 /* Apparently some font names include a comma, need to escape that,
4633 * because in 'guifont' it separates names. */
4634 fontname = vim_strsave_escaped(gui.fontname, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 g_free(gui.fontname);
4636 gui.fontname = NULL;
4637 }
4638 return fontname;
4639}
4640#endif /* !HAVE_GTK2 */
4641
4642#ifdef HAVE_GTK2
4643/*
4644 * Put up a font dialog and return the selected font name in allocated memory.
4645 * "oldval" is the previous value. Return NULL when cancelled.
4646 * This should probably go into gui_gtk.c. Hmm.
4647 * FIXME:
4648 * The GTK2 font selection dialog has no filtering API. So we could either
4649 * a) implement our own (possibly copying the code from somewhere else) or
4650 * b) just live with it.
4651 */
4652 char_u *
4653gui_mch_font_dialog(char_u *oldval)
4654{
4655 GtkWidget *dialog;
4656 int response;
4657 char_u *fontname = NULL;
4658 char_u *oldname;
4659
4660 dialog = gtk_font_selection_dialog_new(NULL);
4661
4662 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4663 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4664
4665 if (oldval != NULL && oldval[0] != NUL)
4666 {
4667 if (output_conv.vc_type != CONV_NONE)
4668 oldname = string_convert(&output_conv, oldval, NULL);
4669 else
4670 oldname = oldval;
4671
4672 /* Annoying bug in GTK (or Pango): if the font name does not include a
4673 * size, zero is used. Use default point size ten. */
4674 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4675 {
4676 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4677
4678 if (p != NULL)
4679 {
4680 STRCPY(p + STRLEN(p), " 10");
4681 if (oldname != oldval)
4682 vim_free(oldname);
4683 oldname = p;
4684 }
4685 }
4686
4687 gtk_font_selection_dialog_set_font_name(
4688 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
4689
4690 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004691 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 }
4693
4694 response = gtk_dialog_run(GTK_DIALOG(dialog));
4695
4696 if (response == GTK_RESPONSE_OK)
4697 {
4698 char *name;
4699
4700 name = gtk_font_selection_dialog_get_font_name(
4701 GTK_FONT_SELECTION_DIALOG(dialog));
4702 if (name != NULL)
4703 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004704 char_u *p;
4705
4706 /* Apparently some font names include a comma, need to escape
4707 * that, because in 'guifont' it separates names. */
4708 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709 g_free(name);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004710 if (input_conv.vc_type != CONV_NONE)
4711 {
4712 fontname = string_convert(&input_conv, p, NULL);
4713 vim_free(p);
4714 }
4715 else
4716 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 }
4718 }
4719
4720 if (response != GTK_RESPONSE_NONE)
4721 gtk_widget_destroy(dialog);
4722
4723 return fontname;
4724}
4725
4726/*
4727 * Some monospace fonts don't support a bold weight, and fall back
4728 * silently to the regular weight. But this is no good since our text
4729 * drawing function can emulate bold by overstriking. So let's try
4730 * to detect whether bold weight is actually available and emulate it
4731 * otherwise.
4732 *
4733 * Note that we don't need to check for italic style since Xft can
4734 * emulate italic on its own, provided you have a proper fontconfig
4735 * setup. We wouldn't be able to emulate it in Vim anyway.
4736 */
4737 static void
4738get_styled_font_variants(void)
4739{
4740 PangoFontDescription *bold_font_desc;
4741 PangoFont *plain_font;
4742 PangoFont *bold_font;
4743
4744 gui.font_can_bold = FALSE;
4745
4746 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
4747
4748 if (plain_font == NULL)
4749 return;
4750
4751 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
4752 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
4753
4754 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
4755 /*
4756 * The comparison relies on the unique handle nature of a PangoFont*,
4757 * i.e. it's assumed that a different PangoFont* won't refer to the
4758 * same font. Seems to work, and failing here isn't critical anyway.
4759 */
4760 if (bold_font != NULL)
4761 {
4762 gui.font_can_bold = (bold_font != plain_font);
4763 g_object_unref(bold_font);
4764 }
4765
4766 pango_font_description_free(bold_font_desc);
4767 g_object_unref(plain_font);
4768}
4769
4770#else /* !HAVE_GTK2 */
4771
4772/*
4773 * There is only one excuse I can give for the following attempt to manage font
4774 * styles:
4775 *
4776 * I HATE THE BRAIN DEAD WAY X11 IS HANDLING FONTS (--mdcki)
4777 * (Me too. --danielk)
4778 */
4779 static void
4780get_styled_font_variants(char_u * font_name)
4781{
4782 char *chunk[32];
4783 char *sdup;
4784 char *tmp;
4785 int len, i;
4786 GuiFont *styled_font[3];
4787
4788 styled_font[0] = &gui.bold_font;
4789 styled_font[1] = &gui.ital_font;
4790 styled_font[2] = &gui.boldital_font;
4791
4792 /* First free whatever was freviously there. */
4793 for (i = 0; i < 3; ++i)
4794 if (*styled_font[i])
4795 {
4796 gdk_font_unref(*styled_font[i]);
4797 *styled_font[i] = NULL;
4798 }
4799
4800 if ((sdup = g_strdup((const char *)font_name)) == NULL)
4801 return;
4802
4803 /* split up the whole */
4804 i = 0;
4805 for (tmp = sdup; *tmp != '\0'; ++tmp)
4806 {
4807 if (*tmp == '-')
4808 {
4809 *tmp = '\0';
4810
4811 if (i == 32)
4812 break;
4813
4814 chunk[i] = tmp + 1;
4815 ++i;
4816 }
4817 }
4818
4819 if (i == 14)
4820 {
4821 GdkFont *font = NULL;
4822 const char *bold_chunk[3] = { "bold", NULL, "bold" };
4823 const char *italic_chunk[3] = { NULL, "o", "o" };
4824
4825 /* font name was complete */
4826 len = strlen((const char *)font_name) + 32;
4827
4828 for (i = 0; i < 3; ++i)
4829 {
4830 char *styled_name;
4831 int j;
4832
4833 styled_name = (char *)alloc(len);
4834 if (styled_name == NULL)
4835 {
4836 g_free(sdup);
4837 return;
4838 }
4839
4840 *styled_name = '\0';
4841
4842 for (j = 0; j < 14; ++j)
4843 {
4844 strcat(styled_name, "-");
4845 if (j == 2 && bold_chunk[i] != NULL)
4846 strcat(styled_name, bold_chunk[i]);
4847 else if (j == 3 && italic_chunk[i] != NULL)
4848 strcat(styled_name, italic_chunk[i]);
4849 else
4850 strcat(styled_name, chunk[j]);
4851 }
4852
4853 font = gui_mch_get_font((char_u *)styled_name, FALSE);
4854 if (font != NULL)
4855 *styled_font[i] = font;
4856
4857 vim_free(styled_name);
4858 }
4859 }
4860
4861 g_free(sdup);
4862}
4863#endif /* !HAVE_GTK2 */
4864
4865#ifdef HAVE_GTK2
4866static PangoEngineShape *default_shape_engine = NULL;
4867
4868/*
4869 * Create a map from ASCII characters in the range [32,126] to glyphs
4870 * of the current font. This is used by gui_gtk2_draw_string() to skip
4871 * the itemize and shaping process for the most common case.
4872 */
4873 static void
4874ascii_glyph_table_init(void)
4875{
4876 char_u ascii_chars[128];
4877 PangoAttrList *attr_list;
4878 GList *item_list;
4879 int i;
4880
4881 if (gui.ascii_glyphs != NULL)
4882 pango_glyph_string_free(gui.ascii_glyphs);
4883 if (gui.ascii_font != NULL)
4884 g_object_unref(gui.ascii_font);
4885
4886 gui.ascii_glyphs = NULL;
4887 gui.ascii_font = NULL;
4888
4889 /* For safety, fill in question marks for the control characters. */
4890 for (i = 0; i < 32; ++i)
4891 ascii_chars[i] = '?';
4892 for (; i < 127; ++i)
4893 ascii_chars[i] = i;
4894 ascii_chars[i] = '?';
4895
4896 attr_list = pango_attr_list_new();
4897 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
4898 0, sizeof(ascii_chars), attr_list, NULL);
4899
4900 if (item_list != NULL && item_list->next == NULL) /* play safe */
4901 {
4902 PangoItem *item;
4903 int width;
4904
4905 item = (PangoItem *)item_list->data;
4906 width = gui.char_width * PANGO_SCALE;
4907
4908 /* Remember the shape engine used for ASCII. */
4909 default_shape_engine = item->analysis.shape_engine;
4910
4911 gui.ascii_font = item->analysis.font;
4912 g_object_ref(gui.ascii_font);
4913
4914 gui.ascii_glyphs = pango_glyph_string_new();
4915
4916 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
4917 &item->analysis, gui.ascii_glyphs);
4918
4919 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
4920
4921 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
4922 {
4923 PangoGlyphGeometry *geom;
4924
4925 geom = &gui.ascii_glyphs->glyphs[i].geometry;
4926 geom->x_offset += MAX(0, width - geom->width) / 2;
4927 geom->width = width;
4928 }
4929 }
4930
4931 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
4932 g_list_free(item_list);
4933 pango_attr_list_unref(attr_list);
4934}
4935#endif /* HAVE_GTK2 */
4936
4937/*
4938 * Initialize Vim to use the font or fontset with the given name.
4939 * Return FAIL if the font could not be loaded, OK otherwise.
4940 */
4941/*ARGSUSED1*/
4942 int
4943gui_mch_init_font(char_u *font_name, int fontset)
4944{
4945#ifdef HAVE_GTK2
4946 PangoFontDescription *font_desc;
4947 PangoLayout *layout;
4948 int width;
4949
4950 /* If font_name is NULL, this means to use the default, which should
4951 * be present on all proper Pango/fontconfig installations. */
4952 if (font_name == NULL)
4953 font_name = (char_u *)DEFAULT_FONT;
4954
4955 font_desc = gui_mch_get_font(font_name, FALSE);
4956
4957 if (font_desc == NULL)
4958 return FAIL;
4959
4960 gui_mch_free_font(gui.norm_font);
4961 gui.norm_font = font_desc;
4962
4963 pango_context_set_font_description(gui.text_context, font_desc);
4964
4965 layout = pango_layout_new(gui.text_context);
4966 pango_layout_set_text(layout, "MW", 2);
4967 pango_layout_get_size(layout, &width, NULL);
4968 /*
4969 * Set char_width to half the width obtained from pango_layout_get_size()
4970 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
4971 * Pango to use the same width for both non-CJK characters (e.g. Latin
4972 * letters and numbers) and CJK characters. This results in 's p a c e d
4973 * o u t' rendering when a CJK 'fixed width' font is used. To work around
4974 * that, divide the width returned by Pango by 2 if cjk_width is equal to
4975 * width for CJK fonts.
4976 *
4977 * For related bugs, see:
4978 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
4979 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
4980 *
4981 * With this, for all four of the following cases, Vim works fine:
4982 * guifont=CJK_fixed_width_font
4983 * guifont=Non_CJK_fixed_font
4984 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
4985 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
4986 */
4987 if (is_cjk_font(gui.norm_font))
4988 {
4989 int cjk_width;
4990
4991 /* Measure the text extent of U+4E00 and U+4E8C */
4992 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
4993 pango_layout_get_size(layout, &cjk_width, NULL);
4994
4995 if (width == cjk_width) /* Xft not patched */
4996 width /= 2;
4997 }
4998 g_object_unref(layout);
4999
5000 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5001
5002 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5003 if (gui.char_width <= 0)
5004 gui.char_width = 8;
5005
Bram Moolenaar231334e2005-07-25 20:46:57 +00005006 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007
5008 /* Set the fontname, which will be used for information purposes */
5009 hl_set_font_name(font_name);
5010
5011 get_styled_font_variants();
5012 ascii_glyph_table_init();
5013
5014 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5015 if (gui.wide_font != NULL
5016 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5017 {
5018 pango_font_description_free(gui.wide_font);
5019 gui.wide_font = NULL;
5020 }
5021
5022#else /* !HAVE_GTK2 */
5023
5024 GdkFont *font = NULL;
5025
5026# ifdef FEAT_XFONTSET
5027 /* Try loading a fontset. If this fails we try loading a normal font. */
5028 if (fontset && font_name != NULL)
5029 font = gui_mch_get_fontset(font_name, TRUE, TRUE);
5030
5031 if (font == NULL)
5032# endif
5033 {
5034 /* If font_name is NULL, this means to use the default, which should
5035 * be present on all X11 servers. */
5036 if (font_name == NULL)
5037 font_name = (char_u *)DEFAULT_FONT;
5038 font = gui_mch_get_font(font_name, FALSE);
5039 }
5040
5041 if (font == NULL)
5042 return FAIL;
5043
5044 gui_mch_free_font(gui.norm_font);
5045# ifdef FEAT_XFONTSET
5046 gui_mch_free_fontset(gui.fontset);
5047 if (font->type == GDK_FONT_FONTSET)
5048 {
5049 gui.norm_font = NOFONT;
5050 gui.fontset = (GuiFontset)font;
5051 /* Use two bytes, this works around the problem that the result would
5052 * be zero if no 8-bit font was found. */
5053 gui.char_width = gdk_string_width(font, "xW") / 2;
5054 }
5055 else
5056# endif
5057 {
5058 gui.norm_font = font;
5059# ifdef FEAT_XFONTSET
5060 gui.fontset = NOFONTSET;
5061# endif
5062 gui.char_width = ((XFontStruct *)
5063 GDK_FONT_XFONT(font))->max_bounds.width;
5064 }
5065
5066 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5067 if (gui.char_width <= 0)
5068 gui.char_width = 8;
5069
5070 gui.char_height = font->ascent + font->descent + p_linespace;
5071 gui.char_ascent = font->ascent + p_linespace / 2;
5072
5073 /* A not-positive value of char_height may crash Vim. Only happens
5074 * if 'linespace' is negative (which does make sense sometimes). */
5075 gui.char_ascent = MAX(gui.char_ascent, 0);
5076 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
5077
5078 /* Set the fontname, which will be used for information purposes */
5079 hl_set_font_name(font_name);
5080
5081 if (font->type != GDK_FONT_FONTSET)
5082 get_styled_font_variants(font_name);
5083
5084 /* Synchronize the fonts used in user input dialogs, since otherwise
5085 * search/replace will be esp. annoying in case of international font
5086 * usage.
5087 */
5088 gui_gtk_synch_fonts();
5089
5090# ifdef FEAT_XIM
5091 /* Adjust input management behaviour to the capabilities of the new
5092 * fontset */
5093 xim_decide_input_style();
5094 if (xim_get_status_area_height())
5095 {
5096 /* Status area is required. Just create the empty container so that
5097 * mainwin will allocate the extra space for status area. */
5098 GtkWidget *alignment = gtk_alignment_new((gfloat)0.5, (gfloat)0.5,
5099 (gfloat)1.0, (gfloat)1.0);
5100
5101 gtk_widget_set_usize(alignment, 20, gui.char_height + 2);
5102 gtk_box_pack_end(GTK_BOX(GTK_BIN(gui.mainwin)->child),
5103 alignment, FALSE, FALSE, 0);
5104 gtk_widget_show(alignment);
5105 }
5106# endif
5107#endif /* !HAVE_GTK2 */
5108
5109 /* Preserve the logical dimensions of the screen. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005110 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111
5112 return OK;
5113}
5114
5115/*
5116 * Get a reference to the font "name".
5117 * Return zero for failure.
5118 */
5119 GuiFont
5120gui_mch_get_font(char_u *name, int report_error)
5121{
5122#ifdef HAVE_GTK2
5123 PangoFontDescription *font;
5124#else
5125 GdkFont *font;
5126#endif
5127
5128 /* can't do this when GUI is not running */
5129 if (!gui.in_use || name == NULL)
5130 return NULL;
5131
5132#ifdef HAVE_GTK2
5133 if (output_conv.vc_type != CONV_NONE)
5134 {
5135 char_u *buf;
5136
5137 buf = string_convert(&output_conv, name, NULL);
5138 if (buf != NULL)
5139 {
5140 font = pango_font_description_from_string((const char *)buf);
5141 vim_free(buf);
5142 }
5143 else
5144 font = NULL;
5145 }
5146 else
5147 font = pango_font_description_from_string((const char *)name);
5148
5149 if (font != NULL)
5150 {
5151 PangoFont *real_font;
5152
5153 /* pango_context_load_font() bails out if no font size is set */
5154 if (pango_font_description_get_size(font) <= 0)
5155 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5156
5157 real_font = pango_context_load_font(gui.text_context, font);
5158
5159 if (real_font == NULL)
5160 {
5161 pango_font_description_free(font);
5162 font = NULL;
5163 }
5164 else
5165 g_object_unref(real_font);
5166 }
5167#else
5168 font = gdk_font_load((const gchar *)name);
5169#endif
5170
5171 if (font == NULL)
5172 {
5173 if (report_error)
5174 EMSG2(_(e_font), name);
5175 return NULL;
5176 }
5177
5178#ifdef HAVE_GTK2
5179 /*
5180 * The fixed-width check has been disabled for GTK+ 2. Rationale:
5181 *
5182 * - The check tends to report false positives, particularly
5183 * in non-Latin locales or with old X fonts.
5184 * - Thanks to our fixed-width hack in gui_gtk2_draw_string(),
5185 * GTK+ 2 Vim is actually capable of displaying variable width
5186 * fonts. Those will just be spaced out like in AA xterm.
5187 * - Failing here for the default font causes GUI startup to fail
5188 * even with wiped out configuration files.
5189 * - The font dialog displays all fonts unfiltered, and it's rather
5190 * annoying if 95% of the listed fonts produce an error message.
5191 */
5192# if 0
5193 {
5194 /* Check that this is a mono-spaced font. Naturally, this is a bit
5195 * hackish -- fixed-width isn't really suitable for i18n text :/ */
5196 PangoLayout *layout;
5197 unsigned int i;
5198 int last_width = -1;
5199 const char test_chars[] = { 'W', 'i', ',', 'x' }; /* arbitrary */
5200
5201 layout = pango_layout_new(gui.text_context);
5202 pango_layout_set_font_description(layout, font);
5203
5204 for (i = 0; i < G_N_ELEMENTS(test_chars); ++i)
5205 {
5206 int width;
5207
5208 pango_layout_set_text(layout, &test_chars[i], 1);
5209 pango_layout_get_size(layout, &width, NULL);
5210
5211 if (last_width >= 0 && width != last_width)
5212 {
5213 pango_font_description_free(font);
5214 font = NULL;
5215 break;
5216 }
5217
5218 last_width = width;
5219 }
5220
5221 g_object_unref(layout);
5222 }
5223# endif
5224#else /* !HAVE_GTK2 */
5225 {
5226 XFontStruct *xfont;
5227
5228 /* reference this font as being in use */
5229 gdk_font_ref(font);
5230
5231 /* Check that this is a mono-spaced font.
5232 */
5233 xfont = (XFontStruct *) GDK_FONT_XFONT(font);
5234
5235 if (xfont->max_bounds.width != xfont->min_bounds.width)
5236 {
5237 gdk_font_unref(font);
5238 font = NULL;
5239 }
5240 }
5241#endif /* !HAVE_GTK2 */
5242
5243#if !defined(HAVE_GTK2) || 0 /* disabled for GTK+ 2, see above */
5244 if (font == NULL && report_error)
5245 EMSG2(_(e_fontwidth), name);
5246#endif
5247
5248 return font;
5249}
5250
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005251#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005252/*
5253 * Return the name of font "font" in allocated memory.
5254 */
5255/*ARGSUSED*/
5256 char_u *
5257gui_mch_get_fontname(GuiFont font, char_u *name)
5258{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005259# ifdef HAVE_GTK2
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005260 if (font != NOFONT)
5261 {
5262 char *name = pango_font_description_to_string(font);
5263
5264 if (name != NULL)
5265 {
5266 char_u *s = vim_strsave((char_u *)name);
5267
5268 g_free(name);
5269 return s;
5270 }
5271 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005272# else
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005273 /* Don't know how to get the name, return what we got. */
5274 if (name != NULL)
5275 return vim_strsave(name);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005276# endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005277 return NULL;
5278}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005279#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005280
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281#if !defined(HAVE_GTK2) || defined(PROTO)
5282/*
5283 * Set the current text font.
5284 * Since we create all GC on demand, we use just gui.current_font to
5285 * indicate the desired current font.
5286 */
5287 void
5288gui_mch_set_font(GuiFont font)
5289{
5290 gui.current_font = font;
5291}
5292#endif
5293
5294#if defined(FEAT_XFONTSET) || defined(PROTO)
5295/*
5296 * Set the current text fontset.
5297 */
5298 void
5299gui_mch_set_fontset(GuiFontset fontset)
5300{
5301 gui.current_font = fontset;
5302}
5303#endif
5304
5305/*
5306 * If a font is not going to be used, free its structure.
5307 */
5308 void
5309gui_mch_free_font(GuiFont font)
5310{
5311 if (font != NOFONT)
5312#ifdef HAVE_GTK2
5313 pango_font_description_free(font);
5314#else
5315 gdk_font_unref(font);
5316#endif
5317}
5318
5319#if defined(FEAT_XFONTSET) || defined(PROTO)
5320/*
5321 * If a fontset is not going to be used, free its structure.
5322 */
5323 void
5324gui_mch_free_fontset(GuiFontset fontset)
5325{
5326 if (fontset != NOFONTSET)
5327 gdk_font_unref(fontset);
5328}
5329#endif
5330
5331
5332/*
5333 * Return the Pixel value (color) for the given color name. This routine was
5334 * pretty much taken from example code in the Silicon Graphics OSF/Motif
5335 * Programmer's Guide.
5336 * Return INVALCOLOR for error.
5337 */
5338 guicolor_T
5339gui_mch_get_color(char_u *name)
5340{
5341 /* A number of colors that some X11 systems don't have */
5342 static const char *const vimnames[][2] =
5343 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00005344 {"LightRed", "#FFBBBB"},
5345 {"LightGreen", "#88FF88"},
5346 {"LightMagenta","#FFBBFF"},
5347 {"DarkCyan", "#008888"},
5348 {"DarkBlue", "#0000BB"},
5349 {"DarkRed", "#BB0000"},
5350 {"DarkMagenta", "#BB00BB"},
5351 {"DarkGrey", "#BBBBBB"},
5352 {"DarkYellow", "#BBBB00"},
5353 {"Gray10", "#1A1A1A"},
5354 {"Grey10", "#1A1A1A"},
5355 {"Gray20", "#333333"},
5356 {"Grey20", "#333333"},
5357 {"Gray30", "#4D4D4D"},
5358 {"Grey30", "#4D4D4D"},
5359 {"Gray40", "#666666"},
5360 {"Grey40", "#666666"},
5361 {"Gray50", "#7F7F7F"},
5362 {"Grey50", "#7F7F7F"},
5363 {"Gray60", "#999999"},
5364 {"Grey60", "#999999"},
5365 {"Gray70", "#B3B3B3"},
5366 {"Grey70", "#B3B3B3"},
5367 {"Gray80", "#CCCCCC"},
5368 {"Grey80", "#CCCCCC"},
5369 {"Gray90", "#E5E5E5"},
5370 {"Grey90", "#E5E5E5"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 {NULL, NULL}
5372 };
5373
5374 if (!gui.in_use) /* can't do this when GUI not running */
5375 return INVALCOLOR;
5376
5377 while (name != NULL)
5378 {
5379 GdkColor color;
5380 int parsed;
5381 int i;
5382
5383 parsed = gdk_color_parse((const char *)name, &color);
5384
5385#ifndef HAVE_GTK2 /* ohh, lovely GTK+ 2, eases our pain :) */
5386 /*
5387 * Since we have already called gtk_set_locale here the bugger
5388 * XParseColor will accept only explicit color names in the language
5389 * of the current locale. However this will interferre with:
5390 * 1. Vim's global startup files
5391 * 2. Explicit color names in .vimrc
5392 *
5393 * Therefore we first try to parse the color in the current locale and
5394 * if it fails, we fall back to the portable "C" one.
5395 */
5396 if (!parsed)
5397 {
5398 char *current;
5399
5400 current = setlocale(LC_ALL, NULL);
5401 if (current != NULL)
5402 {
5403 char *saved;
5404
5405 saved = g_strdup(current);
5406 setlocale(LC_ALL, "C");
5407
5408 parsed = gdk_color_parse((const gchar *)name, &color);
5409
5410 setlocale(LC_ALL, saved);
5411 gtk_set_locale();
5412
5413 g_free(saved);
5414 }
5415 }
5416#endif /* !HAVE_GTK2 */
5417
5418 if (parsed)
5419 {
5420#ifdef HAVE_GTK2
5421 gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5422 &color, FALSE, TRUE);
5423#else
5424 gdk_color_alloc(gtk_widget_get_colormap(gui.drawarea), &color);
5425#endif
5426 return (guicolor_T)color.pixel;
5427 }
5428 /* add a few builtin names and try again */
5429 for (i = 0; ; ++i)
5430 {
5431 if (vimnames[i][0] == NULL)
5432 {
5433 name = NULL;
5434 break;
5435 }
5436 if (STRICMP(name, vimnames[i][0]) == 0)
5437 {
5438 name = (char_u *)vimnames[i][1];
5439 break;
5440 }
5441 }
5442 }
5443
5444 return INVALCOLOR;
5445}
5446
5447/*
5448 * Set the current text foreground color.
5449 */
5450 void
5451gui_mch_set_fg_color(guicolor_T color)
5452{
5453 gui.fgcolor->pixel = (unsigned long)color;
5454}
5455
5456/*
5457 * Set the current text background color.
5458 */
5459 void
5460gui_mch_set_bg_color(guicolor_T color)
5461{
5462 gui.bgcolor->pixel = (unsigned long)color;
5463}
5464
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005465/*
5466 * Set the current text special color.
5467 */
5468 void
5469gui_mch_set_sp_color(guicolor_T color)
5470{
5471 gui.spcolor->pixel = (unsigned long)color;
5472}
5473
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474#ifdef HAVE_GTK2
5475/*
5476 * Function-like convenience macro for the sake of efficiency.
5477 */
5478#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5479 G_STMT_START{ \
5480 PangoAttribute *tmp_attr_; \
5481 tmp_attr_ = (Attribute); \
5482 tmp_attr_->start_index = (Start); \
5483 tmp_attr_->end_index = (End); \
5484 pango_attr_list_insert((AttrList), tmp_attr_); \
5485 }G_STMT_END
5486
5487 static void
5488apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5489{
5490 char_u *start = NULL;
5491 char_u *p;
5492 int uc;
5493
5494 for (p = s; p < s + len; p += utf_byte2len(*p))
5495 {
5496 uc = utf_ptr2char(p);
5497
5498 if (start == NULL)
5499 {
5500 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5501 start = p;
5502 }
5503 else if (uc < 0x80 /* optimization shortcut */
5504 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5505 {
5506 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5507 attr_list, start - s, p - s);
5508 start = NULL;
5509 }
5510 }
5511
5512 if (start != NULL)
5513 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5514 attr_list, start - s, len);
5515}
5516
5517 static int
5518count_cluster_cells(char_u *s, PangoItem *item,
5519 PangoGlyphString* glyphs, int i,
5520 int *cluster_width,
5521 int *last_glyph_rbearing)
5522{
5523 char_u *p;
5524 int next; /* glyph start index of next cluster */
5525 int start, end; /* string segment of current cluster */
5526 int width; /* real cluster width in Pango units */
5527 int uc;
5528 int cellcount = 0;
5529
5530 width = glyphs->glyphs[i].geometry.width;
5531
5532 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5533 {
5534 if (glyphs->glyphs[next].attr.is_cluster_start)
5535 break;
5536 else if (glyphs->glyphs[next].geometry.width > width)
5537 width = glyphs->glyphs[next].geometry.width;
5538 }
5539
5540 start = item->offset + glyphs->log_clusters[i];
5541 end = item->offset + ((next < glyphs->num_glyphs) ?
5542 glyphs->log_clusters[next] : item->length);
5543
5544 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5545 {
5546 uc = utf_ptr2char(p);
5547 if (uc < 0x80)
5548 ++cellcount;
5549 else if (!utf_iscomposing(uc))
5550 cellcount += utf_char2cells(uc);
5551 }
5552
5553 if (last_glyph_rbearing != NULL
5554 && cellcount > 0 && next == glyphs->num_glyphs)
5555 {
5556 PangoRectangle ink_rect;
5557 /*
5558 * If a certain combining mark had to be taken from a non-monospace
5559 * font, we have to compensate manually by adapting x_offset according
5560 * to the ink extents of the previous glyph.
5561 */
5562 pango_font_get_glyph_extents(item->analysis.font,
5563 glyphs->glyphs[i].glyph,
5564 &ink_rect, NULL);
5565
5566 if (PANGO_RBEARING(ink_rect) > 0)
5567 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5568 }
5569
5570 if (cellcount > 0)
5571 *cluster_width = width;
5572
5573 return cellcount;
5574}
5575
5576/*
5577 * If there are only combining characters in the cluster, we cannot just
5578 * change the width of the previous glyph since there is none. Therefore
5579 * some guesswork is needed.
5580 *
5581 * If ink_rect.x is negative Pango apparently has taken care of the composing
5582 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5583 * to problems with composing from different fonts we still need to fine-tune
5584 * x_offset to avoid uglyness.
5585 *
5586 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5587 * the position of the previous glyph. Apparently this happens only with old
5588 * X fonts which don't provide the special combining information needed by
5589 * Pango.
5590 */
5591 static void
5592setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5593 int last_cellcount, int last_cluster_width,
5594 int last_glyph_rbearing)
5595{
5596 PangoRectangle ink_rect;
5597 PangoRectangle logical_rect;
5598 int width;
5599
5600 width = last_cellcount * gui.char_width * PANGO_SCALE;
5601 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5602 glyph->geometry.width = 0;
5603
5604 pango_font_get_glyph_extents(item->analysis.font,
5605 glyph->glyph,
5606 &ink_rect, &logical_rect);
5607 if (ink_rect.x < 0)
5608 {
5609 glyph->geometry.x_offset += last_glyph_rbearing;
5610 glyph->geometry.y_offset = logical_rect.height
5611 - (gui.char_height - p_linespace) * PANGO_SCALE;
5612 }
5613}
5614
5615 static void
5616draw_glyph_string(int row, int col, int num_cells, int flags,
5617 PangoFont *font, PangoGlyphString *glyphs)
5618{
5619 if (!(flags & DRAW_TRANSP))
5620 {
5621 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5622
5623 gdk_draw_rectangle(gui.drawarea->window,
5624 gui.text_gc,
5625 TRUE,
5626 FILL_X(col),
5627 FILL_Y(row),
5628 num_cells * gui.char_width,
5629 gui.char_height);
5630 }
5631
5632 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5633
5634 gdk_draw_glyphs(gui.drawarea->window,
5635 gui.text_gc,
5636 font,
5637 TEXT_X(col),
5638 TEXT_Y(row),
5639 glyphs);
5640
5641 /* redraw the contents with an offset of 1 to emulate bold */
5642 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
5643 gdk_draw_glyphs(gui.drawarea->window,
5644 gui.text_gc,
5645 font,
5646 TEXT_X(col) + 1,
5647 TEXT_Y(row),
5648 glyphs);
5649}
5650
5651#endif /* HAVE_GTK2 */
5652
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005653/*
5654 * Draw underline and undercurl at the bottom of the character cell.
5655 */
5656 static void
5657draw_under(int flags, int row, int col, int cells)
5658{
5659 int i;
5660 int offset;
5661 const static int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
5662 int y = FILL_Y(row + 1) - 1;
5663
5664 /* Undercurl: draw curl at the bottom of the character cell. */
5665 if (flags & DRAW_UNDERC)
5666 {
5667 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5668 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5669 {
5670 offset = val[i % 8];
5671 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5672 }
5673 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5674 }
5675
5676 /* Underline: draw a line at the bottom of the character cell. */
5677 if (flags & DRAW_UNDERL)
5678 {
5679 /* When p_linespace is 0, overwrite the bottom row of pixels.
5680 * Otherwise put the line just below the character. */
5681 if (p_linespace > 1)
5682 y -= p_linespace - 1;
5683 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5684 FILL_X(col), y,
5685 FILL_X(col + cells) - 1, y);
5686 }
5687}
5688
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689#if defined(HAVE_GTK2) || defined(PROTO)
5690 int
5691gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5692{
5693 GdkRectangle area; /* area for clip mask */
5694 PangoGlyphString *glyphs; /* glyphs of current item */
5695 int column_offset = 0; /* column offset in cells */
5696 int i;
5697 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5698 char_u *new_conv_buf;
5699 int convlen;
5700 char_u *sp, *bp;
5701 int plen;
5702
5703 if (gui.text_context == NULL || gui.drawarea->window == NULL)
5704 return len;
5705
5706 if (output_conv.vc_type != CONV_NONE)
5707 {
5708 /*
5709 * Convert characters from 'encoding' to 'termencoding', which is set
5710 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5711 * prohibits changing this to something else than UTF-8 if the GUI is
5712 * in use.
5713 */
5714 convlen = len;
5715 conv_buf = string_convert(&output_conv, s, &convlen);
5716 g_return_val_if_fail(conv_buf != NULL, len);
5717
5718 /* Correct for differences in char width: some chars are
5719 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5720 * compensate for that. */
5721 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5722 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005723 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5725 {
5726 new_conv_buf = alloc(convlen + 2);
5727 if (new_conv_buf == NULL)
5728 return len;
5729 plen += bp - conv_buf;
5730 mch_memmove(new_conv_buf, conv_buf, plen);
5731 new_conv_buf[plen] = ' ';
5732 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5733 convlen - plen + 1);
5734 vim_free(conv_buf);
5735 conv_buf = new_conv_buf;
5736 ++convlen;
5737 bp = conv_buf + plen;
5738 plen = 1;
5739 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005740 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 bp += plen;
5742 }
5743 s = conv_buf;
5744 len = convlen;
5745 }
5746
5747 /*
5748 * Restrict all drawing to the current screen line in order to prevent
5749 * fuzzy font lookups from messing up the screen.
5750 */
5751 area.x = gui.border_offset;
5752 area.y = FILL_Y(row);
5753 area.width = gui.num_cols * gui.char_width;
5754 area.height = gui.char_height;
5755
5756 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5757 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
5758
5759 glyphs = pango_glyph_string_new();
5760
5761 /*
5762 * Optimization hack: If possible, skip the itemize and shaping process
5763 * for pure ASCII strings. This optimization is particularly effective
5764 * because Vim draws space characters to clear parts of the screen.
5765 */
5766 if (!(flags & DRAW_ITALIC)
5767 && !((flags & DRAW_BOLD) && gui.font_can_bold)
5768 && gui.ascii_glyphs != NULL)
5769 {
5770 char_u *p;
5771
5772 for (p = s; p < s + len; ++p)
5773 if (*p & 0x80)
5774 goto not_ascii;
5775
5776 pango_glyph_string_set_size(glyphs, len);
5777
5778 for (i = 0; i < len; ++i)
5779 {
5780 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[s[i]];
5781 glyphs->log_clusters[i] = i;
5782 }
5783
5784 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
5785
5786 column_offset = len;
5787 }
5788 else
5789not_ascii:
5790 {
5791 PangoAttrList *attr_list;
5792 GList *item_list;
5793 int cluster_width;
5794 int last_glyph_rbearing;
5795 int cells = 0; /* cells occupied by current cluster */
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00005796#if 0
5797 int monospace13 = STRICMP(p_guifont, "monospace 13") == 0;
5798#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005800 /* Safety check: pango crashes when invoked with invalid utf-8
5801 * characters. */
5802 if (!utf_valid_string(s, s + len))
5803 {
5804 column_offset = len;
5805 goto skipitall;
5806 }
5807
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 /* original width of the current cluster */
5809 cluster_width = PANGO_SCALE * gui.char_width;
5810
5811 /* right bearing of the last non-composing glyph */
5812 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5813
5814 attr_list = pango_attr_list_new();
5815
5816 /* If 'guifontwide' is set then use that for double-width characters.
5817 * Otherwise just go with 'guifont' and let Pango do its thing. */
5818 if (gui.wide_font != NULL)
5819 apply_wide_font_attr(s, len, attr_list);
5820
5821 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5822 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5823 attr_list, 0, len);
5824 if (flags & DRAW_ITALIC)
5825 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5826 attr_list, 0, len);
5827 /*
5828 * Break the text into segments with consistent directional level
5829 * and shaping engine. Pure Latin text needs only a single segment,
5830 * so there's no need to worry about the loop's efficiency. Better
5831 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5832 */
5833 item_list = pango_itemize(gui.text_context,
5834 (const char *)s, 0, len, attr_list, NULL);
5835
5836 while (item_list != NULL)
5837 {
5838 PangoItem *item;
5839 int item_cells = 0; /* item length in cells */
5840
5841 item = (PangoItem *)item_list->data;
5842 item_list = g_list_delete_link(item_list, item_list);
5843 /*
5844 * Increment the bidirectional embedding level by 1 if it is not
5845 * even. An odd number means the output will be RTL, but we don't
5846 * want that since Vim handles right-to-left text on its own. It
5847 * would probably be sufficient to just set level = 0, but you can
5848 * never know :)
5849 *
5850 * Unfortunately we can't take advantage of Pango's ability to
5851 * render both LTR and RTL at the same time. In order to support
5852 * that, Vim's main screen engine would have to make use of Pango
5853 * functionality.
5854 */
5855 item->analysis.level = (item->analysis.level + 1) & (~1U);
5856
5857 /* HACK: Overrule the shape engine, we don't want shaping to be
5858 * done, because drawing the cursor would change the display. */
5859 item->analysis.shape_engine = default_shape_engine;
5860
5861 pango_shape((const char *)s + item->offset, item->length,
5862 &item->analysis, glyphs);
5863 /*
5864 * Fixed-width hack: iterate over the array and assign a fixed
5865 * width to each glyph, thus overriding the choice made by the
5866 * shaping engine. We use utf_char2cells() to determine the
5867 * number of cells needed.
5868 *
5869 * Also perform all kind of dark magic to get composing
5870 * characters right (and pretty too of course).
5871 */
5872 for (i = 0; i < glyphs->num_glyphs; ++i)
5873 {
5874 PangoGlyphInfo *glyph;
5875
5876 glyph = &glyphs->glyphs[i];
5877
5878 if (glyph->attr.is_cluster_start)
5879 {
5880 int cellcount;
5881
5882 cellcount = count_cluster_cells(
5883 s, item, glyphs, i, &cluster_width,
5884 (item_list != NULL) ? &last_glyph_rbearing : NULL);
5885
5886 if (cellcount > 0)
5887 {
5888 int width;
5889
5890 width = cellcount * gui.char_width * PANGO_SCALE;
5891 glyph->geometry.x_offset +=
5892 MAX(0, width - cluster_width) / 2;
5893 glyph->geometry.width = width;
5894 }
5895 else
5896 {
5897 /* If there are only combining characters in the
5898 * cluster, we cannot just change the width of the
5899 * previous glyph since there is none. Therefore
5900 * some guesswork is needed. */
5901 setup_zero_width_cluster(item, glyph, cells,
5902 cluster_width,
5903 last_glyph_rbearing);
5904 }
5905
5906 item_cells += cellcount;
5907 cells = cellcount;
5908 }
5909 else if (i > 0)
5910 {
5911 int width;
5912
5913 /* There is a previous glyph, so we deal with combining
5914 * characters the canonical way. That is, setting the
5915 * width of the previous glyph to 0. */
5916 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917 width = cells * gui.char_width * PANGO_SCALE;
5918 glyph->geometry.x_offset +=
5919 MAX(0, width - cluster_width) / 2;
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00005920#if 0
5921 /* Dirty hack: for "monospace 13" font there is a bug that
5922 * draws composing chars in the wrong position. Add
5923 * "width" to the offset to work around that. */
5924 if (monospace13)
5925 glyph->geometry.x_offset = width;
5926#endif
5927
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928 glyph->geometry.width = width;
5929 }
5930 else /* i == 0 "cannot happen" */
5931 {
5932 glyph->geometry.width = 0;
5933 }
5934 }
5935
5936 /*** Aaaaand action! ***/
5937 draw_glyph_string(row, col + column_offset, item_cells,
5938 flags, item->analysis.font, glyphs);
5939
5940 pango_item_free(item);
5941
5942 column_offset += item_cells;
5943 }
5944
5945 pango_attr_list_unref(attr_list);
5946 }
5947
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005948skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005949 /* Draw underline and undercurl. */
5950 draw_under(flags, row, col, column_offset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005951
5952 pango_glyph_string_free(glyphs);
5953 vim_free(conv_buf);
5954
5955 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
5956
5957 return column_offset;
5958}
5959#endif /* HAVE_GTK2 */
5960
5961#if !defined(HAVE_GTK2) || defined(PROTO)
5962 void
5963gui_mch_draw_string(int row, int col, char_u *s, int len, int flags)
5964{
5965 static XChar2b *buf = NULL;
5966 static int buflen = 0;
5967 int is_wide;
5968 XChar2b *text;
5969 int textlen;
5970 XFontStruct *xfont;
5971 char_u *p;
5972# ifdef FEAT_MBYTE
5973 unsigned c;
5974# endif
5975 int width;
5976
5977 if (gui.current_font == NULL || gui.drawarea->window == NULL)
5978 return;
5979
5980 /*
5981 * Yeah yeah apparently the font support in GTK+ 1.2 only cares for either:
5982 * asians or 8-bit fonts. It is broken there, but no wonder the whole font
5983 * stuff is broken in X11 in first place. And the internationalization API
5984 * isn't something you would really like to use.
5985 */
5986
5987 xfont = (XFontStruct *)((GdkFontPrivate*)gui.current_font)->xfont;
5988 is_wide = ((xfont->min_byte1 != 0 || xfont->max_byte1 != 0)
5989# ifdef FEAT_XFONTSET
5990 && gui.fontset == NOFONTSET
5991# endif
5992 );
5993
5994 if (is_wide)
5995 {
5996 /* Convert a byte sequence to 16 bit characters for the Gdk functions.
5997 * Need a buffer for the 16 bit characters. Keep it between calls,
5998 * because allocating it each time is slow. */
5999 if (buflen < len)
6000 {
6001 XtFree((char *)buf);
6002 buf = (XChar2b *)XtMalloc(len * sizeof(XChar2b));
6003 buflen = len;
6004 }
6005
6006 p = s;
6007 textlen = 0;
6008 width = 0;
6009 while (p < s + len)
6010 {
6011# ifdef FEAT_MBYTE
6012 if (enc_utf8)
6013 {
6014 c = utf_ptr2char(p);
6015 if (c >= 0x10000) /* show chars > 0xffff as ? */
6016 c = 0xbf;
6017 buf[textlen].byte1 = c >> 8;
6018 buf[textlen].byte2 = c;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006019 p += utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006020 width += utf_char2cells(c);
6021 }
6022 else
6023# endif
6024 {
6025 buf[textlen].byte1 = '\0'; /* high eight bits */
6026 buf[textlen].byte2 = *p; /* low eight bits */
6027 ++p;
6028 ++width;
6029 }
6030 ++textlen;
6031 }
6032 text = buf;
6033 textlen = textlen * 2;
6034 }
6035 else
6036 {
6037 text = (XChar2b *)s;
6038 textlen = len;
6039# ifdef FEAT_MBYTE
6040 if (has_mbyte)
6041 {
6042 width = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006043 for (p = s; p < s + len; p += (*mb_ptr2len)(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006044 width += (*mb_ptr2cells)(p);
6045 }
6046 else
6047# endif
6048 width = len;
6049 }
6050
6051 if (!(flags & DRAW_TRANSP))
6052 {
6053 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
6054 gdk_draw_rectangle(gui.drawarea->window,
6055 gui.text_gc,
6056 TRUE,
6057 FILL_X(col), FILL_Y(row),
6058 width * gui.char_width, gui.char_height);
6059 }
6060 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6061 gdk_draw_text(gui.drawarea->window,
6062 gui.current_font,
6063 gui.text_gc,
6064 TEXT_X(col), TEXT_Y(row),
6065 (const gchar *)text, textlen);
6066
6067 /* redraw the contents with an offset of 1 to emulate bold */
6068 if (flags & DRAW_BOLD)
6069 gdk_draw_text(gui.drawarea->window,
6070 gui.current_font,
6071 gui.text_gc,
6072 TEXT_X(col) + 1, TEXT_Y(row),
6073 (const gchar *)text, textlen);
6074
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006075 /* Draw underline and undercurl. */
6076 draw_under(flags, row, col, width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077}
6078#endif /* !HAVE_GTK2 */
6079
6080/*
6081 * Return OK if the key with the termcap name "name" is supported.
6082 */
6083 int
6084gui_mch_haskey(char_u *name)
6085{
6086 int i;
6087
6088 for (i = 0; special_keys[i].key_sym != 0; i++)
6089 if (name[0] == special_keys[i].code0
6090 && name[1] == special_keys[i].code1)
6091 return OK;
6092 return FAIL;
6093}
6094
6095#if defined(FEAT_TITLE) \
6096 || (defined(FEAT_XIM) && !defined(HAVE_GTK2)) \
6097 || defined(PROTO)
6098/*
6099 * Return the text window-id and display. Only required for X-based GUI's
6100 */
6101 int
6102gui_get_x11_windis(Window *win, Display **dis)
6103{
6104 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6105 {
6106 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6107 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
6108 return OK;
6109 }
6110
6111 *dis = NULL;
6112 *win = 0;
6113 return FAIL;
6114}
6115#endif
6116
6117#if defined(FEAT_CLIENTSERVER) \
6118 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6119
6120 Display *
6121gui_mch_get_display(void)
6122{
6123 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6124 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6125 else
6126 return NULL;
6127}
6128#endif
6129
6130 void
6131gui_mch_beep(void)
6132{
6133#ifdef HAVE_GTK_MULTIHEAD
6134 GdkDisplay *display;
6135
6136 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
6137 display = gtk_widget_get_display(gui.mainwin);
6138 else
6139 display = gdk_display_get_default();
6140
6141 if (display != NULL)
6142 gdk_display_beep(display);
6143#else
6144 gdk_beep();
6145#endif
6146}
6147
6148 void
6149gui_mch_flash(int msec)
6150{
6151 GdkGCValues values;
6152 GdkGC *invert_gc;
6153
6154 if (gui.drawarea->window == NULL)
6155 return;
6156
6157 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6158 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6159 values.function = GDK_XOR;
6160 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6161 &values,
6162 GDK_GC_FOREGROUND |
6163 GDK_GC_BACKGROUND |
6164 GDK_GC_FUNCTION);
6165 gdk_gc_set_exposures(invert_gc,
6166 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6167 /*
6168 * Do a visual beep by changing back and forth in some undetermined way,
6169 * the foreground and background colors. This is due to the fact that
6170 * there can't be really any prediction about the effects of XOR on
6171 * arbitrary X11 servers. However this seems to be enough for what we
6172 * intend it to do.
6173 */
6174 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6175 TRUE,
6176 0, 0,
6177 FILL_X((int)Columns) + gui.border_offset,
6178 FILL_Y((int)Rows) + gui.border_offset);
6179
6180 gui_mch_flush();
6181 ui_delay((long)msec, TRUE); /* wait so many msec */
6182
6183 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6184 TRUE,
6185 0, 0,
6186 FILL_X((int)Columns) + gui.border_offset,
6187 FILL_Y((int)Rows) + gui.border_offset);
6188
6189 gdk_gc_destroy(invert_gc);
6190}
6191
6192/*
6193 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6194 */
6195 void
6196gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6197{
6198 GdkGCValues values;
6199 GdkGC *invert_gc;
6200 GdkColor foreground;
6201 GdkColor background;
6202
6203 if (gui.drawarea->window == NULL)
6204 return;
6205
6206 foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6207 background.pixel = gui.norm_pixel ^ gui.back_pixel;
6208
6209 values.foreground = foreground;
6210 values.background = background;
6211 values.function = GDK_XOR;
6212 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6213 &values,
6214 GDK_GC_FOREGROUND |
6215 GDK_GC_BACKGROUND |
6216 GDK_GC_FUNCTION);
6217 gdk_gc_set_exposures(invert_gc, gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6218 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6219 TRUE,
6220 FILL_X(c), FILL_Y(r),
6221 (nc) * gui.char_width, (nr) * gui.char_height);
6222 gdk_gc_destroy(invert_gc);
6223}
6224
6225/*
6226 * Iconify the GUI window.
6227 */
6228 void
6229gui_mch_iconify(void)
6230{
6231#ifdef HAVE_GTK2
6232 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
6233#else
6234 XIconifyWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
6235 GDK_WINDOW_XWINDOW(gui.mainwin->window),
6236 DefaultScreen(GDK_WINDOW_XDISPLAY(gui.mainwin->window)));
6237#endif
6238}
6239
6240#if defined(FEAT_EVAL) || defined(PROTO)
6241/*
6242 * Bring the Vim window to the foreground.
6243 */
6244 void
6245gui_mch_set_foreground(void)
6246{
6247# ifdef HAVE_GTK2
6248 gtk_window_present(GTK_WINDOW(gui.mainwin));
6249# else
6250 gdk_window_raise(gui.mainwin->window);
6251# endif
6252}
6253#endif
6254
6255/*
6256 * Draw a cursor without focus.
6257 */
6258 void
6259gui_mch_draw_hollow_cursor(guicolor_T color)
6260{
6261 int i = 1;
6262
6263 if (gui.drawarea->window == NULL)
6264 return;
6265
6266 gui_mch_set_fg_color(color);
6267
6268 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6269#ifdef FEAT_MBYTE
6270 if (mb_lefthalve(gui.row, gui.col))
6271 i = 2;
6272#endif
6273 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6274 FALSE,
6275 FILL_X(gui.col), FILL_Y(gui.row),
6276 i * gui.char_width - 1, gui.char_height - 1);
6277}
6278
6279/*
6280 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6281 * color "color".
6282 */
6283 void
6284gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6285{
6286 if (gui.drawarea->window == NULL)
6287 return;
6288
6289 gui_mch_set_fg_color(color);
6290
6291 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6292 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6293 TRUE,
6294#ifdef FEAT_RIGHTLEFT
6295 /* vertical line should be on the right of current point */
6296 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6297#endif
6298 FILL_X(gui.col),
6299 FILL_Y(gui.row) + gui.char_height - h,
6300 w, h);
6301}
6302
6303
6304/*
6305 * Catch up with any queued X11 events. This may put keyboard input into the
6306 * input buffer, call resize call-backs, trigger timers etc. If there is
6307 * nothing in the X11 event queue (& no timers pending), then we return
6308 * immediately.
6309 */
6310 void
6311gui_mch_update(void)
6312{
6313 while (gtk_events_pending() && !vim_is_input_buf_full())
6314 gtk_main_iteration_do(FALSE);
6315}
6316
6317 static gint
6318input_timer_cb(gpointer data)
6319{
6320 int *timed_out = (int *) data;
6321
6322 /* Just inform the caller about the occurence of it */
6323 *timed_out = TRUE;
6324
6325 if (gtk_main_level() > 0)
6326 gtk_main_quit();
6327
6328 return FALSE; /* don't happen again */
6329}
6330
6331#ifdef FEAT_SNIFF
6332/*
6333 * Callback function, used when data is available on the SNiFF connection.
6334 */
6335/* ARGSUSED */
6336 static void
6337sniff_request_cb(
6338 gpointer data,
6339 gint source_fd,
6340 GdkInputCondition condition)
6341{
6342 static char_u bytes[3] = {CSI, (int)KS_EXTRA, (int)KE_SNIFF};
6343
6344 add_to_input_buf(bytes, 3);
6345
6346 if (gtk_main_level() > 0)
6347 gtk_main_quit();
6348}
6349#endif
6350
6351/*
6352 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6353 * from the keyboard.
6354 * wtime == -1 Wait forever.
6355 * wtime == 0 This should never happen.
6356 * wtime > 0 Wait wtime milliseconds for a character.
6357 * Returns OK if a character was found to be available within the given time,
6358 * or FAIL otherwise.
6359 */
6360 int
6361gui_mch_wait_for_chars(long wtime)
6362{
6363 int focus;
6364 guint timer;
6365 static int timed_out;
6366#ifdef FEAT_SNIFF
6367 static int sniff_on = 0;
6368 static gint sniff_input_id = 0;
6369#endif
6370
6371#ifdef FEAT_SNIFF
6372 if (sniff_on && !want_sniff_request)
6373 {
6374 if (sniff_input_id)
6375 gdk_input_remove(sniff_input_id);
6376 sniff_on = 0;
6377 }
6378 else if (!sniff_on && want_sniff_request)
6379 {
6380 /* Add fd_from_sniff to watch for available data in main loop. */
6381 sniff_input_id = gdk_input_add(fd_from_sniff,
6382 GDK_INPUT_READ, sniff_request_cb, NULL);
6383 sniff_on = 1;
6384 }
6385#endif
6386
6387 timed_out = FALSE;
6388
6389 /* this timeout makes sure that we will return if no characters arrived in
6390 * time */
6391
6392 if (wtime > 0)
6393 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out);
6394 else
6395 timer = 0;
6396
6397 focus = gui.in_focus;
6398
6399 do
6400 {
6401 /* Stop or start blinking when focus changes */
6402 if (gui.in_focus != focus)
6403 {
6404 if (gui.in_focus)
6405 gui_mch_start_blink();
6406 else
6407 gui_mch_stop_blink();
6408 focus = gui.in_focus;
6409 }
6410
6411 /*
6412 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006413 * Skip this if input is available anyway (can happen in rare
6414 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006416 if (!input_available())
6417 gtk_main();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418
6419 /* Got char, return immediately */
6420 if (input_available())
6421 {
6422 if (timer != 0 && !timed_out)
6423 gtk_timeout_remove(timer);
6424 return OK;
6425 }
6426 } while (wtime < 0 || !timed_out);
6427
6428 /*
6429 * Flush all eventually pending (drawing) events.
6430 */
6431 gui_mch_update();
6432
6433 return FAIL;
6434}
6435
6436
6437/****************************************************************************
6438 * Output drawing routines.
6439 ****************************************************************************/
6440
6441
6442/* Flush any output to the screen */
6443 void
6444gui_mch_flush(void)
6445{
6446#ifdef HAVE_GTK_MULTIHEAD
6447 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
6448 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6449#else
6450 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */
6451#endif
6452#ifdef HAVE_GTK2
6453 /* This happens to actually do what gui_mch_flush() is supposed to do,
6454 * according to the comment above. */
6455 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
6456 gdk_window_process_updates(gui.drawarea->window, FALSE);
6457#endif
6458}
6459
6460/*
6461 * Clear a rectangular region of the screen from text pos (row1, col1) to
6462 * (row2, col2) inclusive.
6463 */
6464 void
6465gui_mch_clear_block(int row1, int col1, int row2, int col2)
6466{
6467 GdkColor color;
6468
6469 if (gui.drawarea->window == NULL)
6470 return;
6471
6472 color.pixel = gui.back_pixel;
6473
6474 gdk_gc_set_foreground(gui.text_gc, &color);
6475
6476 /* Clear one extra pixel at the far right, for when bold characters have
6477 * spilled over to the window border. */
6478 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6479 FILL_X(col1), FILL_Y(row1),
6480 (col2 - col1 + 1) * gui.char_width
6481 + (col2 == Columns - 1),
6482 (row2 - row1 + 1) * gui.char_height);
6483}
6484
6485 void
6486gui_mch_clear_all(void)
6487{
6488 if (gui.drawarea->window != NULL)
6489 gdk_window_clear(gui.drawarea->window);
6490}
6491
6492/*
6493 * Redraw any text revealed by scrolling up/down.
6494 */
6495 static void
6496check_copy_area(void)
6497{
6498 GdkEvent *event;
6499 int expose_count;
6500
6501 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6502 return;
6503
6504 /* Avoid redrawing the cursor while scrolling or it'll end up where
6505 * we don't want it to be. I'm not sure if it's correct to call
6506 * gui_dont_update_cursor() at this point but it works as a quick
6507 * fix for now. */
6508 gui_dont_update_cursor();
6509
6510 do
6511 {
6512 /* Wait to check whether the scroll worked or not. */
6513 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6514
6515 if (event == NULL)
6516 break; /* received NoExpose event */
6517
6518 gui_redraw(event->expose.area.x, event->expose.area.y,
6519 event->expose.area.width, event->expose.area.height);
6520
6521 expose_count = event->expose.count;
6522 gdk_event_free(event);
6523 }
6524 while (expose_count > 0); /* more events follow */
6525
6526 gui_can_update_cursor();
6527}
6528
6529/*
6530 * Delete the given number of lines from the given row, scrolling up any
6531 * text further down within the scroll region.
6532 */
6533 void
6534gui_mch_delete_lines(int row, int num_lines)
6535{
6536 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6537 return; /* Can't see the window */
6538
6539 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6540 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6541
6542 /* copy one extra pixel, for when bold has spilled over */
6543 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6544 FILL_X(gui.scroll_region_left), FILL_Y(row),
6545 gui.drawarea->window,
6546 FILL_X(gui.scroll_region_left),
6547 FILL_Y(row + num_lines),
6548 gui.char_width * (gui.scroll_region_right
6549 - gui.scroll_region_left + 1) + 1,
6550 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6551
6552 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6553 gui.scroll_region_left,
6554 gui.scroll_region_bot, gui.scroll_region_right);
6555 check_copy_area();
6556}
6557
6558/*
6559 * Insert the given number of lines before the given row, scrolling down any
6560 * following text within the scroll region.
6561 */
6562 void
6563gui_mch_insert_lines(int row, int num_lines)
6564{
6565 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6566 return; /* Can't see the window */
6567
6568 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6569 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6570
6571 /* copy one extra pixel, for when bold has spilled over */
6572 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6573 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6574 gui.drawarea->window,
6575 FILL_X(gui.scroll_region_left), FILL_Y(row),
6576 gui.char_width * (gui.scroll_region_right
6577 - gui.scroll_region_left + 1) + 1,
6578 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6579
6580 gui_clear_block(row, gui.scroll_region_left,
6581 row + num_lines - 1, gui.scroll_region_right);
6582 check_copy_area();
6583}
6584
6585/*
6586 * X Selection stuff, for cutting and pasting text to other windows.
6587 */
6588 void
6589clip_mch_request_selection(VimClipboard *cbd)
6590{
6591 GdkAtom target;
6592 unsigned i;
6593 int nbytes;
6594 char_u *buffer;
6595
6596 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6597 {
6598 received_selection = RS_NONE;
6599 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6600
6601 gtk_selection_convert(gui.drawarea,
6602 cbd->gtk_sel_atom, target,
6603 (guint32)GDK_CURRENT_TIME);
6604
6605 while (received_selection == RS_NONE)
6606 gtk_main(); /* wait for selection_received_cb */
6607
6608 if (received_selection != RS_FAIL)
6609 return;
6610 }
6611
6612 /* Final fallback position - use the X CUT_BUFFER0 store */
6613 nbytes = 0;
6614 buffer = (char_u *)XFetchBuffer(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
6615 &nbytes, 0);
6616 if (nbytes > 0)
6617 {
6618 /* Got something */
6619 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
6620 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00006621 {
6622 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006623 smsg((char_u *)_("Used CUT_BUFFER0 instead of empty selection"));
Bram Moolenaar54ee7752005-05-31 22:22:17 +00006624 verbose_leave();
6625 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626 }
6627 if (buffer != NULL)
6628 XFree(buffer);
6629}
6630
6631/*
6632 * Disown the selection.
6633 */
6634/*ARGSUSED*/
6635 void
6636clip_mch_lose_selection(VimClipboard *cbd)
6637{
6638 /* WEIRD: when using NULL to actually disown the selection, we lose the
6639 * selection the first time we own it. */
6640 /*
6641 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, (guint32)GDK_CURRENT_TIME);
6642 gui_mch_update();
6643 */
6644}
6645
6646/*
6647 * Own the selection and return OK if it worked.
6648 */
6649 int
6650clip_mch_own_selection(VimClipboard *cbd)
6651{
6652 int success;
6653
6654 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
6655 (guint32)GDK_CURRENT_TIME);
6656 gui_mch_update();
6657 return (success) ? OK : FAIL;
6658}
6659
6660/*
6661 * Send the current selection to the clipboard. Do nothing for X because we
6662 * will fill in the selection only when requested by another app.
6663 */
6664/*ARGSUSED*/
6665 void
6666clip_mch_set_selection(VimClipboard *cbd)
6667{
6668}
6669
6670
6671#if defined(FEAT_MENU) || defined(PROTO)
6672/*
6673 * Make a menu item appear either active or not active (grey or not grey).
6674 */
6675 void
6676gui_mch_menu_grey(vimmenu_T *menu, int grey)
6677{
6678 if (menu->id == NULL)
6679 return;
6680
6681 if (menu_is_separator(menu->name))
6682 grey = TRUE;
6683
6684 gui_mch_menu_hidden(menu, FALSE);
6685 /* Be clever about bitfields versus true booleans here! */
6686 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
6687 {
6688 gtk_widget_set_sensitive(menu->id, !grey);
6689 gui_mch_update();
6690 }
6691}
6692
6693/*
6694 * Make menu item hidden or not hidden.
6695 */
6696 void
6697gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6698{
6699 if (menu->id == 0)
6700 return;
6701
6702 if (hidden)
6703 {
6704 if (GTK_WIDGET_VISIBLE(menu->id))
6705 {
6706 gtk_widget_hide(menu->id);
6707 gui_mch_update();
6708 }
6709 }
6710 else
6711 {
6712 if (!GTK_WIDGET_VISIBLE(menu->id))
6713 {
6714 gtk_widget_show(menu->id);
6715 gui_mch_update();
6716 }
6717 }
6718}
6719
6720/*
6721 * This is called after setting all the menus to grey/hidden or not.
6722 */
6723 void
6724gui_mch_draw_menubar(void)
6725{
6726 /* just make sure that the visual changes get effect immediately */
6727 gui_mch_update();
6728}
6729#endif /* FEAT_MENU */
6730
6731/*
6732 * Scrollbar stuff.
6733 */
6734 void
6735gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6736{
6737 if (sb->id == NULL)
6738 return;
6739
6740 if (flag)
6741 gtk_widget_show(sb->id);
6742 else
6743 gtk_widget_hide(sb->id);
6744
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006745 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746}
6747
6748
6749/*
6750 * Return the RGB value of a pixel as long.
6751 */
6752 long_u
6753gui_mch_get_rgb(guicolor_T pixel)
6754{
6755 GdkColor color;
6756#ifndef HAVE_GTK2
6757 GdkColorContext *cc;
6758
6759 cc = gdk_color_context_new(gtk_widget_get_visual(gui.drawarea),
6760 gtk_widget_get_colormap(gui.drawarea));
6761 color.pixel = pixel;
6762 gdk_color_context_query_color(cc, &color);
6763
6764 gdk_color_context_free(cc);
6765#else
6766 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6767 (unsigned long)pixel, &color);
6768#endif
6769
6770 return (((unsigned)color.red & 0xff00) << 8)
6771 | ((unsigned)color.green & 0xff00)
6772 | (((unsigned)color.blue & 0xff00) >> 8);
6773}
6774
6775/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006776 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006777 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006778 void
6779gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780{
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006781 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006782}
6783
6784 void
6785gui_mch_setmouse(int x, int y)
6786{
6787 /* Sorry for the Xlib call, but we can't avoid it, since there is no
6788 * internal GDK mechanism present to accomplish this. (and for good
6789 * reason...) */
6790 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
6791 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
6792 0, 0, 0U, 0U, x, y);
6793}
6794
6795
6796#ifdef FEAT_MOUSESHAPE
6797/* The last set mouse pointer shape is remembered, to be used when it goes
6798 * from hidden to not hidden. */
6799static int last_shape = 0;
6800#endif
6801
6802/*
6803 * Use the blank mouse pointer or not.
6804 *
6805 * hide: TRUE = use blank ptr, FALSE = use parent ptr
6806 */
6807 void
6808gui_mch_mousehide(int hide)
6809{
6810 if (gui.pointer_hidden != hide)
6811 {
6812 gui.pointer_hidden = hide;
6813 if (gui.drawarea->window && gui.blank_pointer != NULL)
6814 {
6815 if (hide)
6816 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
6817 else
6818#ifdef FEAT_MOUSESHAPE
6819 mch_set_mouse_shape(last_shape);
6820#else
6821 gdk_window_set_cursor(gui.drawarea->window, NULL);
6822#endif
6823 }
6824 }
6825}
6826
6827#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
6828
6829/* Table for shape IDs. Keep in sync with the mshape_names[] table in
6830 * misc2.c! */
6831static const int mshape_ids[] =
6832{
6833 GDK_LEFT_PTR, /* arrow */
6834 GDK_CURSOR_IS_PIXMAP, /* blank */
6835 GDK_XTERM, /* beam */
6836 GDK_SB_V_DOUBLE_ARROW, /* updown */
6837 GDK_SIZING, /* udsizing */
6838 GDK_SB_H_DOUBLE_ARROW, /* leftright */
6839 GDK_SIZING, /* lrsizing */
6840 GDK_WATCH, /* busy */
6841 GDK_X_CURSOR, /* no */
6842 GDK_CROSSHAIR, /* crosshair */
6843 GDK_HAND1, /* hand1 */
6844 GDK_HAND2, /* hand2 */
6845 GDK_PENCIL, /* pencil */
6846 GDK_QUESTION_ARROW, /* question */
6847 GDK_RIGHT_PTR, /* right-arrow */
6848 GDK_CENTER_PTR, /* up-arrow */
6849 GDK_LEFT_PTR /* last one */
6850};
6851
6852 void
6853mch_set_mouse_shape(int shape)
6854{
6855 int id;
6856 GdkCursor *c;
6857
6858 if (gui.drawarea->window == NULL)
6859 return;
6860
6861 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
6862 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
6863 else
6864 {
6865 if (shape >= MSHAPE_NUMBERED)
6866 {
6867 id = shape - MSHAPE_NUMBERED;
6868 if (id >= GDK_LAST_CURSOR)
6869 id = GDK_LEFT_PTR;
6870 else
6871 id &= ~1; /* they are always even (why?) */
6872 }
6873 else
6874 id = mshape_ids[shape];
6875# ifdef HAVE_GTK_MULTIHEAD
6876 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00006877 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006878# else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00006879 c = gdk_cursor_new((GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006880# endif
6881 gdk_window_set_cursor(gui.drawarea->window, c);
6882 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
6883 }
6884 if (shape != MSHAPE_HIDE)
6885 last_shape = shape;
6886}
6887#endif /* FEAT_MOUSESHAPE */
6888
6889
6890#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6891/*
6892 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
6893 * scaled down if the current font is not big enough, or scaled up if the image
6894 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
6895 * will be cut off if the current font is not big enough, or centered if it's
6896 * too small.
6897 */
6898# define SIGN_WIDTH (2 * gui.char_width)
6899# define SIGN_HEIGHT (gui.char_height)
6900# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
6901
6902# ifdef HAVE_GTK2
6903
6904 void
6905gui_mch_drawsign(int row, int col, int typenr)
6906{
6907 GdkPixbuf *sign;
6908
6909 sign = (GdkPixbuf *)sign_get_image(typenr);
6910
6911 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
6912 {
6913 int width;
6914 int height;
6915 int xoffset;
6916 int yoffset;
6917 int need_scale;
6918
6919 width = gdk_pixbuf_get_width(sign);
6920 height = gdk_pixbuf_get_height(sign);
6921 /*
6922 * Decide whether we need to scale. Allow one pixel of border
6923 * width to be cut off, in order to avoid excessive scaling for
6924 * tiny differences in font size.
6925 */
6926 need_scale = (width > SIGN_WIDTH + 2
6927 || height > SIGN_HEIGHT + 2
6928 || (width < 3 * SIGN_WIDTH / 4
6929 && height < 3 * SIGN_HEIGHT / 4));
6930 if (need_scale)
6931 {
6932 double aspect;
6933
6934 /* Keep the original aspect ratio */
6935 aspect = (double)height / (double)width;
6936 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
6937 width = MIN(width, SIGN_WIDTH);
6938 height = (double)width * aspect;
6939
6940 /* This doesn't seem to be worth caching, and doing so
6941 * would complicate the code quite a bit. */
6942 sign = gdk_pixbuf_scale_simple(sign, width, height,
6943 GDK_INTERP_BILINEAR);
6944 if (sign == NULL)
6945 return; /* out of memory */
6946 }
6947
6948 /* The origin is the upper-left corner of the pixmap. Therefore
6949 * these offset may become negative if the pixmap is smaller than
6950 * the 2x1 cells reserved for the sign icon. */
6951 xoffset = (width - SIGN_WIDTH) / 2;
6952 yoffset = (height - SIGN_HEIGHT) / 2;
6953
6954 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
6955
6956 gdk_draw_rectangle(gui.drawarea->window,
6957 gui.text_gc,
6958 TRUE,
6959 FILL_X(col),
6960 FILL_Y(row),
6961 SIGN_WIDTH,
6962 SIGN_HEIGHT);
6963
6964# if GTK_CHECK_VERSION(2,1,1)
6965 gdk_draw_pixbuf(gui.drawarea->window,
6966 NULL,
6967 sign,
6968 MAX(0, xoffset),
6969 MAX(0, yoffset),
6970 FILL_X(col) - MIN(0, xoffset),
6971 FILL_Y(row) - MIN(0, yoffset),
6972 MIN(width, SIGN_WIDTH),
6973 MIN(height, SIGN_HEIGHT),
6974 GDK_RGB_DITHER_NORMAL,
6975 0, 0);
6976# else
6977 gdk_pixbuf_render_to_drawable_alpha(sign,
6978 gui.drawarea->window,
6979 MAX(0, xoffset),
6980 MAX(0, yoffset),
6981 FILL_X(col) - MIN(0, xoffset),
6982 FILL_Y(row) - MIN(0, yoffset),
6983 MIN(width, SIGN_WIDTH),
6984 MIN(height, SIGN_HEIGHT),
6985 GDK_PIXBUF_ALPHA_BILEVEL,
6986 127,
6987 GDK_RGB_DITHER_NORMAL,
6988 0, 0);
6989# endif
6990 if (need_scale)
6991 g_object_unref(sign);
6992 }
6993}
6994
6995 void *
6996gui_mch_register_sign(char_u *signfile)
6997{
6998 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
6999 {
7000 GdkPixbuf *sign;
7001 GError *error = NULL;
7002 char_u *message;
7003
7004 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7005
7006 if (error == NULL)
7007 return sign;
7008
7009 message = (char_u *)error->message;
7010
7011 if (message != NULL && input_conv.vc_type != CONV_NONE)
7012 message = string_convert(&input_conv, message, NULL);
7013
7014 if (message != NULL)
7015 {
7016 /* The error message is already translated and will be more
7017 * descriptive than anything we could possibly do ourselves. */
7018 EMSG2("E255: %s", message);
7019
7020 if (input_conv.vc_type != CONV_NONE)
7021 vim_free(message);
7022 }
7023 g_error_free(error);
7024 }
7025
7026 return NULL;
7027}
7028
7029 void
7030gui_mch_destroy_sign(void *sign)
7031{
7032 if (sign != NULL)
7033 g_object_unref(sign);
7034}
7035
7036# else /* !HAVE_GTK2 */
7037
7038typedef struct
7039{
7040 GdkPixmap *pixmap;
7041 GdkBitmap *mask;
7042}
7043signicon_T;
7044
7045 void
7046gui_mch_drawsign(int row, int col, int typenr)
7047{
7048 signicon_T *sign;
7049
7050 sign = (signicon_T *)sign_get_image(typenr);
7051
7052 if (sign != NULL && sign->pixmap != NULL
7053 && gui.drawarea != NULL && gui.drawarea->window != NULL)
7054 {
7055 int width;
7056 int height;
7057 int xoffset;
7058 int yoffset;
7059
7060 gdk_window_get_size(sign->pixmap, &width, &height);
7061
7062 /* The origin is the upper-left corner of the pixmap. Therefore
7063 * these offset may become negative if the pixmap is smaller than
7064 * the 2x1 cells reserved for the sign icon. */
7065 xoffset = (width - SIGN_WIDTH) / 2;
7066 yoffset = (height - SIGN_HEIGHT) / 2;
7067
7068 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7069
7070 gdk_draw_rectangle(gui.drawarea->window,
7071 gui.text_gc,
7072 TRUE,
7073 FILL_X(col),
7074 FILL_Y(row),
7075 SIGN_WIDTH,
7076 SIGN_HEIGHT);
7077
7078 /* Set the clip mask for bilevel transparency */
7079 if (sign->mask != NULL)
7080 {
7081 gdk_gc_set_clip_origin(gui.text_gc,
7082 FILL_X(col) - xoffset,
7083 FILL_Y(row) - yoffset);
7084 gdk_gc_set_clip_mask(gui.text_gc, sign->mask);
7085 }
7086
7087 gdk_draw_pixmap(gui.drawarea->window,
7088 gui.text_gc,
7089 sign->pixmap,
7090 MAX(0, xoffset),
7091 MAX(0, yoffset),
7092 FILL_X(col) - MIN(0, xoffset),
7093 FILL_Y(row) - MIN(0, yoffset),
7094 MIN(width, SIGN_WIDTH),
7095 MIN(height, SIGN_HEIGHT));
7096
7097 gdk_gc_set_clip_mask(gui.text_gc, NULL);
7098 }
7099}
7100
7101 void *
7102gui_mch_register_sign(char_u *signfile)
7103{
7104 signicon_T *sign = NULL;
7105
7106 if (signfile[0] != NUL && signfile[0] != '-'
7107 && gui.drawarea != NULL && gui.drawarea->window != NULL)
7108 {
7109 sign = (signicon_T *)alloc(sizeof(signicon_T));
7110
7111 if (sign != NULL) /* NULL == OOM == "cannot really happen" */
7112 {
7113 sign->mask = NULL;
7114 sign->pixmap = gdk_pixmap_colormap_create_from_xpm(
7115 gui.drawarea->window, NULL,
7116 &sign->mask, NULL,
7117 (const char *)signfile);
7118
7119 if (sign->pixmap == NULL)
7120 {
7121 vim_free(sign);
7122 sign = NULL;
7123 EMSG(_(e_signdata));
7124 }
7125 }
7126 }
7127 return sign;
7128}
7129
7130 void
7131gui_mch_destroy_sign(void *sign)
7132{
7133 if (sign != NULL)
7134 {
7135 signicon_T *signicon = (signicon_T *)sign;
7136
7137 if (signicon->pixmap != NULL)
7138 gdk_pixmap_unref(signicon->pixmap);
7139 if (signicon->mask != NULL)
7140 gdk_bitmap_unref(signicon->mask);
7141
7142 vim_free(signicon);
7143 }
7144}
7145# endif /* !HAVE_GTK2 */
7146
7147#endif /* FEAT_SIGN_ICONS */
7148