Mercurial > vim
annotate src/gui_gtk_x11.c @ 9980:b222552cf0c4 v7.4.2263
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Aug 26 22:29:11 2016 +0200
patch 7.4.2263
Problem: :filter does not work for many commands. Can only get matching
messages.
Solution: Make :filter work for :command, :map, :list, :number and :print.
Make ":filter!" show non-matching lines.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 26 Aug 2016 22:30:07 +0200 |
parents | ccb6461b82df |
children | 4aead6a9b7a9 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * Porting to GTK+ was done by: | |
12 * | |
70 | 13 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de> |
7 | 14 * |
15 * With GREAT support and continuous encouragements by Andy Kahn and of | |
16 * course Bram Moolenaar! | |
17 * | |
18 * Support for GTK+ 2 was added by: | |
19 * | |
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca> | |
21 * Daniel Elstner <daniel.elstner@gmx.net> | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
22 * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
23 * Support for GTK+ 3 was added by: |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
24 * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
25 * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com> |
7 | 26 */ |
27 | |
28 #include "vim.h" | |
7380
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
29 #ifdef USE_GRESOURCE |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
30 #include "auto/gui_gtk_gresources.h" |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
31 #endif |
1666 | 32 |
7 | 33 #ifdef FEAT_GUI_GNOME |
34 /* Gnome redefines _() and N_(). Grrr... */ | |
35 # ifdef _ | |
36 # undef _ | |
37 # endif | |
38 # ifdef N_ | |
39 # undef N_ | |
40 # endif | |
41 # ifdef textdomain | |
42 # undef textdomain | |
43 # endif | |
44 # ifdef bindtextdomain | |
45 # undef bindtextdomain | |
46 # endif | |
1286 | 47 # ifdef bind_textdomain_codeset |
48 # undef bind_textdomain_codeset | |
1226 | 49 # endif |
7 | 50 # if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS) |
51 # define ENABLE_NLS /* so the texts in the dialog boxes are translated */ | |
52 # endif | |
53 # include <gnome.h> | |
54 # include "version.h" | |
798 | 55 /* missing prototype in bonobo-dock-item.h */ |
56 extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh); | |
7 | 57 #endif |
58 | |
59 #if !defined(FEAT_GUI_GTK) && defined(PROTO) | |
60 /* When generating prototypes we don't want syntax errors. */ | |
61 # define GdkAtom int | |
62 # define GdkEventExpose int | |
63 # define GdkEventFocus int | |
64 # define GdkEventVisibility int | |
65 # define GdkEventProperty int | |
66 # define GtkContainer int | |
67 # define GtkTargetEntry int | |
68 # define GtkType int | |
69 # define GtkWidget int | |
70 # define gint int | |
71 # define gpointer int | |
72 # define guint int | |
73 # define GdkEventKey int | |
74 # define GdkEventSelection int | |
75 # define GtkSelectionData int | |
76 # define GdkEventMotion int | |
77 # define GdkEventButton int | |
78 # define GdkDragContext int | |
79 # define GdkEventConfigure int | |
80 # define GdkEventClient int | |
81 #else | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
82 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
83 # include <gdk/gdkkeysyms-compat.h> |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
84 # include <gtk/gtkx.h> |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
85 # else |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
86 # include <gdk/gdkkeysyms.h> |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
87 # endif |
7 | 88 # include <gdk/gdk.h> |
89 # ifdef WIN3264 | |
90 # include <gdk/gdkwin32.h> | |
91 # else | |
92 # include <gdk/gdkx.h> | |
93 # endif | |
94 # include <gtk/gtk.h> | |
95 # include "gui_gtk_f.h" | |
96 #endif | |
97 | |
98 #ifdef HAVE_X11_SUNKEYSYM_H | |
99 # include <X11/Sunkeysym.h> | |
2714 | 100 #endif |
101 | |
7 | 102 /* |
103 * Easy-to-use macro for multihead support. | |
104 */ | |
105 #ifdef HAVE_GTK_MULTIHEAD | |
106 # define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \ | |
107 gtk_widget_get_display(gui.mainwin), atom) | |
108 #else | |
109 # define GET_X_ATOM(atom) ((Atom)(atom)) | |
110 #endif | |
111 | |
112 /* Selection type distinguishers */ | |
113 enum | |
114 { | |
115 TARGET_TYPE_NONE, | |
116 TARGET_UTF8_STRING, | |
117 TARGET_STRING, | |
118 TARGET_COMPOUND_TEXT, | |
1904 | 119 TARGET_HTML, |
7 | 120 TARGET_TEXT, |
121 TARGET_TEXT_URI_LIST, | |
122 TARGET_TEXT_PLAIN, | |
123 TARGET_VIM, | |
124 TARGET_VIMENC | |
125 }; | |
126 | |
127 /* | |
128 * Table of selection targets supported by Vim. | |
129 * Note: Order matters, preferred types should come first. | |
130 */ | |
131 static const GtkTargetEntry selection_targets[] = | |
132 { | |
133 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC}, | |
134 {VIM_ATOM_NAME, 0, TARGET_VIM}, | |
1904 | 135 {"text/html", 0, TARGET_HTML}, |
7 | 136 {"UTF8_STRING", 0, TARGET_UTF8_STRING}, |
137 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT}, | |
138 {"TEXT", 0, TARGET_TEXT}, | |
139 {"STRING", 0, TARGET_STRING} | |
140 }; | |
141 #define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0])) | |
142 | |
143 #ifdef FEAT_DND | |
144 /* | |
145 * Table of DnD targets supported by Vim. | |
146 * Note: Order matters, preferred types should come first. | |
147 */ | |
148 static const GtkTargetEntry dnd_targets[] = | |
149 { | |
150 {"text/uri-list", 0, TARGET_TEXT_URI_LIST}, | |
1904 | 151 {"text/html", 0, TARGET_HTML}, |
7 | 152 {"UTF8_STRING", 0, TARGET_UTF8_STRING}, |
153 {"STRING", 0, TARGET_STRING}, | |
154 {"text/plain", 0, TARGET_TEXT_PLAIN} | |
155 }; | |
156 # define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0])) | |
157 #endif | |
158 | |
159 | |
160 /* | |
161 * "Monospace" is a standard font alias that should be present | |
162 * on all proper Pango/fontconfig installations. | |
163 */ | |
164 # define DEFAULT_FONT "Monospace 10" | |
165 | |
166 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) | |
167 /* | |
168 * Atoms used to communicate save-yourself from the X11 session manager. There | |
169 * is no need to move them into the GUI struct, since they should be constant. | |
170 */ | |
171 static GdkAtom wm_protocols_atom = GDK_NONE; | |
172 static GdkAtom save_yourself_atom = GDK_NONE; | |
173 #endif | |
174 | |
175 /* | |
176 * Atoms used to control/reference X11 selections. | |
177 */ | |
1904 | 178 static GdkAtom html_atom = GDK_NONE; |
7 | 179 static GdkAtom utf8_string_atom = GDK_NONE; |
180 static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */ | |
181 static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */ | |
182 | |
183 /* | |
184 * Keycodes recognized by vim. | |
185 * NOTE: when changing this, the table in gui_x11.c probably needs the same | |
186 * change! | |
187 */ | |
188 static struct special_key | |
189 { | |
190 guint key_sym; | |
191 char_u code0; | |
192 char_u code1; | |
193 } | |
194 const special_keys[] = | |
195 { | |
196 {GDK_Up, 'k', 'u'}, | |
197 {GDK_Down, 'k', 'd'}, | |
198 {GDK_Left, 'k', 'l'}, | |
199 {GDK_Right, 'k', 'r'}, | |
200 {GDK_F1, 'k', '1'}, | |
201 {GDK_F2, 'k', '2'}, | |
202 {GDK_F3, 'k', '3'}, | |
203 {GDK_F4, 'k', '4'}, | |
204 {GDK_F5, 'k', '5'}, | |
205 {GDK_F6, 'k', '6'}, | |
206 {GDK_F7, 'k', '7'}, | |
207 {GDK_F8, 'k', '8'}, | |
208 {GDK_F9, 'k', '9'}, | |
209 {GDK_F10, 'k', ';'}, | |
210 {GDK_F11, 'F', '1'}, | |
211 {GDK_F12, 'F', '2'}, | |
212 {GDK_F13, 'F', '3'}, | |
213 {GDK_F14, 'F', '4'}, | |
214 {GDK_F15, 'F', '5'}, | |
215 {GDK_F16, 'F', '6'}, | |
216 {GDK_F17, 'F', '7'}, | |
217 {GDK_F18, 'F', '8'}, | |
218 {GDK_F19, 'F', '9'}, | |
219 {GDK_F20, 'F', 'A'}, | |
220 {GDK_F21, 'F', 'B'}, | |
221 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */ | |
222 {GDK_F22, 'F', 'C'}, | |
223 {GDK_F23, 'F', 'D'}, | |
224 {GDK_F24, 'F', 'E'}, | |
225 {GDK_F25, 'F', 'F'}, | |
226 {GDK_F26, 'F', 'G'}, | |
227 {GDK_F27, 'F', 'H'}, | |
228 {GDK_F28, 'F', 'I'}, | |
229 {GDK_F29, 'F', 'J'}, | |
230 {GDK_F30, 'F', 'K'}, | |
231 {GDK_F31, 'F', 'L'}, | |
232 {GDK_F32, 'F', 'M'}, | |
233 {GDK_F33, 'F', 'N'}, | |
234 {GDK_F34, 'F', 'O'}, | |
235 {GDK_F35, 'F', 'P'}, | |
236 #ifdef SunXK_F36 | |
237 {SunXK_F36, 'F', 'Q'}, | |
238 {SunXK_F37, 'F', 'R'}, | |
239 #endif | |
240 {GDK_Help, '%', '1'}, | |
241 {GDK_Undo, '&', '8'}, | |
242 {GDK_BackSpace, 'k', 'b'}, | |
243 {GDK_Insert, 'k', 'I'}, | |
244 {GDK_Delete, 'k', 'D'}, | |
245 {GDK_3270_BackTab, 'k', 'B'}, | |
246 {GDK_Clear, 'k', 'C'}, | |
247 {GDK_Home, 'k', 'h'}, | |
248 {GDK_End, '@', '7'}, | |
249 {GDK_Prior, 'k', 'P'}, | |
250 {GDK_Next, 'k', 'N'}, | |
251 {GDK_Print, '%', '9'}, | |
252 /* Keypad keys: */ | |
253 {GDK_KP_Left, 'k', 'l'}, | |
254 {GDK_KP_Right, 'k', 'r'}, | |
255 {GDK_KP_Up, 'k', 'u'}, | |
256 {GDK_KP_Down, 'k', 'd'}, | |
257 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS}, | |
258 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL}, | |
259 {GDK_KP_Home, 'K', '1'}, | |
260 {GDK_KP_End, 'K', '4'}, | |
261 {GDK_KP_Prior, 'K', '3'}, /* page up */ | |
262 {GDK_KP_Next, 'K', '5'}, /* page down */ | |
263 | |
264 {GDK_KP_Add, 'K', '6'}, | |
265 {GDK_KP_Subtract, 'K', '7'}, | |
266 {GDK_KP_Divide, 'K', '8'}, | |
267 {GDK_KP_Multiply, 'K', '9'}, | |
268 {GDK_KP_Enter, 'K', 'A'}, | |
269 {GDK_KP_Decimal, 'K', 'B'}, | |
270 | |
271 {GDK_KP_0, 'K', 'C'}, | |
272 {GDK_KP_1, 'K', 'D'}, | |
273 {GDK_KP_2, 'K', 'E'}, | |
274 {GDK_KP_3, 'K', 'F'}, | |
275 {GDK_KP_4, 'K', 'G'}, | |
276 {GDK_KP_5, 'K', 'H'}, | |
277 {GDK_KP_6, 'K', 'I'}, | |
278 {GDK_KP_7, 'K', 'J'}, | |
279 {GDK_KP_8, 'K', 'K'}, | |
280 {GDK_KP_9, 'K', 'L'}, | |
281 | |
282 /* End of list marker: */ | |
283 {0, 0, 0} | |
284 }; | |
285 | |
286 /* | |
287 * Flags for command line options table below. | |
288 */ | |
289 #define ARG_FONT 1 | |
290 #define ARG_GEOMETRY 2 | |
291 #define ARG_REVERSE 3 | |
292 #define ARG_NOREVERSE 4 | |
293 #define ARG_BACKGROUND 5 | |
294 #define ARG_FOREGROUND 6 | |
295 #define ARG_ICONIC 7 | |
296 #define ARG_ROLE 8 | |
297 #define ARG_NETBEANS 9 | |
298 #define ARG_XRM 10 /* ignored */ | |
299 #define ARG_MENUFONT 11 /* ignored */ | |
300 #define ARG_INDEX_MASK 0x00ff | |
301 #define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */ | |
302 #define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */ | |
303 #define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */ | |
304 #define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */ | |
305 #define ARG_KEEP 0x1000 /* don't remove argument from argv[] */ | |
306 | |
307 /* | |
308 * This table holds all the X GUI command line options allowed. This includes | |
309 * the standard ones so that we can skip them when Vim is started without the | |
310 * GUI (but the GUI might start up later). | |
311 * | |
312 * When changing this, also update doc/gui_x11.txt and the usage message!!! | |
313 */ | |
314 typedef struct | |
315 { | |
316 const char *name; | |
317 unsigned int flags; | |
318 } | |
319 cmdline_option_T; | |
320 | |
321 static const cmdline_option_T cmdline_options[] = | |
322 { | |
323 /* We handle these options ourselves */ | |
324 {"-fn", ARG_FONT|ARG_HAS_VALUE}, | |
325 {"-font", ARG_FONT|ARG_HAS_VALUE}, | |
326 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE}, | |
327 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE}, | |
328 {"-rv", ARG_REVERSE}, | |
329 {"-reverse", ARG_REVERSE}, | |
330 {"+rv", ARG_NOREVERSE}, | |
331 {"+reverse", ARG_NOREVERSE}, | |
332 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE}, | |
333 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE}, | |
334 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE}, | |
335 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE}, | |
336 {"-iconic", ARG_ICONIC}, | |
337 {"--role", ARG_ROLE|ARG_HAS_VALUE}, | |
338 #ifdef FEAT_NETBEANS_INTG | |
339 {"-nb", ARG_NETBEANS}, /* non-standard value format */ | |
340 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */ | |
341 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */ | |
342 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */ | |
343 #endif | |
344 /* Arguments handled by GTK (and GNOME) internally. */ | |
345 {"--g-fatal-warnings", ARG_FOR_GTK}, | |
346 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
347 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
348 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
349 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
350 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
351 {"--sync", ARG_FOR_GTK}, | |
352 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, | |
353 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, | |
354 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, | |
355 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
356 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
357 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
358 #ifdef FEAT_GUI_GNOME | |
359 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
360 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
361 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
362 {"--sm-disable", ARG_FOR_GTK}, | |
363 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
364 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
365 {"--oaf-private", ARG_FOR_GTK}, | |
366 {"--enable-sound", ARG_FOR_GTK}, | |
367 {"--disable-sound", ARG_FOR_GTK}, | |
368 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
369 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI}, | |
370 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP}, | |
371 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI}, | |
372 # if 0 /* conflicts with Vim's own --version argument */ | |
373 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI}, | |
374 # endif | |
375 {"--disable-crash-dialog", ARG_FOR_GTK}, | |
376 #endif | |
377 {NULL, 0} | |
378 }; | |
379 | |
380 static int gui_argc = 0; | |
381 static char **gui_argv = NULL; | |
382 | |
383 static const char *role_argument = NULL; | |
384 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) | |
385 static const char *restart_command = NULL; | |
1898 | 386 static char *abs_restart_command = NULL; |
7 | 387 #endif |
388 static int found_iconic_arg = FALSE; | |
389 | |
390 #ifdef FEAT_GUI_GNOME | |
391 /* | |
392 * Can't use Gnome if --socketid given | |
393 */ | |
394 static int using_gnome = 0; | |
395 #else | |
396 # define using_gnome 0 | |
397 #endif | |
398 | |
399 /* | |
400 * Parse the GUI related command-line arguments. Any arguments used are | |
401 * deleted from argv, and *argc is decremented accordingly. This is called | |
402 * when vim is started, whether or not the GUI has been started. | |
403 */ | |
404 void | |
405 gui_mch_prepare(int *argc, char **argv) | |
406 { | |
407 const cmdline_option_T *option; | |
408 int i = 0; | |
409 int len = 0; | |
410 | |
411 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) | |
412 /* | |
413 * Determine the command used to invoke Vim, to be passed as restart | |
414 * command to the session manager. If argv[0] contains any directory | |
415 * components try building an absolute path, otherwise leave it as is. | |
416 */ | |
417 restart_command = argv[0]; | |
418 | |
419 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL) | |
420 { | |
421 char_u buf[MAXPATHL]; | |
422 | |
423 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK) | |
1898 | 424 { |
425 abs_restart_command = (char *)vim_strsave(buf); | |
426 restart_command = abs_restart_command; | |
427 } | |
7 | 428 } |
429 #endif | |
430 | |
431 /* | |
432 * Move all the entries in argv which are relevant to GTK+ and GNOME | |
433 * into gui_argv. Freed later in gui_mch_init(). | |
434 */ | |
435 gui_argc = 0; | |
436 gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *))); | |
437 | |
438 g_return_if_fail(gui_argv != NULL); | |
439 | |
440 gui_argv[gui_argc++] = argv[i++]; | |
441 | |
442 while (i < *argc) | |
443 { | |
444 /* Don't waste CPU cycles on non-option arguments. */ | |
445 if (argv[i][0] != '-' && argv[i][0] != '+') | |
446 { | |
447 ++i; | |
448 continue; | |
449 } | |
450 | |
451 /* Look for argv[i] in cmdline_options[] table. */ | |
452 for (option = &cmdline_options[0]; option->name != NULL; ++option) | |
453 { | |
454 len = strlen(option->name); | |
455 | |
456 if (strncmp(argv[i], option->name, len) == 0) | |
457 { | |
458 if (argv[i][len] == '\0') | |
459 break; | |
460 /* allow --foo=bar style */ | |
461 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE)) | |
462 break; | |
463 #ifdef FEAT_NETBEANS_INTG | |
464 /* darn, -nb has non-standard syntax */ | |
465 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL | |
466 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS) | |
467 break; | |
468 #endif | |
469 } | |
470 else if ((option->flags & ARG_COMPAT_LONG) | |
471 && strcmp(argv[i], option->name + 1) == 0) | |
472 { | |
473 /* Replace the standard X arguments "-name" and "-display" | |
474 * with their GNU-style long option counterparts. */ | |
475 argv[i] = (char *)option->name; | |
476 break; | |
477 } | |
478 } | |
479 if (option->name == NULL) /* no match */ | |
480 { | |
481 ++i; | |
482 continue; | |
483 } | |
484 | |
485 if (option->flags & ARG_FOR_GTK) | |
486 { | |
487 /* Move the argument into gui_argv, which | |
488 * will later be passed to gtk_init_check() */ | |
489 gui_argv[gui_argc++] = argv[i]; | |
490 } | |
491 else | |
492 { | |
493 char *value = NULL; | |
494 | |
495 /* Extract the option's value if there is one. | |
496 * Accept both "--foo bar" and "--foo=bar" style. */ | |
497 if (option->flags & ARG_HAS_VALUE) | |
498 { | |
499 if (argv[i][len] == '=') | |
500 value = &argv[i][len + 1]; | |
501 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0) | |
502 value = argv[i + 1]; | |
503 } | |
504 | |
505 /* Check for options handled by Vim itself */ | |
506 switch (option->flags & ARG_INDEX_MASK) | |
507 { | |
508 case ARG_REVERSE: | |
509 found_reverse_arg = TRUE; | |
510 break; | |
511 case ARG_NOREVERSE: | |
512 found_reverse_arg = FALSE; | |
513 break; | |
514 case ARG_FONT: | |
515 font_argument = value; | |
516 break; | |
517 case ARG_GEOMETRY: | |
518 if (value != NULL) | |
519 gui.geom = vim_strsave((char_u *)value); | |
520 break; | |
521 case ARG_BACKGROUND: | |
522 background_argument = value; | |
523 break; | |
524 case ARG_FOREGROUND: | |
525 foreground_argument = value; | |
526 break; | |
527 case ARG_ICONIC: | |
528 found_iconic_arg = TRUE; | |
529 break; | |
530 case ARG_ROLE: | |
531 role_argument = value; /* used later in gui_mch_open() */ | |
532 break; | |
533 #ifdef FEAT_NETBEANS_INTG | |
534 case ARG_NETBEANS: | |
535 gui.dofork = FALSE; /* don't fork() when starting GUI */ | |
536 netbeansArg = argv[i]; | |
537 break; | |
538 #endif | |
539 default: | |
540 break; | |
541 } | |
542 } | |
543 | |
544 /* These arguments make gnome_program_init() print a message and exit. | |
9836
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
545 * Must start the GUI for this, otherwise ":gui" will exit later! |
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
546 * Only when the GUI can start. */ |
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
547 if ((option->flags & ARG_NEEDS_GUI) |
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
548 && gui_mch_early_init_check(FALSE) == OK) |
7 | 549 gui.starting = TRUE; |
550 | |
551 if (option->flags & ARG_KEEP) | |
552 ++i; | |
553 else | |
554 { | |
555 /* Remove the flag from the argument vector. */ | |
556 if (--*argc > i) | |
557 { | |
558 int n_strip = 1; | |
559 | |
560 /* Move the argument's value as well, if there is one. */ | |
561 if ((option->flags & ARG_HAS_VALUE) | |
562 && argv[i][len] != '=' | |
563 && strcmp(argv[i + 1], "--") != 0) | |
564 { | |
565 ++n_strip; | |
566 --*argc; | |
567 if (option->flags & ARG_FOR_GTK) | |
568 gui_argv[gui_argc++] = argv[i + 1]; | |
569 } | |
570 | |
571 if (*argc > i) | |
572 mch_memmove(&argv[i], &argv[i + n_strip], | |
573 (*argc - i) * sizeof(char *)); | |
574 } | |
575 argv[*argc] = NULL; | |
576 } | |
577 } | |
578 | |
579 gui_argv[gui_argc] = NULL; | |
580 } | |
581 | |
359 | 582 #if defined(EXITFREE) || defined(PROTO) |
583 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
584 gui_mch_free_all(void) |
359 | 585 { |
586 vim_free(gui_argv); | |
1898 | 587 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
588 vim_free(abs_restart_command); | |
589 #endif | |
359 | 590 } |
591 #endif | |
592 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
593 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 594 /* |
595 * This should be maybe completely removed. | |
596 * Doesn't seem possible, since check_copy_area() relies on | |
597 * this information. --danielk | |
598 */ | |
599 static gint | |
1884 | 600 visibility_event(GtkWidget *widget UNUSED, |
601 GdkEventVisibility *event, | |
602 gpointer data UNUSED) | |
7 | 603 { |
604 gui.visibility = event->state; | |
605 /* | |
606 * When we do an gdk_window_copy_area(), and the window is partially | |
607 * obscured, we want to receive an event to tell us whether it worked | |
608 * or not. | |
609 */ | |
610 if (gui.text_gc != NULL) | |
611 gdk_gc_set_exposures(gui.text_gc, | |
612 gui.visibility != GDK_VISIBILITY_UNOBSCURED); | |
613 return FALSE; | |
614 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
615 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 616 |
617 /* | |
618 * Redraw the corresponding portions of the screen. | |
619 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
620 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
621 static gboolean is_key_pressed = FALSE; |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
622 static gboolean blink_mode = TRUE; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
623 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
624 static gboolean gui_gtk_is_blink_on(void); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
625 static void gui_gtk_window_clear(GdkWindow *win); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
626 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
627 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
628 gui_gtk3_redraw(int x, int y, int width, int height) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
629 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
630 gui_redraw_block(Y_2_ROW(y), X_2_COL(x), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
631 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
632 GUI_MON_NOCLEAR); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
633 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
634 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
635 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
636 gui_gtk3_update_cursor(cairo_t *cr) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
637 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
638 if (gui.row == gui.cursor_row) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
639 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
640 gui.by_signal = TRUE; |
8495
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
641 if (State & CMDLINE) |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
642 gui_update_cursor(TRUE, FALSE); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
643 else |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
644 gui_update_cursor(TRUE, TRUE); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
645 gui.by_signal = FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
646 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
647 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
648 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
649 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
650 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
651 gui_gtk3_should_draw_cursor(void) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
652 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
653 unsigned int cond = 0; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
654 cond |= gui_gtk_is_blink_on(); |
8510
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
655 if (gui.cursor_col >= gui.col) |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
656 cond |= is_key_pressed; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
657 cond |= gui.in_focus == FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
658 return cond; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
659 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
660 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
661 static gboolean |
9232
a64e2a624fbe
commit https://github.com/vim/vim/commit/8e31fd52ec8be6ef1dc600b637d5f099d55e1715
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
662 draw_event(GtkWidget *widget UNUSED, |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
663 cairo_t *cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
664 gpointer user_data UNUSED) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
665 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
666 /* Skip this when the GUI isn't set up yet, will redraw later. */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
667 if (gui.starting) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
668 return FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
669 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
670 out_flush(); /* make sure all output has been processed */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
671 /* for GTK+ 3, may induce other draw events. */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
672 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
673 cairo_set_source_surface(cr, gui.surface, 0, 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
674 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
675 /* Draw the window without the cursor. */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
676 gui.by_signal = TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
677 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
678 cairo_rectangle_list_t *list = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
679 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
680 list = cairo_copy_clip_rectangle_list(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
681 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
682 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
683 int i; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
684 for (i = 0; i < list->num_rectangles; i++) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
685 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
686 const cairo_rectangle_t rect = list->rectangles[i]; |
9232
a64e2a624fbe
commit https://github.com/vim/vim/commit/8e31fd52ec8be6ef1dc600b637d5f099d55e1715
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
687 |
a64e2a624fbe
commit https://github.com/vim/vim/commit/8e31fd52ec8be6ef1dc600b637d5f099d55e1715
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
688 gui_mch_clear_block(Y_2_ROW(rect.y), 1, |
a64e2a624fbe
commit https://github.com/vim/vim/commit/8e31fd52ec8be6ef1dc600b637d5f099d55e1715
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
689 Y_2_ROW(rect.y + rect.height - 1), Columns); |
a64e2a624fbe
commit https://github.com/vim/vim/commit/8e31fd52ec8be6ef1dc600b637d5f099d55e1715
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
690 |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
691 if (blink_mode) |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
692 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height); |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
693 else |
8510
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
694 { |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
695 if (get_real_state() & VISUAL) |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
696 gui_gtk3_redraw(rect.x, rect.y, |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
697 rect.width, rect.height); |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
698 else |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
699 gui_redraw(rect.x, rect.y, rect.width, rect.height); |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
700 } |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
701 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
702 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
703 cairo_rectangle_list_destroy(list); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
704 |
8510
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
705 if (get_real_state() & VISUAL) |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
706 { |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
707 if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col) |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
708 gui_update_cursor(TRUE, TRUE); |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
709 } |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
710 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
711 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
712 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
713 gui.by_signal = FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
714 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
715 /* Add the cursor to the window if necessary.*/ |
8510
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
716 if (gui_gtk3_should_draw_cursor() && blink_mode) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
717 gui_gtk3_update_cursor(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
718 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
719 return FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
720 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
721 #else /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 722 static gint |
1884 | 723 expose_event(GtkWidget *widget UNUSED, |
724 GdkEventExpose *event, | |
725 gpointer data UNUSED) | |
7 | 726 { |
727 /* Skip this when the GUI isn't set up yet, will redraw later. */ | |
728 if (gui.starting) | |
729 return FALSE; | |
730 | |
731 out_flush(); /* make sure all output has been processed */ | |
732 gui_redraw(event->area.x, event->area.y, | |
733 event->area.width, event->area.height); | |
734 | |
735 /* Clear the border areas if needed */ | |
736 if (event->area.x < FILL_X(0)) | |
737 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0); | |
738 if (event->area.y < FILL_Y(0)) | |
739 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0)); | |
740 if (event->area.x > FILL_X(Columns)) | |
741 gdk_window_clear_area(gui.drawarea->window, | |
742 FILL_X((int)Columns), 0, 0, 0); | |
743 if (event->area.y > FILL_Y(Rows)) | |
744 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0); | |
745 | |
746 return FALSE; | |
747 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
748 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 749 |
750 #ifdef FEAT_CLIENTSERVER | |
751 /* | |
752 * Handle changes to the "Comm" property | |
753 */ | |
754 static gint | |
1884 | 755 property_event(GtkWidget *widget, |
756 GdkEventProperty *event, | |
757 gpointer data UNUSED) | |
7 | 758 { |
759 if (event->type == GDK_PROPERTY_NOTIFY | |
760 && event->state == (int)GDK_PROPERTY_NEW_VALUE | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
761 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
762 && GDK_WINDOW_XID(event->window) == commWindow |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
763 # else |
7 | 764 && GDK_WINDOW_XWINDOW(event->window) == commWindow |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
765 # endif |
7 | 766 && GET_X_ATOM(event->atom) == commProperty) |
767 { | |
768 XEvent xev; | |
769 | |
770 /* Translate to XLib */ | |
771 xev.xproperty.type = PropertyNotify; | |
772 xev.xproperty.atom = commProperty; | |
773 xev.xproperty.window = commWindow; | |
774 xev.xproperty.state = PropertyNewValue; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
775 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
776 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
777 &xev, 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
778 # else |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
779 serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
780 # endif |
7 | 781 } |
782 return FALSE; | |
783 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
784 #endif /* defined(FEAT_CLIENTSERVER) */ |
7 | 785 |
786 | |
787 /**************************************************************************** | |
788 * Focus handlers: | |
789 */ | |
790 | |
791 | |
792 /* | |
793 * This is a simple state machine: | |
794 * BLINK_NONE not blinking at all | |
795 * BLINK_OFF blinking, cursor is not shown | |
796 * BLINK_ON blinking, cursor is shown | |
797 */ | |
798 | |
799 #define BLINK_NONE 0 | |
800 #define BLINK_OFF 1 | |
801 #define BLINK_ON 2 | |
802 | |
803 static int blink_state = BLINK_NONE; | |
804 static long_u blink_waittime = 700; | |
805 static long_u blink_ontime = 400; | |
806 static long_u blink_offtime = 250; | |
807 static guint blink_timer = 0; | |
808 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
809 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
810 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
811 gui_gtk_is_blink_on(void) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
812 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
813 return blink_state == BLINK_ON; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
814 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
815 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
816 |
9213
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
817 int |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
818 gui_mch_is_blinking(void) |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
819 { |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
820 return blink_state != BLINK_NONE; |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
821 } |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
822 |
9428
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
823 int |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
824 gui_mch_is_blink_off(void) |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
825 { |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
826 return blink_state == BLINK_OFF; |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
827 } |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
828 |
7 | 829 void |
830 gui_mch_set_blinking(long waittime, long on, long off) | |
831 { | |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
832 #if GTK_CHECK_VERSION(3,0,0) |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
833 if (waittime == 0 || on == 0 || off == 0) |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
834 { |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
835 blink_mode = FALSE; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
836 |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
837 blink_waittime = 700; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
838 blink_ontime = 400; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
839 blink_offtime = 250; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
840 } |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
841 else |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
842 { |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
843 blink_mode = TRUE; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
844 |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
845 blink_waittime = waittime; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
846 blink_ontime = on; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
847 blink_offtime = off; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
848 } |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
849 #else |
7 | 850 blink_waittime = waittime; |
851 blink_ontime = on; | |
852 blink_offtime = off; | |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
853 #endif |
7 | 854 } |
855 | |
856 /* | |
857 * Stop the cursor blinking. Show the cursor if it wasn't shown. | |
858 */ | |
859 void | |
860 gui_mch_stop_blink(void) | |
861 { | |
862 if (blink_timer) | |
863 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
864 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
865 g_source_remove(blink_timer); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
866 #else |
7 | 867 gtk_timeout_remove(blink_timer); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
868 #endif |
7 | 869 blink_timer = 0; |
870 } | |
871 if (blink_state == BLINK_OFF) | |
9489
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
872 { |
7 | 873 gui_update_cursor(TRUE, FALSE); |
9489
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
874 gui_mch_flush(); |
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
875 } |
7 | 876 blink_state = BLINK_NONE; |
877 } | |
878 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
879 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
880 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
881 #else |
7 | 882 static gint |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
883 #endif |
1884 | 884 blink_cb(gpointer data UNUSED) |
7 | 885 { |
886 if (blink_state == BLINK_ON) | |
887 { | |
888 gui_undraw_cursor(); | |
889 blink_state = BLINK_OFF; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
890 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
891 blink_timer = g_timeout_add((guint)blink_offtime, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
892 (GSourceFunc) blink_cb, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
893 #else |
7 | 894 blink_timer = gtk_timeout_add((guint32)blink_offtime, |
895 (GtkFunction) blink_cb, NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
896 #endif |
7 | 897 } |
898 else | |
899 { | |
900 gui_update_cursor(TRUE, FALSE); | |
901 blink_state = BLINK_ON; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
902 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
903 blink_timer = g_timeout_add((guint)blink_ontime, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
904 (GSourceFunc) blink_cb, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
905 #else |
7 | 906 blink_timer = gtk_timeout_add((guint32)blink_ontime, |
907 (GtkFunction) blink_cb, NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
908 #endif |
7 | 909 } |
9489
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
910 gui_mch_flush(); |
7 | 911 |
912 return FALSE; /* don't happen again */ | |
913 } | |
914 | |
915 /* | |
916 * Start the cursor blinking. If it was already blinking, this restarts the | |
917 * waiting time and shows the cursor. | |
918 */ | |
919 void | |
920 gui_mch_start_blink(void) | |
921 { | |
922 if (blink_timer) | |
5818 | 923 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
924 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
925 g_source_remove(blink_timer); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
926 #else |
7 | 927 gtk_timeout_remove(blink_timer); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
928 #endif |
5818 | 929 blink_timer = 0; |
930 } | |
7 | 931 /* Only switch blinking on if none of the times is zero */ |
932 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus) | |
933 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
934 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
935 blink_timer = g_timeout_add((guint)blink_waittime, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
936 (GSourceFunc) blink_cb, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
937 #else |
7 | 938 blink_timer = gtk_timeout_add((guint32)blink_waittime, |
939 (GtkFunction) blink_cb, NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
940 #endif |
7 | 941 blink_state = BLINK_ON; |
942 gui_update_cursor(TRUE, FALSE); | |
9489
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
943 gui_mch_flush(); |
7 | 944 } |
945 } | |
946 | |
947 static gint | |
1884 | 948 enter_notify_event(GtkWidget *widget UNUSED, |
949 GdkEventCrossing *event UNUSED, | |
950 gpointer data UNUSED) | |
7 | 951 { |
952 if (blink_state == BLINK_NONE) | |
953 gui_mch_start_blink(); | |
954 | |
955 /* make sure keyboard input goes there */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
956 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
957 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea)) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
958 #else |
7 | 959 if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea)) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
960 #endif |
7 | 961 gtk_widget_grab_focus(gui.drawarea); |
962 | |
963 return FALSE; | |
964 } | |
965 | |
966 static gint | |
1884 | 967 leave_notify_event(GtkWidget *widget UNUSED, |
968 GdkEventCrossing *event UNUSED, | |
969 gpointer data UNUSED) | |
7 | 970 { |
971 if (blink_state != BLINK_NONE) | |
972 gui_mch_stop_blink(); | |
973 | |
974 return FALSE; | |
975 } | |
976 | |
977 static gint | |
1884 | 978 focus_in_event(GtkWidget *widget, |
979 GdkEventFocus *event UNUSED, | |
980 gpointer data UNUSED) | |
7 | 981 { |
982 gui_focus_change(TRUE); | |
983 | |
984 if (blink_state == BLINK_NONE) | |
985 gui_mch_start_blink(); | |
986 | |
1380 | 987 /* make sure keyboard input goes to the draw area (if this is focus for a |
988 * window) */ | |
791 | 989 if (widget != gui.drawarea) |
856 | 990 gtk_widget_grab_focus(gui.drawarea); |
7 | 991 |
992 return TRUE; | |
993 } | |
994 | |
995 static gint | |
1884 | 996 focus_out_event(GtkWidget *widget UNUSED, |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
997 GdkEventFocus *event UNUSED, |
1884 | 998 gpointer data UNUSED) |
7 | 999 { |
1000 gui_focus_change(FALSE); | |
1001 | |
1002 if (blink_state != BLINK_NONE) | |
1003 gui_mch_stop_blink(); | |
1004 | |
1005 return TRUE; | |
1006 } | |
1007 | |
1008 | |
1009 /* | |
1010 * Translate a GDK key value to UTF-8 independently of the current locale. | |
1011 * The output is written to string, which must have room for at least 6 bytes | |
1012 * plus the NUL terminator. Returns the length in bytes. | |
1013 * | |
1014 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use | |
1015 * of GdkEventKey::string instead. But event->string is evil; see here why: | |
1016 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey | |
1017 */ | |
1018 static int | |
1019 keyval_to_string(unsigned int keyval, unsigned int state, char_u *string) | |
1020 { | |
1021 int len; | |
1022 guint32 uc; | |
1023 | |
1024 uc = gdk_keyval_to_unicode(keyval); | |
1025 if (uc != 0) | |
1026 { | |
1027 /* Check for CTRL-foo */ | |
1028 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80) | |
1029 { | |
1030 /* These mappings look arbitrary at the first glance, but in fact | |
1031 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my | |
1032 * machine. The only difference is BS vs. DEL for CTRL-8 (makes | |
1033 * more sense and is consistent with usual terminal behaviour). */ | |
1034 if (uc >= '@') | |
1035 string[0] = uc & 0x1F; | |
1036 else if (uc == '2') | |
1037 string[0] = NUL; | |
1038 else if (uc >= '3' && uc <= '7') | |
1039 string[0] = uc ^ 0x28; | |
1040 else if (uc == '8') | |
1041 string[0] = BS; | |
1042 else if (uc == '?') | |
1043 string[0] = DEL; | |
1044 else | |
1045 string[0] = uc; | |
1046 len = 1; | |
1047 } | |
1048 else | |
1049 { | |
1050 /* Translate a normal key to UTF-8. This doesn't work for dead | |
1051 * keys of course, you _have_ to use an input method for that. */ | |
1052 len = utf_char2bytes((int)uc, string); | |
1053 } | |
1054 } | |
1055 else | |
1056 { | |
1057 /* Translate keys which are represented by ASCII control codes in Vim. | |
1058 * There are only a few of those; most control keys are translated to | |
1059 * special terminal-like control sequences. */ | |
1060 len = 1; | |
1061 switch (keyval) | |
1062 { | |
1063 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab: | |
1064 string[0] = TAB; | |
1065 break; | |
1066 case GDK_Linefeed: | |
1067 string[0] = NL; | |
1068 break; | |
1069 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter: | |
1070 string[0] = CAR; | |
1071 break; | |
1072 case GDK_Escape: | |
1073 string[0] = ESC; | |
1074 break; | |
1075 default: | |
1076 len = 0; | |
1077 break; | |
1078 } | |
1079 } | |
1080 string[len] = NUL; | |
1081 | |
1082 return len; | |
1083 } | |
1084 | |
179 | 1085 static int |
1086 modifiers_gdk2vim(guint state) | |
1087 { | |
1088 int modifiers = 0; | |
1089 | |
1090 if (state & GDK_SHIFT_MASK) | |
1091 modifiers |= MOD_MASK_SHIFT; | |
1092 if (state & GDK_CONTROL_MASK) | |
1093 modifiers |= MOD_MASK_CTRL; | |
1094 if (state & GDK_MOD1_MASK) | |
1095 modifiers |= MOD_MASK_ALT; | |
2550
7c1f73452ea6
Fix #ifdef for GDK_SUPER_MASK.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1096 #if GTK_CHECK_VERSION(2,10,0) |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1097 if (state & GDK_SUPER_MASK) |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1098 modifiers |= MOD_MASK_META; |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1099 #endif |
179 | 1100 if (state & GDK_MOD4_MASK) |
1101 modifiers |= MOD_MASK_META; | |
1102 | |
1103 return modifiers; | |
1104 } | |
1105 | |
1106 static int | |
1107 modifiers_gdk2mouse(guint state) | |
1108 { | |
1109 int modifiers = 0; | |
1110 | |
1111 if (state & GDK_SHIFT_MASK) | |
1112 modifiers |= MOUSE_SHIFT; | |
1113 if (state & GDK_CONTROL_MASK) | |
1114 modifiers |= MOUSE_CTRL; | |
1115 if (state & GDK_MOD1_MASK) | |
1116 modifiers |= MOUSE_ALT; | |
1117 | |
1118 return modifiers; | |
1119 } | |
1120 | |
7 | 1121 /* |
1122 * Main keyboard handler: | |
1123 */ | |
1124 static gint | |
1884 | 1125 key_press_event(GtkWidget *widget UNUSED, |
1126 GdkEventKey *event, | |
1127 gpointer data UNUSED) | |
7 | 1128 { |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
1129 /* For GTK+ 2 we know for sure how large the string might get. |
7 | 1130 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */ |
1131 char_u string[32], string2[32]; | |
1132 guint key_sym; | |
1133 int len; | |
1134 int i; | |
1135 int modifiers; | |
1136 int key; | |
1137 guint state; | |
1138 char_u *s, *d; | |
1139 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1140 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1141 is_key_pressed = TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1142 gui_mch_stop_blink(); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1143 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1144 |
2923 | 1145 gui.event_time = event->time; |
7 | 1146 key_sym = event->keyval; |
1147 state = event->state; | |
1148 | |
1149 #ifdef FEAT_XIM | |
1150 if (xim_queue_key_press_event(event, TRUE)) | |
1151 return TRUE; | |
1152 #endif | |
1153 | |
1154 #ifdef FEAT_HANGULIN | |
1155 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK)) | |
1156 { | |
1157 hangul_input_state_toggle(); | |
1158 return TRUE; | |
1159 } | |
1160 #endif | |
1161 | |
1162 #ifdef SunXK_F36 | |
1163 /* | |
1164 * These keys have bogus lookup strings, and trapping them here is | |
1165 * easier than trying to XRebindKeysym() on them with every possible | |
1166 * combination of modifiers. | |
1167 */ | |
1168 if (key_sym == SunXK_F36 || key_sym == SunXK_F37) | |
1169 len = 0; | |
1170 else | |
1171 #endif | |
1172 { | |
1173 len = keyval_to_string(key_sym, state, string2); | |
1174 | |
1175 /* Careful: convert_input() doesn't handle the NUL character. | |
1176 * No need to convert pure ASCII anyway, thus the len > 1 check. */ | |
1177 if (len > 1 && input_conv.vc_type != CONV_NONE) | |
1178 len = convert_input(string2, len, sizeof(string2)); | |
1179 | |
1180 s = string2; | |
1181 d = string; | |
1182 for (i = 0; i < len; ++i) | |
1183 { | |
1184 *d++ = s[i]; | |
1185 if (d[-1] == CSI && d + 2 < string + sizeof(string)) | |
1186 { | |
1187 /* Turn CSI into K_CSI. */ | |
1188 *d++ = KS_EXTRA; | |
1189 *d++ = (int)KE_CSI; | |
1190 } | |
1191 } | |
1192 len = d - string; | |
1193 } | |
1194 | |
1195 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */ | |
1196 if (key_sym == GDK_ISO_Left_Tab) | |
1197 { | |
1198 key_sym = GDK_Tab; | |
1199 state |= GDK_SHIFT_MASK; | |
1200 } | |
1201 | |
1202 #ifdef FEAT_MENU | |
1203 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key | |
1204 * is a menu shortcut, we ignore everything with the ALT modifier. */ | |
1205 if ((state & GDK_MOD1_MASK) | |
1206 && gui.menu_is_active | |
1207 && (*p_wak == 'y' | |
1208 || (*p_wak == 'm' | |
1209 && len == 1 | |
1210 && gui_is_menu_shortcut(string[0])))) | |
1211 /* For GTK2 we return false to signify that we haven't handled the | |
1212 * keypress, so that gtk will handle the mnemonic or accelerator. */ | |
1213 return FALSE; | |
1214 #endif | |
1215 | |
1216 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character | |
1217 * that already has the 8th bit set. | |
1218 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT. | |
1219 * Don't do this for double-byte encodings, it turns the char into a lead | |
1220 * byte. */ | |
1221 if (len == 1 | |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1222 && ((state & GDK_MOD1_MASK) |
2571
42bdbc2bbb59
Fix #ifdef for GDK_SUPER_MASK. (Stephan Schulz)
Bram Moolenaar <bram@vim.org>
parents:
2550
diff
changeset
|
1223 #if GTK_CHECK_VERSION(2,10,0) |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1224 || (state & GDK_SUPER_MASK) |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1225 #endif |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1226 ) |
7 | 1227 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete) |
1228 && (string[0] & 0x80) == 0 | |
1229 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK)) | |
1230 && !enc_dbcs | |
1231 ) | |
1232 { | |
1233 string[0] |= 0x80; | |
1234 state &= ~GDK_MOD1_MASK; /* don't use it again */ | |
1235 if (enc_utf8) /* convert to utf-8 */ | |
1236 { | |
1237 string[1] = string[0] & 0xbf; | |
1238 string[0] = ((unsigned)string[0] >> 6) + 0xc0; | |
1239 if (string[1] == CSI) | |
1240 { | |
1241 string[2] = KS_EXTRA; | |
1242 string[3] = (int)KE_CSI; | |
1243 len = 4; | |
1244 } | |
1245 else | |
1246 len = 2; | |
1247 } | |
1248 } | |
1249 | |
1250 /* Check for special keys. Also do this when len == 1 (key has an ASCII | |
1251 * value) to detect backspace, delete and keypad keys. */ | |
1252 if (len == 0 || len == 1) | |
1253 { | |
1254 for (i = 0; special_keys[i].key_sym != 0; i++) | |
1255 { | |
1256 if (special_keys[i].key_sym == key_sym) | |
1257 { | |
1258 string[0] = CSI; | |
1259 string[1] = special_keys[i].code0; | |
1260 string[2] = special_keys[i].code1; | |
1261 len = -3; | |
1262 break; | |
1263 } | |
1264 } | |
1265 } | |
1266 | |
1267 if (len == 0) /* Unrecognized key */ | |
1268 return TRUE; | |
1269 | |
1270 /* Special keys (and a few others) may have modifiers. Also when using a | |
1271 * double-byte encoding (can't set the 8th bit). */ | |
1272 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab | |
1273 || key_sym == GDK_Return || key_sym == GDK_Linefeed | |
1274 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab | |
1275 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter | |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1276 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK) |
2571
42bdbc2bbb59
Fix #ifdef for GDK_SUPER_MASK. (Stephan Schulz)
Bram Moolenaar <bram@vim.org>
parents:
2550
diff
changeset
|
1277 #if GTK_CHECK_VERSION(2,10,0) |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1278 || (state & GDK_SUPER_MASK) |
7 | 1279 #endif |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
1280 ))) |
7 | 1281 { |
179 | 1282 modifiers = modifiers_gdk2vim(state); |
7 | 1283 |
1284 /* | |
1285 * For some keys a shift modifier is translated into another key | |
1286 * code. | |
1287 */ | |
1288 if (len == -3) | |
1289 key = TO_SPECIAL(string[1], string[2]); | |
1290 else | |
1291 key = string[0]; | |
1292 | |
1293 key = simplify_key(key, &modifiers); | |
1294 if (key == CSI) | |
1295 key = K_CSI; | |
1296 if (IS_SPECIAL(key)) | |
1297 { | |
1298 string[0] = CSI; | |
1299 string[1] = K_SECOND(key); | |
1300 string[2] = K_THIRD(key); | |
1301 len = 3; | |
1302 } | |
1303 else | |
1304 { | |
1305 string[0] = key; | |
1306 len = 1; | |
1307 } | |
1308 | |
1309 if (modifiers != 0) | |
1310 { | |
1311 string2[0] = CSI; | |
1312 string2[1] = KS_MODIFIER; | |
1313 string2[2] = modifiers; | |
1314 add_to_input_buf(string2, 3); | |
1315 } | |
1316 } | |
1317 | |
1318 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts) | |
1319 || (string[0] == intr_char && intr_char != Ctrl_C))) | |
1320 { | |
1321 trash_input_buf(); | |
1322 got_int = TRUE; | |
1323 } | |
1324 | |
1325 add_to_input_buf(string, len); | |
1326 | |
1327 /* blank out the pointer if necessary */ | |
1328 if (p_mh) | |
1329 gui_mch_mousehide(TRUE); | |
1330 | |
1331 return TRUE; | |
1332 } | |
1333 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1334 #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
7 | 1335 static gboolean |
1884 | 1336 key_release_event(GtkWidget *widget UNUSED, |
1337 GdkEventKey *event, | |
1338 gpointer data UNUSED) | |
7 | 1339 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1340 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1341 is_key_pressed = FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1342 gui_mch_start_blink(); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1343 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1344 # if defined(FEAT_XIM) |
2923 | 1345 gui.event_time = event->time; |
7 | 1346 /* |
1347 * GTK+ 2 input methods may do fancy stuff on key release events too. | |
1348 * With the default IM for instance, you can enter any UCS code point | |
1349 * by holding down CTRL-SHIFT and typing hexadecimal digits. | |
1350 */ | |
1351 return xim_queue_key_press_event(event, FALSE); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1352 # else |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1353 return TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1354 # endif |
7 | 1355 } |
1356 #endif | |
1357 | |
1358 | |
1359 /**************************************************************************** | |
1360 * Selection handlers: | |
1361 */ | |
1362 | |
1363 static gint | |
1884 | 1364 selection_clear_event(GtkWidget *widget UNUSED, |
7 | 1365 GdkEventSelection *event, |
1884 | 1366 gpointer user_data UNUSED) |
7 | 1367 { |
1368 if (event->selection == clip_plus.gtk_sel_atom) | |
1369 clip_lose_selection(&clip_plus); | |
1370 else | |
1371 clip_lose_selection(&clip_star); | |
1372 | |
1373 return TRUE; | |
1374 } | |
1375 | |
1376 #define RS_NONE 0 /* selection_received_cb() not called yet */ | |
1377 #define RS_OK 1 /* selection_received_cb() called and OK */ | |
1378 #define RS_FAIL 2 /* selection_received_cb() called and failed */ | |
1379 static int received_selection = RS_NONE; | |
1380 | |
1381 static void | |
1884 | 1382 selection_received_cb(GtkWidget *widget UNUSED, |
7 | 1383 GtkSelectionData *data, |
1884 | 1384 guint time_ UNUSED, |
1385 gpointer user_data UNUSED) | |
7 | 1386 { |
1387 VimClipboard *cbd; | |
1388 char_u *text; | |
1389 char_u *tmpbuf = NULL; | |
1390 guchar *tmpbuf_utf8 = NULL; | |
1391 int len; | |
2896 | 1392 int motion_type = MAUTO; |
7 | 1393 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1394 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1395 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1396 #else |
7 | 1397 if (data->selection == clip_plus.gtk_sel_atom) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1398 #endif |
7 | 1399 cbd = &clip_plus; |
1400 else | |
1401 cbd = &clip_star; | |
1402 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1403 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1404 text = (char_u *)gtk_selection_data_get_data(data); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1405 len = gtk_selection_data_get_length(data); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1406 #else |
7 | 1407 text = (char_u *)data->data; |
1408 len = data->length; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1409 #endif |
7 | 1410 |
1411 if (text == NULL || len <= 0) | |
1412 { | |
1413 received_selection = RS_FAIL; | |
1414 /* clip_free_selection(cbd); ??? */ | |
1415 | |
1416 return; | |
1417 } | |
1418 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1419 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1420 if (gtk_selection_data_get_data_type(data) == vim_atom) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1421 #else |
7 | 1422 if (data->type == vim_atom) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1423 #endif |
7 | 1424 { |
1425 motion_type = *text++; | |
1426 --len; | |
1427 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1428 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1429 else if (gtk_selection_data_get_data_type(data) == vimenc_atom) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1430 #else |
7 | 1431 else if (data->type == vimenc_atom) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1432 #endif |
7 | 1433 { |
1434 char_u *enc; | |
1435 vimconv_T conv; | |
1436 | |
1437 motion_type = *text++; | |
1438 --len; | |
1439 | |
1440 enc = text; | |
1441 text += STRLEN(text) + 1; | |
1442 len -= text - enc; | |
1443 | |
1444 /* If the encoding of the text is different from 'encoding', attempt | |
1445 * converting it. */ | |
1446 conv.vc_type = CONV_NONE; | |
1447 convert_setup(&conv, enc, p_enc); | |
1448 if (conv.vc_type != CONV_NONE) | |
1449 { | |
1450 tmpbuf = string_convert(&conv, text, &len); | |
1451 if (tmpbuf != NULL) | |
1452 text = tmpbuf; | |
1453 convert_setup(&conv, NULL, NULL); | |
1454 } | |
1455 } | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
1456 |
7 | 1457 /* gtk_selection_data_get_text() handles all the nasty details |
1458 * and targets and encodings etc. This rocks so hard. */ | |
1459 else | |
1460 { | |
1461 tmpbuf_utf8 = gtk_selection_data_get_text(data); | |
1462 if (tmpbuf_utf8 != NULL) | |
1463 { | |
1464 len = STRLEN(tmpbuf_utf8); | |
1465 if (input_conv.vc_type != CONV_NONE) | |
1466 { | |
1467 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len); | |
1468 if (tmpbuf != NULL) | |
1469 text = tmpbuf; | |
1470 } | |
1471 else | |
1472 text = tmpbuf_utf8; | |
1473 } | |
1904 | 1474 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe) |
1475 { | |
1476 vimconv_T conv; | |
1477 | |
1478 /* UTF-16, we get this for HTML */ | |
1479 conv.vc_type = CONV_NONE; | |
1480 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE); | |
1481 | |
1482 if (conv.vc_type != CONV_NONE) | |
1483 { | |
1484 text += 2; | |
1485 len -= 2; | |
1486 tmpbuf = string_convert(&conv, text, &len); | |
1487 convert_setup(&conv, NULL, NULL); | |
1488 } | |
1489 if (tmpbuf != NULL) | |
1490 text = tmpbuf; | |
1491 } | |
7 | 1492 } |
1493 | |
4352 | 1494 /* Chop off any trailing NUL bytes. OpenOffice sends these. */ |
2183 | 1495 while (len > 0 && text[len - 1] == NUL) |
1496 --len; | |
1497 | |
7 | 1498 clip_yank_selection(motion_type, text, (long)len, cbd); |
1499 received_selection = RS_OK; | |
1500 vim_free(tmpbuf); | |
1501 g_free(tmpbuf_utf8); | |
1502 } | |
1503 | |
1504 /* | |
1505 * Prepare our selection data for passing it to the external selection | |
1506 * client. | |
1507 */ | |
1508 static void | |
1884 | 1509 selection_get_cb(GtkWidget *widget UNUSED, |
7 | 1510 GtkSelectionData *selection_data, |
1511 guint info, | |
1884 | 1512 guint time_ UNUSED, |
1513 gpointer user_data UNUSED) | |
7 | 1514 { |
1515 char_u *string; | |
1516 char_u *tmpbuf; | |
1517 long_u tmplen; | |
1518 int length; | |
1519 int motion_type; | |
1520 GdkAtom type; | |
1521 VimClipboard *cbd; | |
1522 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1523 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1524 if (gtk_selection_data_get_selection(selection_data) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1525 == clip_plus.gtk_sel_atom) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1526 #else |
7 | 1527 if (selection_data->selection == clip_plus.gtk_sel_atom) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1528 #endif |
7 | 1529 cbd = &clip_plus; |
1530 else | |
1531 cbd = &clip_star; | |
1532 | |
1533 if (!cbd->owned) | |
1534 return; /* Shouldn't ever happen */ | |
1535 | |
1536 if (info != (guint)TARGET_STRING | |
1904 | 1537 && (!clip_html || info != (guint)TARGET_HTML) |
7 | 1538 && info != (guint)TARGET_UTF8_STRING |
1539 && info != (guint)TARGET_VIMENC | |
1540 && info != (guint)TARGET_VIM | |
1541 && info != (guint)TARGET_COMPOUND_TEXT | |
1542 && info != (guint)TARGET_TEXT) | |
1543 return; | |
1544 | |
1545 /* get the selection from the '*'/'+' register */ | |
1546 clip_get_selection(cbd); | |
1547 | |
1548 motion_type = clip_convert_selection(&string, &tmplen, cbd); | |
1549 if (motion_type < 0 || string == NULL) | |
1550 return; | |
1551 /* Due to int arguments we can't handle more than G_MAXINT. Also | |
1552 * reserve one extra byte for NUL or the motion type; just in case. | |
1553 * (Not that pasting 2G of text is ever going to work, but... ;-) */ | |
1554 length = MIN(tmplen, (long_u)(G_MAXINT - 1)); | |
1555 | |
1556 if (info == (guint)TARGET_VIM) | |
1557 { | |
1558 tmpbuf = alloc((unsigned)length + 1); | |
1559 if (tmpbuf != NULL) | |
1560 { | |
1561 tmpbuf[0] = motion_type; | |
1562 mch_memmove(tmpbuf + 1, string, (size_t)length); | |
1563 } | |
1564 /* For our own format, the first byte contains the motion type */ | |
1565 ++length; | |
1566 vim_free(string); | |
1567 string = tmpbuf; | |
1568 type = vim_atom; | |
1569 } | |
1570 | |
1904 | 1571 else if (info == (guint)TARGET_HTML) |
1572 { | |
1573 vimconv_T conv; | |
1574 | |
1575 /* Since we get utf-16, we probably should set it as well. */ | |
1576 conv.vc_type = CONV_NONE; | |
1577 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE); | |
1578 if (conv.vc_type != CONV_NONE) | |
1579 { | |
1580 tmpbuf = string_convert(&conv, string, &length); | |
1581 convert_setup(&conv, NULL, NULL); | |
1582 vim_free(string); | |
1583 string = tmpbuf; | |
1584 } | |
1585 | |
1586 /* Prepend the BOM: "fffe" */ | |
1587 if (string != NULL) | |
1588 { | |
1589 tmpbuf = alloc(length + 2); | |
1590 tmpbuf[0] = 0xff; | |
1591 tmpbuf[1] = 0xfe; | |
1592 mch_memmove(tmpbuf + 2, string, (size_t)length); | |
1593 vim_free(string); | |
1594 string = tmpbuf; | |
1595 length += 2; | |
1596 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1597 #if !GTK_CHECK_VERSION(3,0,0) |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
1598 /* Looks redundant even for GTK2 because these values are |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1599 * overwritten by gtk_selection_data_set() that follows. */ |
1904 | 1600 selection_data->type = selection_data->target; |
1601 selection_data->format = 16; /* 16 bits per char */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1602 #endif |
1904 | 1603 gtk_selection_data_set(selection_data, html_atom, 16, |
1604 string, length); | |
1605 vim_free(string); | |
1606 } | |
1607 return; | |
1608 } | |
7 | 1609 else if (info == (guint)TARGET_VIMENC) |
1610 { | |
1611 int l = STRLEN(p_enc); | |
1612 | |
1613 /* contents: motion_type 'encoding' NUL text */ | |
1614 tmpbuf = alloc((unsigned)length + l + 2); | |
1615 if (tmpbuf != NULL) | |
1616 { | |
1617 tmpbuf[0] = motion_type; | |
1618 STRCPY(tmpbuf + 1, p_enc); | |
1619 mch_memmove(tmpbuf + l + 2, string, (size_t)length); | |
1620 } | |
1621 length += l + 2; | |
1622 vim_free(string); | |
1623 string = tmpbuf; | |
1624 type = vimenc_atom; | |
1625 } | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
1626 |
7 | 1627 /* gtk_selection_data_set_text() handles everything for us. This is |
1628 * so easy and simple and cool, it'd be insane not to use it. */ | |
1629 else | |
1630 { | |
1631 if (output_conv.vc_type != CONV_NONE) | |
1632 { | |
1633 tmpbuf = string_convert(&output_conv, string, &length); | |
1634 vim_free(string); | |
1635 if (tmpbuf == NULL) | |
1636 return; | |
1637 string = tmpbuf; | |
1638 } | |
1639 /* Validate the string to avoid runtime warnings */ | |
1640 if (g_utf8_validate((const char *)string, (gssize)length, NULL)) | |
1641 { | |
1642 gtk_selection_data_set_text(selection_data, | |
1643 (const char *)string, length); | |
1644 } | |
1645 vim_free(string); | |
1646 return; | |
1647 } | |
1648 | |
1649 if (string != NULL) | |
1650 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1651 #if !GTK_CHECK_VERSION(3,0,0) |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
1652 /* Looks redundant even for GTK2 because these values are |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1653 * overwritten by gtk_selection_data_set() that follows. */ |
7 | 1654 selection_data->type = selection_data->target; |
1655 selection_data->format = 8; /* 8 bits per char */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1656 #endif |
7 | 1657 gtk_selection_data_set(selection_data, type, 8, string, length); |
1658 vim_free(string); | |
1659 } | |
1660 } | |
1661 | |
1662 /* | |
3518 | 1663 * Check if the GUI can be started. Called before gvimrc is sourced and |
1664 * before fork(). | |
1665 * Return OK or FAIL. | |
1666 */ | |
1667 int | |
9836
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
1668 gui_mch_early_init_check(int give_message) |
3518 | 1669 { |
1670 char_u *p; | |
1671 | |
1672 /* Guess that when $DISPLAY isn't set the GUI can't start. */ | |
1673 p = mch_getenv((char_u *)"DISPLAY"); | |
1674 if (p == NULL || *p == NUL) | |
1675 { | |
1676 gui.dying = TRUE; | |
9836
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
1677 if (give_message) |
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
1678 EMSG(_((char *)e_opendisp)); |
3518 | 1679 return FAIL; |
1680 } | |
1681 return OK; | |
1682 } | |
1683 | |
1684 /* | |
1685 * Check if the GUI can be started. Called before gvimrc is sourced but after | |
1686 * fork(). | |
7 | 1687 * Return OK or FAIL. |
1688 */ | |
1689 int | |
1690 gui_mch_init_check(void) | |
1691 { | |
7679
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1692 #ifdef USE_GRESOURCE |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1693 static int res_registered = FALSE; |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1694 |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1695 if (!res_registered) |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1696 { |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1697 /* Call this function in the GUI process; otherwise, the resources |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1698 * won't be available. Don't call it twice. */ |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1699 res_registered = TRUE; |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1700 gui_gtk_register_resource(); |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1701 } |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1702 #endif |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1703 |
8851
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1704 #if GTK_CHECK_VERSION(3,10,0) |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1705 /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1706 * support for other backends such as Wayland. */ |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1707 gdk_set_allowed_backends ("x11"); |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1708 #endif |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1709 |
7 | 1710 #ifdef FEAT_GUI_GNOME |
1711 if (gtk_socket_id == 0) | |
1712 using_gnome = 1; | |
1713 #endif | |
1714 | |
4474 | 1715 /* This defaults to argv[0], but we want it to match the name of the |
1716 * shipped gvim.desktop so that Vim's windows can be associated with this | |
1717 * file. */ | |
1718 g_set_prgname("gvim"); | |
1719 | |
7 | 1720 /* Don't use gtk_init() or gnome_init(), it exits on failure. */ |
1721 if (!gtk_init_check(&gui_argc, &gui_argv)) | |
1722 { | |
1723 gui.dying = TRUE; | |
1666 | 1724 EMSG(_((char *)e_opendisp)); |
7 | 1725 return FAIL; |
1726 } | |
1727 | |
1728 return OK; | |
1729 } | |
1730 | |
1731 | |
1732 /**************************************************************************** | |
1733 * Mouse handling callbacks | |
1734 */ | |
1735 | |
1736 | |
1737 static guint mouse_click_timer = 0; | |
1738 static int mouse_timed_out = TRUE; | |
1739 | |
1740 /* | |
1741 * Timer used to recognize multiple clicks of the mouse button | |
1742 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1743 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1744 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1745 #else |
7 | 1746 static gint |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1747 #endif |
7 | 1748 mouse_click_timer_cb(gpointer data) |
1749 { | |
1750 /* we don't use this information currently */ | |
1751 int *timed_out = (int *) data; | |
1752 | |
1753 *timed_out = TRUE; | |
1754 return FALSE; /* don't happen again */ | |
1755 } | |
1756 | |
1757 static guint motion_repeat_timer = 0; | |
1758 static int motion_repeat_offset = FALSE; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1759 #ifdef GTK_DEST_DEFAULT_ALL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1760 static gboolean motion_repeat_timer_cb(gpointer); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1761 #else |
7 | 1762 static gint motion_repeat_timer_cb(gpointer); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1763 #endif |
7 | 1764 |
1765 static void | |
1766 process_motion_notify(int x, int y, GdkModifierType state) | |
1767 { | |
1768 int button; | |
1769 int_u vim_modifiers; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1770 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1771 GtkAllocation allocation; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1772 #endif |
7 | 1773 |
1774 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | | |
1775 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | | |
1776 GDK_BUTTON5_MASK)) | |
1777 ? MOUSE_DRAG : ' '; | |
1778 | |
1779 /* If our pointer is currently hidden, then we should show it. */ | |
1780 gui_mch_mousehide(FALSE); | |
1781 | |
1782 /* Just moving the rodent above the drawing area without any button | |
1783 * being pressed. */ | |
1784 if (button != MOUSE_DRAG) | |
1785 { | |
1786 gui_mouse_moved(x, y); | |
1787 return; | |
1788 } | |
1789 | |
1790 /* translate modifier coding between the main engine and GTK */ | |
179 | 1791 vim_modifiers = modifiers_gdk2mouse(state); |
7 | 1792 |
1226 | 1793 /* inform the editor engine about the occurrence of this event */ |
7 | 1794 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers); |
1795 | |
1796 /* | |
1797 * Auto repeat timer handling. | |
1798 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1799 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1800 gtk_widget_get_allocation(gui.drawarea, &allocation); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1801 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1802 if (x < 0 || y < 0 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1803 || x >= allocation.width |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1804 || y >= allocation.height) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1805 #else |
7 | 1806 if (x < 0 || y < 0 |
1807 || x >= gui.drawarea->allocation.width | |
1808 || y >= gui.drawarea->allocation.height) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1809 #endif |
7 | 1810 { |
1811 | |
1812 int dx; | |
1813 int dy; | |
1814 int offshoot; | |
1815 int delay = 10; | |
1816 | |
1817 /* Calculate the maximal distance of the cursor from the drawing area. | |
1818 * (offshoot can't become negative here!). | |
1819 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1820 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1821 dx = x < 0 ? -x : x - allocation.width; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1822 dy = y < 0 ? -y : y - allocation.height; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1823 #else |
7 | 1824 dx = x < 0 ? -x : x - gui.drawarea->allocation.width; |
1825 dy = y < 0 ? -y : y - gui.drawarea->allocation.height; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1826 #endif |
7 | 1827 |
1828 offshoot = dx > dy ? dx : dy; | |
1829 | |
1884 | 1830 /* Make a linearly decaying timer delay with a threshold of 5 at a |
7 | 1831 * distance of 127 pixels from the main window. |
1832 * | |
1833 * One could think endlessly about the most ergonomic variant here. | |
1834 * For example it could make sense to calculate the distance from the | |
1835 * drags start instead... | |
1836 * | |
1837 * Maybe a parabolic interpolation would suite us better here too... | |
1838 */ | |
1839 if (offshoot > 127) | |
1840 { | |
1841 /* 5 appears to be somehow near to my perceptual limits :-). */ | |
1842 delay = 5; | |
1843 } | |
1844 else | |
1845 { | |
1846 delay = (130 * (127 - offshoot)) / 127 + 5; | |
1847 } | |
1848 | |
1849 /* shoot again */ | |
1850 if (!motion_repeat_timer) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1851 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1852 motion_repeat_timer = g_timeout_add((guint)delay, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1853 motion_repeat_timer_cb, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1854 #else |
7 | 1855 motion_repeat_timer = gtk_timeout_add((guint32)delay, |
1856 motion_repeat_timer_cb, NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1857 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1858 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1859 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1860 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1861 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1862 static GdkDevice * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1863 gui_gtk_get_pointer_device(GtkWidget *widget) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1864 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1865 GdkWindow * const win = gtk_widget_get_window(widget); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1866 GdkDisplay * const dpy = gdk_window_get_display(win); |
8926
fc69eed19ba7
commit https://github.com/vim/vim/commit/30e12d259ee78272359f9da2655d0593a4f6a626
Christian Brabandt <cb@256bit.org>
parents:
8851
diff
changeset
|
1867 # if GTK_CHECK_VERSION(3,20,0) |
fc69eed19ba7
commit https://github.com/vim/vim/commit/30e12d259ee78272359f9da2655d0593a4f6a626
Christian Brabandt <cb@256bit.org>
parents:
8851
diff
changeset
|
1868 GdkSeat * const seat = gdk_display_get_default_seat(dpy); |
fc69eed19ba7
commit https://github.com/vim/vim/commit/30e12d259ee78272359f9da2655d0593a4f6a626
Christian Brabandt <cb@256bit.org>
parents:
8851
diff
changeset
|
1869 return gdk_seat_get_pointer(seat); |
fc69eed19ba7
commit https://github.com/vim/vim/commit/30e12d259ee78272359f9da2655d0593a4f6a626
Christian Brabandt <cb@256bit.org>
parents:
8851
diff
changeset
|
1870 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1871 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1872 return gdk_device_manager_get_client_pointer(mngr); |
8926
fc69eed19ba7
commit https://github.com/vim/vim/commit/30e12d259ee78272359f9da2655d0593a4f6a626
Christian Brabandt <cb@256bit.org>
parents:
8851
diff
changeset
|
1873 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1874 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1875 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1876 static GdkWindow * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1877 gui_gtk_get_pointer(GtkWidget *widget, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1878 gint *x, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1879 gint *y, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1880 GdkModifierType *state) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1881 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1882 GdkWindow * const win = gtk_widget_get_window(widget); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1883 GdkDevice * const dev = gui_gtk_get_pointer_device(widget); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1884 return gdk_window_get_device_position(win, dev , x, y, state); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1885 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1886 |
8397
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1887 # if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1888 static GdkWindow * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1889 gui_gtk_window_at_position(GtkWidget *widget, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1890 gint *x, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1891 gint *y) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1892 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1893 GdkDevice * const dev = gui_gtk_get_pointer_device(widget); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1894 return gdk_device_get_window_at_position(dev, x, y); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1895 } |
8397
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1896 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1897 #endif |
7 | 1898 |
1899 /* | |
1900 * Timer used to recognize multiple clicks of the mouse button. | |
1901 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1902 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1903 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1904 #else |
7 | 1905 static gint |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1906 #endif |
1884 | 1907 motion_repeat_timer_cb(gpointer data UNUSED) |
7 | 1908 { |
1909 int x; | |
1910 int y; | |
1911 GdkModifierType state; | |
1912 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1913 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1914 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1915 #else |
7 | 1916 gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1917 #endif |
7 | 1918 |
1919 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | | |
1920 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | | |
1921 GDK_BUTTON5_MASK))) | |
1922 { | |
1923 motion_repeat_timer = 0; | |
1924 return FALSE; | |
1925 } | |
1926 | |
1927 /* If there already is a mouse click in the input buffer, wait another | |
1928 * time (otherwise we would create a backlog of clicks) */ | |
1929 if (vim_used_in_input_buf() > 10) | |
1930 return TRUE; | |
1931 | |
1932 motion_repeat_timer = 0; | |
1933 | |
1934 /* | |
1935 * Fake a motion event. | |
1936 * Trick: Pretend the mouse moved to the next character on every other | |
1937 * event, otherwise drag events will be discarded, because they are still | |
1938 * in the same character. | |
1939 */ | |
1940 if (motion_repeat_offset) | |
1941 x += gui.char_width; | |
1942 | |
1943 motion_repeat_offset = !motion_repeat_offset; | |
1944 process_motion_notify(x, y, state); | |
1945 | |
1946 /* Don't happen again. We will get reinstalled in the synthetic event | |
1947 * if needed -- thus repeating should still work. */ | |
1948 return FALSE; | |
1949 } | |
1950 | |
1951 static gint | |
1884 | 1952 motion_notify_event(GtkWidget *widget, |
1953 GdkEventMotion *event, | |
1954 gpointer data UNUSED) | |
7 | 1955 { |
1956 if (event->is_hint) | |
1957 { | |
1958 int x; | |
1959 int y; | |
1960 GdkModifierType state; | |
1961 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1962 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1963 gui_gtk_get_pointer(widget, &x, &y, &state); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1964 #else |
7 | 1965 gdk_window_get_pointer(widget->window, &x, &y, &state); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1966 #endif |
7 | 1967 process_motion_notify(x, y, state); |
1968 } | |
1969 else | |
1970 { | |
1971 process_motion_notify((int)event->x, (int)event->y, | |
1972 (GdkModifierType)event->state); | |
1973 } | |
1974 | |
1975 return TRUE; /* handled */ | |
1976 } | |
1977 | |
1978 | |
1979 /* | |
1980 * Mouse button handling. Note please that we are capturing multiple click's | |
1981 * by our own timeout mechanism instead of the one provided by GTK+ itself. | |
1982 * This is due to the way the generic VIM code is recognizing multiple clicks. | |
1983 */ | |
1984 static gint | |
1884 | 1985 button_press_event(GtkWidget *widget, |
1986 GdkEventButton *event, | |
1987 gpointer data UNUSED) | |
7 | 1988 { |
1989 int button; | |
1990 int repeated_click = FALSE; | |
1991 int x, y; | |
1992 int_u vim_modifiers; | |
1993 | |
2923 | 1994 gui.event_time = event->time; |
2270
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
1995 |
7 | 1996 /* Make sure we have focus now we've been selected */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1997 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1998 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1999 #else |
7 | 2000 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget)) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2001 #endif |
7 | 2002 gtk_widget_grab_focus(widget); |
2003 | |
2004 /* | |
2005 * Don't let additional events about multiple clicks send by GTK to us | |
2006 * after the initial button press event confuse us. | |
2007 */ | |
2008 if (event->type != GDK_BUTTON_PRESS) | |
2009 return FALSE; | |
2010 | |
2011 x = event->x; | |
2012 y = event->y; | |
2013 | |
2014 /* Handle multiple clicks */ | |
2015 if (!mouse_timed_out && mouse_click_timer) | |
2016 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2017 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2018 g_source_remove(mouse_click_timer); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2019 #else |
7 | 2020 gtk_timeout_remove(mouse_click_timer); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2021 #endif |
7 | 2022 mouse_click_timer = 0; |
2023 repeated_click = TRUE; | |
2024 } | |
2025 | |
2026 mouse_timed_out = FALSE; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2027 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2028 mouse_click_timer = g_timeout_add((guint)p_mouset, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2029 mouse_click_timer_cb, &mouse_timed_out); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2030 #else |
7 | 2031 mouse_click_timer = gtk_timeout_add((guint32)p_mouset, |
2032 mouse_click_timer_cb, &mouse_timed_out); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2033 #endif |
7 | 2034 |
2035 switch (event->button) | |
2036 { | |
7260
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2037 /* Keep in sync with gui_x11.c. |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2038 * Buttons 4-7 are handled in scroll_event() */ |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2039 case 1: button = MOUSE_LEFT; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2040 case 2: button = MOUSE_MIDDLE; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2041 case 3: button = MOUSE_RIGHT; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2042 case 8: button = MOUSE_X1; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2043 case 9: button = MOUSE_X2; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2044 default: |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2045 return FALSE; /* Unknown button */ |
7 | 2046 } |
2047 | |
2048 #ifdef FEAT_XIM | |
2049 /* cancel any preediting */ | |
2050 if (im_is_preediting()) | |
2051 xim_reset(); | |
2052 #endif | |
2053 | |
179 | 2054 vim_modifiers = modifiers_gdk2mouse(event->state); |
7 | 2055 |
2056 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers); | |
2057 | |
2058 return TRUE; | |
2059 } | |
2060 | |
2061 /* | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
2062 * GTK+ 2 abstracts scrolling via the GdkEventScroll. |
7 | 2063 */ |
2064 static gboolean | |
1884 | 2065 scroll_event(GtkWidget *widget, |
2066 GdkEventScroll *event, | |
2067 gpointer data UNUSED) | |
7 | 2068 { |
2069 int button; | |
179 | 2070 int_u vim_modifiers; |
7 | 2071 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2072 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2073 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2074 #else |
7 | 2075 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget)) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2076 #endif |
7 | 2077 gtk_widget_grab_focus(widget); |
2078 | |
2079 switch (event->direction) | |
2080 { | |
2081 case GDK_SCROLL_UP: | |
2082 button = MOUSE_4; | |
2083 break; | |
2084 case GDK_SCROLL_DOWN: | |
2085 button = MOUSE_5; | |
2086 break; | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2087 case GDK_SCROLL_LEFT: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2088 button = MOUSE_7; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2089 break; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2090 case GDK_SCROLL_RIGHT: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2091 button = MOUSE_6; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2092 break; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2093 default: /* This shouldn't happen */ |
7 | 2094 return FALSE; |
2095 } | |
2096 | |
2097 # ifdef FEAT_XIM | |
2098 /* cancel any preediting */ | |
2099 if (im_is_preediting()) | |
2100 xim_reset(); | |
2101 # endif | |
2102 | |
179 | 2103 vim_modifiers = modifiers_gdk2mouse(event->state); |
7 | 2104 |
2105 gui_send_mouse_event(button, (int)event->x, (int)event->y, | |
2106 FALSE, vim_modifiers); | |
2107 | |
2108 return TRUE; | |
2109 } | |
2110 | |
2111 | |
2112 static gint | |
1884 | 2113 button_release_event(GtkWidget *widget UNUSED, |
2114 GdkEventButton *event, | |
2115 gpointer data UNUSED) | |
7 | 2116 { |
2117 int x, y; | |
2118 int_u vim_modifiers; | |
2119 | |
2923 | 2120 gui.event_time = event->time; |
2270
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
2121 |
7 | 2122 /* Remove any motion "machine gun" timers used for automatic further |
2123 extension of allocation areas if outside of the applications window | |
2124 area .*/ | |
2125 if (motion_repeat_timer) | |
2126 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2127 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2128 g_source_remove(motion_repeat_timer); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2129 #else |
7 | 2130 gtk_timeout_remove(motion_repeat_timer); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2131 #endif |
7 | 2132 motion_repeat_timer = 0; |
2133 } | |
2134 | |
2135 x = event->x; | |
2136 y = event->y; | |
2137 | |
179 | 2138 vim_modifiers = modifiers_gdk2mouse(event->state); |
7 | 2139 |
2140 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers); | |
2141 | |
2142 return TRUE; | |
2143 } | |
2144 | |
2145 | |
2146 #ifdef FEAT_DND | |
2147 /**************************************************************************** | |
2148 * Drag aNd Drop support handlers. | |
2149 */ | |
2150 | |
2151 /* | |
2152 * Count how many items there may be and separate them with a NUL. | |
2153 * Apparently the items are separated with \r\n. This is not documented, | |
2154 * thus be careful not to go past the end. Also allow separation with | |
2155 * NUL characters. | |
2156 */ | |
2157 static int | |
2158 count_and_decode_uri_list(char_u *out, char_u *raw, int len) | |
2159 { | |
2160 int i; | |
2161 char_u *p = out; | |
2162 int count = 0; | |
2163 | |
2164 for (i = 0; i < len; ++i) | |
2165 { | |
2166 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r') | |
2167 { | |
2168 if (p > out && p[-1] != NUL) | |
2169 { | |
2170 ++count; | |
2171 *p++ = NUL; | |
2172 } | |
2173 } | |
2174 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0) | |
2175 { | |
2176 *p++ = hexhex2nr(raw + i + 1); | |
2177 i += 2; | |
2178 } | |
2179 else | |
2180 *p++ = raw[i]; | |
2181 } | |
2182 if (p > out && p[-1] != NUL) | |
2183 { | |
2184 *p = NUL; /* last item didn't have \r or \n */ | |
2185 ++count; | |
2186 } | |
2187 return count; | |
2188 } | |
2189 | |
2190 /* | |
2191 * Parse NUL separated "src" strings. Make it an array "outlist" form. On | |
2192 * this process, URI which protocol is not "file:" are removed. Return | |
2193 * length of array (less than "max"). | |
2194 */ | |
2195 static int | |
2196 filter_uri_list(char_u **outlist, int max, char_u *src) | |
2197 { | |
2198 int i, j; | |
2199 | |
2200 for (i = j = 0; i < max; ++i) | |
2201 { | |
2202 outlist[i] = NULL; | |
2203 if (STRNCMP(src, "file:", 5) == 0) | |
2204 { | |
2205 src += 5; | |
2206 if (STRNCMP(src, "//localhost", 11) == 0) | |
2207 src += 11; | |
2208 while (src[0] == '/' && src[1] == '/') | |
2209 ++src; | |
2210 outlist[j++] = vim_strsave(src); | |
2211 } | |
2212 src += STRLEN(src) + 1; | |
2213 } | |
2214 return j; | |
2215 } | |
2216 | |
2217 static char_u ** | |
2218 parse_uri_list(int *count, char_u *data, int len) | |
2219 { | |
2220 int n = 0; | |
2221 char_u *tmp = NULL; | |
9252
c25898cc99c1
commit https://github.com/vim/vim/commit/945ec093cd4ddefab930239990564b12eb232153
Christian Brabandt <cb@256bit.org>
parents:
9232
diff
changeset
|
2222 char_u **array = NULL; |
7 | 2223 |
2224 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL) | |
2225 { | |
2226 n = count_and_decode_uri_list(tmp, data, len); | |
2227 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL) | |
2228 n = filter_uri_list(array, n, tmp); | |
2229 } | |
2230 vim_free(tmp); | |
2231 *count = n; | |
2232 return array; | |
2233 } | |
2234 | |
2235 static void | |
2236 drag_handle_uri_list(GdkDragContext *context, | |
2237 GtkSelectionData *data, | |
2238 guint time_, | |
2239 GdkModifierType state, | |
2240 gint x, | |
2241 gint y) | |
2242 { | |
2243 char_u **fnames; | |
2244 int nfiles = 0; | |
2245 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2246 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2247 fnames = parse_uri_list(&nfiles, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2248 (char_u *)gtk_selection_data_get_data(data), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2249 gtk_selection_data_get_length(data)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2250 # else |
7 | 2251 fnames = parse_uri_list(&nfiles, data->data, data->length); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2252 # endif |
7 | 2253 |
2254 if (fnames != NULL && nfiles > 0) | |
2255 { | |
179 | 2256 int_u modifiers; |
7 | 2257 |
2258 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ | |
2259 | |
179 | 2260 modifiers = modifiers_gdk2mouse(state); |
7 | 2261 |
2262 gui_handle_drop(x, y, modifiers, fnames, nfiles); | |
2263 } | |
840 | 2264 else |
2265 vim_free(fnames); | |
7 | 2266 } |
2267 | |
2268 static void | |
2269 drag_handle_text(GdkDragContext *context, | |
2270 GtkSelectionData *data, | |
2271 guint time_, | |
2272 GdkModifierType state) | |
2273 { | |
2274 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP}; | |
2275 char_u *text; | |
2276 int len; | |
2277 char_u *tmpbuf = NULL; | |
2278 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2279 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2280 text = (char_u *)gtk_selection_data_get_data(data); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2281 len = gtk_selection_data_get_length(data); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2282 # else |
7 | 2283 text = data->data; |
2284 len = data->length; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2285 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2286 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2287 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2288 if (gtk_selection_data_get_data_type(data) == utf8_string_atom) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2289 # else |
7 | 2290 if (data->type == utf8_string_atom) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2291 # endif |
7 | 2292 { |
2293 if (input_conv.vc_type != CONV_NONE) | |
2294 tmpbuf = string_convert(&input_conv, text, &len); | |
2295 if (tmpbuf != NULL) | |
2296 text = tmpbuf; | |
2297 } | |
2298 | |
2299 dnd_yank_drag_data(text, (long)len); | |
2300 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ | |
2301 vim_free(tmpbuf); | |
2302 | |
179 | 2303 dropkey[2] = modifiers_gdk2vim(state); |
7 | 2304 |
2305 if (dropkey[2] != 0) | |
2306 add_to_input_buf(dropkey, (int)sizeof(dropkey)); | |
2307 else | |
2308 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3)); | |
2309 } | |
2310 | |
2311 /* | |
2312 * DND receiver. | |
2313 */ | |
2314 static void | |
2315 drag_data_received_cb(GtkWidget *widget, | |
2316 GdkDragContext *context, | |
2317 gint x, | |
2318 gint y, | |
2319 GtkSelectionData *data, | |
2320 guint info, | |
2321 guint time_, | |
1884 | 2322 gpointer user_data UNUSED) |
7 | 2323 { |
2324 GdkModifierType state; | |
2325 | |
2326 /* Guard against trash */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2327 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2328 const guchar * const data_data = gtk_selection_data_get_data(data); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2329 const gint data_length = gtk_selection_data_get_length(data); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2330 const gint data_format = gtk_selection_data_get_format(data); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2331 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2332 if (data_data == NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2333 || data_length <= 0 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2334 || data_format != 8 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2335 || data_data[data_length] != '\0') |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2336 # else |
7 | 2337 if (data->data == NULL |
2338 || data->length <= 0 | |
2339 || data->format != 8 | |
2340 || data->data[data->length] != '\0') | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2341 # endif |
7 | 2342 { |
2343 gtk_drag_finish(context, FALSE, FALSE, time_); | |
2344 return; | |
2345 } | |
2346 | |
2347 /* Get the current modifier state for proper distinguishment between | |
2348 * different operations later. */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2349 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2350 gui_gtk_get_pointer(widget, NULL, NULL, &state); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2351 # else |
7 | 2352 gdk_window_get_pointer(widget->window, NULL, NULL, &state); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2353 # endif |
7 | 2354 |
2355 /* Not sure about the role of "text/plain" here... */ | |
2356 if (info == (guint)TARGET_TEXT_URI_LIST) | |
2357 drag_handle_uri_list(context, data, time_, state, x, y); | |
2358 else | |
2359 drag_handle_text(context, data, time_, state); | |
2360 | |
2361 } | |
2362 #endif /* FEAT_DND */ | |
2363 | |
2364 | |
2365 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) | |
2366 /* | |
2367 * GnomeClient interact callback. Check for unsaved buffers that cannot | |
2368 * be abandoned and pop up a dialog asking the user for confirmation if | |
2369 * necessary. | |
2370 */ | |
2371 static void | |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2372 sm_client_check_changed_any(GnomeClient *client UNUSED, |
7 | 2373 gint key, |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2374 GnomeDialogType type UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2375 gpointer data UNUSED) |
7 | 2376 { |
2377 cmdmod_T save_cmdmod; | |
2378 gboolean shutdown_cancelled; | |
2379 | |
2380 save_cmdmod = cmdmod; | |
2381 | |
2382 # ifdef FEAT_BROWSE | |
2383 cmdmod.browse = TRUE; | |
2384 # endif | |
2385 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2386 cmdmod.confirm = TRUE; | |
2387 # endif | |
2388 /* | |
2389 * If there are changed buffers, present the user with | |
2390 * a dialog if possible, otherwise give an error message. | |
2391 */ | |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
2392 shutdown_cancelled = check_changed_any(FALSE, FALSE); |
7 | 2393 |
2394 exiting = FALSE; | |
2395 cmdmod = save_cmdmod; | |
2396 setcursor(); /* position the cursor */ | |
2397 out_flush(); | |
2398 /* | |
2399 * If the user hit the [Cancel] button the whole shutdown | |
2400 * will be cancelled. Wow, quite powerful feature (: | |
2401 */ | |
2402 gnome_interaction_key_return(key, shutdown_cancelled); | |
2403 } | |
2404 | |
2405 /* | |
2406 * Generate a script that can be used to restore the current editing session. | |
2407 * Save the value of v:this_session before running :mksession in order to make | |
2408 * automagic session save fully transparent. Return TRUE on success. | |
2409 */ | |
2410 static int | |
2411 write_session_file(char_u *filename) | |
2412 { | |
2413 char_u *escaped_filename; | |
2414 char *mksession_cmdline; | |
2415 unsigned int save_ssop_flags; | |
2416 int failed; | |
2417 | |
2418 /* | |
2419 * Build an ex command line to create a script that restores the current | |
2420 * session if executed. Escape the filename to avoid nasty surprises. | |
2421 */ | |
2422 escaped_filename = vim_strsave_escaped(filename, escape_chars); | |
2423 if (escaped_filename == NULL) | |
2424 return FALSE; | |
1296 | 2425 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename, |
2426 NULL); | |
7 | 2427 vim_free(escaped_filename); |
1296 | 2428 |
7 | 2429 /* |
2430 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid | |
2431 * unpredictable effects when the session is saved automatically. Also, | |
2432 * we definitely need SSOP_GLOBALS to be able to restore v:this_session. | |
2433 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming | |
2434 * enormously large if the GNOME session feature is used regularly. | |
2435 */ | |
2436 save_ssop_flags = ssop_flags; | |
2437 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS | |
1296 | 2438 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES); |
7 | 2439 |
2440 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session"); | |
2441 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL); | |
2442 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session"); | |
150 | 2443 do_unlet((char_u *)"Save_VV_this_session", TRUE); |
7 | 2444 |
2445 ssop_flags = save_ssop_flags; | |
2446 g_free(mksession_cmdline); | |
5905 | 2447 |
7 | 2448 /* |
2449 * Reopen the file and append a command to restore v:this_session, | |
2450 * as if this save never happened. This is to avoid conflicts with | |
2451 * the user's own sessions. FIXME: It's probably less hackish to add | |
2452 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram. | |
2453 */ | |
2454 if (!failed) | |
2455 { | |
2456 FILE *fd; | |
2457 | |
2458 fd = open_exfile(filename, TRUE, APPENDBIN); | |
2459 | |
2460 failed = (fd == NULL | |
2461 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL | |
2462 || put_line(fd, "unlet Save_VV_this_session") == FAIL); | |
2463 | |
2464 if (fd != NULL && fclose(fd) != 0) | |
2465 failed = TRUE; | |
2466 | |
2467 if (failed) | |
2468 mch_remove(filename); | |
2469 } | |
2470 | |
2471 return !failed; | |
2472 } | |
2473 | |
2474 /* | |
2475 * "save_yourself" signal handler. Initiate an interaction to ask the user | |
2476 * for confirmation if necessary. Save the current editing session and tell | |
2477 * the session manager how to restart Vim. | |
2478 */ | |
2479 static gboolean | |
2480 sm_client_save_yourself(GnomeClient *client, | |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2481 gint phase UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2482 GnomeSaveStyle save_style UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2483 gboolean shutdown UNUSED, |
7 | 2484 GnomeInteractStyle interact_style, |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2485 gboolean fast UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2486 gpointer data UNUSED) |
7 | 2487 { |
2488 static const char suffix[] = "-session.vim"; | |
2489 char *session_file; | |
2490 unsigned int len; | |
2491 gboolean success; | |
2492 | |
2493 /* Always request an interaction if possible. check_changed_any() | |
2494 * won't actually show a dialog unless any buffers have been modified. | |
2495 * There doesn't seem to be an obvious way to check that without | |
2496 * automatically firing the dialog. Anyway, it works just fine. */ | |
2497 if (interact_style == GNOME_INTERACT_ANY) | |
2498 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL, | |
2499 &sm_client_check_changed_any, | |
2500 NULL); | |
2501 out_flush(); | |
2502 ml_sync_all(FALSE, FALSE); /* preserve all swap files */ | |
2503 | |
2504 /* The path is unique for each session save. We do neither know nor care | |
2505 * which session script will actually be used later. This decision is in | |
2506 * the domain of the session manager. */ | |
2507 session_file = gnome_config_get_real_path( | |
2508 gnome_client_get_config_prefix(client)); | |
2509 len = strlen(session_file); | |
2510 | |
2511 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR) | |
2512 --len; /* get rid of the superfluous trailing '/' */ | |
2513 | |
2514 session_file = g_renew(char, session_file, len + sizeof(suffix)); | |
2515 memcpy(session_file + len, suffix, sizeof(suffix)); | |
2516 | |
2517 success = write_session_file((char_u *)session_file); | |
2518 | |
2519 if (success) | |
2520 { | |
2521 const char *argv[8]; | |
2522 int i; | |
2523 | |
2524 /* Tell the session manager how to wipe out the stored session data. | |
2525 * This isn't as dangerous as it looks, don't worry :) session_file | |
2526 * is a unique absolute filename. Usually it'll be something like | |
2527 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */ | |
2528 i = 0; | |
2529 argv[i++] = "rm"; | |
2530 argv[i++] = session_file; | |
2531 argv[i] = NULL; | |
2532 | |
2533 gnome_client_set_discard_command(client, i, (char **)argv); | |
2534 | |
2535 /* Tell the session manager how to restore the just saved session. | |
2536 * This is easily done thanks to Vim's -S option. Pass the -f flag | |
2537 * since there's no need to fork -- it might even cause confusion. | |
2538 * Also pass the window role to give the WM something to match on. | |
2539 * The role is set in gui_mch_open(), thus should _never_ be NULL. */ | |
2540 i = 0; | |
2541 argv[i++] = restart_command; | |
2542 argv[i++] = "-f"; | |
2543 argv[i++] = "-g"; | |
2544 argv[i++] = "--role"; | |
2545 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin)); | |
2546 argv[i++] = "-S"; | |
2547 argv[i++] = session_file; | |
2548 argv[i] = NULL; | |
2549 | |
2550 gnome_client_set_restart_command(client, i, (char **)argv); | |
2551 gnome_client_set_clone_command(client, 0, NULL); | |
2552 } | |
2553 | |
2554 g_free(session_file); | |
2555 | |
2556 return success; | |
2557 } | |
2558 | |
2559 /* | |
2560 * Called when the session manager wants us to die. There isn't much to save | |
2561 * here since "save_yourself" has been emitted before (unless serious trouble | |
2562 * is happening). | |
2563 */ | |
2564 static void | |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2565 sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED) |
7 | 2566 { |
2567 /* Don't write messages to the GUI anymore */ | |
2568 full_screen = FALSE; | |
2569 | |
1666 | 2570 vim_strncpy(IObuff, (char_u *) |
419 | 2571 _("Vim: Received \"die\" request from session manager\n"), |
1666 | 2572 IOSIZE - 1); |
7 | 2573 preserve_exit(); |
2574 } | |
2575 | |
2576 /* | |
2577 * Connect our signal handlers to be notified on session save and shutdown. | |
2578 */ | |
2579 static void | |
2580 setup_save_yourself(void) | |
2581 { | |
2582 GnomeClient *client; | |
2583 | |
2584 client = gnome_master_client(); | |
2585 | |
2586 if (client != NULL) | |
2587 { | |
2588 /* Must use the deprecated gtk_signal_connect() for compatibility | |
2589 * with GNOME 1. Arrgh, zombies! */ | |
2590 gtk_signal_connect(GTK_OBJECT(client), "save_yourself", | |
2591 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL); | |
2592 gtk_signal_connect(GTK_OBJECT(client), "die", | |
2593 GTK_SIGNAL_FUNC(&sm_client_die), NULL); | |
2594 } | |
2595 } | |
2596 | |
2597 #else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */ | |
2598 | |
2599 # ifdef USE_XSMP | |
2600 /* | |
2601 * GTK tells us that XSMP needs attention | |
2602 */ | |
2603 static gboolean | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2604 local_xsmp_handle_requests( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2605 GIOChannel *source UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2606 GIOCondition condition, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2607 gpointer data) |
7 | 2608 { |
2609 if (condition == G_IO_IN) | |
2610 { | |
2611 /* Do stuff; maybe close connection */ | |
2612 if (xsmp_handle_requests() == FAIL) | |
2613 g_io_channel_unref((GIOChannel *)data); | |
2614 return TRUE; | |
2615 } | |
2616 /* Error */ | |
2617 g_io_channel_unref((GIOChannel *)data); | |
2618 xsmp_close(); | |
2619 return TRUE; | |
2620 } | |
2621 # endif /* USE_XSMP */ | |
2622 | |
2623 /* | |
2624 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event. | |
2625 * This is an ugly use of X functions. GTK doesn't offer an alternative. | |
2626 */ | |
2627 static void | |
2628 setup_save_yourself(void) | |
2629 { | |
2630 Atom *existing_atoms = NULL; | |
2631 int count = 0; | |
2632 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2633 # ifdef USE_XSMP |
7 | 2634 if (xsmp_icefd != -1) |
2635 { | |
2636 /* | |
2637 * Use XSMP is preference to legacy WM_SAVE_YOURSELF; | |
2638 * set up GTK IO monitor | |
2639 */ | |
2640 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd); | |
2641 | |
2642 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP, | |
2643 local_xsmp_handle_requests, (gpointer)g_io); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2644 g_io_channel_unref(g_io); |
7 | 2645 } |
2646 else | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2647 # endif |
7 | 2648 { |
2649 /* Fall back to old method */ | |
2650 | |
2651 /* first get the existing value */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2652 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2653 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2654 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2655 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2656 GDK_WINDOW_XID(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2657 &existing_atoms, &count)) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2658 # else |
7 | 2659 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
2660 GDK_WINDOW_XWINDOW(gui.mainwin->window), | |
2661 &existing_atoms, &count)) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2662 # endif |
7 | 2663 { |
2664 Atom *new_atoms; | |
2665 Atom save_yourself_xatom; | |
2666 int i; | |
2667 | |
2668 save_yourself_xatom = GET_X_ATOM(save_yourself_atom); | |
2669 | |
2670 /* check if WM_SAVE_YOURSELF isn't there yet */ | |
2671 for (i = 0; i < count; ++i) | |
2672 if (existing_atoms[i] == save_yourself_xatom) | |
2673 break; | |
2674 | |
2675 if (i == count) | |
2676 { | |
2677 /* allocate an Atoms array which is one item longer */ | |
2678 new_atoms = (Atom *)alloc((unsigned)((count + 1) | |
2679 * sizeof(Atom))); | |
2680 if (new_atoms != NULL) | |
2681 { | |
2682 memcpy(new_atoms, existing_atoms, count * sizeof(Atom)); | |
2683 new_atoms[count] = save_yourself_xatom; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2684 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2685 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2686 GDK_WINDOW_XID(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2687 # else |
7 | 2688 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
2689 GDK_WINDOW_XWINDOW(gui.mainwin->window), | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2690 # endif |
7 | 2691 new_atoms, count + 1); |
2692 vim_free(new_atoms); | |
2693 } | |
2694 } | |
2695 XFree(existing_atoms); | |
2696 } | |
2697 } | |
2698 } | |
2699 | |
2700 /* | |
2701 * Installing a global event filter seems to be the only way to catch | |
2702 * client messages of type WM_PROTOCOLS without overriding GDK's own | |
2703 * client message event filter. Well, that's still better than trying | |
2704 * to guess what the GDK filter had done if it had been invoked instead | |
2705 * | |
2706 * GTK2_FIXME: This doesn't seem to work. For some reason we never | |
2707 * receive WM_SAVE_YOURSELF even though everything is set up correctly. | |
2708 * I have the nasty feeling modern session managers just don't send this | |
2709 * deprecated message anymore. Addition: confirmed by several people. | |
2710 * | |
2711 * The GNOME session support is much cooler anyway. Unlike this ugly | |
2712 * WM_SAVE_YOURSELF hack it actually stores the session... And yes, | |
2713 * it should work with KDE as well. | |
2714 */ | |
2715 static GdkFilterReturn | |
1884 | 2716 global_event_filter(GdkXEvent *xev, |
2717 GdkEvent *event UNUSED, | |
2718 gpointer data UNUSED) | |
7 | 2719 { |
2720 XEvent *xevent = (XEvent *)xev; | |
2721 | |
2722 if (xevent != NULL | |
2723 && xevent->type == ClientMessage | |
2724 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom) | |
1884 | 2725 && (long_u)xevent->xclient.data.l[0] |
2726 == GET_X_ATOM(save_yourself_atom)) | |
7 | 2727 { |
2728 out_flush(); | |
2729 ml_sync_all(FALSE, FALSE); /* preserve all swap files */ | |
2730 /* | |
2731 * Set the window's WM_COMMAND property, to let the window manager | |
2732 * know we are done saving ourselves. We don't want to be | |
2733 * restarted, thus set argv to NULL. | |
2734 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2735 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2736 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2737 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2738 # else |
7 | 2739 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
2740 GDK_WINDOW_XWINDOW(gui.mainwin->window), | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2741 # endif |
7 | 2742 NULL, 0); |
2743 return GDK_FILTER_REMOVE; | |
2744 } | |
2745 | |
2746 return GDK_FILTER_CONTINUE; | |
2747 } | |
2748 #endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */ | |
2749 | |
2750 | |
2751 /* | |
2752 * Setup the window icon & xcmdsrv comm after the main window has been realized. | |
2753 */ | |
2754 static void | |
1884 | 2755 mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED) |
7 | 2756 { |
2757 /* If you get an error message here, you still need to unpack the runtime | |
2758 * archive! */ | |
2759 #ifdef magick | |
2760 # undef magick | |
2761 #endif | |
2762 /* A bit hackish, but avoids casting later and allows optimization */ | |
2763 # define static static const | |
2764 #define magick vim32x32 | |
2765 #include "../runtime/vim32x32.xpm" | |
2766 #undef magick | |
2767 #define magick vim16x16 | |
2768 #include "../runtime/vim16x16.xpm" | |
2769 #undef magick | |
2770 #define magick vim48x48 | |
2771 #include "../runtime/vim48x48.xpm" | |
2772 #undef magick | |
2773 # undef static | |
2774 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2775 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2776 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2777 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2778 |
7 | 2779 /* When started with "--echo-wid" argument, write window ID on stdout. */ |
2780 if (echo_wid_arg) | |
2781 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2782 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2783 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2784 #else |
7 | 2785 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window)); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2786 #endif |
7 | 2787 fflush(stdout); |
2788 } | |
2789 | |
2790 if (vim_strchr(p_go, GO_ICON) != NULL) | |
2791 { | |
2792 /* | |
2793 * Add an icon to the main window. For fun and convenience of the user. | |
2794 */ | |
2795 GList *icons = NULL; | |
2796 | |
2797 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16)); | |
2798 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32)); | |
2799 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48)); | |
2800 | |
2801 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons); | |
2802 | |
2803 g_list_foreach(icons, (GFunc)&g_object_unref, NULL); | |
2804 g_list_free(icons); | |
2805 } | |
2806 | |
2807 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) | |
2808 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */ | |
2809 gdk_window_add_filter(NULL, &global_event_filter, NULL); | |
2810 #endif | |
2811 /* Setup to indicate to the window manager that we want to catch the | |
2812 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session | |
2813 * manager instead. */ | |
2814 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) | |
2815 if (using_gnome) | |
2816 #endif | |
2817 setup_save_yourself(); | |
2818 | |
2819 #ifdef FEAT_CLIENTSERVER | |
2820 if (serverName == NULL && serverDelayedStartName != NULL) | |
2821 { | |
2822 /* This is a :gui command in a plain vim with no previous server */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2823 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2824 commWindow = GDK_WINDOW_XID(mainwin_win); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2825 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2826 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2827 serverDelayedStartName); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2828 # else |
7 | 2829 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window); |
2830 | |
2831 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window), | |
2832 serverDelayedStartName); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2833 # endif |
7 | 2834 } |
2835 else | |
2836 { | |
2837 /* | |
2838 * Cannot handle "XLib-only" windows with gtk event routines, we'll | |
2839 * have to change the "server" registration to that of the main window | |
2840 * If we have not registered a name yet, remember the window | |
2841 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2842 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2843 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2844 GDK_WINDOW_XID(mainwin_win)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2845 # else |
7 | 2846 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
2847 GDK_WINDOW_XWINDOW(gui.mainwin->window)); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2848 # endif |
7 | 2849 } |
2850 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2851 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2852 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2853 G_CALLBACK(property_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2854 # else |
7 | 2855 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event", |
2856 GTK_SIGNAL_FUNC(property_event), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2857 # endif |
7 | 2858 #endif |
2859 } | |
2860 | |
2861 static GdkCursor * | |
2862 create_blank_pointer(void) | |
2863 { | |
2864 GdkWindow *root_window = NULL; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2865 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2866 GdkPixbuf *blank_mask; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2867 #else |
7 | 2868 GdkPixmap *blank_mask; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2869 #endif |
7 | 2870 GdkCursor *cursor; |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2871 #if GTK_CHECK_VERSION(3,0,0) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2872 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 }; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2873 #else |
7 | 2874 GdkColor color = { 0, 0, 0, 0 }; |
2875 char blank_data[] = { 0x0 }; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2876 #endif |
7 | 2877 |
2878 #ifdef HAVE_GTK_MULTIHEAD | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2879 # if GTK_CHECK_VERSION(3,12,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2880 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2881 GdkWindow * const win = gtk_widget_get_window(gui.mainwin); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2882 GdkScreen * const scrn = gdk_window_get_screen(win); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2883 root_window = gdk_screen_get_root_window(scrn); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2884 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2885 # else |
7 | 2886 root_window = gtk_widget_get_root_window(gui.mainwin); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2887 # endif |
7 | 2888 #endif |
2889 | |
2890 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel | |
2891 * in size. */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2892 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2893 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2894 cairo_surface_t *surf; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2895 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2896 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2897 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2898 cr = cairo_create(surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2899 |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2900 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2901 color.red, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2902 color.green, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2903 color.blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2904 color.alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2905 cairo_rectangle(cr, 0, 0, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2906 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2907 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2908 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2909 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2910 cairo_surface_destroy(surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2911 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2912 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2913 blank_mask, 0, 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2914 g_object_unref(blank_mask); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2915 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2916 #else |
7 | 2917 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1); |
2918 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask, | |
2919 &color, &color, 0, 0); | |
2920 gdk_bitmap_unref(blank_mask); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2921 #endif |
7 | 2922 |
2923 return cursor; | |
2924 } | |
2925 | |
2926 #ifdef HAVE_GTK_MULTIHEAD | |
2927 static void | |
2928 mainwin_screen_changed_cb(GtkWidget *widget, | |
1884 | 2929 GdkScreen *previous_screen UNUSED, |
2930 gpointer data UNUSED) | |
7 | 2931 { |
2932 if (!gtk_widget_has_screen(widget)) | |
2933 return; | |
2934 | |
2935 /* | |
1226 | 2936 * Recreate the invisible mouse cursor. |
7 | 2937 */ |
2938 if (gui.blank_pointer != NULL) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2939 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2940 g_object_unref(G_OBJECT(gui.blank_pointer)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2941 # else |
7 | 2942 gdk_cursor_unref(gui.blank_pointer); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2943 # endif |
7 | 2944 |
2945 gui.blank_pointer = create_blank_pointer(); | |
2946 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2947 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2948 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2949 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2950 gui.blank_pointer); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2951 # else |
7 | 2952 if (gui.pointer_hidden && gui.drawarea->window != NULL) |
2953 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2954 # endif |
7 | 2955 |
2956 /* | |
2957 * Create a new PangoContext for this screen, and initialize it | |
2958 * with the current font if necessary. | |
2959 */ | |
2960 if (gui.text_context != NULL) | |
2961 g_object_unref(gui.text_context); | |
2962 | |
2963 gui.text_context = gtk_widget_create_pango_context(widget); | |
2964 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); | |
2965 | |
2966 if (gui.norm_font != NULL) | |
2967 { | |
38 | 2968 gui_mch_init_font(p_guifont, FALSE); |
814 | 2969 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH); |
7 | 2970 } |
2971 } | |
2972 #endif /* HAVE_GTK_MULTIHEAD */ | |
2973 | |
2974 /* | |
2975 * After the drawing area comes up, we calculate all colors and create the | |
2976 * dummy blank cursor. | |
2977 * | |
2978 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the | |
2979 * fact that the main VIM engine doesn't take them into account anywhere. | |
2980 */ | |
2981 static void | |
1884 | 2982 drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED) |
7 | 2983 { |
2984 GtkWidget *sbar; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2985 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2986 GtkAllocation allocation; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2987 #endif |
7 | 2988 |
2989 #ifdef FEAT_XIM | |
2990 xim_init(); | |
2991 #endif | |
2992 gui_mch_new_colors(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2993 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2994 gui.surface = gdk_window_create_similar_surface( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2995 gtk_widget_get_window(widget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2996 CAIRO_CONTENT_COLOR_ALPHA, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2997 gtk_widget_get_allocated_width(widget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2998 gtk_widget_get_allocated_height(widget)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2999 #else |
7 | 3000 gui.text_gc = gdk_gc_new(gui.drawarea->window); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3001 #endif |
7 | 3002 |
3003 gui.blank_pointer = create_blank_pointer(); | |
3004 if (gui.pointer_hidden) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3005 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3006 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3007 #else |
7 | 3008 gdk_window_set_cursor(widget->window, gui.blank_pointer); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3009 #endif |
7 | 3010 |
3011 /* get the actual size of the scrollbars, if they are realized */ | |
3012 sbar = firstwin->w_scrollbars[SBAR_LEFT].id; | |
3013 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT] | |
3014 && firstwin->w_scrollbars[SBAR_RIGHT].id)) | |
3015 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3016 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3017 gtk_widget_get_allocation(sbar, &allocation); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3018 if (sbar && gtk_widget_get_realized(sbar) && allocation.width) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3019 gui.scrollbar_width = allocation.width; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3020 #else |
7 | 3021 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width) |
3022 gui.scrollbar_width = sbar->allocation.width; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3023 #endif |
7 | 3024 |
3025 sbar = gui.bottom_sbar.id; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3026 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3027 if (sbar && gtk_widget_get_realized(sbar) && allocation.height) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3028 gui.scrollbar_height = allocation.height; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3029 #else |
7 | 3030 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height) |
3031 gui.scrollbar_height = sbar->allocation.height; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3032 #endif |
7 | 3033 } |
3034 | |
3035 /* | |
3036 * Properly clean up on shutdown. | |
3037 */ | |
3038 static void | |
1884 | 3039 drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED) |
7 | 3040 { |
3041 /* Don't write messages to the GUI anymore */ | |
3042 full_screen = FALSE; | |
3043 | |
3044 #ifdef FEAT_XIM | |
3045 im_shutdown(); | |
3046 #endif | |
3047 if (gui.ascii_glyphs != NULL) | |
3048 { | |
3049 pango_glyph_string_free(gui.ascii_glyphs); | |
3050 gui.ascii_glyphs = NULL; | |
3051 } | |
3052 if (gui.ascii_font != NULL) | |
3053 { | |
3054 g_object_unref(gui.ascii_font); | |
3055 gui.ascii_font = NULL; | |
3056 } | |
3057 g_object_unref(gui.text_context); | |
3058 gui.text_context = NULL; | |
3059 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3060 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3061 if (gui.surface != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3062 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3063 cairo_surface_destroy(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3064 gui.surface = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3065 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3066 #else |
7 | 3067 g_object_unref(gui.text_gc); |
3068 gui.text_gc = NULL; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3069 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3070 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3071 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3072 g_object_unref(G_OBJECT(gui.blank_pointer)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3073 #else |
7 | 3074 gdk_cursor_unref(gui.blank_pointer); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3075 #endif |
7 | 3076 gui.blank_pointer = NULL; |
3077 } | |
3078 | |
3079 static void | |
1884 | 3080 drawarea_style_set_cb(GtkWidget *widget UNUSED, |
3081 GtkStyle *previous_style UNUSED, | |
3082 gpointer data UNUSED) | |
7 | 3083 { |
3084 gui_mch_new_colors(); | |
3085 } | |
3086 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3087 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3088 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3089 drawarea_configure_event_cb(GtkWidget *widget, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3090 GdkEventConfigure *event, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3091 gpointer data UNUSED) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3092 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3093 static int cur_width = 0; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3094 static int cur_height = 0; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3095 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3096 g_return_val_if_fail(event |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3097 && event->width >= 1 && event->height >= 1, TRUE); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3098 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3099 if (event->width == cur_width && event->height == cur_height) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3100 return TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3101 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3102 cur_width = event->width; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3103 cur_height = event->height; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3104 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3105 if (gui.surface != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3106 cairo_surface_destroy(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3107 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3108 gui.surface = gdk_window_create_similar_surface( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3109 gtk_widget_get_window(widget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3110 CAIRO_CONTENT_COLOR_ALPHA, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3111 event->width, event->height); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3112 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3113 gtk_widget_queue_draw(widget); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3114 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3115 return TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3116 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3117 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3118 |
7 | 3119 /* |
3120 * Callback routine for the "delete_event" signal on the toplevel window. | |
3121 * Tries to vim gracefully, or refuses to exit with changed buffers. | |
3122 */ | |
3123 static gint | |
1884 | 3124 delete_event_cb(GtkWidget *widget UNUSED, |
3125 GdkEventAny *event UNUSED, | |
3126 gpointer data UNUSED) | |
7 | 3127 { |
3128 gui_shell_closed(); | |
3129 return TRUE; | |
3130 } | |
3131 | |
685 | 3132 #if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE) |
3133 static int | |
3134 get_item_dimensions(GtkWidget *widget, GtkOrientation orientation) | |
3135 { | |
3136 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL; | |
3137 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3138 # ifdef FEAT_GUI_GNOME |
685 | 3139 if (using_gnome && widget != NULL) |
3140 { | |
856 | 3141 GtkWidget *parent; |
685 | 3142 BonoboDockItem *dockitem; |
3143 | |
791 | 3144 parent = gtk_widget_get_parent(widget); |
856 | 3145 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM) |
3146 { | |
3147 /* Only menu & toolbar are dock items. Could tabline be? | |
3148 * Seem to be only the 2 defined in GNOME */ | |
3149 widget = parent; | |
3150 dockitem = BONOBO_DOCK_ITEM(widget); | |
3151 | |
3152 if (dockitem == NULL || dockitem->is_floating) | |
3153 return 0; | |
3154 item_orientation = bonobo_dock_item_get_orientation(dockitem); | |
3155 } | |
685 | 3156 } |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3157 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3158 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3159 if (widget != NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3160 && item_orientation == orientation |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3161 && gtk_widget_get_realized(widget) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3162 && gtk_widget_get_visible(widget)) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3163 # else |
685 | 3164 if (widget != NULL |
3165 && item_orientation == orientation | |
3166 && GTK_WIDGET_REALIZED(widget) | |
3167 && GTK_WIDGET_VISIBLE(widget)) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3168 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3169 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3170 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3171 GtkAllocation allocation; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3172 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3173 gtk_widget_get_allocation(widget, &allocation); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3174 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3175 if (orientation == GTK_ORIENTATION_HORIZONTAL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3176 return allocation.height; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3177 else |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3178 return allocation.width; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3179 # else |
685 | 3180 if (orientation == GTK_ORIENTATION_HORIZONTAL) |
3181 return widget->allocation.height; | |
3182 else | |
3183 return widget->allocation.width; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3184 # endif |
685 | 3185 } |
3186 return 0; | |
3187 } | |
3188 #endif | |
3189 | |
3190 static int | |
3191 get_menu_tool_width(void) | |
3192 { | |
3193 int width = 0; | |
3194 | |
3195 #ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */ | |
3196 # ifdef FEAT_MENU | |
3197 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL); | |
3198 # endif | |
3199 # ifdef FEAT_TOOLBAR | |
3200 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL); | |
3201 # endif | |
3202 # ifdef FEAT_GUI_TABLINE | |
782 | 3203 if (gui.tabline != NULL) |
3204 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL); | |
685 | 3205 # endif |
3206 #endif | |
3207 | |
3208 return width; | |
3209 } | |
3210 | |
3211 static int | |
3212 get_menu_tool_height(void) | |
3213 { | |
3214 int height = 0; | |
3215 | |
3216 #ifdef FEAT_MENU | |
3217 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL); | |
3218 #endif | |
3219 #ifdef FEAT_TOOLBAR | |
3220 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL); | |
3221 #endif | |
3222 #ifdef FEAT_GUI_TABLINE | |
782 | 3223 if (gui.tabline != NULL) |
3224 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL); | |
685 | 3225 #endif |
3226 | |
3227 return height; | |
3228 } | |
3229 | |
791 | 3230 /* This controls whether we can set the real window hints at |
3231 * start-up when in a GtkPlug. | |
3232 * 0 = normal processing (default) | |
3233 * 1 = init. hints set, no-one's tried to reset since last check | |
3234 * 2 = init. hints set, attempt made to change hints | |
3235 */ | |
3236 static int init_window_hints_state = 0; | |
3237 | |
685 | 3238 static void |
791 | 3239 update_window_manager_hints(int force_width, int force_height) |
685 | 3240 { |
3241 static int old_width = 0; | |
3242 static int old_height = 0; | |
791 | 3243 static int old_min_width = 0; |
3244 static int old_min_height = 0; | |
685 | 3245 static int old_char_width = 0; |
3246 static int old_char_height = 0; | |
3247 | |
3248 int width; | |
3249 int height; | |
791 | 3250 int min_width; |
3251 int min_height; | |
3252 | |
3253 /* At start-up, don't try to set the hints until the initial | |
3254 * values have been used (those that dictate our initial size) | |
1884 | 3255 * Let forced (i.e., correct) values through always. |
791 | 3256 */ |
3257 if (!(force_width && force_height) && init_window_hints_state > 0) | |
3258 { | |
856 | 3259 /* Don't do it! */ |
3260 init_window_hints_state = 2; | |
3261 return; | |
791 | 3262 } |
685 | 3263 |
3264 /* This also needs to be done when the main window isn't there yet, | |
3265 * otherwise the hints don't work. */ | |
3266 width = gui_get_base_width(); | |
3267 height = gui_get_base_height(); | |
3268 # ifdef FEAT_MENU | |
3269 height += tabline_height() * gui.char_height; | |
3270 # endif | |
3271 width += get_menu_tool_width(); | |
3272 height += get_menu_tool_height(); | |
3273 | |
791 | 3274 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine |
1226 | 3275 * their actual widget size. When we set our size ourselves (e.g., |
791 | 3276 * 'set columns=' or init. -geom) we briefly set the min. to the size |
3277 * we wish to be instead of the legitimate minimum so that we actually | |
3278 * resize correctly. | |
3279 */ | |
3280 if (force_width && force_height) | |
3281 { | |
856 | 3282 min_width = force_width; |
3283 min_height = force_height; | |
791 | 3284 } |
3285 else | |
3286 { | |
856 | 3287 min_width = width + MIN_COLUMNS * gui.char_width; |
3288 min_height = height + MIN_LINES * gui.char_height; | |
791 | 3289 } |
3290 | |
685 | 3291 /* Avoid an expose event when the size didn't change. */ |
3292 if (width != old_width | |
3293 || height != old_height | |
856 | 3294 || min_width != old_min_width |
791 | 3295 || min_height != old_min_height |
685 | 3296 || gui.char_width != old_char_width |
3297 || gui.char_height != old_char_height) | |
3298 { | |
3299 GdkGeometry geometry; | |
3300 GdkWindowHints geometry_mask; | |
3301 | |
3302 geometry.width_inc = gui.char_width; | |
3303 geometry.height_inc = gui.char_height; | |
3304 geometry.base_width = width; | |
3305 geometry.base_height = height; | |
856 | 3306 geometry.min_width = min_width; |
3307 geometry.min_height = min_height; | |
685 | 3308 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC |
3309 |GDK_HINT_MIN_SIZE; | |
3310 /* Using gui.formwin as geometry widget doesn't work as expected | |
3311 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks | |
3312 * in Vim confuse GTK+. */ | |
3313 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin, | |
3314 &geometry, geometry_mask); | |
856 | 3315 old_width = width; |
3316 old_height = height; | |
3317 old_min_width = min_width; | |
3318 old_min_height = min_height; | |
3319 old_char_width = gui.char_width; | |
3320 old_char_height = gui.char_height; | |
685 | 3321 } |
3322 } | |
3323 | |
7 | 3324 #ifdef FEAT_TOOLBAR |
3325 | |
3326 /* | |
3327 * This extra effort wouldn't be necessary if we only used stock icons in the | |
3328 * toolbar, as we do for all builtin icons. But user-defined toolbar icons | |
3329 * shouldn't be treated differently, thus we do need this. | |
3330 */ | |
3331 static void | |
3332 icon_size_changed_foreach(GtkWidget *widget, gpointer user_data) | |
3333 { | |
3334 if (GTK_IS_IMAGE(widget)) | |
3335 { | |
3336 GtkImage *image = (GtkImage *)widget; | |
3337 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3338 # if GTK_CHECK_VERSION(3,10,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3339 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3340 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3341 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3342 const gchar *icon_name; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3343 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3344 gtk_image_get_icon_name(image, &icon_name, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3345 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3346 gtk_image_set_from_icon_name(image, icon_name, icon_size); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3347 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3348 # else |
7 | 3349 /* User-defined icons are stored in a GtkIconSet */ |
3350 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET) | |
3351 { | |
3352 GtkIconSet *icon_set; | |
3353 GtkIconSize icon_size; | |
3354 | |
3355 gtk_image_get_icon_set(image, &icon_set, &icon_size); | |
3356 icon_size = (GtkIconSize)(long)user_data; | |
3357 | |
3358 gtk_icon_set_ref(icon_set); | |
3359 gtk_image_set_from_icon_set(image, icon_set, icon_size); | |
3360 gtk_icon_set_unref(icon_set); | |
3361 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3362 # endif |
7 | 3363 } |
3364 else if (GTK_IS_CONTAINER(widget)) | |
3365 { | |
3366 gtk_container_foreach((GtkContainer *)widget, | |
3367 &icon_size_changed_foreach, | |
3368 user_data); | |
3369 } | |
3370 } | |
3371 | |
3372 static void | |
3373 set_toolbar_style(GtkToolbar *toolbar) | |
3374 { | |
3375 GtkToolbarStyle style; | |
3376 GtkIconSize size; | |
3377 GtkIconSize oldsize; | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3378 |
7 | 3379 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
3380 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) | |
3381 style = GTK_TOOLBAR_BOTH_HORIZ; | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3382 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
7 | 3383 == (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
3384 style = GTK_TOOLBAR_BOTH; | |
3385 else if (toolbar_flags & TOOLBAR_TEXT) | |
3386 style = GTK_TOOLBAR_TEXT; | |
3387 else | |
3388 style = GTK_TOOLBAR_ICONS; | |
3389 | |
3390 gtk_toolbar_set_style(toolbar, style); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3391 # if !GTK_CHECK_VERSION(3,0,0) |
7 | 3392 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3393 # endif |
7 | 3394 |
3395 switch (tbis_flags) | |
3396 { | |
3397 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break; | |
3398 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break; | |
3399 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break; | |
3400 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break; | |
8469
42020d59a432
commit https://github.com/vim/vim/commit/beb003b303cde1e55634aae9f810535684b76211
Christian Brabandt <cb@256bit.org>
parents:
8412
diff
changeset
|
3401 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break; |
42020d59a432
commit https://github.com/vim/vim/commit/beb003b303cde1e55634aae9f810535684b76211
Christian Brabandt <cb@256bit.org>
parents:
8412
diff
changeset
|
3402 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break; |
7 | 3403 default: size = GTK_ICON_SIZE_INVALID; break; |
3404 } | |
3405 oldsize = gtk_toolbar_get_icon_size(toolbar); | |
3406 | |
3407 if (size == GTK_ICON_SIZE_INVALID) | |
3408 { | |
3409 /* Let global user preferences decide the icon size. */ | |
3410 gtk_toolbar_unset_icon_size(toolbar); | |
3411 size = gtk_toolbar_get_icon_size(toolbar); | |
3412 } | |
3413 if (size != oldsize) | |
3414 { | |
3415 gtk_container_foreach(GTK_CONTAINER(toolbar), | |
3416 &icon_size_changed_foreach, | |
3417 GINT_TO_POINTER((int)size)); | |
3418 } | |
3419 gtk_toolbar_set_icon_size(toolbar, size); | |
3420 } | |
3421 | |
3422 #endif /* FEAT_TOOLBAR */ | |
3423 | |
685 | 3424 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
3425 static int ignore_tabline_evt = FALSE; | |
689 | 3426 static GtkWidget *tabline_menu; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3427 # if !GTK_CHECK_VERSION(3,0,0) |
846 | 3428 static GtkTooltips *tabline_tooltip; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3429 # endif |
689 | 3430 static int clicked_page; /* page clicked in tab line */ |
3431 | |
3432 /* | |
3433 * Handle selecting an item in the tab line popup menu. | |
3434 */ | |
3435 static void | |
1884 | 3436 tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data) |
689 | 3437 { |
3438 /* Add the string cmd into input buffer */ | |
824 | 3439 send_tabline_menu_event(clicked_page, (int)(long)user_data); |
689 | 3440 } |
3441 | |
851 | 3442 static void |
3443 add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp) | |
3444 { | |
3445 GtkWidget *item; | |
3446 char_u *utf_text; | |
3447 | |
3448 utf_text = CONVERT_TO_UTF8(text); | |
3449 item = gtk_menu_item_new_with_label((const char *)utf_text); | |
3450 gtk_widget_show(item); | |
3451 CONVERT_TO_UTF8_FREE(utf_text); | |
3452 | |
3453 gtk_container_add(GTK_CONTAINER(menu), item); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3454 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3455 g_signal_connect(G_OBJECT(item), "activate", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3456 G_CALLBACK(tabline_menu_handler), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3457 GINT_TO_POINTER(resp)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3458 # else |
851 | 3459 gtk_signal_connect(GTK_OBJECT(item), "activate", |
3460 GTK_SIGNAL_FUNC(tabline_menu_handler), | |
1660 | 3461 (gpointer)(long)resp); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3462 # endif |
851 | 3463 } |
3464 | |
689 | 3465 /* |
3466 * Create a menu for the tab line. | |
3467 */ | |
3468 static GtkWidget * | |
3469 create_tabline_menu(void) | |
3470 { | |
851 | 3471 GtkWidget *menu; |
689 | 3472 |
3473 menu = gtk_menu_new(); | |
6819 | 3474 if (first_tabpage->tp_next != NULL) |
3475 add_tabline_menu_item(menu, (char_u *)_("Close tab"), | |
3476 TABLINE_MENU_CLOSE); | |
851 | 3477 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW); |
3478 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN); | |
689 | 3479 |
3480 return menu; | |
3481 } | |
3482 | |
3483 static gboolean | |
3484 on_tabline_menu(GtkWidget *widget, GdkEvent *event) | |
3485 { | |
3486 /* Was this button press event ? */ | |
3487 if (event->type == GDK_BUTTON_PRESS) | |
3488 { | |
3489 GdkEventButton *bevent = (GdkEventButton *)event; | |
3490 int x = bevent->x; | |
851 | 3491 int y = bevent->y; |
3492 GtkWidget *tabwidget; | |
3493 GdkWindow *tabwin; | |
689 | 3494 |
844 | 3495 /* When ignoring events return TRUE so that the selected page doesn't |
3496 * change. */ | |
3497 if (hold_gui_events | |
3498 # ifdef FEAT_CMDWIN | |
3499 || cmdwin_type != 0 | |
3500 # endif | |
3501 ) | |
3502 return TRUE; | |
3503 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3504 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3505 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3506 # else |
851 | 3507 tabwin = gdk_window_at_pointer(&x, &y); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3508 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3509 |
851 | 3510 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3511 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3512 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3513 "tab_num")); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3514 # else |
851 | 3515 clicked_page = (int)(long)gtk_object_get_user_data( |
3516 GTK_OBJECT(tabwidget)); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3517 # endif |
689 | 3518 |
3519 /* If the event was generated for 3rd button popup the menu. */ | |
3520 if (bevent->button == 3) | |
3521 { | |
3522 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL, | |
3523 bevent->button, bevent->time); | |
3524 /* We handled the event. */ | |
3525 return TRUE; | |
3526 } | |
868 | 3527 else if (bevent->button == 1) |
693 | 3528 { |
868 | 3529 if (clicked_page == 0) |
3530 { | |
1394 | 3531 /* Click after all tabs moves to next tab page. When "x" is |
3532 * small guess it's the left button. */ | |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3533 send_tabline_event(x < 50 ? -1 : 0); |
868 | 3534 } |
693 | 3535 } |
689 | 3536 } |
844 | 3537 |
689 | 3538 /* We didn't handle the event. */ |
3539 return FALSE; | |
3540 } | |
685 | 3541 |
3542 /* | |
3543 * Handle selecting one of the tabs. | |
3544 */ | |
3545 static void | |
3546 on_select_tab( | |
1884 | 3547 GtkNotebook *notebook UNUSED, |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3548 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3549 gpointer *page UNUSED, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3550 # else |
1884 | 3551 GtkNotebookPage *page UNUSED, |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3552 # endif |
944 | 3553 gint idx, |
1884 | 3554 gpointer data UNUSED) |
685 | 3555 { |
3556 if (!ignore_tabline_evt) | |
693 | 3557 { |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3558 send_tabline_event(idx + 1); |
693 | 3559 } |
685 | 3560 } |
3561 | |
3562 /* | |
3563 * Show or hide the tabline. | |
3564 */ | |
3565 void | |
3566 gui_mch_show_tabline(int showit) | |
3567 { | |
3568 if (gui.tabline == NULL) | |
3569 return; | |
3570 | |
3571 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline))) | |
3572 { | |
708 | 3573 /* Note: this may cause a resize event */ |
685 | 3574 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit); |
791 | 3575 update_window_manager_hints(0, 0); |
868 | 3576 if (showit) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3577 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3578 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3579 # else |
868 | 3580 GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3581 # endif |
868 | 3582 } |
3583 | |
3584 gui_mch_update(); | |
685 | 3585 } |
3586 | |
3587 /* | |
708 | 3588 * Return TRUE when tabline is displayed. |
3589 */ | |
3590 int | |
3591 gui_mch_showing_tabline(void) | |
3592 { | |
3593 return gui.tabline != NULL | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3594 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)); |
708 | 3595 } |
3596 | |
3597 /* | |
685 | 3598 * Update the labels of the tabline. |
3599 */ | |
3600 void | |
3601 gui_mch_update_tabline(void) | |
3602 { | |
3603 GtkWidget *page; | |
846 | 3604 GtkWidget *event_box; |
685 | 3605 GtkWidget *label; |
3606 tabpage_T *tp; | |
3607 int nr = 0; | |
851 | 3608 int tab_num; |
685 | 3609 int curtabidx = 0; |
836 | 3610 char_u *labeltext; |
685 | 3611 |
3612 if (gui.tabline == NULL) | |
3613 return; | |
3614 | |
3615 ignore_tabline_evt = TRUE; | |
3616 | |
3617 /* Add a label for each tab page. They all contain the same text area. */ | |
3618 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) | |
3619 { | |
3620 if (tp == curtab) | |
3621 curtabidx = nr; | |
3622 | |
851 | 3623 tab_num = nr + 1; |
3624 | |
685 | 3625 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr); |
3626 if (page == NULL) | |
3627 { | |
3628 /* Add notebook page */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3629 # if GTK_CHECK_VERSION(3,2,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3630 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3631 gtk_box_set_homogeneous(GTK_BOX(page), FALSE); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3632 # else |
685 | 3633 page = gtk_vbox_new(FALSE, 0); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3634 # endif |
685 | 3635 gtk_widget_show(page); |
846 | 3636 event_box = gtk_event_box_new(); |
3637 gtk_widget_show(event_box); | |
685 | 3638 label = gtk_label_new("-Empty-"); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3639 # if !GTK_CHECK_VERSION(3,14,0) |
851 | 3640 gtk_misc_set_padding(GTK_MISC(label), 2, 2); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3641 # endif |
846 | 3642 gtk_container_add(GTK_CONTAINER(event_box), label); |
685 | 3643 gtk_widget_show(label); |
3644 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline), | |
3645 page, | |
846 | 3646 event_box, |
685 | 3647 nr++); |
3648 } | |
3649 | |
846 | 3650 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3651 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3652 g_object_set_data(G_OBJECT(event_box), "tab_num", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3653 GINT_TO_POINTER(tab_num)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3654 # else |
1660 | 3655 gtk_object_set_user_data(GTK_OBJECT(event_box), |
3656 (gpointer)(long)tab_num); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3657 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3658 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3659 label = gtk_bin_get_child(GTK_BIN(event_box)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3660 # else |
846 | 3661 label = GTK_BIN(event_box)->child; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3662 # endif |
839 | 3663 get_tabline_label(tp, FALSE); |
836 | 3664 labeltext = CONVERT_TO_UTF8(NameBuff); |
846 | 3665 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext); |
836 | 3666 CONVERT_TO_UTF8_FREE(labeltext); |
846 | 3667 |
3668 get_tabline_label(tp, TRUE); | |
3669 labeltext = CONVERT_TO_UTF8(NameBuff); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3670 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3671 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3672 # else |
846 | 3673 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box, |
3674 (const char *)labeltext, NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3675 # endif |
846 | 3676 CONVERT_TO_UTF8_FREE(labeltext); |
685 | 3677 } |
3678 | |
3679 /* Remove any old labels. */ | |
3680 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL) | |
3681 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr); | |
3682 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3683 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3684 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3685 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3686 # else |
685 | 3687 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx) |
856 | 3688 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3689 # endif |
685 | 3690 |
851 | 3691 /* Make sure everything is in place before drawing text. */ |
3692 gui_mch_update(); | |
3693 | |
685 | 3694 ignore_tabline_evt = FALSE; |
3695 } | |
3696 | |
3697 /* | |
3698 * Set the current tab to "nr". First tab is 1. | |
3699 */ | |
3700 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
3701 gui_mch_set_curtab(int nr) |
685 | 3702 { |
3703 if (gui.tabline == NULL) | |
3704 return; | |
3705 | |
3706 ignore_tabline_evt = TRUE; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3707 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3708 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3709 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3710 # else |
685 | 3711 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1) |
856 | 3712 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3713 # endif |
685 | 3714 ignore_tabline_evt = FALSE; |
3715 } | |
3716 | |
3717 #endif /* FEAT_GUI_TABLINE */ | |
3718 | |
7 | 3719 /* |
2183 | 3720 * Add selection targets for PRIMARY and CLIPBOARD selections. |
3721 */ | |
3722 void | |
3723 gui_gtk_set_selection_targets(void) | |
3724 { | |
3725 int i, j = 0; | |
3726 int n_targets = N_SELECTION_TARGETS; | |
3727 GtkTargetEntry targets[N_SELECTION_TARGETS]; | |
3728 | |
3729 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i) | |
3730 { | |
3518 | 3731 /* OpenOffice tries to use TARGET_HTML and fails when we don't |
2183 | 3732 * return something, instead of trying another target. Therefore only |
3733 * offer TARGET_HTML when it works. */ | |
3734 if (!clip_html && selection_targets[i].info == TARGET_HTML) | |
3735 n_targets--; | |
3736 else | |
3737 targets[j++] = selection_targets[i]; | |
3738 } | |
3739 | |
3740 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY); | |
3741 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom); | |
3742 gtk_selection_add_targets(gui.drawarea, | |
3743 (GdkAtom)GDK_SELECTION_PRIMARY, | |
3744 targets, n_targets); | |
3745 gtk_selection_add_targets(gui.drawarea, | |
3746 (GdkAtom)clip_plus.gtk_sel_atom, | |
3747 targets, n_targets); | |
3748 } | |
3749 | |
3750 /* | |
3751 * Set up for receiving DND items. | |
3752 */ | |
3753 void | |
3754 gui_gtk_set_dnd_targets(void) | |
3755 { | |
3756 int i, j = 0; | |
3757 int n_targets = N_DND_TARGETS; | |
3758 GtkTargetEntry targets[N_DND_TARGETS]; | |
3759 | |
3760 for (i = 0; i < (int)N_DND_TARGETS; ++i) | |
3761 { | |
3154 | 3762 if (!clip_html && dnd_targets[i].info == TARGET_HTML) |
2183 | 3763 n_targets--; |
3764 else | |
3765 targets[j++] = dnd_targets[i]; | |
3766 } | |
3767 | |
3768 gtk_drag_dest_unset(gui.drawarea); | |
3769 gtk_drag_dest_set(gui.drawarea, | |
3770 GTK_DEST_DEFAULT_ALL, | |
3771 targets, n_targets, | |
2718 | 3772 GDK_ACTION_COPY | GDK_ACTION_MOVE); |
2183 | 3773 } |
3774 | |
3775 /* | |
7 | 3776 * Initialize the GUI. Create all the windows, set up all the callbacks etc. |
3777 * Returns OK for success, FAIL when the GUI can't be started. | |
3778 */ | |
3779 int | |
3780 gui_mch_init(void) | |
3781 { | |
3782 GtkWidget *vbox; | |
3783 | |
3784 #ifdef FEAT_GUI_GNOME | |
3785 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init() | |
3786 * exits on failure, but that's a non-issue because we already called | |
3787 * gtk_init_check() in gui_mch_init_check(). */ | |
3788 if (using_gnome) | |
4045 | 3789 { |
7 | 3790 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT, |
3791 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL); | |
4045 | 3792 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC) |
5854 | 3793 { |
3794 char *p = setlocale(LC_NUMERIC, NULL); | |
3795 | |
3796 /* Make sure strtod() uses a decimal point, not a comma. Gnome | |
3797 * init may change it. */ | |
3798 if (p == NULL || strcmp(p, "C") != 0) | |
3799 setlocale(LC_NUMERIC, "C"); | |
3800 } | |
4045 | 3801 # endif |
3802 } | |
7 | 3803 #endif |
3804 vim_free(gui_argv); | |
3805 gui_argv = NULL; | |
3806 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3807 #if GLIB_CHECK_VERSION(2,1,3) |
7 | 3808 /* Set the human-readable application name */ |
3809 g_set_application_name("Vim"); | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3810 #endif |
7 | 3811 /* |
3812 * Force UTF-8 output no matter what the value of 'encoding' is. | |
3813 * did_set_string_option() in option.c prohibits changing 'termencoding' | |
3814 * to something else than UTF-8 if the GUI is in use. | |
3815 */ | |
3816 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0); | |
3817 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3818 #ifdef FEAT_TOOLBAR |
7 | 3819 gui_gtk_register_stock_icons(); |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3820 #endif |
7 | 3821 /* FIXME: Need to install the classic icons and a gtkrc.classic file. |
3822 * The hard part is deciding install locations and the Makefile magic. */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3823 #if !GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3824 # if 0 |
7 | 3825 gtk_rc_parse("gtkrc"); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3826 # endif |
7 | 3827 #endif |
3828 | |
3829 /* Initialize values */ | |
3830 gui.border_width = 2; | |
3831 gui.scrollbar_width = SB_DEFAULT_WIDTH; | |
3832 gui.scrollbar_height = SB_DEFAULT_WIDTH; | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3833 #if GTK_CHECK_VERSION(3,0,0) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3834 gui.fgcolor = g_new(GdkRGBA, 1); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3835 gui.bgcolor = g_new(GdkRGBA, 1); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3836 gui.spcolor = g_new(GdkRGBA, 1); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3837 #else |
136 | 3838 /* LINTED: avoid warning: conversion to 'unsigned long' */ |
7 | 3839 gui.fgcolor = g_new0(GdkColor, 1); |
136 | 3840 /* LINTED: avoid warning: conversion to 'unsigned long' */ |
7 | 3841 gui.bgcolor = g_new0(GdkColor, 1); |
207 | 3842 /* LINTED: avoid warning: conversion to 'unsigned long' */ |
3843 gui.spcolor = g_new0(GdkColor, 1); | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3844 #endif |
7 | 3845 |
3846 /* Initialise atoms */ | |
1904 | 3847 html_atom = gdk_atom_intern("text/html", FALSE); |
7 | 3848 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE); |
3849 | |
3850 /* Set default foreground and background colors. */ | |
3851 gui.norm_pixel = gui.def_norm_pixel; | |
3852 gui.back_pixel = gui.def_back_pixel; | |
3853 | |
3854 if (gtk_socket_id != 0) | |
3855 { | |
3856 GtkWidget *plug; | |
3857 | |
3858 /* Use GtkSocket from another app. */ | |
3859 #ifdef HAVE_GTK_MULTIHEAD | |
3860 plug = gtk_plug_new_for_display(gdk_display_get_default(), | |
3861 gtk_socket_id); | |
3862 #else | |
3863 plug = gtk_plug_new(gtk_socket_id); | |
3864 #endif | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3865 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3866 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3867 #else |
7 | 3868 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3869 #endif |
7 | 3870 { |
3871 gui.mainwin = plug; | |
3872 } | |
3873 else | |
3874 { | |
3875 g_warning("Connection to GTK+ socket (ID %u) failed", | |
3876 (unsigned int)gtk_socket_id); | |
3877 /* Pretend we never wanted it if it failed (get own window) */ | |
3878 gtk_socket_id = 0; | |
3879 } | |
3880 } | |
3881 | |
3882 if (gtk_socket_id == 0) | |
3883 { | |
3884 #ifdef FEAT_GUI_GNOME | |
3885 if (using_gnome) | |
3886 { | |
3887 gui.mainwin = gnome_app_new("Vim", NULL); | |
3888 # ifdef USE_XSMP | |
3889 /* Use the GNOME save-yourself functionality now. */ | |
3890 xsmp_close(); | |
3891 # endif | |
3892 } | |
3893 else | |
3894 #endif | |
3895 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
3896 } | |
3897 | |
3898 gtk_widget_set_name(gui.mainwin, "vim-main-window"); | |
3899 | |
3900 /* Create the PangoContext used for drawing all text. */ | |
3901 gui.text_context = gtk_widget_create_pango_context(gui.mainwin); | |
3902 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3903 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3904 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3905 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3906 #else |
7 | 3907 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3908 #endif |
7 | 3909 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK); |
3910 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3911 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3912 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3913 G_CALLBACK(&delete_event_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3914 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3915 g_signal_connect(G_OBJECT(gui.mainwin), "realize", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3916 G_CALLBACK(&mainwin_realize), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3917 #else |
7 | 3918 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event", |
3919 GTK_SIGNAL_FUNC(&delete_event_cb), NULL); | |
3920 | |
3921 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize", | |
3922 GTK_SIGNAL_FUNC(&mainwin_realize), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3923 #endif |
7 | 3924 #ifdef HAVE_GTK_MULTIHEAD |
3925 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed", | |
3926 G_CALLBACK(&mainwin_screen_changed_cb), NULL); | |
3927 #endif | |
3928 gui.accel_group = gtk_accel_group_new(); | |
3929 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group); | |
3930 | |
685 | 3931 /* A vertical box holds the menubar, toolbar and main text window. */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3932 #if GTK_CHECK_VERSION(3,2,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3933 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3934 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3935 #else |
7 | 3936 vbox = gtk_vbox_new(FALSE, 0); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3937 #endif |
7 | 3938 |
3939 #ifdef FEAT_GUI_GNOME | |
3940 if (using_gnome) | |
3941 { | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3942 # if defined(FEAT_MENU) |
7 | 3943 /* automagically restore menubar/toolbar placement */ |
3944 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE); | |
3945 # endif | |
3946 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox); | |
3947 } | |
3948 else | |
3949 #endif | |
3950 { | |
3951 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox); | |
3952 gtk_widget_show(vbox); | |
3953 } | |
3954 | |
3955 #ifdef FEAT_MENU | |
3956 /* | |
3957 * Create the menubar and handle | |
3958 */ | |
3959 gui.menubar = gtk_menu_bar_new(); | |
3960 gtk_widget_set_name(gui.menubar, "vim-menubar"); | |
3961 | |
36 | 3962 /* Avoid that GTK takes <F10> away from us. */ |
3963 { | |
3964 GtkSettings *gtk_settings; | |
3965 | |
3966 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default()); | |
3967 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL); | |
3968 } | |
3969 | |
3970 | |
7 | 3971 # ifdef FEAT_GUI_GNOME |
3972 if (using_gnome) | |
3973 { | |
3974 BonoboDockItem *dockitem; | |
3975 | |
3976 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar)); | |
3977 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), | |
3978 GNOME_APP_MENUBAR_NAME); | |
798 | 3979 /* We don't want the menu to float. */ |
3980 bonobo_dock_item_set_behavior(dockitem, | |
3981 bonobo_dock_item_get_behavior(dockitem) | |
3982 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); | |
7 | 3983 gui.menubar_h = GTK_WIDGET(dockitem); |
3984 } | |
3985 else | |
3986 # endif /* FEAT_GUI_GNOME */ | |
3987 { | |
827 | 3988 /* Always show the menubar, otherwise <F10> doesn't work. It may be |
3989 * disabled in gui_init() later. */ | |
3990 gtk_widget_show(gui.menubar); | |
7 | 3991 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0); |
3992 } | |
3993 #endif /* FEAT_MENU */ | |
3994 | |
3995 #ifdef FEAT_TOOLBAR | |
3996 /* | |
3997 * Create the toolbar and handle | |
3998 */ | |
3999 /* some aesthetics on the toolbar */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4000 # ifdef USE_GTK3 |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
4001 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4002 /* N.B. Since the default value of GtkToolbar::button-relief is |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4003 * GTK_RELIEF_NONE, there's no need to specify that, probably. */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4004 # else |
7 | 4005 gtk_rc_parse_string( |
4006 "style \"vim-toolbar-style\" {\n" | |
4007 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n" | |
4008 "}\n" | |
4009 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n"); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4010 # endif |
7 | 4011 gui.toolbar = gtk_toolbar_new(); |
4012 gtk_widget_set_name(gui.toolbar, "vim-toolbar"); | |
4013 set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); | |
4014 | |
4015 # ifdef FEAT_GUI_GNOME | |
4016 if (using_gnome) | |
4017 { | |
4018 BonoboDockItem *dockitem; | |
4019 | |
4020 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar)); | |
4021 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), | |
4022 GNOME_APP_TOOLBAR_NAME); | |
4023 gui.toolbar_h = GTK_WIDGET(dockitem); | |
795 | 4024 /* When the toolbar is floating it gets stuck. So long as that isn't |
798 | 4025 * fixed let's disallow floating. */ |
795 | 4026 bonobo_dock_item_set_behavior(dockitem, |
798 | 4027 bonobo_dock_item_get_behavior(dockitem) |
4028 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); | |
7 | 4029 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0); |
4030 } | |
4031 else | |
4032 # endif /* FEAT_GUI_GNOME */ | |
4033 { | |
4034 if (vim_strchr(p_go, GO_TOOLBAR) != NULL | |
4035 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) | |
4036 gtk_widget_show(gui.toolbar); | |
4037 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0); | |
4038 } | |
4039 #endif /* FEAT_TOOLBAR */ | |
4040 | |
685 | 4041 #ifdef FEAT_GUI_TABLINE |
782 | 4042 /* |
4043 * Use a Notebook for the tab pages labels. The labels are hidden by | |
4044 * default. | |
4045 */ | |
791 | 4046 gui.tabline = gtk_notebook_new(); |
4047 gtk_widget_show(gui.tabline); | |
4048 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0); | |
4049 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE); | |
4050 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE); | |
841 | 4051 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4052 # if !GTK_CHECK_VERSION(3,0,0) |
868 | 4053 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4054 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4055 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4056 # if !GTK_CHECK_VERSION(3,0,0) |
846 | 4057 tabline_tooltip = gtk_tooltips_new(); |
4058 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip)); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4059 # endif |
846 | 4060 |
4061 { | |
4062 GtkWidget *page, *label, *event_box; | |
791 | 4063 |
856 | 4064 /* Add the first tab. */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4065 # if GTK_CHECK_VERSION(3,2,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4066 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4067 gtk_box_set_homogeneous(GTK_BOX(page), FALSE); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4068 # else |
846 | 4069 page = gtk_vbox_new(FALSE, 0); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4070 # endif |
846 | 4071 gtk_widget_show(page); |
4072 gtk_container_add(GTK_CONTAINER(gui.tabline), page); | |
4073 label = gtk_label_new("-Empty-"); | |
4074 gtk_widget_show(label); | |
4075 event_box = gtk_event_box_new(); | |
4076 gtk_widget_show(event_box); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4077 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4078 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4079 # else |
1660 | 4080 gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4081 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4082 # if !GTK_CHECK_VERSION(3,14,0) |
851 | 4083 gtk_misc_set_padding(GTK_MISC(label), 2, 2); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4084 # endif |
846 | 4085 gtk_container_add(GTK_CONTAINER(event_box), label); |
4086 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box); | |
791 | 4087 } |
865 | 4088 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4089 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4090 g_signal_connect(G_OBJECT(gui.tabline), "switch-page", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4091 G_CALLBACK(on_select_tab), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4092 # else |
791 | 4093 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page", |
856 | 4094 GTK_SIGNAL_FUNC(on_select_tab), NULL); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4095 # endif |
791 | 4096 |
4097 /* Create a popup menu for the tab line and connect it. */ | |
4098 tabline_menu = create_tabline_menu(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4099 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4100 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4101 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4102 # else |
791 | 4103 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event", |
856 | 4104 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu)); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4105 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4106 #endif /* FEAT_GUI_TABLINE */ |
685 | 4107 |
7 | 4108 gui.formwin = gtk_form_new(); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4109 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4110 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4111 #else |
7 | 4112 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4113 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4114 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 4115 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4116 #endif |
7 | 4117 |
4118 gui.drawarea = gtk_drawing_area_new(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4119 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4120 gui.surface = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4121 gui.by_signal = FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4122 #endif |
7 | 4123 |
4124 /* Determine which events we will filter. */ | |
4125 gtk_widget_set_events(gui.drawarea, | |
4126 GDK_EXPOSURE_MASK | | |
4127 GDK_ENTER_NOTIFY_MASK | | |
4128 GDK_LEAVE_NOTIFY_MASK | | |
4129 GDK_BUTTON_PRESS_MASK | | |
4130 GDK_BUTTON_RELEASE_MASK | | |
4131 GDK_SCROLL_MASK | | |
4132 GDK_KEY_PRESS_MASK | | |
4133 GDK_KEY_RELEASE_MASK | | |
4134 GDK_POINTER_MOTION_MASK | | |
4135 GDK_POINTER_MOTION_HINT_MASK); | |
4136 | |
4137 gtk_widget_show(gui.drawarea); | |
4138 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0); | |
4139 gtk_widget_show(gui.formwin); | |
4140 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0); | |
4141 | |
4142 /* For GtkSockets, key-presses must go to the focus widget (drawarea) | |
4143 * and not the window. */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4144 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4145 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4146 : G_OBJECT(gui.drawarea), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4147 "key-press-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4148 G_CALLBACK(key_press_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4149 #else |
7 | 4150 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin) |
4151 : GTK_OBJECT(gui.drawarea), | |
4152 "key_press_event", | |
4153 GTK_SIGNAL_FUNC(key_press_event), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4154 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4155 #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
7 | 4156 /* Also forward key release events for the benefit of GTK+ 2 input |
4157 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */ | |
4158 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) | |
4159 : G_OBJECT(gui.drawarea), | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4160 "key-release-event", |
7 | 4161 G_CALLBACK(&key_release_event), NULL); |
4162 #endif | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4163 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4164 g_signal_connect(G_OBJECT(gui.drawarea), "realize", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4165 G_CALLBACK(drawarea_realize_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4166 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4167 G_CALLBACK(drawarea_unrealize_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4168 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4169 G_CALLBACK(drawarea_configure_event_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4170 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4171 G_CALLBACK(&drawarea_style_set_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4172 #else |
7 | 4173 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize", |
4174 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL); | |
4175 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize", | |
4176 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL); | |
4177 | |
4178 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set", | |
4179 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4180 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4181 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4182 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 4183 gui.visibility = GDK_VISIBILITY_UNOBSCURED; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4184 #endif |
7 | 4185 |
4186 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) | |
4187 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE); | |
4188 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE); | |
4189 #endif | |
4190 | |
4191 if (gtk_socket_id != 0) | |
1884 | 4192 /* make sure keyboard input can go to the drawarea */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4193 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4194 gtk_widget_set_can_focus(gui.drawarea, TRUE); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4195 #else |
7 | 4196 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4197 #endif |
7 | 4198 |
4199 /* | |
4200 * Set clipboard specific atoms | |
4201 */ | |
4202 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE); | |
4203 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE); | |
4204 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY; | |
4205 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE); | |
4206 | |
4207 /* | |
4208 * Start out by adding the configured border width into the border offset. | |
4209 */ | |
4210 gui.border_offset = gui.border_width; | |
4211 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4212 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4213 g_signal_connect(G_OBJECT(gui.drawarea), "draw", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4214 G_CALLBACK(draw_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4215 #else |
7 | 4216 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event", |
4217 GTK_SIGNAL_FUNC(visibility_event), NULL); | |
4218 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event", | |
4219 GTK_SIGNAL_FUNC(expose_event), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4220 #endif |
7 | 4221 |
4222 /* | |
4223 * Only install these enter/leave callbacks when 'p' in 'guioptions'. | |
4224 * Only needed for some window managers. | |
4225 */ | |
4226 if (vim_strchr(p_go, GO_POINTER) != NULL) | |
4227 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4228 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4229 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4230 G_CALLBACK(leave_notify_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4231 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4232 G_CALLBACK(enter_notify_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4233 #else |
7 | 4234 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event", |
4235 GTK_SIGNAL_FUNC(leave_notify_event), NULL); | |
4236 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event", | |
4237 GTK_SIGNAL_FUNC(enter_notify_event), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4238 #endif |
7 | 4239 } |
4240 | |
791 | 4241 /* Real windows can get focus ... GtkPlug, being a mere container can't, |
4242 * only its widgets. Arguably, this could be common code and we not use | |
4243 * the window focus at all, but let's be safe. | |
4244 */ | |
4245 if (gtk_socket_id == 0) | |
4246 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4247 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4248 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4249 G_CALLBACK(focus_out_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4250 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4251 G_CALLBACK(focus_in_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4252 #else |
856 | 4253 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event", |
4254 GTK_SIGNAL_FUNC(focus_out_event), NULL); | |
4255 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event", | |
4256 GTK_SIGNAL_FUNC(focus_in_event), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4257 #endif |
791 | 4258 } |
4259 else | |
4260 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4261 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4262 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4263 G_CALLBACK(focus_out_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4264 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4265 G_CALLBACK(focus_in_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4266 #else |
856 | 4267 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event", |
4268 GTK_SIGNAL_FUNC(focus_out_event), NULL); | |
4269 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event", | |
4270 GTK_SIGNAL_FUNC(focus_in_event), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4271 #endif |
791 | 4272 #ifdef FEAT_GUI_TABLINE |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4273 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4274 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4275 G_CALLBACK(focus_out_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4276 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4277 G_CALLBACK(focus_in_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4278 # else |
856 | 4279 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event", |
4280 GTK_SIGNAL_FUNC(focus_out_event), NULL); | |
4281 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event", | |
4282 GTK_SIGNAL_FUNC(focus_in_event), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4283 # endif |
791 | 4284 #endif /* FEAT_GUI_TABLINE */ |
4285 } | |
7 | 4286 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4287 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4288 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4289 G_CALLBACK(motion_notify_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4290 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4291 G_CALLBACK(button_press_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4292 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4293 G_CALLBACK(button_release_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4294 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4295 G_CALLBACK(&scroll_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4296 #else |
7 | 4297 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event", |
4298 GTK_SIGNAL_FUNC(motion_notify_event), NULL); | |
4299 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event", | |
4300 GTK_SIGNAL_FUNC(button_press_event), NULL); | |
4301 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event", | |
4302 GTK_SIGNAL_FUNC(button_release_event), NULL); | |
4303 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event", | |
4304 G_CALLBACK(&scroll_event), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4305 #endif |
7 | 4306 |
4307 /* | |
4308 * Add selection handler functions. | |
4309 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4310 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4311 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4312 G_CALLBACK(selection_clear_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4313 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4314 G_CALLBACK(selection_received_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4315 #else |
7 | 4316 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event", |
4317 GTK_SIGNAL_FUNC(selection_clear_event), NULL); | |
4318 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received", | |
4319 GTK_SIGNAL_FUNC(selection_received_cb), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4320 #endif |
7 | 4321 |
2183 | 4322 gui_gtk_set_selection_targets(); |
7 | 4323 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4324 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4325 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4326 G_CALLBACK(selection_get_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4327 #else |
7 | 4328 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get", |
4329 GTK_SIGNAL_FUNC(selection_get_cb), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4330 #endif |
7 | 4331 |
4332 /* Pretend we don't have input focus, we will get an event if we do. */ | |
4333 gui.in_focus = FALSE; | |
4334 | |
4335 return OK; | |
4336 } | |
4337 | |
4338 #if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO) | |
4339 /* | |
4340 * This is called from gui_start() after a fork() has been done. | |
4341 * We have to tell the session manager our new PID. | |
4342 */ | |
4343 void | |
4344 gui_mch_forked(void) | |
4345 { | |
4346 if (using_gnome) | |
4347 { | |
4348 GnomeClient *client; | |
4349 | |
4350 client = gnome_master_client(); | |
4351 | |
4352 if (client != NULL) | |
4353 gnome_client_set_process_id(client, getpid()); | |
4354 } | |
4355 } | |
4356 #endif /* FEAT_GUI_GNOME && FEAT_SESSION */ | |
4357 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4358 #if GTK_CHECK_VERSION(3,0,0) |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4359 static GdkRGBA |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4360 color_to_rgba(guicolor_T color) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4361 { |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4362 GdkRGBA rgba; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4363 rgba.red = ((color & 0xff0000) >> 16) / 255.0; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4364 rgba.green = ((color & 0xff00) >> 8) / 255.0; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4365 rgba.blue = ((color & 0xff)) / 255.0; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4366 rgba.alpha = 1.0; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4367 return rgba; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4368 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4369 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4370 static void |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4371 set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4372 { |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4373 const GdkRGBA rgba = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4374 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4375 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4376 #endif /* GTK_CHECK_VERSION(3,0,0) */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4377 |
7 | 4378 /* |
4379 * Called when the foreground or background color has been changed. | |
4380 * This used to change the graphics contexts directly but we are | |
4381 * currently manipulating them where desired. | |
4382 */ | |
4383 void | |
4384 gui_mch_new_colors(void) | |
4385 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4386 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4387 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4388 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4389 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4390 #else |
7 | 4391 if (gui.drawarea != NULL && gui.drawarea->window != NULL) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4392 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4393 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4394 #if GTK_CHECK_VERSION(3,4,0) |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4395 GdkRGBA rgba; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4396 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4397 rgba = color_to_rgba(gui.back_pixel); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4398 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4399 cairo_pattern_t * const pat = cairo_pattern_create_rgba( |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4400 rgba.red, rgba.green, rgba.blue, rgba.alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4401 if (pat != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4402 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4403 gdk_window_set_background_pattern(da_win, pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4404 cairo_pattern_destroy(pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4405 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4406 else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4407 gdk_window_set_background_rgba(da_win, &rgba); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4408 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4409 #else /* !GTK_CHECK_VERSION(3,4,0) */ |
7 | 4410 GdkColor color = { 0, 0, 0, 0 }; |
4411 | |
4412 color.pixel = gui.back_pixel; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4413 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4414 gdk_window_set_background(da_win, &color); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4415 # else |
7 | 4416 gdk_window_set_background(gui.drawarea->window, &color); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4417 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4418 #endif /* !GTK_CHECK_VERSION(3,4,0) */ |
7 | 4419 } |
4420 } | |
4421 | |
4422 /* | |
4423 * This signal informs us about the need to rearrange our sub-widgets. | |
4424 */ | |
4425 static gint | |
1884 | 4426 form_configure_event(GtkWidget *widget UNUSED, |
4427 GdkEventConfigure *event, | |
4428 gpointer data UNUSED) | |
7 | 4429 { |
791 | 4430 int usable_height = event->height; |
4431 | |
4432 /* When in a GtkPlug, we can't guarantee valid heights (as a round | |
4433 * no. of char-heights), so we have to manually sanitise them. | |
4434 * Widths seem to sort themselves out, don't ask me why. | |
4435 */ | |
4436 if (gtk_socket_id != 0) | |
856 | 4437 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */ |
791 | 4438 |
7 | 4439 gtk_form_freeze(GTK_FORM(gui.formwin)); |
791 | 4440 gui_resize_shell(event->width, usable_height); |
7 | 4441 gtk_form_thaw(GTK_FORM(gui.formwin)); |
4442 | |
4443 return TRUE; | |
4444 } | |
4445 | |
4446 /* | |
4447 * Function called when window already closed. | |
4448 * We can't do much more here than to trying to preserve what had been done, | |
4449 * since the window is already inevitably going away. | |
4450 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4451 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4452 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4453 mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4454 #else |
7 | 4455 static void |
1884 | 4456 mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4457 #endif |
7 | 4458 { |
4459 /* Don't write messages to the GUI anymore */ | |
4460 full_screen = FALSE; | |
4461 | |
4462 gui.mainwin = NULL; | |
4463 gui.drawarea = NULL; | |
4464 | |
4465 if (!exiting) /* only do anything if the destroy was unexpected */ | |
4466 { | |
419 | 4467 vim_strncpy(IObuff, |
4468 (char_u *)_("Vim: Main window unexpectedly destroyed\n"), | |
4469 IOSIZE - 1); | |
7 | 4470 preserve_exit(); |
4471 } | |
7380
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
4472 #ifdef USE_GRESOURCE |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
4473 gui_gtk_unregister_resource(); |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
4474 #endif |
7 | 4475 } |
4476 | |
791 | 4477 |
4478 /* | |
4479 * Bit of a hack to ensure we start GtkPlug windows with the correct window | |
4480 * hints (and thus the required size from -geom), but that after that we | |
4481 * put the hints back to normal (the actual minimum size) so we may | |
4482 * subsequently be resized smaller. GtkSocket (the parent end) uses the | |
1226 | 4483 * plug's window 'min hints to set *it's* minimum size, but that's also the |
791 | 4484 * only way we have of making ourselves bigger (by set lines/columns). |
4485 * Thus set hints at start-up to ensure correct init. size, then a | |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
4486 * second after the final attempt to reset the real minimum hints (done by |
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
4487 * scrollbar init.), actually do the standard hints and stop the timer. |
791 | 4488 * We'll not let the default hints be set while this timer's active. |
4489 */ | |
4490 static gboolean | |
1884 | 4491 check_startup_plug_hints(gpointer data UNUSED) |
791 | 4492 { |
4493 if (init_window_hints_state == 1) | |
4494 { | |
856 | 4495 /* Safe to use normal hints now */ |
4496 init_window_hints_state = 0; | |
4497 update_window_manager_hints(0, 0); | |
4498 return FALSE; /* stop timer */ | |
791 | 4499 } |
4500 | |
4501 /* Keep on trying */ | |
4502 init_window_hints_state = 1; | |
4503 return TRUE; | |
4504 } | |
4505 | |
7 | 4506 /* |
4507 * Open the GUI window which was created by a call to gui_mch_init(). | |
4508 */ | |
4509 int | |
4510 gui_mch_open(void) | |
4511 { | |
4512 guicolor_T fg_pixel = INVALCOLOR; | |
4513 guicolor_T bg_pixel = INVALCOLOR; | |
1966 | 4514 guint pixel_width; |
4515 guint pixel_height; | |
7 | 4516 |
4517 /* | |
4518 * Allow setting a window role on the command line, or invent one | |
4519 * if none was specified. This is mainly useful for GNOME session | |
4520 * support; allowing the WM to restore window placement. | |
4521 */ | |
4522 if (role_argument != NULL) | |
4523 { | |
4524 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument); | |
4525 } | |
4526 else | |
4527 { | |
4528 char *role; | |
4529 | |
4530 /* Invent a unique-enough ID string for the role */ | |
4531 role = g_strdup_printf("vim-%u-%u-%u", | |
4532 (unsigned)mch_get_pid(), | |
4533 (unsigned)g_random_int(), | |
4534 (unsigned)time(NULL)); | |
4535 | |
4536 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role); | |
4537 g_free(role); | |
4538 } | |
4539 | |
4540 if (gui_win_x != -1 && gui_win_y != -1) | |
4541 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y); | |
4542 | |
4543 /* Determine user specified geometry, if present. */ | |
4544 if (gui.geom != NULL) | |
4545 { | |
4546 int mask; | |
4547 unsigned int w, h; | |
4548 int x = 0; | |
4549 int y = 0; | |
4550 | |
4551 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h); | |
4552 | |
4553 if (mask & WidthValue) | |
4554 Columns = w; | |
4555 if (mask & HeightValue) | |
857 | 4556 { |
1884 | 4557 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window")) |
857 | 4558 p_window = h - 1; |
7 | 4559 Rows = h; |
857 | 4560 } |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4474
diff
changeset
|
4561 limit_screen_size(); |
1426 | 4562 |
4563 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); | |
4564 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); | |
4565 | |
4566 pixel_width += get_menu_tool_width(); | |
4567 pixel_height += get_menu_tool_height(); | |
4568 | |
7 | 4569 if (mask & (XValue | YValue)) |
1426 | 4570 { |
1757 | 4571 int ww, hh; |
4572 gui_mch_get_screen_dimensions(&ww, &hh); | |
4573 hh += p_ghr + get_menu_tool_height(); | |
4574 ww += get_menu_tool_width(); | |
1426 | 4575 if (mask & XNegative) |
1757 | 4576 x += ww - pixel_width; |
1426 | 4577 if (mask & YNegative) |
1757 | 4578 y += hh - pixel_height; |
7 | 4579 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
1426 | 4580 } |
7 | 4581 vim_free(gui.geom); |
4582 gui.geom = NULL; | |
791 | 4583 |
856 | 4584 /* From now until everyone's stopped trying to set the window hints |
4585 * to their correct minimum values, stop them being set as we need | |
4586 * them to remain at our required size for the parent GtkSocket to | |
4587 * give us the right initial size. | |
4588 */ | |
791 | 4589 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue)) |
856 | 4590 { |
4591 update_window_manager_hints(pixel_width, pixel_height); | |
4592 init_window_hints_state = 1; | |
4593 g_timeout_add(1000, check_startup_plug_hints, NULL); | |
4594 } | |
7 | 4595 } |
4596 | |
1966 | 4597 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
4598 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); | |
4599 /* For GTK2 changing the size of the form widget doesn't cause window | |
4600 * resizing. */ | |
2254
4620acaf4814
One more fix for conceal patch.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
4601 if (gtk_socket_id == 0) |
1966 | 4602 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height); |
791 | 4603 update_window_manager_hints(0, 0); |
7 | 4604 |
4605 if (foreground_argument != NULL) | |
4606 fg_pixel = gui_get_color((char_u *)foreground_argument); | |
4607 if (fg_pixel == INVALCOLOR) | |
4608 fg_pixel = gui_get_color((char_u *)"Black"); | |
4609 | |
4610 if (background_argument != NULL) | |
4611 bg_pixel = gui_get_color((char_u *)background_argument); | |
4612 if (bg_pixel == INVALCOLOR) | |
4613 bg_pixel = gui_get_color((char_u *)"White"); | |
4614 | |
4615 if (found_reverse_arg) | |
4616 { | |
4617 gui.def_norm_pixel = bg_pixel; | |
4618 gui.def_back_pixel = fg_pixel; | |
4619 } | |
4620 else | |
4621 { | |
4622 gui.def_norm_pixel = fg_pixel; | |
4623 gui.def_back_pixel = bg_pixel; | |
4624 } | |
4625 | |
4626 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or | |
4627 * in a vimrc file) */ | |
4628 set_normal_colors(); | |
4629 | |
4630 /* Check that none of the colors are the same as the background color */ | |
4631 gui_check_colors(); | |
4632 | |
4633 /* Get the colors for the highlight groups (gui_check_colors() might have | |
4634 * changed them). */ | |
4635 highlight_gui_started(); /* re-init colors and fonts */ | |
4636 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4637 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4638 g_signal_connect(G_OBJECT(gui.mainwin), "destroy", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4639 G_CALLBACK(mainwin_destroy_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4640 #else |
7 | 4641 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy", |
4642 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4643 #endif |
7 | 4644 |
4645 #ifdef FEAT_HANGULIN | |
4646 hangul_keyboard_set(); | |
4647 #endif | |
4648 | |
4649 /* | |
4650 * Notify the fixed area about the need to resize the contents of the | |
4651 * gui.formwin, which we use for random positioning of the included | |
4652 * components. | |
4653 * | |
4654 * We connect this signal deferred finally after anything is in place, | |
4655 * since this is intended to handle resizements coming from the window | |
4656 * manager upon us and should not interfere with what VIM is requesting | |
4657 * upon startup. | |
4658 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4659 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4660 g_signal_connect(G_OBJECT(gui.formwin), "configure-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4661 G_CALLBACK(form_configure_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4662 #else |
7 | 4663 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event", |
4664 GTK_SIGNAL_FUNC(form_configure_event), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4665 #endif |
7 | 4666 |
4667 #ifdef FEAT_DND | |
2183 | 4668 /* Set up for receiving DND items. */ |
4669 gui_gtk_set_dnd_targets(); | |
7 | 4670 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4671 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4672 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4673 G_CALLBACK(drag_data_received_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4674 # else |
7 | 4675 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received", |
4676 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4677 # endif |
7 | 4678 #endif |
4679 | |
4680 /* With GTK+ 2, we need to iconify the window before calling show() | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
4681 * to avoid mapping the window for a short time. */ |
7 | 4682 if (found_iconic_arg && gtk_socket_id == 0) |
4683 gui_mch_iconify(); | |
4684 | |
4685 { | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
4686 #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
7 | 4687 unsigned long menu_handler = 0; |
4688 # ifdef FEAT_TOOLBAR | |
4689 unsigned long tool_handler = 0; | |
4690 # endif | |
4691 /* | |
4692 * Urgh hackish :/ For some reason BonoboDockLayout always forces a | |
4693 * show when restoring the saved layout configuration. We can't just | |
4694 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's | |
4695 * a toplevel window and thus will be realized immediately. Instead, | |
4696 * connect signal handlers to hide the widgets just after they've been | |
4697 * marked visible, but before the main window is realized. | |
4698 */ | |
4699 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL) | |
4700 menu_handler = g_signal_connect_after(gui.menubar_h, "show", | |
4701 G_CALLBACK(>k_widget_hide), | |
4702 NULL); | |
4703 # ifdef FEAT_TOOLBAR | |
4704 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL | |
4705 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) | |
4706 tool_handler = g_signal_connect_after(gui.toolbar_h, "show", | |
4707 G_CALLBACK(>k_widget_hide), | |
4708 NULL); | |
4709 # endif | |
4710 #endif | |
4711 gtk_widget_show(gui.mainwin); | |
4712 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
4713 #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
7 | 4714 if (menu_handler != 0) |
4715 g_signal_handler_disconnect(gui.menubar_h, menu_handler); | |
4716 # ifdef FEAT_TOOLBAR | |
4717 if (tool_handler != 0) | |
4718 g_signal_handler_disconnect(gui.toolbar_h, tool_handler); | |
4719 # endif | |
4720 #endif | |
4721 } | |
4722 | |
4723 return OK; | |
4724 } | |
4725 | |
4726 | |
4727 void | |
1884 | 4728 gui_mch_exit(int rc UNUSED) |
7 | 4729 { |
4730 if (gui.mainwin != NULL) | |
4731 gtk_widget_destroy(gui.mainwin); | |
4732 } | |
4733 | |
4734 /* | |
4735 * Get the position of the top left corner of the window. | |
4736 */ | |
4737 int | |
4738 gui_mch_get_winpos(int *x, int *y) | |
4739 { | |
4740 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y); | |
4741 return OK; | |
4742 } | |
4743 | |
4744 /* | |
4745 * Set the position of the top left corner of the window to the given | |
4746 * coordinates. | |
4747 */ | |
4748 void | |
4749 gui_mch_set_winpos(int x, int y) | |
4750 { | |
4751 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); | |
4752 } | |
4753 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4754 #if !GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4755 # if 0 |
7 | 4756 static int resize_idle_installed = FALSE; |
4757 /* | |
4758 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure | |
4759 * the shell size doesn't exceed the window size, i.e. if the window manager | |
4760 * ignored our size request. Usually this happens if the window is maximized. | |
4761 * | |
4762 * FIXME: It'd be nice if we could find a little more orthodox solution. | |
4763 * See also the remark below in gui_mch_set_shellsize(). | |
4764 * | |
4765 * DISABLED: When doing ":set lines+=1" this function would first invoke | |
4766 * gui_resize_shell() with the old size, then the normal callback would | |
4767 * report the new size through form_configure_event(). That caused the window | |
4768 * layout to be messed up. | |
4769 */ | |
4770 static gboolean | |
4771 force_shell_resize_idle(gpointer data) | |
4772 { | |
4773 if (gui.mainwin != NULL | |
4774 && GTK_WIDGET_REALIZED(gui.mainwin) | |
4775 && GTK_WIDGET_VISIBLE(gui.mainwin)) | |
4776 { | |
4777 int width; | |
4778 int height; | |
4779 | |
4780 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height); | |
4781 | |
4782 width -= get_menu_tool_width(); | |
4783 height -= get_menu_tool_height(); | |
4784 | |
4785 gui_resize_shell(width, height); | |
4786 } | |
4787 | |
4788 resize_idle_installed = FALSE; | |
4789 return FALSE; /* don't call me again */ | |
4790 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4791 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4792 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
4793 |
1967 | 4794 /* |
4795 * Return TRUE if the main window is maximized. | |
4796 */ | |
4797 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
4798 gui_mch_maximized(void) |
1967 | 4799 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4800 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4801 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4802 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin)) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4803 & GDK_WINDOW_STATE_MAXIMIZED)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4804 #else |
1967 | 4805 return (gui.mainwin != NULL && gui.mainwin->window != NULL |
4806 && (gdk_window_get_state(gui.mainwin->window) | |
4807 & GDK_WINDOW_STATE_MAXIMIZED)); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4808 #endif |
1967 | 4809 } |
4810 | |
4811 /* | |
4812 * Unmaximize the main window | |
4813 */ | |
4814 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
4815 gui_mch_unmaximize(void) |
1967 | 4816 { |
4817 if (gui.mainwin != NULL) | |
4818 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin)); | |
4819 } | |
4820 | |
7 | 4821 /* |
3014 | 4822 * Called when the font changed while the window is maximized. Compute the |
4823 * new Rows and Columns. This is like resizing the window. | |
4824 */ | |
4825 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
4826 gui_mch_newfont(void) |
3014 | 4827 { |
4828 int w, h; | |
4829 | |
4830 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h); | |
4831 w -= get_menu_tool_width(); | |
4832 h -= get_menu_tool_height(); | |
4833 gui_resize_shell(w, h); | |
4834 } | |
4835 | |
4836 /* | |
7 | 4837 * Set the windows size. |
4838 */ | |
4839 void | |
4840 gui_mch_set_shellsize(int width, int height, | |
1884 | 4841 int min_width UNUSED, int min_height UNUSED, |
4842 int base_width UNUSED, int base_height UNUSED, | |
4843 int direction UNUSED) | |
7 | 4844 { |
4845 /* give GTK+ a chance to put all widget's into place */ | |
4846 gui_mch_update(); | |
4847 | |
791 | 4848 /* this will cause the proper resizement to happen too */ |
4849 if (gtk_socket_id == 0) | |
856 | 4850 update_window_manager_hints(0, 0); |
791 | 4851 |
7 | 4852 /* With GTK+ 2, changing the size of the form widget doesn't resize |
791 | 4853 * the window. So let's do it the other way around and resize the |
7 | 4854 * main window instead. */ |
4855 width += get_menu_tool_width(); | |
4856 height += get_menu_tool_height(); | |
4857 | |
791 | 4858 if (gtk_socket_id == 0) |
856 | 4859 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height); |
791 | 4860 else |
856 | 4861 update_window_manager_hints(width, height); |
7 | 4862 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4863 # if !GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4864 # if 0 |
7 | 4865 if (!resize_idle_installed) |
4866 { | |
4867 g_idle_add_full(GDK_PRIORITY_EVENTS + 10, | |
4868 &force_shell_resize_idle, NULL, NULL); | |
4869 resize_idle_installed = TRUE; | |
4870 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4871 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4872 # endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 4873 /* |
4874 * Wait until all events are processed to prevent a crash because the | |
4875 * real size of the drawing area doesn't reflect Vim's internal ideas. | |
4876 * | |
4877 * This is a bit of a hack, since Vim is a terminal application with a GUI | |
4878 * on top, while the GUI expects to be the boss. | |
4879 */ | |
4880 gui_mch_update(); | |
4881 } | |
4882 | |
4883 | |
4884 /* | |
4885 * The screen size is used to make sure the initial window doesn't get bigger | |
4886 * than the screen. This subtracts some room for menubar, toolbar and window | |
4887 * decorations. | |
4888 */ | |
4889 void | |
4890 gui_mch_get_screen_dimensions(int *screen_w, int *screen_h) | |
4891 { | |
4892 #ifdef HAVE_GTK_MULTIHEAD | |
4893 GdkScreen* screen; | |
4894 | |
4895 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin)) | |
4896 screen = gtk_widget_get_screen(gui.mainwin); | |
4897 else | |
4898 screen = gdk_screen_get_default(); | |
4899 | |
4900 *screen_w = gdk_screen_get_width(screen); | |
4901 *screen_h = gdk_screen_get_height(screen) - p_ghr; | |
4902 #else | |
4903 *screen_w = gdk_screen_width(); | |
4904 /* Subtract 'guiheadroom' from the height to allow some room for the | |
4905 * window manager (task list and window title bar). */ | |
4906 *screen_h = gdk_screen_height() - p_ghr; | |
4907 #endif | |
4908 | |
4909 /* | |
4910 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include | |
4911 * the toolbar and menubar for GTK, we subtract them from the screen | |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
4912 * height, so that the window size can be made to fit on the screen. |
7 | 4913 * This should be completely changed later. |
4914 */ | |
4915 *screen_w -= get_menu_tool_width(); | |
4916 *screen_h -= get_menu_tool_height(); | |
4917 } | |
4918 | |
4919 #if defined(FEAT_TITLE) || defined(PROTO) | |
4920 void | |
1884 | 4921 gui_mch_settitle(char_u *title, char_u *icon UNUSED) |
7 | 4922 { |
4923 if (title != NULL && output_conv.vc_type != CONV_NONE) | |
4924 title = string_convert(&output_conv, title, NULL); | |
4925 | |
4926 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title); | |
4927 | |
4928 if (output_conv.vc_type != CONV_NONE) | |
4929 vim_free(title); | |
4930 } | |
4931 #endif /* FEAT_TITLE */ | |
4932 | |
4933 #if defined(FEAT_MENU) || defined(PROTO) | |
4934 void | |
4935 gui_mch_enable_menu(int showit) | |
4936 { | |
4937 GtkWidget *widget; | |
4938 | |
4939 # ifdef FEAT_GUI_GNOME | |
4940 if (using_gnome) | |
4941 widget = gui.menubar_h; | |
4942 else | |
4943 # endif | |
4944 widget = gui.menubar; | |
4945 | |
827 | 4946 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4947 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4948 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4949 # else |
827 | 4950 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4951 # endif |
7 | 4952 { |
4953 if (showit) | |
4954 gtk_widget_show(widget); | |
4955 else | |
4956 gtk_widget_hide(widget); | |
4957 | |
791 | 4958 update_window_manager_hints(0, 0); |
7 | 4959 } |
4960 } | |
4961 #endif /* FEAT_MENU */ | |
4962 | |
4963 #if defined(FEAT_TOOLBAR) || defined(PROTO) | |
4964 void | |
4965 gui_mch_show_toolbar(int showit) | |
4966 { | |
4967 GtkWidget *widget; | |
4968 | |
4969 if (gui.toolbar == NULL) | |
4970 return; | |
4971 | |
4972 # ifdef FEAT_GUI_GNOME | |
4973 if (using_gnome) | |
4974 widget = gui.toolbar_h; | |
4975 else | |
4976 # endif | |
4977 widget = gui.toolbar; | |
4978 | |
4979 if (showit) | |
4980 set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); | |
4981 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4982 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4983 if (!showit != !gtk_widget_get_visible(widget)) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4984 # else |
7 | 4985 if (!showit != !GTK_WIDGET_VISIBLE(widget)) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4986 # endif |
7 | 4987 { |
4988 if (showit) | |
4989 gtk_widget_show(widget); | |
4990 else | |
4991 gtk_widget_hide(widget); | |
4992 | |
791 | 4993 update_window_manager_hints(0, 0); |
7 | 4994 } |
4995 } | |
4996 #endif /* FEAT_TOOLBAR */ | |
4997 | |
4998 /* | |
4999 * Check if a given font is a CJK font. This is done in a very crude manner. It | |
5000 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given | |
5001 * font. Consequently, this function cannot be used as a general purpose check | |
5002 * for CJK-ness for which fontconfig APIs should be used. This is only used by | |
5003 * gui_mch_init_font() to deal with 'CJK fixed width fonts'. | |
5004 */ | |
5005 static int | |
5006 is_cjk_font(PangoFontDescription *font_desc) | |
5007 { | |
5008 static const char * const cjk_langs[] = | |
5009 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"}; | |
5010 | |
5011 PangoFont *font; | |
5012 unsigned i; | |
5013 int is_cjk = FALSE; | |
5014 | |
5015 font = pango_context_load_font(gui.text_context, font_desc); | |
5016 | |
5017 if (font == NULL) | |
5018 return FALSE; | |
5019 | |
5020 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i) | |
5021 { | |
5022 PangoCoverage *coverage; | |
5023 gunichar uc; | |
5024 | |
5025 coverage = pango_font_get_coverage( | |
5026 font, pango_language_from_string(cjk_langs[i])); | |
5027 | |
5028 if (coverage != NULL) | |
5029 { | |
5030 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00; | |
5031 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT); | |
5032 pango_coverage_unref(coverage); | |
5033 } | |
5034 } | |
5035 | |
5036 g_object_unref(font); | |
5037 | |
5038 return is_cjk; | |
5039 } | |
5040 | |
445 | 5041 /* |
5042 * Adjust gui.char_height (after 'linespace' was changed). | |
5043 */ | |
7 | 5044 int |
445 | 5045 gui_mch_adjust_charheight(void) |
7 | 5046 { |
5047 PangoFontMetrics *metrics; | |
5048 int ascent; | |
5049 int descent; | |
5050 | |
5051 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font, | |
5052 pango_context_get_language(gui.text_context)); | |
5053 ascent = pango_font_metrics_get_ascent(metrics); | |
5054 descent = pango_font_metrics_get_descent(metrics); | |
5055 | |
5056 pango_font_metrics_unref(metrics); | |
5057 | |
5058 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE | |
445 | 5059 + p_linespace; |
136 | 5060 /* LINTED: avoid warning: bitwise operation on signed value */ |
7 | 5061 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2); |
5062 | |
5063 /* A not-positive value of char_height may crash Vim. Only happens | |
5064 * if 'linespace' is negative (which does make sense sometimes). */ | |
5065 gui.char_ascent = MAX(gui.char_ascent, 0); | |
5066 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1); | |
5067 | |
5068 return OK; | |
5069 } | |
5070 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5071 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5072 /* Callback function used in gui_mch_font_dialog() */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5073 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5074 font_filter(const PangoFontFamily *family, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5075 const PangoFontFace *face UNUSED, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5076 gpointer data UNUSED) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5077 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5078 return pango_font_family_is_monospace((PangoFontFamily *)family); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5079 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5080 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5081 |
7 | 5082 /* |
5083 * Put up a font dialog and return the selected font name in allocated memory. | |
5084 * "oldval" is the previous value. Return NULL when cancelled. | |
5085 * This should probably go into gui_gtk.c. Hmm. | |
5086 * FIXME: | |
5087 * The GTK2 font selection dialog has no filtering API. So we could either | |
5088 * a) implement our own (possibly copying the code from somewhere else) or | |
5089 * b) just live with it. | |
5090 */ | |
5091 char_u * | |
5092 gui_mch_font_dialog(char_u *oldval) | |
5093 { | |
5094 GtkWidget *dialog; | |
5095 int response; | |
5096 char_u *fontname = NULL; | |
5097 char_u *oldname; | |
5098 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5099 #if GTK_CHECK_VERSION(3,2,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5100 dialog = gtk_font_chooser_dialog_new(NULL, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5101 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5102 NULL, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5103 #else |
7 | 5104 dialog = gtk_font_selection_dialog_new(NULL); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5105 #endif |
7 | 5106 |
5107 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin)); | |
5108 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE); | |
5109 | |
5110 if (oldval != NULL && oldval[0] != NUL) | |
5111 { | |
5112 if (output_conv.vc_type != CONV_NONE) | |
5113 oldname = string_convert(&output_conv, oldval, NULL); | |
5114 else | |
5115 oldname = oldval; | |
5116 | |
5117 /* Annoying bug in GTK (or Pango): if the font name does not include a | |
5118 * size, zero is used. Use default point size ten. */ | |
5119 if (!vim_isdigit(oldname[STRLEN(oldname) - 1])) | |
5120 { | |
5121 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3); | |
5122 | |
5123 if (p != NULL) | |
5124 { | |
5125 STRCPY(p + STRLEN(p), " 10"); | |
5126 if (oldname != oldval) | |
5127 vim_free(oldname); | |
5128 oldname = p; | |
5129 } | |
5130 } | |
5131 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5132 #if GTK_CHECK_VERSION(3,2,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5133 gtk_font_chooser_set_font( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5134 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5135 #else |
7 | 5136 gtk_font_selection_dialog_set_font_name( |
5137 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5138 #endif |
7 | 5139 |
5140 if (oldname != oldval) | |
100 | 5141 vim_free(oldname); |
7 | 5142 } |
1959 | 5143 else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5144 #if GTK_CHECK_VERSION(3,2,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5145 gtk_font_chooser_set_font( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5146 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5147 #else |
1959 | 5148 gtk_font_selection_dialog_set_font_name( |
5149 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5150 #endif |
7 | 5151 |
5152 response = gtk_dialog_run(GTK_DIALOG(dialog)); | |
5153 | |
5154 if (response == GTK_RESPONSE_OK) | |
5155 { | |
5156 char *name; | |
5157 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5158 #if GTK_CHECK_VERSION(3,2,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5159 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5160 #else |
7 | 5161 name = gtk_font_selection_dialog_get_font_name( |
5162 GTK_FONT_SELECTION_DIALOG(dialog)); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5163 #endif |
7 | 5164 if (name != NULL) |
5165 { | |
714 | 5166 char_u *p; |
5167 | |
5168 /* Apparently some font names include a comma, need to escape | |
5169 * that, because in 'guifont' it separates names. */ | |
5170 p = vim_strsave_escaped((char_u *)name, (char_u *)","); | |
5171 g_free(name); | |
840 | 5172 if (p != NULL && input_conv.vc_type != CONV_NONE) |
714 | 5173 { |
5174 fontname = string_convert(&input_conv, p, NULL); | |
5175 vim_free(p); | |
5176 } | |
7 | 5177 else |
714 | 5178 fontname = p; |
7 | 5179 } |
5180 } | |
5181 | |
5182 if (response != GTK_RESPONSE_NONE) | |
5183 gtk_widget_destroy(dialog); | |
5184 | |
5185 return fontname; | |
5186 } | |
5187 | |
5188 /* | |
5189 * Some monospace fonts don't support a bold weight, and fall back | |
5190 * silently to the regular weight. But this is no good since our text | |
5191 * drawing function can emulate bold by overstriking. So let's try | |
5192 * to detect whether bold weight is actually available and emulate it | |
5193 * otherwise. | |
5194 * | |
5195 * Note that we don't need to check for italic style since Xft can | |
5196 * emulate italic on its own, provided you have a proper fontconfig | |
5197 * setup. We wouldn't be able to emulate it in Vim anyway. | |
5198 */ | |
5199 static void | |
5200 get_styled_font_variants(void) | |
5201 { | |
5202 PangoFontDescription *bold_font_desc; | |
5203 PangoFont *plain_font; | |
5204 PangoFont *bold_font; | |
5205 | |
5206 gui.font_can_bold = FALSE; | |
5207 | |
5208 plain_font = pango_context_load_font(gui.text_context, gui.norm_font); | |
5209 | |
5210 if (plain_font == NULL) | |
5211 return; | |
5212 | |
5213 bold_font_desc = pango_font_description_copy_static(gui.norm_font); | |
5214 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD); | |
5215 | |
5216 bold_font = pango_context_load_font(gui.text_context, bold_font_desc); | |
5217 /* | |
5218 * The comparison relies on the unique handle nature of a PangoFont*, | |
5219 * i.e. it's assumed that a different PangoFont* won't refer to the | |
5220 * same font. Seems to work, and failing here isn't critical anyway. | |
5221 */ | |
5222 if (bold_font != NULL) | |
5223 { | |
5224 gui.font_can_bold = (bold_font != plain_font); | |
5225 g_object_unref(bold_font); | |
5226 } | |
5227 | |
5228 pango_font_description_free(bold_font_desc); | |
5229 g_object_unref(plain_font); | |
5230 } | |
5231 | |
5232 static PangoEngineShape *default_shape_engine = NULL; | |
5233 | |
5234 /* | |
5235 * Create a map from ASCII characters in the range [32,126] to glyphs | |
5236 * of the current font. This is used by gui_gtk2_draw_string() to skip | |
5237 * the itemize and shaping process for the most common case. | |
5238 */ | |
5239 static void | |
5240 ascii_glyph_table_init(void) | |
5241 { | |
9879
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5242 char_u ascii_chars[2 * 128]; |
7 | 5243 PangoAttrList *attr_list; |
5244 GList *item_list; | |
5245 int i; | |
5246 | |
5247 if (gui.ascii_glyphs != NULL) | |
5248 pango_glyph_string_free(gui.ascii_glyphs); | |
5249 if (gui.ascii_font != NULL) | |
5250 g_object_unref(gui.ascii_font); | |
5251 | |
5252 gui.ascii_glyphs = NULL; | |
5253 gui.ascii_font = NULL; | |
5254 | |
9879
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5255 /* For safety, fill in question marks for the control characters. |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5256 * Put a space between characters to avoid shaping. */ |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5257 for (i = 0; i < 128; ++i) |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5258 { |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5259 if (i >= 32 && i < 127) |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5260 ascii_chars[2 * i] = i; |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5261 else |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5262 ascii_chars[2 * i] = '?'; |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5263 ascii_chars[2 * i + 1] = ' '; |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5264 } |
7 | 5265 |
5266 attr_list = pango_attr_list_new(); | |
5267 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars, | |
5268 0, sizeof(ascii_chars), attr_list, NULL); | |
5269 | |
5270 if (item_list != NULL && item_list->next == NULL) /* play safe */ | |
5271 { | |
5272 PangoItem *item; | |
5273 int width; | |
5274 | |
5275 item = (PangoItem *)item_list->data; | |
5276 width = gui.char_width * PANGO_SCALE; | |
5277 | |
5278 /* Remember the shape engine used for ASCII. */ | |
5279 default_shape_engine = item->analysis.shape_engine; | |
5280 | |
5281 gui.ascii_font = item->analysis.font; | |
5282 g_object_ref(gui.ascii_font); | |
5283 | |
5284 gui.ascii_glyphs = pango_glyph_string_new(); | |
5285 | |
5286 pango_shape((const char *)ascii_chars, sizeof(ascii_chars), | |
5287 &item->analysis, gui.ascii_glyphs); | |
5288 | |
5289 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars)); | |
5290 | |
5291 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i) | |
5292 { | |
5293 PangoGlyphGeometry *geom; | |
5294 | |
5295 geom = &gui.ascii_glyphs->glyphs[i].geometry; | |
5296 geom->x_offset += MAX(0, width - geom->width) / 2; | |
5297 geom->width = width; | |
5298 } | |
5299 } | |
5300 | |
5301 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL); | |
5302 g_list_free(item_list); | |
5303 pango_attr_list_unref(attr_list); | |
5304 } | |
5305 | |
5306 /* | |
5307 * Initialize Vim to use the font or fontset with the given name. | |
5308 * Return FAIL if the font could not be loaded, OK otherwise. | |
5309 */ | |
5310 int | |
1884 | 5311 gui_mch_init_font(char_u *font_name, int fontset UNUSED) |
7 | 5312 { |
5313 PangoFontDescription *font_desc; | |
5314 PangoLayout *layout; | |
5315 int width; | |
5316 | |
5317 /* If font_name is NULL, this means to use the default, which should | |
5318 * be present on all proper Pango/fontconfig installations. */ | |
5319 if (font_name == NULL) | |
5320 font_name = (char_u *)DEFAULT_FONT; | |
5321 | |
5322 font_desc = gui_mch_get_font(font_name, FALSE); | |
5323 | |
5324 if (font_desc == NULL) | |
5325 return FAIL; | |
5326 | |
5327 gui_mch_free_font(gui.norm_font); | |
5328 gui.norm_font = font_desc; | |
5329 | |
5330 pango_context_set_font_description(gui.text_context, font_desc); | |
5331 | |
5332 layout = pango_layout_new(gui.text_context); | |
5333 pango_layout_set_text(layout, "MW", 2); | |
5334 pango_layout_get_size(layout, &width, NULL); | |
5335 /* | |
5336 * Set char_width to half the width obtained from pango_layout_get_size() | |
5337 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads | |
5338 * Pango to use the same width for both non-CJK characters (e.g. Latin | |
5339 * letters and numbers) and CJK characters. This results in 's p a c e d | |
5340 * o u t' rendering when a CJK 'fixed width' font is used. To work around | |
5341 * that, divide the width returned by Pango by 2 if cjk_width is equal to | |
5342 * width for CJK fonts. | |
5343 * | |
5344 * For related bugs, see: | |
5345 * http://bugzilla.gnome.org/show_bug.cgi?id=106618 | |
5346 * http://bugzilla.gnome.org/show_bug.cgi?id=106624 | |
5347 * | |
5348 * With this, for all four of the following cases, Vim works fine: | |
5349 * guifont=CJK_fixed_width_font | |
5350 * guifont=Non_CJK_fixed_font | |
5351 * guifont=Non_CJK_fixed_font,CJK_Fixed_font | |
5352 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font | |
5353 */ | |
5354 if (is_cjk_font(gui.norm_font)) | |
5355 { | |
5356 int cjk_width; | |
5357 | |
5358 /* Measure the text extent of U+4E00 and U+4E8C */ | |
5359 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1); | |
5360 pango_layout_get_size(layout, &cjk_width, NULL); | |
5361 | |
5362 if (width == cjk_width) /* Xft not patched */ | |
5363 width /= 2; | |
5364 } | |
5365 g_object_unref(layout); | |
5366 | |
5367 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE; | |
5368 | |
5369 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */ | |
5370 if (gui.char_width <= 0) | |
5371 gui.char_width = 8; | |
5372 | |
445 | 5373 gui_mch_adjust_charheight(); |
7 | 5374 |
5375 /* Set the fontname, which will be used for information purposes */ | |
5376 hl_set_font_name(font_name); | |
5377 | |
5378 get_styled_font_variants(); | |
5379 ascii_glyph_table_init(); | |
5380 | |
5381 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */ | |
5382 if (gui.wide_font != NULL | |
5383 && pango_font_description_equal(gui.norm_font, gui.wide_font)) | |
5384 { | |
5385 pango_font_description_free(gui.wide_font); | |
5386 gui.wide_font = NULL; | |
5387 } | |
5388 | |
1986 | 5389 if (gui_mch_maximized()) |
5390 { | |
5391 /* Update lines and columns in accordance with the new font, keep the | |
5392 * window maximized. */ | |
3014 | 5393 gui_mch_newfont(); |
1986 | 5394 } |
5395 else | |
5396 { | |
5397 /* Preserve the logical dimensions of the screen. */ | |
5398 update_window_manager_hints(0, 0); | |
5399 } | |
7 | 5400 |
5401 return OK; | |
5402 } | |
5403 | |
5404 /* | |
5405 * Get a reference to the font "name". | |
5406 * Return zero for failure. | |
5407 */ | |
5408 GuiFont | |
5409 gui_mch_get_font(char_u *name, int report_error) | |
5410 { | |
5411 PangoFontDescription *font; | |
5412 | |
5413 /* can't do this when GUI is not running */ | |
5414 if (!gui.in_use || name == NULL) | |
5415 return NULL; | |
5416 | |
5417 if (output_conv.vc_type != CONV_NONE) | |
5418 { | |
5419 char_u *buf; | |
5420 | |
5421 buf = string_convert(&output_conv, name, NULL); | |
5422 if (buf != NULL) | |
5423 { | |
5424 font = pango_font_description_from_string((const char *)buf); | |
5425 vim_free(buf); | |
5426 } | |
5427 else | |
5428 font = NULL; | |
5429 } | |
5430 else | |
5431 font = pango_font_description_from_string((const char *)name); | |
5432 | |
5433 if (font != NULL) | |
5434 { | |
5435 PangoFont *real_font; | |
5436 | |
5437 /* pango_context_load_font() bails out if no font size is set */ | |
5438 if (pango_font_description_get_size(font) <= 0) | |
5439 pango_font_description_set_size(font, 10 * PANGO_SCALE); | |
5440 | |
5441 real_font = pango_context_load_font(gui.text_context, font); | |
5442 | |
5443 if (real_font == NULL) | |
5444 { | |
5445 pango_font_description_free(font); | |
5446 font = NULL; | |
5447 } | |
5448 else | |
5449 g_object_unref(real_font); | |
5450 } | |
5451 | |
5452 if (font == NULL) | |
5453 { | |
5454 if (report_error) | |
1666 | 5455 EMSG2(_((char *)e_font), name); |
7 | 5456 return NULL; |
5457 } | |
5458 | |
5459 return font; | |
5460 } | |
5461 | |
39 | 5462 #if defined(FEAT_EVAL) || defined(PROTO) |
38 | 5463 /* |
5464 * Return the name of font "font" in allocated memory. | |
5465 */ | |
5466 char_u * | |
1884 | 5467 gui_mch_get_fontname(GuiFont font, char_u *name UNUSED) |
38 | 5468 { |
5469 if (font != NOFONT) | |
5470 { | |
944 | 5471 char *pangoname = pango_font_description_to_string(font); |
5472 | |
5473 if (pangoname != NULL) | |
38 | 5474 { |
944 | 5475 char_u *s = vim_strsave((char_u *)pangoname); |
5476 | |
5477 g_free(pangoname); | |
38 | 5478 return s; |
5479 } | |
5480 } | |
5481 return NULL; | |
5482 } | |
39 | 5483 #endif |
38 | 5484 |
7 | 5485 /* |
5486 * If a font is not going to be used, free its structure. | |
5487 */ | |
5488 void | |
5489 gui_mch_free_font(GuiFont font) | |
5490 { | |
5491 if (font != NOFONT) | |
5492 pango_font_description_free(font); | |
5493 } | |
5494 | |
5495 /* | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5496 * Return the Pixel value (color) for the given color name. |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5497 * |
7 | 5498 * Return INVALCOLOR for error. |
5499 */ | |
5500 guicolor_T | |
5501 gui_mch_get_color(char_u *name) | |
5502 { | |
5503 if (!gui.in_use) /* can't do this when GUI not running */ | |
5504 return INVALCOLOR; | |
5505 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5506 #if GTK_CHECK_VERSION(3,0,0) |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5507 return name != NULL ? gui_get_color_cmn(name) : INVALCOLOR; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5508 #else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5509 guicolor_T color; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5510 GdkColor gcolor; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5511 int ret; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5512 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5513 color = (name != NULL) ? gui_get_color_cmn(name) : INVALCOLOR; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5514 if (color == INVALCOLOR) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5515 return INVALCOLOR; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5516 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5517 gcolor.red = (guint16)(((color & 0xff0000) >> 16) / 255.0 * 65535 + 0.5); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5518 gcolor.green = (guint16)(((color & 0xff00) >> 8) / 255.0 * 65535 + 0.5); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5519 gcolor.blue = (guint16)((color & 0xff) / 255.0 * 65535 + 0.5); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5520 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5521 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea), |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5522 &gcolor, FALSE, TRUE); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5523 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5524 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5525 #endif |
7 | 5526 } |
5527 | |
5528 /* | |
5529 * Set the current text foreground color. | |
5530 */ | |
5531 void | |
5532 gui_mch_set_fg_color(guicolor_T color) | |
5533 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5534 #if GTK_CHECK_VERSION(3,0,0) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5535 *gui.fgcolor = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5536 #else |
7 | 5537 gui.fgcolor->pixel = (unsigned long)color; |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5538 #endif |
7 | 5539 } |
5540 | |
5541 /* | |
5542 * Set the current text background color. | |
5543 */ | |
5544 void | |
5545 gui_mch_set_bg_color(guicolor_T color) | |
5546 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5547 #if GTK_CHECK_VERSION(3,0,0) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5548 *gui.bgcolor = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5549 #else |
7 | 5550 gui.bgcolor->pixel = (unsigned long)color; |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5551 #endif |
7 | 5552 } |
5553 | |
207 | 5554 /* |
5555 * Set the current text special color. | |
5556 */ | |
5557 void | |
5558 gui_mch_set_sp_color(guicolor_T color) | |
5559 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5560 #if GTK_CHECK_VERSION(3,0,0) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5561 *gui.spcolor = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5562 #else |
207 | 5563 gui.spcolor->pixel = (unsigned long)color; |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5564 #endif |
207 | 5565 } |
5566 | |
7 | 5567 /* |
5568 * Function-like convenience macro for the sake of efficiency. | |
5569 */ | |
5570 #define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \ | |
5571 G_STMT_START{ \ | |
5572 PangoAttribute *tmp_attr_; \ | |
5573 tmp_attr_ = (Attribute); \ | |
5574 tmp_attr_->start_index = (Start); \ | |
5575 tmp_attr_->end_index = (End); \ | |
5576 pango_attr_list_insert((AttrList), tmp_attr_); \ | |
5577 }G_STMT_END | |
5578 | |
5579 static void | |
5580 apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list) | |
5581 { | |
5582 char_u *start = NULL; | |
5583 char_u *p; | |
5584 int uc; | |
5585 | |
5586 for (p = s; p < s + len; p += utf_byte2len(*p)) | |
5587 { | |
5588 uc = utf_ptr2char(p); | |
5589 | |
5590 if (start == NULL) | |
5591 { | |
5592 if (uc >= 0x80 && utf_char2cells(uc) == 2) | |
5593 start = p; | |
5594 } | |
5595 else if (uc < 0x80 /* optimization shortcut */ | |
5596 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc))) | |
5597 { | |
5598 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), | |
5599 attr_list, start - s, p - s); | |
5600 start = NULL; | |
5601 } | |
5602 } | |
5603 | |
5604 if (start != NULL) | |
5605 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), | |
5606 attr_list, start - s, len); | |
5607 } | |
5608 | |
5609 static int | |
5610 count_cluster_cells(char_u *s, PangoItem *item, | |
5611 PangoGlyphString* glyphs, int i, | |
5612 int *cluster_width, | |
5613 int *last_glyph_rbearing) | |
5614 { | |
5615 char_u *p; | |
5616 int next; /* glyph start index of next cluster */ | |
5617 int start, end; /* string segment of current cluster */ | |
5618 int width; /* real cluster width in Pango units */ | |
5619 int uc; | |
5620 int cellcount = 0; | |
5621 | |
5622 width = glyphs->glyphs[i].geometry.width; | |
5623 | |
5624 for (next = i + 1; next < glyphs->num_glyphs; ++next) | |
5625 { | |
5626 if (glyphs->glyphs[next].attr.is_cluster_start) | |
5627 break; | |
5628 else if (glyphs->glyphs[next].geometry.width > width) | |
5629 width = glyphs->glyphs[next].geometry.width; | |
5630 } | |
5631 | |
5632 start = item->offset + glyphs->log_clusters[i]; | |
5633 end = item->offset + ((next < glyphs->num_glyphs) ? | |
5634 glyphs->log_clusters[next] : item->length); | |
5635 | |
5636 for (p = s + start; p < s + end; p += utf_byte2len(*p)) | |
5637 { | |
5638 uc = utf_ptr2char(p); | |
5639 if (uc < 0x80) | |
5640 ++cellcount; | |
5641 else if (!utf_iscomposing(uc)) | |
5642 cellcount += utf_char2cells(uc); | |
5643 } | |
5644 | |
5645 if (last_glyph_rbearing != NULL | |
5646 && cellcount > 0 && next == glyphs->num_glyphs) | |
5647 { | |
5648 PangoRectangle ink_rect; | |
5649 /* | |
5650 * If a certain combining mark had to be taken from a non-monospace | |
5651 * font, we have to compensate manually by adapting x_offset according | |
5652 * to the ink extents of the previous glyph. | |
5653 */ | |
5654 pango_font_get_glyph_extents(item->analysis.font, | |
5655 glyphs->glyphs[i].glyph, | |
5656 &ink_rect, NULL); | |
5657 | |
5658 if (PANGO_RBEARING(ink_rect) > 0) | |
5659 *last_glyph_rbearing = PANGO_RBEARING(ink_rect); | |
5660 } | |
5661 | |
5662 if (cellcount > 0) | |
5663 *cluster_width = width; | |
5664 | |
5665 return cellcount; | |
5666 } | |
5667 | |
5668 /* | |
5669 * If there are only combining characters in the cluster, we cannot just | |
5670 * change the width of the previous glyph since there is none. Therefore | |
5671 * some guesswork is needed. | |
5672 * | |
5673 * If ink_rect.x is negative Pango apparently has taken care of the composing | |
5674 * by itself. Actually setting x_offset = 0 should be sufficient then, but due | |
5675 * to problems with composing from different fonts we still need to fine-tune | |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
5676 * x_offset to avoid ugliness. |
7 | 5677 * |
5678 * If ink_rect.x is not negative, force overstriking by pointing x_offset to | |
5679 * the position of the previous glyph. Apparently this happens only with old | |
5680 * X fonts which don't provide the special combining information needed by | |
5681 * Pango. | |
5682 */ | |
5683 static void | |
5684 setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph, | |
5685 int last_cellcount, int last_cluster_width, | |
5686 int last_glyph_rbearing) | |
5687 { | |
5688 PangoRectangle ink_rect; | |
5689 PangoRectangle logical_rect; | |
5690 int width; | |
5691 | |
5692 width = last_cellcount * gui.char_width * PANGO_SCALE; | |
5693 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2; | |
5694 glyph->geometry.width = 0; | |
5695 | |
5696 pango_font_get_glyph_extents(item->analysis.font, | |
5697 glyph->glyph, | |
5698 &ink_rect, &logical_rect); | |
5699 if (ink_rect.x < 0) | |
5700 { | |
5701 glyph->geometry.x_offset += last_glyph_rbearing; | |
5702 glyph->geometry.y_offset = logical_rect.height | |
5703 - (gui.char_height - p_linespace) * PANGO_SCALE; | |
5704 } | |
2507
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
5705 else |
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
5706 /* If the accent width is smaller than the cluster width, position it |
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
5707 * in the middle. */ |
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
5708 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2; |
7 | 5709 } |
5710 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5711 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5712 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5713 draw_glyph_string(int row, int col, int num_cells, int flags, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5714 PangoFont *font, PangoGlyphString *glyphs, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5715 cairo_t *cr) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5716 #else |
7 | 5717 static void |
5718 draw_glyph_string(int row, int col, int num_cells, int flags, | |
5719 PangoFont *font, PangoGlyphString *glyphs) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5720 #endif |
7 | 5721 { |
5722 if (!(flags & DRAW_TRANSP)) | |
5723 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5724 #if GTK_CHECK_VERSION(3,0,0) |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5725 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5726 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5727 gui.bgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5728 cairo_rectangle(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5729 FILL_X(col), FILL_Y(row), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5730 num_cells * gui.char_width, gui.char_height); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5731 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5732 #else |
7 | 5733 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
5734 | |
5735 gdk_draw_rectangle(gui.drawarea->window, | |
5736 gui.text_gc, | |
5737 TRUE, | |
5738 FILL_X(col), | |
5739 FILL_Y(row), | |
5740 num_cells * gui.char_width, | |
5741 gui.char_height); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5742 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5743 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5744 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5745 #if GTK_CHECK_VERSION(3,0,0) |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5746 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5747 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5748 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5749 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5750 pango_cairo_show_glyph_string(cr, font, glyphs); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5751 #else |
7 | 5752 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
5753 | |
5754 gdk_draw_glyphs(gui.drawarea->window, | |
5755 gui.text_gc, | |
5756 font, | |
5757 TEXT_X(col), | |
5758 TEXT_Y(row), | |
5759 glyphs); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5760 #endif |
7 | 5761 |
5762 /* redraw the contents with an offset of 1 to emulate bold */ | |
5763 if ((flags & DRAW_BOLD) && !gui.font_can_bold) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5764 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5765 { |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5766 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5767 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5768 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5769 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5770 pango_cairo_show_glyph_string(cr, font, glyphs); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5771 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5772 #else |
7 | 5773 gdk_draw_glyphs(gui.drawarea->window, |
5774 gui.text_gc, | |
5775 font, | |
5776 TEXT_X(col) + 1, | |
5777 TEXT_Y(row), | |
5778 glyphs); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5779 #endif |
7 | 5780 } |
5781 | |
207 | 5782 /* |
5783 * Draw underline and undercurl at the bottom of the character cell. | |
5784 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5785 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5786 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5787 draw_under(int flags, int row, int col, int cells, cairo_t *cr) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5788 #else |
207 | 5789 static void |
5790 draw_under(int flags, int row, int col, int cells) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5791 #endif |
207 | 5792 { |
5793 int i; | |
5794 int offset; | |
1884 | 5795 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 }; |
207 | 5796 int y = FILL_Y(row + 1) - 1; |
5797 | |
5798 /* Undercurl: draw curl at the bottom of the character cell. */ | |
5799 if (flags & DRAW_UNDERC) | |
5800 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5801 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5802 cairo_set_line_width(cr, 1.0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5803 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5804 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5805 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5806 gui.spcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5807 for (i = FILL_X(col); i < FILL_X(col + cells); ++i) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5808 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5809 offset = val[i % 8]; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5810 cairo_line_to(cr, i, y - offset + 0.5); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5811 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5812 cairo_stroke(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5813 #else |
207 | 5814 gdk_gc_set_foreground(gui.text_gc, gui.spcolor); |
5815 for (i = FILL_X(col); i < FILL_X(col + cells); ++i) | |
5816 { | |
5817 offset = val[i % 8]; | |
5818 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset); | |
5819 } | |
5820 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5821 #endif |
207 | 5822 } |
5823 | |
5824 /* Underline: draw a line at the bottom of the character cell. */ | |
5825 if (flags & DRAW_UNDERL) | |
5826 { | |
5827 /* When p_linespace is 0, overwrite the bottom row of pixels. | |
5828 * Otherwise put the line just below the character. */ | |
5829 if (p_linespace > 1) | |
5830 y -= p_linespace - 1; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5831 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5832 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5833 cairo_set_line_width(cr, 1.0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5834 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5835 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5836 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5837 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5838 cairo_move_to(cr, FILL_X(col), y + 0.5); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5839 cairo_line_to(cr, FILL_X(col + cells), y + 0.5); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5840 cairo_stroke(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5841 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5842 #else |
207 | 5843 gdk_draw_line(gui.drawarea->window, gui.text_gc, |
5844 FILL_X(col), y, | |
5845 FILL_X(col + cells) - 1, y); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5846 #endif |
207 | 5847 } |
5848 } | |
5849 | |
7 | 5850 int |
5851 gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags) | |
5852 { | |
5853 GdkRectangle area; /* area for clip mask */ | |
5854 PangoGlyphString *glyphs; /* glyphs of current item */ | |
5855 int column_offset = 0; /* column offset in cells */ | |
5856 int i; | |
5857 char_u *conv_buf = NULL; /* result of UTF-8 conversion */ | |
5858 char_u *new_conv_buf; | |
5859 int convlen; | |
5860 char_u *sp, *bp; | |
5861 int plen; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5862 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5863 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5864 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5865 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5866 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5867 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5868 #else |
7 | 5869 if (gui.text_context == NULL || gui.drawarea->window == NULL) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5870 #endif |
7 | 5871 return len; |
5872 | |
5873 if (output_conv.vc_type != CONV_NONE) | |
5874 { | |
5875 /* | |
5876 * Convert characters from 'encoding' to 'termencoding', which is set | |
5877 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c | |
5878 * prohibits changing this to something else than UTF-8 if the GUI is | |
5879 * in use. | |
5880 */ | |
5881 convlen = len; | |
5882 conv_buf = string_convert(&output_conv, s, &convlen); | |
5883 g_return_val_if_fail(conv_buf != NULL, len); | |
5884 | |
5885 /* Correct for differences in char width: some chars are | |
5886 * double-wide in 'encoding' but single-wide in utf-8. Add a space to | |
5887 * compensate for that. */ | |
5888 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; ) | |
5889 { | |
474 | 5890 plen = utf_ptr2len(bp); |
7 | 5891 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1) |
5892 { | |
5893 new_conv_buf = alloc(convlen + 2); | |
5894 if (new_conv_buf == NULL) | |
5895 return len; | |
5896 plen += bp - conv_buf; | |
5897 mch_memmove(new_conv_buf, conv_buf, plen); | |
5898 new_conv_buf[plen] = ' '; | |
5899 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen, | |
5900 convlen - plen + 1); | |
5901 vim_free(conv_buf); | |
5902 conv_buf = new_conv_buf; | |
5903 ++convlen; | |
5904 bp = conv_buf + plen; | |
5905 plen = 1; | |
5906 } | |
474 | 5907 sp += (*mb_ptr2len)(sp); |
7 | 5908 bp += plen; |
5909 } | |
5910 s = conv_buf; | |
5911 len = convlen; | |
5912 } | |
5913 | |
5914 /* | |
5915 * Restrict all drawing to the current screen line in order to prevent | |
5916 * fuzzy font lookups from messing up the screen. | |
5917 */ | |
5918 area.x = gui.border_offset; | |
5919 area.y = FILL_Y(row); | |
5920 area.width = gui.num_cols * gui.char_width; | |
5921 area.height = gui.char_height; | |
5922 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5923 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5924 cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5925 cairo_rectangle(cr, area.x, area.y, area.width, area.height); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5926 cairo_clip(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5927 #else |
7 | 5928 gdk_gc_set_clip_origin(gui.text_gc, 0, 0); |
5929 gdk_gc_set_clip_rectangle(gui.text_gc, &area); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5930 #endif |
7 | 5931 |
5932 glyphs = pango_glyph_string_new(); | |
5933 | |
5934 /* | |
5935 * Optimization hack: If possible, skip the itemize and shaping process | |
5936 * for pure ASCII strings. This optimization is particularly effective | |
5937 * because Vim draws space characters to clear parts of the screen. | |
5938 */ | |
5939 if (!(flags & DRAW_ITALIC) | |
5940 && !((flags & DRAW_BOLD) && gui.font_can_bold) | |
5941 && gui.ascii_glyphs != NULL) | |
5942 { | |
5943 char_u *p; | |
5944 | |
5945 for (p = s; p < s + len; ++p) | |
5946 if (*p & 0x80) | |
5947 goto not_ascii; | |
5948 | |
5949 pango_glyph_string_set_size(glyphs, len); | |
5950 | |
5951 for (i = 0; i < len; ++i) | |
5952 { | |
9879
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5953 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]]; |
7 | 5954 glyphs->log_clusters[i] = i; |
5955 } | |
5956 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5957 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5958 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5959 #else |
7 | 5960 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5961 #endif |
7 | 5962 |
5963 column_offset = len; | |
5964 } | |
5965 else | |
5966 not_ascii: | |
5967 { | |
5968 PangoAttrList *attr_list; | |
5969 GList *item_list; | |
5970 int cluster_width; | |
5971 int last_glyph_rbearing; | |
5972 int cells = 0; /* cells occupied by current cluster */ | |
5973 | |
26 | 5974 /* Safety check: pango crashes when invoked with invalid utf-8 |
5975 * characters. */ | |
5976 if (!utf_valid_string(s, s + len)) | |
5977 { | |
5978 column_offset = len; | |
5979 goto skipitall; | |
5980 } | |
5981 | |
7 | 5982 /* original width of the current cluster */ |
5983 cluster_width = PANGO_SCALE * gui.char_width; | |
5984 | |
5985 /* right bearing of the last non-composing glyph */ | |
5986 last_glyph_rbearing = PANGO_SCALE * gui.char_width; | |
5987 | |
5988 attr_list = pango_attr_list_new(); | |
5989 | |
5990 /* If 'guifontwide' is set then use that for double-width characters. | |
5991 * Otherwise just go with 'guifont' and let Pango do its thing. */ | |
5992 if (gui.wide_font != NULL) | |
5993 apply_wide_font_attr(s, len, attr_list); | |
5994 | |
5995 if ((flags & DRAW_BOLD) && gui.font_can_bold) | |
5996 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD), | |
5997 attr_list, 0, len); | |
5998 if (flags & DRAW_ITALIC) | |
5999 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC), | |
6000 attr_list, 0, len); | |
6001 /* | |
6002 * Break the text into segments with consistent directional level | |
6003 * and shaping engine. Pure Latin text needs only a single segment, | |
6004 * so there's no need to worry about the loop's efficiency. Better | |
6005 * try to optimize elsewhere, e.g. reducing exposes and stuff :) | |
6006 */ | |
6007 item_list = pango_itemize(gui.text_context, | |
6008 (const char *)s, 0, len, attr_list, NULL); | |
6009 | |
6010 while (item_list != NULL) | |
6011 { | |
6012 PangoItem *item; | |
6013 int item_cells = 0; /* item length in cells */ | |
6014 | |
6015 item = (PangoItem *)item_list->data; | |
6016 item_list = g_list_delete_link(item_list, item_list); | |
6017 /* | |
6018 * Increment the bidirectional embedding level by 1 if it is not | |
6019 * even. An odd number means the output will be RTL, but we don't | |
6020 * want that since Vim handles right-to-left text on its own. It | |
6021 * would probably be sufficient to just set level = 0, but you can | |
6022 * never know :) | |
6023 * | |
6024 * Unfortunately we can't take advantage of Pango's ability to | |
6025 * render both LTR and RTL at the same time. In order to support | |
6026 * that, Vim's main screen engine would have to make use of Pango | |
6027 * functionality. | |
6028 */ | |
6029 item->analysis.level = (item->analysis.level + 1) & (~1U); | |
6030 | |
6031 /* HACK: Overrule the shape engine, we don't want shaping to be | |
6032 * done, because drawing the cursor would change the display. */ | |
6033 item->analysis.shape_engine = default_shape_engine; | |
6034 | |
7098
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
6035 #ifdef HAVE_PANGO_SHAPE_FULL |
7086
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
6036 pango_shape_full((const char *)s + item->offset, item->length, |
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
6037 (const char *)s, len, &item->analysis, glyphs); |
7098
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
6038 #else |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
6039 pango_shape((const char *)s + item->offset, item->length, |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
6040 &item->analysis, glyphs); |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
6041 #endif |
7 | 6042 /* |
6043 * Fixed-width hack: iterate over the array and assign a fixed | |
6044 * width to each glyph, thus overriding the choice made by the | |
6045 * shaping engine. We use utf_char2cells() to determine the | |
6046 * number of cells needed. | |
6047 * | |
6048 * Also perform all kind of dark magic to get composing | |
6049 * characters right (and pretty too of course). | |
6050 */ | |
6051 for (i = 0; i < glyphs->num_glyphs; ++i) | |
6052 { | |
6053 PangoGlyphInfo *glyph; | |
6054 | |
6055 glyph = &glyphs->glyphs[i]; | |
6056 | |
6057 if (glyph->attr.is_cluster_start) | |
6058 { | |
6059 int cellcount; | |
6060 | |
6061 cellcount = count_cluster_cells( | |
6062 s, item, glyphs, i, &cluster_width, | |
6063 (item_list != NULL) ? &last_glyph_rbearing : NULL); | |
6064 | |
6065 if (cellcount > 0) | |
6066 { | |
6067 int width; | |
6068 | |
6069 width = cellcount * gui.char_width * PANGO_SCALE; | |
6070 glyph->geometry.x_offset += | |
6071 MAX(0, width - cluster_width) / 2; | |
6072 glyph->geometry.width = width; | |
6073 } | |
6074 else | |
6075 { | |
6076 /* If there are only combining characters in the | |
6077 * cluster, we cannot just change the width of the | |
6078 * previous glyph since there is none. Therefore | |
6079 * some guesswork is needed. */ | |
6080 setup_zero_width_cluster(item, glyph, cells, | |
6081 cluster_width, | |
6082 last_glyph_rbearing); | |
6083 } | |
6084 | |
6085 item_cells += cellcount; | |
6086 cells = cellcount; | |
6087 } | |
6088 else if (i > 0) | |
6089 { | |
6090 int width; | |
6091 | |
6092 /* There is a previous glyph, so we deal with combining | |
2507
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
6093 * characters the canonical way. |
2517
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
6094 * In some circumstances Pango uses a positive x_offset, |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
6095 * then use the width of the previous glyph for this one |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
6096 * and set the previous width to zero. |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
6097 * Otherwise we get a negative x_offset, Pango has already |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
6098 * positioned the combining char, keep the widths as they |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
6099 * are. |
2507
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
6100 * For both adjust the x_offset to position the glyph in |
2517
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
6101 * the middle. */ |
2507
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
6102 if (glyph->geometry.x_offset >= 0) |
2517
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
6103 { |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
6104 glyphs->glyphs[i].geometry.width = |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
6105 glyphs->glyphs[i - 1].geometry.width; |
2507
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
6106 glyphs->glyphs[i - 1].geometry.width = 0; |
2517
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
6107 } |
7 | 6108 width = cells * gui.char_width * PANGO_SCALE; |
6109 glyph->geometry.x_offset += | |
6110 MAX(0, width - cluster_width) / 2; | |
6111 } | |
6112 else /* i == 0 "cannot happen" */ | |
6113 { | |
6114 glyph->geometry.width = 0; | |
6115 } | |
6116 } | |
6117 | |
6118 /*** Aaaaand action! ***/ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6119 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6120 draw_glyph_string(row, col + column_offset, item_cells, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6121 flags, item->analysis.font, glyphs, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6122 cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6123 #else |
7 | 6124 draw_glyph_string(row, col + column_offset, item_cells, |
6125 flags, item->analysis.font, glyphs); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6126 #endif |
7 | 6127 |
6128 pango_item_free(item); | |
6129 | |
6130 column_offset += item_cells; | |
6131 } | |
6132 | |
6133 pango_attr_list_unref(attr_list); | |
6134 } | |
6135 | |
26 | 6136 skipitall: |
207 | 6137 /* Draw underline and undercurl. */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6138 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6139 draw_under(flags, row, col, column_offset, cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6140 #else |
207 | 6141 draw_under(flags, row, col, column_offset); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6142 #endif |
7 | 6143 |
6144 pango_glyph_string_free(glyphs); | |
6145 vim_free(conv_buf); | |
6146 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6147 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6148 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6149 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6150 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6151 &area, FALSE); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6152 #else |
7 | 6153 gdk_gc_set_clip_rectangle(gui.text_gc, NULL); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6154 #endif |
7 | 6155 |
6156 return column_offset; | |
6157 } | |
6158 | |
6159 /* | |
6160 * Return OK if the key with the termcap name "name" is supported. | |
6161 */ | |
6162 int | |
6163 gui_mch_haskey(char_u *name) | |
6164 { | |
6165 int i; | |
6166 | |
6167 for (i = 0; special_keys[i].key_sym != 0; i++) | |
6168 if (name[0] == special_keys[i].code0 | |
6169 && name[1] == special_keys[i].code1) | |
6170 return OK; | |
6171 return FAIL; | |
6172 } | |
6173 | |
4133 | 6174 #if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO) |
7 | 6175 /* |
6176 * Return the text window-id and display. Only required for X-based GUI's | |
6177 */ | |
6178 int | |
6179 gui_get_x11_windis(Window *win, Display **dis) | |
6180 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6181 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6182 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6183 #else |
7 | 6184 if (gui.mainwin != NULL && gui.mainwin->window != NULL) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6185 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6186 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6187 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6188 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6189 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6190 #else |
7 | 6191 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window); |
6192 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6193 #endif |
7 | 6194 return OK; |
6195 } | |
6196 | |
6197 *dis = NULL; | |
6198 *win = 0; | |
6199 return FAIL; | |
6200 } | |
6201 #endif | |
6202 | |
6203 #if defined(FEAT_CLIENTSERVER) \ | |
6204 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO) | |
6205 | |
6206 Display * | |
6207 gui_mch_get_display(void) | |
6208 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6209 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6210 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6211 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6212 #else |
7 | 6213 if (gui.mainwin != NULL && gui.mainwin->window != NULL) |
6214 return GDK_WINDOW_XDISPLAY(gui.mainwin->window); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6215 #endif |
7 | 6216 else |
6217 return NULL; | |
6218 } | |
6219 #endif | |
6220 | |
6221 void | |
6222 gui_mch_beep(void) | |
6223 { | |
6224 #ifdef HAVE_GTK_MULTIHEAD | |
6225 GdkDisplay *display; | |
6226 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6227 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6228 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6229 # else |
7 | 6230 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin)) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6231 # endif |
7 | 6232 display = gtk_widget_get_display(gui.mainwin); |
6233 else | |
6234 display = gdk_display_get_default(); | |
6235 | |
6236 if (display != NULL) | |
6237 gdk_display_beep(display); | |
6238 #else | |
6239 gdk_beep(); | |
6240 #endif | |
6241 } | |
6242 | |
6243 void | |
6244 gui_mch_flash(int msec) | |
6245 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6246 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6247 /* TODO Replace GdkGC with Cairo */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6248 (void)msec; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6249 #else |
7 | 6250 GdkGCValues values; |
6251 GdkGC *invert_gc; | |
6252 | |
6253 if (gui.drawarea->window == NULL) | |
6254 return; | |
6255 | |
6256 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; | |
6257 values.background.pixel = gui.norm_pixel ^ gui.back_pixel; | |
6258 values.function = GDK_XOR; | |
6259 invert_gc = gdk_gc_new_with_values(gui.drawarea->window, | |
6260 &values, | |
6261 GDK_GC_FOREGROUND | | |
6262 GDK_GC_BACKGROUND | | |
6263 GDK_GC_FUNCTION); | |
6264 gdk_gc_set_exposures(invert_gc, | |
6265 gui.visibility != GDK_VISIBILITY_UNOBSCURED); | |
6266 /* | |
6267 * Do a visual beep by changing back and forth in some undetermined way, | |
6268 * the foreground and background colors. This is due to the fact that | |
6269 * there can't be really any prediction about the effects of XOR on | |
6270 * arbitrary X11 servers. However this seems to be enough for what we | |
6271 * intend it to do. | |
6272 */ | |
6273 gdk_draw_rectangle(gui.drawarea->window, invert_gc, | |
6274 TRUE, | |
6275 0, 0, | |
6276 FILL_X((int)Columns) + gui.border_offset, | |
6277 FILL_Y((int)Rows) + gui.border_offset); | |
6278 | |
6279 gui_mch_flush(); | |
6280 ui_delay((long)msec, TRUE); /* wait so many msec */ | |
6281 | |
6282 gdk_draw_rectangle(gui.drawarea->window, invert_gc, | |
6283 TRUE, | |
6284 0, 0, | |
6285 FILL_X((int)Columns) + gui.border_offset, | |
6286 FILL_Y((int)Rows) + gui.border_offset); | |
6287 | |
6288 gdk_gc_destroy(invert_gc); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6289 #endif |
7 | 6290 } |
6291 | |
6292 /* | |
6293 * Invert a rectangle from row r, column c, for nr rows and nc columns. | |
6294 */ | |
6295 void | |
6296 gui_mch_invert_rectangle(int r, int c, int nr, int nc) | |
6297 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6298 #if GTK_CHECK_VERSION(3,0,0) |
8495
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6299 const GdkRectangle rect = { |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6300 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6301 }; |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6302 cairo_t * const cr = cairo_create(gui.surface); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6303 |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6304 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel); |
8495
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6305 # if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2) |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6306 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6307 # else |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6308 /* Give an implementation for older cairo versions if necessary. */ |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6309 # endif |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6310 gdk_cairo_rectangle(cr, &rect); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6311 cairo_fill(cr); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6312 |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6313 cairo_destroy(cr); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6314 |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6315 if (!gui.by_signal) |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6316 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y, |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6317 rect.width, rect.height); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6318 #else |
7 | 6319 GdkGCValues values; |
6320 GdkGC *invert_gc; | |
6321 | |
6322 if (gui.drawarea->window == NULL) | |
6323 return; | |
6324 | |
944 | 6325 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
6326 values.background.pixel = gui.norm_pixel ^ gui.back_pixel; | |
7 | 6327 values.function = GDK_XOR; |
6328 invert_gc = gdk_gc_new_with_values(gui.drawarea->window, | |
6329 &values, | |
6330 GDK_GC_FOREGROUND | | |
6331 GDK_GC_BACKGROUND | | |
6332 GDK_GC_FUNCTION); | |
944 | 6333 gdk_gc_set_exposures(invert_gc, gui.visibility != |
6334 GDK_VISIBILITY_UNOBSCURED); | |
7 | 6335 gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
6336 TRUE, | |
6337 FILL_X(c), FILL_Y(r), | |
6338 (nc) * gui.char_width, (nr) * gui.char_height); | |
6339 gdk_gc_destroy(invert_gc); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6340 #endif |
7 | 6341 } |
6342 | |
6343 /* | |
6344 * Iconify the GUI window. | |
6345 */ | |
6346 void | |
6347 gui_mch_iconify(void) | |
6348 { | |
6349 gtk_window_iconify(GTK_WINDOW(gui.mainwin)); | |
6350 } | |
6351 | |
6352 #if defined(FEAT_EVAL) || defined(PROTO) | |
6353 /* | |
6354 * Bring the Vim window to the foreground. | |
6355 */ | |
6356 void | |
6357 gui_mch_set_foreground(void) | |
6358 { | |
6359 gtk_window_present(GTK_WINDOW(gui.mainwin)); | |
6360 } | |
6361 #endif | |
6362 | |
6363 /* | |
6364 * Draw a cursor without focus. | |
6365 */ | |
6366 void | |
6367 gui_mch_draw_hollow_cursor(guicolor_T color) | |
6368 { | |
6369 int i = 1; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6370 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6371 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6372 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6373 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6374 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6375 if (gtk_widget_get_window(gui.drawarea) == NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6376 #else |
7 | 6377 if (gui.drawarea->window == NULL) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6378 #endif |
7 | 6379 return; |
6380 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6381 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6382 cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6383 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6384 |
7 | 6385 gui_mch_set_fg_color(color); |
6386 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6387 #if GTK_CHECK_VERSION(3,0,0) |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6388 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6389 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6390 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6391 #else |
7 | 6392 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6393 #endif |
7 | 6394 if (mb_lefthalve(gui.row, gui.col)) |
6395 i = 2; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6396 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6397 cairo_set_line_width(cr, 1.0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6398 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6399 cairo_rectangle(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6400 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6401 i * gui.char_width - 1, gui.char_height - 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6402 cairo_stroke(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6403 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6404 #else |
7 | 6405 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
6406 FALSE, | |
6407 FILL_X(gui.col), FILL_Y(gui.row), | |
6408 i * gui.char_width - 1, gui.char_height - 1); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6409 #endif |
7 | 6410 } |
6411 | |
6412 /* | |
6413 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using | |
6414 * color "color". | |
6415 */ | |
6416 void | |
6417 gui_mch_draw_part_cursor(int w, int h, guicolor_T color) | |
6418 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6419 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6420 if (gtk_widget_get_window(gui.drawarea) == NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6421 #else |
7 | 6422 if (gui.drawarea->window == NULL) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6423 #endif |
7 | 6424 return; |
6425 | |
6426 gui_mch_set_fg_color(color); | |
6427 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6428 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6429 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6430 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6431 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6432 cr = cairo_create(gui.surface); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6433 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6434 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6435 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6436 cairo_rectangle(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6437 # ifdef FEAT_RIGHTLEFT |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6438 /* vertical line should be on the right of current point */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6439 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6440 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6441 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6442 w, h); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6443 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6444 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6445 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6446 #else /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6447 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
6448 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, | |
6449 TRUE, | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6450 # ifdef FEAT_RIGHTLEFT |
7 | 6451 /* vertical line should be on the right of current point */ |
6452 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6453 # endif |
7 | 6454 FILL_X(gui.col), |
6455 FILL_Y(gui.row) + gui.char_height - h, | |
6456 w, h); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6457 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6458 } |
6459 | |
6460 | |
6461 /* | |
6462 * Catch up with any queued X11 events. This may put keyboard input into the | |
6463 * input buffer, call resize call-backs, trigger timers etc. If there is | |
6464 * nothing in the X11 event queue (& no timers pending), then we return | |
6465 * immediately. | |
6466 */ | |
6467 void | |
6468 gui_mch_update(void) | |
6469 { | |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
6470 while (g_main_context_pending(NULL) && !vim_is_input_buf_full()) |
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
6471 g_main_context_iteration(NULL, TRUE); |
7 | 6472 } |
6473 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6474 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6475 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6476 #else |
7 | 6477 static gint |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6478 #endif |
7 | 6479 input_timer_cb(gpointer data) |
6480 { | |
6481 int *timed_out = (int *) data; | |
6482 | |
1226 | 6483 /* Just inform the caller about the occurrence of it */ |
7 | 6484 *timed_out = TRUE; |
6485 | |
6486 return FALSE; /* don't happen again */ | |
6487 } | |
6488 | |
6489 /* | |
6490 * GUI input routine called by gui_wait_for_chars(). Waits for a character | |
6491 * from the keyboard. | |
6492 * wtime == -1 Wait forever. | |
6493 * wtime == 0 This should never happen. | |
6494 * wtime > 0 Wait wtime milliseconds for a character. | |
6495 * Returns OK if a character was found to be available within the given time, | |
6496 * or FAIL otherwise. | |
6497 */ | |
6498 int | |
6499 gui_mch_wait_for_chars(long wtime) | |
6500 { | |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6501 int focus; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6502 guint timer; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6503 static int timed_out; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6504 int retval = FAIL; |
7 | 6505 |
6506 timed_out = FALSE; | |
6507 | |
6508 /* this timeout makes sure that we will return if no characters arrived in | |
6509 * time */ | |
6510 if (wtime > 0) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6511 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6512 timer = g_timeout_add((guint)wtime, input_timer_cb, &timed_out); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6513 #else |
7 | 6514 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6515 #endif |
7 | 6516 else |
6517 timer = 0; | |
6518 | |
6519 focus = gui.in_focus; | |
6520 | |
6521 do | |
6522 { | |
6523 /* Stop or start blinking when focus changes */ | |
6524 if (gui.in_focus != focus) | |
6525 { | |
6526 if (gui.in_focus) | |
6527 gui_mch_start_blink(); | |
6528 else | |
6529 gui_mch_stop_blink(); | |
6530 focus = gui.in_focus; | |
6531 } | |
6532 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
6533 #ifdef MESSAGE_QUEUE |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6534 # ifdef FEAT_TIMERS |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6535 did_add_timer = FALSE; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6536 # endif |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
6537 parse_queued_messages(); |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6538 # ifdef FEAT_TIMERS |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6539 if (did_add_timer) |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6540 /* Need to recompute the waiting time. */ |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6541 goto theend; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6542 # endif |
1624 | 6543 #endif |
6544 | |
7 | 6545 /* |
6546 * Loop in GTK+ processing until a timeout or input occurs. | |
22 | 6547 * Skip this if input is available anyway (can happen in rare |
6548 * situations, sort of race condition). | |
7 | 6549 */ |
22 | 6550 if (!input_available()) |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
6551 g_main_context_iteration(NULL, TRUE); |
7 | 6552 |
6553 /* Got char, return immediately */ | |
6554 if (input_available()) | |
6555 { | |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6556 retval = OK; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6557 goto theend; |
7 | 6558 } |
6559 } while (wtime < 0 || !timed_out); | |
6560 | |
6561 /* | |
6562 * Flush all eventually pending (drawing) events. | |
6563 */ | |
6564 gui_mch_update(); | |
6565 | |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6566 theend: |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6567 if (timer != 0 && !timed_out) |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6568 #if GTK_CHECK_VERSION(3,0,0) |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6569 g_source_remove(timer); |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6570 #else |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6571 gtk_timeout_remove(timer); |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6572 #endif |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6573 |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6574 return retval; |
7 | 6575 } |
6576 | |
6577 | |
6578 /**************************************************************************** | |
6579 * Output drawing routines. | |
6580 ****************************************************************************/ | |
6581 | |
6582 | |
6583 /* Flush any output to the screen */ | |
6584 void | |
6585 gui_mch_flush(void) | |
6586 { | |
6587 #ifdef HAVE_GTK_MULTIHEAD | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6588 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6589 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6590 # else |
7 | 6591 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin)) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6592 # endif |
9523
9d1abad90d6c
commit https://github.com/vim/vim/commit/fdadad994a6e8f6cc8b11519082e23200b96d0ba
Christian Brabandt <cb@256bit.org>
parents:
9489
diff
changeset
|
6593 gdk_display_flush(gtk_widget_get_display(gui.mainwin)); |
7 | 6594 #else |
6595 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */ | |
6596 #endif | |
6597 } | |
6598 | |
6599 /* | |
6600 * Clear a rectangular region of the screen from text pos (row1, col1) to | |
6601 * (row2, col2) inclusive. | |
6602 */ | |
6603 void | |
6604 gui_mch_clear_block(int row1, int col1, int row2, int col2) | |
6605 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6606 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6607 if (gtk_widget_get_window(gui.drawarea) == NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6608 return; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6609 #else |
7 | 6610 GdkColor color; |
6611 | |
6612 if (gui.drawarea->window == NULL) | |
6613 return; | |
6614 | |
6615 color.pixel = gui.back_pixel; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6616 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6617 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6618 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6619 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6620 /* Add one pixel to the far right column in case a double-stroked |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6621 * bold glyph may sit there. */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6622 const GdkRectangle rect = { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6623 FILL_X(col1), FILL_Y(row1), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6624 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6625 (row2 - row1 + 1) * gui.char_height |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6626 }; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6627 GdkWindow * const win = gtk_widget_get_window(gui.drawarea); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6628 cairo_t * const cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6629 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6630 if (pat != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6631 cairo_set_source(cr, pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6632 else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6633 set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6634 gdk_cairo_rectangle(cr, &rect); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6635 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6636 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6637 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6638 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6639 gdk_window_invalidate_rect(win, &rect, FALSE); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6640 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6641 #else /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6642 gdk_gc_set_foreground(gui.text_gc, &color); |
6643 | |
6644 /* Clear one extra pixel at the far right, for when bold characters have | |
6645 * spilled over to the window border. */ | |
6646 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE, | |
6647 FILL_X(col1), FILL_Y(row1), | |
6648 (col2 - col1 + 1) * gui.char_width | |
6649 + (col2 == Columns - 1), | |
6650 (row2 - row1 + 1) * gui.char_height); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6651 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6652 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6653 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6654 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6655 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6656 gui_gtk_window_clear(GdkWindow *win) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6657 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6658 const GdkRectangle rect = { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6659 0, 0, gdk_window_get_width(win), gdk_window_get_height(win) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6660 }; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6661 cairo_t * const cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6662 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6663 if (pat != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6664 cairo_set_source(cr, pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6665 else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6666 set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6667 gdk_cairo_rectangle(cr, &rect); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6668 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6669 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6670 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6671 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6672 gdk_window_invalidate_rect(win, &rect, FALSE); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6673 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6674 #endif |
7 | 6675 |
6676 void | |
6677 gui_mch_clear_all(void) | |
6678 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6679 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6680 if (gtk_widget_get_window(gui.drawarea) != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6681 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6682 #else |
7 | 6683 if (gui.drawarea->window != NULL) |
6684 gdk_window_clear(gui.drawarea->window); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6685 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6686 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6687 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6688 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 6689 /* |
6690 * Redraw any text revealed by scrolling up/down. | |
6691 */ | |
6692 static void | |
6693 check_copy_area(void) | |
6694 { | |
6695 GdkEvent *event; | |
6696 int expose_count; | |
6697 | |
6698 if (gui.visibility != GDK_VISIBILITY_PARTIAL) | |
6699 return; | |
6700 | |
6701 /* Avoid redrawing the cursor while scrolling or it'll end up where | |
6702 * we don't want it to be. I'm not sure if it's correct to call | |
6703 * gui_dont_update_cursor() at this point but it works as a quick | |
6704 * fix for now. */ | |
9848
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9836
diff
changeset
|
6705 gui_dont_update_cursor(TRUE); |
7 | 6706 |
6707 do | |
6708 { | |
6709 /* Wait to check whether the scroll worked or not. */ | |
6710 event = gdk_event_get_graphics_expose(gui.drawarea->window); | |
6711 | |
6712 if (event == NULL) | |
6713 break; /* received NoExpose event */ | |
6714 | |
6715 gui_redraw(event->expose.area.x, event->expose.area.y, | |
6716 event->expose.area.width, event->expose.area.height); | |
6717 | |
6718 expose_count = event->expose.count; | |
6719 gdk_event_free(event); | |
6720 } | |
6721 while (expose_count > 0); /* more events follow */ | |
6722 | |
6723 gui_can_update_cursor(); | |
6724 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6725 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6726 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6727 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6728 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6729 gui_gtk_surface_copy_rect(int dest_x, int dest_y, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6730 int src_x, int src_y, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6731 int width, int height) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6732 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6733 cairo_t * const cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6734 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6735 cairo_rectangle(cr, dest_x, dest_y, width, height); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6736 cairo_clip(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6737 cairo_push_group(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6738 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6739 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6740 cairo_pop_group_to_source(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6741 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6742 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6743 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6744 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6745 #endif |
7 | 6746 |
6747 /* | |
6748 * Delete the given number of lines from the given row, scrolling up any | |
6749 * text further down within the scroll region. | |
6750 */ | |
6751 void | |
6752 gui_mch_delete_lines(int row, int num_lines) | |
6753 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6754 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6755 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6756 const int nrows = gui.scroll_region_bot - row + 1; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6757 const int src_nrows = nrows - num_lines; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6758 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6759 gui_gtk_surface_copy_rect( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6760 FILL_X(gui.scroll_region_left), FILL_Y(row), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6761 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6762 gui.char_width * ncols + 1, gui.char_height * src_nrows); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6763 gui_clear_block( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6764 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6765 gui.scroll_region_bot, gui.scroll_region_right); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6766 gui_gtk3_redraw( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6767 FILL_X(gui.scroll_region_left), FILL_Y(row), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6768 gui.char_width * ncols + 1, gui.char_height * nrows); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6769 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6770 gtk_widget_queue_draw_area(gui.drawarea, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6771 FILL_X(gui.scroll_region_left), FILL_Y(row), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6772 gui.char_width * ncols + 1, gui.char_height * nrows); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6773 #else |
7 | 6774 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
6775 return; /* Can't see the window */ | |
6776 | |
6777 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); | |
6778 gdk_gc_set_background(gui.text_gc, gui.bgcolor); | |
6779 | |
6780 /* copy one extra pixel, for when bold has spilled over */ | |
6781 gdk_window_copy_area(gui.drawarea->window, gui.text_gc, | |
6782 FILL_X(gui.scroll_region_left), FILL_Y(row), | |
6783 gui.drawarea->window, | |
6784 FILL_X(gui.scroll_region_left), | |
6785 FILL_Y(row + num_lines), | |
6786 gui.char_width * (gui.scroll_region_right | |
6787 - gui.scroll_region_left + 1) + 1, | |
6788 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); | |
6789 | |
6790 gui_clear_block(gui.scroll_region_bot - num_lines + 1, | |
6791 gui.scroll_region_left, | |
6792 gui.scroll_region_bot, gui.scroll_region_right); | |
6793 check_copy_area(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6794 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6795 } |
6796 | |
6797 /* | |
6798 * Insert the given number of lines before the given row, scrolling down any | |
6799 * following text within the scroll region. | |
6800 */ | |
6801 void | |
6802 gui_mch_insert_lines(int row, int num_lines) | |
6803 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6804 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6805 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6806 const int nrows = gui.scroll_region_bot - row + 1; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6807 const int src_nrows = nrows - num_lines; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6808 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6809 gui_gtk_surface_copy_rect( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6810 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6811 FILL_X(gui.scroll_region_left), FILL_Y(row), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6812 gui.char_width * ncols + 1, gui.char_height * src_nrows); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6813 gui_mch_clear_block( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6814 row, gui.scroll_region_left, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6815 row + num_lines - 1, gui.scroll_region_right); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6816 gui_gtk3_redraw( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6817 FILL_X(gui.scroll_region_left), FILL_Y(row), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6818 gui.char_width * ncols + 1, gui.char_height * nrows); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6819 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6820 gtk_widget_queue_draw_area(gui.drawarea, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6821 FILL_X(gui.scroll_region_left), FILL_Y(row), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6822 gui.char_width * ncols + 1, gui.char_height * nrows); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6823 #else |
7 | 6824 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
6825 return; /* Can't see the window */ | |
6826 | |
6827 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); | |
6828 gdk_gc_set_background(gui.text_gc, gui.bgcolor); | |
6829 | |
6830 /* copy one extra pixel, for when bold has spilled over */ | |
6831 gdk_window_copy_area(gui.drawarea->window, gui.text_gc, | |
6832 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), | |
6833 gui.drawarea->window, | |
6834 FILL_X(gui.scroll_region_left), FILL_Y(row), | |
6835 gui.char_width * (gui.scroll_region_right | |
6836 - gui.scroll_region_left + 1) + 1, | |
6837 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); | |
6838 | |
6839 gui_clear_block(row, gui.scroll_region_left, | |
6840 row + num_lines - 1, gui.scroll_region_right); | |
6841 check_copy_area(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6842 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6843 } |
6844 | |
6845 /* | |
6846 * X Selection stuff, for cutting and pasting text to other windows. | |
6847 */ | |
6848 void | |
6849 clip_mch_request_selection(VimClipboard *cbd) | |
6850 { | |
6851 GdkAtom target; | |
6852 unsigned i; | |
1494 | 6853 time_t start; |
7 | 6854 |
6855 for (i = 0; i < N_SELECTION_TARGETS; ++i) | |
6856 { | |
1904 | 6857 if (!clip_html && selection_targets[i].info == TARGET_HTML) |
6858 continue; | |
7 | 6859 received_selection = RS_NONE; |
6860 target = gdk_atom_intern(selection_targets[i].target, FALSE); | |
6861 | |
6862 gtk_selection_convert(gui.drawarea, | |
6863 cbd->gtk_sel_atom, target, | |
6864 (guint32)GDK_CURRENT_TIME); | |
6865 | |
1494 | 6866 /* Hack: Wait up to three seconds for the selection. A hang was |
6867 * noticed here when using the netrw plugin combined with ":gui" | |
6868 * during the FocusGained event. */ | |
6869 start = time(NULL); | |
6870 while (received_selection == RS_NONE && time(NULL) < start + 3) | |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
6871 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */ |
7 | 6872 |
6873 if (received_selection != RS_FAIL) | |
6874 return; | |
6875 } | |
6876 | |
6877 /* Final fallback position - use the X CUT_BUFFER0 store */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6878 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6879 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6880 cbd); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6881 #else |
1924 | 6882 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6883 #endif |
7 | 6884 } |
6885 | |
6886 /* | |
6887 * Disown the selection. | |
6888 */ | |
6889 void | |
1884 | 6890 clip_mch_lose_selection(VimClipboard *cbd UNUSED) |
7 | 6891 { |
4209 | 6892 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time); |
7 | 6893 gui_mch_update(); |
6894 } | |
6895 | |
6896 /* | |
6897 * Own the selection and return OK if it worked. | |
6898 */ | |
6899 int | |
6900 clip_mch_own_selection(VimClipboard *cbd) | |
6901 { | |
6902 int success; | |
6903 | |
6904 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom, | |
2923 | 6905 gui.event_time); |
7 | 6906 gui_mch_update(); |
6907 return (success) ? OK : FAIL; | |
6908 } | |
6909 | |
6910 /* | |
6911 * Send the current selection to the clipboard. Do nothing for X because we | |
6912 * will fill in the selection only when requested by another app. | |
6913 */ | |
6914 void | |
1884 | 6915 clip_mch_set_selection(VimClipboard *cbd UNUSED) |
7 | 6916 { |
6917 } | |
6918 | |
4209 | 6919 int |
6920 clip_gtk_owner_exists(VimClipboard *cbd) | |
6921 { | |
6922 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL; | |
6923 } | |
6924 | |
7 | 6925 |
6926 #if defined(FEAT_MENU) || defined(PROTO) | |
6927 /* | |
6928 * Make a menu item appear either active or not active (grey or not grey). | |
6929 */ | |
6930 void | |
6931 gui_mch_menu_grey(vimmenu_T *menu, int grey) | |
6932 { | |
6933 if (menu->id == NULL) | |
6934 return; | |
6935 | |
6936 if (menu_is_separator(menu->name)) | |
6937 grey = TRUE; | |
6938 | |
6939 gui_mch_menu_hidden(menu, FALSE); | |
6940 /* Be clever about bitfields versus true booleans here! */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6941 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6942 if (!gtk_widget_get_sensitive(menu->id) == !grey) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6943 # else |
7 | 6944 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6945 # endif |
7 | 6946 { |
6947 gtk_widget_set_sensitive(menu->id, !grey); | |
6948 gui_mch_update(); | |
6949 } | |
6950 } | |
6951 | |
6952 /* | |
6953 * Make menu item hidden or not hidden. | |
6954 */ | |
6955 void | |
6956 gui_mch_menu_hidden(vimmenu_T *menu, int hidden) | |
6957 { | |
6958 if (menu->id == 0) | |
6959 return; | |
6960 | |
6961 if (hidden) | |
6962 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6963 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6964 if (gtk_widget_get_visible(menu->id)) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6965 # else |
7 | 6966 if (GTK_WIDGET_VISIBLE(menu->id)) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6967 # endif |
7 | 6968 { |
6969 gtk_widget_hide(menu->id); | |
6970 gui_mch_update(); | |
6971 } | |
6972 } | |
6973 else | |
6974 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6975 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6976 if (!gtk_widget_get_visible(menu->id)) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6977 # else |
7 | 6978 if (!GTK_WIDGET_VISIBLE(menu->id)) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6979 # endif |
7 | 6980 { |
6981 gtk_widget_show(menu->id); | |
6982 gui_mch_update(); | |
6983 } | |
6984 } | |
6985 } | |
6986 | |
6987 /* | |
6988 * This is called after setting all the menus to grey/hidden or not. | |
6989 */ | |
6990 void | |
6991 gui_mch_draw_menubar(void) | |
6992 { | |
6993 /* just make sure that the visual changes get effect immediately */ | |
6994 gui_mch_update(); | |
6995 } | |
6996 #endif /* FEAT_MENU */ | |
6997 | |
6998 /* | |
6999 * Scrollbar stuff. | |
7000 */ | |
7001 void | |
7002 gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) | |
7003 { | |
7004 if (sb->id == NULL) | |
7005 return; | |
7006 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7007 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7008 gtk_widget_set_visible(sb->id, flag); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7009 #else |
7 | 7010 if (flag) |
7011 gtk_widget_show(sb->id); | |
7012 else | |
7013 gtk_widget_hide(sb->id); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7014 #endif |
7 | 7015 |
791 | 7016 update_window_manager_hints(0, 0); |
7 | 7017 } |
7018 | |
7019 | |
7020 /* | |
7021 * Return the RGB value of a pixel as long. | |
7022 */ | |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
7023 guicolor_T |
7 | 7024 gui_mch_get_rgb(guicolor_T pixel) |
7025 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
7026 #if GTK_CHECK_VERSION(3,0,0) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
7027 return (long_u)pixel; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
7028 #else |
7 | 7029 GdkColor color; |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
7030 |
7 | 7031 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea), |
7032 (unsigned long)pixel, &color); | |
7033 | |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
7034 return (guicolor_T)( |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
7035 (((unsigned)color.red & 0xff00) << 8) |
7 | 7036 | ((unsigned)color.green & 0xff00) |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
7037 | (((unsigned)color.blue & 0xff00) >> 8)); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
7038 #endif |
7 | 7039 } |
7040 | |
7041 /* | |
88 | 7042 * Get current mouse coordinates in text window. |
7 | 7043 */ |
88 | 7044 void |
7045 gui_mch_getmouse(int *x, int *y) | |
7 | 7046 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7047 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7048 gui_gtk_get_pointer(gui.drawarea, x, y, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7049 #else |
88 | 7050 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7051 #endif |
7 | 7052 } |
7053 | |
7054 void | |
7055 gui_mch_setmouse(int x, int y) | |
7056 { | |
7057 /* Sorry for the Xlib call, but we can't avoid it, since there is no | |
7058 * internal GDK mechanism present to accomplish this. (and for good | |
7059 * reason...) */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7060 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7061 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7062 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7063 0, 0, 0U, 0U, x, y); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7064 #else |
7 | 7065 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window), |
7066 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window), | |
7067 0, 0, 0U, 0U, x, y); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7068 #endif |
7 | 7069 } |
7070 | |
7071 | |
7072 #ifdef FEAT_MOUSESHAPE | |
7073 /* The last set mouse pointer shape is remembered, to be used when it goes | |
7074 * from hidden to not hidden. */ | |
7075 static int last_shape = 0; | |
7076 #endif | |
7077 | |
7078 /* | |
7079 * Use the blank mouse pointer or not. | |
7080 * | |
7081 * hide: TRUE = use blank ptr, FALSE = use parent ptr | |
7082 */ | |
7083 void | |
7084 gui_mch_mousehide(int hide) | |
7085 { | |
7086 if (gui.pointer_hidden != hide) | |
7087 { | |
7088 gui.pointer_hidden = hide; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7089 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7090 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7091 #else |
7 | 7092 if (gui.drawarea->window && gui.blank_pointer != NULL) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7093 #endif |
7 | 7094 { |
7095 if (hide) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7096 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7097 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7098 gui.blank_pointer); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7099 #else |
7 | 7100 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7101 #endif |
7 | 7102 else |
7103 #ifdef FEAT_MOUSESHAPE | |
7104 mch_set_mouse_shape(last_shape); | |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7105 #elif GTK_CHECK_VERSION(3,0,0) |
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7106 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL); |
7 | 7107 #else |
7108 gdk_window_set_cursor(gui.drawarea->window, NULL); | |
7109 #endif | |
7110 } | |
7111 } | |
7112 } | |
7113 | |
7114 #if defined(FEAT_MOUSESHAPE) || defined(PROTO) | |
7115 | |
7116 /* Table for shape IDs. Keep in sync with the mshape_names[] table in | |
7117 * misc2.c! */ | |
7118 static const int mshape_ids[] = | |
7119 { | |
7120 GDK_LEFT_PTR, /* arrow */ | |
7121 GDK_CURSOR_IS_PIXMAP, /* blank */ | |
7122 GDK_XTERM, /* beam */ | |
7123 GDK_SB_V_DOUBLE_ARROW, /* updown */ | |
7124 GDK_SIZING, /* udsizing */ | |
7125 GDK_SB_H_DOUBLE_ARROW, /* leftright */ | |
7126 GDK_SIZING, /* lrsizing */ | |
7127 GDK_WATCH, /* busy */ | |
7128 GDK_X_CURSOR, /* no */ | |
7129 GDK_CROSSHAIR, /* crosshair */ | |
7130 GDK_HAND1, /* hand1 */ | |
7131 GDK_HAND2, /* hand2 */ | |
7132 GDK_PENCIL, /* pencil */ | |
7133 GDK_QUESTION_ARROW, /* question */ | |
7134 GDK_RIGHT_PTR, /* right-arrow */ | |
7135 GDK_CENTER_PTR, /* up-arrow */ | |
7136 GDK_LEFT_PTR /* last one */ | |
7137 }; | |
7138 | |
7139 void | |
7140 mch_set_mouse_shape(int shape) | |
7141 { | |
7142 int id; | |
7143 GdkCursor *c; | |
7144 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7145 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7146 if (gtk_widget_get_window(gui.drawarea) == NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7147 # else |
7 | 7148 if (gui.drawarea->window == NULL) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7149 # endif |
7 | 7150 return; |
7151 | |
7152 if (shape == MSHAPE_HIDE || gui.pointer_hidden) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7153 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7154 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7155 gui.blank_pointer); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7156 # else |
7 | 7157 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7158 # endif |
7 | 7159 else |
7160 { | |
7161 if (shape >= MSHAPE_NUMBERED) | |
7162 { | |
7163 id = shape - MSHAPE_NUMBERED; | |
7164 if (id >= GDK_LAST_CURSOR) | |
7165 id = GDK_LEFT_PTR; | |
7166 else | |
7167 id &= ~1; /* they are always even (why?) */ | |
7168 } | |
1884 | 7169 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int))) |
7 | 7170 id = mshape_ids[shape]; |
842 | 7171 else |
7172 return; | |
7 | 7173 # ifdef HAVE_GTK_MULTIHEAD |
7174 c = gdk_cursor_new_for_display( | |
136 | 7175 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id); |
7 | 7176 # else |
136 | 7177 c = gdk_cursor_new((GdkCursorType)id); |
7 | 7178 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7179 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7180 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7181 # else |
7 | 7182 gdk_window_set_cursor(gui.drawarea->window, c); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7183 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7184 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7185 g_object_unref(G_OBJECT(c)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7186 # else |
7 | 7187 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7188 # endif |
7 | 7189 } |
7190 if (shape != MSHAPE_HIDE) | |
7191 last_shape = shape; | |
7192 } | |
7193 #endif /* FEAT_MOUSESHAPE */ | |
7194 | |
7195 | |
7196 #if defined(FEAT_SIGN_ICONS) || defined(PROTO) | |
7197 /* | |
7198 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be | |
7199 * scaled down if the current font is not big enough, or scaled up if the image | |
7200 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap | |
7201 * will be cut off if the current font is not big enough, or centered if it's | |
7202 * too small. | |
7203 */ | |
7204 # define SIGN_WIDTH (2 * gui.char_width) | |
7205 # define SIGN_HEIGHT (gui.char_height) | |
7206 # define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH) | |
7207 | |
7208 void | |
7209 gui_mch_drawsign(int row, int col, int typenr) | |
7210 { | |
7211 GdkPixbuf *sign; | |
7212 | |
7213 sign = (GdkPixbuf *)sign_get_image(typenr); | |
7214 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7215 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7216 if (sign != NULL && gui.drawarea != NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7217 && gtk_widget_get_window(gui.drawarea) != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7218 # else |
7 | 7219 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7220 # endif |
7 | 7221 { |
7222 int width; | |
7223 int height; | |
7224 int xoffset; | |
7225 int yoffset; | |
7226 int need_scale; | |
7227 | |
7228 width = gdk_pixbuf_get_width(sign); | |
7229 height = gdk_pixbuf_get_height(sign); | |
7230 /* | |
7231 * Decide whether we need to scale. Allow one pixel of border | |
7232 * width to be cut off, in order to avoid excessive scaling for | |
7233 * tiny differences in font size. | |
5983 | 7234 * Do scale to fit the height to avoid gaps because of linespacing. |
7 | 7235 */ |
7236 need_scale = (width > SIGN_WIDTH + 2 | |
5983 | 7237 || height != SIGN_HEIGHT |
7 | 7238 || (width < 3 * SIGN_WIDTH / 4 |
7239 && height < 3 * SIGN_HEIGHT / 4)); | |
7240 if (need_scale) | |
7241 { | |
5983 | 7242 double aspect; |
7243 int w = width; | |
7244 int h = height; | |
7 | 7245 |
7246 /* Keep the original aspect ratio */ | |
7247 aspect = (double)height / (double)width; | |
7248 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect; | |
7249 width = MIN(width, SIGN_WIDTH); | |
5983 | 7250 if (((double)(MAX(height, SIGN_HEIGHT)) / |
7251 (double)(MIN(height, SIGN_HEIGHT))) < 1.15) | |
7252 { | |
7253 /* Change the aspect ratio by at most 15% to fill the | |
7254 * available space completly. */ | |
7255 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect; | |
7256 height = MIN(height, SIGN_HEIGHT); | |
7257 } | |
7258 else | |
7259 height = (double)width * aspect; | |
7260 | |
7261 if (w == width && h == height) | |
7262 { | |
7263 /* no change in dimensions; don't decrease reference counter | |
7264 * (below) */ | |
7265 need_scale = FALSE; | |
7266 } | |
7267 else | |
7268 { | |
7269 /* This doesn't seem to be worth caching, and doing so would | |
7270 * complicate the code quite a bit. */ | |
7271 sign = gdk_pixbuf_scale_simple(sign, width, height, | |
7272 GDK_INTERP_BILINEAR); | |
7273 if (sign == NULL) | |
7274 return; /* out of memory */ | |
7275 } | |
7 | 7276 } |
7277 | |
7278 /* The origin is the upper-left corner of the pixmap. Therefore | |
7279 * these offset may become negative if the pixmap is smaller than | |
7280 * the 2x1 cells reserved for the sign icon. */ | |
7281 xoffset = (width - SIGN_WIDTH) / 2; | |
7282 yoffset = (height - SIGN_HEIGHT) / 2; | |
7283 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7284 # if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7285 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7286 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7287 cairo_surface_t *bg_surf; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7288 cairo_t *bg_cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7289 cairo_surface_t *sign_surf; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7290 cairo_t *sign_cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7291 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7292 cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7293 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7294 bg_surf = cairo_surface_create_similar(gui.surface, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7295 cairo_surface_get_content(gui.surface), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7296 SIGN_WIDTH, SIGN_HEIGHT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7297 bg_cr = cairo_create(bg_surf); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
7298 cairo_set_source_rgba(bg_cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
7299 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
7300 gui.bgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7301 cairo_paint(bg_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7302 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7303 sign_surf = cairo_surface_create_similar(gui.surface, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7304 cairo_surface_get_content(gui.surface), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7305 SIGN_WIDTH, SIGN_HEIGHT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7306 sign_cr = cairo_create(sign_surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7307 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7308 cairo_paint(sign_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7309 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7310 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7311 cairo_set_source_surface(sign_cr, bg_surf, 0, 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7312 cairo_paint(sign_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7313 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7314 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7315 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7316 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7317 cairo_destroy(sign_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7318 cairo_surface_destroy(sign_surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7319 cairo_destroy(bg_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7320 cairo_surface_destroy(bg_surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7321 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7322 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7323 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7324 gtk_widget_queue_draw_area(gui.drawarea, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7325 FILL_X(col), FILL_Y(col), width, height); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7326 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7327 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7328 # else /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 7329 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
7330 | |
7331 gdk_draw_rectangle(gui.drawarea->window, | |
7332 gui.text_gc, | |
7333 TRUE, | |
7334 FILL_X(col), | |
7335 FILL_Y(row), | |
7336 SIGN_WIDTH, | |
7337 SIGN_HEIGHT); | |
7338 | |
7339 gdk_pixbuf_render_to_drawable_alpha(sign, | |
7340 gui.drawarea->window, | |
7341 MAX(0, xoffset), | |
7342 MAX(0, yoffset), | |
7343 FILL_X(col) - MIN(0, xoffset), | |
7344 FILL_Y(row) - MIN(0, yoffset), | |
7345 MIN(width, SIGN_WIDTH), | |
7346 MIN(height, SIGN_HEIGHT), | |
7347 GDK_PIXBUF_ALPHA_BILEVEL, | |
7348 127, | |
7349 GDK_RGB_DITHER_NORMAL, | |
7350 0, 0); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7351 # endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 7352 if (need_scale) |
7353 g_object_unref(sign); | |
7354 } | |
7355 } | |
7356 | |
7357 void * | |
7358 gui_mch_register_sign(char_u *signfile) | |
7359 { | |
7360 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use) | |
7361 { | |
7362 GdkPixbuf *sign; | |
7363 GError *error = NULL; | |
7364 char_u *message; | |
7365 | |
7366 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error); | |
7367 | |
7368 if (error == NULL) | |
7369 return sign; | |
7370 | |
7371 message = (char_u *)error->message; | |
7372 | |
7373 if (message != NULL && input_conv.vc_type != CONV_NONE) | |
7374 message = string_convert(&input_conv, message, NULL); | |
7375 | |
7376 if (message != NULL) | |
7377 { | |
7378 /* The error message is already translated and will be more | |
7379 * descriptive than anything we could possibly do ourselves. */ | |
7380 EMSG2("E255: %s", message); | |
7381 | |
7382 if (input_conv.vc_type != CONV_NONE) | |
7383 vim_free(message); | |
7384 } | |
7385 g_error_free(error); | |
7386 } | |
7387 | |
7388 return NULL; | |
7389 } | |
7390 | |
7391 void | |
7392 gui_mch_destroy_sign(void *sign) | |
7393 { | |
7394 if (sign != NULL) | |
7395 g_object_unref(sign); | |
7396 } | |
7397 | |
7398 #endif /* FEAT_SIGN_ICONS */ |