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