Deleted the unused file.
[MacVim/KaoriYa.git] / src / gui_gtk_x11.c
blobd7f5103e1ebcb46eb460be2aea29cb925ca990e8
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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 */
11 * Porting to GTK+ was done by:
13 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
15 * With GREAT support and continuous encouragements by Andy Kahn and of
16 * course Bram Moolenaar!
18 * Support for GTK+ 2 was added by:
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
21 * Daniel Elstner <daniel.elstner@gmx.net>
24 #include "vim.h"
26 #ifdef FEAT_GUI_GNOME
27 /* Gnome redefines _() and N_(). Grrr... */
28 # ifdef _
29 # undef _
30 # endif
31 # ifdef N_
32 # undef N_
33 # endif
34 # ifdef textdomain
35 # undef textdomain
36 # endif
37 # ifdef bindtextdomain
38 # undef bindtextdomain
39 # endif
40 # ifdef bind_textdomain_codeset
41 # undef bind_textdomain_codeset
42 # endif
43 # if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS)
44 # define ENABLE_NLS /* so the texts in the dialog boxes are translated */
45 # endif
46 # include <gnome.h>
47 # include "version.h"
48 # ifdef HAVE_GTK2
49 /* missing prototype in bonobo-dock-item.h */
50 extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh);
51 # endif
52 #endif
54 #if !defined(FEAT_GUI_GTK) && defined(PROTO)
55 /* When generating prototypes we don't want syntax errors. */
56 # define GdkAtom int
57 # define GdkEventExpose int
58 # define GdkEventFocus int
59 # define GdkEventVisibility int
60 # define GdkEventProperty int
61 # define GtkContainer int
62 # define GtkTargetEntry int
63 # define GtkType int
64 # define GtkWidget int
65 # define gint int
66 # define gpointer int
67 # define guint int
68 # define GdkEventKey int
69 # define GdkEventSelection int
70 # define GtkSelectionData int
71 # define GdkEventMotion int
72 # define GdkEventButton int
73 # define GdkDragContext int
74 # define GdkEventConfigure int
75 # define GdkEventClient int
76 #else
77 # include <gdk/gdkkeysyms.h>
78 # include <gdk/gdk.h>
79 # ifdef WIN3264
80 # include <gdk/gdkwin32.h>
81 # else
82 # include <gdk/gdkx.h>
83 # endif
85 # include <gtk/gtk.h>
86 # include "gui_gtk_f.h"
87 #endif
89 #ifdef HAVE_X11_SUNKEYSYM_H
90 # include <X11/Sunkeysym.h>
91 #endif
94 * Easy-to-use macro for multihead support.
96 #ifdef HAVE_GTK_MULTIHEAD
97 # define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \
98 gtk_widget_get_display(gui.mainwin), atom)
99 #else
100 # define GET_X_ATOM(atom) ((Atom)(atom))
101 #endif
103 /* Selection type distinguishers */
104 enum
106 TARGET_TYPE_NONE,
107 TARGET_UTF8_STRING,
108 TARGET_STRING,
109 TARGET_COMPOUND_TEXT,
110 TARGET_TEXT,
111 TARGET_TEXT_URI_LIST,
112 TARGET_TEXT_PLAIN,
113 TARGET_VIM,
114 TARGET_VIMENC
118 * Table of selection targets supported by Vim.
119 * Note: Order matters, preferred types should come first.
121 static const GtkTargetEntry selection_targets[] =
123 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC},
124 {VIM_ATOM_NAME, 0, TARGET_VIM},
125 #ifdef FEAT_MBYTE
126 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
127 #endif
128 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT},
129 {"TEXT", 0, TARGET_TEXT},
130 {"STRING", 0, TARGET_STRING}
132 #define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0]))
134 #ifdef FEAT_DND
136 * Table of DnD targets supported by Vim.
137 * Note: Order matters, preferred types should come first.
139 static const GtkTargetEntry dnd_targets[] =
141 {"text/uri-list", 0, TARGET_TEXT_URI_LIST},
142 # ifdef FEAT_MBYTE
143 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
144 # endif
145 {"STRING", 0, TARGET_STRING},
146 {"text/plain", 0, TARGET_TEXT_PLAIN}
148 # define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0]))
149 #endif
152 #ifdef HAVE_GTK2
154 * "Monospace" is a standard font alias that should be present
155 * on all proper Pango/fontconfig installations.
157 # define DEFAULT_FONT "Monospace 10"
159 #else /* !HAVE_GTK2 */
161 * This is the single only fixed width font in X11, which seems to be present
162 * on all servers and available in all the variants we need.
164 # define DEFAULT_FONT "-adobe-courier-medium-r-normal-*-14-*-*-*-m-*-*-*"
166 #endif /* !HAVE_GTK2 */
168 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
170 * Atoms used to communicate save-yourself from the X11 session manager. There
171 * is no need to move them into the GUI struct, since they should be constant.
173 static GdkAtom wm_protocols_atom = GDK_NONE;
174 static GdkAtom save_yourself_atom = GDK_NONE;
175 #endif
178 * Atoms used to control/reference X11 selections.
180 #ifdef FEAT_MBYTE
181 static GdkAtom utf8_string_atom = GDK_NONE;
182 #endif
183 #ifndef HAVE_GTK2
184 static GdkAtom compound_text_atom = GDK_NONE;
185 static GdkAtom text_atom = GDK_NONE;
186 #endif
187 static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */
188 #ifdef FEAT_MBYTE
189 static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */
190 #endif
193 * Keycodes recognized by vim.
194 * NOTE: when changing this, the table in gui_x11.c probably needs the same
195 * change!
197 static struct special_key
199 guint key_sym;
200 char_u code0;
201 char_u code1;
203 const special_keys[] =
205 {GDK_Up, 'k', 'u'},
206 {GDK_Down, 'k', 'd'},
207 {GDK_Left, 'k', 'l'},
208 {GDK_Right, 'k', 'r'},
209 {GDK_F1, 'k', '1'},
210 {GDK_F2, 'k', '2'},
211 {GDK_F3, 'k', '3'},
212 {GDK_F4, 'k', '4'},
213 {GDK_F5, 'k', '5'},
214 {GDK_F6, 'k', '6'},
215 {GDK_F7, 'k', '7'},
216 {GDK_F8, 'k', '8'},
217 {GDK_F9, 'k', '9'},
218 {GDK_F10, 'k', ';'},
219 {GDK_F11, 'F', '1'},
220 {GDK_F12, 'F', '2'},
221 {GDK_F13, 'F', '3'},
222 {GDK_F14, 'F', '4'},
223 {GDK_F15, 'F', '5'},
224 {GDK_F16, 'F', '6'},
225 {GDK_F17, 'F', '7'},
226 {GDK_F18, 'F', '8'},
227 {GDK_F19, 'F', '9'},
228 {GDK_F20, 'F', 'A'},
229 {GDK_F21, 'F', 'B'},
230 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */
231 {GDK_F22, 'F', 'C'},
232 {GDK_F23, 'F', 'D'},
233 {GDK_F24, 'F', 'E'},
234 {GDK_F25, 'F', 'F'},
235 {GDK_F26, 'F', 'G'},
236 {GDK_F27, 'F', 'H'},
237 {GDK_F28, 'F', 'I'},
238 {GDK_F29, 'F', 'J'},
239 {GDK_F30, 'F', 'K'},
240 {GDK_F31, 'F', 'L'},
241 {GDK_F32, 'F', 'M'},
242 {GDK_F33, 'F', 'N'},
243 {GDK_F34, 'F', 'O'},
244 {GDK_F35, 'F', 'P'},
245 #ifdef SunXK_F36
246 {SunXK_F36, 'F', 'Q'},
247 {SunXK_F37, 'F', 'R'},
248 #endif
249 {GDK_Help, '%', '1'},
250 {GDK_Undo, '&', '8'},
251 {GDK_BackSpace, 'k', 'b'},
252 {GDK_Insert, 'k', 'I'},
253 {GDK_Delete, 'k', 'D'},
254 {GDK_3270_BackTab, 'k', 'B'},
255 {GDK_Clear, 'k', 'C'},
256 {GDK_Home, 'k', 'h'},
257 {GDK_End, '@', '7'},
258 {GDK_Prior, 'k', 'P'},
259 {GDK_Next, 'k', 'N'},
260 {GDK_Print, '%', '9'},
261 /* Keypad keys: */
262 {GDK_KP_Left, 'k', 'l'},
263 {GDK_KP_Right, 'k', 'r'},
264 {GDK_KP_Up, 'k', 'u'},
265 {GDK_KP_Down, 'k', 'd'},
266 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
267 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
268 {GDK_KP_Home, 'K', '1'},
269 {GDK_KP_End, 'K', '4'},
270 {GDK_KP_Prior, 'K', '3'}, /* page up */
271 {GDK_KP_Next, 'K', '5'}, /* page down */
273 {GDK_KP_Add, 'K', '6'},
274 {GDK_KP_Subtract, 'K', '7'},
275 {GDK_KP_Divide, 'K', '8'},
276 {GDK_KP_Multiply, 'K', '9'},
277 {GDK_KP_Enter, 'K', 'A'},
278 {GDK_KP_Decimal, 'K', 'B'},
280 {GDK_KP_0, 'K', 'C'},
281 {GDK_KP_1, 'K', 'D'},
282 {GDK_KP_2, 'K', 'E'},
283 {GDK_KP_3, 'K', 'F'},
284 {GDK_KP_4, 'K', 'G'},
285 {GDK_KP_5, 'K', 'H'},
286 {GDK_KP_6, 'K', 'I'},
287 {GDK_KP_7, 'K', 'J'},
288 {GDK_KP_8, 'K', 'K'},
289 {GDK_KP_9, 'K', 'L'},
291 /* End of list marker: */
292 {0, 0, 0}
296 * Flags for command line options table below.
298 #define ARG_FONT 1
299 #define ARG_GEOMETRY 2
300 #define ARG_REVERSE 3
301 #define ARG_NOREVERSE 4
302 #define ARG_BACKGROUND 5
303 #define ARG_FOREGROUND 6
304 #define ARG_ICONIC 7
305 #define ARG_ROLE 8
306 #define ARG_NETBEANS 9
307 #define ARG_XRM 10 /* ignored */
308 #define ARG_MENUFONT 11 /* ignored */
309 #define ARG_INDEX_MASK 0x00ff
310 #define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */
311 #define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */
312 #define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */
313 #define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */
314 #define ARG_KEEP 0x1000 /* don't remove argument from argv[] */
317 * This table holds all the X GUI command line options allowed. This includes
318 * the standard ones so that we can skip them when Vim is started without the
319 * GUI (but the GUI might start up later).
321 * When changing this, also update doc/gui_x11.txt and the usage message!!!
323 typedef struct
325 const char *name;
326 unsigned int flags;
328 cmdline_option_T;
330 static const cmdline_option_T cmdline_options[] =
332 /* We handle these options ourselves */
333 {"-fn", ARG_FONT|ARG_HAS_VALUE},
334 {"-font", ARG_FONT|ARG_HAS_VALUE},
335 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE},
336 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE},
337 {"-rv", ARG_REVERSE},
338 {"-reverse", ARG_REVERSE},
339 {"+rv", ARG_NOREVERSE},
340 {"+reverse", ARG_NOREVERSE},
341 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE},
342 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE},
343 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE},
344 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE},
345 {"-iconic", ARG_ICONIC},
346 #ifdef HAVE_GTK2
347 {"--role", ARG_ROLE|ARG_HAS_VALUE},
348 #endif
349 #ifdef FEAT_NETBEANS_INTG
350 {"-nb", ARG_NETBEANS}, /* non-standard value format */
351 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */
352 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
353 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
354 #endif
355 #if 0 /* not implemented; these arguments don't make sense for GTK+ */
356 {"-boldfont", ARG_HAS_VALUE},
357 {"-italicfont", ARG_HAS_VALUE},
358 {"-bw", ARG_HAS_VALUE},
359 {"-borderwidth", ARG_HAS_VALUE},
360 {"-sw", ARG_HAS_VALUE},
361 {"-scrollbarwidth", ARG_HAS_VALUE},
362 #endif
363 /* Arguments handled by GTK (and GNOME) internally. */
364 {"--g-fatal-warnings", ARG_FOR_GTK},
365 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
366 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
367 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
368 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
369 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE},
370 {"--sync", ARG_FOR_GTK},
371 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
372 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
373 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
374 #ifdef HAVE_GTK2
375 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE},
376 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE},
377 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE},
378 #else /* these don't seem to exist anymore */
379 {"--no-xshm", ARG_FOR_GTK},
380 {"--xim-preedit", ARG_FOR_GTK|ARG_HAS_VALUE},
381 {"--xim-status", ARG_FOR_GTK|ARG_HAS_VALUE},
382 {"--gxid_host", ARG_FOR_GTK|ARG_HAS_VALUE},
383 {"--gxid_port", ARG_FOR_GTK|ARG_HAS_VALUE},
384 #endif
385 #ifdef FEAT_GUI_GNOME
386 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE},
387 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE},
388 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE},
389 {"--sm-disable", ARG_FOR_GTK},
390 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE},
391 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE},
392 {"--oaf-private", ARG_FOR_GTK},
393 {"--enable-sound", ARG_FOR_GTK},
394 {"--disable-sound", ARG_FOR_GTK},
395 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE},
396 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI},
397 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP},
398 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI},
399 # if 0 /* conflicts with Vim's own --version argument */
400 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI},
401 # endif
402 {"--disable-crash-dialog", ARG_FOR_GTK},
403 #endif
404 {NULL, 0}
407 static int gui_argc = 0;
408 static char **gui_argv = NULL;
410 #ifdef HAVE_GTK2
411 static const char *role_argument = NULL;
412 #endif
413 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
414 static const char *restart_command = NULL;
415 #endif
416 static int found_iconic_arg = FALSE;
418 #ifdef FEAT_GUI_GNOME
420 * Can't use Gnome if --socketid given
422 static int using_gnome = 0;
423 #else
424 # define using_gnome 0
425 #endif
428 * Parse the GUI related command-line arguments. Any arguments used are
429 * deleted from argv, and *argc is decremented accordingly. This is called
430 * when vim is started, whether or not the GUI has been started.
432 void
433 gui_mch_prepare(int *argc, char **argv)
435 const cmdline_option_T *option;
436 int i = 0;
437 int len = 0;
439 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
441 * Determine the command used to invoke Vim, to be passed as restart
442 * command to the session manager. If argv[0] contains any directory
443 * components try building an absolute path, otherwise leave it as is.
445 restart_command = argv[0];
447 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
449 char_u buf[MAXPATHL];
451 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
452 /* Tiny leak; doesn't matter, and usually we don't even get here */
453 restart_command = (char *)vim_strsave(buf);
455 #endif
458 * Move all the entries in argv which are relevant to GTK+ and GNOME
459 * into gui_argv. Freed later in gui_mch_init().
461 gui_argc = 0;
462 gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *)));
464 g_return_if_fail(gui_argv != NULL);
466 gui_argv[gui_argc++] = argv[i++];
468 while (i < *argc)
470 /* Don't waste CPU cycles on non-option arguments. */
471 if (argv[i][0] != '-' && argv[i][0] != '+')
473 ++i;
474 continue;
477 /* Look for argv[i] in cmdline_options[] table. */
478 for (option = &cmdline_options[0]; option->name != NULL; ++option)
480 len = strlen(option->name);
482 if (strncmp(argv[i], option->name, len) == 0)
484 if (argv[i][len] == '\0')
485 break;
486 /* allow --foo=bar style */
487 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
488 break;
489 #ifdef FEAT_NETBEANS_INTG
490 /* darn, -nb has non-standard syntax */
491 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
492 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
493 break;
494 #endif
496 else if ((option->flags & ARG_COMPAT_LONG)
497 && strcmp(argv[i], option->name + 1) == 0)
499 /* Replace the standard X arguments "-name" and "-display"
500 * with their GNU-style long option counterparts. */
501 argv[i] = (char *)option->name;
502 break;
505 if (option->name == NULL) /* no match */
507 ++i;
508 continue;
511 if (option->flags & ARG_FOR_GTK)
513 /* Move the argument into gui_argv, which
514 * will later be passed to gtk_init_check() */
515 gui_argv[gui_argc++] = argv[i];
517 else
519 char *value = NULL;
521 /* Extract the option's value if there is one.
522 * Accept both "--foo bar" and "--foo=bar" style. */
523 if (option->flags & ARG_HAS_VALUE)
525 if (argv[i][len] == '=')
526 value = &argv[i][len + 1];
527 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
528 value = argv[i + 1];
531 /* Check for options handled by Vim itself */
532 switch (option->flags & ARG_INDEX_MASK)
534 case ARG_REVERSE:
535 found_reverse_arg = TRUE;
536 break;
537 case ARG_NOREVERSE:
538 found_reverse_arg = FALSE;
539 break;
540 case ARG_FONT:
541 font_argument = value;
542 break;
543 case ARG_GEOMETRY:
544 if (value != NULL)
545 gui.geom = vim_strsave((char_u *)value);
546 break;
547 case ARG_BACKGROUND:
548 background_argument = value;
549 break;
550 case ARG_FOREGROUND:
551 foreground_argument = value;
552 break;
553 case ARG_ICONIC:
554 found_iconic_arg = TRUE;
555 break;
556 #ifdef HAVE_GTK2
557 case ARG_ROLE:
558 role_argument = value; /* used later in gui_mch_open() */
559 break;
560 #endif
561 #ifdef FEAT_NETBEANS_INTG
562 case ARG_NETBEANS:
563 ++usingNetbeans;
564 gui.dofork = FALSE; /* don't fork() when starting GUI */
565 netbeansArg = argv[i];
566 break;
567 #endif
568 default:
569 break;
573 /* These arguments make gnome_program_init() print a message and exit.
574 * Must start the GUI for this, otherwise ":gui" will exit later! */
575 if (option->flags & ARG_NEEDS_GUI)
576 gui.starting = TRUE;
578 if (option->flags & ARG_KEEP)
579 ++i;
580 else
582 /* Remove the flag from the argument vector. */
583 if (--*argc > i)
585 int n_strip = 1;
587 /* Move the argument's value as well, if there is one. */
588 if ((option->flags & ARG_HAS_VALUE)
589 && argv[i][len] != '='
590 && strcmp(argv[i + 1], "--") != 0)
592 ++n_strip;
593 --*argc;
594 if (option->flags & ARG_FOR_GTK)
595 gui_argv[gui_argc++] = argv[i + 1];
598 if (*argc > i)
599 mch_memmove(&argv[i], &argv[i + n_strip],
600 (*argc - i) * sizeof(char *));
602 argv[*argc] = NULL;
606 gui_argv[gui_argc] = NULL;
609 #if defined(EXITFREE) || defined(PROTO)
610 void
611 gui_mch_free_all()
613 vim_free(gui_argv);
615 #endif
618 * This should be maybe completely removed.
619 * Doesn't seem possible, since check_copy_area() relies on
620 * this information. --danielk
622 static gint
623 visibility_event(GtkWidget *widget UNUSED,
624 GdkEventVisibility *event,
625 gpointer data UNUSED)
627 gui.visibility = event->state;
629 * When we do an gdk_window_copy_area(), and the window is partially
630 * obscured, we want to receive an event to tell us whether it worked
631 * or not.
633 if (gui.text_gc != NULL)
634 gdk_gc_set_exposures(gui.text_gc,
635 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
636 return FALSE;
640 * Redraw the corresponding portions of the screen.
642 static gint
643 expose_event(GtkWidget *widget UNUSED,
644 GdkEventExpose *event,
645 gpointer data UNUSED)
647 /* Skip this when the GUI isn't set up yet, will redraw later. */
648 if (gui.starting)
649 return FALSE;
651 out_flush(); /* make sure all output has been processed */
652 gui_redraw(event->area.x, event->area.y,
653 event->area.width, event->area.height);
655 /* Clear the border areas if needed */
656 if (event->area.x < FILL_X(0))
657 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
658 if (event->area.y < FILL_Y(0))
659 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
660 if (event->area.x > FILL_X(Columns))
661 gdk_window_clear_area(gui.drawarea->window,
662 FILL_X((int)Columns), 0, 0, 0);
663 if (event->area.y > FILL_Y(Rows))
664 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
666 return FALSE;
669 #ifdef FEAT_CLIENTSERVER
671 * Handle changes to the "Comm" property
673 static gint
674 property_event(GtkWidget *widget,
675 GdkEventProperty *event,
676 gpointer data UNUSED)
678 if (event->type == GDK_PROPERTY_NOTIFY
679 && event->state == (int)GDK_PROPERTY_NEW_VALUE
680 && GDK_WINDOW_XWINDOW(event->window) == commWindow
681 && GET_X_ATOM(event->atom) == commProperty)
683 XEvent xev;
685 /* Translate to XLib */
686 xev.xproperty.type = PropertyNotify;
687 xev.xproperty.atom = commProperty;
688 xev.xproperty.window = commWindow;
689 xev.xproperty.state = PropertyNewValue;
690 serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev);
692 if (gtk_main_level() > 0)
693 gtk_main_quit();
695 return FALSE;
697 #endif
700 /****************************************************************************
701 * Focus handlers:
706 * This is a simple state machine:
707 * BLINK_NONE not blinking at all
708 * BLINK_OFF blinking, cursor is not shown
709 * BLINK_ON blinking, cursor is shown
712 #define BLINK_NONE 0
713 #define BLINK_OFF 1
714 #define BLINK_ON 2
716 static int blink_state = BLINK_NONE;
717 static long_u blink_waittime = 700;
718 static long_u blink_ontime = 400;
719 static long_u blink_offtime = 250;
720 static guint blink_timer = 0;
722 void
723 gui_mch_set_blinking(long waittime, long on, long off)
725 blink_waittime = waittime;
726 blink_ontime = on;
727 blink_offtime = off;
731 * Stop the cursor blinking. Show the cursor if it wasn't shown.
733 void
734 gui_mch_stop_blink(void)
736 if (blink_timer)
738 gtk_timeout_remove(blink_timer);
739 blink_timer = 0;
741 if (blink_state == BLINK_OFF)
742 gui_update_cursor(TRUE, FALSE);
743 blink_state = BLINK_NONE;
746 static gint
747 blink_cb(gpointer data UNUSED)
749 if (blink_state == BLINK_ON)
751 gui_undraw_cursor();
752 blink_state = BLINK_OFF;
753 blink_timer = gtk_timeout_add((guint32)blink_offtime,
754 (GtkFunction) blink_cb, NULL);
756 else
758 gui_update_cursor(TRUE, FALSE);
759 blink_state = BLINK_ON;
760 blink_timer = gtk_timeout_add((guint32)blink_ontime,
761 (GtkFunction) blink_cb, NULL);
764 return FALSE; /* don't happen again */
768 * Start the cursor blinking. If it was already blinking, this restarts the
769 * waiting time and shows the cursor.
771 void
772 gui_mch_start_blink(void)
774 if (blink_timer)
775 gtk_timeout_remove(blink_timer);
776 /* Only switch blinking on if none of the times is zero */
777 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
779 blink_timer = gtk_timeout_add((guint32)blink_waittime,
780 (GtkFunction) blink_cb, NULL);
781 blink_state = BLINK_ON;
782 gui_update_cursor(TRUE, FALSE);
786 static gint
787 enter_notify_event(GtkWidget *widget UNUSED,
788 GdkEventCrossing *event UNUSED,
789 gpointer data UNUSED)
791 if (blink_state == BLINK_NONE)
792 gui_mch_start_blink();
794 /* make sure keyboard input goes there */
795 if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea))
796 gtk_widget_grab_focus(gui.drawarea);
798 return FALSE;
801 static gint
802 leave_notify_event(GtkWidget *widget UNUSED,
803 GdkEventCrossing *event UNUSED,
804 gpointer data UNUSED)
806 if (blink_state != BLINK_NONE)
807 gui_mch_stop_blink();
809 return FALSE;
812 static gint
813 focus_in_event(GtkWidget *widget,
814 GdkEventFocus *event UNUSED,
815 gpointer data UNUSED)
817 gui_focus_change(TRUE);
819 if (blink_state == BLINK_NONE)
820 gui_mch_start_blink();
822 /* make sure keyboard input goes to the draw area (if this is focus for a
823 * window) */
824 if (widget != gui.drawarea)
825 gtk_widget_grab_focus(gui.drawarea);
827 /* make sure the input buffer is read */
828 if (gtk_main_level() > 0)
829 gtk_main_quit();
831 return TRUE;
834 static gint
835 focus_out_event(GtkWidget *widget UNUSED,
836 GdkEventFocus *event UNUSED,
837 gpointer data UNUSED)
839 gui_focus_change(FALSE);
841 if (blink_state != BLINK_NONE)
842 gui_mch_stop_blink();
844 /* make sure the input buffer is read */
845 if (gtk_main_level() > 0)
846 gtk_main_quit();
848 return TRUE;
852 #ifdef HAVE_GTK2
854 * Translate a GDK key value to UTF-8 independently of the current locale.
855 * The output is written to string, which must have room for at least 6 bytes
856 * plus the NUL terminator. Returns the length in bytes.
858 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
859 * of GdkEventKey::string instead. But event->string is evil; see here why:
860 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
862 static int
863 keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
865 int len;
866 guint32 uc;
868 uc = gdk_keyval_to_unicode(keyval);
869 if (uc != 0)
871 /* Check for CTRL-foo */
872 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
874 /* These mappings look arbitrary at the first glance, but in fact
875 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
876 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
877 * more sense and is consistent with usual terminal behaviour). */
878 if (uc >= '@')
879 string[0] = uc & 0x1F;
880 else if (uc == '2')
881 string[0] = NUL;
882 else if (uc >= '3' && uc <= '7')
883 string[0] = uc ^ 0x28;
884 else if (uc == '8')
885 string[0] = BS;
886 else if (uc == '?')
887 string[0] = DEL;
888 else
889 string[0] = uc;
890 len = 1;
892 else
894 /* Translate a normal key to UTF-8. This doesn't work for dead
895 * keys of course, you _have_ to use an input method for that. */
896 len = utf_char2bytes((int)uc, string);
899 else
901 /* Translate keys which are represented by ASCII control codes in Vim.
902 * There are only a few of those; most control keys are translated to
903 * special terminal-like control sequences. */
904 len = 1;
905 switch (keyval)
907 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
908 string[0] = TAB;
909 break;
910 case GDK_Linefeed:
911 string[0] = NL;
912 break;
913 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
914 string[0] = CAR;
915 break;
916 case GDK_Escape:
917 string[0] = ESC;
918 break;
919 default:
920 len = 0;
921 break;
924 string[len] = NUL;
926 return len;
928 #endif /* HAVE_GTK2 */
930 static int
931 modifiers_gdk2vim(guint state)
933 int modifiers = 0;
935 if (state & GDK_SHIFT_MASK)
936 modifiers |= MOD_MASK_SHIFT;
937 if (state & GDK_CONTROL_MASK)
938 modifiers |= MOD_MASK_CTRL;
939 if (state & GDK_MOD1_MASK)
940 modifiers |= MOD_MASK_ALT;
941 if (state & GDK_MOD4_MASK)
942 modifiers |= MOD_MASK_META;
944 return modifiers;
947 static int
948 modifiers_gdk2mouse(guint state)
950 int modifiers = 0;
952 if (state & GDK_SHIFT_MASK)
953 modifiers |= MOUSE_SHIFT;
954 if (state & GDK_CONTROL_MASK)
955 modifiers |= MOUSE_CTRL;
956 if (state & GDK_MOD1_MASK)
957 modifiers |= MOUSE_ALT;
959 return modifiers;
963 * Main keyboard handler:
965 static gint
966 key_press_event(GtkWidget *widget UNUSED,
967 GdkEventKey *event,
968 gpointer data UNUSED)
970 #ifdef HAVE_GTK2
971 /* 256 bytes is way over the top, but for safety let's reduce it only
972 * for GTK+ 2 where we know for sure how large the string might get.
973 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
974 char_u string[32], string2[32];
975 #else
976 char_u string[256], string2[256];
977 #endif
978 guint key_sym;
979 int len;
980 int i;
981 int modifiers;
982 int key;
983 guint state;
984 char_u *s, *d;
986 key_sym = event->keyval;
987 state = event->state;
988 #ifndef HAVE_GTK2 /* deprecated */
989 len = event->length;
990 g_assert(len <= sizeof(string));
991 #endif
993 #ifndef HAVE_GTK2
995 * It appears as if we always want to consume a key-press (there currently
996 * aren't any 'return FALSE's), so we always do this: when running in a
997 * GtkPlug and not a window, we must prevent emission of the key_press
998 * EVENT from continuing (which is 'beyond' the level of stopping mere
999 * signals by returning FALSE), otherwise things like tab/cursor-keys are
1000 * processed by the GtkPlug default handler, which moves input focus away
1001 * from us!
1002 * Note: This should no longer be necessary with GTK+ 2.
1004 if (gtk_socket_id != 0)
1005 gtk_signal_emit_stop_by_name(GTK_OBJECT(widget), "key_press_event");
1006 #endif
1008 #ifdef FEAT_XIM
1009 if (xim_queue_key_press_event(event, TRUE))
1010 return TRUE;
1011 #endif
1013 #ifdef FEAT_HANGULIN
1014 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1016 hangul_input_state_toggle();
1017 return TRUE;
1019 #endif
1021 #ifdef SunXK_F36
1023 * These keys have bogus lookup strings, and trapping them here is
1024 * easier than trying to XRebindKeysym() on them with every possible
1025 * combination of modifiers.
1027 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1028 len = 0;
1029 else
1030 #endif
1032 #ifdef HAVE_GTK2
1033 len = keyval_to_string(key_sym, state, string2);
1035 /* Careful: convert_input() doesn't handle the NUL character.
1036 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1037 if (len > 1 && input_conv.vc_type != CONV_NONE)
1038 len = convert_input(string2, len, sizeof(string2));
1040 s = string2;
1041 #else
1042 # ifdef FEAT_MBYTE
1043 if (input_conv.vc_type != CONV_NONE)
1045 mch_memmove(string2, event->string, len);
1046 len = convert_input(string2, len, sizeof(string2));
1047 s = string2;
1049 else
1050 # endif
1051 s = (char_u *)event->string;
1052 #endif
1054 d = string;
1055 for (i = 0; i < len; ++i)
1057 *d++ = s[i];
1058 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1060 /* Turn CSI into K_CSI. */
1061 *d++ = KS_EXTRA;
1062 *d++ = (int)KE_CSI;
1065 len = d - string;
1068 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1069 if (key_sym == GDK_ISO_Left_Tab)
1071 key_sym = GDK_Tab;
1072 state |= GDK_SHIFT_MASK;
1075 #ifndef HAVE_GTK2 /* for GTK+ 2, we handle this in keyval_to_string() */
1076 if ((key_sym == GDK_2 || key_sym == GDK_at) && (state & GDK_CONTROL_MASK))
1078 string[0] = NUL; /* CTRL-2 and CTRL-@ is NUL */
1079 len = 1;
1081 else if (len == 0 && (key_sym == GDK_space || key_sym == GDK_Tab))
1083 /* When there are modifiers, these keys get zero length; we need the
1084 * original key here to be able to add a modifier below. */
1085 string[0] = (key_sym & 0xff);
1086 len = 1;
1088 #endif
1090 #ifdef FEAT_MENU
1091 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1092 * is a menu shortcut, we ignore everything with the ALT modifier. */
1093 if ((state & GDK_MOD1_MASK)
1094 && gui.menu_is_active
1095 && (*p_wak == 'y'
1096 || (*p_wak == 'm'
1097 && len == 1
1098 && gui_is_menu_shortcut(string[0]))))
1099 # ifdef HAVE_GTK2
1100 /* For GTK2 we return false to signify that we haven't handled the
1101 * keypress, so that gtk will handle the mnemonic or accelerator. */
1102 return FALSE;
1103 # else
1104 return TRUE;
1105 # endif
1106 #endif
1108 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1109 * that already has the 8th bit set.
1110 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1111 * Don't do this for double-byte encodings, it turns the char into a lead
1112 * byte. */
1113 if (len == 1
1114 && (state & GDK_MOD1_MASK)
1115 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1116 && (string[0] & 0x80) == 0
1117 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
1118 #ifdef FEAT_MBYTE
1119 && !enc_dbcs
1120 #endif
1123 string[0] |= 0x80;
1124 state &= ~GDK_MOD1_MASK; /* don't use it again */
1125 #ifdef FEAT_MBYTE
1126 if (enc_utf8) /* convert to utf-8 */
1128 string[1] = string[0] & 0xbf;
1129 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1130 if (string[1] == CSI)
1132 string[2] = KS_EXTRA;
1133 string[3] = (int)KE_CSI;
1134 len = 4;
1136 else
1137 len = 2;
1139 #endif
1142 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1143 * value) to detect backspace, delete and keypad keys. */
1144 if (len == 0 || len == 1)
1146 for (i = 0; special_keys[i].key_sym != 0; i++)
1148 if (special_keys[i].key_sym == key_sym)
1150 string[0] = CSI;
1151 string[1] = special_keys[i].code0;
1152 string[2] = special_keys[i].code1;
1153 len = -3;
1154 break;
1159 if (len == 0) /* Unrecognized key */
1160 return TRUE;
1162 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) && !defined(HAVE_GTK2)
1163 /* Cancel or type backspace. For GTK2, im_commit_cb() does the same. */
1164 preedit_start_col = MAXCOL;
1165 xim_changed_while_preediting = TRUE;
1166 #endif
1168 /* Special keys (and a few others) may have modifiers. Also when using a
1169 * double-byte encoding (can't set the 8th bit). */
1170 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1171 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1172 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1173 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
1174 #ifdef FEAT_MBYTE
1175 || (enc_dbcs && len == 1 && (state & GDK_MOD1_MASK))
1176 #endif
1179 modifiers = modifiers_gdk2vim(state);
1182 * For some keys a shift modifier is translated into another key
1183 * code.
1185 if (len == -3)
1186 key = TO_SPECIAL(string[1], string[2]);
1187 else
1188 key = string[0];
1190 key = simplify_key(key, &modifiers);
1191 if (key == CSI)
1192 key = K_CSI;
1193 if (IS_SPECIAL(key))
1195 string[0] = CSI;
1196 string[1] = K_SECOND(key);
1197 string[2] = K_THIRD(key);
1198 len = 3;
1200 else
1202 string[0] = key;
1203 len = 1;
1206 if (modifiers != 0)
1208 string2[0] = CSI;
1209 string2[1] = KS_MODIFIER;
1210 string2[2] = modifiers;
1211 add_to_input_buf(string2, 3);
1215 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1216 || (string[0] == intr_char && intr_char != Ctrl_C)))
1218 trash_input_buf();
1219 got_int = TRUE;
1222 add_to_input_buf(string, len);
1224 /* blank out the pointer if necessary */
1225 if (p_mh)
1226 gui_mch_mousehide(TRUE);
1228 if (gtk_main_level() > 0)
1229 gtk_main_quit();
1231 return TRUE;
1234 #if defined(FEAT_XIM) && defined(HAVE_GTK2)
1235 static gboolean
1236 key_release_event(GtkWidget *widget UNUSED,
1237 GdkEventKey *event,
1238 gpointer data UNUSED)
1241 * GTK+ 2 input methods may do fancy stuff on key release events too.
1242 * With the default IM for instance, you can enter any UCS code point
1243 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1245 return xim_queue_key_press_event(event, FALSE);
1247 #endif
1250 /****************************************************************************
1251 * Selection handlers:
1254 static gint
1255 selection_clear_event(GtkWidget *widget UNUSED,
1256 GdkEventSelection *event,
1257 gpointer user_data UNUSED)
1259 if (event->selection == clip_plus.gtk_sel_atom)
1260 clip_lose_selection(&clip_plus);
1261 else
1262 clip_lose_selection(&clip_star);
1264 if (gtk_main_level() > 0)
1265 gtk_main_quit();
1267 return TRUE;
1270 #define RS_NONE 0 /* selection_received_cb() not called yet */
1271 #define RS_OK 1 /* selection_received_cb() called and OK */
1272 #define RS_FAIL 2 /* selection_received_cb() called and failed */
1273 static int received_selection = RS_NONE;
1275 static void
1276 selection_received_cb(GtkWidget *widget UNUSED,
1277 GtkSelectionData *data,
1278 guint time_ UNUSED,
1279 gpointer user_data UNUSED)
1281 VimClipboard *cbd;
1282 char_u *text;
1283 char_u *tmpbuf = NULL;
1284 #ifdef HAVE_GTK2
1285 guchar *tmpbuf_utf8 = NULL;
1286 #endif
1287 int len;
1288 int motion_type;
1290 if (data->selection == clip_plus.gtk_sel_atom)
1291 cbd = &clip_plus;
1292 else
1293 cbd = &clip_star;
1295 text = (char_u *)data->data;
1296 len = data->length;
1297 motion_type = MCHAR;
1299 if (text == NULL || len <= 0)
1301 received_selection = RS_FAIL;
1302 /* clip_free_selection(cbd); ??? */
1304 if (gtk_main_level() > 0)
1305 gtk_main_quit();
1307 return;
1310 if (data->type == vim_atom)
1312 motion_type = *text++;
1313 --len;
1316 #ifdef FEAT_MBYTE
1317 else if (data->type == vimenc_atom)
1319 char_u *enc;
1320 vimconv_T conv;
1322 motion_type = *text++;
1323 --len;
1325 enc = text;
1326 text += STRLEN(text) + 1;
1327 len -= text - enc;
1329 /* If the encoding of the text is different from 'encoding', attempt
1330 * converting it. */
1331 conv.vc_type = CONV_NONE;
1332 convert_setup(&conv, enc, p_enc);
1333 if (conv.vc_type != CONV_NONE)
1335 tmpbuf = string_convert(&conv, text, &len);
1336 if (tmpbuf != NULL)
1337 text = tmpbuf;
1338 convert_setup(&conv, NULL, NULL);
1341 #endif
1343 #ifdef HAVE_GTK2
1344 /* gtk_selection_data_get_text() handles all the nasty details
1345 * and targets and encodings etc. This rocks so hard. */
1346 else
1348 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1349 if (tmpbuf_utf8 != NULL)
1351 len = STRLEN(tmpbuf_utf8);
1352 if (input_conv.vc_type != CONV_NONE)
1354 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1355 if (tmpbuf != NULL)
1356 text = tmpbuf;
1358 else
1359 text = tmpbuf_utf8;
1362 #else /* !HAVE_GTK2 */
1363 # ifdef FEAT_MBYTE
1364 else if (data->type == utf8_string_atom)
1366 vimconv_T conv;
1368 conv.vc_type = CONV_NONE;
1369 convert_setup(&conv, (char_u *)"utf-8", p_enc);
1371 if (conv.vc_type != CONV_NONE)
1373 tmpbuf = string_convert(&conv, text, &len);
1374 convert_setup(&conv, NULL, NULL);
1376 if (tmpbuf != NULL)
1377 text = tmpbuf;
1379 # endif
1380 else if (data->type == compound_text_atom || data->type == text_atom)
1382 char **list = NULL;
1383 int count;
1384 int i;
1385 unsigned tmplen = 0;
1387 count = gdk_text_property_to_text_list(data->type, data->format,
1388 data->data, data->length,
1389 &list);
1390 for (i = 0; i < count; ++i)
1391 tmplen += strlen(list[i]);
1393 tmpbuf = alloc(tmplen + 1);
1394 if (tmpbuf != NULL)
1396 tmpbuf[0] = NUL;
1397 for (i = 0; i < count; ++i)
1398 STRCAT(tmpbuf, list[i]);
1399 text = tmpbuf;
1400 len = tmplen;
1403 if (list != NULL)
1404 gdk_free_text_list(list);
1406 #endif /* !HAVE_GTK2 */
1408 clip_yank_selection(motion_type, text, (long)len, cbd);
1409 received_selection = RS_OK;
1410 vim_free(tmpbuf);
1411 #ifdef HAVE_GTK2
1412 g_free(tmpbuf_utf8);
1413 #endif
1415 if (gtk_main_level() > 0)
1416 gtk_main_quit();
1420 * Prepare our selection data for passing it to the external selection
1421 * client.
1423 static void
1424 selection_get_cb(GtkWidget *widget UNUSED,
1425 GtkSelectionData *selection_data,
1426 guint info,
1427 guint time_ UNUSED,
1428 gpointer user_data UNUSED)
1430 char_u *string;
1431 char_u *tmpbuf;
1432 long_u tmplen;
1433 int length;
1434 int motion_type;
1435 GdkAtom type;
1436 VimClipboard *cbd;
1438 if (selection_data->selection == clip_plus.gtk_sel_atom)
1439 cbd = &clip_plus;
1440 else
1441 cbd = &clip_star;
1443 if (!cbd->owned)
1444 return; /* Shouldn't ever happen */
1446 if (info != (guint)TARGET_STRING
1447 #ifdef FEAT_MBYTE
1448 && info != (guint)TARGET_UTF8_STRING
1449 && info != (guint)TARGET_VIMENC
1450 #endif
1451 && info != (guint)TARGET_VIM
1452 && info != (guint)TARGET_COMPOUND_TEXT
1453 && info != (guint)TARGET_TEXT)
1454 return;
1456 /* get the selection from the '*'/'+' register */
1457 clip_get_selection(cbd);
1459 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1460 if (motion_type < 0 || string == NULL)
1461 return;
1462 /* Due to int arguments we can't handle more than G_MAXINT. Also
1463 * reserve one extra byte for NUL or the motion type; just in case.
1464 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1465 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1467 if (info == (guint)TARGET_VIM)
1469 tmpbuf = alloc((unsigned)length + 1);
1470 if (tmpbuf != NULL)
1472 tmpbuf[0] = motion_type;
1473 mch_memmove(tmpbuf + 1, string, (size_t)length);
1475 /* For our own format, the first byte contains the motion type */
1476 ++length;
1477 vim_free(string);
1478 string = tmpbuf;
1479 type = vim_atom;
1482 #ifdef FEAT_MBYTE
1483 else if (info == (guint)TARGET_VIMENC)
1485 int l = STRLEN(p_enc);
1487 /* contents: motion_type 'encoding' NUL text */
1488 tmpbuf = alloc((unsigned)length + l + 2);
1489 if (tmpbuf != NULL)
1491 tmpbuf[0] = motion_type;
1492 STRCPY(tmpbuf + 1, p_enc);
1493 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
1495 length += l + 2;
1496 vim_free(string);
1497 string = tmpbuf;
1498 type = vimenc_atom;
1500 #endif
1502 #ifdef HAVE_GTK2
1503 /* gtk_selection_data_set_text() handles everything for us. This is
1504 * so easy and simple and cool, it'd be insane not to use it. */
1505 else
1507 if (output_conv.vc_type != CONV_NONE)
1509 tmpbuf = string_convert(&output_conv, string, &length);
1510 vim_free(string);
1511 if (tmpbuf == NULL)
1512 return;
1513 string = tmpbuf;
1515 /* Validate the string to avoid runtime warnings */
1516 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1518 gtk_selection_data_set_text(selection_data,
1519 (const char *)string, length);
1521 vim_free(string);
1522 return;
1524 #else /* !HAVE_GTK2 */
1525 # ifdef FEAT_MBYTE
1526 else if (info == (guint)TARGET_UTF8_STRING)
1528 vimconv_T conv;
1530 conv.vc_type = CONV_NONE;
1531 convert_setup(&conv, p_enc, (char_u *)"utf-8");
1533 if (conv.vc_type != CONV_NONE)
1535 tmpbuf = string_convert(&conv, string, &length);
1536 convert_setup(&conv, NULL, NULL);
1537 vim_free(string);
1538 string = tmpbuf;
1540 type = utf8_string_atom;
1542 # endif
1543 else if (info == (guint)TARGET_COMPOUND_TEXT
1544 || info == (guint)TARGET_TEXT)
1546 int format;
1548 /* Copy the string to ensure NUL-termination */
1549 tmpbuf = vim_strnsave(string, length);
1550 vim_free(string);
1551 if (tmpbuf != NULL)
1553 gdk_string_to_compound_text((const char *)tmpbuf,
1554 &type, &format, &string, &length);
1555 vim_free(tmpbuf);
1556 selection_data->type = type;
1557 selection_data->format = format;
1558 gtk_selection_data_set(selection_data, type, format, string, length);
1559 gdk_free_compound_text(string);
1561 return;
1563 else
1565 type = GDK_TARGET_STRING;
1567 #endif /* !HAVE_GTK2 */
1569 if (string != NULL)
1571 selection_data->type = selection_data->target;
1572 selection_data->format = 8; /* 8 bits per char */
1574 gtk_selection_data_set(selection_data, type, 8, string, length);
1575 vim_free(string);
1580 * Check if the GUI can be started. Called before gvimrc is sourced.
1581 * Return OK or FAIL.
1584 gui_mch_init_check(void)
1586 #ifndef HAVE_GTK2
1587 /* This is needed to make the locale handling consistent between the GUI
1588 * and the rest of VIM. */
1589 gtk_set_locale();
1590 #endif
1592 #ifdef FEAT_GUI_GNOME
1593 if (gtk_socket_id == 0)
1594 using_gnome = 1;
1595 #endif
1597 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1598 if (!gtk_init_check(&gui_argc, &gui_argv))
1600 gui.dying = TRUE;
1601 EMSG(_((char *)e_opendisp));
1602 return FAIL;
1605 return OK;
1609 /****************************************************************************
1610 * Mouse handling callbacks
1614 static guint mouse_click_timer = 0;
1615 static int mouse_timed_out = TRUE;
1618 * Timer used to recognize multiple clicks of the mouse button
1620 static gint
1621 mouse_click_timer_cb(gpointer data)
1623 /* we don't use this information currently */
1624 int *timed_out = (int *) data;
1626 *timed_out = TRUE;
1627 return FALSE; /* don't happen again */
1630 static guint motion_repeat_timer = 0;
1631 static int motion_repeat_offset = FALSE;
1632 static gint motion_repeat_timer_cb(gpointer);
1634 static void
1635 process_motion_notify(int x, int y, GdkModifierType state)
1637 int button;
1638 int_u vim_modifiers;
1640 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1641 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1642 GDK_BUTTON5_MASK))
1643 ? MOUSE_DRAG : ' ';
1645 /* If our pointer is currently hidden, then we should show it. */
1646 gui_mch_mousehide(FALSE);
1648 /* Just moving the rodent above the drawing area without any button
1649 * being pressed. */
1650 if (button != MOUSE_DRAG)
1652 gui_mouse_moved(x, y);
1653 return;
1656 /* translate modifier coding between the main engine and GTK */
1657 vim_modifiers = modifiers_gdk2mouse(state);
1659 /* inform the editor engine about the occurrence of this event */
1660 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1662 if (gtk_main_level() > 0)
1663 gtk_main_quit();
1666 * Auto repeat timer handling.
1668 if (x < 0 || y < 0
1669 || x >= gui.drawarea->allocation.width
1670 || y >= gui.drawarea->allocation.height)
1673 int dx;
1674 int dy;
1675 int offshoot;
1676 int delay = 10;
1678 /* Calculate the maximal distance of the cursor from the drawing area.
1679 * (offshoot can't become negative here!).
1681 dx = x < 0 ? -x : x - gui.drawarea->allocation.width;
1682 dy = y < 0 ? -y : y - gui.drawarea->allocation.height;
1684 offshoot = dx > dy ? dx : dy;
1686 /* Make a linearly decaying timer delay with a threshold of 5 at a
1687 * distance of 127 pixels from the main window.
1689 * One could think endlessly about the most ergonomic variant here.
1690 * For example it could make sense to calculate the distance from the
1691 * drags start instead...
1693 * Maybe a parabolic interpolation would suite us better here too...
1695 if (offshoot > 127)
1697 /* 5 appears to be somehow near to my perceptual limits :-). */
1698 delay = 5;
1700 else
1702 delay = (130 * (127 - offshoot)) / 127 + 5;
1705 /* shoot again */
1706 if (!motion_repeat_timer)
1707 motion_repeat_timer = gtk_timeout_add((guint32)delay,
1708 motion_repeat_timer_cb, NULL);
1713 * Timer used to recognize multiple clicks of the mouse button.
1715 static gint
1716 motion_repeat_timer_cb(gpointer data UNUSED)
1718 int x;
1719 int y;
1720 GdkModifierType state;
1722 gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state);
1724 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1725 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1726 GDK_BUTTON5_MASK)))
1728 motion_repeat_timer = 0;
1729 return FALSE;
1732 /* If there already is a mouse click in the input buffer, wait another
1733 * time (otherwise we would create a backlog of clicks) */
1734 if (vim_used_in_input_buf() > 10)
1735 return TRUE;
1737 motion_repeat_timer = 0;
1740 * Fake a motion event.
1741 * Trick: Pretend the mouse moved to the next character on every other
1742 * event, otherwise drag events will be discarded, because they are still
1743 * in the same character.
1745 if (motion_repeat_offset)
1746 x += gui.char_width;
1748 motion_repeat_offset = !motion_repeat_offset;
1749 process_motion_notify(x, y, state);
1751 /* Don't happen again. We will get reinstalled in the synthetic event
1752 * if needed -- thus repeating should still work. */
1753 return FALSE;
1756 static gint
1757 motion_notify_event(GtkWidget *widget,
1758 GdkEventMotion *event,
1759 gpointer data UNUSED)
1761 if (event->is_hint)
1763 int x;
1764 int y;
1765 GdkModifierType state;
1767 gdk_window_get_pointer(widget->window, &x, &y, &state);
1768 process_motion_notify(x, y, state);
1770 else
1772 process_motion_notify((int)event->x, (int)event->y,
1773 (GdkModifierType)event->state);
1776 return TRUE; /* handled */
1781 * Mouse button handling. Note please that we are capturing multiple click's
1782 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1783 * This is due to the way the generic VIM code is recognizing multiple clicks.
1785 static gint
1786 button_press_event(GtkWidget *widget,
1787 GdkEventButton *event,
1788 gpointer data UNUSED)
1790 int button;
1791 int repeated_click = FALSE;
1792 int x, y;
1793 int_u vim_modifiers;
1795 /* Make sure we have focus now we've been selected */
1796 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
1797 gtk_widget_grab_focus(widget);
1800 * Don't let additional events about multiple clicks send by GTK to us
1801 * after the initial button press event confuse us.
1803 if (event->type != GDK_BUTTON_PRESS)
1804 return FALSE;
1806 x = event->x;
1807 y = event->y;
1809 /* Handle multiple clicks */
1810 if (!mouse_timed_out && mouse_click_timer)
1812 gtk_timeout_remove(mouse_click_timer);
1813 mouse_click_timer = 0;
1814 repeated_click = TRUE;
1817 mouse_timed_out = FALSE;
1818 mouse_click_timer = gtk_timeout_add((guint32)p_mouset,
1819 mouse_click_timer_cb, &mouse_timed_out);
1821 switch (event->button)
1823 case 1:
1824 button = MOUSE_LEFT;
1825 break;
1826 case 2:
1827 button = MOUSE_MIDDLE;
1828 break;
1829 case 3:
1830 button = MOUSE_RIGHT;
1831 break;
1832 #ifndef HAVE_GTK2
1833 case 4:
1834 button = MOUSE_4;
1835 break;
1836 case 5:
1837 button = MOUSE_5;
1838 break;
1839 #endif
1840 default:
1841 return FALSE; /* Unknown button */
1844 #ifdef FEAT_XIM
1845 /* cancel any preediting */
1846 if (im_is_preediting())
1847 xim_reset();
1848 #endif
1850 vim_modifiers = modifiers_gdk2mouse(event->state);
1852 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
1853 if (gtk_main_level() > 0)
1854 gtk_main_quit(); /* make sure the above will be handled immediately */
1856 return TRUE;
1859 #ifdef HAVE_GTK2
1861 * GTK+ 2 doesn't handle mouse buttons 4, 5, 6 and 7 the same way as GTK+ 1.
1862 * Instead, it abstracts scrolling via the new GdkEventScroll.
1864 static gboolean
1865 scroll_event(GtkWidget *widget,
1866 GdkEventScroll *event,
1867 gpointer data UNUSED)
1869 int button;
1870 int_u vim_modifiers;
1872 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
1873 gtk_widget_grab_focus(widget);
1875 switch (event->direction)
1877 case GDK_SCROLL_UP:
1878 button = MOUSE_4;
1879 break;
1880 case GDK_SCROLL_DOWN:
1881 button = MOUSE_5;
1882 break;
1883 default: /* We don't care about left and right... Yet. */
1884 return FALSE;
1887 # ifdef FEAT_XIM
1888 /* cancel any preediting */
1889 if (im_is_preediting())
1890 xim_reset();
1891 # endif
1893 vim_modifiers = modifiers_gdk2mouse(event->state);
1895 gui_send_mouse_event(button, (int)event->x, (int)event->y,
1896 FALSE, vim_modifiers);
1898 if (gtk_main_level() > 0)
1899 gtk_main_quit(); /* make sure the above will be handled immediately */
1901 return TRUE;
1903 #endif /* HAVE_GTK2 */
1906 static gint
1907 button_release_event(GtkWidget *widget UNUSED,
1908 GdkEventButton *event,
1909 gpointer data UNUSED)
1911 int x, y;
1912 int_u vim_modifiers;
1914 /* Remove any motion "machine gun" timers used for automatic further
1915 extension of allocation areas if outside of the applications window
1916 area .*/
1917 if (motion_repeat_timer)
1919 gtk_timeout_remove(motion_repeat_timer);
1920 motion_repeat_timer = 0;
1923 x = event->x;
1924 y = event->y;
1926 vim_modifiers = modifiers_gdk2mouse(event->state);
1928 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
1929 if (gtk_main_level() > 0)
1930 gtk_main_quit(); /* make sure it will be handled immediately */
1932 return TRUE;
1936 #ifdef FEAT_DND
1937 /****************************************************************************
1938 * Drag aNd Drop support handlers.
1942 * Count how many items there may be and separate them with a NUL.
1943 * Apparently the items are separated with \r\n. This is not documented,
1944 * thus be careful not to go past the end. Also allow separation with
1945 * NUL characters.
1947 static int
1948 count_and_decode_uri_list(char_u *out, char_u *raw, int len)
1950 int i;
1951 char_u *p = out;
1952 int count = 0;
1954 for (i = 0; i < len; ++i)
1956 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
1958 if (p > out && p[-1] != NUL)
1960 ++count;
1961 *p++ = NUL;
1964 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
1966 *p++ = hexhex2nr(raw + i + 1);
1967 i += 2;
1969 else
1970 *p++ = raw[i];
1972 if (p > out && p[-1] != NUL)
1974 *p = NUL; /* last item didn't have \r or \n */
1975 ++count;
1977 return count;
1981 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
1982 * this process, URI which protocol is not "file:" are removed. Return
1983 * length of array (less than "max").
1985 static int
1986 filter_uri_list(char_u **outlist, int max, char_u *src)
1988 int i, j;
1990 for (i = j = 0; i < max; ++i)
1992 outlist[i] = NULL;
1993 if (STRNCMP(src, "file:", 5) == 0)
1995 src += 5;
1996 if (STRNCMP(src, "//localhost", 11) == 0)
1997 src += 11;
1998 while (src[0] == '/' && src[1] == '/')
1999 ++src;
2000 outlist[j++] = vim_strsave(src);
2002 src += STRLEN(src) + 1;
2004 return j;
2007 static char_u **
2008 parse_uri_list(int *count, char_u *data, int len)
2010 int n = 0;
2011 char_u *tmp = NULL;
2012 char_u **array = NULL;;
2014 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
2016 n = count_and_decode_uri_list(tmp, data, len);
2017 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
2018 n = filter_uri_list(array, n, tmp);
2020 vim_free(tmp);
2021 *count = n;
2022 return array;
2025 static void
2026 drag_handle_uri_list(GdkDragContext *context,
2027 GtkSelectionData *data,
2028 guint time_,
2029 GdkModifierType state,
2030 gint x,
2031 gint y)
2033 char_u **fnames;
2034 int nfiles = 0;
2036 fnames = parse_uri_list(&nfiles, data->data, data->length);
2038 if (fnames != NULL && nfiles > 0)
2040 int_u modifiers;
2042 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2044 modifiers = modifiers_gdk2mouse(state);
2046 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2048 else
2049 vim_free(fnames);
2052 static void
2053 drag_handle_text(GdkDragContext *context,
2054 GtkSelectionData *data,
2055 guint time_,
2056 GdkModifierType state)
2058 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2059 char_u *text;
2060 int len;
2061 # ifdef FEAT_MBYTE
2062 char_u *tmpbuf = NULL;
2063 # endif
2065 text = data->data;
2066 len = data->length;
2068 # ifdef FEAT_MBYTE
2069 if (data->type == utf8_string_atom)
2071 # ifdef HAVE_GTK2
2072 if (input_conv.vc_type != CONV_NONE)
2073 tmpbuf = string_convert(&input_conv, text, &len);
2074 # else
2075 vimconv_T conv;
2077 conv.vc_type = CONV_NONE;
2078 convert_setup(&conv, (char_u *)"utf-8", p_enc);
2080 if (conv.vc_type != CONV_NONE)
2082 tmpbuf = string_convert(&conv, text, &len);
2083 convert_setup(&conv, NULL, NULL);
2085 # endif
2086 if (tmpbuf != NULL)
2087 text = tmpbuf;
2089 # endif /* FEAT_MBYTE */
2091 dnd_yank_drag_data(text, (long)len);
2092 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2093 # ifdef FEAT_MBYTE
2094 vim_free(tmpbuf);
2095 # endif
2097 dropkey[2] = modifiers_gdk2vim(state);
2099 if (dropkey[2] != 0)
2100 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2101 else
2102 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
2104 if (gtk_main_level() > 0)
2105 gtk_main_quit();
2109 * DND receiver.
2111 static void
2112 drag_data_received_cb(GtkWidget *widget,
2113 GdkDragContext *context,
2114 gint x,
2115 gint y,
2116 GtkSelectionData *data,
2117 guint info,
2118 guint time_,
2119 gpointer user_data UNUSED)
2121 GdkModifierType state;
2123 /* Guard against trash */
2124 if (data->data == NULL
2125 || data->length <= 0
2126 || data->format != 8
2127 || data->data[data->length] != '\0')
2129 gtk_drag_finish(context, FALSE, FALSE, time_);
2130 return;
2133 /* Get the current modifier state for proper distinguishment between
2134 * different operations later. */
2135 gdk_window_get_pointer(widget->window, NULL, NULL, &state);
2137 /* Not sure about the role of "text/plain" here... */
2138 if (info == (guint)TARGET_TEXT_URI_LIST)
2139 drag_handle_uri_list(context, data, time_, state, x, y);
2140 else
2141 drag_handle_text(context, data, time_, state);
2144 #endif /* FEAT_DND */
2147 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2149 * GnomeClient interact callback. Check for unsaved buffers that cannot
2150 * be abandoned and pop up a dialog asking the user for confirmation if
2151 * necessary.
2153 static void
2154 sm_client_check_changed_any(GnomeClient *client,
2155 gint key,
2156 GnomeDialogType type,
2157 gpointer data)
2159 cmdmod_T save_cmdmod;
2160 gboolean shutdown_cancelled;
2162 save_cmdmod = cmdmod;
2164 # ifdef FEAT_BROWSE
2165 cmdmod.browse = TRUE;
2166 # endif
2167 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2168 cmdmod.confirm = TRUE;
2169 # endif
2171 * If there are changed buffers, present the user with
2172 * a dialog if possible, otherwise give an error message.
2174 shutdown_cancelled = check_changed_any(FALSE);
2176 exiting = FALSE;
2177 cmdmod = save_cmdmod;
2178 setcursor(); /* position the cursor */
2179 out_flush();
2181 * If the user hit the [Cancel] button the whole shutdown
2182 * will be cancelled. Wow, quite powerful feature (:
2184 gnome_interaction_key_return(key, shutdown_cancelled);
2188 * Generate a script that can be used to restore the current editing session.
2189 * Save the value of v:this_session before running :mksession in order to make
2190 * automagic session save fully transparent. Return TRUE on success.
2192 static int
2193 write_session_file(char_u *filename)
2195 char_u *escaped_filename;
2196 char *mksession_cmdline;
2197 unsigned int save_ssop_flags;
2198 int failed;
2201 * Build an ex command line to create a script that restores the current
2202 * session if executed. Escape the filename to avoid nasty surprises.
2204 escaped_filename = vim_strsave_escaped(filename, escape_chars);
2205 if (escaped_filename == NULL)
2206 return FALSE;
2207 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename,
2208 NULL);
2209 vim_free(escaped_filename);
2212 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
2213 * unpredictable effects when the session is saved automatically. Also,
2214 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
2215 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
2216 * enormously large if the GNOME session feature is used regularly.
2218 save_ssop_flags = ssop_flags;
2219 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
2220 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
2222 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
2223 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
2224 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
2225 do_unlet((char_u *)"Save_VV_this_session", TRUE);
2227 ssop_flags = save_ssop_flags;
2228 g_free(mksession_cmdline);
2230 * Reopen the file and append a command to restore v:this_session,
2231 * as if this save never happened. This is to avoid conflicts with
2232 * the user's own sessions. FIXME: It's probably less hackish to add
2233 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
2235 if (!failed)
2237 FILE *fd;
2239 fd = open_exfile(filename, TRUE, APPENDBIN);
2241 failed = (fd == NULL
2242 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
2243 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
2245 if (fd != NULL && fclose(fd) != 0)
2246 failed = TRUE;
2248 if (failed)
2249 mch_remove(filename);
2252 return !failed;
2256 * "save_yourself" signal handler. Initiate an interaction to ask the user
2257 * for confirmation if necessary. Save the current editing session and tell
2258 * the session manager how to restart Vim.
2260 static gboolean
2261 sm_client_save_yourself(GnomeClient *client,
2262 gint phase,
2263 GnomeSaveStyle save_style,
2264 gboolean shutdown,
2265 GnomeInteractStyle interact_style,
2266 gboolean fast,
2267 gpointer data)
2269 static const char suffix[] = "-session.vim";
2270 char *session_file;
2271 unsigned int len;
2272 gboolean success;
2274 /* Always request an interaction if possible. check_changed_any()
2275 * won't actually show a dialog unless any buffers have been modified.
2276 * There doesn't seem to be an obvious way to check that without
2277 * automatically firing the dialog. Anyway, it works just fine. */
2278 if (interact_style == GNOME_INTERACT_ANY)
2279 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2280 &sm_client_check_changed_any,
2281 NULL);
2282 out_flush();
2283 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2285 /* The path is unique for each session save. We do neither know nor care
2286 * which session script will actually be used later. This decision is in
2287 * the domain of the session manager. */
2288 session_file = gnome_config_get_real_path(
2289 gnome_client_get_config_prefix(client));
2290 len = strlen(session_file);
2292 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2293 --len; /* get rid of the superfluous trailing '/' */
2295 session_file = g_renew(char, session_file, len + sizeof(suffix));
2296 memcpy(session_file + len, suffix, sizeof(suffix));
2298 success = write_session_file((char_u *)session_file);
2300 if (success)
2302 const char *argv[8];
2303 int i;
2305 /* Tell the session manager how to wipe out the stored session data.
2306 * This isn't as dangerous as it looks, don't worry :) session_file
2307 * is a unique absolute filename. Usually it'll be something like
2308 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2309 i = 0;
2310 argv[i++] = "rm";
2311 argv[i++] = session_file;
2312 argv[i] = NULL;
2314 gnome_client_set_discard_command(client, i, (char **)argv);
2316 /* Tell the session manager how to restore the just saved session.
2317 * This is easily done thanks to Vim's -S option. Pass the -f flag
2318 * since there's no need to fork -- it might even cause confusion.
2319 * Also pass the window role to give the WM something to match on.
2320 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2321 i = 0;
2322 argv[i++] = restart_command;
2323 argv[i++] = "-f";
2324 argv[i++] = "-g";
2325 # ifdef HAVE_GTK2
2326 argv[i++] = "--role";
2327 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
2328 # endif
2329 argv[i++] = "-S";
2330 argv[i++] = session_file;
2331 argv[i] = NULL;
2333 gnome_client_set_restart_command(client, i, (char **)argv);
2334 gnome_client_set_clone_command(client, 0, NULL);
2337 g_free(session_file);
2339 return success;
2343 * Called when the session manager wants us to die. There isn't much to save
2344 * here since "save_yourself" has been emitted before (unless serious trouble
2345 * is happening).
2347 static void
2348 sm_client_die(GnomeClient *client, gpointer data)
2350 /* Don't write messages to the GUI anymore */
2351 full_screen = FALSE;
2353 vim_strncpy(IObuff, (char_u *)
2354 _("Vim: Received \"die\" request from session manager\n"),
2355 IOSIZE - 1);
2356 preserve_exit();
2360 * Connect our signal handlers to be notified on session save and shutdown.
2362 static void
2363 setup_save_yourself(void)
2365 GnomeClient *client;
2367 client = gnome_master_client();
2369 if (client != NULL)
2371 /* Must use the deprecated gtk_signal_connect() for compatibility
2372 * with GNOME 1. Arrgh, zombies! */
2373 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2374 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2375 gtk_signal_connect(GTK_OBJECT(client), "die",
2376 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2380 #else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2382 # ifdef USE_XSMP
2384 * GTK tells us that XSMP needs attention
2386 static gboolean
2387 local_xsmp_handle_requests(source, condition, data)
2388 GIOChannel *source UNUSED;
2389 GIOCondition condition;
2390 gpointer data;
2392 if (condition == G_IO_IN)
2394 /* Do stuff; maybe close connection */
2395 if (xsmp_handle_requests() == FAIL)
2396 g_io_channel_unref((GIOChannel *)data);
2397 return TRUE;
2399 /* Error */
2400 g_io_channel_unref((GIOChannel *)data);
2401 xsmp_close();
2402 return TRUE;
2404 # endif /* USE_XSMP */
2407 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2408 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2410 static void
2411 setup_save_yourself(void)
2413 Atom *existing_atoms = NULL;
2414 int count = 0;
2416 #ifdef USE_XSMP
2417 if (xsmp_icefd != -1)
2420 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2421 * set up GTK IO monitor
2423 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2425 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2426 local_xsmp_handle_requests, (gpointer)g_io);
2428 else
2429 #endif
2431 /* Fall back to old method */
2433 /* first get the existing value */
2434 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2435 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2436 &existing_atoms, &count))
2438 Atom *new_atoms;
2439 Atom save_yourself_xatom;
2440 int i;
2442 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2444 /* check if WM_SAVE_YOURSELF isn't there yet */
2445 for (i = 0; i < count; ++i)
2446 if (existing_atoms[i] == save_yourself_xatom)
2447 break;
2449 if (i == count)
2451 /* allocate an Atoms array which is one item longer */
2452 new_atoms = (Atom *)alloc((unsigned)((count + 1)
2453 * sizeof(Atom)));
2454 if (new_atoms != NULL)
2456 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2457 new_atoms[count] = save_yourself_xatom;
2458 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2459 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2460 new_atoms, count + 1);
2461 vim_free(new_atoms);
2464 XFree(existing_atoms);
2469 # ifdef HAVE_GTK2
2471 * Installing a global event filter seems to be the only way to catch
2472 * client messages of type WM_PROTOCOLS without overriding GDK's own
2473 * client message event filter. Well, that's still better than trying
2474 * to guess what the GDK filter had done if it had been invoked instead
2475 * (This is what we did for GTK+ 1.2, see below).
2477 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2478 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2479 * I have the nasty feeling modern session managers just don't send this
2480 * deprecated message anymore. Addition: confirmed by several people.
2482 * The GNOME session support is much cooler anyway. Unlike this ugly
2483 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2484 * it should work with KDE as well.
2486 static GdkFilterReturn
2487 global_event_filter(GdkXEvent *xev,
2488 GdkEvent *event UNUSED,
2489 gpointer data UNUSED)
2491 XEvent *xevent = (XEvent *)xev;
2493 if (xevent != NULL
2494 && xevent->type == ClientMessage
2495 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
2496 && (long_u)xevent->xclient.data.l[0]
2497 == GET_X_ATOM(save_yourself_atom))
2499 out_flush();
2500 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2502 * Set the window's WM_COMMAND property, to let the window manager
2503 * know we are done saving ourselves. We don't want to be
2504 * restarted, thus set argv to NULL.
2506 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2507 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2508 NULL, 0);
2509 return GDK_FILTER_REMOVE;
2512 return GDK_FILTER_CONTINUE;
2515 # else /* !HAVE_GTK2 */
2518 * GDK handler for X ClientMessage events.
2520 static GdkFilterReturn
2521 gdk_wm_protocols_filter(GdkXEvent *xev, GdkEvent *event, gpointer data)
2523 /* From example in gdkevents.c/gdk_wm_protocols_filter */
2524 XEvent *xevent = (XEvent *)xev;
2526 if (xevent != NULL)
2528 if (xevent->xclient.data.l[0] == GET_X_ATOM(save_yourself_atom))
2530 out_flush();
2531 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2533 /* Set the window's WM_COMMAND property, to let the window manager
2534 * know we are done saving ourselves. We don't want to be
2535 * restarted, thus set argv to NULL. */
2536 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2537 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2538 NULL, 0);
2541 * Functionality from gdkevents.c/gdk_wm_protocols_filter;
2542 * Registering this filter apparently overrides the default GDK one,
2543 * so we need to perform its functionality. There seems no way to
2544 * register for WM_PROTOCOLS, and only process the WM_SAVE_YOURSELF
2545 * bit; it's all or nothing. Update: No, there is a way -- but it
2546 * only works with GTK+ 2 apparently. See above.
2548 else if (xevent->xclient.data.l[0] == GET_X_ATOM(gdk_wm_delete_window))
2550 event->any.type = GDK_DELETE;
2551 return GDK_FILTER_TRANSLATE;
2555 return GDK_FILTER_REMOVE;
2557 # endif /* !HAVE_GTK2 */
2559 #endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2563 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2565 static void
2566 mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
2568 /* If you get an error message here, you still need to unpack the runtime
2569 * archive! */
2570 #ifdef magick
2571 # undef magick
2572 #endif
2573 #ifdef HAVE_GTK2
2574 /* A bit hackish, but avoids casting later and allows optimization */
2575 # define static static const
2576 #endif
2577 #define magick vim32x32
2578 #include "../runtime/vim32x32.xpm"
2579 #undef magick
2580 #define magick vim16x16
2581 #include "../runtime/vim16x16.xpm"
2582 #undef magick
2583 #define magick vim48x48
2584 #include "../runtime/vim48x48.xpm"
2585 #undef magick
2586 #ifdef HAVE_GTK2
2587 # undef static
2588 #endif
2590 /* When started with "--echo-wid" argument, write window ID on stdout. */
2591 if (echo_wid_arg)
2593 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window));
2594 fflush(stdout);
2597 if (vim_strchr(p_go, GO_ICON) != NULL)
2600 * Add an icon to the main window. For fun and convenience of the user.
2602 #ifdef HAVE_GTK2
2603 GList *icons = NULL;
2605 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2606 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2607 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2609 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2611 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2612 g_list_free(icons);
2614 #else /* !HAVE_GTK2 */
2616 GdkPixmap *icon;
2617 GdkBitmap *icon_mask = NULL;
2618 char **magick = vim32x32;
2619 Display *xdisplay;
2620 Window root_window;
2621 XIconSize *size;
2622 int number_sizes;
2624 * Adjust the icon to the preferences of the actual window manager.
2625 * This is once again a workaround for a deficiency in GTK+ 1.2.
2627 xdisplay = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
2628 root_window = XRootWindow(xdisplay, DefaultScreen(xdisplay));
2629 if (XGetIconSizes(xdisplay, root_window, &size, &number_sizes))
2631 if (number_sizes > 0)
2633 if (size->max_height >= 48 && size->max_height >= 48)
2634 magick = vim48x48;
2635 else if (size->max_height >= 32 && size->max_height >= 32)
2636 magick = vim32x32;
2637 else if (size->max_height >= 16 && size->max_height >= 16)
2638 magick = vim16x16;
2640 XFree(size);
2642 icon = gdk_pixmap_create_from_xpm_d(gui.mainwin->window,
2643 &icon_mask, NULL, magick);
2644 if (icon != NULL)
2645 /* Note: for some reason gdk_window_set_icon() doesn't acquire
2646 * a reference on the pixmap, thus we _have_ to leak it. */
2647 gdk_window_set_icon(gui.mainwin->window, NULL, icon, icon_mask);
2649 #endif /* !HAVE_GTK2 */
2652 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2653 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
2654 # ifdef HAVE_GTK2
2655 gdk_window_add_filter(NULL, &global_event_filter, NULL);
2656 # else
2657 gdk_add_client_message_filter(wm_protocols_atom,
2658 &gdk_wm_protocols_filter, NULL);
2659 # endif
2660 #endif
2661 /* Setup to indicate to the window manager that we want to catch the
2662 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2663 * manager instead. */
2664 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2665 if (using_gnome)
2666 #endif
2667 setup_save_yourself();
2669 #ifdef FEAT_CLIENTSERVER
2670 if (serverName == NULL && serverDelayedStartName != NULL)
2672 /* This is a :gui command in a plain vim with no previous server */
2673 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window);
2675 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2676 serverDelayedStartName);
2678 else
2681 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2682 * have to change the "server" registration to that of the main window
2683 * If we have not registered a name yet, remember the window
2685 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2686 GDK_WINDOW_XWINDOW(gui.mainwin->window));
2688 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
2689 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event",
2690 GTK_SIGNAL_FUNC(property_event), NULL);
2691 #endif
2694 static GdkCursor *
2695 create_blank_pointer(void)
2697 GdkWindow *root_window = NULL;
2698 GdkPixmap *blank_mask;
2699 GdkCursor *cursor;
2700 GdkColor color = { 0, 0, 0, 0 };
2701 char blank_data[] = { 0x0 };
2703 #ifdef HAVE_GTK_MULTIHEAD
2704 root_window = gtk_widget_get_root_window(gui.mainwin);
2705 #endif
2707 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2708 * in size. */
2709 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2710 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2711 &color, &color, 0, 0);
2712 gdk_bitmap_unref(blank_mask);
2714 return cursor;
2717 #ifdef HAVE_GTK_MULTIHEAD
2718 static void
2719 mainwin_screen_changed_cb(GtkWidget *widget,
2720 GdkScreen *previous_screen UNUSED,
2721 gpointer data UNUSED)
2723 if (!gtk_widget_has_screen(widget))
2724 return;
2727 * Recreate the invisible mouse cursor.
2729 if (gui.blank_pointer != NULL)
2730 gdk_cursor_unref(gui.blank_pointer);
2732 gui.blank_pointer = create_blank_pointer();
2734 if (gui.pointer_hidden && gui.drawarea->window != NULL)
2735 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
2738 * Create a new PangoContext for this screen, and initialize it
2739 * with the current font if necessary.
2741 if (gui.text_context != NULL)
2742 g_object_unref(gui.text_context);
2744 gui.text_context = gtk_widget_create_pango_context(widget);
2745 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2747 if (gui.norm_font != NULL)
2749 gui_mch_init_font(p_guifont, FALSE);
2750 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
2753 #endif /* HAVE_GTK_MULTIHEAD */
2756 * After the drawing area comes up, we calculate all colors and create the
2757 * dummy blank cursor.
2759 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2760 * fact that the main VIM engine doesn't take them into account anywhere.
2762 static void
2763 drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
2765 GtkWidget *sbar;
2767 #ifdef FEAT_XIM
2768 xim_init();
2769 #endif
2770 gui_mch_new_colors();
2771 gui.text_gc = gdk_gc_new(gui.drawarea->window);
2773 gui.blank_pointer = create_blank_pointer();
2774 if (gui.pointer_hidden)
2775 gdk_window_set_cursor(widget->window, gui.blank_pointer);
2777 /* get the actual size of the scrollbars, if they are realized */
2778 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2779 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2780 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2781 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
2782 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width)
2783 gui.scrollbar_width = sbar->allocation.width;
2785 sbar = gui.bottom_sbar.id;
2786 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height)
2787 gui.scrollbar_height = sbar->allocation.height;
2791 * Properly clean up on shutdown.
2793 static void
2794 drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
2796 /* Don't write messages to the GUI anymore */
2797 full_screen = FALSE;
2799 #ifdef FEAT_XIM
2800 im_shutdown();
2801 #endif
2802 #ifdef HAVE_GTK2
2803 if (gui.ascii_glyphs != NULL)
2805 pango_glyph_string_free(gui.ascii_glyphs);
2806 gui.ascii_glyphs = NULL;
2808 if (gui.ascii_font != NULL)
2810 g_object_unref(gui.ascii_font);
2811 gui.ascii_font = NULL;
2813 g_object_unref(gui.text_context);
2814 gui.text_context = NULL;
2816 g_object_unref(gui.text_gc);
2817 gui.text_gc = NULL;
2819 gdk_cursor_unref(gui.blank_pointer);
2820 gui.blank_pointer = NULL;
2821 #else
2822 gdk_gc_unref(gui.text_gc);
2823 gui.text_gc = NULL;
2825 gdk_cursor_destroy(gui.blank_pointer);
2826 gui.blank_pointer = NULL;
2827 #endif
2830 static void
2831 drawarea_style_set_cb(GtkWidget *widget UNUSED,
2832 GtkStyle *previous_style UNUSED,
2833 gpointer data UNUSED)
2835 gui_mch_new_colors();
2839 * Callback routine for the "delete_event" signal on the toplevel window.
2840 * Tries to vim gracefully, or refuses to exit with changed buffers.
2842 static gint
2843 delete_event_cb(GtkWidget *widget UNUSED,
2844 GdkEventAny *event UNUSED,
2845 gpointer data UNUSED)
2847 gui_shell_closed();
2848 return TRUE;
2851 #if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
2852 static int
2853 get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
2855 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
2857 #ifdef FEAT_GUI_GNOME
2858 if (using_gnome && widget != NULL)
2860 # ifdef HAVE_GTK2
2861 GtkWidget *parent;
2862 BonoboDockItem *dockitem;
2864 parent = gtk_widget_get_parent(widget);
2865 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
2867 /* Only menu & toolbar are dock items. Could tabline be?
2868 * Seem to be only the 2 defined in GNOME */
2869 widget = parent;
2870 dockitem = BONOBO_DOCK_ITEM(widget);
2872 if (dockitem == NULL || dockitem->is_floating)
2873 return 0;
2874 item_orientation = bonobo_dock_item_get_orientation(dockitem);
2876 # else
2877 GnomeDockItem *dockitem;
2879 widget = widget->parent;
2880 dockitem = GNOME_DOCK_ITEM(widget);
2882 if (dockitem == NULL || dockitem->is_floating)
2883 return 0;
2884 item_orientation = gnome_dock_item_get_orientation(dockitem);
2885 # endif
2887 #endif
2888 if (widget != NULL
2889 && item_orientation == orientation
2890 && GTK_WIDGET_REALIZED(widget)
2891 && GTK_WIDGET_VISIBLE(widget))
2893 if (orientation == GTK_ORIENTATION_HORIZONTAL)
2894 return widget->allocation.height;
2895 else
2896 return widget->allocation.width;
2898 return 0;
2900 #endif
2902 static int
2903 get_menu_tool_width(void)
2905 int width = 0;
2907 #ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
2908 # ifdef FEAT_MENU
2909 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
2910 # endif
2911 # ifdef FEAT_TOOLBAR
2912 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
2913 # endif
2914 # ifdef FEAT_GUI_TABLINE
2915 if (gui.tabline != NULL)
2916 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
2917 # endif
2918 #endif
2920 return width;
2923 static int
2924 get_menu_tool_height(void)
2926 int height = 0;
2928 #ifdef FEAT_MENU
2929 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
2930 #endif
2931 #ifdef FEAT_TOOLBAR
2932 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
2933 #endif
2934 #ifdef FEAT_GUI_TABLINE
2935 if (gui.tabline != NULL)
2936 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
2937 #endif
2939 return height;
2942 /* This controls whether we can set the real window hints at
2943 * start-up when in a GtkPlug.
2944 * 0 = normal processing (default)
2945 * 1 = init. hints set, no-one's tried to reset since last check
2946 * 2 = init. hints set, attempt made to change hints
2948 static int init_window_hints_state = 0;
2950 static void
2951 update_window_manager_hints(int force_width, int force_height)
2953 static int old_width = 0;
2954 static int old_height = 0;
2955 static int old_min_width = 0;
2956 static int old_min_height = 0;
2957 static int old_char_width = 0;
2958 static int old_char_height = 0;
2960 int width;
2961 int height;
2962 int min_width;
2963 int min_height;
2965 /* At start-up, don't try to set the hints until the initial
2966 * values have been used (those that dictate our initial size)
2967 * Let forced (i.e., correct) values through always.
2969 if (!(force_width && force_height) && init_window_hints_state > 0)
2971 /* Don't do it! */
2972 init_window_hints_state = 2;
2973 return;
2976 /* This also needs to be done when the main window isn't there yet,
2977 * otherwise the hints don't work. */
2978 width = gui_get_base_width();
2979 height = gui_get_base_height();
2980 # ifdef FEAT_MENU
2981 height += tabline_height() * gui.char_height;
2982 # endif
2983 # ifdef HAVE_GTK2
2984 width += get_menu_tool_width();
2985 height += get_menu_tool_height();
2986 # endif
2988 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
2989 * their actual widget size. When we set our size ourselves (e.g.,
2990 * 'set columns=' or init. -geom) we briefly set the min. to the size
2991 * we wish to be instead of the legitimate minimum so that we actually
2992 * resize correctly.
2994 if (force_width && force_height)
2996 min_width = force_width;
2997 min_height = force_height;
2999 else
3001 min_width = width + MIN_COLUMNS * gui.char_width;
3002 min_height = height + MIN_LINES * gui.char_height;
3005 /* Avoid an expose event when the size didn't change. */
3006 if (width != old_width
3007 || height != old_height
3008 || min_width != old_min_width
3009 || min_height != old_min_height
3010 || gui.char_width != old_char_width
3011 || gui.char_height != old_char_height)
3013 GdkGeometry geometry;
3014 GdkWindowHints geometry_mask;
3016 geometry.width_inc = gui.char_width;
3017 geometry.height_inc = gui.char_height;
3018 geometry.base_width = width;
3019 geometry.base_height = height;
3020 geometry.min_width = min_width;
3021 geometry.min_height = min_height;
3022 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3023 |GDK_HINT_MIN_SIZE;
3024 # ifdef HAVE_GTK2
3025 /* Using gui.formwin as geometry widget doesn't work as expected
3026 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3027 * in Vim confuse GTK+. */
3028 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3029 &geometry, geometry_mask);
3030 # else
3031 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.formwin,
3032 &geometry, geometry_mask);
3033 # endif
3034 old_width = width;
3035 old_height = height;
3036 old_min_width = min_width;
3037 old_min_height = min_height;
3038 old_char_width = gui.char_width;
3039 old_char_height = gui.char_height;
3043 #ifdef FEAT_TOOLBAR
3045 # ifdef HAVE_GTK2
3047 * This extra effort wouldn't be necessary if we only used stock icons in the
3048 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3049 * shouldn't be treated differently, thus we do need this.
3051 static void
3052 icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3054 if (GTK_IS_IMAGE(widget))
3056 GtkImage *image = (GtkImage *)widget;
3058 /* User-defined icons are stored in a GtkIconSet */
3059 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3061 GtkIconSet *icon_set;
3062 GtkIconSize icon_size;
3064 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3065 icon_size = (GtkIconSize)(long)user_data;
3067 gtk_icon_set_ref(icon_set);
3068 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3069 gtk_icon_set_unref(icon_set);
3072 else if (GTK_IS_CONTAINER(widget))
3074 gtk_container_foreach((GtkContainer *)widget,
3075 &icon_size_changed_foreach,
3076 user_data);
3079 # endif /* HAVE_GTK2 */
3081 static void
3082 set_toolbar_style(GtkToolbar *toolbar)
3084 GtkToolbarStyle style;
3085 # ifdef HAVE_GTK2
3086 GtkIconSize size;
3087 GtkIconSize oldsize;
3088 # endif
3090 # ifdef HAVE_GTK2
3091 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3092 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3093 style = GTK_TOOLBAR_BOTH_HORIZ;
3094 else
3095 # endif
3096 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
3097 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3098 style = GTK_TOOLBAR_BOTH;
3099 else if (toolbar_flags & TOOLBAR_TEXT)
3100 style = GTK_TOOLBAR_TEXT;
3101 else
3102 style = GTK_TOOLBAR_ICONS;
3104 gtk_toolbar_set_style(toolbar, style);
3105 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
3107 # ifdef HAVE_GTK2
3108 switch (tbis_flags)
3110 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3111 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3112 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3113 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
3114 default: size = GTK_ICON_SIZE_INVALID; break;
3116 oldsize = gtk_toolbar_get_icon_size(toolbar);
3118 if (size == GTK_ICON_SIZE_INVALID)
3120 /* Let global user preferences decide the icon size. */
3121 gtk_toolbar_unset_icon_size(toolbar);
3122 size = gtk_toolbar_get_icon_size(toolbar);
3124 if (size != oldsize)
3126 gtk_container_foreach(GTK_CONTAINER(toolbar),
3127 &icon_size_changed_foreach,
3128 GINT_TO_POINTER((int)size));
3130 gtk_toolbar_set_icon_size(toolbar, size);
3131 # endif
3134 #endif /* FEAT_TOOLBAR */
3136 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3137 static int ignore_tabline_evt = FALSE;
3138 static GtkWidget *tabline_menu;
3139 static GtkTooltips *tabline_tooltip;
3140 static int clicked_page; /* page clicked in tab line */
3143 * Handle selecting an item in the tab line popup menu.
3145 static void
3146 tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
3148 /* Add the string cmd into input buffer */
3149 send_tabline_menu_event(clicked_page, (int)(long)user_data);
3151 if (gtk_main_level() > 0)
3152 gtk_main_quit();
3155 static void
3156 add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3158 GtkWidget *item;
3159 char_u *utf_text;
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);
3166 gtk_container_add(GTK_CONTAINER(menu), item);
3167 gtk_signal_connect(GTK_OBJECT(item), "activate",
3168 GTK_SIGNAL_FUNC(tabline_menu_handler),
3169 (gpointer)(long)resp);
3173 * Create a menu for the tab line.
3175 static GtkWidget *
3176 create_tabline_menu(void)
3178 GtkWidget *menu;
3180 menu = gtk_menu_new();
3181 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);
3185 return menu;
3188 static gboolean
3189 on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3191 /* Was this button press event ? */
3192 if (event->type == GDK_BUTTON_PRESS)
3194 GdkEventButton *bevent = (GdkEventButton *)event;
3195 int x = bevent->x;
3196 int y = bevent->y;
3197 GtkWidget *tabwidget;
3198 GdkWindow *tabwin;
3200 /* 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
3207 return TRUE;
3209 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));
3214 /* If the event was generated for 3rd button popup the menu. */
3215 if (bevent->button == 3)
3217 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3218 bevent->button, bevent->time);
3219 /* We handled the event. */
3220 return TRUE;
3222 else if (bevent->button == 1)
3224 if (clicked_page == 0)
3226 /* 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)
3229 gtk_main_quit();
3231 #ifndef HAVE_GTK2
3232 else
3233 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline),
3234 clicked_page - 1);
3235 #endif
3239 /* We didn't handle the event. */
3240 return FALSE;
3244 * Handle selecting one of the tabs.
3246 static void
3247 on_select_tab(
3248 GtkNotebook *notebook UNUSED,
3249 GtkNotebookPage *page UNUSED,
3250 gint idx,
3251 gpointer data UNUSED)
3253 if (!ignore_tabline_evt)
3255 if (send_tabline_event(idx + 1) && gtk_main_level() > 0)
3256 gtk_main_quit();
3260 #ifndef HAVE_GTK2
3261 static int showing_tabline = 0;
3262 #endif
3265 * Show or hide the tabline.
3267 void
3268 gui_mch_show_tabline(int showit)
3270 if (gui.tabline == NULL)
3271 return;
3273 #ifdef HAVE_GTK2
3274 /* gtk_notebook_get_show_tabs does not exist in gtk+-1.2.10 */
3275 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3276 #else
3277 if (!showit != !showing_tabline)
3278 #endif
3280 /* Note: this may cause a resize event */
3281 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
3282 update_window_manager_hints(0, 0);
3283 #ifndef HAVE_GTK2
3284 showing_tabline = showit;
3285 #endif
3286 if (showit)
3287 GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS);
3290 gui_mch_update();
3294 * Return TRUE when tabline is displayed.
3297 gui_mch_showing_tabline(void)
3299 return gui.tabline != NULL
3300 #ifdef HAVE_GTK2
3301 /* gtk_notebook_get_show_tabs does not exist in gtk+-1.2.10 */
3302 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline))
3303 #else
3304 && showing_tabline
3305 #endif
3310 * Update the labels of the tabline.
3312 void
3313 gui_mch_update_tabline(void)
3315 GtkWidget *page;
3316 GtkWidget *event_box;
3317 GtkWidget *label;
3318 tabpage_T *tp;
3319 int nr = 0;
3320 int tab_num;
3321 int curtabidx = 0;
3322 char_u *labeltext;
3324 if (gui.tabline == NULL)
3325 return;
3327 ignore_tabline_evt = TRUE;
3329 /* Add a label for each tab page. They all contain the same text area. */
3330 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3332 if (tp == curtab)
3333 curtabidx = nr;
3335 tab_num = nr + 1;
3337 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3338 if (page == NULL)
3340 /* Add notebook page */
3341 page = gtk_vbox_new(FALSE, 0);
3342 gtk_widget_show(page);
3343 event_box = gtk_event_box_new();
3344 gtk_widget_show(event_box);
3345 label = gtk_label_new("-Empty-");
3346 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
3347 gtk_container_add(GTK_CONTAINER(event_box), label);
3348 gtk_widget_show(label);
3349 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3350 page,
3351 event_box,
3352 nr++);
3355 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
3356 gtk_object_set_user_data(GTK_OBJECT(event_box),
3357 (gpointer)(long)tab_num);
3358 label = GTK_BIN(event_box)->child;
3359 get_tabline_label(tp, FALSE);
3360 labeltext = CONVERT_TO_UTF8(NameBuff);
3361 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
3362 CONVERT_TO_UTF8_FREE(labeltext);
3364 get_tabline_label(tp, TRUE);
3365 labeltext = CONVERT_TO_UTF8(NameBuff);
3366 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3367 (const char *)labeltext, NULL);
3368 CONVERT_TO_UTF8_FREE(labeltext);
3371 /* Remove any old labels. */
3372 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3373 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3375 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3376 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
3378 /* Make sure everything is in place before drawing text. */
3379 gui_mch_update();
3381 ignore_tabline_evt = FALSE;
3385 * Set the current tab to "nr". First tab is 1.
3387 void
3388 gui_mch_set_curtab(nr)
3389 int nr;
3391 if (gui.tabline == NULL)
3392 return;
3394 ignore_tabline_evt = TRUE;
3395 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3396 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
3397 ignore_tabline_evt = FALSE;
3400 #endif /* FEAT_GUI_TABLINE */
3403 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3404 * Returns OK for success, FAIL when the GUI can't be started.
3407 gui_mch_init(void)
3409 GtkWidget *vbox;
3411 #ifdef FEAT_GUI_GNOME
3412 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3413 * exits on failure, but that's a non-issue because we already called
3414 * gtk_init_check() in gui_mch_init_check(). */
3415 if (using_gnome)
3416 # ifdef HAVE_GTK2
3417 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3418 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
3419 # else
3420 gnome_init(VIMPACKAGE, VIM_VERSION_SHORT, gui_argc, gui_argv);
3421 # endif
3422 #endif
3423 vim_free(gui_argv);
3424 gui_argv = NULL;
3426 #ifdef HAVE_GTK2
3427 # if GLIB_CHECK_VERSION(2,1,3)
3428 /* Set the human-readable application name */
3429 g_set_application_name("Vim");
3430 # endif
3432 * Force UTF-8 output no matter what the value of 'encoding' is.
3433 * did_set_string_option() in option.c prohibits changing 'termencoding'
3434 * to something else than UTF-8 if the GUI is in use.
3436 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3438 # ifdef FEAT_TOOLBAR
3439 gui_gtk_register_stock_icons();
3440 # endif
3441 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3442 * The hard part is deciding install locations and the Makefile magic. */
3443 # if 0
3444 gtk_rc_parse("gtkrc");
3445 # endif
3446 #endif
3448 /* Initialize values */
3449 gui.border_width = 2;
3450 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3451 gui.scrollbar_height = SB_DEFAULT_WIDTH;
3452 /* LINTED: avoid warning: conversion to 'unsigned long' */
3453 gui.fgcolor = g_new0(GdkColor, 1);
3454 /* LINTED: avoid warning: conversion to 'unsigned long' */
3455 gui.bgcolor = g_new0(GdkColor, 1);
3456 /* LINTED: avoid warning: conversion to 'unsigned long' */
3457 gui.spcolor = g_new0(GdkColor, 1);
3459 /* Initialise atoms */
3460 #ifdef FEAT_MBYTE
3461 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
3462 #endif
3463 #ifndef HAVE_GTK2
3464 compound_text_atom = gdk_atom_intern("COMPOUND_TEXT", FALSE);
3465 text_atom = gdk_atom_intern("TEXT", FALSE);
3466 #endif
3468 /* Set default foreground and background colors. */
3469 gui.norm_pixel = gui.def_norm_pixel;
3470 gui.back_pixel = gui.def_back_pixel;
3472 if (gtk_socket_id != 0)
3474 GtkWidget *plug;
3476 /* Use GtkSocket from another app. */
3477 #ifdef HAVE_GTK_MULTIHEAD
3478 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3479 gtk_socket_id);
3480 #else
3481 plug = gtk_plug_new(gtk_socket_id);
3482 #endif
3483 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
3485 gui.mainwin = plug;
3487 else
3489 g_warning("Connection to GTK+ socket (ID %u) failed",
3490 (unsigned int)gtk_socket_id);
3491 /* Pretend we never wanted it if it failed (get own window) */
3492 gtk_socket_id = 0;
3496 if (gtk_socket_id == 0)
3498 #ifdef FEAT_GUI_GNOME
3499 if (using_gnome)
3501 gui.mainwin = gnome_app_new("Vim", NULL);
3502 # ifdef USE_XSMP
3503 /* Use the GNOME save-yourself functionality now. */
3504 xsmp_close();
3505 # endif
3507 else
3508 #endif
3509 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3512 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3514 #ifdef HAVE_GTK2
3515 /* Create the PangoContext used for drawing all text. */
3516 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3517 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
3518 #endif
3520 #ifndef HAVE_GTK2
3521 gtk_window_set_policy(GTK_WINDOW(gui.mainwin), TRUE, TRUE, TRUE);
3522 #endif
3523 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
3524 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3526 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
3527 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
3529 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
3530 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
3531 #ifdef HAVE_GTK_MULTIHEAD
3532 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed",
3533 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
3534 #endif
3535 #ifdef HAVE_GTK2
3536 gui.accel_group = gtk_accel_group_new();
3537 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
3538 #else
3539 gui.accel_group = gtk_accel_group_get_default();
3540 #endif
3542 /* A vertical box holds the menubar, toolbar and main text window. */
3543 vbox = gtk_vbox_new(FALSE, 0);
3545 #ifdef FEAT_GUI_GNOME
3546 if (using_gnome)
3548 # if defined(HAVE_GTK2) && defined(FEAT_MENU)
3549 /* automagically restore menubar/toolbar placement */
3550 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3551 # endif
3552 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3554 else
3555 #endif
3557 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3558 gtk_widget_show(vbox);
3561 #ifdef FEAT_MENU
3563 * Create the menubar and handle
3565 gui.menubar = gtk_menu_bar_new();
3566 gtk_widget_set_name(gui.menubar, "vim-menubar");
3568 # ifdef HAVE_GTK2
3569 /* Avoid that GTK takes <F10> away from us. */
3571 GtkSettings *gtk_settings;
3573 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3574 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3576 # endif
3579 # ifdef FEAT_GUI_GNOME
3580 if (using_gnome)
3582 # ifdef HAVE_GTK2
3583 BonoboDockItem *dockitem;
3585 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3586 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3587 GNOME_APP_MENUBAR_NAME);
3588 /* We don't want the menu to float. */
3589 bonobo_dock_item_set_behavior(dockitem,
3590 bonobo_dock_item_get_behavior(dockitem)
3591 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
3592 gui.menubar_h = GTK_WIDGET(dockitem);
3593 # else
3594 gui.menubar_h = gnome_dock_item_new("VimMainMenu",
3595 GNOME_DOCK_ITEM_BEH_EXCLUSIVE |
3596 GNOME_DOCK_ITEM_BEH_NEVER_VERTICAL);
3597 gtk_container_add(GTK_CONTAINER(gui.menubar_h), gui.menubar);
3599 gnome_dock_add_item(GNOME_DOCK(GNOME_APP(gui.mainwin)->dock),
3600 GNOME_DOCK_ITEM(gui.menubar_h),
3601 GNOME_DOCK_TOP, /* placement */
3602 1, /* band_num */
3603 0, /* band_position */
3604 0, /* offset */
3605 TRUE);
3606 gtk_widget_show(gui.menubar);
3607 # endif
3609 else
3610 # endif /* FEAT_GUI_GNOME */
3612 /* Always show the menubar, otherwise <F10> doesn't work. It may be
3613 * disabled in gui_init() later. */
3614 gtk_widget_show(gui.menubar);
3615 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3617 #endif /* FEAT_MENU */
3619 #ifdef FEAT_TOOLBAR
3621 * Create the toolbar and handle
3623 # ifdef HAVE_GTK2
3624 /* some aesthetics on the toolbar */
3625 gtk_rc_parse_string(
3626 "style \"vim-toolbar-style\" {\n"
3627 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3628 "}\n"
3629 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
3630 gui.toolbar = gtk_toolbar_new();
3631 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
3632 # else
3633 gui.toolbar = gtk_toolbar_new(GTK_ORIENTATION_HORIZONTAL,
3634 GTK_TOOLBAR_ICONS);
3635 gtk_toolbar_set_button_relief(GTK_TOOLBAR(gui.toolbar), GTK_RELIEF_NONE);
3636 # endif
3637 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3639 # ifdef FEAT_GUI_GNOME
3640 if (using_gnome)
3642 # ifdef HAVE_GTK2
3643 BonoboDockItem *dockitem;
3645 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3646 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3647 GNOME_APP_TOOLBAR_NAME);
3648 gui.toolbar_h = GTK_WIDGET(dockitem);
3649 /* When the toolbar is floating it gets stuck. So long as that isn't
3650 * fixed let's disallow floating. */
3651 bonobo_dock_item_set_behavior(dockitem,
3652 bonobo_dock_item_get_behavior(dockitem)
3653 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
3654 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
3655 # else
3656 GtkWidget *dockitem;
3658 dockitem = gnome_dock_item_new("VimToolBar",
3659 GNOME_DOCK_ITEM_BEH_EXCLUSIVE);
3660 gtk_container_add(GTK_CONTAINER(dockitem), GTK_WIDGET(gui.toolbar));
3661 gui.toolbar_h = dockitem;
3663 gnome_dock_add_item(GNOME_DOCK(GNOME_APP(gui.mainwin)->dock),
3664 GNOME_DOCK_ITEM(dockitem),
3665 GNOME_DOCK_TOP, /* placement */
3666 1, /* band_num */
3667 1, /* band_position */
3668 0, /* offset */
3669 TRUE);
3670 gtk_container_border_width(GTK_CONTAINER(gui.toolbar), 2);
3671 gtk_widget_show(gui.toolbar);
3672 # endif
3674 else
3675 # endif /* FEAT_GUI_GNOME */
3677 # ifndef HAVE_GTK2
3678 gtk_container_border_width(GTK_CONTAINER(gui.toolbar), 1);
3679 # endif
3680 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3681 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3682 gtk_widget_show(gui.toolbar);
3683 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3685 #endif /* FEAT_TOOLBAR */
3687 #ifdef FEAT_GUI_TABLINE
3689 * Use a Notebook for the tab pages labels. The labels are hidden by
3690 * default.
3692 gui.tabline = gtk_notebook_new();
3693 gtk_widget_show(gui.tabline);
3694 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3695 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3696 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
3697 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
3698 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3700 tabline_tooltip = gtk_tooltips_new();
3701 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
3704 GtkWidget *page, *label, *event_box;
3706 /* Add the first tab. */
3707 page = gtk_vbox_new(FALSE, 0);
3708 gtk_widget_show(page);
3709 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3710 label = gtk_label_new("-Empty-");
3711 gtk_widget_show(label);
3712 event_box = gtk_event_box_new();
3713 gtk_widget_show(event_box);
3714 gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L);
3715 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
3716 gtk_container_add(GTK_CONTAINER(event_box), label);
3717 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
3720 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
3721 GTK_SIGNAL_FUNC(on_select_tab), NULL);
3723 /* Create a popup menu for the tab line and connect it. */
3724 tabline_menu = create_tabline_menu();
3725 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
3726 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
3727 #endif
3729 gui.formwin = gtk_form_new();
3730 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
3731 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
3733 gui.drawarea = gtk_drawing_area_new();
3735 /* Determine which events we will filter. */
3736 gtk_widget_set_events(gui.drawarea,
3737 GDK_EXPOSURE_MASK |
3738 GDK_ENTER_NOTIFY_MASK |
3739 GDK_LEAVE_NOTIFY_MASK |
3740 GDK_BUTTON_PRESS_MASK |
3741 GDK_BUTTON_RELEASE_MASK |
3742 #ifdef HAVE_GTK2
3743 GDK_SCROLL_MASK |
3744 #endif
3745 GDK_KEY_PRESS_MASK |
3746 GDK_KEY_RELEASE_MASK |
3747 GDK_POINTER_MOTION_MASK |
3748 GDK_POINTER_MOTION_HINT_MASK);
3750 gtk_widget_show(gui.drawarea);
3751 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
3752 gtk_widget_show(gui.formwin);
3753 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3755 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
3756 * and not the window. */
3757 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
3758 : GTK_OBJECT(gui.drawarea),
3759 "key_press_event",
3760 GTK_SIGNAL_FUNC(key_press_event), NULL);
3761 #if defined(FEAT_XIM) && defined(HAVE_GTK2)
3762 /* Also forward key release events for the benefit of GTK+ 2 input
3763 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
3764 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3765 : G_OBJECT(gui.drawarea),
3766 "key_release_event",
3767 G_CALLBACK(&key_release_event), NULL);
3768 #endif
3769 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
3770 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
3771 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
3772 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
3774 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
3775 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
3777 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
3779 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
3780 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3781 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3782 #endif
3784 if (gtk_socket_id != 0)
3785 /* make sure keyboard input can go to the drawarea */
3786 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
3789 * Set clipboard specific atoms
3791 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
3792 #ifdef FEAT_MBYTE
3793 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
3794 #endif
3795 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3796 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3799 * Start out by adding the configured border width into the border offset.
3801 gui.border_offset = gui.border_width;
3803 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3804 GTK_SIGNAL_FUNC(visibility_event), NULL);
3805 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3806 GTK_SIGNAL_FUNC(expose_event), NULL);
3809 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3810 * Only needed for some window managers.
3812 if (vim_strchr(p_go, GO_POINTER) != NULL)
3814 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
3815 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
3816 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
3817 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
3820 /* Real windows can get focus ... GtkPlug, being a mere container can't,
3821 * only its widgets. Arguably, this could be common code and we not use
3822 * the window focus at all, but let's be safe.
3824 if (gtk_socket_id == 0)
3826 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
3827 GTK_SIGNAL_FUNC(focus_out_event), NULL);
3828 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
3829 GTK_SIGNAL_FUNC(focus_in_event), NULL);
3831 else
3833 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
3834 GTK_SIGNAL_FUNC(focus_out_event), NULL);
3835 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
3836 GTK_SIGNAL_FUNC(focus_in_event), NULL);
3837 #ifdef FEAT_GUI_TABLINE
3838 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
3839 GTK_SIGNAL_FUNC(focus_out_event), NULL);
3840 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
3841 GTK_SIGNAL_FUNC(focus_in_event), NULL);
3842 #endif /* FEAT_GUI_TABLINE */
3845 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
3846 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
3847 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
3848 GTK_SIGNAL_FUNC(button_press_event), NULL);
3849 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
3850 GTK_SIGNAL_FUNC(button_release_event), NULL);
3851 #ifdef HAVE_GTK2
3852 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
3853 G_CALLBACK(&scroll_event), NULL);
3854 #endif
3857 * Add selection handler functions.
3859 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
3860 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
3861 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
3862 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
3865 * Add selection targets for PRIMARY and CLIPBOARD selections.
3867 gtk_selection_add_targets(gui.drawarea,
3868 (GdkAtom)GDK_SELECTION_PRIMARY,
3869 selection_targets, N_SELECTION_TARGETS);
3870 gtk_selection_add_targets(gui.drawarea,
3871 (GdkAtom)clip_plus.gtk_sel_atom,
3872 selection_targets, N_SELECTION_TARGETS);
3874 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
3875 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
3877 /* Pretend we don't have input focus, we will get an event if we do. */
3878 gui.in_focus = FALSE;
3880 return OK;
3883 #if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
3885 * This is called from gui_start() after a fork() has been done.
3886 * We have to tell the session manager our new PID.
3888 void
3889 gui_mch_forked(void)
3891 if (using_gnome)
3893 GnomeClient *client;
3895 client = gnome_master_client();
3897 if (client != NULL)
3898 gnome_client_set_process_id(client, getpid());
3901 #endif /* FEAT_GUI_GNOME && FEAT_SESSION */
3904 * Called when the foreground or background color has been changed.
3905 * This used to change the graphics contexts directly but we are
3906 * currently manipulating them where desired.
3908 void
3909 gui_mch_new_colors(void)
3911 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
3913 GdkColor color = { 0, 0, 0, 0 };
3915 color.pixel = gui.back_pixel;
3916 gdk_window_set_background(gui.drawarea->window, &color);
3921 * This signal informs us about the need to rearrange our sub-widgets.
3923 static gint
3924 form_configure_event(GtkWidget *widget UNUSED,
3925 GdkEventConfigure *event,
3926 gpointer data UNUSED)
3928 int usable_height = event->height;
3930 /* When in a GtkPlug, we can't guarantee valid heights (as a round
3931 * no. of char-heights), so we have to manually sanitise them.
3932 * Widths seem to sort themselves out, don't ask me why.
3934 if (gtk_socket_id != 0)
3935 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
3937 gtk_form_freeze(GTK_FORM(gui.formwin));
3938 gui_resize_shell(event->width, usable_height);
3939 gtk_form_thaw(GTK_FORM(gui.formwin));
3941 return TRUE;
3945 * Function called when window already closed.
3946 * We can't do much more here than to trying to preserve what had been done,
3947 * since the window is already inevitably going away.
3949 static void
3950 mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED)
3952 /* Don't write messages to the GUI anymore */
3953 full_screen = FALSE;
3955 gui.mainwin = NULL;
3956 gui.drawarea = NULL;
3958 if (!exiting) /* only do anything if the destroy was unexpected */
3960 vim_strncpy(IObuff,
3961 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
3962 IOSIZE - 1);
3963 preserve_exit();
3969 * Bit of a hack to ensure we start GtkPlug windows with the correct window
3970 * hints (and thus the required size from -geom), but that after that we
3971 * put the hints back to normal (the actual minimum size) so we may
3972 * subsequently be resized smaller. GtkSocket (the parent end) uses the
3973 * plug's window 'min hints to set *it's* minimum size, but that's also the
3974 * only way we have of making ourselves bigger (by set lines/columns).
3975 * Thus set hints at start-up to ensure correct init. size, then a
3976 * second after the final attempt to reset the real minimum hinst (done by
3977 * scrollbar init.), actually do the standard hinst and stop the timer.
3978 * We'll not let the default hints be set while this timer's active.
3980 static gboolean
3981 check_startup_plug_hints(gpointer data UNUSED)
3983 if (init_window_hints_state == 1)
3985 /* Safe to use normal hints now */
3986 init_window_hints_state = 0;
3987 update_window_manager_hints(0, 0);
3988 return FALSE; /* stop timer */
3991 /* Keep on trying */
3992 init_window_hints_state = 1;
3993 return TRUE;
3998 * Open the GUI window which was created by a call to gui_mch_init().
4001 gui_mch_open(void)
4003 guicolor_T fg_pixel = INVALCOLOR;
4004 guicolor_T bg_pixel = INVALCOLOR;
4006 #ifdef HAVE_GTK2
4008 * Allow setting a window role on the command line, or invent one
4009 * if none was specified. This is mainly useful for GNOME session
4010 * support; allowing the WM to restore window placement.
4012 if (role_argument != NULL)
4014 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4016 else
4018 char *role;
4020 /* Invent a unique-enough ID string for the role */
4021 role = g_strdup_printf("vim-%u-%u-%u",
4022 (unsigned)mch_get_pid(),
4023 (unsigned)g_random_int(),
4024 (unsigned)time(NULL));
4026 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4027 g_free(role);
4029 #endif
4031 if (gui_win_x != -1 && gui_win_y != -1)
4032 #ifdef HAVE_GTK2
4033 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
4034 #else
4035 gtk_widget_set_uposition(gui.mainwin, gui_win_x, gui_win_y);
4036 #endif
4038 /* Determine user specified geometry, if present. */
4039 if (gui.geom != NULL)
4041 int mask;
4042 unsigned int w, h;
4043 int x = 0;
4044 int y = 0;
4045 guint pixel_width;
4046 guint pixel_height;
4048 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4050 if (mask & WidthValue)
4051 Columns = w;
4052 if (mask & HeightValue)
4054 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
4055 p_window = h - 1;
4056 Rows = h;
4059 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4060 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4062 #ifdef HAVE_GTK2
4063 pixel_width += get_menu_tool_width();
4064 pixel_height += get_menu_tool_height();
4065 #endif
4067 if (mask & (XValue | YValue))
4069 int ww, hh;
4070 gui_mch_get_screen_dimensions(&ww, &hh);
4071 hh += p_ghr + get_menu_tool_height();
4072 ww += get_menu_tool_width();
4073 if (mask & XNegative)
4074 x += ww - pixel_width;
4075 if (mask & YNegative)
4076 y += hh - pixel_height;
4077 #ifdef HAVE_GTK2
4078 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
4079 #else
4080 gtk_widget_set_uposition(gui.mainwin, x, y);
4081 #endif
4083 vim_free(gui.geom);
4084 gui.geom = NULL;
4086 /* From now until everyone's stopped trying to set the window hints
4087 * to their correct minimum values, stop them being set as we need
4088 * them to remain at our required size for the parent GtkSocket to
4089 * give us the right initial size.
4091 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
4093 update_window_manager_hints(pixel_width, pixel_height);
4094 init_window_hints_state = 1;
4095 g_timeout_add(1000, check_startup_plug_hints, NULL);
4099 gtk_form_set_size(GTK_FORM(gui.formwin),
4100 (guint)(gui_get_base_width() + Columns * gui.char_width),
4101 (guint)(gui_get_base_height() + Rows * gui.char_height));
4102 update_window_manager_hints(0, 0);
4104 if (foreground_argument != NULL)
4105 fg_pixel = gui_get_color((char_u *)foreground_argument);
4106 if (fg_pixel == INVALCOLOR)
4107 fg_pixel = gui_get_color((char_u *)"Black");
4109 if (background_argument != NULL)
4110 bg_pixel = gui_get_color((char_u *)background_argument);
4111 if (bg_pixel == INVALCOLOR)
4112 bg_pixel = gui_get_color((char_u *)"White");
4114 if (found_reverse_arg)
4116 gui.def_norm_pixel = bg_pixel;
4117 gui.def_back_pixel = fg_pixel;
4119 else
4121 gui.def_norm_pixel = fg_pixel;
4122 gui.def_back_pixel = bg_pixel;
4125 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4126 * in a vimrc file) */
4127 set_normal_colors();
4129 /* Check that none of the colors are the same as the background color */
4130 gui_check_colors();
4132 /* Get the colors for the highlight groups (gui_check_colors() might have
4133 * changed them). */
4134 highlight_gui_started(); /* re-init colors and fonts */
4136 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy",
4137 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL);
4139 #ifdef FEAT_HANGULIN
4140 hangul_keyboard_set();
4141 #endif
4144 * Notify the fixed area about the need to resize the contents of the
4145 * gui.formwin, which we use for random positioning of the included
4146 * components.
4148 * We connect this signal deferred finally after anything is in place,
4149 * since this is intended to handle resizements coming from the window
4150 * manager upon us and should not interfere with what VIM is requesting
4151 * upon startup.
4153 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event",
4154 GTK_SIGNAL_FUNC(form_configure_event), NULL);
4156 #ifdef FEAT_DND
4158 * Set up for receiving DND items.
4160 gtk_drag_dest_set(gui.drawarea,
4161 GTK_DEST_DEFAULT_ALL,
4162 dnd_targets, N_DND_TARGETS,
4163 GDK_ACTION_COPY);
4165 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received",
4166 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL);
4167 #endif
4169 #ifdef HAVE_GTK2
4170 /* With GTK+ 2, we need to iconify the window before calling show()
4171 * to avoid mapping the window for a short time. This is just as one
4172 * would expect it to work, but it's different in GTK+ 1. The funny
4173 * thing is that iconifying after show() _does_ work with GTK+ 1.
4174 * (BTW doing this in the "realize" handler makes no difference.) */
4175 if (found_iconic_arg && gtk_socket_id == 0)
4176 gui_mch_iconify();
4177 #endif
4180 #if defined(FEAT_GUI_GNOME) && defined(HAVE_GTK2) && defined(FEAT_MENU)
4181 unsigned long menu_handler = 0;
4182 # ifdef FEAT_TOOLBAR
4183 unsigned long tool_handler = 0;
4184 # endif
4186 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4187 * show when restoring the saved layout configuration. We can't just
4188 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4189 * a toplevel window and thus will be realized immediately. Instead,
4190 * connect signal handlers to hide the widgets just after they've been
4191 * marked visible, but before the main window is realized.
4193 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4194 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4195 G_CALLBACK(&gtk_widget_hide),
4196 NULL);
4197 # ifdef FEAT_TOOLBAR
4198 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4199 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4200 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4201 G_CALLBACK(&gtk_widget_hide),
4202 NULL);
4203 # endif
4204 #endif
4205 gtk_widget_show(gui.mainwin);
4207 #if defined(FEAT_GUI_GNOME) && defined(HAVE_GTK2) && defined(FEAT_MENU)
4208 if (menu_handler != 0)
4209 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4210 # ifdef FEAT_TOOLBAR
4211 if (tool_handler != 0)
4212 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4213 # endif
4214 #endif
4217 #ifndef HAVE_GTK2
4218 /* With GTK+ 1, we need to iconify the window after calling show().
4219 * See the comment above for details. */
4220 if (found_iconic_arg && gtk_socket_id == 0)
4221 gui_mch_iconify();
4222 #endif
4224 return OK;
4228 void
4229 gui_mch_exit(int rc UNUSED)
4231 if (gui.mainwin != NULL)
4232 gtk_widget_destroy(gui.mainwin);
4234 if (gtk_main_level() > 0)
4235 gtk_main_quit();
4239 * Get the position of the top left corner of the window.
4242 gui_mch_get_winpos(int *x, int *y)
4244 #ifdef HAVE_GTK2
4245 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
4246 #else
4247 /* For some people this must be gdk_window_get_origin() for a correct
4248 * result. Where is the documentation! */
4249 gdk_window_get_root_origin(gui.mainwin->window, x, y);
4250 #endif
4251 return OK;
4255 * Set the position of the top left corner of the window to the given
4256 * coordinates.
4258 void
4259 gui_mch_set_winpos(int x, int y)
4261 #ifdef HAVE_GTK2
4262 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
4263 #else
4264 gdk_window_move(gui.mainwin->window, x, y);
4265 #endif
4268 #ifdef HAVE_GTK2
4269 #if 0
4270 static int resize_idle_installed = FALSE;
4272 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4273 * the shell size doesn't exceed the window size, i.e. if the window manager
4274 * ignored our size request. Usually this happens if the window is maximized.
4276 * FIXME: It'd be nice if we could find a little more orthodox solution.
4277 * See also the remark below in gui_mch_set_shellsize().
4279 * DISABLED: When doing ":set lines+=1" this function would first invoke
4280 * gui_resize_shell() with the old size, then the normal callback would
4281 * report the new size through form_configure_event(). That caused the window
4282 * layout to be messed up.
4284 static gboolean
4285 force_shell_resize_idle(gpointer data)
4287 if (gui.mainwin != NULL
4288 && GTK_WIDGET_REALIZED(gui.mainwin)
4289 && GTK_WIDGET_VISIBLE(gui.mainwin))
4291 int width;
4292 int height;
4294 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4296 width -= get_menu_tool_width();
4297 height -= get_menu_tool_height();
4299 gui_resize_shell(width, height);
4302 resize_idle_installed = FALSE;
4303 return FALSE; /* don't call me again */
4305 #endif
4306 #endif /* HAVE_GTK2 */
4309 * Set the windows size.
4311 void
4312 gui_mch_set_shellsize(int width, int height,
4313 int min_width UNUSED, int min_height UNUSED,
4314 int base_width UNUSED, int base_height UNUSED,
4315 int direction UNUSED)
4317 #ifndef HAVE_GTK2
4318 /* Hack: When the form already is at the desired size, the window might
4319 * have been resized with the mouse. Force a resize by setting a
4320 * different size first. */
4321 if (GTK_FORM(gui.formwin)->width == width
4322 && GTK_FORM(gui.formwin)->height == height)
4324 gtk_form_set_size(GTK_FORM(gui.formwin), width + 1, height + 1);
4325 gui_mch_update();
4327 gtk_form_set_size(GTK_FORM(gui.formwin), width, height);
4328 #endif
4330 /* give GTK+ a chance to put all widget's into place */
4331 gui_mch_update();
4333 #ifndef HAVE_GTK2
4334 /* this will cause the proper resizement to happen too */
4335 update_window_manager_hints(0, 0);
4337 #else /* HAVE_GTK2 */
4338 /* this will cause the proper resizement to happen too */
4339 if (gtk_socket_id == 0)
4340 update_window_manager_hints(0, 0);
4342 /* With GTK+ 2, changing the size of the form widget doesn't resize
4343 * the window. So let's do it the other way around and resize the
4344 * main window instead. */
4345 width += get_menu_tool_width();
4346 height += get_menu_tool_height();
4348 if (gtk_socket_id == 0)
4349 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
4350 else
4351 update_window_manager_hints(width, height);
4353 #if 0
4354 if (!resize_idle_installed)
4356 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4357 &force_shell_resize_idle, NULL, NULL);
4358 resize_idle_installed = TRUE;
4360 #endif
4362 * Wait until all events are processed to prevent a crash because the
4363 * real size of the drawing area doesn't reflect Vim's internal ideas.
4365 * This is a bit of a hack, since Vim is a terminal application with a GUI
4366 * on top, while the GUI expects to be the boss.
4368 gui_mch_update();
4369 #endif
4374 * The screen size is used to make sure the initial window doesn't get bigger
4375 * than the screen. This subtracts some room for menubar, toolbar and window
4376 * decorations.
4378 void
4379 gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4381 #ifdef HAVE_GTK_MULTIHEAD
4382 GdkScreen* screen;
4384 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin))
4385 screen = gtk_widget_get_screen(gui.mainwin);
4386 else
4387 screen = gdk_screen_get_default();
4389 *screen_w = gdk_screen_get_width(screen);
4390 *screen_h = gdk_screen_get_height(screen) - p_ghr;
4391 #else
4392 *screen_w = gdk_screen_width();
4393 /* Subtract 'guiheadroom' from the height to allow some room for the
4394 * window manager (task list and window title bar). */
4395 *screen_h = gdk_screen_height() - p_ghr;
4396 #endif
4399 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4400 * the toolbar and menubar for GTK, we subtract them from the screen
4401 * hight, so that the window size can be made to fit on the screen.
4402 * This should be completely changed later.
4404 *screen_w -= get_menu_tool_width();
4405 *screen_h -= get_menu_tool_height();
4408 #if defined(FEAT_TITLE) || defined(PROTO)
4409 void
4410 gui_mch_settitle(char_u *title, char_u *icon UNUSED)
4412 # ifdef HAVE_GTK2
4413 if (title != NULL && output_conv.vc_type != CONV_NONE)
4414 title = string_convert(&output_conv, title, NULL);
4415 # endif
4417 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4419 # ifdef HAVE_GTK2
4420 if (output_conv.vc_type != CONV_NONE)
4421 vim_free(title);
4422 # endif
4424 #endif /* FEAT_TITLE */
4426 #if defined(FEAT_MENU) || defined(PROTO)
4427 void
4428 gui_mch_enable_menu(int showit)
4430 GtkWidget *widget;
4432 # ifdef FEAT_GUI_GNOME
4433 if (using_gnome)
4434 widget = gui.menubar_h;
4435 else
4436 # endif
4437 widget = gui.menubar;
4439 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
4440 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
4442 if (showit)
4443 gtk_widget_show(widget);
4444 else
4445 gtk_widget_hide(widget);
4447 update_window_manager_hints(0, 0);
4450 #endif /* FEAT_MENU */
4452 #if defined(FEAT_TOOLBAR) || defined(PROTO)
4453 void
4454 gui_mch_show_toolbar(int showit)
4456 GtkWidget *widget;
4458 if (gui.toolbar == NULL)
4459 return;
4461 # ifdef FEAT_GUI_GNOME
4462 if (using_gnome)
4463 widget = gui.toolbar_h;
4464 else
4465 # endif
4466 widget = gui.toolbar;
4468 if (showit)
4469 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4471 if (!showit != !GTK_WIDGET_VISIBLE(widget))
4473 if (showit)
4474 gtk_widget_show(widget);
4475 else
4476 gtk_widget_hide(widget);
4478 update_window_manager_hints(0, 0);
4481 #endif /* FEAT_TOOLBAR */
4483 #ifndef HAVE_GTK2
4485 * Get a font structure for highlighting.
4486 * "cbdata" is a pointer to the global gui structure.
4488 static void
4489 font_sel_ok(GtkWidget *wgt, gpointer cbdata)
4491 gui_T *vw = (gui_T *)cbdata;
4492 GtkFontSelectionDialog *fs = (GtkFontSelectionDialog *)vw->fontdlg;
4494 if (vw->fontname)
4495 g_free(vw->fontname);
4497 vw->fontname = (char_u *)gtk_font_selection_dialog_get_font_name(fs);
4498 gtk_widget_hide(vw->fontdlg);
4499 if (gtk_main_level() > 0)
4500 gtk_main_quit();
4503 static void
4504 font_sel_cancel(GtkWidget *wgt, gpointer cbdata)
4506 gui_T *vw = (gui_T *)cbdata;
4508 gtk_widget_hide(vw->fontdlg);
4509 if (gtk_main_level() > 0)
4510 gtk_main_quit();
4513 static void
4514 font_sel_destroy(GtkWidget *wgt, gpointer cbdata)
4516 gui_T *vw = (gui_T *)cbdata;
4518 vw->fontdlg = NULL;
4519 if (gtk_main_level() > 0)
4520 gtk_main_quit();
4522 #endif /* !HAVE_GTK2 */
4524 #ifdef HAVE_GTK2
4526 * Check if a given font is a CJK font. This is done in a very crude manner. It
4527 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4528 * font. Consequently, this function cannot be used as a general purpose check
4529 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4530 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4532 static int
4533 is_cjk_font(PangoFontDescription *font_desc)
4535 static const char * const cjk_langs[] =
4536 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4538 PangoFont *font;
4539 unsigned i;
4540 int is_cjk = FALSE;
4542 font = pango_context_load_font(gui.text_context, font_desc);
4544 if (font == NULL)
4545 return FALSE;
4547 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4549 PangoCoverage *coverage;
4550 gunichar uc;
4552 coverage = pango_font_get_coverage(
4553 font, pango_language_from_string(cjk_langs[i]));
4555 if (coverage != NULL)
4557 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4558 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4559 pango_coverage_unref(coverage);
4563 g_object_unref(font);
4565 return is_cjk;
4567 #endif /* HAVE_GTK2 */
4570 * Adjust gui.char_height (after 'linespace' was changed).
4573 gui_mch_adjust_charheight(void)
4575 #ifdef HAVE_GTK2
4576 PangoFontMetrics *metrics;
4577 int ascent;
4578 int descent;
4580 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4581 pango_context_get_language(gui.text_context));
4582 ascent = pango_font_metrics_get_ascent(metrics);
4583 descent = pango_font_metrics_get_descent(metrics);
4585 pango_font_metrics_unref(metrics);
4587 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
4588 + p_linespace;
4589 /* LINTED: avoid warning: bitwise operation on signed value */
4590 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4592 #else /* !HAVE_GTK2 */
4594 gui.char_height = gui.current_font->ascent + gui.current_font->descent
4595 + p_linespace;
4596 gui.char_ascent = gui.current_font->ascent + p_linespace / 2;
4598 #endif /* !HAVE_GTK2 */
4600 /* A not-positive value of char_height may crash Vim. Only happens
4601 * if 'linespace' is negative (which does make sense sometimes). */
4602 gui.char_ascent = MAX(gui.char_ascent, 0);
4603 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4605 return OK;
4608 #if defined(FEAT_XFONTSET) || defined(PROTO)
4610 * Try to load the requested fontset.
4612 GuiFontset
4613 gui_mch_get_fontset(char_u *name, int report_error, int fixed_width)
4615 GdkFont *font;
4617 if (!gui.in_use || name == NULL)
4618 return NOFONT;
4620 font = gdk_fontset_load((gchar *)name);
4622 if (font == NULL)
4624 if (report_error)
4625 EMSG2(_(e_fontset), name);
4626 return NOFONT;
4628 /* TODO: check if the font is fixed width. */
4630 /* reference this font as being in use */
4631 gdk_font_ref(font);
4633 return (GuiFontset)font;
4635 #endif /* FEAT_XFONTSET */
4637 #ifndef HAVE_GTK2
4639 * Put up a font dialog and return the selected font name in allocated memory.
4640 * "oldval" is the previous value.
4641 * Return NULL when cancelled.
4643 char_u *
4644 gui_mch_font_dialog(char_u *oldval)
4646 char_u *fontname = NULL;
4648 if (!gui.fontdlg)
4650 GtkFontSelectionDialog *fsd = NULL;
4652 gui.fontdlg = gtk_font_selection_dialog_new(_("Font Selection"));
4653 fsd = GTK_FONT_SELECTION_DIALOG(gui.fontdlg);
4654 gtk_window_set_modal(GTK_WINDOW(gui.fontdlg), TRUE);
4655 gtk_window_set_transient_for(GTK_WINDOW(gui.fontdlg),
4656 GTK_WINDOW(gui.mainwin));
4657 gtk_signal_connect(GTK_OBJECT(gui.fontdlg), "destroy",
4658 GTK_SIGNAL_FUNC(font_sel_destroy), &gui);
4659 gtk_signal_connect(GTK_OBJECT(fsd->ok_button), "clicked",
4660 GTK_SIGNAL_FUNC(font_sel_ok), &gui);
4661 gtk_signal_connect(GTK_OBJECT(fsd->cancel_button), "clicked",
4662 GTK_SIGNAL_FUNC(font_sel_cancel), &gui);
4665 if (oldval != NULL && *oldval != NUL)
4666 gtk_font_selection_dialog_set_font_name(
4667 GTK_FONT_SELECTION_DIALOG(gui.fontdlg), (char *)oldval);
4669 if (gui.fontname)
4671 g_free(gui.fontname);
4672 gui.fontname = NULL;
4674 gtk_window_position(GTK_WINDOW(gui.fontdlg), GTK_WIN_POS_MOUSE);
4675 gtk_widget_show(gui.fontdlg);
4677 static gchar *spacings[] = {"c", "m", NULL};
4679 /* In GTK 1.2.3 this must be after the gtk_widget_show() call,
4680 * otherwise everything is blocked for ten seconds. */
4681 gtk_font_selection_dialog_set_filter(
4682 GTK_FONT_SELECTION_DIALOG(gui.fontdlg),
4683 GTK_FONT_FILTER_BASE,
4684 GTK_FONT_ALL, NULL, NULL,
4685 NULL, NULL, spacings, NULL);
4688 /* Wait for the font dialog to be closed. */
4689 while (gui.fontdlg && GTK_WIDGET_DRAWABLE(gui.fontdlg))
4690 gtk_main_iteration_do(TRUE);
4692 if (gui.fontname != NULL)
4694 /* Apparently some font names include a comma, need to escape that,
4695 * because in 'guifont' it separates names. */
4696 fontname = vim_strsave_escaped(gui.fontname, (char_u *)",");
4697 g_free(gui.fontname);
4698 gui.fontname = NULL;
4700 return fontname;
4702 #endif /* !HAVE_GTK2 */
4704 #ifdef HAVE_GTK2
4706 * Put up a font dialog and return the selected font name in allocated memory.
4707 * "oldval" is the previous value. Return NULL when cancelled.
4708 * This should probably go into gui_gtk.c. Hmm.
4709 * FIXME:
4710 * The GTK2 font selection dialog has no filtering API. So we could either
4711 * a) implement our own (possibly copying the code from somewhere else) or
4712 * b) just live with it.
4714 char_u *
4715 gui_mch_font_dialog(char_u *oldval)
4717 GtkWidget *dialog;
4718 int response;
4719 char_u *fontname = NULL;
4720 char_u *oldname;
4722 dialog = gtk_font_selection_dialog_new(NULL);
4724 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4725 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4727 if (oldval != NULL && oldval[0] != NUL)
4729 if (output_conv.vc_type != CONV_NONE)
4730 oldname = string_convert(&output_conv, oldval, NULL);
4731 else
4732 oldname = oldval;
4734 /* Annoying bug in GTK (or Pango): if the font name does not include a
4735 * size, zero is used. Use default point size ten. */
4736 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4738 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4740 if (p != NULL)
4742 STRCPY(p + STRLEN(p), " 10");
4743 if (oldname != oldval)
4744 vim_free(oldname);
4745 oldname = p;
4749 gtk_font_selection_dialog_set_font_name(
4750 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
4752 if (oldname != oldval)
4753 vim_free(oldname);
4756 response = gtk_dialog_run(GTK_DIALOG(dialog));
4758 if (response == GTK_RESPONSE_OK)
4760 char *name;
4762 name = gtk_font_selection_dialog_get_font_name(
4763 GTK_FONT_SELECTION_DIALOG(dialog));
4764 if (name != NULL)
4766 char_u *p;
4768 /* Apparently some font names include a comma, need to escape
4769 * that, because in 'guifont' it separates names. */
4770 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
4771 g_free(name);
4772 if (p != NULL && input_conv.vc_type != CONV_NONE)
4774 fontname = string_convert(&input_conv, p, NULL);
4775 vim_free(p);
4777 else
4778 fontname = p;
4782 if (response != GTK_RESPONSE_NONE)
4783 gtk_widget_destroy(dialog);
4785 return fontname;
4789 * Some monospace fonts don't support a bold weight, and fall back
4790 * silently to the regular weight. But this is no good since our text
4791 * drawing function can emulate bold by overstriking. So let's try
4792 * to detect whether bold weight is actually available and emulate it
4793 * otherwise.
4795 * Note that we don't need to check for italic style since Xft can
4796 * emulate italic on its own, provided you have a proper fontconfig
4797 * setup. We wouldn't be able to emulate it in Vim anyway.
4799 static void
4800 get_styled_font_variants(void)
4802 PangoFontDescription *bold_font_desc;
4803 PangoFont *plain_font;
4804 PangoFont *bold_font;
4806 gui.font_can_bold = FALSE;
4808 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
4810 if (plain_font == NULL)
4811 return;
4813 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
4814 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
4816 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
4818 * The comparison relies on the unique handle nature of a PangoFont*,
4819 * i.e. it's assumed that a different PangoFont* won't refer to the
4820 * same font. Seems to work, and failing here isn't critical anyway.
4822 if (bold_font != NULL)
4824 gui.font_can_bold = (bold_font != plain_font);
4825 g_object_unref(bold_font);
4828 pango_font_description_free(bold_font_desc);
4829 g_object_unref(plain_font);
4832 #else /* !HAVE_GTK2 */
4835 * There is only one excuse I can give for the following attempt to manage font
4836 * styles:
4838 * I HATE THE BRAIN DEAD WAY X11 IS HANDLING FONTS (--mdcki)
4839 * (Me too. --danielk)
4841 static void
4842 get_styled_font_variants(char_u * font_name)
4844 char *chunk[32];
4845 char *sdup;
4846 char *tmp;
4847 int len, i;
4848 GuiFont *styled_font[3];
4850 styled_font[0] = &gui.bold_font;
4851 styled_font[1] = &gui.ital_font;
4852 styled_font[2] = &gui.boldital_font;
4854 /* First free whatever was previously there. */
4855 for (i = 0; i < 3; ++i)
4856 if (*styled_font[i])
4858 gdk_font_unref(*styled_font[i]);
4859 *styled_font[i] = NULL;
4862 if ((sdup = g_strdup((const char *)font_name)) == NULL)
4863 return;
4865 /* split up the whole */
4866 i = 0;
4867 for (tmp = sdup; *tmp != '\0'; ++tmp)
4869 if (*tmp == '-')
4871 *tmp = '\0';
4873 if (i == 32)
4874 break;
4876 chunk[i] = tmp + 1;
4877 ++i;
4881 if (i == 14)
4883 GdkFont *font = NULL;
4884 const char *bold_chunk[3] = { "bold", NULL, "bold" };
4885 const char *italic_chunk[3] = { NULL, "o", "o" };
4887 /* font name was complete */
4888 len = strlen((const char *)font_name) + 32;
4890 for (i = 0; i < 3; ++i)
4892 char *styled_name;
4893 int j;
4895 styled_name = (char *)alloc(len);
4896 if (styled_name == NULL)
4898 g_free(sdup);
4899 return;
4902 *styled_name = '\0';
4904 for (j = 0; j < 14; ++j)
4906 strcat(styled_name, "-");
4907 if (j == 2 && bold_chunk[i] != NULL)
4908 strcat(styled_name, bold_chunk[i]);
4909 else if (j == 3 && italic_chunk[i] != NULL)
4910 strcat(styled_name, italic_chunk[i]);
4911 else
4912 strcat(styled_name, chunk[j]);
4915 font = gui_mch_get_font((char_u *)styled_name, FALSE);
4916 if (font != NULL)
4917 *styled_font[i] = font;
4919 vim_free(styled_name);
4923 g_free(sdup);
4925 #endif /* !HAVE_GTK2 */
4927 #ifdef HAVE_GTK2
4928 static PangoEngineShape *default_shape_engine = NULL;
4931 * Create a map from ASCII characters in the range [32,126] to glyphs
4932 * of the current font. This is used by gui_gtk2_draw_string() to skip
4933 * the itemize and shaping process for the most common case.
4935 static void
4936 ascii_glyph_table_init(void)
4938 char_u ascii_chars[128];
4939 PangoAttrList *attr_list;
4940 GList *item_list;
4941 int i;
4943 if (gui.ascii_glyphs != NULL)
4944 pango_glyph_string_free(gui.ascii_glyphs);
4945 if (gui.ascii_font != NULL)
4946 g_object_unref(gui.ascii_font);
4948 gui.ascii_glyphs = NULL;
4949 gui.ascii_font = NULL;
4951 /* For safety, fill in question marks for the control characters. */
4952 for (i = 0; i < 32; ++i)
4953 ascii_chars[i] = '?';
4954 for (; i < 127; ++i)
4955 ascii_chars[i] = i;
4956 ascii_chars[i] = '?';
4958 attr_list = pango_attr_list_new();
4959 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
4960 0, sizeof(ascii_chars), attr_list, NULL);
4962 if (item_list != NULL && item_list->next == NULL) /* play safe */
4964 PangoItem *item;
4965 int width;
4967 item = (PangoItem *)item_list->data;
4968 width = gui.char_width * PANGO_SCALE;
4970 /* Remember the shape engine used for ASCII. */
4971 default_shape_engine = item->analysis.shape_engine;
4973 gui.ascii_font = item->analysis.font;
4974 g_object_ref(gui.ascii_font);
4976 gui.ascii_glyphs = pango_glyph_string_new();
4978 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
4979 &item->analysis, gui.ascii_glyphs);
4981 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
4983 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
4985 PangoGlyphGeometry *geom;
4987 geom = &gui.ascii_glyphs->glyphs[i].geometry;
4988 geom->x_offset += MAX(0, width - geom->width) / 2;
4989 geom->width = width;
4993 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
4994 g_list_free(item_list);
4995 pango_attr_list_unref(attr_list);
4997 #endif /* HAVE_GTK2 */
5000 * Initialize Vim to use the font or fontset with the given name.
5001 * Return FAIL if the font could not be loaded, OK otherwise.
5004 gui_mch_init_font(char_u *font_name, int fontset UNUSED)
5006 #ifdef HAVE_GTK2
5007 PangoFontDescription *font_desc;
5008 PangoLayout *layout;
5009 int width;
5011 /* If font_name is NULL, this means to use the default, which should
5012 * be present on all proper Pango/fontconfig installations. */
5013 if (font_name == NULL)
5014 font_name = (char_u *)DEFAULT_FONT;
5016 font_desc = gui_mch_get_font(font_name, FALSE);
5018 if (font_desc == NULL)
5019 return FAIL;
5021 gui_mch_free_font(gui.norm_font);
5022 gui.norm_font = font_desc;
5024 pango_context_set_font_description(gui.text_context, font_desc);
5026 layout = pango_layout_new(gui.text_context);
5027 pango_layout_set_text(layout, "MW", 2);
5028 pango_layout_get_size(layout, &width, NULL);
5030 * Set char_width to half the width obtained from pango_layout_get_size()
5031 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5032 * Pango to use the same width for both non-CJK characters (e.g. Latin
5033 * letters and numbers) and CJK characters. This results in 's p a c e d
5034 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5035 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5036 * width for CJK fonts.
5038 * For related bugs, see:
5039 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5040 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5042 * With this, for all four of the following cases, Vim works fine:
5043 * guifont=CJK_fixed_width_font
5044 * guifont=Non_CJK_fixed_font
5045 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5046 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5048 if (is_cjk_font(gui.norm_font))
5050 int cjk_width;
5052 /* Measure the text extent of U+4E00 and U+4E8C */
5053 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5054 pango_layout_get_size(layout, &cjk_width, NULL);
5056 if (width == cjk_width) /* Xft not patched */
5057 width /= 2;
5059 g_object_unref(layout);
5061 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5063 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5064 if (gui.char_width <= 0)
5065 gui.char_width = 8;
5067 gui_mch_adjust_charheight();
5069 /* Set the fontname, which will be used for information purposes */
5070 hl_set_font_name(font_name);
5072 get_styled_font_variants();
5073 ascii_glyph_table_init();
5075 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5076 if (gui.wide_font != NULL
5077 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5079 pango_font_description_free(gui.wide_font);
5080 gui.wide_font = NULL;
5083 #else /* !HAVE_GTK2 */
5085 GdkFont *font = NULL;
5087 # ifdef FEAT_XFONTSET
5088 /* Try loading a fontset. If this fails we try loading a normal font. */
5089 if (fontset && font_name != NULL)
5090 font = gui_mch_get_fontset(font_name, TRUE, TRUE);
5092 if (font == NULL)
5093 # endif
5095 /* If font_name is NULL, this means to use the default, which should
5096 * be present on all X11 servers. */
5097 if (font_name == NULL)
5098 font_name = (char_u *)DEFAULT_FONT;
5099 font = gui_mch_get_font(font_name, FALSE);
5102 if (font == NULL)
5103 return FAIL;
5105 gui_mch_free_font(gui.norm_font);
5106 # ifdef FEAT_XFONTSET
5107 gui_mch_free_fontset(gui.fontset);
5108 if (font->type == GDK_FONT_FONTSET)
5110 gui.norm_font = NOFONT;
5111 gui.fontset = (GuiFontset)font;
5112 /* Use two bytes, this works around the problem that the result would
5113 * be zero if no 8-bit font was found. */
5114 gui.char_width = gdk_string_width(font, "xW") / 2;
5116 else
5117 # endif
5119 gui.norm_font = font;
5120 # ifdef FEAT_XFONTSET
5121 gui.fontset = NOFONTSET;
5122 # endif
5123 gui.char_width = ((XFontStruct *)
5124 GDK_FONT_XFONT(font))->max_bounds.width;
5127 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5128 if (gui.char_width <= 0)
5129 gui.char_width = 8;
5131 gui.char_height = font->ascent + font->descent + p_linespace;
5132 gui.char_ascent = font->ascent + p_linespace / 2;
5134 /* A not-positive value of char_height may crash Vim. Only happens
5135 * if 'linespace' is negative (which does make sense sometimes). */
5136 gui.char_ascent = MAX(gui.char_ascent, 0);
5137 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
5139 /* Set the fontname, which will be used for information purposes */
5140 hl_set_font_name(font_name);
5142 if (font->type != GDK_FONT_FONTSET)
5143 get_styled_font_variants(font_name);
5145 /* Synchronize the fonts used in user input dialogs, since otherwise
5146 * search/replace will be esp. annoying in case of international font
5147 * usage.
5149 gui_gtk_synch_fonts();
5151 # ifdef FEAT_XIM
5152 /* Adjust input management behaviour to the capabilities of the new
5153 * fontset */
5154 xim_decide_input_style();
5155 if (xim_get_status_area_height())
5157 /* Status area is required. Just create the empty container so that
5158 * mainwin will allocate the extra space for status area. */
5159 GtkWidget *alignment = gtk_alignment_new((gfloat)0.5, (gfloat)0.5,
5160 (gfloat)1.0, (gfloat)1.0);
5162 gtk_widget_set_usize(alignment, 20, gui.char_height + 2);
5163 gtk_box_pack_end(GTK_BOX(GTK_BIN(gui.mainwin)->child),
5164 alignment, FALSE, FALSE, 0);
5165 gtk_widget_show(alignment);
5167 # endif
5168 #endif /* !HAVE_GTK2 */
5170 /* Preserve the logical dimensions of the screen. */
5171 update_window_manager_hints(0, 0);
5173 return OK;
5177 * Get a reference to the font "name".
5178 * Return zero for failure.
5180 GuiFont
5181 gui_mch_get_font(char_u *name, int report_error)
5183 #ifdef HAVE_GTK2
5184 PangoFontDescription *font;
5185 #else
5186 GdkFont *font;
5187 #endif
5189 /* can't do this when GUI is not running */
5190 if (!gui.in_use || name == NULL)
5191 return NULL;
5193 #ifdef HAVE_GTK2
5194 if (output_conv.vc_type != CONV_NONE)
5196 char_u *buf;
5198 buf = string_convert(&output_conv, name, NULL);
5199 if (buf != NULL)
5201 font = pango_font_description_from_string((const char *)buf);
5202 vim_free(buf);
5204 else
5205 font = NULL;
5207 else
5208 font = pango_font_description_from_string((const char *)name);
5210 if (font != NULL)
5212 PangoFont *real_font;
5214 /* pango_context_load_font() bails out if no font size is set */
5215 if (pango_font_description_get_size(font) <= 0)
5216 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5218 real_font = pango_context_load_font(gui.text_context, font);
5220 if (real_font == NULL)
5222 pango_font_description_free(font);
5223 font = NULL;
5225 else
5226 g_object_unref(real_font);
5228 #else
5229 font = gdk_font_load((const gchar *)name);
5230 #endif
5232 if (font == NULL)
5234 if (report_error)
5235 EMSG2(_((char *)e_font), name);
5236 return NULL;
5239 #ifdef HAVE_GTK2
5241 * The fixed-width check has been disabled for GTK+ 2. Rationale:
5243 * - The check tends to report false positives, particularly
5244 * in non-Latin locales or with old X fonts.
5245 * - Thanks to our fixed-width hack in gui_gtk2_draw_string(),
5246 * GTK+ 2 Vim is actually capable of displaying variable width
5247 * fonts. Those will just be spaced out like in AA xterm.
5248 * - Failing here for the default font causes GUI startup to fail
5249 * even with wiped out configuration files.
5250 * - The font dialog displays all fonts unfiltered, and it's rather
5251 * annoying if 95% of the listed fonts produce an error message.
5253 # if 0
5255 /* Check that this is a mono-spaced font. Naturally, this is a bit
5256 * hackish -- fixed-width isn't really suitable for i18n text :/ */
5257 PangoLayout *layout;
5258 unsigned int i;
5259 int last_width = -1;
5260 const char test_chars[] = { 'W', 'i', ',', 'x' }; /* arbitrary */
5262 layout = pango_layout_new(gui.text_context);
5263 pango_layout_set_font_description(layout, font);
5265 for (i = 0; i < G_N_ELEMENTS(test_chars); ++i)
5267 int width;
5269 pango_layout_set_text(layout, &test_chars[i], 1);
5270 pango_layout_get_size(layout, &width, NULL);
5272 if (last_width >= 0 && width != last_width)
5274 pango_font_description_free(font);
5275 font = NULL;
5276 break;
5279 last_width = width;
5282 g_object_unref(layout);
5284 # endif
5285 #else /* !HAVE_GTK2 */
5287 XFontStruct *xfont;
5289 /* reference this font as being in use */
5290 gdk_font_ref(font);
5292 /* Check that this is a mono-spaced font.
5294 xfont = (XFontStruct *) GDK_FONT_XFONT(font);
5296 if (xfont->max_bounds.width != xfont->min_bounds.width)
5298 gdk_font_unref(font);
5299 font = NULL;
5302 #endif /* !HAVE_GTK2 */
5304 #if !defined(HAVE_GTK2) || 0 /* disabled for GTK+ 2, see above */
5305 if (font == NULL && report_error)
5306 EMSG2(_(e_fontwidth), name);
5307 #endif
5309 return font;
5312 #if defined(FEAT_EVAL) || defined(PROTO)
5314 * Return the name of font "font" in allocated memory.
5316 char_u *
5317 gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
5319 # ifdef HAVE_GTK2
5320 if (font != NOFONT)
5322 char *pangoname = pango_font_description_to_string(font);
5324 if (pangoname != NULL)
5326 char_u *s = vim_strsave((char_u *)pangoname);
5328 g_free(pangoname);
5329 return s;
5332 # else
5333 /* Don't know how to get the name, return what we got. */
5334 if (name != NULL)
5335 return vim_strsave(name);
5336 # endif
5337 return NULL;
5339 #endif
5341 #if !defined(HAVE_GTK2) || defined(PROTO)
5343 * Set the current text font.
5344 * Since we create all GC on demand, we use just gui.current_font to
5345 * indicate the desired current font.
5347 void
5348 gui_mch_set_font(GuiFont font)
5350 gui.current_font = font;
5352 #endif
5354 #if defined(FEAT_XFONTSET) || defined(PROTO)
5356 * Set the current text fontset.
5358 void
5359 gui_mch_set_fontset(GuiFontset fontset)
5361 gui.current_font = fontset;
5363 #endif
5366 * If a font is not going to be used, free its structure.
5368 void
5369 gui_mch_free_font(GuiFont font)
5371 if (font != NOFONT)
5372 #ifdef HAVE_GTK2
5373 pango_font_description_free(font);
5374 #else
5375 gdk_font_unref(font);
5376 #endif
5379 #if defined(FEAT_XFONTSET) || defined(PROTO)
5381 * If a fontset is not going to be used, free its structure.
5383 void
5384 gui_mch_free_fontset(GuiFontset fontset)
5386 if (fontset != NOFONTSET)
5387 gdk_font_unref(fontset);
5389 #endif
5393 * Return the Pixel value (color) for the given color name. This routine was
5394 * pretty much taken from example code in the Silicon Graphics OSF/Motif
5395 * Programmer's Guide.
5396 * Return INVALCOLOR for error.
5398 guicolor_T
5399 gui_mch_get_color(char_u *name)
5401 /* A number of colors that some X11 systems don't have */
5402 static const char *const vimnames[][2] =
5404 {"LightRed", "#FFBBBB"},
5405 {"LightGreen", "#88FF88"},
5406 {"LightMagenta","#FFBBFF"},
5407 {"DarkCyan", "#008888"},
5408 {"DarkBlue", "#0000BB"},
5409 {"DarkRed", "#BB0000"},
5410 {"DarkMagenta", "#BB00BB"},
5411 {"DarkGrey", "#BBBBBB"},
5412 {"DarkYellow", "#BBBB00"},
5413 {"Gray10", "#1A1A1A"},
5414 {"Grey10", "#1A1A1A"},
5415 {"Gray20", "#333333"},
5416 {"Grey20", "#333333"},
5417 {"Gray30", "#4D4D4D"},
5418 {"Grey30", "#4D4D4D"},
5419 {"Gray40", "#666666"},
5420 {"Grey40", "#666666"},
5421 {"Gray50", "#7F7F7F"},
5422 {"Grey50", "#7F7F7F"},
5423 {"Gray60", "#999999"},
5424 {"Grey60", "#999999"},
5425 {"Gray70", "#B3B3B3"},
5426 {"Grey70", "#B3B3B3"},
5427 {"Gray80", "#CCCCCC"},
5428 {"Grey80", "#CCCCCC"},
5429 {"Gray90", "#E5E5E5"},
5430 {"Grey90", "#E5E5E5"},
5431 {NULL, NULL}
5434 if (!gui.in_use) /* can't do this when GUI not running */
5435 return INVALCOLOR;
5437 while (name != NULL)
5439 GdkColor color;
5440 int parsed;
5441 int i;
5443 parsed = gdk_color_parse((const char *)name, &color);
5445 #ifndef HAVE_GTK2 /* ohh, lovely GTK+ 2, eases our pain :) */
5447 * Since we have already called gtk_set_locale here the bugger
5448 * XParseColor will accept only explicit color names in the language
5449 * of the current locale. However this will interfere with:
5450 * 1. Vim's global startup files
5451 * 2. Explicit color names in .vimrc
5453 * Therefore we first try to parse the color in the current locale and
5454 * if it fails, we fall back to the portable "C" one.
5456 if (!parsed)
5458 char *current;
5460 current = setlocale(LC_ALL, NULL);
5461 if (current != NULL)
5463 char *saved;
5465 saved = g_strdup(current);
5466 setlocale(LC_ALL, "C");
5468 parsed = gdk_color_parse((const gchar *)name, &color);
5470 setlocale(LC_ALL, saved);
5471 gtk_set_locale();
5473 g_free(saved);
5476 #endif /* !HAVE_GTK2 */
5478 if (parsed)
5480 #ifdef HAVE_GTK2
5481 gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5482 &color, FALSE, TRUE);
5483 #else
5484 gdk_color_alloc(gtk_widget_get_colormap(gui.drawarea), &color);
5485 #endif
5486 return (guicolor_T)color.pixel;
5488 /* add a few builtin names and try again */
5489 for (i = 0; ; ++i)
5491 if (vimnames[i][0] == NULL)
5493 name = NULL;
5494 break;
5496 if (STRICMP(name, vimnames[i][0]) == 0)
5498 name = (char_u *)vimnames[i][1];
5499 break;
5504 return INVALCOLOR;
5508 * Set the current text foreground color.
5510 void
5511 gui_mch_set_fg_color(guicolor_T color)
5513 gui.fgcolor->pixel = (unsigned long)color;
5517 * Set the current text background color.
5519 void
5520 gui_mch_set_bg_color(guicolor_T color)
5522 gui.bgcolor->pixel = (unsigned long)color;
5526 * Set the current text special color.
5528 void
5529 gui_mch_set_sp_color(guicolor_T color)
5531 gui.spcolor->pixel = (unsigned long)color;
5534 #ifdef HAVE_GTK2
5536 * Function-like convenience macro for the sake of efficiency.
5538 #define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5539 G_STMT_START{ \
5540 PangoAttribute *tmp_attr_; \
5541 tmp_attr_ = (Attribute); \
5542 tmp_attr_->start_index = (Start); \
5543 tmp_attr_->end_index = (End); \
5544 pango_attr_list_insert((AttrList), tmp_attr_); \
5545 }G_STMT_END
5547 static void
5548 apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5550 char_u *start = NULL;
5551 char_u *p;
5552 int uc;
5554 for (p = s; p < s + len; p += utf_byte2len(*p))
5556 uc = utf_ptr2char(p);
5558 if (start == NULL)
5560 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5561 start = p;
5563 else if (uc < 0x80 /* optimization shortcut */
5564 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5566 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5567 attr_list, start - s, p - s);
5568 start = NULL;
5572 if (start != NULL)
5573 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5574 attr_list, start - s, len);
5577 static int
5578 count_cluster_cells(char_u *s, PangoItem *item,
5579 PangoGlyphString* glyphs, int i,
5580 int *cluster_width,
5581 int *last_glyph_rbearing)
5583 char_u *p;
5584 int next; /* glyph start index of next cluster */
5585 int start, end; /* string segment of current cluster */
5586 int width; /* real cluster width in Pango units */
5587 int uc;
5588 int cellcount = 0;
5590 width = glyphs->glyphs[i].geometry.width;
5592 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5594 if (glyphs->glyphs[next].attr.is_cluster_start)
5595 break;
5596 else if (glyphs->glyphs[next].geometry.width > width)
5597 width = glyphs->glyphs[next].geometry.width;
5600 start = item->offset + glyphs->log_clusters[i];
5601 end = item->offset + ((next < glyphs->num_glyphs) ?
5602 glyphs->log_clusters[next] : item->length);
5604 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5606 uc = utf_ptr2char(p);
5607 if (uc < 0x80)
5608 ++cellcount;
5609 else if (!utf_iscomposing(uc))
5610 cellcount += utf_char2cells(uc);
5613 if (last_glyph_rbearing != NULL
5614 && cellcount > 0 && next == glyphs->num_glyphs)
5616 PangoRectangle ink_rect;
5618 * If a certain combining mark had to be taken from a non-monospace
5619 * font, we have to compensate manually by adapting x_offset according
5620 * to the ink extents of the previous glyph.
5622 pango_font_get_glyph_extents(item->analysis.font,
5623 glyphs->glyphs[i].glyph,
5624 &ink_rect, NULL);
5626 if (PANGO_RBEARING(ink_rect) > 0)
5627 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5630 if (cellcount > 0)
5631 *cluster_width = width;
5633 return cellcount;
5637 * If there are only combining characters in the cluster, we cannot just
5638 * change the width of the previous glyph since there is none. Therefore
5639 * some guesswork is needed.
5641 * If ink_rect.x is negative Pango apparently has taken care of the composing
5642 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5643 * to problems with composing from different fonts we still need to fine-tune
5644 * x_offset to avoid uglyness.
5646 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5647 * the position of the previous glyph. Apparently this happens only with old
5648 * X fonts which don't provide the special combining information needed by
5649 * Pango.
5651 static void
5652 setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5653 int last_cellcount, int last_cluster_width,
5654 int last_glyph_rbearing)
5656 PangoRectangle ink_rect;
5657 PangoRectangle logical_rect;
5658 int width;
5660 width = last_cellcount * gui.char_width * PANGO_SCALE;
5661 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5662 glyph->geometry.width = 0;
5664 pango_font_get_glyph_extents(item->analysis.font,
5665 glyph->glyph,
5666 &ink_rect, &logical_rect);
5667 if (ink_rect.x < 0)
5669 glyph->geometry.x_offset += last_glyph_rbearing;
5670 glyph->geometry.y_offset = logical_rect.height
5671 - (gui.char_height - p_linespace) * PANGO_SCALE;
5675 static void
5676 draw_glyph_string(int row, int col, int num_cells, int flags,
5677 PangoFont *font, PangoGlyphString *glyphs)
5679 if (!(flags & DRAW_TRANSP))
5681 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5683 gdk_draw_rectangle(gui.drawarea->window,
5684 gui.text_gc,
5685 TRUE,
5686 FILL_X(col),
5687 FILL_Y(row),
5688 num_cells * gui.char_width,
5689 gui.char_height);
5692 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5694 gdk_draw_glyphs(gui.drawarea->window,
5695 gui.text_gc,
5696 font,
5697 TEXT_X(col),
5698 TEXT_Y(row),
5699 glyphs);
5701 /* redraw the contents with an offset of 1 to emulate bold */
5702 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
5703 gdk_draw_glyphs(gui.drawarea->window,
5704 gui.text_gc,
5705 font,
5706 TEXT_X(col) + 1,
5707 TEXT_Y(row),
5708 glyphs);
5711 #endif /* HAVE_GTK2 */
5714 * Draw underline and undercurl at the bottom of the character cell.
5716 static void
5717 draw_under(int flags, int row, int col, int cells)
5719 int i;
5720 int offset;
5721 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
5722 int y = FILL_Y(row + 1) - 1;
5724 /* Undercurl: draw curl at the bottom of the character cell. */
5725 if (flags & DRAW_UNDERC)
5727 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5728 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5730 offset = val[i % 8];
5731 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5733 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5736 /* Underline: draw a line at the bottom of the character cell. */
5737 if (flags & DRAW_UNDERL)
5739 /* When p_linespace is 0, overwrite the bottom row of pixels.
5740 * Otherwise put the line just below the character. */
5741 if (p_linespace > 1)
5742 y -= p_linespace - 1;
5743 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5744 FILL_X(col), y,
5745 FILL_X(col + cells) - 1, y);
5749 #if defined(HAVE_GTK2) || defined(PROTO)
5751 gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5753 GdkRectangle area; /* area for clip mask */
5754 PangoGlyphString *glyphs; /* glyphs of current item */
5755 int column_offset = 0; /* column offset in cells */
5756 int i;
5757 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5758 char_u *new_conv_buf;
5759 int convlen;
5760 char_u *sp, *bp;
5761 int plen;
5763 if (gui.text_context == NULL || gui.drawarea->window == NULL)
5764 return len;
5766 if (output_conv.vc_type != CONV_NONE)
5769 * Convert characters from 'encoding' to 'termencoding', which is set
5770 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5771 * prohibits changing this to something else than UTF-8 if the GUI is
5772 * in use.
5774 convlen = len;
5775 conv_buf = string_convert(&output_conv, s, &convlen);
5776 g_return_val_if_fail(conv_buf != NULL, len);
5778 /* Correct for differences in char width: some chars are
5779 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5780 * compensate for that. */
5781 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5783 plen = utf_ptr2len(bp);
5784 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5786 new_conv_buf = alloc(convlen + 2);
5787 if (new_conv_buf == NULL)
5788 return len;
5789 plen += bp - conv_buf;
5790 mch_memmove(new_conv_buf, conv_buf, plen);
5791 new_conv_buf[plen] = ' ';
5792 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5793 convlen - plen + 1);
5794 vim_free(conv_buf);
5795 conv_buf = new_conv_buf;
5796 ++convlen;
5797 bp = conv_buf + plen;
5798 plen = 1;
5800 sp += (*mb_ptr2len)(sp);
5801 bp += plen;
5803 s = conv_buf;
5804 len = convlen;
5808 * Restrict all drawing to the current screen line in order to prevent
5809 * fuzzy font lookups from messing up the screen.
5811 area.x = gui.border_offset;
5812 area.y = FILL_Y(row);
5813 area.width = gui.num_cols * gui.char_width;
5814 area.height = gui.char_height;
5816 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5817 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
5819 glyphs = pango_glyph_string_new();
5822 * Optimization hack: If possible, skip the itemize and shaping process
5823 * for pure ASCII strings. This optimization is particularly effective
5824 * because Vim draws space characters to clear parts of the screen.
5826 if (!(flags & DRAW_ITALIC)
5827 && !((flags & DRAW_BOLD) && gui.font_can_bold)
5828 && gui.ascii_glyphs != NULL)
5830 char_u *p;
5832 for (p = s; p < s + len; ++p)
5833 if (*p & 0x80)
5834 goto not_ascii;
5836 pango_glyph_string_set_size(glyphs, len);
5838 for (i = 0; i < len; ++i)
5840 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[s[i]];
5841 glyphs->log_clusters[i] = i;
5844 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
5846 column_offset = len;
5848 else
5849 not_ascii:
5851 PangoAttrList *attr_list;
5852 GList *item_list;
5853 int cluster_width;
5854 int last_glyph_rbearing;
5855 int cells = 0; /* cells occupied by current cluster */
5856 #if 0
5857 int monospace13 = STRICMP(p_guifont, "monospace 13") == 0;
5858 #endif
5860 /* Safety check: pango crashes when invoked with invalid utf-8
5861 * characters. */
5862 if (!utf_valid_string(s, s + len))
5864 column_offset = len;
5865 goto skipitall;
5868 /* original width of the current cluster */
5869 cluster_width = PANGO_SCALE * gui.char_width;
5871 /* right bearing of the last non-composing glyph */
5872 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5874 attr_list = pango_attr_list_new();
5876 /* If 'guifontwide' is set then use that for double-width characters.
5877 * Otherwise just go with 'guifont' and let Pango do its thing. */
5878 if (gui.wide_font != NULL)
5879 apply_wide_font_attr(s, len, attr_list);
5881 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5882 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5883 attr_list, 0, len);
5884 if (flags & DRAW_ITALIC)
5885 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5886 attr_list, 0, len);
5888 * Break the text into segments with consistent directional level
5889 * and shaping engine. Pure Latin text needs only a single segment,
5890 * so there's no need to worry about the loop's efficiency. Better
5891 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5893 item_list = pango_itemize(gui.text_context,
5894 (const char *)s, 0, len, attr_list, NULL);
5896 while (item_list != NULL)
5898 PangoItem *item;
5899 int item_cells = 0; /* item length in cells */
5901 item = (PangoItem *)item_list->data;
5902 item_list = g_list_delete_link(item_list, item_list);
5904 * Increment the bidirectional embedding level by 1 if it is not
5905 * even. An odd number means the output will be RTL, but we don't
5906 * want that since Vim handles right-to-left text on its own. It
5907 * would probably be sufficient to just set level = 0, but you can
5908 * never know :)
5910 * Unfortunately we can't take advantage of Pango's ability to
5911 * render both LTR and RTL at the same time. In order to support
5912 * that, Vim's main screen engine would have to make use of Pango
5913 * functionality.
5915 item->analysis.level = (item->analysis.level + 1) & (~1U);
5917 /* HACK: Overrule the shape engine, we don't want shaping to be
5918 * done, because drawing the cursor would change the display. */
5919 item->analysis.shape_engine = default_shape_engine;
5921 pango_shape((const char *)s + item->offset, item->length,
5922 &item->analysis, glyphs);
5924 * Fixed-width hack: iterate over the array and assign a fixed
5925 * width to each glyph, thus overriding the choice made by the
5926 * shaping engine. We use utf_char2cells() to determine the
5927 * number of cells needed.
5929 * Also perform all kind of dark magic to get composing
5930 * characters right (and pretty too of course).
5932 for (i = 0; i < glyphs->num_glyphs; ++i)
5934 PangoGlyphInfo *glyph;
5936 glyph = &glyphs->glyphs[i];
5938 if (glyph->attr.is_cluster_start)
5940 int cellcount;
5942 cellcount = count_cluster_cells(
5943 s, item, glyphs, i, &cluster_width,
5944 (item_list != NULL) ? &last_glyph_rbearing : NULL);
5946 if (cellcount > 0)
5948 int width;
5950 width = cellcount * gui.char_width * PANGO_SCALE;
5951 glyph->geometry.x_offset +=
5952 MAX(0, width - cluster_width) / 2;
5953 glyph->geometry.width = width;
5955 else
5957 /* If there are only combining characters in the
5958 * cluster, we cannot just change the width of the
5959 * previous glyph since there is none. Therefore
5960 * some guesswork is needed. */
5961 setup_zero_width_cluster(item, glyph, cells,
5962 cluster_width,
5963 last_glyph_rbearing);
5966 item_cells += cellcount;
5967 cells = cellcount;
5969 else if (i > 0)
5971 int width;
5973 /* There is a previous glyph, so we deal with combining
5974 * characters the canonical way. That is, setting the
5975 * width of the previous glyph to 0. */
5976 glyphs->glyphs[i - 1].geometry.width = 0;
5977 width = cells * gui.char_width * PANGO_SCALE;
5978 glyph->geometry.x_offset +=
5979 MAX(0, width - cluster_width) / 2;
5980 #if 0
5981 /* Dirty hack: for "monospace 13" font there is a bug that
5982 * draws composing chars in the wrong position. Add
5983 * "width" to the offset to work around that. */
5984 if (monospace13)
5985 glyph->geometry.x_offset = width;
5986 #endif
5988 glyph->geometry.width = width;
5990 else /* i == 0 "cannot happen" */
5992 glyph->geometry.width = 0;
5996 /*** Aaaaand action! ***/
5997 draw_glyph_string(row, col + column_offset, item_cells,
5998 flags, item->analysis.font, glyphs);
6000 pango_item_free(item);
6002 column_offset += item_cells;
6005 pango_attr_list_unref(attr_list);
6008 skipitall:
6009 /* Draw underline and undercurl. */
6010 draw_under(flags, row, col, column_offset);
6012 pango_glyph_string_free(glyphs);
6013 vim_free(conv_buf);
6015 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
6017 return column_offset;
6019 #endif /* HAVE_GTK2 */
6021 #if !defined(HAVE_GTK2) || defined(PROTO)
6022 void
6023 gui_mch_draw_string(int row, int col, char_u *s, int len, int flags)
6025 static XChar2b *buf = NULL;
6026 static int buflen = 0;
6027 int is_wide;
6028 XChar2b *text;
6029 int textlen;
6030 XFontStruct *xfont;
6031 char_u *p;
6032 # ifdef FEAT_MBYTE
6033 unsigned c;
6034 # endif
6035 int width;
6037 if (gui.current_font == NULL || gui.drawarea->window == NULL)
6038 return;
6041 * Yeah yeah apparently the font support in GTK+ 1.2 only cares for either:
6042 * asians or 8-bit fonts. It is broken there, but no wonder the whole font
6043 * stuff is broken in X11 in first place. And the internationalization API
6044 * isn't something you would really like to use.
6047 xfont = (XFontStruct *)((GdkFontPrivate*)gui.current_font)->xfont;
6048 is_wide = ((xfont->min_byte1 != 0 || xfont->max_byte1 != 0)
6049 # ifdef FEAT_XFONTSET
6050 && gui.fontset == NOFONTSET
6051 # endif
6054 if (is_wide)
6056 /* Convert a byte sequence to 16 bit characters for the Gdk functions.
6057 * Need a buffer for the 16 bit characters. Keep it between calls,
6058 * because allocating it each time is slow. */
6059 if (buflen < len)
6061 XtFree((char *)buf);
6062 buf = (XChar2b *)XtMalloc(len * sizeof(XChar2b));
6063 buflen = len;
6066 p = s;
6067 textlen = 0;
6068 width = 0;
6069 while (p < s + len)
6071 # ifdef FEAT_MBYTE
6072 if (enc_utf8)
6074 c = utf_ptr2char(p);
6075 if (c >= 0x10000) /* show chars > 0xffff as ? */
6076 c = 0xbf;
6077 buf[textlen].byte1 = c >> 8;
6078 buf[textlen].byte2 = c;
6079 p += utf_ptr2len(p);
6080 width += utf_char2cells(c);
6082 else
6083 # endif
6085 buf[textlen].byte1 = '\0'; /* high eight bits */
6086 buf[textlen].byte2 = *p; /* low eight bits */
6087 ++p;
6088 ++width;
6090 ++textlen;
6092 text = buf;
6093 textlen = textlen * 2;
6095 else
6097 text = (XChar2b *)s;
6098 textlen = len;
6099 # ifdef FEAT_MBYTE
6100 if (has_mbyte)
6102 width = 0;
6103 for (p = s; p < s + len; p += (*mb_ptr2len)(p))
6104 width += (*mb_ptr2cells)(p);
6106 else
6107 # endif
6108 width = len;
6111 if (!(flags & DRAW_TRANSP))
6113 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
6114 gdk_draw_rectangle(gui.drawarea->window,
6115 gui.text_gc,
6116 TRUE,
6117 FILL_X(col), FILL_Y(row),
6118 width * gui.char_width, gui.char_height);
6120 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6121 gdk_draw_text(gui.drawarea->window,
6122 gui.current_font,
6123 gui.text_gc,
6124 TEXT_X(col), TEXT_Y(row),
6125 (const gchar *)text, textlen);
6127 /* redraw the contents with an offset of 1 to emulate bold */
6128 if (flags & DRAW_BOLD)
6129 gdk_draw_text(gui.drawarea->window,
6130 gui.current_font,
6131 gui.text_gc,
6132 TEXT_X(col) + 1, TEXT_Y(row),
6133 (const gchar *)text, textlen);
6135 /* Draw underline and undercurl. */
6136 draw_under(flags, row, col, width);
6138 #endif /* !HAVE_GTK2 */
6141 * Return OK if the key with the termcap name "name" is supported.
6144 gui_mch_haskey(char_u *name)
6146 int i;
6148 for (i = 0; special_keys[i].key_sym != 0; i++)
6149 if (name[0] == special_keys[i].code0
6150 && name[1] == special_keys[i].code1)
6151 return OK;
6152 return FAIL;
6155 #if defined(FEAT_TITLE) \
6156 || (defined(FEAT_XIM) && !defined(HAVE_GTK2)) \
6157 || defined(PROTO)
6159 * Return the text window-id and display. Only required for X-based GUI's
6162 gui_get_x11_windis(Window *win, Display **dis)
6164 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6166 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6167 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
6168 return OK;
6171 *dis = NULL;
6172 *win = 0;
6173 return FAIL;
6175 #endif
6177 #if defined(FEAT_CLIENTSERVER) \
6178 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6180 Display *
6181 gui_mch_get_display(void)
6183 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6184 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6185 else
6186 return NULL;
6188 #endif
6190 void
6191 gui_mch_beep(void)
6193 #ifdef HAVE_GTK_MULTIHEAD
6194 GdkDisplay *display;
6196 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
6197 display = gtk_widget_get_display(gui.mainwin);
6198 else
6199 display = gdk_display_get_default();
6201 if (display != NULL)
6202 gdk_display_beep(display);
6203 #else
6204 gdk_beep();
6205 #endif
6208 void
6209 gui_mch_flash(int msec)
6211 GdkGCValues values;
6212 GdkGC *invert_gc;
6214 if (gui.drawarea->window == NULL)
6215 return;
6217 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6218 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6219 values.function = GDK_XOR;
6220 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6221 &values,
6222 GDK_GC_FOREGROUND |
6223 GDK_GC_BACKGROUND |
6224 GDK_GC_FUNCTION);
6225 gdk_gc_set_exposures(invert_gc,
6226 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6228 * Do a visual beep by changing back and forth in some undetermined way,
6229 * the foreground and background colors. This is due to the fact that
6230 * there can't be really any prediction about the effects of XOR on
6231 * arbitrary X11 servers. However this seems to be enough for what we
6232 * intend it to do.
6234 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6235 TRUE,
6236 0, 0,
6237 FILL_X((int)Columns) + gui.border_offset,
6238 FILL_Y((int)Rows) + gui.border_offset);
6240 gui_mch_flush();
6241 ui_delay((long)msec, TRUE); /* wait so many msec */
6243 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6244 TRUE,
6245 0, 0,
6246 FILL_X((int)Columns) + gui.border_offset,
6247 FILL_Y((int)Rows) + gui.border_offset);
6249 gdk_gc_destroy(invert_gc);
6253 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6255 void
6256 gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6258 GdkGCValues values;
6259 GdkGC *invert_gc;
6261 if (gui.drawarea->window == NULL)
6262 return;
6264 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6265 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6266 values.function = GDK_XOR;
6267 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6268 &values,
6269 GDK_GC_FOREGROUND |
6270 GDK_GC_BACKGROUND |
6271 GDK_GC_FUNCTION);
6272 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6273 GDK_VISIBILITY_UNOBSCURED);
6274 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6275 TRUE,
6276 FILL_X(c), FILL_Y(r),
6277 (nc) * gui.char_width, (nr) * gui.char_height);
6278 gdk_gc_destroy(invert_gc);
6282 * Iconify the GUI window.
6284 void
6285 gui_mch_iconify(void)
6287 #ifdef HAVE_GTK2
6288 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
6289 #else
6290 XIconifyWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
6291 GDK_WINDOW_XWINDOW(gui.mainwin->window),
6292 DefaultScreen(GDK_WINDOW_XDISPLAY(gui.mainwin->window)));
6293 #endif
6296 #if defined(FEAT_EVAL) || defined(PROTO)
6298 * Bring the Vim window to the foreground.
6300 void
6301 gui_mch_set_foreground(void)
6303 # ifdef HAVE_GTK2
6304 gtk_window_present(GTK_WINDOW(gui.mainwin));
6305 # else
6306 gdk_window_raise(gui.mainwin->window);
6307 # endif
6309 #endif
6312 * Draw a cursor without focus.
6314 void
6315 gui_mch_draw_hollow_cursor(guicolor_T color)
6317 int i = 1;
6319 if (gui.drawarea->window == NULL)
6320 return;
6322 gui_mch_set_fg_color(color);
6324 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6325 #ifdef FEAT_MBYTE
6326 if (mb_lefthalve(gui.row, gui.col))
6327 i = 2;
6328 #endif
6329 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6330 FALSE,
6331 FILL_X(gui.col), FILL_Y(gui.row),
6332 i * gui.char_width - 1, gui.char_height - 1);
6336 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6337 * color "color".
6339 void
6340 gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6342 if (gui.drawarea->window == NULL)
6343 return;
6345 gui_mch_set_fg_color(color);
6347 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6348 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6349 TRUE,
6350 #ifdef FEAT_RIGHTLEFT
6351 /* vertical line should be on the right of current point */
6352 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6353 #endif
6354 FILL_X(gui.col),
6355 FILL_Y(gui.row) + gui.char_height - h,
6356 w, h);
6361 * Catch up with any queued X11 events. This may put keyboard input into the
6362 * input buffer, call resize call-backs, trigger timers etc. If there is
6363 * nothing in the X11 event queue (& no timers pending), then we return
6364 * immediately.
6366 void
6367 gui_mch_update(void)
6369 while (gtk_events_pending() && !vim_is_input_buf_full())
6370 gtk_main_iteration_do(FALSE);
6373 static gint
6374 input_timer_cb(gpointer data)
6376 int *timed_out = (int *) data;
6378 /* Just inform the caller about the occurrence of it */
6379 *timed_out = TRUE;
6381 if (gtk_main_level() > 0)
6382 gtk_main_quit();
6384 return FALSE; /* don't happen again */
6387 #ifdef FEAT_SNIFF
6389 * Callback function, used when data is available on the SNiFF connection.
6391 static void
6392 sniff_request_cb(
6393 gpointer data,
6394 gint source_fd,
6395 GdkInputCondition condition)
6397 static char_u bytes[3] = {CSI, (int)KS_EXTRA, (int)KE_SNIFF};
6399 add_to_input_buf(bytes, 3);
6401 if (gtk_main_level() > 0)
6402 gtk_main_quit();
6404 #endif
6407 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6408 * from the keyboard.
6409 * wtime == -1 Wait forever.
6410 * wtime == 0 This should never happen.
6411 * wtime > 0 Wait wtime milliseconds for a character.
6412 * Returns OK if a character was found to be available within the given time,
6413 * or FAIL otherwise.
6416 gui_mch_wait_for_chars(long wtime)
6418 int focus;
6419 guint timer;
6420 static int timed_out;
6421 #ifdef FEAT_SNIFF
6422 static int sniff_on = 0;
6423 static gint sniff_input_id = 0;
6424 #endif
6426 #ifdef FEAT_SNIFF
6427 if (sniff_on && !want_sniff_request)
6429 if (sniff_input_id)
6430 gdk_input_remove(sniff_input_id);
6431 sniff_on = 0;
6433 else if (!sniff_on && want_sniff_request)
6435 /* Add fd_from_sniff to watch for available data in main loop. */
6436 sniff_input_id = gdk_input_add(fd_from_sniff,
6437 GDK_INPUT_READ, sniff_request_cb, NULL);
6438 sniff_on = 1;
6440 #endif
6442 timed_out = FALSE;
6444 /* this timeout makes sure that we will return if no characters arrived in
6445 * time */
6447 if (wtime > 0)
6448 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out);
6449 else
6450 timer = 0;
6452 focus = gui.in_focus;
6456 /* Stop or start blinking when focus changes */
6457 if (gui.in_focus != focus)
6459 if (gui.in_focus)
6460 gui_mch_start_blink();
6461 else
6462 gui_mch_stop_blink();
6463 focus = gui.in_focus;
6466 #if defined(FEAT_NETBEANS_INTG)
6467 /* Process the queued netbeans messages. */
6468 netbeans_parse_messages();
6469 #endif
6472 * Loop in GTK+ processing until a timeout or input occurs.
6473 * Skip this if input is available anyway (can happen in rare
6474 * situations, sort of race condition).
6476 if (!input_available())
6477 gtk_main();
6479 /* Got char, return immediately */
6480 if (input_available())
6482 if (timer != 0 && !timed_out)
6483 gtk_timeout_remove(timer);
6484 return OK;
6486 } while (wtime < 0 || !timed_out);
6489 * Flush all eventually pending (drawing) events.
6491 gui_mch_update();
6493 return FAIL;
6497 /****************************************************************************
6498 * Output drawing routines.
6499 ****************************************************************************/
6502 /* Flush any output to the screen */
6503 void
6504 gui_mch_flush(void)
6506 #ifdef HAVE_GTK_MULTIHEAD
6507 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
6508 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6509 #else
6510 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */
6511 #endif
6512 #ifdef HAVE_GTK2
6513 /* This happens to actually do what gui_mch_flush() is supposed to do,
6514 * according to the comment above. */
6515 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
6516 gdk_window_process_updates(gui.drawarea->window, FALSE);
6517 #endif
6521 * Clear a rectangular region of the screen from text pos (row1, col1) to
6522 * (row2, col2) inclusive.
6524 void
6525 gui_mch_clear_block(int row1, int col1, int row2, int col2)
6527 GdkColor color;
6529 if (gui.drawarea->window == NULL)
6530 return;
6532 color.pixel = gui.back_pixel;
6534 gdk_gc_set_foreground(gui.text_gc, &color);
6536 /* Clear one extra pixel at the far right, for when bold characters have
6537 * spilled over to the window border. */
6538 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6539 FILL_X(col1), FILL_Y(row1),
6540 (col2 - col1 + 1) * gui.char_width
6541 + (col2 == Columns - 1),
6542 (row2 - row1 + 1) * gui.char_height);
6545 void
6546 gui_mch_clear_all(void)
6548 if (gui.drawarea->window != NULL)
6549 gdk_window_clear(gui.drawarea->window);
6553 * Redraw any text revealed by scrolling up/down.
6555 static void
6556 check_copy_area(void)
6558 GdkEvent *event;
6559 int expose_count;
6561 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6562 return;
6564 /* Avoid redrawing the cursor while scrolling or it'll end up where
6565 * we don't want it to be. I'm not sure if it's correct to call
6566 * gui_dont_update_cursor() at this point but it works as a quick
6567 * fix for now. */
6568 gui_dont_update_cursor();
6572 /* Wait to check whether the scroll worked or not. */
6573 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6575 if (event == NULL)
6576 break; /* received NoExpose event */
6578 gui_redraw(event->expose.area.x, event->expose.area.y,
6579 event->expose.area.width, event->expose.area.height);
6581 expose_count = event->expose.count;
6582 gdk_event_free(event);
6584 while (expose_count > 0); /* more events follow */
6586 gui_can_update_cursor();
6590 * Delete the given number of lines from the given row, scrolling up any
6591 * text further down within the scroll region.
6593 void
6594 gui_mch_delete_lines(int row, int num_lines)
6596 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6597 return; /* Can't see the window */
6599 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6600 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6602 /* copy one extra pixel, for when bold has spilled over */
6603 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6604 FILL_X(gui.scroll_region_left), FILL_Y(row),
6605 gui.drawarea->window,
6606 FILL_X(gui.scroll_region_left),
6607 FILL_Y(row + num_lines),
6608 gui.char_width * (gui.scroll_region_right
6609 - gui.scroll_region_left + 1) + 1,
6610 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6612 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6613 gui.scroll_region_left,
6614 gui.scroll_region_bot, gui.scroll_region_right);
6615 check_copy_area();
6619 * Insert the given number of lines before the given row, scrolling down any
6620 * following text within the scroll region.
6622 void
6623 gui_mch_insert_lines(int row, int num_lines)
6625 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6626 return; /* Can't see the window */
6628 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6629 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6631 /* copy one extra pixel, for when bold has spilled over */
6632 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6633 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6634 gui.drawarea->window,
6635 FILL_X(gui.scroll_region_left), FILL_Y(row),
6636 gui.char_width * (gui.scroll_region_right
6637 - gui.scroll_region_left + 1) + 1,
6638 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6640 gui_clear_block(row, gui.scroll_region_left,
6641 row + num_lines - 1, gui.scroll_region_right);
6642 check_copy_area();
6646 * X Selection stuff, for cutting and pasting text to other windows.
6648 void
6649 clip_mch_request_selection(VimClipboard *cbd)
6651 GdkAtom target;
6652 unsigned i;
6653 int nbytes;
6654 char_u *buffer;
6655 time_t start;
6657 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6659 received_selection = RS_NONE;
6660 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6662 gtk_selection_convert(gui.drawarea,
6663 cbd->gtk_sel_atom, target,
6664 (guint32)GDK_CURRENT_TIME);
6666 /* Hack: Wait up to three seconds for the selection. A hang was
6667 * noticed here when using the netrw plugin combined with ":gui"
6668 * during the FocusGained event. */
6669 start = time(NULL);
6670 while (received_selection == RS_NONE && time(NULL) < start + 3)
6671 gtk_main(); /* wait for selection_received_cb */
6673 if (received_selection != RS_FAIL)
6674 return;
6677 /* Final fallback position - use the X CUT_BUFFER0 store */
6678 nbytes = 0;
6679 buffer = (char_u *)XFetchBuffer(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
6680 &nbytes, 0);
6681 if (nbytes > 0)
6683 /* Got something */
6684 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
6685 if (p_verbose > 0)
6687 verbose_enter();
6688 smsg((char_u *)_("Used CUT_BUFFER0 instead of empty selection"));
6689 verbose_leave();
6692 if (buffer != NULL)
6693 XFree(buffer);
6697 * Disown the selection.
6699 void
6700 clip_mch_lose_selection(VimClipboard *cbd UNUSED)
6702 /* WEIRD: when using NULL to actually disown the selection, we lose the
6703 * selection the first time we own it. */
6705 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, (guint32)GDK_CURRENT_TIME);
6706 gui_mch_update();
6711 * Own the selection and return OK if it worked.
6714 clip_mch_own_selection(VimClipboard *cbd)
6716 int success;
6718 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
6719 (guint32)GDK_CURRENT_TIME);
6720 gui_mch_update();
6721 return (success) ? OK : FAIL;
6725 * Send the current selection to the clipboard. Do nothing for X because we
6726 * will fill in the selection only when requested by another app.
6728 void
6729 clip_mch_set_selection(VimClipboard *cbd UNUSED)
6734 #if defined(FEAT_MENU) || defined(PROTO)
6736 * Make a menu item appear either active or not active (grey or not grey).
6738 void
6739 gui_mch_menu_grey(vimmenu_T *menu, int grey)
6741 if (menu->id == NULL)
6742 return;
6744 if (menu_is_separator(menu->name))
6745 grey = TRUE;
6747 gui_mch_menu_hidden(menu, FALSE);
6748 /* Be clever about bitfields versus true booleans here! */
6749 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
6751 gtk_widget_set_sensitive(menu->id, !grey);
6752 gui_mch_update();
6757 * Make menu item hidden or not hidden.
6759 void
6760 gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6762 if (menu->id == 0)
6763 return;
6765 if (hidden)
6767 if (GTK_WIDGET_VISIBLE(menu->id))
6769 gtk_widget_hide(menu->id);
6770 gui_mch_update();
6773 else
6775 if (!GTK_WIDGET_VISIBLE(menu->id))
6777 gtk_widget_show(menu->id);
6778 gui_mch_update();
6784 * This is called after setting all the menus to grey/hidden or not.
6786 void
6787 gui_mch_draw_menubar(void)
6789 /* just make sure that the visual changes get effect immediately */
6790 gui_mch_update();
6792 #endif /* FEAT_MENU */
6795 * Scrollbar stuff.
6797 void
6798 gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6800 if (sb->id == NULL)
6801 return;
6803 if (flag)
6804 gtk_widget_show(sb->id);
6805 else
6806 gtk_widget_hide(sb->id);
6808 update_window_manager_hints(0, 0);
6813 * Return the RGB value of a pixel as long.
6815 long_u
6816 gui_mch_get_rgb(guicolor_T pixel)
6818 GdkColor color;
6819 #ifndef HAVE_GTK2
6820 GdkColorContext *cc;
6822 cc = gdk_color_context_new(gtk_widget_get_visual(gui.drawarea),
6823 gtk_widget_get_colormap(gui.drawarea));
6824 color.pixel = pixel;
6825 gdk_color_context_query_color(cc, &color);
6827 gdk_color_context_free(cc);
6828 #else
6829 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6830 (unsigned long)pixel, &color);
6831 #endif
6833 return (((unsigned)color.red & 0xff00) << 8)
6834 | ((unsigned)color.green & 0xff00)
6835 | (((unsigned)color.blue & 0xff00) >> 8);
6839 * Get current mouse coordinates in text window.
6841 void
6842 gui_mch_getmouse(int *x, int *y)
6844 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
6847 void
6848 gui_mch_setmouse(int x, int y)
6850 /* Sorry for the Xlib call, but we can't avoid it, since there is no
6851 * internal GDK mechanism present to accomplish this. (and for good
6852 * reason...) */
6853 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
6854 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
6855 0, 0, 0U, 0U, x, y);
6859 #ifdef FEAT_MOUSESHAPE
6860 /* The last set mouse pointer shape is remembered, to be used when it goes
6861 * from hidden to not hidden. */
6862 static int last_shape = 0;
6863 #endif
6866 * Use the blank mouse pointer or not.
6868 * hide: TRUE = use blank ptr, FALSE = use parent ptr
6870 void
6871 gui_mch_mousehide(int hide)
6873 if (gui.pointer_hidden != hide)
6875 gui.pointer_hidden = hide;
6876 if (gui.drawarea->window && gui.blank_pointer != NULL)
6878 if (hide)
6879 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
6880 else
6881 #ifdef FEAT_MOUSESHAPE
6882 mch_set_mouse_shape(last_shape);
6883 #else
6884 gdk_window_set_cursor(gui.drawarea->window, NULL);
6885 #endif
6890 #if defined(FEAT_MOUSESHAPE) || defined(PROTO)
6892 /* Table for shape IDs. Keep in sync with the mshape_names[] table in
6893 * misc2.c! */
6894 static const int mshape_ids[] =
6896 GDK_LEFT_PTR, /* arrow */
6897 GDK_CURSOR_IS_PIXMAP, /* blank */
6898 GDK_XTERM, /* beam */
6899 GDK_SB_V_DOUBLE_ARROW, /* updown */
6900 GDK_SIZING, /* udsizing */
6901 GDK_SB_H_DOUBLE_ARROW, /* leftright */
6902 GDK_SIZING, /* lrsizing */
6903 GDK_WATCH, /* busy */
6904 GDK_X_CURSOR, /* no */
6905 GDK_CROSSHAIR, /* crosshair */
6906 GDK_HAND1, /* hand1 */
6907 GDK_HAND2, /* hand2 */
6908 GDK_PENCIL, /* pencil */
6909 GDK_QUESTION_ARROW, /* question */
6910 GDK_RIGHT_PTR, /* right-arrow */
6911 GDK_CENTER_PTR, /* up-arrow */
6912 GDK_LEFT_PTR /* last one */
6915 void
6916 mch_set_mouse_shape(int shape)
6918 int id;
6919 GdkCursor *c;
6921 if (gui.drawarea->window == NULL)
6922 return;
6924 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
6925 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
6926 else
6928 if (shape >= MSHAPE_NUMBERED)
6930 id = shape - MSHAPE_NUMBERED;
6931 if (id >= GDK_LAST_CURSOR)
6932 id = GDK_LEFT_PTR;
6933 else
6934 id &= ~1; /* they are always even (why?) */
6936 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
6937 id = mshape_ids[shape];
6938 else
6939 return;
6940 # ifdef HAVE_GTK_MULTIHEAD
6941 c = gdk_cursor_new_for_display(
6942 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
6943 # else
6944 c = gdk_cursor_new((GdkCursorType)id);
6945 # endif
6946 gdk_window_set_cursor(gui.drawarea->window, c);
6947 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
6949 if (shape != MSHAPE_HIDE)
6950 last_shape = shape;
6952 #endif /* FEAT_MOUSESHAPE */
6955 #if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6957 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
6958 * scaled down if the current font is not big enough, or scaled up if the image
6959 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
6960 * will be cut off if the current font is not big enough, or centered if it's
6961 * too small.
6963 # define SIGN_WIDTH (2 * gui.char_width)
6964 # define SIGN_HEIGHT (gui.char_height)
6965 # define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
6967 # ifdef HAVE_GTK2
6969 void
6970 gui_mch_drawsign(int row, int col, int typenr)
6972 GdkPixbuf *sign;
6974 sign = (GdkPixbuf *)sign_get_image(typenr);
6976 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
6978 int width;
6979 int height;
6980 int xoffset;
6981 int yoffset;
6982 int need_scale;
6984 width = gdk_pixbuf_get_width(sign);
6985 height = gdk_pixbuf_get_height(sign);
6987 * Decide whether we need to scale. Allow one pixel of border
6988 * width to be cut off, in order to avoid excessive scaling for
6989 * tiny differences in font size.
6991 need_scale = (width > SIGN_WIDTH + 2
6992 || height > SIGN_HEIGHT + 2
6993 || (width < 3 * SIGN_WIDTH / 4
6994 && height < 3 * SIGN_HEIGHT / 4));
6995 if (need_scale)
6997 double aspect;
6999 /* Keep the original aspect ratio */
7000 aspect = (double)height / (double)width;
7001 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7002 width = MIN(width, SIGN_WIDTH);
7003 height = (double)width * aspect;
7005 /* This doesn't seem to be worth caching, and doing so
7006 * would complicate the code quite a bit. */
7007 sign = gdk_pixbuf_scale_simple(sign, width, height,
7008 GDK_INTERP_BILINEAR);
7009 if (sign == NULL)
7010 return; /* out of memory */
7013 /* The origin is the upper-left corner of the pixmap. Therefore
7014 * these offset may become negative if the pixmap is smaller than
7015 * the 2x1 cells reserved for the sign icon. */
7016 xoffset = (width - SIGN_WIDTH) / 2;
7017 yoffset = (height - SIGN_HEIGHT) / 2;
7019 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7021 gdk_draw_rectangle(gui.drawarea->window,
7022 gui.text_gc,
7023 TRUE,
7024 FILL_X(col),
7025 FILL_Y(row),
7026 SIGN_WIDTH,
7027 SIGN_HEIGHT);
7029 # if GTK_CHECK_VERSION(2,1,1)
7030 gdk_draw_pixbuf(gui.drawarea->window,
7031 NULL,
7032 sign,
7033 MAX(0, xoffset),
7034 MAX(0, yoffset),
7035 FILL_X(col) - MIN(0, xoffset),
7036 FILL_Y(row) - MIN(0, yoffset),
7037 MIN(width, SIGN_WIDTH),
7038 MIN(height, SIGN_HEIGHT),
7039 GDK_RGB_DITHER_NORMAL,
7040 0, 0);
7041 # else
7042 gdk_pixbuf_render_to_drawable_alpha(sign,
7043 gui.drawarea->window,
7044 MAX(0, xoffset),
7045 MAX(0, yoffset),
7046 FILL_X(col) - MIN(0, xoffset),
7047 FILL_Y(row) - MIN(0, yoffset),
7048 MIN(width, SIGN_WIDTH),
7049 MIN(height, SIGN_HEIGHT),
7050 GDK_PIXBUF_ALPHA_BILEVEL,
7051 127,
7052 GDK_RGB_DITHER_NORMAL,
7053 0, 0);
7054 # endif
7055 if (need_scale)
7056 g_object_unref(sign);
7060 void *
7061 gui_mch_register_sign(char_u *signfile)
7063 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7065 GdkPixbuf *sign;
7066 GError *error = NULL;
7067 char_u *message;
7069 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7071 if (error == NULL)
7072 return sign;
7074 message = (char_u *)error->message;
7076 if (message != NULL && input_conv.vc_type != CONV_NONE)
7077 message = string_convert(&input_conv, message, NULL);
7079 if (message != NULL)
7081 /* The error message is already translated and will be more
7082 * descriptive than anything we could possibly do ourselves. */
7083 EMSG2("E255: %s", message);
7085 if (input_conv.vc_type != CONV_NONE)
7086 vim_free(message);
7088 g_error_free(error);
7091 return NULL;
7094 void
7095 gui_mch_destroy_sign(void *sign)
7097 if (sign != NULL)
7098 g_object_unref(sign);
7101 # else /* !HAVE_GTK2 */
7103 typedef struct
7105 GdkPixmap *pixmap;
7106 GdkBitmap *mask;
7108 signicon_T;
7110 void
7111 gui_mch_drawsign(int row, int col, int typenr)
7113 signicon_T *sign;
7115 sign = (signicon_T *)sign_get_image(typenr);
7117 if (sign != NULL && sign->pixmap != NULL
7118 && gui.drawarea != NULL && gui.drawarea->window != NULL)
7120 int width;
7121 int height;
7122 int xoffset;
7123 int yoffset;
7125 gdk_window_get_size(sign->pixmap, &width, &height);
7127 /* The origin is the upper-left corner of the pixmap. Therefore
7128 * these offset may become negative if the pixmap is smaller than
7129 * the 2x1 cells reserved for the sign icon. */
7130 xoffset = (width - SIGN_WIDTH) / 2;
7131 yoffset = (height - SIGN_HEIGHT) / 2;
7133 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7135 gdk_draw_rectangle(gui.drawarea->window,
7136 gui.text_gc,
7137 TRUE,
7138 FILL_X(col),
7139 FILL_Y(row),
7140 SIGN_WIDTH,
7141 SIGN_HEIGHT);
7143 /* Set the clip mask for bilevel transparency */
7144 if (sign->mask != NULL)
7146 gdk_gc_set_clip_origin(gui.text_gc,
7147 FILL_X(col) - xoffset,
7148 FILL_Y(row) - yoffset);
7149 gdk_gc_set_clip_mask(gui.text_gc, sign->mask);
7152 gdk_draw_pixmap(gui.drawarea->window,
7153 gui.text_gc,
7154 sign->pixmap,
7155 MAX(0, xoffset),
7156 MAX(0, yoffset),
7157 FILL_X(col) - MIN(0, xoffset),
7158 FILL_Y(row) - MIN(0, yoffset),
7159 MIN(width, SIGN_WIDTH),
7160 MIN(height, SIGN_HEIGHT));
7162 gdk_gc_set_clip_mask(gui.text_gc, NULL);
7166 void *
7167 gui_mch_register_sign(char_u *signfile)
7169 signicon_T *sign = NULL;
7171 if (signfile[0] != NUL && signfile[0] != '-'
7172 && gui.drawarea != NULL && gui.drawarea->window != NULL)
7174 sign = (signicon_T *)alloc(sizeof(signicon_T));
7176 if (sign != NULL) /* NULL == OOM == "cannot really happen" */
7178 sign->mask = NULL;
7179 sign->pixmap = gdk_pixmap_colormap_create_from_xpm(
7180 gui.drawarea->window, NULL,
7181 &sign->mask, NULL,
7182 (const char *)signfile);
7184 if (sign->pixmap == NULL)
7186 vim_free(sign);
7187 sign = NULL;
7188 EMSG(_(e_signdata));
7192 return sign;
7195 void
7196 gui_mch_destroy_sign(void *sign)
7198 if (sign != NULL)
7200 signicon_T *signicon = (signicon_T *)sign;
7202 if (signicon->pixmap != NULL)
7203 gdk_pixmap_unref(signicon->pixmap);
7204 if (signicon->mask != NULL)
7205 gdk_bitmap_unref(signicon->mask);
7207 vim_free(signicon);
7210 # endif /* !HAVE_GTK2 */
7212 #endif /* FEAT_SIGN_ICONS */