Mercurial > vim
annotate src/gui_gtk_x11.c @ 16947:b2179cf1a0a5 v8.1.1474
patch 8.1.1474: 'ttybuiltin' is not tested
commit https://github.com/vim/vim/commit/9aeb33639f49511cc16962a11a40844693ddb15e
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jun 6 12:36:15 2019 +0200
patch 8.1.1474: 'ttybuiltin' is not tested
Problem: 'ttybuiltin' is not tested.
Solution: At least test that it doesn't break things.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 06 Jun 2019 12:45:05 +0200 |
parents | ce04ebdf26b8 |
children | 3147c7c2e86b |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9939
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 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> |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15730
diff
changeset
|
89 # ifdef MSWIN |
7 | 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 */ | |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
105 #define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \ |
7 | 106 gtk_widget_get_display(gui.mainwin), atom) |
107 | |
108 /* Selection type distinguishers */ | |
109 enum | |
110 { | |
111 TARGET_TYPE_NONE, | |
112 TARGET_UTF8_STRING, | |
113 TARGET_STRING, | |
114 TARGET_COMPOUND_TEXT, | |
1904 | 115 TARGET_HTML, |
7 | 116 TARGET_TEXT, |
117 TARGET_TEXT_URI_LIST, | |
118 TARGET_TEXT_PLAIN, | |
119 TARGET_VIM, | |
120 TARGET_VIMENC | |
121 }; | |
122 | |
123 /* | |
124 * Table of selection targets supported by Vim. | |
125 * Note: Order matters, preferred types should come first. | |
126 */ | |
127 static const GtkTargetEntry selection_targets[] = | |
128 { | |
129 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC}, | |
130 {VIM_ATOM_NAME, 0, TARGET_VIM}, | |
1904 | 131 {"text/html", 0, TARGET_HTML}, |
7 | 132 {"UTF8_STRING", 0, TARGET_UTF8_STRING}, |
133 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT}, | |
134 {"TEXT", 0, TARGET_TEXT}, | |
135 {"STRING", 0, TARGET_STRING} | |
136 }; | |
137 #define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0])) | |
138 | |
139 #ifdef FEAT_DND | |
140 /* | |
141 * Table of DnD targets supported by Vim. | |
142 * Note: Order matters, preferred types should come first. | |
143 */ | |
144 static const GtkTargetEntry dnd_targets[] = | |
145 { | |
146 {"text/uri-list", 0, TARGET_TEXT_URI_LIST}, | |
1904 | 147 {"text/html", 0, TARGET_HTML}, |
7 | 148 {"UTF8_STRING", 0, TARGET_UTF8_STRING}, |
149 {"STRING", 0, TARGET_STRING}, | |
150 {"text/plain", 0, TARGET_TEXT_PLAIN} | |
151 }; | |
152 # define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0])) | |
153 #endif | |
154 | |
155 | |
156 /* | |
157 * "Monospace" is a standard font alias that should be present | |
158 * on all proper Pango/fontconfig installations. | |
159 */ | |
160 # define DEFAULT_FONT "Monospace 10" | |
161 | |
162 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) | |
163 /* | |
164 * Atoms used to communicate save-yourself from the X11 session manager. There | |
165 * is no need to move them into the GUI struct, since they should be constant. | |
166 */ | |
167 static GdkAtom wm_protocols_atom = GDK_NONE; | |
168 static GdkAtom save_yourself_atom = GDK_NONE; | |
169 #endif | |
170 | |
171 /* | |
172 * Atoms used to control/reference X11 selections. | |
173 */ | |
1904 | 174 static GdkAtom html_atom = GDK_NONE; |
7 | 175 static GdkAtom utf8_string_atom = GDK_NONE; |
176 static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */ | |
177 static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */ | |
178 | |
179 /* | |
180 * Keycodes recognized by vim. | |
181 * NOTE: when changing this, the table in gui_x11.c probably needs the same | |
182 * change! | |
183 */ | |
184 static struct special_key | |
185 { | |
186 guint key_sym; | |
187 char_u code0; | |
188 char_u code1; | |
189 } | |
190 const special_keys[] = | |
191 { | |
192 {GDK_Up, 'k', 'u'}, | |
193 {GDK_Down, 'k', 'd'}, | |
194 {GDK_Left, 'k', 'l'}, | |
195 {GDK_Right, 'k', 'r'}, | |
196 {GDK_F1, 'k', '1'}, | |
197 {GDK_F2, 'k', '2'}, | |
198 {GDK_F3, 'k', '3'}, | |
199 {GDK_F4, 'k', '4'}, | |
200 {GDK_F5, 'k', '5'}, | |
201 {GDK_F6, 'k', '6'}, | |
202 {GDK_F7, 'k', '7'}, | |
203 {GDK_F8, 'k', '8'}, | |
204 {GDK_F9, 'k', '9'}, | |
205 {GDK_F10, 'k', ';'}, | |
206 {GDK_F11, 'F', '1'}, | |
207 {GDK_F12, 'F', '2'}, | |
208 {GDK_F13, 'F', '3'}, | |
209 {GDK_F14, 'F', '4'}, | |
210 {GDK_F15, 'F', '5'}, | |
211 {GDK_F16, 'F', '6'}, | |
212 {GDK_F17, 'F', '7'}, | |
213 {GDK_F18, 'F', '8'}, | |
214 {GDK_F19, 'F', '9'}, | |
215 {GDK_F20, 'F', 'A'}, | |
216 {GDK_F21, 'F', 'B'}, | |
217 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */ | |
218 {GDK_F22, 'F', 'C'}, | |
219 {GDK_F23, 'F', 'D'}, | |
220 {GDK_F24, 'F', 'E'}, | |
221 {GDK_F25, 'F', 'F'}, | |
222 {GDK_F26, 'F', 'G'}, | |
223 {GDK_F27, 'F', 'H'}, | |
224 {GDK_F28, 'F', 'I'}, | |
225 {GDK_F29, 'F', 'J'}, | |
226 {GDK_F30, 'F', 'K'}, | |
227 {GDK_F31, 'F', 'L'}, | |
228 {GDK_F32, 'F', 'M'}, | |
229 {GDK_F33, 'F', 'N'}, | |
230 {GDK_F34, 'F', 'O'}, | |
231 {GDK_F35, 'F', 'P'}, | |
232 #ifdef SunXK_F36 | |
233 {SunXK_F36, 'F', 'Q'}, | |
234 {SunXK_F37, 'F', 'R'}, | |
235 #endif | |
236 {GDK_Help, '%', '1'}, | |
237 {GDK_Undo, '&', '8'}, | |
238 {GDK_BackSpace, 'k', 'b'}, | |
239 {GDK_Insert, 'k', 'I'}, | |
240 {GDK_Delete, 'k', 'D'}, | |
241 {GDK_3270_BackTab, 'k', 'B'}, | |
242 {GDK_Clear, 'k', 'C'}, | |
243 {GDK_Home, 'k', 'h'}, | |
244 {GDK_End, '@', '7'}, | |
245 {GDK_Prior, 'k', 'P'}, | |
246 {GDK_Next, 'k', 'N'}, | |
247 {GDK_Print, '%', '9'}, | |
248 /* Keypad keys: */ | |
249 {GDK_KP_Left, 'k', 'l'}, | |
250 {GDK_KP_Right, 'k', 'r'}, | |
251 {GDK_KP_Up, 'k', 'u'}, | |
252 {GDK_KP_Down, 'k', 'd'}, | |
253 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS}, | |
254 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL}, | |
255 {GDK_KP_Home, 'K', '1'}, | |
256 {GDK_KP_End, 'K', '4'}, | |
257 {GDK_KP_Prior, 'K', '3'}, /* page up */ | |
258 {GDK_KP_Next, 'K', '5'}, /* page down */ | |
259 | |
260 {GDK_KP_Add, 'K', '6'}, | |
261 {GDK_KP_Subtract, 'K', '7'}, | |
262 {GDK_KP_Divide, 'K', '8'}, | |
263 {GDK_KP_Multiply, 'K', '9'}, | |
264 {GDK_KP_Enter, 'K', 'A'}, | |
265 {GDK_KP_Decimal, 'K', 'B'}, | |
266 | |
267 {GDK_KP_0, 'K', 'C'}, | |
268 {GDK_KP_1, 'K', 'D'}, | |
269 {GDK_KP_2, 'K', 'E'}, | |
270 {GDK_KP_3, 'K', 'F'}, | |
271 {GDK_KP_4, 'K', 'G'}, | |
272 {GDK_KP_5, 'K', 'H'}, | |
273 {GDK_KP_6, 'K', 'I'}, | |
274 {GDK_KP_7, 'K', 'J'}, | |
275 {GDK_KP_8, 'K', 'K'}, | |
276 {GDK_KP_9, 'K', 'L'}, | |
277 | |
278 /* End of list marker: */ | |
279 {0, 0, 0} | |
280 }; | |
281 | |
282 /* | |
283 * Flags for command line options table below. | |
284 */ | |
285 #define ARG_FONT 1 | |
286 #define ARG_GEOMETRY 2 | |
287 #define ARG_REVERSE 3 | |
288 #define ARG_NOREVERSE 4 | |
289 #define ARG_BACKGROUND 5 | |
290 #define ARG_FOREGROUND 6 | |
291 #define ARG_ICONIC 7 | |
292 #define ARG_ROLE 8 | |
293 #define ARG_NETBEANS 9 | |
294 #define ARG_XRM 10 /* ignored */ | |
295 #define ARG_MENUFONT 11 /* ignored */ | |
296 #define ARG_INDEX_MASK 0x00ff | |
297 #define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */ | |
298 #define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */ | |
299 #define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */ | |
300 #define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */ | |
301 #define ARG_KEEP 0x1000 /* don't remove argument from argv[] */ | |
302 | |
303 /* | |
304 * This table holds all the X GUI command line options allowed. This includes | |
305 * the standard ones so that we can skip them when Vim is started without the | |
306 * GUI (but the GUI might start up later). | |
307 * | |
308 * When changing this, also update doc/gui_x11.txt and the usage message!!! | |
309 */ | |
310 typedef struct | |
311 { | |
312 const char *name; | |
313 unsigned int flags; | |
314 } | |
315 cmdline_option_T; | |
316 | |
317 static const cmdline_option_T cmdline_options[] = | |
318 { | |
319 /* We handle these options ourselves */ | |
320 {"-fn", ARG_FONT|ARG_HAS_VALUE}, | |
321 {"-font", ARG_FONT|ARG_HAS_VALUE}, | |
322 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE}, | |
323 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE}, | |
324 {"-rv", ARG_REVERSE}, | |
325 {"-reverse", ARG_REVERSE}, | |
326 {"+rv", ARG_NOREVERSE}, | |
327 {"+reverse", ARG_NOREVERSE}, | |
328 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE}, | |
329 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE}, | |
330 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE}, | |
331 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE}, | |
332 {"-iconic", ARG_ICONIC}, | |
333 {"--role", ARG_ROLE|ARG_HAS_VALUE}, | |
334 #ifdef FEAT_NETBEANS_INTG | |
335 {"-nb", ARG_NETBEANS}, /* non-standard value format */ | |
336 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */ | |
337 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */ | |
338 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */ | |
339 #endif | |
340 /* Arguments handled by GTK (and GNOME) internally. */ | |
341 {"--g-fatal-warnings", ARG_FOR_GTK}, | |
342 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
343 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
344 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
345 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
346 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
347 {"--sync", ARG_FOR_GTK}, | |
348 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, | |
349 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, | |
350 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, | |
351 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
352 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
353 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
354 #ifdef FEAT_GUI_GNOME | |
355 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
356 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
357 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
358 {"--sm-disable", ARG_FOR_GTK}, | |
359 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
360 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
361 {"--oaf-private", ARG_FOR_GTK}, | |
362 {"--enable-sound", ARG_FOR_GTK}, | |
363 {"--disable-sound", ARG_FOR_GTK}, | |
364 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
365 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI}, | |
366 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP}, | |
367 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI}, | |
368 # if 0 /* conflicts with Vim's own --version argument */ | |
369 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI}, | |
370 # endif | |
371 {"--disable-crash-dialog", ARG_FOR_GTK}, | |
372 #endif | |
373 {NULL, 0} | |
374 }; | |
375 | |
376 static int gui_argc = 0; | |
377 static char **gui_argv = NULL; | |
378 | |
379 static const char *role_argument = NULL; | |
380 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) | |
381 static const char *restart_command = NULL; | |
1898 | 382 static char *abs_restart_command = NULL; |
7 | 383 #endif |
384 static int found_iconic_arg = FALSE; | |
385 | |
386 #ifdef FEAT_GUI_GNOME | |
387 /* | |
388 * Can't use Gnome if --socketid given | |
389 */ | |
390 static int using_gnome = 0; | |
391 #else | |
392 # define using_gnome 0 | |
393 #endif | |
394 | |
395 /* | |
396 * Parse the GUI related command-line arguments. Any arguments used are | |
397 * deleted from argv, and *argc is decremented accordingly. This is called | |
398 * when vim is started, whether or not the GUI has been started. | |
399 */ | |
400 void | |
401 gui_mch_prepare(int *argc, char **argv) | |
402 { | |
403 const cmdline_option_T *option; | |
404 int i = 0; | |
405 int len = 0; | |
406 | |
407 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) | |
408 /* | |
409 * Determine the command used to invoke Vim, to be passed as restart | |
410 * command to the session manager. If argv[0] contains any directory | |
411 * components try building an absolute path, otherwise leave it as is. | |
412 */ | |
413 restart_command = argv[0]; | |
414 | |
415 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL) | |
416 { | |
417 char_u buf[MAXPATHL]; | |
418 | |
419 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK) | |
1898 | 420 { |
421 abs_restart_command = (char *)vim_strsave(buf); | |
422 restart_command = abs_restart_command; | |
423 } | |
7 | 424 } |
425 #endif | |
426 | |
427 /* | |
428 * Move all the entries in argv which are relevant to GTK+ and GNOME | |
429 * into gui_argv. Freed later in gui_mch_init(). | |
430 */ | |
431 gui_argc = 0; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
432 gui_argv = ALLOC_MULT(char *, *argc + 1); |
7 | 433 |
434 g_return_if_fail(gui_argv != NULL); | |
435 | |
436 gui_argv[gui_argc++] = argv[i++]; | |
437 | |
438 while (i < *argc) | |
439 { | |
440 /* Don't waste CPU cycles on non-option arguments. */ | |
441 if (argv[i][0] != '-' && argv[i][0] != '+') | |
442 { | |
443 ++i; | |
444 continue; | |
445 } | |
446 | |
447 /* Look for argv[i] in cmdline_options[] table. */ | |
448 for (option = &cmdline_options[0]; option->name != NULL; ++option) | |
449 { | |
450 len = strlen(option->name); | |
451 | |
452 if (strncmp(argv[i], option->name, len) == 0) | |
453 { | |
454 if (argv[i][len] == '\0') | |
455 break; | |
456 /* allow --foo=bar style */ | |
457 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE)) | |
458 break; | |
459 #ifdef FEAT_NETBEANS_INTG | |
460 /* darn, -nb has non-standard syntax */ | |
461 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL | |
462 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS) | |
463 break; | |
464 #endif | |
465 } | |
466 else if ((option->flags & ARG_COMPAT_LONG) | |
467 && strcmp(argv[i], option->name + 1) == 0) | |
468 { | |
469 /* Replace the standard X arguments "-name" and "-display" | |
470 * with their GNU-style long option counterparts. */ | |
471 argv[i] = (char *)option->name; | |
472 break; | |
473 } | |
474 } | |
475 if (option->name == NULL) /* no match */ | |
476 { | |
477 ++i; | |
478 continue; | |
479 } | |
480 | |
481 if (option->flags & ARG_FOR_GTK) | |
482 { | |
483 /* Move the argument into gui_argv, which | |
484 * will later be passed to gtk_init_check() */ | |
485 gui_argv[gui_argc++] = argv[i]; | |
486 } | |
487 else | |
488 { | |
489 char *value = NULL; | |
490 | |
491 /* Extract the option's value if there is one. | |
492 * Accept both "--foo bar" and "--foo=bar" style. */ | |
493 if (option->flags & ARG_HAS_VALUE) | |
494 { | |
495 if (argv[i][len] == '=') | |
496 value = &argv[i][len + 1]; | |
497 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0) | |
498 value = argv[i + 1]; | |
499 } | |
500 | |
501 /* Check for options handled by Vim itself */ | |
502 switch (option->flags & ARG_INDEX_MASK) | |
503 { | |
504 case ARG_REVERSE: | |
505 found_reverse_arg = TRUE; | |
506 break; | |
507 case ARG_NOREVERSE: | |
508 found_reverse_arg = FALSE; | |
509 break; | |
510 case ARG_FONT: | |
511 font_argument = value; | |
512 break; | |
513 case ARG_GEOMETRY: | |
514 if (value != NULL) | |
515 gui.geom = vim_strsave((char_u *)value); | |
516 break; | |
517 case ARG_BACKGROUND: | |
518 background_argument = value; | |
519 break; | |
520 case ARG_FOREGROUND: | |
521 foreground_argument = value; | |
522 break; | |
523 case ARG_ICONIC: | |
524 found_iconic_arg = TRUE; | |
525 break; | |
526 case ARG_ROLE: | |
527 role_argument = value; /* used later in gui_mch_open() */ | |
528 break; | |
529 #ifdef FEAT_NETBEANS_INTG | |
530 case ARG_NETBEANS: | |
531 gui.dofork = FALSE; /* don't fork() when starting GUI */ | |
532 netbeansArg = argv[i]; | |
533 break; | |
534 #endif | |
535 default: | |
536 break; | |
537 } | |
538 } | |
539 | |
540 /* 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
|
541 * 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
|
542 * Only when the GUI can start. */ |
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
543 if ((option->flags & ARG_NEEDS_GUI) |
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
544 && gui_mch_early_init_check(FALSE) == OK) |
7 | 545 gui.starting = TRUE; |
546 | |
547 if (option->flags & ARG_KEEP) | |
548 ++i; | |
549 else | |
550 { | |
551 /* Remove the flag from the argument vector. */ | |
552 if (--*argc > i) | |
553 { | |
554 int n_strip = 1; | |
555 | |
556 /* Move the argument's value as well, if there is one. */ | |
557 if ((option->flags & ARG_HAS_VALUE) | |
558 && argv[i][len] != '=' | |
559 && strcmp(argv[i + 1], "--") != 0) | |
560 { | |
561 ++n_strip; | |
562 --*argc; | |
563 if (option->flags & ARG_FOR_GTK) | |
564 gui_argv[gui_argc++] = argv[i + 1]; | |
565 } | |
566 | |
567 if (*argc > i) | |
568 mch_memmove(&argv[i], &argv[i + n_strip], | |
569 (*argc - i) * sizeof(char *)); | |
570 } | |
571 argv[*argc] = NULL; | |
572 } | |
573 } | |
574 | |
575 gui_argv[gui_argc] = NULL; | |
576 } | |
577 | |
359 | 578 #if defined(EXITFREE) || defined(PROTO) |
579 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
580 gui_mch_free_all(void) |
359 | 581 { |
582 vim_free(gui_argv); | |
1898 | 583 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
584 vim_free(abs_restart_command); | |
585 #endif | |
359 | 586 } |
587 #endif | |
588 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
589 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 590 /* |
591 * This should be maybe completely removed. | |
592 * Doesn't seem possible, since check_copy_area() relies on | |
593 * this information. --danielk | |
594 */ | |
595 static gint | |
1884 | 596 visibility_event(GtkWidget *widget UNUSED, |
597 GdkEventVisibility *event, | |
598 gpointer data UNUSED) | |
7 | 599 { |
600 gui.visibility = event->state; | |
601 /* | |
602 * When we do an gdk_window_copy_area(), and the window is partially | |
603 * obscured, we want to receive an event to tell us whether it worked | |
604 * or not. | |
605 */ | |
606 if (gui.text_gc != NULL) | |
607 gdk_gc_set_exposures(gui.text_gc, | |
608 gui.visibility != GDK_VISIBILITY_UNOBSCURED); | |
609 return FALSE; | |
610 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
611 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 612 |
613 /* | |
614 * Redraw the corresponding portions of the screen. | |
615 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
616 #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
|
617 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
|
618 static gboolean blink_mode = TRUE; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
619 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
620 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
|
621 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
622 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
623 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
|
624 { |
10920
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
625 /* Range checks are left to gui_redraw_block() */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
626 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
|
627 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
|
628 GUI_MON_NOCLEAR); |
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 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
631 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
632 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
|
633 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
634 if (gui.row == gui.cursor_row) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
635 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
636 gui.by_signal = TRUE; |
8495
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
637 if (State & CMDLINE) |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
638 gui_update_cursor(TRUE, FALSE); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
639 else |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
640 gui_update_cursor(TRUE, TRUE); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
641 gui.by_signal = FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
642 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
643 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
644 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
645 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
646 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
647 gui_gtk3_should_draw_cursor(void) |
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 unsigned int cond = 0; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
650 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
|
651 if (gui.cursor_col >= gui.col) |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
652 cond |= is_key_pressed; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
653 cond |= gui.in_focus == FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
654 return cond; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
655 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
656 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
657 static gboolean |
9232
a64e2a624fbe
commit https://github.com/vim/vim/commit/8e31fd52ec8be6ef1dc600b637d5f099d55e1715
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
658 draw_event(GtkWidget *widget UNUSED, |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
659 cairo_t *cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
660 gpointer user_data UNUSED) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
661 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
662 /* 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
|
663 if (gui.starting) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
664 return FALSE; |
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 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
|
667 /* 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
|
668 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
669 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
|
670 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
671 /* Draw the window without the cursor. */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
672 gui.by_signal = TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
673 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
674 cairo_rectangle_list_t *list = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
675 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
676 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
|
677 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
|
678 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
679 int i; |
10920
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
680 |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
681 /* First clear all the blocks and then redraw them. Just in case |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
682 * some blocks overlap. */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
683 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
|
684 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
685 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
|
686 |
10920
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
687 gui_mch_clear_block(Y_2_ROW((int)rect.y), 0, |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
688 Y_2_ROW((int)(rect.y + rect.height)) - 1, Columns - 1); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
689 } |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
690 |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
691 for (i = 0; i < list->num_rectangles; i++) |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
692 { |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
693 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
|
694 |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
695 if (blink_mode) |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
696 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
|
697 else |
8510
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
698 { |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
699 if (get_real_state() & VISUAL) |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
700 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
|
701 rect.width, rect.height); |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
702 else |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
703 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
|
704 } |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
705 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
706 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
707 cairo_rectangle_list_destroy(list); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
708 |
8510
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
709 if (get_real_state() & VISUAL) |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
710 { |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
711 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
|
712 gui_update_cursor(TRUE, TRUE); |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
713 } |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
714 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
715 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
716 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
717 gui.by_signal = FALSE; |
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 /* 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
|
720 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
|
721 gui_gtk3_update_cursor(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
722 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
723 return FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
724 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
725 #else /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 726 static gint |
1884 | 727 expose_event(GtkWidget *widget UNUSED, |
728 GdkEventExpose *event, | |
729 gpointer data UNUSED) | |
7 | 730 { |
731 /* Skip this when the GUI isn't set up yet, will redraw later. */ | |
732 if (gui.starting) | |
733 return FALSE; | |
734 | |
735 out_flush(); /* make sure all output has been processed */ | |
736 gui_redraw(event->area.x, event->area.y, | |
737 event->area.width, event->area.height); | |
738 | |
739 /* Clear the border areas if needed */ | |
740 if (event->area.x < FILL_X(0)) | |
741 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0); | |
742 if (event->area.y < FILL_Y(0)) | |
743 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0)); | |
744 if (event->area.x > FILL_X(Columns)) | |
745 gdk_window_clear_area(gui.drawarea->window, | |
746 FILL_X((int)Columns), 0, 0, 0); | |
747 if (event->area.y > FILL_Y(Rows)) | |
748 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0); | |
749 | |
750 return FALSE; | |
751 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
752 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 753 |
754 #ifdef FEAT_CLIENTSERVER | |
755 /* | |
756 * Handle changes to the "Comm" property | |
757 */ | |
758 static gint | |
1884 | 759 property_event(GtkWidget *widget, |
760 GdkEventProperty *event, | |
761 gpointer data UNUSED) | |
7 | 762 { |
763 if (event->type == GDK_PROPERTY_NOTIFY | |
764 && 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
|
765 && GDK_WINDOW_XID(event->window) == commWindow |
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 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
|
776 &xev, 0); |
7 | 777 } |
778 return FALSE; | |
779 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
780 #endif /* defined(FEAT_CLIENTSERVER) */ |
7 | 781 |
14471
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
782 /* |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
783 * Handle changes to the "Xft/DPI" setting |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
784 */ |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
785 static void |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
786 gtk_settings_xft_dpi_changed_cb(GtkSettings *gtk_settings UNUSED, |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
787 GParamSpec *pspec UNUSED, |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
788 gpointer data UNUSED) |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
789 { |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
790 // Create a new PangoContext for this screen, and initialize it |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
791 // with the current font if necessary. |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
792 if (gui.text_context != NULL) |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
793 g_object_unref(gui.text_context); |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
794 |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
795 gui.text_context = gtk_widget_create_pango_context(gui.mainwin); |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
796 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
797 |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
798 if (gui.norm_font != NULL) |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
799 { |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
800 // force default font |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
801 gui_mch_init_font(*p_guifont == NUL ? NULL : p_guifont, FALSE); |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
802 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH); |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
803 } |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
804 } |
7 | 805 |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
806 typedef gboolean timeout_cb_type; |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
807 |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
808 /* |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
809 * Start a timer that will invoke the specified callback. |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
810 * Returns the ID of the timer. |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
811 */ |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
812 static guint |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
813 timeout_add(int time, timeout_cb_type (*callback)(gpointer), int *flagp) |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
814 { |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
815 return g_timeout_add((guint)time, (GSourceFunc)callback, flagp); |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
816 } |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
817 |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
818 static void |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
819 timeout_remove(guint timer) |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
820 { |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
821 g_source_remove(timer); |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
822 } |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
823 |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
824 |
7 | 825 /**************************************************************************** |
826 * Focus handlers: | |
827 */ | |
828 | |
829 | |
830 /* | |
831 * This is a simple state machine: | |
832 * BLINK_NONE not blinking at all | |
833 * BLINK_OFF blinking, cursor is not shown | |
834 * BLINK_ON blinking, cursor is shown | |
835 */ | |
836 | |
837 #define BLINK_NONE 0 | |
838 #define BLINK_OFF 1 | |
839 #define BLINK_ON 2 | |
840 | |
841 static int blink_state = BLINK_NONE; | |
842 static long_u blink_waittime = 700; | |
843 static long_u blink_ontime = 400; | |
844 static long_u blink_offtime = 250; | |
845 static guint blink_timer = 0; | |
846 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
847 #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
|
848 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
849 gui_gtk_is_blink_on(void) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
850 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
851 return blink_state == BLINK_ON; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
852 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
853 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
854 |
9213
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
855 int |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
856 gui_mch_is_blinking(void) |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
857 { |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
858 return blink_state != BLINK_NONE; |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
859 } |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
860 |
9428
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
861 int |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
862 gui_mch_is_blink_off(void) |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
863 { |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
864 return blink_state == BLINK_OFF; |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
865 } |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
866 |
7 | 867 void |
868 gui_mch_set_blinking(long waittime, long on, long off) | |
869 { | |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
870 #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
|
871 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
|
872 { |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
873 blink_mode = FALSE; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
874 |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
875 blink_waittime = 700; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
876 blink_ontime = 400; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
877 blink_offtime = 250; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
878 } |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
879 else |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
880 { |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
881 blink_mode = TRUE; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
882 |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
883 blink_waittime = waittime; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
884 blink_ontime = on; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
885 blink_offtime = off; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
886 } |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
887 #else |
7 | 888 blink_waittime = waittime; |
889 blink_ontime = on; | |
890 blink_offtime = off; | |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
891 #endif |
7 | 892 } |
893 | |
894 /* | |
895 * Stop the cursor blinking. Show the cursor if it wasn't shown. | |
896 */ | |
897 void | |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
12802
diff
changeset
|
898 gui_mch_stop_blink(int may_call_gui_update_cursor) |
7 | 899 { |
900 if (blink_timer) | |
901 { | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
902 timeout_remove(blink_timer); |
7 | 903 blink_timer = 0; |
904 } | |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
12802
diff
changeset
|
905 if (blink_state == BLINK_OFF && may_call_gui_update_cursor) |
9489
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
906 { |
7 | 907 gui_update_cursor(TRUE, FALSE); |
9489
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
908 gui_mch_flush(); |
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
909 } |
7 | 910 blink_state = BLINK_NONE; |
911 } | |
912 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
913 static timeout_cb_type |
1884 | 914 blink_cb(gpointer data UNUSED) |
7 | 915 { |
916 if (blink_state == BLINK_ON) | |
917 { | |
918 gui_undraw_cursor(); | |
919 blink_state = BLINK_OFF; | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
920 blink_timer = timeout_add(blink_offtime, blink_cb, NULL); |
7 | 921 } |
922 else | |
923 { | |
924 gui_update_cursor(TRUE, FALSE); | |
925 blink_state = BLINK_ON; | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
926 blink_timer = timeout_add(blink_ontime, blink_cb, NULL); |
7 | 927 } |
9489
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
928 gui_mch_flush(); |
7 | 929 |
930 return FALSE; /* don't happen again */ | |
931 } | |
932 | |
933 /* | |
934 * Start the cursor blinking. If it was already blinking, this restarts the | |
935 * waiting time and shows the cursor. | |
936 */ | |
937 void | |
938 gui_mch_start_blink(void) | |
939 { | |
940 if (blink_timer) | |
5818 | 941 { |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
942 timeout_remove(blink_timer); |
5818 | 943 blink_timer = 0; |
944 } | |
7 | 945 /* Only switch blinking on if none of the times is zero */ |
946 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus) | |
947 { | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
948 blink_timer = timeout_add(blink_waittime, blink_cb, NULL); |
7 | 949 blink_state = BLINK_ON; |
950 gui_update_cursor(TRUE, FALSE); | |
9489
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
951 gui_mch_flush(); |
7 | 952 } |
953 } | |
954 | |
955 static gint | |
1884 | 956 enter_notify_event(GtkWidget *widget UNUSED, |
957 GdkEventCrossing *event UNUSED, | |
958 gpointer data UNUSED) | |
7 | 959 { |
960 if (blink_state == BLINK_NONE) | |
961 gui_mch_start_blink(); | |
962 | |
963 /* 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
|
964 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea)) |
7 | 965 gtk_widget_grab_focus(gui.drawarea); |
966 | |
967 return FALSE; | |
968 } | |
969 | |
970 static gint | |
1884 | 971 leave_notify_event(GtkWidget *widget UNUSED, |
972 GdkEventCrossing *event UNUSED, | |
973 gpointer data UNUSED) | |
7 | 974 { |
975 if (blink_state != BLINK_NONE) | |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
12802
diff
changeset
|
976 gui_mch_stop_blink(TRUE); |
7 | 977 |
978 return FALSE; | |
979 } | |
980 | |
981 static gint | |
1884 | 982 focus_in_event(GtkWidget *widget, |
983 GdkEventFocus *event UNUSED, | |
984 gpointer data UNUSED) | |
7 | 985 { |
986 gui_focus_change(TRUE); | |
987 | |
988 if (blink_state == BLINK_NONE) | |
989 gui_mch_start_blink(); | |
990 | |
1380 | 991 /* make sure keyboard input goes to the draw area (if this is focus for a |
992 * window) */ | |
791 | 993 if (widget != gui.drawarea) |
856 | 994 gtk_widget_grab_focus(gui.drawarea); |
7 | 995 |
996 return TRUE; | |
997 } | |
998 | |
999 static gint | |
1884 | 1000 focus_out_event(GtkWidget *widget UNUSED, |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
1001 GdkEventFocus *event UNUSED, |
1884 | 1002 gpointer data UNUSED) |
7 | 1003 { |
1004 gui_focus_change(FALSE); | |
1005 | |
1006 if (blink_state != BLINK_NONE) | |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
12802
diff
changeset
|
1007 gui_mch_stop_blink(TRUE); |
7 | 1008 |
1009 return TRUE; | |
1010 } | |
1011 | |
1012 | |
1013 /* | |
1014 * Translate a GDK key value to UTF-8 independently of the current locale. | |
1015 * The output is written to string, which must have room for at least 6 bytes | |
1016 * plus the NUL terminator. Returns the length in bytes. | |
1017 * | |
1018 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use | |
1019 * of GdkEventKey::string instead. But event->string is evil; see here why: | |
1020 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey | |
1021 */ | |
1022 static int | |
1023 keyval_to_string(unsigned int keyval, unsigned int state, char_u *string) | |
1024 { | |
1025 int len; | |
1026 guint32 uc; | |
1027 | |
1028 uc = gdk_keyval_to_unicode(keyval); | |
1029 if (uc != 0) | |
1030 { | |
1031 /* Check for CTRL-foo */ | |
1032 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80) | |
1033 { | |
1034 /* These mappings look arbitrary at the first glance, but in fact | |
1035 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my | |
1036 * machine. The only difference is BS vs. DEL for CTRL-8 (makes | |
1037 * more sense and is consistent with usual terminal behaviour). */ | |
1038 if (uc >= '@') | |
1039 string[0] = uc & 0x1F; | |
1040 else if (uc == '2') | |
1041 string[0] = NUL; | |
1042 else if (uc >= '3' && uc <= '7') | |
1043 string[0] = uc ^ 0x28; | |
1044 else if (uc == '8') | |
1045 string[0] = BS; | |
1046 else if (uc == '?') | |
1047 string[0] = DEL; | |
1048 else | |
1049 string[0] = uc; | |
1050 len = 1; | |
1051 } | |
1052 else | |
1053 { | |
1054 /* Translate a normal key to UTF-8. This doesn't work for dead | |
1055 * keys of course, you _have_ to use an input method for that. */ | |
1056 len = utf_char2bytes((int)uc, string); | |
1057 } | |
1058 } | |
1059 else | |
1060 { | |
1061 /* Translate keys which are represented by ASCII control codes in Vim. | |
1062 * There are only a few of those; most control keys are translated to | |
1063 * special terminal-like control sequences. */ | |
1064 len = 1; | |
1065 switch (keyval) | |
1066 { | |
1067 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab: | |
1068 string[0] = TAB; | |
1069 break; | |
1070 case GDK_Linefeed: | |
1071 string[0] = NL; | |
1072 break; | |
1073 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter: | |
1074 string[0] = CAR; | |
1075 break; | |
1076 case GDK_Escape: | |
1077 string[0] = ESC; | |
1078 break; | |
1079 default: | |
1080 len = 0; | |
1081 break; | |
1082 } | |
1083 } | |
1084 string[len] = NUL; | |
1085 | |
1086 return len; | |
1087 } | |
1088 | |
179 | 1089 static int |
1090 modifiers_gdk2vim(guint state) | |
1091 { | |
1092 int modifiers = 0; | |
1093 | |
1094 if (state & GDK_SHIFT_MASK) | |
1095 modifiers |= MOD_MASK_SHIFT; | |
1096 if (state & GDK_CONTROL_MASK) | |
1097 modifiers |= MOD_MASK_CTRL; | |
1098 if (state & GDK_MOD1_MASK) | |
1099 modifiers |= MOD_MASK_ALT; | |
2550
7c1f73452ea6
Fix #ifdef for GDK_SUPER_MASK.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1100 #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
|
1101 if (state & GDK_SUPER_MASK) |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1102 modifiers |= MOD_MASK_META; |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1103 #endif |
179 | 1104 if (state & GDK_MOD4_MASK) |
1105 modifiers |= MOD_MASK_META; | |
1106 | |
1107 return modifiers; | |
1108 } | |
1109 | |
1110 static int | |
1111 modifiers_gdk2mouse(guint state) | |
1112 { | |
1113 int modifiers = 0; | |
1114 | |
1115 if (state & GDK_SHIFT_MASK) | |
1116 modifiers |= MOUSE_SHIFT; | |
1117 if (state & GDK_CONTROL_MASK) | |
1118 modifiers |= MOUSE_CTRL; | |
1119 if (state & GDK_MOD1_MASK) | |
1120 modifiers |= MOUSE_ALT; | |
1121 | |
1122 return modifiers; | |
1123 } | |
1124 | |
7 | 1125 /* |
1126 * Main keyboard handler: | |
1127 */ | |
1128 static gint | |
1884 | 1129 key_press_event(GtkWidget *widget UNUSED, |
1130 GdkEventKey *event, | |
1131 gpointer data UNUSED) | |
7 | 1132 { |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
1133 /* For GTK+ 2 we know for sure how large the string might get. |
7 | 1134 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */ |
1135 char_u string[32], string2[32]; | |
1136 guint key_sym; | |
1137 int len; | |
1138 int i; | |
1139 int modifiers; | |
1140 int key; | |
1141 guint state; | |
1142 char_u *s, *d; | |
1143 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1144 #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
|
1145 is_key_pressed = TRUE; |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
12802
diff
changeset
|
1146 gui_mch_stop_blink(TRUE); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1147 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1148 |
2923 | 1149 gui.event_time = event->time; |
7 | 1150 key_sym = event->keyval; |
1151 state = event->state; | |
1152 | |
1153 #ifdef FEAT_XIM | |
1154 if (xim_queue_key_press_event(event, TRUE)) | |
1155 return TRUE; | |
1156 #endif | |
1157 | |
1158 #ifdef FEAT_HANGULIN | |
1159 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK)) | |
1160 { | |
1161 hangul_input_state_toggle(); | |
1162 return TRUE; | |
1163 } | |
1164 #endif | |
1165 | |
1166 #ifdef SunXK_F36 | |
1167 /* | |
1168 * These keys have bogus lookup strings, and trapping them here is | |
1169 * easier than trying to XRebindKeysym() on them with every possible | |
1170 * combination of modifiers. | |
1171 */ | |
1172 if (key_sym == SunXK_F36 || key_sym == SunXK_F37) | |
1173 len = 0; | |
1174 else | |
1175 #endif | |
1176 { | |
1177 len = keyval_to_string(key_sym, state, string2); | |
1178 | |
1179 /* Careful: convert_input() doesn't handle the NUL character. | |
1180 * No need to convert pure ASCII anyway, thus the len > 1 check. */ | |
1181 if (len > 1 && input_conv.vc_type != CONV_NONE) | |
1182 len = convert_input(string2, len, sizeof(string2)); | |
1183 | |
1184 s = string2; | |
1185 d = string; | |
1186 for (i = 0; i < len; ++i) | |
1187 { | |
1188 *d++ = s[i]; | |
1189 if (d[-1] == CSI && d + 2 < string + sizeof(string)) | |
1190 { | |
1191 /* Turn CSI into K_CSI. */ | |
1192 *d++ = KS_EXTRA; | |
1193 *d++ = (int)KE_CSI; | |
1194 } | |
1195 } | |
1196 len = d - string; | |
1197 } | |
1198 | |
1199 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */ | |
1200 if (key_sym == GDK_ISO_Left_Tab) | |
1201 { | |
1202 key_sym = GDK_Tab; | |
1203 state |= GDK_SHIFT_MASK; | |
1204 } | |
1205 | |
1206 #ifdef FEAT_MENU | |
1207 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key | |
1208 * is a menu shortcut, we ignore everything with the ALT modifier. */ | |
1209 if ((state & GDK_MOD1_MASK) | |
1210 && gui.menu_is_active | |
1211 && (*p_wak == 'y' | |
1212 || (*p_wak == 'm' | |
1213 && len == 1 | |
1214 && gui_is_menu_shortcut(string[0])))) | |
1215 /* For GTK2 we return false to signify that we haven't handled the | |
1216 * keypress, so that gtk will handle the mnemonic or accelerator. */ | |
1217 return FALSE; | |
1218 #endif | |
1219 | |
1220 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character | |
1221 * that already has the 8th bit set. | |
1222 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT. | |
1223 * Don't do this for double-byte encodings, it turns the char into a lead | |
1224 * byte. */ | |
1225 if (len == 1 | |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1226 && ((state & GDK_MOD1_MASK) |
2571
42bdbc2bbb59
Fix #ifdef for GDK_SUPER_MASK. (Stephan Schulz)
Bram Moolenaar <bram@vim.org>
parents:
2550
diff
changeset
|
1227 #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
|
1228 || (state & GDK_SUPER_MASK) |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1229 #endif |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1230 ) |
7 | 1231 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete) |
1232 && (string[0] & 0x80) == 0 | |
1233 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK)) | |
1234 && !enc_dbcs | |
1235 ) | |
1236 { | |
1237 string[0] |= 0x80; | |
1238 state &= ~GDK_MOD1_MASK; /* don't use it again */ | |
1239 if (enc_utf8) /* convert to utf-8 */ | |
1240 { | |
1241 string[1] = string[0] & 0xbf; | |
1242 string[0] = ((unsigned)string[0] >> 6) + 0xc0; | |
1243 if (string[1] == CSI) | |
1244 { | |
1245 string[2] = KS_EXTRA; | |
1246 string[3] = (int)KE_CSI; | |
1247 len = 4; | |
1248 } | |
1249 else | |
1250 len = 2; | |
1251 } | |
1252 } | |
1253 | |
1254 /* Check for special keys. Also do this when len == 1 (key has an ASCII | |
1255 * value) to detect backspace, delete and keypad keys. */ | |
1256 if (len == 0 || len == 1) | |
1257 { | |
1258 for (i = 0; special_keys[i].key_sym != 0; i++) | |
1259 { | |
1260 if (special_keys[i].key_sym == key_sym) | |
1261 { | |
1262 string[0] = CSI; | |
1263 string[1] = special_keys[i].code0; | |
1264 string[2] = special_keys[i].code1; | |
1265 len = -3; | |
1266 break; | |
1267 } | |
1268 } | |
1269 } | |
1270 | |
1271 if (len == 0) /* Unrecognized key */ | |
1272 return TRUE; | |
1273 | |
1274 /* Special keys (and a few others) may have modifiers. Also when using a | |
1275 * double-byte encoding (can't set the 8th bit). */ | |
1276 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab | |
1277 || key_sym == GDK_Return || key_sym == GDK_Linefeed | |
1278 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab | |
1279 || 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
|
1280 || (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
|
1281 #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
|
1282 || (state & GDK_SUPER_MASK) |
7 | 1283 #endif |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
1284 ))) |
7 | 1285 { |
179 | 1286 modifiers = modifiers_gdk2vim(state); |
7 | 1287 |
1288 /* | |
1289 * For some keys a shift modifier is translated into another key | |
1290 * code. | |
1291 */ | |
1292 if (len == -3) | |
1293 key = TO_SPECIAL(string[1], string[2]); | |
1294 else | |
1295 key = string[0]; | |
1296 | |
1297 key = simplify_key(key, &modifiers); | |
1298 if (key == CSI) | |
1299 key = K_CSI; | |
1300 if (IS_SPECIAL(key)) | |
1301 { | |
1302 string[0] = CSI; | |
1303 string[1] = K_SECOND(key); | |
1304 string[2] = K_THIRD(key); | |
1305 len = 3; | |
1306 } | |
1307 else | |
1308 { | |
1309 string[0] = key; | |
1310 len = 1; | |
1311 } | |
1312 | |
1313 if (modifiers != 0) | |
1314 { | |
1315 string2[0] = CSI; | |
1316 string2[1] = KS_MODIFIER; | |
1317 string2[2] = modifiers; | |
1318 add_to_input_buf(string2, 3); | |
1319 } | |
1320 } | |
1321 | |
1322 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts) | |
1323 || (string[0] == intr_char && intr_char != Ctrl_C))) | |
1324 { | |
1325 trash_input_buf(); | |
1326 got_int = TRUE; | |
1327 } | |
1328 | |
1329 add_to_input_buf(string, len); | |
1330 | |
1331 /* blank out the pointer if necessary */ | |
1332 if (p_mh) | |
1333 gui_mch_mousehide(TRUE); | |
1334 | |
1335 return TRUE; | |
1336 } | |
1337 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1338 #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
7 | 1339 static gboolean |
1884 | 1340 key_release_event(GtkWidget *widget UNUSED, |
1341 GdkEventKey *event, | |
1342 gpointer data UNUSED) | |
7 | 1343 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1344 # 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
|
1345 is_key_pressed = FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1346 gui_mch_start_blink(); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1347 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1348 # if defined(FEAT_XIM) |
2923 | 1349 gui.event_time = event->time; |
7 | 1350 /* |
1351 * GTK+ 2 input methods may do fancy stuff on key release events too. | |
1352 * With the default IM for instance, you can enter any UCS code point | |
1353 * by holding down CTRL-SHIFT and typing hexadecimal digits. | |
1354 */ | |
1355 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
|
1356 # else |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1357 return TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1358 # endif |
7 | 1359 } |
1360 #endif | |
1361 | |
1362 | |
1363 /**************************************************************************** | |
1364 * Selection handlers: | |
1365 */ | |
1366 | |
13503
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1367 /* Remember when clip_lose_selection was called from here, we must not call |
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1368 * gtk_selection_owner_set() then. */ |
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1369 static int in_selection_clear_event = FALSE; |
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1370 |
7 | 1371 static gint |
1884 | 1372 selection_clear_event(GtkWidget *widget UNUSED, |
7 | 1373 GdkEventSelection *event, |
1884 | 1374 gpointer user_data UNUSED) |
7 | 1375 { |
13503
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1376 in_selection_clear_event = TRUE; |
7 | 1377 if (event->selection == clip_plus.gtk_sel_atom) |
1378 clip_lose_selection(&clip_plus); | |
1379 else | |
1380 clip_lose_selection(&clip_star); | |
13503
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1381 in_selection_clear_event = FALSE; |
7 | 1382 |
1383 return TRUE; | |
1384 } | |
1385 | |
1386 #define RS_NONE 0 /* selection_received_cb() not called yet */ | |
1387 #define RS_OK 1 /* selection_received_cb() called and OK */ | |
1388 #define RS_FAIL 2 /* selection_received_cb() called and failed */ | |
1389 static int received_selection = RS_NONE; | |
1390 | |
1391 static void | |
1884 | 1392 selection_received_cb(GtkWidget *widget UNUSED, |
7 | 1393 GtkSelectionData *data, |
1884 | 1394 guint time_ UNUSED, |
1395 gpointer user_data UNUSED) | |
7 | 1396 { |
1397 VimClipboard *cbd; | |
1398 char_u *text; | |
1399 char_u *tmpbuf = NULL; | |
1400 guchar *tmpbuf_utf8 = NULL; | |
1401 int len; | |
2896 | 1402 int motion_type = MAUTO; |
7 | 1403 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1404 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom) |
7 | 1405 cbd = &clip_plus; |
1406 else | |
1407 cbd = &clip_star; | |
1408 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1409 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
|
1410 len = gtk_selection_data_get_length(data); |
7 | 1411 |
1412 if (text == NULL || len <= 0) | |
1413 { | |
1414 received_selection = RS_FAIL; | |
1415 /* clip_free_selection(cbd); ??? */ | |
1416 | |
1417 return; | |
1418 } | |
1419 | |
8218
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) |
7 | 1421 { |
1422 motion_type = *text++; | |
1423 --len; | |
1424 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1425 else if (gtk_selection_data_get_data_type(data) == vimenc_atom) |
7 | 1426 { |
1427 char_u *enc; | |
1428 vimconv_T conv; | |
1429 | |
1430 motion_type = *text++; | |
1431 --len; | |
1432 | |
1433 enc = text; | |
1434 text += STRLEN(text) + 1; | |
1435 len -= text - enc; | |
1436 | |
1437 /* If the encoding of the text is different from 'encoding', attempt | |
1438 * converting it. */ | |
1439 conv.vc_type = CONV_NONE; | |
1440 convert_setup(&conv, enc, p_enc); | |
1441 if (conv.vc_type != CONV_NONE) | |
1442 { | |
1443 tmpbuf = string_convert(&conv, text, &len); | |
1444 if (tmpbuf != NULL) | |
1445 text = tmpbuf; | |
1446 convert_setup(&conv, NULL, NULL); | |
1447 } | |
1448 } | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
1449 |
7 | 1450 /* gtk_selection_data_get_text() handles all the nasty details |
1451 * and targets and encodings etc. This rocks so hard. */ | |
1452 else | |
1453 { | |
1454 tmpbuf_utf8 = gtk_selection_data_get_text(data); | |
1455 if (tmpbuf_utf8 != NULL) | |
1456 { | |
1457 len = STRLEN(tmpbuf_utf8); | |
1458 if (input_conv.vc_type != CONV_NONE) | |
1459 { | |
1460 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len); | |
1461 if (tmpbuf != NULL) | |
1462 text = tmpbuf; | |
1463 } | |
1464 else | |
1465 text = tmpbuf_utf8; | |
1466 } | |
1904 | 1467 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe) |
1468 { | |
1469 vimconv_T conv; | |
1470 | |
1471 /* UTF-16, we get this for HTML */ | |
1472 conv.vc_type = CONV_NONE; | |
1473 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE); | |
1474 | |
1475 if (conv.vc_type != CONV_NONE) | |
1476 { | |
1477 text += 2; | |
1478 len -= 2; | |
1479 tmpbuf = string_convert(&conv, text, &len); | |
1480 convert_setup(&conv, NULL, NULL); | |
1481 } | |
1482 if (tmpbuf != NULL) | |
1483 text = tmpbuf; | |
1484 } | |
7 | 1485 } |
1486 | |
4352 | 1487 /* Chop off any trailing NUL bytes. OpenOffice sends these. */ |
2183 | 1488 while (len > 0 && text[len - 1] == NUL) |
1489 --len; | |
1490 | |
7 | 1491 clip_yank_selection(motion_type, text, (long)len, cbd); |
1492 received_selection = RS_OK; | |
1493 vim_free(tmpbuf); | |
1494 g_free(tmpbuf_utf8); | |
1495 } | |
1496 | |
1497 /* | |
1498 * Prepare our selection data for passing it to the external selection | |
1499 * client. | |
1500 */ | |
1501 static void | |
1884 | 1502 selection_get_cb(GtkWidget *widget UNUSED, |
7 | 1503 GtkSelectionData *selection_data, |
1504 guint info, | |
1884 | 1505 guint time_ UNUSED, |
1506 gpointer user_data UNUSED) | |
7 | 1507 { |
1508 char_u *string; | |
1509 char_u *tmpbuf; | |
1510 long_u tmplen; | |
1511 int length; | |
1512 int motion_type; | |
1513 GdkAtom type; | |
1514 VimClipboard *cbd; | |
1515 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1516 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
|
1517 == clip_plus.gtk_sel_atom) |
7 | 1518 cbd = &clip_plus; |
1519 else | |
1520 cbd = &clip_star; | |
1521 | |
1522 if (!cbd->owned) | |
1523 return; /* Shouldn't ever happen */ | |
1524 | |
1525 if (info != (guint)TARGET_STRING | |
1904 | 1526 && (!clip_html || info != (guint)TARGET_HTML) |
7 | 1527 && info != (guint)TARGET_UTF8_STRING |
1528 && info != (guint)TARGET_VIMENC | |
1529 && info != (guint)TARGET_VIM | |
1530 && info != (guint)TARGET_COMPOUND_TEXT | |
1531 && info != (guint)TARGET_TEXT) | |
1532 return; | |
1533 | |
1534 /* get the selection from the '*'/'+' register */ | |
1535 clip_get_selection(cbd); | |
1536 | |
1537 motion_type = clip_convert_selection(&string, &tmplen, cbd); | |
1538 if (motion_type < 0 || string == NULL) | |
1539 return; | |
1540 /* Due to int arguments we can't handle more than G_MAXINT. Also | |
1541 * reserve one extra byte for NUL or the motion type; just in case. | |
1542 * (Not that pasting 2G of text is ever going to work, but... ;-) */ | |
1543 length = MIN(tmplen, (long_u)(G_MAXINT - 1)); | |
1544 | |
1545 if (info == (guint)TARGET_VIM) | |
1546 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1547 tmpbuf = alloc(length + 1); |
7 | 1548 if (tmpbuf != NULL) |
1549 { | |
1550 tmpbuf[0] = motion_type; | |
1551 mch_memmove(tmpbuf + 1, string, (size_t)length); | |
1552 } | |
1553 /* For our own format, the first byte contains the motion type */ | |
1554 ++length; | |
1555 vim_free(string); | |
1556 string = tmpbuf; | |
1557 type = vim_atom; | |
1558 } | |
1559 | |
1904 | 1560 else if (info == (guint)TARGET_HTML) |
1561 { | |
1562 vimconv_T conv; | |
1563 | |
1564 /* Since we get utf-16, we probably should set it as well. */ | |
1565 conv.vc_type = CONV_NONE; | |
1566 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE); | |
1567 if (conv.vc_type != CONV_NONE) | |
1568 { | |
1569 tmpbuf = string_convert(&conv, string, &length); | |
1570 convert_setup(&conv, NULL, NULL); | |
1571 vim_free(string); | |
1572 string = tmpbuf; | |
1573 } | |
1574 | |
1575 /* Prepend the BOM: "fffe" */ | |
1576 if (string != NULL) | |
1577 { | |
1578 tmpbuf = alloc(length + 2); | |
16429
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1579 if (tmpbuf != NULL) |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1580 { |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1581 tmpbuf[0] = 0xff; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1582 tmpbuf[1] = 0xfe; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1583 mch_memmove(tmpbuf + 2, string, (size_t)length); |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1584 vim_free(string); |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1585 string = tmpbuf; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1586 length += 2; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1587 } |
1904 | 1588 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1589 #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
|
1590 /* 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
|
1591 * overwritten by gtk_selection_data_set() that follows. */ |
1904 | 1592 selection_data->type = selection_data->target; |
1593 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
|
1594 #endif |
1904 | 1595 gtk_selection_data_set(selection_data, html_atom, 16, |
1596 string, length); | |
1597 vim_free(string); | |
1598 } | |
1599 return; | |
1600 } | |
7 | 1601 else if (info == (guint)TARGET_VIMENC) |
1602 { | |
1603 int l = STRLEN(p_enc); | |
1604 | |
1605 /* contents: motion_type 'encoding' NUL text */ | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1606 tmpbuf = alloc(length + l + 2); |
7 | 1607 if (tmpbuf != NULL) |
1608 { | |
1609 tmpbuf[0] = motion_type; | |
1610 STRCPY(tmpbuf + 1, p_enc); | |
1611 mch_memmove(tmpbuf + l + 2, string, (size_t)length); | |
16429
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1612 length += l + 2; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1613 vim_free(string); |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1614 string = tmpbuf; |
7 | 1615 } |
1616 type = vimenc_atom; | |
1617 } | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
1618 |
7 | 1619 /* gtk_selection_data_set_text() handles everything for us. This is |
1620 * so easy and simple and cool, it'd be insane not to use it. */ | |
1621 else | |
1622 { | |
1623 if (output_conv.vc_type != CONV_NONE) | |
1624 { | |
1625 tmpbuf = string_convert(&output_conv, string, &length); | |
1626 vim_free(string); | |
1627 if (tmpbuf == NULL) | |
1628 return; | |
1629 string = tmpbuf; | |
1630 } | |
1631 /* Validate the string to avoid runtime warnings */ | |
1632 if (g_utf8_validate((const char *)string, (gssize)length, NULL)) | |
1633 { | |
1634 gtk_selection_data_set_text(selection_data, | |
1635 (const char *)string, length); | |
1636 } | |
1637 vim_free(string); | |
1638 return; | |
1639 } | |
1640 | |
1641 if (string != NULL) | |
1642 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1643 #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
|
1644 /* 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
|
1645 * overwritten by gtk_selection_data_set() that follows. */ |
7 | 1646 selection_data->type = selection_data->target; |
1647 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
|
1648 #endif |
7 | 1649 gtk_selection_data_set(selection_data, type, 8, string, length); |
1650 vim_free(string); | |
1651 } | |
1652 } | |
1653 | |
1654 /* | |
3518 | 1655 * Check if the GUI can be started. Called before gvimrc is sourced and |
1656 * before fork(). | |
1657 * Return OK or FAIL. | |
1658 */ | |
1659 int | |
9836
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
1660 gui_mch_early_init_check(int give_message) |
3518 | 1661 { |
1662 char_u *p; | |
1663 | |
1664 /* Guess that when $DISPLAY isn't set the GUI can't start. */ | |
1665 p = mch_getenv((char_u *)"DISPLAY"); | |
1666 if (p == NULL || *p == NUL) | |
1667 { | |
1668 gui.dying = TRUE; | |
9836
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
1669 if (give_message) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15134
diff
changeset
|
1670 emsg(_((char *)e_opendisp)); |
3518 | 1671 return FAIL; |
1672 } | |
1673 return OK; | |
1674 } | |
1675 | |
1676 /* | |
1677 * Check if the GUI can be started. Called before gvimrc is sourced but after | |
1678 * fork(). | |
7 | 1679 * Return OK or FAIL. |
1680 */ | |
1681 int | |
1682 gui_mch_init_check(void) | |
1683 { | |
7679
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1684 #ifdef USE_GRESOURCE |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1685 static int res_registered = FALSE; |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1686 |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1687 if (!res_registered) |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1688 { |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1689 /* 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
|
1690 * 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
|
1691 res_registered = TRUE; |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1692 gui_gtk_register_resource(); |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1693 } |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1694 #endif |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1695 |
8851
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1696 #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
|
1697 /* 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
|
1698 * 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
|
1699 gdk_set_allowed_backends ("x11"); |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1700 #endif |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1701 |
7 | 1702 #ifdef FEAT_GUI_GNOME |
1703 if (gtk_socket_id == 0) | |
1704 using_gnome = 1; | |
1705 #endif | |
1706 | |
4474 | 1707 /* This defaults to argv[0], but we want it to match the name of the |
1708 * shipped gvim.desktop so that Vim's windows can be associated with this | |
1709 * file. */ | |
1710 g_set_prgname("gvim"); | |
1711 | |
7 | 1712 /* Don't use gtk_init() or gnome_init(), it exits on failure. */ |
1713 if (!gtk_init_check(&gui_argc, &gui_argv)) | |
1714 { | |
1715 gui.dying = TRUE; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15134
diff
changeset
|
1716 emsg(_((char *)e_opendisp)); |
7 | 1717 return FAIL; |
1718 } | |
1719 | |
1720 return OK; | |
1721 } | |
1722 | |
1723 /**************************************************************************** | |
1724 * Mouse handling callbacks | |
1725 */ | |
1726 | |
1727 | |
1728 static guint mouse_click_timer = 0; | |
1729 static int mouse_timed_out = TRUE; | |
1730 | |
1731 /* | |
1732 * Timer used to recognize multiple clicks of the mouse button | |
1733 */ | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1734 static timeout_cb_type |
7 | 1735 mouse_click_timer_cb(gpointer data) |
1736 { | |
1737 /* we don't use this information currently */ | |
1738 int *timed_out = (int *) data; | |
1739 | |
1740 *timed_out = TRUE; | |
1741 return FALSE; /* don't happen again */ | |
1742 } | |
1743 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1744 static guint motion_repeat_timer = 0; |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1745 static int motion_repeat_offset = FALSE; |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1746 static timeout_cb_type motion_repeat_timer_cb(gpointer); |
7 | 1747 |
1748 static void | |
1749 process_motion_notify(int x, int y, GdkModifierType state) | |
1750 { | |
1751 int button; | |
1752 int_u vim_modifiers; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1753 GtkAllocation allocation; |
7 | 1754 |
1755 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | | |
1756 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | | |
1757 GDK_BUTTON5_MASK)) | |
1758 ? MOUSE_DRAG : ' '; | |
1759 | |
1760 /* If our pointer is currently hidden, then we should show it. */ | |
1761 gui_mch_mousehide(FALSE); | |
1762 | |
1763 /* Just moving the rodent above the drawing area without any button | |
1764 * being pressed. */ | |
1765 if (button != MOUSE_DRAG) | |
1766 { | |
1767 gui_mouse_moved(x, y); | |
1768 return; | |
1769 } | |
1770 | |
1771 /* translate modifier coding between the main engine and GTK */ | |
179 | 1772 vim_modifiers = modifiers_gdk2mouse(state); |
7 | 1773 |
1226 | 1774 /* inform the editor engine about the occurrence of this event */ |
7 | 1775 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers); |
1776 | |
1777 /* | |
1778 * Auto repeat timer handling. | |
1779 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1780 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
|
1781 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1782 if (x < 0 || y < 0 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1783 || x >= allocation.width |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1784 || y >= allocation.height) |
7 | 1785 { |
1786 | |
1787 int dx; | |
1788 int dy; | |
1789 int offshoot; | |
1790 int delay = 10; | |
1791 | |
1792 /* Calculate the maximal distance of the cursor from the drawing area. | |
1793 * (offshoot can't become negative here!). | |
1794 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1795 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
|
1796 dy = y < 0 ? -y : y - allocation.height; |
7 | 1797 |
1798 offshoot = dx > dy ? dx : dy; | |
1799 | |
1884 | 1800 /* Make a linearly decaying timer delay with a threshold of 5 at a |
7 | 1801 * distance of 127 pixels from the main window. |
1802 * | |
1803 * One could think endlessly about the most ergonomic variant here. | |
1804 * For example it could make sense to calculate the distance from the | |
1805 * drags start instead... | |
1806 * | |
1807 * Maybe a parabolic interpolation would suite us better here too... | |
1808 */ | |
1809 if (offshoot > 127) | |
1810 { | |
1811 /* 5 appears to be somehow near to my perceptual limits :-). */ | |
1812 delay = 5; | |
1813 } | |
1814 else | |
1815 { | |
1816 delay = (130 * (127 - offshoot)) / 127 + 5; | |
1817 } | |
1818 | |
1819 /* shoot again */ | |
1820 if (!motion_repeat_timer) | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1821 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb, |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1822 NULL); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1823 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1824 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1825 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1826 #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
|
1827 static GdkDevice * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1828 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
|
1829 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1830 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
|
1831 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
|
1832 # 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
|
1833 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
|
1834 return gdk_seat_get_pointer(seat); |
fc69eed19ba7
commit https://github.com/vim/vim/commit/30e12d259ee78272359f9da2655d0593a4f6a626
Christian Brabandt <cb@256bit.org>
parents:
8851
diff
changeset
|
1835 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1836 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
|
1837 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
|
1838 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1839 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1840 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1841 static GdkWindow * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1842 gui_gtk_get_pointer(GtkWidget *widget, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1843 gint *x, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1844 gint *y, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1845 GdkModifierType *state) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1846 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1847 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
|
1848 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
|
1849 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
|
1850 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1851 |
8397
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1852 # 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
|
1853 static GdkWindow * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1854 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
|
1855 gint *x, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1856 gint *y) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1857 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1858 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
|
1859 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
|
1860 } |
8397
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1861 # endif |
14786
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
1862 #else /* !GTK_CHECK_VERSION(3,0,0) */ |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
1863 # define gui_gtk_get_pointer(wid, x, y, s) \ |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
1864 gdk_window_get_pointer((wid)->window, x, y, s) |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
1865 # define gui_gtk_window_at_position(wid, x, y) 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
|
1866 #endif |
7 | 1867 |
1868 /* | |
1869 * Timer used to recognize multiple clicks of the mouse button. | |
1870 */ | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1871 static timeout_cb_type |
1884 | 1872 motion_repeat_timer_cb(gpointer data UNUSED) |
7 | 1873 { |
1874 int x; | |
1875 int y; | |
1876 GdkModifierType state; | |
1877 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1878 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state); |
7 | 1879 |
1880 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | | |
1881 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | | |
1882 GDK_BUTTON5_MASK))) | |
1883 { | |
1884 motion_repeat_timer = 0; | |
1885 return FALSE; | |
1886 } | |
1887 | |
1888 /* If there already is a mouse click in the input buffer, wait another | |
1889 * time (otherwise we would create a backlog of clicks) */ | |
1890 if (vim_used_in_input_buf() > 10) | |
1891 return TRUE; | |
1892 | |
1893 motion_repeat_timer = 0; | |
1894 | |
1895 /* | |
1896 * Fake a motion event. | |
1897 * Trick: Pretend the mouse moved to the next character on every other | |
1898 * event, otherwise drag events will be discarded, because they are still | |
1899 * in the same character. | |
1900 */ | |
1901 if (motion_repeat_offset) | |
1902 x += gui.char_width; | |
1903 | |
1904 motion_repeat_offset = !motion_repeat_offset; | |
1905 process_motion_notify(x, y, state); | |
1906 | |
1907 /* Don't happen again. We will get reinstalled in the synthetic event | |
1908 * if needed -- thus repeating should still work. */ | |
1909 return FALSE; | |
1910 } | |
1911 | |
1912 static gint | |
1884 | 1913 motion_notify_event(GtkWidget *widget, |
1914 GdkEventMotion *event, | |
1915 gpointer data UNUSED) | |
7 | 1916 { |
1917 if (event->is_hint) | |
1918 { | |
1919 int x; | |
1920 int y; | |
1921 GdkModifierType state; | |
1922 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1923 gui_gtk_get_pointer(widget, &x, &y, &state); |
7 | 1924 process_motion_notify(x, y, state); |
1925 } | |
1926 else | |
1927 { | |
1928 process_motion_notify((int)event->x, (int)event->y, | |
1929 (GdkModifierType)event->state); | |
1930 } | |
1931 | |
1932 return TRUE; /* handled */ | |
1933 } | |
1934 | |
1935 | |
1936 /* | |
1937 * Mouse button handling. Note please that we are capturing multiple click's | |
1938 * by our own timeout mechanism instead of the one provided by GTK+ itself. | |
1939 * This is due to the way the generic VIM code is recognizing multiple clicks. | |
1940 */ | |
1941 static gint | |
1884 | 1942 button_press_event(GtkWidget *widget, |
1943 GdkEventButton *event, | |
1944 gpointer data UNUSED) | |
7 | 1945 { |
1946 int button; | |
1947 int repeated_click = FALSE; | |
1948 int x, y; | |
1949 int_u vim_modifiers; | |
1950 | |
2923 | 1951 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
|
1952 |
7 | 1953 /* 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
|
1954 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
7 | 1955 gtk_widget_grab_focus(widget); |
1956 | |
1957 /* | |
1958 * Don't let additional events about multiple clicks send by GTK to us | |
1959 * after the initial button press event confuse us. | |
1960 */ | |
1961 if (event->type != GDK_BUTTON_PRESS) | |
1962 return FALSE; | |
1963 | |
1964 x = event->x; | |
1965 y = event->y; | |
1966 | |
1967 /* Handle multiple clicks */ | |
1968 if (!mouse_timed_out && mouse_click_timer) | |
1969 { | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1970 timeout_remove(mouse_click_timer); |
7 | 1971 mouse_click_timer = 0; |
1972 repeated_click = TRUE; | |
1973 } | |
1974 | |
1975 mouse_timed_out = FALSE; | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1976 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb, |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1977 &mouse_timed_out); |
7 | 1978 |
1979 switch (event->button) | |
1980 { | |
7260
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1981 /* 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
|
1982 * 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
|
1983 case 1: button = MOUSE_LEFT; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1984 case 2: button = MOUSE_MIDDLE; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1985 case 3: button = MOUSE_RIGHT; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1986 case 8: button = MOUSE_X1; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1987 case 9: button = MOUSE_X2; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1988 default: |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1989 return FALSE; /* Unknown button */ |
7 | 1990 } |
1991 | |
1992 #ifdef FEAT_XIM | |
1993 /* cancel any preediting */ | |
1994 if (im_is_preediting()) | |
1995 xim_reset(); | |
1996 #endif | |
1997 | |
179 | 1998 vim_modifiers = modifiers_gdk2mouse(event->state); |
7 | 1999 |
2000 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers); | |
2001 | |
2002 return TRUE; | |
2003 } | |
2004 | |
2005 /* | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
2006 * GTK+ 2 abstracts scrolling via the GdkEventScroll. |
7 | 2007 */ |
2008 static gboolean | |
1884 | 2009 scroll_event(GtkWidget *widget, |
2010 GdkEventScroll *event, | |
2011 gpointer data UNUSED) | |
7 | 2012 { |
2013 int button; | |
179 | 2014 int_u vim_modifiers; |
7 | 2015 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2016 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
7 | 2017 gtk_widget_grab_focus(widget); |
2018 | |
2019 switch (event->direction) | |
2020 { | |
2021 case GDK_SCROLL_UP: | |
2022 button = MOUSE_4; | |
2023 break; | |
2024 case GDK_SCROLL_DOWN: | |
2025 button = MOUSE_5; | |
2026 break; | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2027 case GDK_SCROLL_LEFT: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2028 button = MOUSE_7; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2029 break; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2030 case GDK_SCROLL_RIGHT: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2031 button = MOUSE_6; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2032 break; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2033 default: /* This shouldn't happen */ |
7 | 2034 return FALSE; |
2035 } | |
2036 | |
2037 # ifdef FEAT_XIM | |
2038 /* cancel any preediting */ | |
2039 if (im_is_preediting()) | |
2040 xim_reset(); | |
2041 # endif | |
2042 | |
179 | 2043 vim_modifiers = modifiers_gdk2mouse(event->state); |
7 | 2044 |
2045 gui_send_mouse_event(button, (int)event->x, (int)event->y, | |
2046 FALSE, vim_modifiers); | |
2047 | |
2048 return TRUE; | |
2049 } | |
2050 | |
2051 | |
2052 static gint | |
1884 | 2053 button_release_event(GtkWidget *widget UNUSED, |
2054 GdkEventButton *event, | |
2055 gpointer data UNUSED) | |
7 | 2056 { |
2057 int x, y; | |
2058 int_u vim_modifiers; | |
2059 | |
2923 | 2060 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
|
2061 |
7 | 2062 /* Remove any motion "machine gun" timers used for automatic further |
2063 extension of allocation areas if outside of the applications window | |
2064 area .*/ | |
2065 if (motion_repeat_timer) | |
2066 { | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
2067 timeout_remove(motion_repeat_timer); |
7 | 2068 motion_repeat_timer = 0; |
2069 } | |
2070 | |
2071 x = event->x; | |
2072 y = event->y; | |
2073 | |
179 | 2074 vim_modifiers = modifiers_gdk2mouse(event->state); |
7 | 2075 |
2076 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers); | |
2077 | |
2078 return TRUE; | |
2079 } | |
2080 | |
2081 | |
2082 #ifdef FEAT_DND | |
2083 /**************************************************************************** | |
2084 * Drag aNd Drop support handlers. | |
2085 */ | |
2086 | |
2087 /* | |
2088 * Count how many items there may be and separate them with a NUL. | |
2089 * Apparently the items are separated with \r\n. This is not documented, | |
2090 * thus be careful not to go past the end. Also allow separation with | |
2091 * NUL characters. | |
2092 */ | |
2093 static int | |
2094 count_and_decode_uri_list(char_u *out, char_u *raw, int len) | |
2095 { | |
2096 int i; | |
2097 char_u *p = out; | |
2098 int count = 0; | |
2099 | |
2100 for (i = 0; i < len; ++i) | |
2101 { | |
2102 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r') | |
2103 { | |
2104 if (p > out && p[-1] != NUL) | |
2105 { | |
2106 ++count; | |
2107 *p++ = NUL; | |
2108 } | |
2109 } | |
2110 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0) | |
2111 { | |
2112 *p++ = hexhex2nr(raw + i + 1); | |
2113 i += 2; | |
2114 } | |
2115 else | |
2116 *p++ = raw[i]; | |
2117 } | |
2118 if (p > out && p[-1] != NUL) | |
2119 { | |
2120 *p = NUL; /* last item didn't have \r or \n */ | |
2121 ++count; | |
2122 } | |
2123 return count; | |
2124 } | |
2125 | |
2126 /* | |
2127 * Parse NUL separated "src" strings. Make it an array "outlist" form. On | |
2128 * this process, URI which protocol is not "file:" are removed. Return | |
2129 * length of array (less than "max"). | |
2130 */ | |
2131 static int | |
2132 filter_uri_list(char_u **outlist, int max, char_u *src) | |
2133 { | |
2134 int i, j; | |
2135 | |
2136 for (i = j = 0; i < max; ++i) | |
2137 { | |
2138 outlist[i] = NULL; | |
2139 if (STRNCMP(src, "file:", 5) == 0) | |
2140 { | |
2141 src += 5; | |
2142 if (STRNCMP(src, "//localhost", 11) == 0) | |
2143 src += 11; | |
2144 while (src[0] == '/' && src[1] == '/') | |
2145 ++src; | |
2146 outlist[j++] = vim_strsave(src); | |
2147 } | |
2148 src += STRLEN(src) + 1; | |
2149 } | |
2150 return j; | |
2151 } | |
2152 | |
2153 static char_u ** | |
2154 parse_uri_list(int *count, char_u *data, int len) | |
2155 { | |
2156 int n = 0; | |
2157 char_u *tmp = NULL; | |
9252
c25898cc99c1
commit https://github.com/vim/vim/commit/945ec093cd4ddefab930239990564b12eb232153
Christian Brabandt <cb@256bit.org>
parents:
9232
diff
changeset
|
2158 char_u **array = NULL; |
7 | 2159 |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2160 if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL) |
7 | 2161 { |
2162 n = count_and_decode_uri_list(tmp, data, len); | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2163 if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL) |
7 | 2164 n = filter_uri_list(array, n, tmp); |
2165 } | |
2166 vim_free(tmp); | |
2167 *count = n; | |
2168 return array; | |
2169 } | |
2170 | |
2171 static void | |
2172 drag_handle_uri_list(GdkDragContext *context, | |
2173 GtkSelectionData *data, | |
2174 guint time_, | |
2175 GdkModifierType state, | |
2176 gint x, | |
2177 gint y) | |
2178 { | |
2179 char_u **fnames; | |
2180 int nfiles = 0; | |
2181 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2182 fnames = parse_uri_list(&nfiles, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2183 (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
|
2184 gtk_selection_data_get_length(data)); |
7 | 2185 |
2186 if (fnames != NULL && nfiles > 0) | |
2187 { | |
179 | 2188 int_u modifiers; |
7 | 2189 |
2190 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ | |
2191 | |
179 | 2192 modifiers = modifiers_gdk2mouse(state); |
7 | 2193 |
2194 gui_handle_drop(x, y, modifiers, fnames, nfiles); | |
2195 } | |
840 | 2196 else |
2197 vim_free(fnames); | |
7 | 2198 } |
2199 | |
2200 static void | |
2201 drag_handle_text(GdkDragContext *context, | |
2202 GtkSelectionData *data, | |
2203 guint time_, | |
2204 GdkModifierType state) | |
2205 { | |
2206 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP}; | |
2207 char_u *text; | |
2208 int len; | |
2209 char_u *tmpbuf = NULL; | |
2210 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2211 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
|
2212 len = gtk_selection_data_get_length(data); |
14786
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
2213 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2214 if (gtk_selection_data_get_data_type(data) == utf8_string_atom) |
7 | 2215 { |
2216 if (input_conv.vc_type != CONV_NONE) | |
2217 tmpbuf = string_convert(&input_conv, text, &len); | |
2218 if (tmpbuf != NULL) | |
2219 text = tmpbuf; | |
2220 } | |
2221 | |
2222 dnd_yank_drag_data(text, (long)len); | |
2223 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ | |
2224 vim_free(tmpbuf); | |
2225 | |
179 | 2226 dropkey[2] = modifiers_gdk2vim(state); |
7 | 2227 |
2228 if (dropkey[2] != 0) | |
2229 add_to_input_buf(dropkey, (int)sizeof(dropkey)); | |
2230 else | |
2231 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3)); | |
2232 } | |
2233 | |
2234 /* | |
2235 * DND receiver. | |
2236 */ | |
2237 static void | |
2238 drag_data_received_cb(GtkWidget *widget, | |
2239 GdkDragContext *context, | |
2240 gint x, | |
2241 gint y, | |
2242 GtkSelectionData *data, | |
2243 guint info, | |
2244 guint time_, | |
1884 | 2245 gpointer user_data UNUSED) |
7 | 2246 { |
2247 GdkModifierType state; | |
2248 | |
2249 /* Guard against trash */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2250 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
|
2251 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
|
2252 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
|
2253 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2254 if (data_data == NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2255 || data_length <= 0 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2256 || data_format != 8 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2257 || data_data[data_length] != '\0') |
7 | 2258 { |
2259 gtk_drag_finish(context, FALSE, FALSE, time_); | |
2260 return; | |
2261 } | |
2262 | |
2263 /* Get the current modifier state for proper distinguishment between | |
2264 * different operations later. */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2265 gui_gtk_get_pointer(widget, NULL, NULL, &state); |
7 | 2266 |
2267 /* Not sure about the role of "text/plain" here... */ | |
2268 if (info == (guint)TARGET_TEXT_URI_LIST) | |
2269 drag_handle_uri_list(context, data, time_, state, x, y); | |
2270 else | |
2271 drag_handle_text(context, data, time_, state); | |
2272 | |
2273 } | |
2274 #endif /* FEAT_DND */ | |
2275 | |
2276 | |
2277 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) | |
2278 /* | |
2279 * GnomeClient interact callback. Check for unsaved buffers that cannot | |
2280 * be abandoned and pop up a dialog asking the user for confirmation if | |
2281 * necessary. | |
2282 */ | |
2283 static void | |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2284 sm_client_check_changed_any(GnomeClient *client UNUSED, |
7 | 2285 gint key, |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2286 GnomeDialogType type UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2287 gpointer data UNUSED) |
7 | 2288 { |
2289 cmdmod_T save_cmdmod; | |
2290 gboolean shutdown_cancelled; | |
2291 | |
2292 save_cmdmod = cmdmod; | |
2293 | |
2294 # ifdef FEAT_BROWSE | |
2295 cmdmod.browse = TRUE; | |
2296 # endif | |
2297 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2298 cmdmod.confirm = TRUE; | |
2299 # endif | |
2300 /* | |
2301 * If there are changed buffers, present the user with | |
2302 * a dialog if possible, otherwise give an error message. | |
2303 */ | |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
2304 shutdown_cancelled = check_changed_any(FALSE, FALSE); |
7 | 2305 |
2306 exiting = FALSE; | |
2307 cmdmod = save_cmdmod; | |
2308 setcursor(); /* position the cursor */ | |
2309 out_flush(); | |
2310 /* | |
2311 * If the user hit the [Cancel] button the whole shutdown | |
2312 * will be cancelled. Wow, quite powerful feature (: | |
2313 */ | |
2314 gnome_interaction_key_return(key, shutdown_cancelled); | |
2315 } | |
2316 | |
2317 /* | |
2318 * "save_yourself" signal handler. Initiate an interaction to ask the user | |
2319 * for confirmation if necessary. Save the current editing session and tell | |
2320 * the session manager how to restart Vim. | |
2321 */ | |
2322 static gboolean | |
2323 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
|
2324 gint phase UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2325 GnomeSaveStyle save_style UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2326 gboolean shutdown UNUSED, |
7 | 2327 GnomeInteractStyle interact_style, |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2328 gboolean fast UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2329 gpointer data UNUSED) |
7 | 2330 { |
2331 static const char suffix[] = "-session.vim"; | |
2332 char *session_file; | |
2333 unsigned int len; | |
2334 gboolean success; | |
2335 | |
2336 /* Always request an interaction if possible. check_changed_any() | |
2337 * won't actually show a dialog unless any buffers have been modified. | |
2338 * There doesn't seem to be an obvious way to check that without | |
2339 * automatically firing the dialog. Anyway, it works just fine. */ | |
2340 if (interact_style == GNOME_INTERACT_ANY) | |
2341 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL, | |
2342 &sm_client_check_changed_any, | |
2343 NULL); | |
2344 out_flush(); | |
2345 ml_sync_all(FALSE, FALSE); /* preserve all swap files */ | |
2346 | |
2347 /* The path is unique for each session save. We do neither know nor care | |
2348 * which session script will actually be used later. This decision is in | |
2349 * the domain of the session manager. */ | |
2350 session_file = gnome_config_get_real_path( | |
2351 gnome_client_get_config_prefix(client)); | |
2352 len = strlen(session_file); | |
2353 | |
2354 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR) | |
2355 --len; /* get rid of the superfluous trailing '/' */ | |
2356 | |
2357 session_file = g_renew(char, session_file, len + sizeof(suffix)); | |
2358 memcpy(session_file + len, suffix, sizeof(suffix)); | |
2359 | |
2360 success = write_session_file((char_u *)session_file); | |
2361 | |
2362 if (success) | |
2363 { | |
2364 const char *argv[8]; | |
2365 int i; | |
2366 | |
2367 /* Tell the session manager how to wipe out the stored session data. | |
2368 * This isn't as dangerous as it looks, don't worry :) session_file | |
2369 * is a unique absolute filename. Usually it'll be something like | |
2370 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */ | |
2371 i = 0; | |
2372 argv[i++] = "rm"; | |
2373 argv[i++] = session_file; | |
2374 argv[i] = NULL; | |
2375 | |
2376 gnome_client_set_discard_command(client, i, (char **)argv); | |
2377 | |
2378 /* Tell the session manager how to restore the just saved session. | |
2379 * This is easily done thanks to Vim's -S option. Pass the -f flag | |
2380 * since there's no need to fork -- it might even cause confusion. | |
2381 * Also pass the window role to give the WM something to match on. | |
2382 * The role is set in gui_mch_open(), thus should _never_ be NULL. */ | |
2383 i = 0; | |
2384 argv[i++] = restart_command; | |
2385 argv[i++] = "-f"; | |
2386 argv[i++] = "-g"; | |
2387 argv[i++] = "--role"; | |
2388 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin)); | |
2389 argv[i++] = "-S"; | |
2390 argv[i++] = session_file; | |
2391 argv[i] = NULL; | |
2392 | |
2393 gnome_client_set_restart_command(client, i, (char **)argv); | |
2394 gnome_client_set_clone_command(client, 0, NULL); | |
2395 } | |
2396 | |
2397 g_free(session_file); | |
2398 | |
2399 return success; | |
2400 } | |
2401 | |
2402 /* | |
2403 * Called when the session manager wants us to die. There isn't much to save | |
2404 * here since "save_yourself" has been emitted before (unless serious trouble | |
2405 * is happening). | |
2406 */ | |
2407 static void | |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2408 sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED) |
7 | 2409 { |
2410 /* Don't write messages to the GUI anymore */ | |
2411 full_screen = FALSE; | |
2412 | |
1666 | 2413 vim_strncpy(IObuff, (char_u *) |
419 | 2414 _("Vim: Received \"die\" request from session manager\n"), |
1666 | 2415 IOSIZE - 1); |
7 | 2416 preserve_exit(); |
2417 } | |
2418 | |
2419 /* | |
2420 * Connect our signal handlers to be notified on session save and shutdown. | |
2421 */ | |
2422 static void | |
2423 setup_save_yourself(void) | |
2424 { | |
2425 GnomeClient *client; | |
2426 | |
2427 client = gnome_master_client(); | |
2428 | |
2429 if (client != NULL) | |
2430 { | |
2431 /* Must use the deprecated gtk_signal_connect() for compatibility | |
2432 * with GNOME 1. Arrgh, zombies! */ | |
2433 gtk_signal_connect(GTK_OBJECT(client), "save_yourself", | |
2434 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL); | |
2435 gtk_signal_connect(GTK_OBJECT(client), "die", | |
2436 GTK_SIGNAL_FUNC(&sm_client_die), NULL); | |
2437 } | |
2438 } | |
2439 | |
2440 #else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */ | |
2441 | |
2442 # ifdef USE_XSMP | |
2443 /* | |
2444 * GTK tells us that XSMP needs attention | |
2445 */ | |
2446 static gboolean | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2447 local_xsmp_handle_requests( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2448 GIOChannel *source UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2449 GIOCondition condition, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2450 gpointer data) |
7 | 2451 { |
2452 if (condition == G_IO_IN) | |
2453 { | |
2454 /* Do stuff; maybe close connection */ | |
2455 if (xsmp_handle_requests() == FAIL) | |
2456 g_io_channel_unref((GIOChannel *)data); | |
2457 return TRUE; | |
2458 } | |
2459 /* Error */ | |
2460 g_io_channel_unref((GIOChannel *)data); | |
2461 xsmp_close(); | |
2462 return TRUE; | |
2463 } | |
2464 # endif /* USE_XSMP */ | |
2465 | |
2466 /* | |
2467 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event. | |
2468 * This is an ugly use of X functions. GTK doesn't offer an alternative. | |
2469 */ | |
2470 static void | |
2471 setup_save_yourself(void) | |
2472 { | |
2473 Atom *existing_atoms = NULL; | |
2474 int count = 0; | |
2475 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2476 # ifdef USE_XSMP |
7 | 2477 if (xsmp_icefd != -1) |
2478 { | |
2479 /* | |
2480 * Use XSMP is preference to legacy WM_SAVE_YOURSELF; | |
2481 * set up GTK IO monitor | |
2482 */ | |
2483 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd); | |
2484 | |
2485 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP, | |
2486 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
|
2487 g_io_channel_unref(g_io); |
7 | 2488 } |
2489 else | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2490 # endif |
7 | 2491 { |
2492 /* Fall back to old method */ | |
2493 | |
2494 /* first get the existing value */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2495 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
|
2496 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2497 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
|
2498 GDK_WINDOW_XID(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2499 &existing_atoms, &count)) |
7 | 2500 { |
2501 Atom *new_atoms; | |
2502 Atom save_yourself_xatom; | |
2503 int i; | |
2504 | |
2505 save_yourself_xatom = GET_X_ATOM(save_yourself_atom); | |
2506 | |
2507 /* check if WM_SAVE_YOURSELF isn't there yet */ | |
2508 for (i = 0; i < count; ++i) | |
2509 if (existing_atoms[i] == save_yourself_xatom) | |
2510 break; | |
2511 | |
2512 if (i == count) | |
2513 { | |
2514 /* allocate an Atoms array which is one item longer */ | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2515 new_atoms = ALLOC_MULT(Atom, count + 1); |
7 | 2516 if (new_atoms != NULL) |
2517 { | |
2518 memcpy(new_atoms, existing_atoms, count * sizeof(Atom)); | |
2519 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
|
2520 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2521 GDK_WINDOW_XID(mainwin_win), |
7 | 2522 new_atoms, count + 1); |
2523 vim_free(new_atoms); | |
2524 } | |
2525 } | |
2526 XFree(existing_atoms); | |
2527 } | |
2528 } | |
2529 } | |
2530 | |
2531 /* | |
2532 * Installing a global event filter seems to be the only way to catch | |
2533 * client messages of type WM_PROTOCOLS without overriding GDK's own | |
2534 * client message event filter. Well, that's still better than trying | |
2535 * to guess what the GDK filter had done if it had been invoked instead | |
2536 * | |
2537 * GTK2_FIXME: This doesn't seem to work. For some reason we never | |
2538 * receive WM_SAVE_YOURSELF even though everything is set up correctly. | |
2539 * I have the nasty feeling modern session managers just don't send this | |
2540 * deprecated message anymore. Addition: confirmed by several people. | |
2541 * | |
2542 * The GNOME session support is much cooler anyway. Unlike this ugly | |
2543 * WM_SAVE_YOURSELF hack it actually stores the session... And yes, | |
2544 * it should work with KDE as well. | |
2545 */ | |
2546 static GdkFilterReturn | |
1884 | 2547 global_event_filter(GdkXEvent *xev, |
2548 GdkEvent *event UNUSED, | |
2549 gpointer data UNUSED) | |
7 | 2550 { |
2551 XEvent *xevent = (XEvent *)xev; | |
2552 | |
2553 if (xevent != NULL | |
2554 && xevent->type == ClientMessage | |
2555 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom) | |
1884 | 2556 && (long_u)xevent->xclient.data.l[0] |
2557 == GET_X_ATOM(save_yourself_atom)) | |
7 | 2558 { |
2559 out_flush(); | |
2560 ml_sync_all(FALSE, FALSE); /* preserve all swap files */ | |
2561 /* | |
2562 * Set the window's WM_COMMAND property, to let the window manager | |
2563 * know we are done saving ourselves. We don't want to be | |
2564 * restarted, thus set argv to NULL. | |
2565 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2566 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
|
2567 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)), |
7 | 2568 NULL, 0); |
2569 return GDK_FILTER_REMOVE; | |
2570 } | |
2571 | |
2572 return GDK_FILTER_CONTINUE; | |
2573 } | |
2574 #endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */ | |
2575 | |
2576 | |
2577 /* | |
2578 * Setup the window icon & xcmdsrv comm after the main window has been realized. | |
2579 */ | |
2580 static void | |
1884 | 2581 mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED) |
7 | 2582 { |
2583 /* If you get an error message here, you still need to unpack the runtime | |
2584 * archive! */ | |
2585 #ifdef magick | |
2586 # undef magick | |
2587 #endif | |
2588 /* A bit hackish, but avoids casting later and allows optimization */ | |
2589 # define static static const | |
2590 #define magick vim32x32 | |
2591 #include "../runtime/vim32x32.xpm" | |
2592 #undef magick | |
2593 #define magick vim16x16 | |
2594 #include "../runtime/vim16x16.xpm" | |
2595 #undef magick | |
2596 #define magick vim48x48 | |
2597 #include "../runtime/vim48x48.xpm" | |
2598 #undef magick | |
2599 # undef static | |
2600 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2601 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
|
2602 |
7 | 2603 /* When started with "--echo-wid" argument, write window ID on stdout. */ |
2604 if (echo_wid_arg) | |
2605 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2606 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win)); |
7 | 2607 fflush(stdout); |
2608 } | |
2609 | |
2610 if (vim_strchr(p_go, GO_ICON) != NULL) | |
2611 { | |
2612 /* | |
2613 * Add an icon to the main window. For fun and convenience of the user. | |
2614 */ | |
2615 GList *icons = NULL; | |
2616 | |
2617 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16)); | |
2618 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32)); | |
2619 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48)); | |
2620 | |
2621 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons); | |
2622 | |
2623 g_list_foreach(icons, (GFunc)&g_object_unref, NULL); | |
2624 g_list_free(icons); | |
2625 } | |
2626 | |
2627 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) | |
2628 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */ | |
2629 gdk_window_add_filter(NULL, &global_event_filter, NULL); | |
2630 #endif | |
2631 /* Setup to indicate to the window manager that we want to catch the | |
2632 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session | |
2633 * manager instead. */ | |
2634 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) | |
2635 if (using_gnome) | |
2636 #endif | |
2637 setup_save_yourself(); | |
2638 | |
2639 #ifdef FEAT_CLIENTSERVER | |
2640 if (serverName == NULL && serverDelayedStartName != NULL) | |
2641 { | |
2642 /* 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
|
2643 commWindow = GDK_WINDOW_XID(mainwin_win); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2644 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2645 (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
|
2646 serverDelayedStartName); |
7 | 2647 } |
2648 else | |
2649 { | |
2650 /* | |
2651 * Cannot handle "XLib-only" windows with gtk event routines, we'll | |
2652 * have to change the "server" registration to that of the main window | |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2653 * If we have not registered a name yet, remember the window. |
7 | 2654 */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2655 serverChangeRegisteredWindow(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)); |
7 | 2657 } |
2658 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
|
2659 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
|
2660 G_CALLBACK(property_event), NULL); |
7 | 2661 #endif |
2662 } | |
2663 | |
2664 static GdkCursor * | |
2665 create_blank_pointer(void) | |
2666 { | |
2667 GdkWindow *root_window = NULL; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2668 #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
|
2669 GdkPixbuf *blank_mask; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2670 #else |
7 | 2671 GdkPixmap *blank_mask; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2672 #endif |
7 | 2673 GdkCursor *cursor; |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2674 #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
|
2675 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
|
2676 #else |
7 | 2677 GdkColor color = { 0, 0, 0, 0 }; |
2678 char blank_data[] = { 0x0 }; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2679 #endif |
7 | 2680 |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2681 #if GTK_CHECK_VERSION(3,12,0) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2682 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2683 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
|
2684 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
|
2685 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
|
2686 } |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2687 #else |
7 | 2688 root_window = gtk_widget_get_root_window(gui.mainwin); |
2689 #endif | |
2690 | |
2691 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel | |
2692 * in size. */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2693 #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
|
2694 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2695 cairo_surface_t *surf; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2696 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2697 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2698 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
|
2699 cr = cairo_create(surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2700 |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2701 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2702 color.red, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2703 color.green, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2704 color.blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2705 color.alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2706 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
|
2707 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2708 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2709 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2710 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
|
2711 cairo_surface_destroy(surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2712 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2713 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
|
2714 blank_mask, 0, 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2715 g_object_unref(blank_mask); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2716 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2717 #else |
7 | 2718 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1); |
2719 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask, | |
2720 &color, &color, 0, 0); | |
2721 gdk_bitmap_unref(blank_mask); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2722 #endif |
7 | 2723 |
2724 return cursor; | |
2725 } | |
2726 | |
2727 static void | |
2728 mainwin_screen_changed_cb(GtkWidget *widget, | |
1884 | 2729 GdkScreen *previous_screen UNUSED, |
2730 gpointer data UNUSED) | |
7 | 2731 { |
2732 if (!gtk_widget_has_screen(widget)) | |
2733 return; | |
2734 | |
2735 /* | |
1226 | 2736 * Recreate the invisible mouse cursor. |
7 | 2737 */ |
2738 if (gui.blank_pointer != NULL) | |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2739 #if GTK_CHECK_VERSION(3,0,0) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2740 g_object_unref(G_OBJECT(gui.blank_pointer)); |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2741 #else |
7 | 2742 gdk_cursor_unref(gui.blank_pointer); |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2743 #endif |
7 | 2744 |
2745 gui.blank_pointer = create_blank_pointer(); | |
2746 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2747 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
|
2748 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
|
2749 gui.blank_pointer); |
7 | 2750 |
2751 /* | |
2752 * Create a new PangoContext for this screen, and initialize it | |
2753 * with the current font if necessary. | |
2754 */ | |
2755 if (gui.text_context != NULL) | |
2756 g_object_unref(gui.text_context); | |
2757 | |
2758 gui.text_context = gtk_widget_create_pango_context(widget); | |
2759 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); | |
2760 | |
2761 if (gui.norm_font != NULL) | |
2762 { | |
38 | 2763 gui_mch_init_font(p_guifont, FALSE); |
12802
29a728529f92
patch 8.0.1278: GUI window always resizes when adding scrollbar
Christian Brabandt <cb@256bit.org>
parents:
12666
diff
changeset
|
2764 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH); |
7 | 2765 } |
2766 } | |
2767 | |
2768 /* | |
2769 * After the drawing area comes up, we calculate all colors and create the | |
2770 * dummy blank cursor. | |
2771 * | |
2772 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the | |
2773 * fact that the main VIM engine doesn't take them into account anywhere. | |
2774 */ | |
2775 static void | |
1884 | 2776 drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED) |
7 | 2777 { |
2778 GtkWidget *sbar; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2779 GtkAllocation allocation; |
7 | 2780 |
2781 #ifdef FEAT_XIM | |
2782 xim_init(); | |
2783 #endif | |
2784 gui_mch_new_colors(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2785 #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
|
2786 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
|
2787 gtk_widget_get_window(widget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2788 CAIRO_CONTENT_COLOR_ALPHA, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2789 gtk_widget_get_allocated_width(widget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2790 gtk_widget_get_allocated_height(widget)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2791 #else |
7 | 2792 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
|
2793 #endif |
7 | 2794 |
2795 gui.blank_pointer = create_blank_pointer(); | |
2796 if (gui.pointer_hidden) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2797 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer); |
7 | 2798 |
2799 /* get the actual size of the scrollbars, if they are realized */ | |
2800 sbar = firstwin->w_scrollbars[SBAR_LEFT].id; | |
2801 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT] | |
2802 && firstwin->w_scrollbars[SBAR_RIGHT].id)) | |
2803 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
|
2804 gtk_widget_get_allocation(sbar, &allocation); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2805 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
|
2806 gui.scrollbar_width = allocation.width; |
7 | 2807 |
2808 sbar = gui.bottom_sbar.id; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2809 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
|
2810 gui.scrollbar_height = allocation.height; |
7 | 2811 } |
2812 | |
2813 /* | |
2814 * Properly clean up on shutdown. | |
2815 */ | |
2816 static void | |
1884 | 2817 drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED) |
7 | 2818 { |
2819 /* Don't write messages to the GUI anymore */ | |
2820 full_screen = FALSE; | |
2821 | |
2822 #ifdef FEAT_XIM | |
2823 im_shutdown(); | |
2824 #endif | |
2825 if (gui.ascii_glyphs != NULL) | |
2826 { | |
2827 pango_glyph_string_free(gui.ascii_glyphs); | |
2828 gui.ascii_glyphs = NULL; | |
2829 } | |
2830 if (gui.ascii_font != NULL) | |
2831 { | |
2832 g_object_unref(gui.ascii_font); | |
2833 gui.ascii_font = NULL; | |
2834 } | |
2835 g_object_unref(gui.text_context); | |
2836 gui.text_context = NULL; | |
2837 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2838 #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
|
2839 if (gui.surface != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2840 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2841 cairo_surface_destroy(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2842 gui.surface = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2843 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2844 #else |
7 | 2845 g_object_unref(gui.text_gc); |
2846 gui.text_gc = NULL; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2847 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2848 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2849 #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
|
2850 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
|
2851 #else |
7 | 2852 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
|
2853 #endif |
7 | 2854 gui.blank_pointer = NULL; |
2855 } | |
2856 | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2857 #if GTK_CHECK_VERSION(3,22,2) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2858 static void |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2859 drawarea_style_updated_cb(GtkWidget *widget UNUSED, |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2860 gpointer data UNUSED) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2861 #else |
7 | 2862 static void |
1884 | 2863 drawarea_style_set_cb(GtkWidget *widget UNUSED, |
2864 GtkStyle *previous_style UNUSED, | |
2865 gpointer data UNUSED) | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2866 #endif |
7 | 2867 { |
2868 gui_mch_new_colors(); | |
2869 } | |
2870 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2871 #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
|
2872 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2873 drawarea_configure_event_cb(GtkWidget *widget, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2874 GdkEventConfigure *event, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2875 gpointer data UNUSED) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2876 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2877 static int cur_width = 0; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2878 static int cur_height = 0; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2879 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2880 g_return_val_if_fail(event |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2881 && 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
|
2882 |
10402
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
2883 # if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4) |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2884 /* As of 3.22.2, GdkWindows have started distributing configure events to |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2885 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0). |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2886 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2887 * As can be seen from the implementation of move_native_children() and |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2888 * configure_native_child() in gdkwindow.c, those functions actually |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2889 * propagate configure events to every child, failing to distinguish |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2890 * "native" one from non-native one. |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2891 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2892 * Naturally, configure events propagated to here like that are fallacious |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2893 * and, as a matter of fact, they trigger a geometric collapse of |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2894 * gui.drawarea in fullscreen and miximized modes. |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2895 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2896 * To filter out such nuisance events, we are making use of the fact that |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2897 * the field send_event of such GdkEventConfigures is set to FALSE in |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2898 * configure_native_child(). |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2899 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2900 * Obviously, this is a terrible hack making GVim depend on GTK's |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2901 * implementation details. Therefore, watch out any relevant internal |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2902 * changes happening in GTK in the feature (sigh). |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2903 */ |
10402
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
2904 /* Follow-up |
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
2905 * After a few weeks later, the GdkWindow change mentioned above was |
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
2906 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155). |
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
2907 * The corresponding official release is 3.22.4. */ |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2908 if (event->send_event == FALSE) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2909 return TRUE; |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2910 # endif |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2911 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2912 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
|
2913 return TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2914 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2915 cur_width = event->width; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2916 cur_height = event->height; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2917 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2918 if (gui.surface != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2919 cairo_surface_destroy(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2920 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2921 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
|
2922 gtk_widget_get_window(widget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2923 CAIRO_CONTENT_COLOR_ALPHA, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2924 event->width, event->height); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2925 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2926 gtk_widget_queue_draw(widget); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2927 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2928 return TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2929 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2930 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2931 |
7 | 2932 /* |
2933 * Callback routine for the "delete_event" signal on the toplevel window. | |
2934 * Tries to vim gracefully, or refuses to exit with changed buffers. | |
2935 */ | |
2936 static gint | |
1884 | 2937 delete_event_cb(GtkWidget *widget UNUSED, |
2938 GdkEventAny *event UNUSED, | |
2939 gpointer data UNUSED) | |
7 | 2940 { |
2941 gui_shell_closed(); | |
2942 return TRUE; | |
2943 } | |
2944 | |
685 | 2945 #if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE) |
2946 static int | |
2947 get_item_dimensions(GtkWidget *widget, GtkOrientation orientation) | |
2948 { | |
10767
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
2949 # ifdef FEAT_GUI_GNOME |
685 | 2950 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL; |
2951 | |
2952 if (using_gnome && widget != NULL) | |
2953 { | |
856 | 2954 GtkWidget *parent; |
685 | 2955 BonoboDockItem *dockitem; |
2956 | |
791 | 2957 parent = gtk_widget_get_parent(widget); |
856 | 2958 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM) |
2959 { | |
2960 /* Only menu & toolbar are dock items. Could tabline be? | |
2961 * Seem to be only the 2 defined in GNOME */ | |
2962 widget = parent; | |
2963 dockitem = BONOBO_DOCK_ITEM(widget); | |
2964 | |
2965 if (dockitem == NULL || dockitem->is_floating) | |
2966 return 0; | |
2967 item_orientation = bonobo_dock_item_get_orientation(dockitem); | |
2968 } | |
685 | 2969 } |
10767
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
2970 # else |
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
2971 # define item_orientation GTK_ORIENTATION_HORIZONTAL |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2972 # endif |
10767
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
2973 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2974 if (widget != NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2975 && item_orientation == orientation |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2976 && gtk_widget_get_realized(widget) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2977 && gtk_widget_get_visible(widget)) |
14786
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
2978 { |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
2979 # if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2980 GtkAllocation allocation; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2981 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2982 gtk_widget_get_allocation(widget, &allocation); |
10767
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
2983 return allocation.height; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2984 # else |
685 | 2985 if (orientation == GTK_ORIENTATION_HORIZONTAL) |
2986 return widget->allocation.height; | |
2987 else | |
2988 return widget->allocation.width; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2989 # endif |
685 | 2990 } |
2991 return 0; | |
2992 } | |
2993 #endif | |
2994 | |
2995 static int | |
2996 get_menu_tool_width(void) | |
2997 { | |
2998 int width = 0; | |
2999 | |
3000 #ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */ | |
3001 # ifdef FEAT_MENU | |
3002 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL); | |
3003 # endif | |
3004 # ifdef FEAT_TOOLBAR | |
3005 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL); | |
3006 # endif | |
3007 # ifdef FEAT_GUI_TABLINE | |
782 | 3008 if (gui.tabline != NULL) |
3009 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL); | |
685 | 3010 # endif |
3011 #endif | |
3012 | |
3013 return width; | |
3014 } | |
3015 | |
3016 static int | |
3017 get_menu_tool_height(void) | |
3018 { | |
3019 int height = 0; | |
3020 | |
3021 #ifdef FEAT_MENU | |
3022 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL); | |
3023 #endif | |
3024 #ifdef FEAT_TOOLBAR | |
3025 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL); | |
3026 #endif | |
3027 #ifdef FEAT_GUI_TABLINE | |
782 | 3028 if (gui.tabline != NULL) |
3029 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL); | |
685 | 3030 #endif |
3031 | |
3032 return height; | |
3033 } | |
3034 | |
791 | 3035 /* This controls whether we can set the real window hints at |
3036 * start-up when in a GtkPlug. | |
3037 * 0 = normal processing (default) | |
3038 * 1 = init. hints set, no-one's tried to reset since last check | |
3039 * 2 = init. hints set, attempt made to change hints | |
3040 */ | |
3041 static int init_window_hints_state = 0; | |
3042 | |
685 | 3043 static void |
791 | 3044 update_window_manager_hints(int force_width, int force_height) |
685 | 3045 { |
3046 static int old_width = 0; | |
3047 static int old_height = 0; | |
791 | 3048 static int old_min_width = 0; |
3049 static int old_min_height = 0; | |
685 | 3050 static int old_char_width = 0; |
3051 static int old_char_height = 0; | |
3052 | |
3053 int width; | |
3054 int height; | |
791 | 3055 int min_width; |
3056 int min_height; | |
3057 | |
3058 /* At start-up, don't try to set the hints until the initial | |
3059 * values have been used (those that dictate our initial size) | |
1884 | 3060 * Let forced (i.e., correct) values through always. |
791 | 3061 */ |
3062 if (!(force_width && force_height) && init_window_hints_state > 0) | |
3063 { | |
856 | 3064 /* Don't do it! */ |
3065 init_window_hints_state = 2; | |
3066 return; | |
791 | 3067 } |
685 | 3068 |
3069 /* This also needs to be done when the main window isn't there yet, | |
3070 * otherwise the hints don't work. */ | |
3071 width = gui_get_base_width(); | |
3072 height = gui_get_base_height(); | |
3073 # ifdef FEAT_MENU | |
3074 height += tabline_height() * gui.char_height; | |
3075 # endif | |
3076 width += get_menu_tool_width(); | |
3077 height += get_menu_tool_height(); | |
3078 | |
791 | 3079 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine |
1226 | 3080 * their actual widget size. When we set our size ourselves (e.g., |
791 | 3081 * 'set columns=' or init. -geom) we briefly set the min. to the size |
3082 * we wish to be instead of the legitimate minimum so that we actually | |
3083 * resize correctly. | |
3084 */ | |
3085 if (force_width && force_height) | |
3086 { | |
856 | 3087 min_width = force_width; |
3088 min_height = force_height; | |
791 | 3089 } |
3090 else | |
3091 { | |
856 | 3092 min_width = width + MIN_COLUMNS * gui.char_width; |
3093 min_height = height + MIN_LINES * gui.char_height; | |
791 | 3094 } |
3095 | |
685 | 3096 /* Avoid an expose event when the size didn't change. */ |
3097 if (width != old_width | |
3098 || height != old_height | |
856 | 3099 || min_width != old_min_width |
791 | 3100 || min_height != old_min_height |
685 | 3101 || gui.char_width != old_char_width |
3102 || gui.char_height != old_char_height) | |
3103 { | |
3104 GdkGeometry geometry; | |
3105 GdkWindowHints geometry_mask; | |
3106 | |
3107 geometry.width_inc = gui.char_width; | |
3108 geometry.height_inc = gui.char_height; | |
3109 geometry.base_width = width; | |
3110 geometry.base_height = height; | |
856 | 3111 geometry.min_width = min_width; |
3112 geometry.min_height = min_height; | |
685 | 3113 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC |
3114 |GDK_HINT_MIN_SIZE; | |
3115 /* Using gui.formwin as geometry widget doesn't work as expected | |
3116 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks | |
3117 * in Vim confuse GTK+. */ | |
3118 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin, | |
3119 &geometry, geometry_mask); | |
856 | 3120 old_width = width; |
3121 old_height = height; | |
3122 old_min_width = min_width; | |
3123 old_min_height = min_height; | |
3124 old_char_width = gui.char_width; | |
3125 old_char_height = gui.char_height; | |
685 | 3126 } |
3127 } | |
3128 | |
7 | 3129 #ifdef FEAT_TOOLBAR |
3130 | |
3131 /* | |
3132 * This extra effort wouldn't be necessary if we only used stock icons in the | |
3133 * toolbar, as we do for all builtin icons. But user-defined toolbar icons | |
3134 * shouldn't be treated differently, thus we do need this. | |
3135 */ | |
3136 static void | |
3137 icon_size_changed_foreach(GtkWidget *widget, gpointer user_data) | |
3138 { | |
3139 if (GTK_IS_IMAGE(widget)) | |
3140 { | |
3141 GtkImage *image = (GtkImage *)widget; | |
3142 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3143 # 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
|
3144 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
|
3145 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3146 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
|
3147 const gchar *icon_name; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3148 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3149 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
|
3150 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3151 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
|
3152 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3153 # else |
7 | 3154 /* User-defined icons are stored in a GtkIconSet */ |
3155 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET) | |
3156 { | |
3157 GtkIconSet *icon_set; | |
3158 GtkIconSize icon_size; | |
3159 | |
3160 gtk_image_get_icon_set(image, &icon_set, &icon_size); | |
3161 icon_size = (GtkIconSize)(long)user_data; | |
3162 | |
3163 gtk_icon_set_ref(icon_set); | |
3164 gtk_image_set_from_icon_set(image, icon_set, icon_size); | |
3165 gtk_icon_set_unref(icon_set); | |
3166 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3167 # endif |
7 | 3168 } |
3169 else if (GTK_IS_CONTAINER(widget)) | |
3170 { | |
3171 gtk_container_foreach((GtkContainer *)widget, | |
3172 &icon_size_changed_foreach, | |
3173 user_data); | |
3174 } | |
3175 } | |
3176 | |
3177 static void | |
3178 set_toolbar_style(GtkToolbar *toolbar) | |
3179 { | |
3180 GtkToolbarStyle style; | |
3181 GtkIconSize size; | |
3182 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
|
3183 |
7 | 3184 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
3185 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) | |
3186 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
|
3187 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
7 | 3188 == (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
3189 style = GTK_TOOLBAR_BOTH; | |
3190 else if (toolbar_flags & TOOLBAR_TEXT) | |
3191 style = GTK_TOOLBAR_TEXT; | |
3192 else | |
3193 style = GTK_TOOLBAR_ICONS; | |
3194 | |
3195 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
|
3196 # if !GTK_CHECK_VERSION(3,0,0) |
7 | 3197 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
|
3198 # endif |
7 | 3199 |
3200 switch (tbis_flags) | |
3201 { | |
3202 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break; | |
3203 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break; | |
3204 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break; | |
3205 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
|
3206 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
|
3207 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break; |
7 | 3208 default: size = GTK_ICON_SIZE_INVALID; break; |
3209 } | |
3210 oldsize = gtk_toolbar_get_icon_size(toolbar); | |
3211 | |
3212 if (size == GTK_ICON_SIZE_INVALID) | |
3213 { | |
3214 /* Let global user preferences decide the icon size. */ | |
3215 gtk_toolbar_unset_icon_size(toolbar); | |
3216 size = gtk_toolbar_get_icon_size(toolbar); | |
3217 } | |
3218 if (size != oldsize) | |
3219 { | |
3220 gtk_container_foreach(GTK_CONTAINER(toolbar), | |
3221 &icon_size_changed_foreach, | |
3222 GINT_TO_POINTER((int)size)); | |
3223 } | |
3224 gtk_toolbar_set_icon_size(toolbar, size); | |
3225 } | |
3226 | |
3227 #endif /* FEAT_TOOLBAR */ | |
3228 | |
685 | 3229 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
3230 static int ignore_tabline_evt = FALSE; | |
689 | 3231 static GtkWidget *tabline_menu; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3232 # if !GTK_CHECK_VERSION(3,0,0) |
846 | 3233 static GtkTooltips *tabline_tooltip; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3234 # endif |
689 | 3235 static int clicked_page; /* page clicked in tab line */ |
3236 | |
3237 /* | |
3238 * Handle selecting an item in the tab line popup menu. | |
3239 */ | |
3240 static void | |
1884 | 3241 tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data) |
689 | 3242 { |
3243 /* Add the string cmd into input buffer */ | |
824 | 3244 send_tabline_menu_event(clicked_page, (int)(long)user_data); |
689 | 3245 } |
3246 | |
851 | 3247 static void |
3248 add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp) | |
3249 { | |
3250 GtkWidget *item; | |
3251 char_u *utf_text; | |
3252 | |
3253 utf_text = CONVERT_TO_UTF8(text); | |
3254 item = gtk_menu_item_new_with_label((const char *)utf_text); | |
3255 gtk_widget_show(item); | |
3256 CONVERT_TO_UTF8_FREE(utf_text); | |
3257 | |
3258 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
|
3259 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
|
3260 G_CALLBACK(tabline_menu_handler), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3261 GINT_TO_POINTER(resp)); |
851 | 3262 } |
3263 | |
689 | 3264 /* |
3265 * Create a menu for the tab line. | |
3266 */ | |
3267 static GtkWidget * | |
3268 create_tabline_menu(void) | |
3269 { | |
851 | 3270 GtkWidget *menu; |
689 | 3271 |
3272 menu = gtk_menu_new(); | |
15134
f2972ff144ab
patch 8.1.0577: tabpage right-click menu never shows "Close tab"
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
3273 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE); |
851 | 3274 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW); |
3275 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN); | |
689 | 3276 |
3277 return menu; | |
3278 } | |
3279 | |
3280 static gboolean | |
3281 on_tabline_menu(GtkWidget *widget, GdkEvent *event) | |
3282 { | |
3283 /* Was this button press event ? */ | |
3284 if (event->type == GDK_BUTTON_PRESS) | |
3285 { | |
3286 GdkEventButton *bevent = (GdkEventButton *)event; | |
3287 int x = bevent->x; | |
851 | 3288 int y = bevent->y; |
3289 GtkWidget *tabwidget; | |
3290 GdkWindow *tabwin; | |
689 | 3291 |
844 | 3292 /* When ignoring events return TRUE so that the selected page doesn't |
3293 * change. */ | |
3294 if (hold_gui_events | |
3295 # ifdef FEAT_CMDWIN | |
3296 || cmdwin_type != 0 | |
3297 # endif | |
3298 ) | |
3299 return TRUE; | |
3300 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3301 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
|
3302 |
851 | 3303 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
|
3304 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
|
3305 "tab_num")); |
689 | 3306 |
3307 /* If the event was generated for 3rd button popup the menu. */ | |
3308 if (bevent->button == 3) | |
3309 { | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3310 # if GTK_CHECK_VERSION(3,22,2) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3311 gtk_menu_popup_at_pointer(GTK_MENU(widget), event); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3312 # else |
689 | 3313 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL, |
3314 bevent->button, bevent->time); | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3315 # endif |
689 | 3316 /* We handled the event. */ |
3317 return TRUE; | |
3318 } | |
868 | 3319 else if (bevent->button == 1) |
693 | 3320 { |
868 | 3321 if (clicked_page == 0) |
3322 { | |
1394 | 3323 /* Click after all tabs moves to next tab page. When "x" is |
3324 * 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
|
3325 send_tabline_event(x < 50 ? -1 : 0); |
868 | 3326 } |
693 | 3327 } |
689 | 3328 } |
844 | 3329 |
689 | 3330 /* We didn't handle the event. */ |
3331 return FALSE; | |
3332 } | |
685 | 3333 |
3334 /* | |
3335 * Handle selecting one of the tabs. | |
3336 */ | |
3337 static void | |
3338 on_select_tab( | |
1884 | 3339 GtkNotebook *notebook UNUSED, |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3340 gpointer *page UNUSED, |
944 | 3341 gint idx, |
1884 | 3342 gpointer data UNUSED) |
685 | 3343 { |
3344 if (!ignore_tabline_evt) | |
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
|
3345 send_tabline_event(idx + 1); |
12666
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3346 } |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3347 |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3348 # if GTK_CHECK_VERSION(2,10,0) |
12666
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3349 /* |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3350 * Handle reordering the tabs (using D&D). |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3351 */ |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3352 static void |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3353 on_tab_reordered( |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3354 GtkNotebook *notebook UNUSED, |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3355 gpointer *page UNUSED, |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3356 gint idx, |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3357 gpointer data UNUSED) |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3358 { |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3359 if (!ignore_tabline_evt) |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3360 { |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3361 if ((tabpage_index(curtab) - 1) < idx) |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3362 tabpage_move(idx + 1); |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3363 else |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3364 tabpage_move(idx); |
693 | 3365 } |
685 | 3366 } |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3367 # endif |
685 | 3368 |
3369 /* | |
3370 * Show or hide the tabline. | |
3371 */ | |
3372 void | |
3373 gui_mch_show_tabline(int showit) | |
3374 { | |
3375 if (gui.tabline == NULL) | |
3376 return; | |
3377 | |
3378 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline))) | |
3379 { | |
708 | 3380 /* Note: this may cause a resize event */ |
685 | 3381 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit); |
791 | 3382 update_window_manager_hints(0, 0); |
868 | 3383 if (showit) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3384 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE); |
868 | 3385 } |
3386 | |
3387 gui_mch_update(); | |
685 | 3388 } |
3389 | |
3390 /* | |
708 | 3391 * Return TRUE when tabline is displayed. |
3392 */ | |
3393 int | |
3394 gui_mch_showing_tabline(void) | |
3395 { | |
3396 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
|
3397 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)); |
708 | 3398 } |
3399 | |
3400 /* | |
685 | 3401 * Update the labels of the tabline. |
3402 */ | |
3403 void | |
3404 gui_mch_update_tabline(void) | |
3405 { | |
3406 GtkWidget *page; | |
846 | 3407 GtkWidget *event_box; |
685 | 3408 GtkWidget *label; |
3409 tabpage_T *tp; | |
3410 int nr = 0; | |
851 | 3411 int tab_num; |
685 | 3412 int curtabidx = 0; |
836 | 3413 char_u *labeltext; |
685 | 3414 |
3415 if (gui.tabline == NULL) | |
3416 return; | |
3417 | |
3418 ignore_tabline_evt = TRUE; | |
3419 | |
3420 /* Add a label for each tab page. They all contain the same text area. */ | |
3421 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) | |
3422 { | |
3423 if (tp == curtab) | |
3424 curtabidx = nr; | |
3425 | |
851 | 3426 tab_num = nr + 1; |
3427 | |
685 | 3428 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr); |
3429 if (page == NULL) | |
3430 { | |
3431 /* Add notebook page */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3432 # 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
|
3433 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
|
3434 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
|
3435 # else |
685 | 3436 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
|
3437 # endif |
685 | 3438 gtk_widget_show(page); |
846 | 3439 event_box = gtk_event_box_new(); |
3440 gtk_widget_show(event_box); | |
685 | 3441 label = gtk_label_new("-Empty-"); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3442 # if !GTK_CHECK_VERSION(3,14,0) |
851 | 3443 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
|
3444 # endif |
846 | 3445 gtk_container_add(GTK_CONTAINER(event_box), label); |
685 | 3446 gtk_widget_show(label); |
3447 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline), | |
3448 page, | |
846 | 3449 event_box, |
685 | 3450 nr++); |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3451 # if GTK_CHECK_VERSION(2,10,0) |
12666
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3452 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3453 page, |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3454 TRUE); |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3455 # endif |
685 | 3456 } |
3457 | |
846 | 3458 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
|
3459 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
|
3460 GINT_TO_POINTER(tab_num)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3461 label = gtk_bin_get_child(GTK_BIN(event_box)); |
839 | 3462 get_tabline_label(tp, FALSE); |
836 | 3463 labeltext = CONVERT_TO_UTF8(NameBuff); |
846 | 3464 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext); |
836 | 3465 CONVERT_TO_UTF8_FREE(labeltext); |
846 | 3466 |
3467 get_tabline_label(tp, TRUE); | |
3468 labeltext = CONVERT_TO_UTF8(NameBuff); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3469 # 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
|
3470 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
|
3471 # else |
846 | 3472 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box, |
3473 (const char *)labeltext, NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3474 # endif |
846 | 3475 CONVERT_TO_UTF8_FREE(labeltext); |
685 | 3476 } |
3477 | |
3478 /* Remove any old labels. */ | |
3479 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL) | |
3480 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr); | |
3481 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3482 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
|
3483 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx); |
685 | 3484 |
851 | 3485 /* Make sure everything is in place before drawing text. */ |
3486 gui_mch_update(); | |
3487 | |
685 | 3488 ignore_tabline_evt = FALSE; |
3489 } | |
3490 | |
3491 /* | |
3492 * Set the current tab to "nr". First tab is 1. | |
3493 */ | |
3494 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
3495 gui_mch_set_curtab(int nr) |
685 | 3496 { |
3497 if (gui.tabline == NULL) | |
3498 return; | |
3499 | |
3500 ignore_tabline_evt = TRUE; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3501 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
|
3502 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1); |
685 | 3503 ignore_tabline_evt = FALSE; |
3504 } | |
3505 | |
3506 #endif /* FEAT_GUI_TABLINE */ | |
3507 | |
7 | 3508 /* |
2183 | 3509 * Add selection targets for PRIMARY and CLIPBOARD selections. |
3510 */ | |
3511 void | |
3512 gui_gtk_set_selection_targets(void) | |
3513 { | |
3514 int i, j = 0; | |
3515 int n_targets = N_SELECTION_TARGETS; | |
3516 GtkTargetEntry targets[N_SELECTION_TARGETS]; | |
3517 | |
3518 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i) | |
3519 { | |
3518 | 3520 /* OpenOffice tries to use TARGET_HTML and fails when we don't |
2183 | 3521 * return something, instead of trying another target. Therefore only |
3522 * offer TARGET_HTML when it works. */ | |
3523 if (!clip_html && selection_targets[i].info == TARGET_HTML) | |
3524 n_targets--; | |
3525 else | |
3526 targets[j++] = selection_targets[i]; | |
3527 } | |
3528 | |
3529 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY); | |
3530 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom); | |
3531 gtk_selection_add_targets(gui.drawarea, | |
3532 (GdkAtom)GDK_SELECTION_PRIMARY, | |
3533 targets, n_targets); | |
3534 gtk_selection_add_targets(gui.drawarea, | |
3535 (GdkAtom)clip_plus.gtk_sel_atom, | |
3536 targets, n_targets); | |
3537 } | |
3538 | |
3539 /* | |
3540 * Set up for receiving DND items. | |
3541 */ | |
3542 void | |
3543 gui_gtk_set_dnd_targets(void) | |
3544 { | |
3545 int i, j = 0; | |
3546 int n_targets = N_DND_TARGETS; | |
3547 GtkTargetEntry targets[N_DND_TARGETS]; | |
3548 | |
3549 for (i = 0; i < (int)N_DND_TARGETS; ++i) | |
3550 { | |
3154 | 3551 if (!clip_html && dnd_targets[i].info == TARGET_HTML) |
2183 | 3552 n_targets--; |
3553 else | |
3554 targets[j++] = dnd_targets[i]; | |
3555 } | |
3556 | |
3557 gtk_drag_dest_unset(gui.drawarea); | |
3558 gtk_drag_dest_set(gui.drawarea, | |
3559 GTK_DEST_DEFAULT_ALL, | |
3560 targets, n_targets, | |
2718 | 3561 GDK_ACTION_COPY | GDK_ACTION_MOVE); |
2183 | 3562 } |
3563 | |
3564 /* | |
7 | 3565 * Initialize the GUI. Create all the windows, set up all the callbacks etc. |
3566 * Returns OK for success, FAIL when the GUI can't be started. | |
3567 */ | |
3568 int | |
3569 gui_mch_init(void) | |
3570 { | |
3571 GtkWidget *vbox; | |
3572 | |
3573 #ifdef FEAT_GUI_GNOME | |
3574 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init() | |
3575 * exits on failure, but that's a non-issue because we already called | |
3576 * gtk_init_check() in gui_mch_init_check(). */ | |
3577 if (using_gnome) | |
4045 | 3578 { |
7 | 3579 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT, |
3580 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL); | |
4045 | 3581 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC) |
5854 | 3582 { |
3583 char *p = setlocale(LC_NUMERIC, NULL); | |
3584 | |
3585 /* Make sure strtod() uses a decimal point, not a comma. Gnome | |
3586 * init may change it. */ | |
3587 if (p == NULL || strcmp(p, "C") != 0) | |
3588 setlocale(LC_NUMERIC, "C"); | |
3589 } | |
4045 | 3590 # endif |
3591 } | |
7 | 3592 #endif |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13152
diff
changeset
|
3593 VIM_CLEAR(gui_argv); |
7 | 3594 |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3595 #if GLIB_CHECK_VERSION(2,1,3) |
7 | 3596 /* Set the human-readable application name */ |
3597 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
|
3598 #endif |
7 | 3599 /* |
3600 * Force UTF-8 output no matter what the value of 'encoding' is. | |
3601 * did_set_string_option() in option.c prohibits changing 'termencoding' | |
3602 * to something else than UTF-8 if the GUI is in use. | |
3603 */ | |
3604 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0); | |
3605 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3606 #ifdef FEAT_TOOLBAR |
7 | 3607 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
|
3608 #endif |
7 | 3609 /* FIXME: Need to install the classic icons and a gtkrc.classic file. |
3610 * 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
|
3611 #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
|
3612 # if 0 |
7 | 3613 gtk_rc_parse("gtkrc"); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3614 # endif |
7 | 3615 #endif |
3616 | |
3617 /* Initialize values */ | |
3618 gui.border_width = 2; | |
3619 gui.scrollbar_width = SB_DEFAULT_WIDTH; | |
3620 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
|
3621 #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
|
3622 gui.fgcolor = g_new(GdkRGBA, 1); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3623 gui.bgcolor = g_new(GdkRGBA, 1); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3624 gui.spcolor = g_new(GdkRGBA, 1); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3625 #else |
136 | 3626 /* LINTED: avoid warning: conversion to 'unsigned long' */ |
7 | 3627 gui.fgcolor = g_new0(GdkColor, 1); |
136 | 3628 /* LINTED: avoid warning: conversion to 'unsigned long' */ |
7 | 3629 gui.bgcolor = g_new0(GdkColor, 1); |
207 | 3630 /* LINTED: avoid warning: conversion to 'unsigned long' */ |
3631 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
|
3632 #endif |
7 | 3633 |
3634 /* Initialise atoms */ | |
1904 | 3635 html_atom = gdk_atom_intern("text/html", FALSE); |
7 | 3636 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE); |
3637 | |
3638 /* Set default foreground and background colors. */ | |
3639 gui.norm_pixel = gui.def_norm_pixel; | |
3640 gui.back_pixel = gui.def_back_pixel; | |
3641 | |
3642 if (gtk_socket_id != 0) | |
3643 { | |
3644 GtkWidget *plug; | |
3645 | |
3646 /* Use GtkSocket from another app. */ | |
3647 plug = gtk_plug_new_for_display(gdk_display_get_default(), | |
3648 gtk_socket_id); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3649 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL) |
7 | 3650 { |
3651 gui.mainwin = plug; | |
3652 } | |
3653 else | |
3654 { | |
3655 g_warning("Connection to GTK+ socket (ID %u) failed", | |
3656 (unsigned int)gtk_socket_id); | |
3657 /* Pretend we never wanted it if it failed (get own window) */ | |
3658 gtk_socket_id = 0; | |
3659 } | |
3660 } | |
3661 | |
3662 if (gtk_socket_id == 0) | |
3663 { | |
3664 #ifdef FEAT_GUI_GNOME | |
3665 if (using_gnome) | |
3666 { | |
3667 gui.mainwin = gnome_app_new("Vim", NULL); | |
3668 # ifdef USE_XSMP | |
3669 /* Use the GNOME save-yourself functionality now. */ | |
3670 xsmp_close(); | |
3671 # endif | |
3672 } | |
3673 else | |
3674 #endif | |
3675 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
3676 } | |
3677 | |
3678 gtk_widget_set_name(gui.mainwin, "vim-main-window"); | |
3679 | |
3680 /* Create the PangoContext used for drawing all text. */ | |
3681 gui.text_context = gtk_widget_create_pango_context(gui.mainwin); | |
3682 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
|
3683 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3684 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0); |
7 | 3685 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK); |
3686 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3687 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
|
3688 G_CALLBACK(&delete_event_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3689 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3690 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
|
3691 G_CALLBACK(&mainwin_realize), NULL); |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3692 |
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3693 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed", |
7 | 3694 G_CALLBACK(&mainwin_screen_changed_cb), NULL); |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3695 |
7 | 3696 gui.accel_group = gtk_accel_group_new(); |
3697 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group); | |
3698 | |
685 | 3699 /* 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
|
3700 #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
|
3701 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
|
3702 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
|
3703 #else |
7 | 3704 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
|
3705 #endif |
7 | 3706 |
3707 #ifdef FEAT_GUI_GNOME | |
3708 if (using_gnome) | |
3709 { | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3710 # if defined(FEAT_MENU) |
7 | 3711 /* automagically restore menubar/toolbar placement */ |
3712 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE); | |
3713 # endif | |
3714 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox); | |
3715 } | |
3716 else | |
3717 #endif | |
3718 { | |
3719 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox); | |
3720 gtk_widget_show(vbox); | |
3721 } | |
3722 | |
3723 #ifdef FEAT_MENU | |
3724 /* | |
3725 * Create the menubar and handle | |
3726 */ | |
3727 gui.menubar = gtk_menu_bar_new(); | |
3728 gtk_widget_set_name(gui.menubar, "vim-menubar"); | |
3729 | |
36 | 3730 /* Avoid that GTK takes <F10> away from us. */ |
3731 { | |
3732 GtkSettings *gtk_settings; | |
3733 | |
3734 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default()); | |
3735 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL); | |
3736 } | |
3737 | |
3738 | |
7 | 3739 # ifdef FEAT_GUI_GNOME |
3740 if (using_gnome) | |
3741 { | |
3742 BonoboDockItem *dockitem; | |
3743 | |
3744 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar)); | |
3745 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), | |
3746 GNOME_APP_MENUBAR_NAME); | |
798 | 3747 /* We don't want the menu to float. */ |
3748 bonobo_dock_item_set_behavior(dockitem, | |
3749 bonobo_dock_item_get_behavior(dockitem) | |
3750 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); | |
7 | 3751 gui.menubar_h = GTK_WIDGET(dockitem); |
3752 } | |
3753 else | |
3754 # endif /* FEAT_GUI_GNOME */ | |
3755 { | |
827 | 3756 /* Always show the menubar, otherwise <F10> doesn't work. It may be |
3757 * disabled in gui_init() later. */ | |
3758 gtk_widget_show(gui.menubar); | |
7 | 3759 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0); |
3760 } | |
3761 #endif /* FEAT_MENU */ | |
3762 | |
3763 #ifdef FEAT_TOOLBAR | |
3764 /* | |
3765 * Create the toolbar and handle | |
3766 */ | |
3767 /* some aesthetics on the toolbar */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3768 # ifdef USE_GTK3 |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
3769 /* 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
|
3770 /* 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
|
3771 * 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
|
3772 # else |
7 | 3773 gtk_rc_parse_string( |
3774 "style \"vim-toolbar-style\" {\n" | |
3775 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n" | |
3776 "}\n" | |
3777 "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
|
3778 # endif |
7 | 3779 gui.toolbar = gtk_toolbar_new(); |
3780 gtk_widget_set_name(gui.toolbar, "vim-toolbar"); | |
3781 set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); | |
3782 | |
3783 # ifdef FEAT_GUI_GNOME | |
3784 if (using_gnome) | |
3785 { | |
3786 BonoboDockItem *dockitem; | |
3787 | |
3788 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar)); | |
3789 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), | |
3790 GNOME_APP_TOOLBAR_NAME); | |
3791 gui.toolbar_h = GTK_WIDGET(dockitem); | |
795 | 3792 /* When the toolbar is floating it gets stuck. So long as that isn't |
798 | 3793 * fixed let's disallow floating. */ |
795 | 3794 bonobo_dock_item_set_behavior(dockitem, |
798 | 3795 bonobo_dock_item_get_behavior(dockitem) |
3796 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); | |
7 | 3797 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0); |
3798 } | |
3799 else | |
3800 # endif /* FEAT_GUI_GNOME */ | |
3801 { | |
3802 if (vim_strchr(p_go, GO_TOOLBAR) != NULL | |
3803 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) | |
3804 gtk_widget_show(gui.toolbar); | |
3805 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0); | |
3806 } | |
3807 #endif /* FEAT_TOOLBAR */ | |
3808 | |
685 | 3809 #ifdef FEAT_GUI_TABLINE |
782 | 3810 /* |
3811 * Use a Notebook for the tab pages labels. The labels are hidden by | |
3812 * default. | |
3813 */ | |
791 | 3814 gui.tabline = gtk_notebook_new(); |
3815 gtk_widget_show(gui.tabline); | |
3816 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0); | |
3817 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE); | |
3818 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE); | |
841 | 3819 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
|
3820 # if !GTK_CHECK_VERSION(3,0,0) |
868 | 3821 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
|
3822 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3823 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3824 # if !GTK_CHECK_VERSION(3,0,0) |
846 | 3825 tabline_tooltip = gtk_tooltips_new(); |
3826 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
|
3827 # endif |
846 | 3828 |
3829 { | |
3830 GtkWidget *page, *label, *event_box; | |
791 | 3831 |
856 | 3832 /* Add the first tab. */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3833 # 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
|
3834 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
|
3835 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
|
3836 # else |
846 | 3837 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
|
3838 # endif |
846 | 3839 gtk_widget_show(page); |
3840 gtk_container_add(GTK_CONTAINER(gui.tabline), page); | |
3841 label = gtk_label_new("-Empty-"); | |
3842 gtk_widget_show(label); | |
3843 event_box = gtk_event_box_new(); | |
3844 gtk_widget_show(event_box); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3845 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
|
3846 # if !GTK_CHECK_VERSION(3,14,0) |
851 | 3847 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
|
3848 # endif |
846 | 3849 gtk_container_add(GTK_CONTAINER(event_box), label); |
3850 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box); | |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3851 # if GTK_CHECK_VERSION(2,10,0) |
12666
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3852 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE); |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3853 # endif |
791 | 3854 } |
865 | 3855 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3856 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
|
3857 G_CALLBACK(on_select_tab), NULL); |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3858 # if GTK_CHECK_VERSION(2,10,0) |
12666
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3859 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered", |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3860 G_CALLBACK(on_tab_reordered), NULL); |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3861 # endif |
791 | 3862 |
3863 /* Create a popup menu for the tab line and connect it. */ | |
3864 tabline_menu = create_tabline_menu(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3865 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
|
3866 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
|
3867 #endif /* FEAT_GUI_TABLINE */ |
685 | 3868 |
7 | 3869 gui.formwin = gtk_form_new(); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3870 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
|
3871 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 3872 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
|
3873 #endif |
7 | 3874 |
3875 gui.drawarea = gtk_drawing_area_new(); | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3876 #if GTK_CHECK_VERSION(3,22,2) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3877 gtk_widget_set_name(gui.drawarea, "vim-gui-drawarea"); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3878 #endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3879 #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
|
3880 gui.surface = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3881 gui.by_signal = FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3882 #endif |
7 | 3883 |
3884 /* Determine which events we will filter. */ | |
3885 gtk_widget_set_events(gui.drawarea, | |
3886 GDK_EXPOSURE_MASK | | |
3887 GDK_ENTER_NOTIFY_MASK | | |
3888 GDK_LEAVE_NOTIFY_MASK | | |
3889 GDK_BUTTON_PRESS_MASK | | |
3890 GDK_BUTTON_RELEASE_MASK | | |
3891 GDK_SCROLL_MASK | | |
3892 GDK_KEY_PRESS_MASK | | |
3893 GDK_KEY_RELEASE_MASK | | |
3894 GDK_POINTER_MOTION_MASK | | |
3895 GDK_POINTER_MOTION_HINT_MASK); | |
3896 | |
3897 gtk_widget_show(gui.drawarea); | |
3898 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0); | |
3899 gtk_widget_show(gui.formwin); | |
3900 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0); | |
3901 | |
3902 /* For GtkSockets, key-presses must go to the focus widget (drawarea) | |
3903 * and not the window. */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3904 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
|
3905 : G_OBJECT(gui.drawarea), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3906 "key-press-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3907 G_CALLBACK(key_press_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3908 #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
7 | 3909 /* Also forward key release events for the benefit of GTK+ 2 input |
3910 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */ | |
3911 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) | |
3912 : G_OBJECT(gui.drawarea), | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3913 "key-release-event", |
7 | 3914 G_CALLBACK(&key_release_event), NULL); |
3915 #endif | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3916 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
|
3917 G_CALLBACK(drawarea_realize_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3918 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
|
3919 G_CALLBACK(drawarea_unrealize_cb), NULL); |
14786
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
3920 #if GTK_CHECK_VERSION(3,0,0) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3921 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
|
3922 G_CALLBACK(drawarea_configure_event_cb), NULL); |
14786
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
3923 #endif |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
3924 #if GTK_CHECK_VERSION(3,22,2) |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3925 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated", |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3926 G_CALLBACK(&drawarea_style_updated_cb), NULL); |
14786
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
3927 #else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3928 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
|
3929 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
|
3930 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3931 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3932 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 3933 gui.visibility = GDK_VISIBILITY_UNOBSCURED; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3934 #endif |
7 | 3935 |
3936 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) | |
3937 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE); | |
3938 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE); | |
3939 #endif | |
3940 | |
3941 if (gtk_socket_id != 0) | |
1884 | 3942 /* 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
|
3943 gtk_widget_set_can_focus(gui.drawarea, TRUE); |
7 | 3944 |
3945 /* | |
3946 * Set clipboard specific atoms | |
3947 */ | |
3948 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE); | |
3949 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE); | |
3950 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY; | |
3951 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE); | |
3952 | |
3953 /* | |
3954 * Start out by adding the configured border width into the border offset. | |
3955 */ | |
3956 gui.border_offset = gui.border_width; | |
3957 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3958 #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
|
3959 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
|
3960 G_CALLBACK(draw_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3961 #else |
7 | 3962 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event", |
3963 GTK_SIGNAL_FUNC(visibility_event), NULL); | |
3964 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event", | |
3965 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
|
3966 #endif |
7 | 3967 |
3968 /* | |
3969 * Only install these enter/leave callbacks when 'p' in 'guioptions'. | |
3970 * Only needed for some window managers. | |
3971 */ | |
3972 if (vim_strchr(p_go, GO_POINTER) != NULL) | |
3973 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3974 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
|
3975 G_CALLBACK(leave_notify_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3976 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
|
3977 G_CALLBACK(enter_notify_event), NULL); |
7 | 3978 } |
3979 | |
791 | 3980 /* Real windows can get focus ... GtkPlug, being a mere container can't, |
3981 * only its widgets. Arguably, this could be common code and we not use | |
3982 * the window focus at all, but let's be safe. | |
3983 */ | |
3984 if (gtk_socket_id == 0) | |
3985 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3986 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
|
3987 G_CALLBACK(focus_out_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3988 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
|
3989 G_CALLBACK(focus_in_event), NULL); |
791 | 3990 } |
3991 else | |
3992 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3993 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
|
3994 G_CALLBACK(focus_out_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3995 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
|
3996 G_CALLBACK(focus_in_event), NULL); |
791 | 3997 #ifdef FEAT_GUI_TABLINE |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3998 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
|
3999 G_CALLBACK(focus_out_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4000 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
|
4001 G_CALLBACK(focus_in_event), NULL); |
791 | 4002 #endif /* FEAT_GUI_TABLINE */ |
4003 } | |
7 | 4004 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4005 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
|
4006 G_CALLBACK(motion_notify_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4007 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
|
4008 G_CALLBACK(button_press_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4009 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
|
4010 G_CALLBACK(button_release_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4011 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
|
4012 G_CALLBACK(&scroll_event), NULL); |
7 | 4013 |
4014 /* | |
4015 * Add selection handler functions. | |
4016 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4017 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
|
4018 G_CALLBACK(selection_clear_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4019 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
|
4020 G_CALLBACK(selection_received_cb), NULL); |
7 | 4021 |
2183 | 4022 gui_gtk_set_selection_targets(); |
7 | 4023 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4024 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
|
4025 G_CALLBACK(selection_get_cb), NULL); |
7 | 4026 |
4027 /* Pretend we don't have input focus, we will get an event if we do. */ | |
4028 gui.in_focus = FALSE; | |
4029 | |
14471
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
4030 // Handle changes to the "Xft/DPI" setting. |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
4031 { |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
4032 GtkSettings *gtk_settings = |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
4033 gtk_settings_get_for_screen(gdk_screen_get_default()); |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
4034 |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
4035 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi", |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
4036 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL); |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
4037 } |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
4038 |
7 | 4039 return OK; |
4040 } | |
4041 | |
4042 #if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO) | |
4043 /* | |
4044 * This is called from gui_start() after a fork() has been done. | |
4045 * We have to tell the session manager our new PID. | |
4046 */ | |
4047 void | |
4048 gui_mch_forked(void) | |
4049 { | |
4050 if (using_gnome) | |
4051 { | |
4052 GnomeClient *client; | |
4053 | |
4054 client = gnome_master_client(); | |
4055 | |
4056 if (client != NULL) | |
4057 gnome_client_set_process_id(client, getpid()); | |
4058 } | |
4059 } | |
4060 #endif /* FEAT_GUI_GNOME && FEAT_SESSION */ | |
4061 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4062 #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
|
4063 static GdkRGBA |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4064 color_to_rgba(guicolor_T color) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4065 { |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4066 GdkRGBA rgba; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4067 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
|
4068 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
|
4069 rgba.blue = ((color & 0xff)) / 255.0; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4070 rgba.alpha = 1.0; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4071 return rgba; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4072 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4073 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4074 static void |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4075 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
|
4076 { |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4077 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
|
4078 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
|
4079 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4080 #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
|
4081 |
7 | 4082 /* |
4083 * Called when the foreground or background color has been changed. | |
4084 * This used to change the graphics contexts directly but we are | |
4085 * currently manipulating them where desired. | |
4086 */ | |
4087 void | |
4088 gui_mch_new_colors(void) | |
4089 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4090 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL) |
14786
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
4091 { |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
4092 #if !GTK_CHECK_VERSION(3,22,2) |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
4093 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4094 #endif |
14786
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
4095 |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4096 #if GTK_CHECK_VERSION(3,22,2) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4097 GtkStyleContext * const context |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4098 = gtk_widget_get_style_context(gui.drawarea); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4099 GtkCssProvider * const provider = gtk_css_provider_new(); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4100 gchar * const css = g_strdup_printf( |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4101 "widget#vim-gui-drawarea {\n" |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4102 " background-color: #%.2lx%.2lx%.2lx;\n" |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4103 "}\n", |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4104 (gui.back_pixel >> 16) & 0xff, |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4105 (gui.back_pixel >> 8) & 0xff, |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4106 gui.back_pixel & 0xff); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4107 |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4108 gtk_css_provider_load_from_data(provider, css, -1, NULL); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4109 gtk_style_context_add_provider(context, |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4110 GTK_STYLE_PROVIDER(provider), G_MAXUINT); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4111 |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4112 g_free(css); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4113 g_object_unref(provider); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4114 #elif GTK_CHECK_VERSION(3,4,0) /* !GTK_CHECK_VERSION(3,22,2) */ |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4115 GdkRGBA rgba; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4116 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4117 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
|
4118 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4119 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
|
4120 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
|
4121 if (pat != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4122 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4123 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
|
4124 cairo_pattern_destroy(pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4125 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4126 else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4127 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
|
4128 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4129 #else /* !GTK_CHECK_VERSION(3,4,0) */ |
7 | 4130 GdkColor color = { 0, 0, 0, 0 }; |
4131 | |
4132 color.pixel = gui.back_pixel; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4133 gdk_window_set_background(da_win, &color); |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4134 #endif /* !GTK_CHECK_VERSION(3,22,2) */ |
7 | 4135 } |
4136 } | |
4137 | |
4138 /* | |
4139 * This signal informs us about the need to rearrange our sub-widgets. | |
4140 */ | |
4141 static gint | |
1884 | 4142 form_configure_event(GtkWidget *widget UNUSED, |
4143 GdkEventConfigure *event, | |
4144 gpointer data UNUSED) | |
7 | 4145 { |
791 | 4146 int usable_height = event->height; |
4147 | |
10402
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
4148 #if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4) |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4149 /* As of 3.22.2, GdkWindows have started distributing configure events to |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4150 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0). |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4151 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4152 * As can be seen from the implementation of move_native_children() and |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4153 * configure_native_child() in gdkwindow.c, those functions actually |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4154 * propagate configure events to every child, failing to distinguish |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4155 * "native" one from non-native one. |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4156 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4157 * Naturally, configure events propagated to here like that are fallacious |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4158 * and, as a matter of fact, they trigger a geometric collapse of |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4159 * gui.formwin. |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4160 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4161 * To filter out such fallacious events, check if the given event is the |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4162 * one that was sent out to the right place. Ignore it if not. |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4163 */ |
10402
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
4164 /* Follow-up |
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
4165 * After a few weeks later, the GdkWindow change mentioned above was |
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
4166 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155). |
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
4167 * The corresponding official release is 3.22.4. */ |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4168 if (event->window != gtk_widget_get_window(gui.formwin)) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4169 return TRUE; |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4170 #endif |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4171 |
791 | 4172 /* When in a GtkPlug, we can't guarantee valid heights (as a round |
4173 * no. of char-heights), so we have to manually sanitise them. | |
4174 * Widths seem to sort themselves out, don't ask me why. | |
4175 */ | |
4176 if (gtk_socket_id != 0) | |
856 | 4177 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */ |
791 | 4178 |
7 | 4179 gtk_form_freeze(GTK_FORM(gui.formwin)); |
791 | 4180 gui_resize_shell(event->width, usable_height); |
7 | 4181 gtk_form_thaw(GTK_FORM(gui.formwin)); |
4182 | |
4183 return TRUE; | |
4184 } | |
4185 | |
4186 /* | |
4187 * Function called when window already closed. | |
4188 * We can't do much more here than to trying to preserve what had been done, | |
4189 * since the window is already inevitably going away. | |
4190 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4191 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4192 mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED) |
7 | 4193 { |
4194 /* Don't write messages to the GUI anymore */ | |
4195 full_screen = FALSE; | |
4196 | |
4197 gui.mainwin = NULL; | |
4198 gui.drawarea = NULL; | |
4199 | |
4200 if (!exiting) /* only do anything if the destroy was unexpected */ | |
4201 { | |
419 | 4202 vim_strncpy(IObuff, |
4203 (char_u *)_("Vim: Main window unexpectedly destroyed\n"), | |
4204 IOSIZE - 1); | |
7 | 4205 preserve_exit(); |
4206 } | |
7380
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
4207 #ifdef USE_GRESOURCE |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
4208 gui_gtk_unregister_resource(); |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
4209 #endif |
7 | 4210 } |
4211 | |
791 | 4212 |
4213 /* | |
4214 * Bit of a hack to ensure we start GtkPlug windows with the correct window | |
4215 * hints (and thus the required size from -geom), but that after that we | |
4216 * put the hints back to normal (the actual minimum size) so we may | |
4217 * subsequently be resized smaller. GtkSocket (the parent end) uses the | |
15034
6e4e0d43b20b
patch 8.1.0528: various typos in comments
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4218 * plug's window 'min hints to set *its* minimum size, but that's also the |
791 | 4219 * only way we have of making ourselves bigger (by set lines/columns). |
4220 * 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
|
4221 * 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
|
4222 * scrollbar init.), actually do the standard hints and stop the timer. |
791 | 4223 * We'll not let the default hints be set while this timer's active. |
4224 */ | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
4225 static timeout_cb_type |
1884 | 4226 check_startup_plug_hints(gpointer data UNUSED) |
791 | 4227 { |
4228 if (init_window_hints_state == 1) | |
4229 { | |
856 | 4230 /* Safe to use normal hints now */ |
4231 init_window_hints_state = 0; | |
4232 update_window_manager_hints(0, 0); | |
4233 return FALSE; /* stop timer */ | |
791 | 4234 } |
4235 | |
4236 /* Keep on trying */ | |
4237 init_window_hints_state = 1; | |
4238 return TRUE; | |
4239 } | |
4240 | |
7 | 4241 /* |
4242 * Open the GUI window which was created by a call to gui_mch_init(). | |
4243 */ | |
4244 int | |
4245 gui_mch_open(void) | |
4246 { | |
4247 guicolor_T fg_pixel = INVALCOLOR; | |
4248 guicolor_T bg_pixel = INVALCOLOR; | |
1966 | 4249 guint pixel_width; |
4250 guint pixel_height; | |
7 | 4251 |
4252 /* | |
4253 * Allow setting a window role on the command line, or invent one | |
4254 * if none was specified. This is mainly useful for GNOME session | |
4255 * support; allowing the WM to restore window placement. | |
4256 */ | |
4257 if (role_argument != NULL) | |
4258 { | |
4259 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument); | |
4260 } | |
4261 else | |
4262 { | |
4263 char *role; | |
4264 | |
4265 /* Invent a unique-enough ID string for the role */ | |
4266 role = g_strdup_printf("vim-%u-%u-%u", | |
4267 (unsigned)mch_get_pid(), | |
4268 (unsigned)g_random_int(), | |
4269 (unsigned)time(NULL)); | |
4270 | |
4271 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role); | |
4272 g_free(role); | |
4273 } | |
4274 | |
4275 if (gui_win_x != -1 && gui_win_y != -1) | |
4276 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y); | |
4277 | |
4278 /* Determine user specified geometry, if present. */ | |
4279 if (gui.geom != NULL) | |
4280 { | |
4281 int mask; | |
4282 unsigned int w, h; | |
4283 int x = 0; | |
4284 int y = 0; | |
4285 | |
4286 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h); | |
4287 | |
4288 if (mask & WidthValue) | |
4289 Columns = w; | |
4290 if (mask & HeightValue) | |
857 | 4291 { |
1884 | 4292 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window")) |
857 | 4293 p_window = h - 1; |
7 | 4294 Rows = h; |
857 | 4295 } |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4474
diff
changeset
|
4296 limit_screen_size(); |
1426 | 4297 |
4298 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); | |
4299 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); | |
4300 | |
4301 pixel_width += get_menu_tool_width(); | |
4302 pixel_height += get_menu_tool_height(); | |
4303 | |
7 | 4304 if (mask & (XValue | YValue)) |
1426 | 4305 { |
1757 | 4306 int ww, hh; |
4307 gui_mch_get_screen_dimensions(&ww, &hh); | |
4308 hh += p_ghr + get_menu_tool_height(); | |
4309 ww += get_menu_tool_width(); | |
1426 | 4310 if (mask & XNegative) |
1757 | 4311 x += ww - pixel_width; |
1426 | 4312 if (mask & YNegative) |
1757 | 4313 y += hh - pixel_height; |
7 | 4314 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
1426 | 4315 } |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13152
diff
changeset
|
4316 VIM_CLEAR(gui.geom); |
791 | 4317 |
856 | 4318 /* From now until everyone's stopped trying to set the window hints |
4319 * to their correct minimum values, stop them being set as we need | |
4320 * them to remain at our required size for the parent GtkSocket to | |
4321 * give us the right initial size. | |
4322 */ | |
791 | 4323 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue)) |
856 | 4324 { |
4325 update_window_manager_hints(pixel_width, pixel_height); | |
4326 init_window_hints_state = 1; | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
4327 timeout_add(1000, check_startup_plug_hints, NULL); |
856 | 4328 } |
7 | 4329 } |
4330 | |
1966 | 4331 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
4332 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); | |
4333 /* For GTK2 changing the size of the form widget doesn't cause window | |
4334 * resizing. */ | |
2254
4620acaf4814
One more fix for conceal patch.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
4335 if (gtk_socket_id == 0) |
1966 | 4336 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height); |
791 | 4337 update_window_manager_hints(0, 0); |
7 | 4338 |
4339 if (foreground_argument != NULL) | |
4340 fg_pixel = gui_get_color((char_u *)foreground_argument); | |
4341 if (fg_pixel == INVALCOLOR) | |
4342 fg_pixel = gui_get_color((char_u *)"Black"); | |
4343 | |
4344 if (background_argument != NULL) | |
4345 bg_pixel = gui_get_color((char_u *)background_argument); | |
4346 if (bg_pixel == INVALCOLOR) | |
4347 bg_pixel = gui_get_color((char_u *)"White"); | |
4348 | |
4349 if (found_reverse_arg) | |
4350 { | |
4351 gui.def_norm_pixel = bg_pixel; | |
4352 gui.def_back_pixel = fg_pixel; | |
4353 } | |
4354 else | |
4355 { | |
4356 gui.def_norm_pixel = fg_pixel; | |
4357 gui.def_back_pixel = bg_pixel; | |
4358 } | |
4359 | |
4360 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or | |
4361 * in a vimrc file) */ | |
4362 set_normal_colors(); | |
4363 | |
4364 /* Check that none of the colors are the same as the background color */ | |
4365 gui_check_colors(); | |
4366 | |
4367 /* Get the colors for the highlight groups (gui_check_colors() might have | |
4368 * changed them). */ | |
4369 highlight_gui_started(); /* re-init colors and fonts */ | |
4370 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4371 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
|
4372 G_CALLBACK(mainwin_destroy_cb), NULL); |
7 | 4373 |
4374 #ifdef FEAT_HANGULIN | |
4375 hangul_keyboard_set(); | |
4376 #endif | |
4377 | |
4378 /* | |
4379 * Notify the fixed area about the need to resize the contents of the | |
4380 * gui.formwin, which we use for random positioning of the included | |
4381 * components. | |
4382 * | |
4383 * We connect this signal deferred finally after anything is in place, | |
4384 * since this is intended to handle resizements coming from the window | |
4385 * manager upon us and should not interfere with what VIM is requesting | |
4386 * upon startup. | |
4387 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4388 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
|
4389 G_CALLBACK(form_configure_event), NULL); |
7 | 4390 |
4391 #ifdef FEAT_DND | |
2183 | 4392 /* Set up for receiving DND items. */ |
4393 gui_gtk_set_dnd_targets(); | |
7 | 4394 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4395 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
|
4396 G_CALLBACK(drag_data_received_cb), NULL); |
7 | 4397 #endif |
4398 | |
4399 /* 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
|
4400 * to avoid mapping the window for a short time. */ |
7 | 4401 if (found_iconic_arg && gtk_socket_id == 0) |
4402 gui_mch_iconify(); | |
4403 | |
4404 { | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
4405 #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
7 | 4406 unsigned long menu_handler = 0; |
4407 # ifdef FEAT_TOOLBAR | |
4408 unsigned long tool_handler = 0; | |
4409 # endif | |
4410 /* | |
4411 * Urgh hackish :/ For some reason BonoboDockLayout always forces a | |
4412 * show when restoring the saved layout configuration. We can't just | |
4413 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's | |
4414 * a toplevel window and thus will be realized immediately. Instead, | |
4415 * connect signal handlers to hide the widgets just after they've been | |
4416 * marked visible, but before the main window is realized. | |
4417 */ | |
4418 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL) | |
4419 menu_handler = g_signal_connect_after(gui.menubar_h, "show", | |
4420 G_CALLBACK(>k_widget_hide), | |
4421 NULL); | |
4422 # ifdef FEAT_TOOLBAR | |
4423 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL | |
4424 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) | |
4425 tool_handler = g_signal_connect_after(gui.toolbar_h, "show", | |
4426 G_CALLBACK(>k_widget_hide), | |
4427 NULL); | |
4428 # endif | |
4429 #endif | |
4430 gtk_widget_show(gui.mainwin); | |
4431 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
4432 #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
7 | 4433 if (menu_handler != 0) |
4434 g_signal_handler_disconnect(gui.menubar_h, menu_handler); | |
4435 # ifdef FEAT_TOOLBAR | |
4436 if (tool_handler != 0) | |
4437 g_signal_handler_disconnect(gui.toolbar_h, tool_handler); | |
4438 # endif | |
4439 #endif | |
4440 } | |
4441 | |
4442 return OK; | |
4443 } | |
4444 | |
4445 | |
4446 void | |
1884 | 4447 gui_mch_exit(int rc UNUSED) |
7 | 4448 { |
4449 if (gui.mainwin != NULL) | |
4450 gtk_widget_destroy(gui.mainwin); | |
4451 } | |
4452 | |
4453 /* | |
4454 * Get the position of the top left corner of the window. | |
4455 */ | |
4456 int | |
4457 gui_mch_get_winpos(int *x, int *y) | |
4458 { | |
4459 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y); | |
4460 return OK; | |
4461 } | |
4462 | |
4463 /* | |
4464 * Set the position of the top left corner of the window to the given | |
4465 * coordinates. | |
4466 */ | |
4467 void | |
4468 gui_mch_set_winpos(int x, int y) | |
4469 { | |
4470 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); | |
4471 } | |
4472 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4473 #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
|
4474 # if 0 |
7 | 4475 static int resize_idle_installed = FALSE; |
4476 /* | |
4477 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure | |
4478 * the shell size doesn't exceed the window size, i.e. if the window manager | |
4479 * ignored our size request. Usually this happens if the window is maximized. | |
4480 * | |
4481 * FIXME: It'd be nice if we could find a little more orthodox solution. | |
4482 * See also the remark below in gui_mch_set_shellsize(). | |
4483 * | |
4484 * DISABLED: When doing ":set lines+=1" this function would first invoke | |
4485 * gui_resize_shell() with the old size, then the normal callback would | |
4486 * report the new size through form_configure_event(). That caused the window | |
4487 * layout to be messed up. | |
4488 */ | |
4489 static gboolean | |
4490 force_shell_resize_idle(gpointer data) | |
4491 { | |
4492 if (gui.mainwin != NULL | |
4493 && GTK_WIDGET_REALIZED(gui.mainwin) | |
4494 && GTK_WIDGET_VISIBLE(gui.mainwin)) | |
4495 { | |
4496 int width; | |
4497 int height; | |
4498 | |
4499 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height); | |
4500 | |
4501 width -= get_menu_tool_width(); | |
4502 height -= get_menu_tool_height(); | |
4503 | |
4504 gui_resize_shell(width, height); | |
4505 } | |
4506 | |
4507 resize_idle_installed = FALSE; | |
4508 return FALSE; /* don't call me again */ | |
4509 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4510 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4511 #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
|
4512 |
1967 | 4513 /* |
4514 * Return TRUE if the main window is maximized. | |
4515 */ | |
4516 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
4517 gui_mch_maximized(void) |
1967 | 4518 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4519 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
|
4520 && (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
|
4521 & GDK_WINDOW_STATE_MAXIMIZED)); |
1967 | 4522 } |
4523 | |
4524 /* | |
4525 * Unmaximize the main window | |
4526 */ | |
4527 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
4528 gui_mch_unmaximize(void) |
1967 | 4529 { |
4530 if (gui.mainwin != NULL) | |
4531 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin)); | |
4532 } | |
4533 | |
7 | 4534 /* |
12802
29a728529f92
patch 8.0.1278: GUI window always resizes when adding scrollbar
Christian Brabandt <cb@256bit.org>
parents:
12666
diff
changeset
|
4535 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE |
29a728529f92
patch 8.0.1278: GUI window always resizes when adding scrollbar
Christian Brabandt <cb@256bit.org>
parents:
12666
diff
changeset
|
4536 * is set. Compute the new Rows and Columns. This is like resizing the |
29a728529f92
patch 8.0.1278: GUI window always resizes when adding scrollbar
Christian Brabandt <cb@256bit.org>
parents:
12666
diff
changeset
|
4537 * window. |
3014 | 4538 */ |
4539 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
4540 gui_mch_newfont(void) |
3014 | 4541 { |
4542 int w, h; | |
4543 | |
4544 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h); | |
4545 w -= get_menu_tool_width(); | |
4546 h -= get_menu_tool_height(); | |
4547 gui_resize_shell(w, h); | |
4548 } | |
4549 | |
4550 /* | |
7 | 4551 * Set the windows size. |
4552 */ | |
4553 void | |
4554 gui_mch_set_shellsize(int width, int height, | |
1884 | 4555 int min_width UNUSED, int min_height UNUSED, |
4556 int base_width UNUSED, int base_height UNUSED, | |
4557 int direction UNUSED) | |
7 | 4558 { |
4559 /* give GTK+ a chance to put all widget's into place */ | |
4560 gui_mch_update(); | |
4561 | |
791 | 4562 /* this will cause the proper resizement to happen too */ |
4563 if (gtk_socket_id == 0) | |
856 | 4564 update_window_manager_hints(0, 0); |
791 | 4565 |
7 | 4566 /* With GTK+ 2, changing the size of the form widget doesn't resize |
791 | 4567 * the window. So let's do it the other way around and resize the |
7 | 4568 * main window instead. */ |
4569 width += get_menu_tool_width(); | |
4570 height += get_menu_tool_height(); | |
4571 | |
791 | 4572 if (gtk_socket_id == 0) |
856 | 4573 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height); |
791 | 4574 else |
856 | 4575 update_window_manager_hints(width, height); |
7 | 4576 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4577 # 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
|
4578 # if 0 |
7 | 4579 if (!resize_idle_installed) |
4580 { | |
4581 g_idle_add_full(GDK_PRIORITY_EVENTS + 10, | |
4582 &force_shell_resize_idle, NULL, NULL); | |
4583 resize_idle_installed = TRUE; | |
4584 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4585 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4586 # endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 4587 /* |
4588 * Wait until all events are processed to prevent a crash because the | |
4589 * real size of the drawing area doesn't reflect Vim's internal ideas. | |
4590 * | |
4591 * This is a bit of a hack, since Vim is a terminal application with a GUI | |
4592 * on top, while the GUI expects to be the boss. | |
4593 */ | |
4594 gui_mch_update(); | |
4595 } | |
4596 | |
12409
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4597 void |
14575
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4598 gui_gtk_get_screen_geom_of_win( |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4599 GtkWidget *wid, |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4600 int *screen_x, |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4601 int *screen_y, |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4602 int *width, |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4603 int *height) |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4604 { |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4605 GdkRectangle geometry; |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4606 GdkWindow *win = gtk_widget_get_window(wid); |
12409
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4607 #if GTK_CHECK_VERSION(3,22,0) |
12413
ca7f2685e339
patch 8.0.1086: can't build with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
12409
diff
changeset
|
4608 GdkDisplay *dpy = gtk_widget_get_display(wid); |
12409
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4609 GdkMonitor *monitor = gdk_display_get_monitor_at_window(dpy, win); |
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4610 |
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4611 gdk_monitor_get_geometry(monitor, &geometry); |
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4612 #else |
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4613 GdkScreen* screen; |
14575
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4614 int monitor; |
12409
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4615 |
12413
ca7f2685e339
patch 8.0.1086: can't build with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
12409
diff
changeset
|
4616 if (wid != NULL && gtk_widget_has_screen(wid)) |
ca7f2685e339
patch 8.0.1086: can't build with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
12409
diff
changeset
|
4617 screen = gtk_widget_get_screen(wid); |
12409
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4618 else |
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4619 screen = gdk_screen_get_default(); |
14575
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4620 monitor = gdk_screen_get_monitor_at_window(screen, win); |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4621 gdk_screen_get_monitor_geometry(screen, monitor, &geometry); |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4622 #endif |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4623 *screen_x = geometry.x; |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4624 *screen_y = geometry.y; |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4625 *width = geometry.width; |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4626 *height = geometry.height; |
12409
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4627 } |
7 | 4628 |
4629 /* | |
4630 * The screen size is used to make sure the initial window doesn't get bigger | |
4631 * than the screen. This subtracts some room for menubar, toolbar and window | |
4632 * decorations. | |
4633 */ | |
4634 void | |
4635 gui_mch_get_screen_dimensions(int *screen_w, int *screen_h) | |
4636 { | |
14575
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4637 int x, y; |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4638 |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4639 gui_gtk_get_screen_geom_of_win(gui.mainwin, &x, &y, screen_w, screen_h); |
12409
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4640 |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4641 /* Subtract 'guiheadroom' from the height to allow some room for the |
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4642 * window manager (task list and window title bar). */ |
12409
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4643 *screen_h -= p_ghr; |
7 | 4644 |
4645 /* | |
4646 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include | |
4647 * 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
|
4648 * height, so that the window size can be made to fit on the screen. |
7 | 4649 * This should be completely changed later. |
4650 */ | |
4651 *screen_w -= get_menu_tool_width(); | |
4652 *screen_h -= get_menu_tool_height(); | |
4653 } | |
4654 | |
4655 #if defined(FEAT_TITLE) || defined(PROTO) | |
4656 void | |
1884 | 4657 gui_mch_settitle(char_u *title, char_u *icon UNUSED) |
7 | 4658 { |
4659 if (title != NULL && output_conv.vc_type != CONV_NONE) | |
4660 title = string_convert(&output_conv, title, NULL); | |
4661 | |
4662 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title); | |
4663 | |
4664 if (output_conv.vc_type != CONV_NONE) | |
4665 vim_free(title); | |
4666 } | |
4667 #endif /* FEAT_TITLE */ | |
4668 | |
4669 #if defined(FEAT_MENU) || defined(PROTO) | |
4670 void | |
4671 gui_mch_enable_menu(int showit) | |
4672 { | |
4673 GtkWidget *widget; | |
4674 | |
4675 # ifdef FEAT_GUI_GNOME | |
4676 if (using_gnome) | |
4677 widget = gui.menubar_h; | |
4678 else | |
4679 # endif | |
4680 widget = gui.menubar; | |
4681 | |
827 | 4682 /* 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
|
4683 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting) |
7 | 4684 { |
4685 if (showit) | |
4686 gtk_widget_show(widget); | |
4687 else | |
4688 gtk_widget_hide(widget); | |
4689 | |
791 | 4690 update_window_manager_hints(0, 0); |
7 | 4691 } |
4692 } | |
4693 #endif /* FEAT_MENU */ | |
4694 | |
4695 #if defined(FEAT_TOOLBAR) || defined(PROTO) | |
4696 void | |
4697 gui_mch_show_toolbar(int showit) | |
4698 { | |
4699 GtkWidget *widget; | |
4700 | |
4701 if (gui.toolbar == NULL) | |
4702 return; | |
4703 | |
4704 # ifdef FEAT_GUI_GNOME | |
4705 if (using_gnome) | |
4706 widget = gui.toolbar_h; | |
4707 else | |
4708 # endif | |
4709 widget = gui.toolbar; | |
4710 | |
4711 if (showit) | |
4712 set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); | |
4713 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4714 if (!showit != !gtk_widget_get_visible(widget)) |
7 | 4715 { |
4716 if (showit) | |
4717 gtk_widget_show(widget); | |
4718 else | |
4719 gtk_widget_hide(widget); | |
4720 | |
791 | 4721 update_window_manager_hints(0, 0); |
7 | 4722 } |
4723 } | |
4724 #endif /* FEAT_TOOLBAR */ | |
4725 | |
4726 /* | |
4727 * Check if a given font is a CJK font. This is done in a very crude manner. It | |
4728 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given | |
4729 * font. Consequently, this function cannot be used as a general purpose check | |
4730 * for CJK-ness for which fontconfig APIs should be used. This is only used by | |
4731 * gui_mch_init_font() to deal with 'CJK fixed width fonts'. | |
4732 */ | |
4733 static int | |
4734 is_cjk_font(PangoFontDescription *font_desc) | |
4735 { | |
4736 static const char * const cjk_langs[] = | |
4737 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"}; | |
4738 | |
4739 PangoFont *font; | |
4740 unsigned i; | |
4741 int is_cjk = FALSE; | |
4742 | |
4743 font = pango_context_load_font(gui.text_context, font_desc); | |
4744 | |
4745 if (font == NULL) | |
4746 return FALSE; | |
4747 | |
4748 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i) | |
4749 { | |
4750 PangoCoverage *coverage; | |
4751 gunichar uc; | |
4752 | |
4753 coverage = pango_font_get_coverage( | |
4754 font, pango_language_from_string(cjk_langs[i])); | |
4755 | |
4756 if (coverage != NULL) | |
4757 { | |
4758 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00; | |
4759 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT); | |
4760 pango_coverage_unref(coverage); | |
4761 } | |
4762 } | |
4763 | |
4764 g_object_unref(font); | |
4765 | |
4766 return is_cjk; | |
4767 } | |
4768 | |
445 | 4769 /* |
4770 * Adjust gui.char_height (after 'linespace' was changed). | |
4771 */ | |
7 | 4772 int |
445 | 4773 gui_mch_adjust_charheight(void) |
7 | 4774 { |
4775 PangoFontMetrics *metrics; | |
4776 int ascent; | |
4777 int descent; | |
4778 | |
4779 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font, | |
4780 pango_context_get_language(gui.text_context)); | |
4781 ascent = pango_font_metrics_get_ascent(metrics); | |
4782 descent = pango_font_metrics_get_descent(metrics); | |
4783 | |
4784 pango_font_metrics_unref(metrics); | |
4785 | |
4786 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE | |
445 | 4787 + p_linespace; |
136 | 4788 /* LINTED: avoid warning: bitwise operation on signed value */ |
7 | 4789 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2); |
4790 | |
4791 /* A not-positive value of char_height may crash Vim. Only happens | |
4792 * if 'linespace' is negative (which does make sense sometimes). */ | |
4793 gui.char_ascent = MAX(gui.char_ascent, 0); | |
4794 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1); | |
4795 | |
4796 return OK; | |
4797 } | |
4798 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4799 #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
|
4800 /* 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
|
4801 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4802 font_filter(const PangoFontFamily *family, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4803 const PangoFontFace *face UNUSED, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4804 gpointer data UNUSED) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4805 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4806 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
|
4807 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4808 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4809 |
7 | 4810 /* |
4811 * Put up a font dialog and return the selected font name in allocated memory. | |
4812 * "oldval" is the previous value. Return NULL when cancelled. | |
4813 * This should probably go into gui_gtk.c. Hmm. | |
4814 * FIXME: | |
4815 * The GTK2 font selection dialog has no filtering API. So we could either | |
4816 * a) implement our own (possibly copying the code from somewhere else) or | |
4817 * b) just live with it. | |
4818 */ | |
4819 char_u * | |
4820 gui_mch_font_dialog(char_u *oldval) | |
4821 { | |
4822 GtkWidget *dialog; | |
4823 int response; | |
4824 char_u *fontname = NULL; | |
4825 char_u *oldname; | |
4826 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4827 #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
|
4828 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
|
4829 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
|
4830 NULL, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4831 #else |
7 | 4832 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
|
4833 #endif |
7 | 4834 |
4835 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin)); | |
4836 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE); | |
4837 | |
4838 if (oldval != NULL && oldval[0] != NUL) | |
4839 { | |
4840 if (output_conv.vc_type != CONV_NONE) | |
4841 oldname = string_convert(&output_conv, oldval, NULL); | |
4842 else | |
4843 oldname = oldval; | |
4844 | |
4845 /* Annoying bug in GTK (or Pango): if the font name does not include a | |
4846 * size, zero is used. Use default point size ten. */ | |
4847 if (!vim_isdigit(oldname[STRLEN(oldname) - 1])) | |
4848 { | |
4849 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3); | |
4850 | |
4851 if (p != NULL) | |
4852 { | |
4853 STRCPY(p + STRLEN(p), " 10"); | |
4854 if (oldname != oldval) | |
4855 vim_free(oldname); | |
4856 oldname = p; | |
4857 } | |
4858 } | |
4859 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4860 #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
|
4861 gtk_font_chooser_set_font( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4862 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
|
4863 #else |
7 | 4864 gtk_font_selection_dialog_set_font_name( |
4865 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
|
4866 #endif |
7 | 4867 |
4868 if (oldname != oldval) | |
100 | 4869 vim_free(oldname); |
7 | 4870 } |
1959 | 4871 else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4872 #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
|
4873 gtk_font_chooser_set_font( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4874 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4875 #else |
1959 | 4876 gtk_font_selection_dialog_set_font_name( |
4877 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
|
4878 #endif |
7 | 4879 |
4880 response = gtk_dialog_run(GTK_DIALOG(dialog)); | |
4881 | |
4882 if (response == GTK_RESPONSE_OK) | |
4883 { | |
4884 char *name; | |
4885 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4886 #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
|
4887 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
|
4888 #else |
7 | 4889 name = gtk_font_selection_dialog_get_font_name( |
4890 GTK_FONT_SELECTION_DIALOG(dialog)); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4891 #endif |
7 | 4892 if (name != NULL) |
4893 { | |
714 | 4894 char_u *p; |
4895 | |
4896 /* Apparently some font names include a comma, need to escape | |
4897 * that, because in 'guifont' it separates names. */ | |
4898 p = vim_strsave_escaped((char_u *)name, (char_u *)","); | |
4899 g_free(name); | |
840 | 4900 if (p != NULL && input_conv.vc_type != CONV_NONE) |
714 | 4901 { |
4902 fontname = string_convert(&input_conv, p, NULL); | |
4903 vim_free(p); | |
4904 } | |
7 | 4905 else |
714 | 4906 fontname = p; |
7 | 4907 } |
4908 } | |
4909 | |
4910 if (response != GTK_RESPONSE_NONE) | |
4911 gtk_widget_destroy(dialog); | |
4912 | |
4913 return fontname; | |
4914 } | |
4915 | |
4916 /* | |
4917 * Some monospace fonts don't support a bold weight, and fall back | |
4918 * silently to the regular weight. But this is no good since our text | |
4919 * drawing function can emulate bold by overstriking. So let's try | |
4920 * to detect whether bold weight is actually available and emulate it | |
4921 * otherwise. | |
4922 * | |
4923 * Note that we don't need to check for italic style since Xft can | |
4924 * emulate italic on its own, provided you have a proper fontconfig | |
4925 * setup. We wouldn't be able to emulate it in Vim anyway. | |
4926 */ | |
4927 static void | |
4928 get_styled_font_variants(void) | |
4929 { | |
4930 PangoFontDescription *bold_font_desc; | |
4931 PangoFont *plain_font; | |
4932 PangoFont *bold_font; | |
4933 | |
4934 gui.font_can_bold = FALSE; | |
4935 | |
4936 plain_font = pango_context_load_font(gui.text_context, gui.norm_font); | |
4937 | |
4938 if (plain_font == NULL) | |
4939 return; | |
4940 | |
4941 bold_font_desc = pango_font_description_copy_static(gui.norm_font); | |
4942 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD); | |
4943 | |
4944 bold_font = pango_context_load_font(gui.text_context, bold_font_desc); | |
4945 /* | |
4946 * The comparison relies on the unique handle nature of a PangoFont*, | |
4947 * i.e. it's assumed that a different PangoFont* won't refer to the | |
4948 * same font. Seems to work, and failing here isn't critical anyway. | |
4949 */ | |
4950 if (bold_font != NULL) | |
4951 { | |
4952 gui.font_can_bold = (bold_font != plain_font); | |
4953 g_object_unref(bold_font); | |
4954 } | |
4955 | |
4956 pango_font_description_free(bold_font_desc); | |
4957 g_object_unref(plain_font); | |
4958 } | |
4959 | |
4960 static PangoEngineShape *default_shape_engine = NULL; | |
4961 | |
4962 /* | |
4963 * Create a map from ASCII characters in the range [32,126] to glyphs | |
4964 * of the current font. This is used by gui_gtk2_draw_string() to skip | |
4965 * the itemize and shaping process for the most common case. | |
4966 */ | |
4967 static void | |
4968 ascii_glyph_table_init(void) | |
4969 { | |
9879
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4970 char_u ascii_chars[2 * 128]; |
7 | 4971 PangoAttrList *attr_list; |
4972 GList *item_list; | |
4973 int i; | |
4974 | |
4975 if (gui.ascii_glyphs != NULL) | |
4976 pango_glyph_string_free(gui.ascii_glyphs); | |
4977 if (gui.ascii_font != NULL) | |
4978 g_object_unref(gui.ascii_font); | |
4979 | |
4980 gui.ascii_glyphs = NULL; | |
4981 gui.ascii_font = NULL; | |
4982 | |
9879
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4983 /* 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
|
4984 * 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
|
4985 for (i = 0; i < 128; ++i) |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4986 { |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4987 if (i >= 32 && i < 127) |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4988 ascii_chars[2 * i] = i; |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4989 else |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4990 ascii_chars[2 * i] = '?'; |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4991 ascii_chars[2 * i + 1] = ' '; |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4992 } |
7 | 4993 |
4994 attr_list = pango_attr_list_new(); | |
4995 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars, | |
4996 0, sizeof(ascii_chars), attr_list, NULL); | |
4997 | |
4998 if (item_list != NULL && item_list->next == NULL) /* play safe */ | |
4999 { | |
5000 PangoItem *item; | |
5001 int width; | |
5002 | |
5003 item = (PangoItem *)item_list->data; | |
5004 width = gui.char_width * PANGO_SCALE; | |
5005 | |
5006 /* Remember the shape engine used for ASCII. */ | |
5007 default_shape_engine = item->analysis.shape_engine; | |
5008 | |
5009 gui.ascii_font = item->analysis.font; | |
5010 g_object_ref(gui.ascii_font); | |
5011 | |
5012 gui.ascii_glyphs = pango_glyph_string_new(); | |
5013 | |
5014 pango_shape((const char *)ascii_chars, sizeof(ascii_chars), | |
5015 &item->analysis, gui.ascii_glyphs); | |
5016 | |
5017 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars)); | |
5018 | |
5019 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i) | |
5020 { | |
5021 PangoGlyphGeometry *geom; | |
5022 | |
5023 geom = &gui.ascii_glyphs->glyphs[i].geometry; | |
5024 geom->x_offset += MAX(0, width - geom->width) / 2; | |
5025 geom->width = width; | |
5026 } | |
5027 } | |
5028 | |
5029 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL); | |
5030 g_list_free(item_list); | |
5031 pango_attr_list_unref(attr_list); | |
5032 } | |
5033 | |
5034 /* | |
5035 * Initialize Vim to use the font or fontset with the given name. | |
5036 * Return FAIL if the font could not be loaded, OK otherwise. | |
5037 */ | |
5038 int | |
1884 | 5039 gui_mch_init_font(char_u *font_name, int fontset UNUSED) |
7 | 5040 { |
5041 PangoFontDescription *font_desc; | |
5042 PangoLayout *layout; | |
5043 int width; | |
5044 | |
5045 /* If font_name is NULL, this means to use the default, which should | |
5046 * be present on all proper Pango/fontconfig installations. */ | |
5047 if (font_name == NULL) | |
5048 font_name = (char_u *)DEFAULT_FONT; | |
5049 | |
5050 font_desc = gui_mch_get_font(font_name, FALSE); | |
5051 | |
5052 if (font_desc == NULL) | |
5053 return FAIL; | |
5054 | |
5055 gui_mch_free_font(gui.norm_font); | |
5056 gui.norm_font = font_desc; | |
5057 | |
5058 pango_context_set_font_description(gui.text_context, font_desc); | |
5059 | |
5060 layout = pango_layout_new(gui.text_context); | |
5061 pango_layout_set_text(layout, "MW", 2); | |
5062 pango_layout_get_size(layout, &width, NULL); | |
5063 /* | |
5064 * Set char_width to half the width obtained from pango_layout_get_size() | |
5065 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads | |
5066 * Pango to use the same width for both non-CJK characters (e.g. Latin | |
5067 * letters and numbers) and CJK characters. This results in 's p a c e d | |
5068 * o u t' rendering when a CJK 'fixed width' font is used. To work around | |
5069 * that, divide the width returned by Pango by 2 if cjk_width is equal to | |
5070 * width for CJK fonts. | |
5071 * | |
5072 * For related bugs, see: | |
5073 * http://bugzilla.gnome.org/show_bug.cgi?id=106618 | |
5074 * http://bugzilla.gnome.org/show_bug.cgi?id=106624 | |
5075 * | |
5076 * With this, for all four of the following cases, Vim works fine: | |
5077 * guifont=CJK_fixed_width_font | |
5078 * guifont=Non_CJK_fixed_font | |
5079 * guifont=Non_CJK_fixed_font,CJK_Fixed_font | |
5080 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font | |
5081 */ | |
5082 if (is_cjk_font(gui.norm_font)) | |
5083 { | |
5084 int cjk_width; | |
5085 | |
5086 /* Measure the text extent of U+4E00 and U+4E8C */ | |
5087 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1); | |
5088 pango_layout_get_size(layout, &cjk_width, NULL); | |
5089 | |
5090 if (width == cjk_width) /* Xft not patched */ | |
5091 width /= 2; | |
5092 } | |
5093 g_object_unref(layout); | |
5094 | |
5095 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE; | |
5096 | |
5097 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */ | |
5098 if (gui.char_width <= 0) | |
5099 gui.char_width = 8; | |
5100 | |
445 | 5101 gui_mch_adjust_charheight(); |
7 | 5102 |
5103 /* Set the fontname, which will be used for information purposes */ | |
5104 hl_set_font_name(font_name); | |
5105 | |
5106 get_styled_font_variants(); | |
5107 ascii_glyph_table_init(); | |
5108 | |
5109 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */ | |
5110 if (gui.wide_font != NULL | |
5111 && pango_font_description_equal(gui.norm_font, gui.wide_font)) | |
5112 { | |
5113 pango_font_description_free(gui.wide_font); | |
5114 gui.wide_font = NULL; | |
5115 } | |
5116 | |
1986 | 5117 if (gui_mch_maximized()) |
5118 { | |
5119 /* Update lines and columns in accordance with the new font, keep the | |
5120 * window maximized. */ | |
3014 | 5121 gui_mch_newfont(); |
1986 | 5122 } |
5123 else | |
5124 { | |
5125 /* Preserve the logical dimensions of the screen. */ | |
5126 update_window_manager_hints(0, 0); | |
5127 } | |
7 | 5128 |
5129 return OK; | |
5130 } | |
5131 | |
5132 /* | |
5133 * Get a reference to the font "name". | |
5134 * Return zero for failure. | |
5135 */ | |
5136 GuiFont | |
5137 gui_mch_get_font(char_u *name, int report_error) | |
5138 { | |
5139 PangoFontDescription *font; | |
5140 | |
5141 /* can't do this when GUI is not running */ | |
5142 if (!gui.in_use || name == NULL) | |
5143 return NULL; | |
5144 | |
5145 if (output_conv.vc_type != CONV_NONE) | |
5146 { | |
5147 char_u *buf; | |
5148 | |
5149 buf = string_convert(&output_conv, name, NULL); | |
5150 if (buf != NULL) | |
5151 { | |
5152 font = pango_font_description_from_string((const char *)buf); | |
5153 vim_free(buf); | |
5154 } | |
5155 else | |
5156 font = NULL; | |
5157 } | |
5158 else | |
5159 font = pango_font_description_from_string((const char *)name); | |
5160 | |
5161 if (font != NULL) | |
5162 { | |
5163 PangoFont *real_font; | |
5164 | |
5165 /* pango_context_load_font() bails out if no font size is set */ | |
5166 if (pango_font_description_get_size(font) <= 0) | |
5167 pango_font_description_set_size(font, 10 * PANGO_SCALE); | |
5168 | |
5169 real_font = pango_context_load_font(gui.text_context, font); | |
5170 | |
5171 if (real_font == NULL) | |
5172 { | |
5173 pango_font_description_free(font); | |
5174 font = NULL; | |
5175 } | |
5176 else | |
5177 g_object_unref(real_font); | |
5178 } | |
5179 | |
5180 if (font == NULL) | |
5181 { | |
5182 if (report_error) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15134
diff
changeset
|
5183 semsg(_((char *)e_font), name); |
7 | 5184 return NULL; |
5185 } | |
5186 | |
5187 return font; | |
5188 } | |
5189 | |
39 | 5190 #if defined(FEAT_EVAL) || defined(PROTO) |
38 | 5191 /* |
5192 * Return the name of font "font" in allocated memory. | |
5193 */ | |
5194 char_u * | |
1884 | 5195 gui_mch_get_fontname(GuiFont font, char_u *name UNUSED) |
38 | 5196 { |
5197 if (font != NOFONT) | |
5198 { | |
944 | 5199 char *pangoname = pango_font_description_to_string(font); |
5200 | |
5201 if (pangoname != NULL) | |
38 | 5202 { |
944 | 5203 char_u *s = vim_strsave((char_u *)pangoname); |
5204 | |
5205 g_free(pangoname); | |
38 | 5206 return s; |
5207 } | |
5208 } | |
5209 return NULL; | |
5210 } | |
39 | 5211 #endif |
38 | 5212 |
7 | 5213 /* |
5214 * If a font is not going to be used, free its structure. | |
5215 */ | |
5216 void | |
5217 gui_mch_free_font(GuiFont font) | |
5218 { | |
5219 if (font != NOFONT) | |
5220 pango_font_description_free(font); | |
5221 } | |
5222 | |
5223 /* | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5224 * 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
|
5225 * |
7 | 5226 * Return INVALCOLOR for error. |
5227 */ | |
5228 guicolor_T | |
5229 gui_mch_get_color(char_u *name) | |
5230 { | |
13674
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5231 guicolor_T color = INVALCOLOR; |
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5232 |
7 | 5233 if (!gui.in_use) /* can't do this when GUI not running */ |
13674
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5234 return color; |
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5235 |
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5236 if (name != NULL) |
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5237 color = gui_get_color_cmn(name); |
7 | 5238 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5239 #if GTK_CHECK_VERSION(3,0,0) |
13674
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5240 return color; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5241 #else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5242 if (color == INVALCOLOR) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5243 return INVALCOLOR; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5244 |
11745
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5245 return gui_mch_get_rgb_color( |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5246 (color & 0xff0000) >> 16, |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5247 (color & 0xff00) >> 8, |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5248 color & 0xff); |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5249 #endif |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5250 } |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5251 |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5252 /* |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5253 * Return the Pixel value (color) for the given RGB values. |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5254 * Return INVALCOLOR for error. |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5255 */ |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5256 guicolor_T |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5257 gui_mch_get_rgb_color(int r, int g, int b) |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5258 { |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5259 #if GTK_CHECK_VERSION(3,0,0) |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5260 return gui_get_rgb_color_cmn(r, g, b); |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5261 #else |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5262 GdkColor gcolor; |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5263 int ret; |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5264 |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5265 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5); |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5266 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5); |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5267 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5268 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5269 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
|
5270 &gcolor, FALSE, TRUE); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5271 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5272 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
|
5273 #endif |
7 | 5274 } |
5275 | |
5276 /* | |
5277 * Set the current text foreground color. | |
5278 */ | |
5279 void | |
5280 gui_mch_set_fg_color(guicolor_T color) | |
5281 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5282 #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
|
5283 *gui.fgcolor = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5284 #else |
7 | 5285 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
|
5286 #endif |
7 | 5287 } |
5288 | |
5289 /* | |
5290 * Set the current text background color. | |
5291 */ | |
5292 void | |
5293 gui_mch_set_bg_color(guicolor_T color) | |
5294 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5295 #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
|
5296 *gui.bgcolor = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5297 #else |
7 | 5298 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
|
5299 #endif |
7 | 5300 } |
5301 | |
207 | 5302 /* |
5303 * Set the current text special color. | |
5304 */ | |
5305 void | |
5306 gui_mch_set_sp_color(guicolor_T color) | |
5307 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5308 #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
|
5309 *gui.spcolor = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5310 #else |
207 | 5311 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
|
5312 #endif |
207 | 5313 } |
5314 | |
7 | 5315 /* |
5316 * Function-like convenience macro for the sake of efficiency. | |
5317 */ | |
5318 #define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \ | |
5319 G_STMT_START{ \ | |
5320 PangoAttribute *tmp_attr_; \ | |
5321 tmp_attr_ = (Attribute); \ | |
5322 tmp_attr_->start_index = (Start); \ | |
5323 tmp_attr_->end_index = (End); \ | |
5324 pango_attr_list_insert((AttrList), tmp_attr_); \ | |
5325 }G_STMT_END | |
5326 | |
5327 static void | |
5328 apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list) | |
5329 { | |
5330 char_u *start = NULL; | |
5331 char_u *p; | |
5332 int uc; | |
5333 | |
5334 for (p = s; p < s + len; p += utf_byte2len(*p)) | |
5335 { | |
5336 uc = utf_ptr2char(p); | |
5337 | |
5338 if (start == NULL) | |
5339 { | |
5340 if (uc >= 0x80 && utf_char2cells(uc) == 2) | |
5341 start = p; | |
5342 } | |
5343 else if (uc < 0x80 /* optimization shortcut */ | |
5344 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc))) | |
5345 { | |
5346 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), | |
5347 attr_list, start - s, p - s); | |
5348 start = NULL; | |
5349 } | |
5350 } | |
5351 | |
5352 if (start != NULL) | |
5353 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), | |
5354 attr_list, start - s, len); | |
5355 } | |
5356 | |
5357 static int | |
5358 count_cluster_cells(char_u *s, PangoItem *item, | |
5359 PangoGlyphString* glyphs, int i, | |
5360 int *cluster_width, | |
5361 int *last_glyph_rbearing) | |
5362 { | |
5363 char_u *p; | |
5364 int next; /* glyph start index of next cluster */ | |
5365 int start, end; /* string segment of current cluster */ | |
5366 int width; /* real cluster width in Pango units */ | |
5367 int uc; | |
5368 int cellcount = 0; | |
5369 | |
5370 width = glyphs->glyphs[i].geometry.width; | |
5371 | |
5372 for (next = i + 1; next < glyphs->num_glyphs; ++next) | |
5373 { | |
5374 if (glyphs->glyphs[next].attr.is_cluster_start) | |
5375 break; | |
5376 else if (glyphs->glyphs[next].geometry.width > width) | |
5377 width = glyphs->glyphs[next].geometry.width; | |
5378 } | |
5379 | |
5380 start = item->offset + glyphs->log_clusters[i]; | |
5381 end = item->offset + ((next < glyphs->num_glyphs) ? | |
5382 glyphs->log_clusters[next] : item->length); | |
5383 | |
5384 for (p = s + start; p < s + end; p += utf_byte2len(*p)) | |
5385 { | |
5386 uc = utf_ptr2char(p); | |
5387 if (uc < 0x80) | |
5388 ++cellcount; | |
5389 else if (!utf_iscomposing(uc)) | |
5390 cellcount += utf_char2cells(uc); | |
5391 } | |
5392 | |
5393 if (last_glyph_rbearing != NULL | |
5394 && cellcount > 0 && next == glyphs->num_glyphs) | |
5395 { | |
5396 PangoRectangle ink_rect; | |
5397 /* | |
5398 * If a certain combining mark had to be taken from a non-monospace | |
5399 * font, we have to compensate manually by adapting x_offset according | |
5400 * to the ink extents of the previous glyph. | |
5401 */ | |
5402 pango_font_get_glyph_extents(item->analysis.font, | |
5403 glyphs->glyphs[i].glyph, | |
5404 &ink_rect, NULL); | |
5405 | |
5406 if (PANGO_RBEARING(ink_rect) > 0) | |
5407 *last_glyph_rbearing = PANGO_RBEARING(ink_rect); | |
5408 } | |
5409 | |
5410 if (cellcount > 0) | |
5411 *cluster_width = width; | |
5412 | |
5413 return cellcount; | |
5414 } | |
5415 | |
5416 /* | |
5417 * If there are only combining characters in the cluster, we cannot just | |
5418 * change the width of the previous glyph since there is none. Therefore | |
5419 * some guesswork is needed. | |
5420 * | |
5421 * If ink_rect.x is negative Pango apparently has taken care of the composing | |
5422 * by itself. Actually setting x_offset = 0 should be sufficient then, but due | |
5423 * 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
|
5424 * x_offset to avoid ugliness. |
7 | 5425 * |
5426 * If ink_rect.x is not negative, force overstriking by pointing x_offset to | |
5427 * the position of the previous glyph. Apparently this happens only with old | |
5428 * X fonts which don't provide the special combining information needed by | |
5429 * Pango. | |
5430 */ | |
5431 static void | |
5432 setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph, | |
5433 int last_cellcount, int last_cluster_width, | |
5434 int last_glyph_rbearing) | |
5435 { | |
5436 PangoRectangle ink_rect; | |
5437 PangoRectangle logical_rect; | |
5438 int width; | |
5439 | |
5440 width = last_cellcount * gui.char_width * PANGO_SCALE; | |
5441 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2; | |
5442 glyph->geometry.width = 0; | |
5443 | |
5444 pango_font_get_glyph_extents(item->analysis.font, | |
5445 glyph->glyph, | |
5446 &ink_rect, &logical_rect); | |
5447 if (ink_rect.x < 0) | |
5448 { | |
5449 glyph->geometry.x_offset += last_glyph_rbearing; | |
5450 glyph->geometry.y_offset = logical_rect.height | |
5451 - (gui.char_height - p_linespace) * PANGO_SCALE; | |
5452 } | |
2507
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
5453 else |
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
5454 /* 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
|
5455 * 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
|
5456 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2; |
7 | 5457 } |
5458 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5459 #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
|
5460 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5461 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
|
5462 PangoFont *font, PangoGlyphString *glyphs, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5463 cairo_t *cr) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5464 #else |
7 | 5465 static void |
5466 draw_glyph_string(int row, int col, int num_cells, int flags, | |
5467 PangoFont *font, PangoGlyphString *glyphs) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5468 #endif |
7 | 5469 { |
5470 if (!(flags & DRAW_TRANSP)) | |
5471 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5472 #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
|
5473 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5474 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
|
5475 gui.bgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5476 cairo_rectangle(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5477 FILL_X(col), FILL_Y(row), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5478 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
|
5479 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5480 #else |
7 | 5481 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
5482 | |
5483 gdk_draw_rectangle(gui.drawarea->window, | |
5484 gui.text_gc, | |
5485 TRUE, | |
5486 FILL_X(col), | |
5487 FILL_Y(row), | |
5488 num_cells * gui.char_width, | |
5489 gui.char_height); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5490 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5491 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5492 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5493 #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
|
5494 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5495 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
|
5496 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5497 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
|
5498 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
|
5499 #else |
7 | 5500 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
5501 | |
5502 gdk_draw_glyphs(gui.drawarea->window, | |
5503 gui.text_gc, | |
5504 font, | |
5505 TEXT_X(col), | |
5506 TEXT_Y(row), | |
5507 glyphs); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5508 #endif |
7 | 5509 |
5510 /* redraw the contents with an offset of 1 to emulate bold */ | |
5511 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
|
5512 #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
|
5513 { |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5514 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5515 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
|
5516 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5517 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
|
5518 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
|
5519 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5520 #else |
7 | 5521 gdk_draw_glyphs(gui.drawarea->window, |
5522 gui.text_gc, | |
5523 font, | |
5524 TEXT_X(col) + 1, | |
5525 TEXT_Y(row), | |
5526 glyphs); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5527 #endif |
7 | 5528 } |
5529 | |
207 | 5530 /* |
5531 * Draw underline and undercurl at the bottom of the character cell. | |
5532 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5533 #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
|
5534 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5535 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
|
5536 #else |
207 | 5537 static void |
5538 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
|
5539 #endif |
207 | 5540 { |
5541 int i; | |
5542 int offset; | |
1884 | 5543 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 }; |
207 | 5544 int y = FILL_Y(row + 1) - 1; |
5545 | |
5546 /* Undercurl: draw curl at the bottom of the character cell. */ | |
5547 if (flags & DRAW_UNDERC) | |
5548 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5549 #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
|
5550 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
|
5551 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
|
5552 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5553 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
|
5554 gui.spcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5555 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
|
5556 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5557 offset = val[i % 8]; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5558 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
|
5559 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5560 cairo_stroke(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5561 #else |
207 | 5562 gdk_gc_set_foreground(gui.text_gc, gui.spcolor); |
5563 for (i = FILL_X(col); i < FILL_X(col + cells); ++i) | |
5564 { | |
5565 offset = val[i % 8]; | |
5566 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset); | |
5567 } | |
5568 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
|
5569 #endif |
207 | 5570 } |
5571 | |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5572 /* Draw a strikethrough line */ |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5573 if (flags & DRAW_STRIKE) |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5574 { |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5575 #if GTK_CHECK_VERSION(3,0,0) |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5576 cairo_set_line_width(cr, 1.0); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5577 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5578 cairo_set_source_rgba(cr, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5579 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5580 gui.spcolor->alpha); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5581 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5582 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5583 cairo_stroke(cr); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5584 #else |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5585 gdk_gc_set_foreground(gui.text_gc, gui.spcolor); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5586 gdk_draw_line(gui.drawarea->window, gui.text_gc, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5587 FILL_X(col), y + 1 - gui.char_height/2, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5588 FILL_X(col + cells), y + 1 - gui.char_height/2); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5589 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5590 #endif |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5591 } |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5592 |
207 | 5593 /* Underline: draw a line at the bottom of the character cell. */ |
5594 if (flags & DRAW_UNDERL) | |
5595 { | |
5596 /* When p_linespace is 0, overwrite the bottom row of pixels. | |
5597 * Otherwise put the line just below the character. */ | |
5598 if (p_linespace > 1) | |
5599 y -= p_linespace - 1; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5600 #if GTK_CHECK_VERSION(3,0,0) |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5601 cairo_set_line_width(cr, 1.0); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5602 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5603 cairo_set_source_rgba(cr, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5604 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5605 gui.fgcolor->alpha); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5606 cairo_move_to(cr, FILL_X(col), y + 0.5); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5607 cairo_line_to(cr, FILL_X(col + cells), y + 0.5); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5608 cairo_stroke(cr); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5609 #else |
207 | 5610 gdk_draw_line(gui.drawarea->window, gui.text_gc, |
5611 FILL_X(col), y, | |
5612 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
|
5613 #endif |
207 | 5614 } |
5615 } | |
5616 | |
7 | 5617 int |
5618 gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags) | |
5619 { | |
5620 GdkRectangle area; /* area for clip mask */ | |
5621 PangoGlyphString *glyphs; /* glyphs of current item */ | |
5622 int column_offset = 0; /* column offset in cells */ | |
5623 int i; | |
5624 char_u *conv_buf = NULL; /* result of UTF-8 conversion */ | |
5625 char_u *new_conv_buf; | |
5626 int convlen; | |
5627 char_u *sp, *bp; | |
5628 int plen; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5629 #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
|
5630 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5631 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5632 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5633 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL) |
7 | 5634 return len; |
5635 | |
5636 if (output_conv.vc_type != CONV_NONE) | |
5637 { | |
5638 /* | |
5639 * Convert characters from 'encoding' to 'termencoding', which is set | |
5640 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c | |
5641 * prohibits changing this to something else than UTF-8 if the GUI is | |
5642 * in use. | |
5643 */ | |
5644 convlen = len; | |
5645 conv_buf = string_convert(&output_conv, s, &convlen); | |
5646 g_return_val_if_fail(conv_buf != NULL, len); | |
5647 | |
5648 /* Correct for differences in char width: some chars are | |
5649 * double-wide in 'encoding' but single-wide in utf-8. Add a space to | |
5650 * compensate for that. */ | |
5651 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; ) | |
5652 { | |
474 | 5653 plen = utf_ptr2len(bp); |
7 | 5654 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1) |
5655 { | |
5656 new_conv_buf = alloc(convlen + 2); | |
5657 if (new_conv_buf == NULL) | |
5658 return len; | |
5659 plen += bp - conv_buf; | |
5660 mch_memmove(new_conv_buf, conv_buf, plen); | |
5661 new_conv_buf[plen] = ' '; | |
5662 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen, | |
5663 convlen - plen + 1); | |
5664 vim_free(conv_buf); | |
5665 conv_buf = new_conv_buf; | |
5666 ++convlen; | |
5667 bp = conv_buf + plen; | |
5668 plen = 1; | |
5669 } | |
474 | 5670 sp += (*mb_ptr2len)(sp); |
7 | 5671 bp += plen; |
5672 } | |
5673 s = conv_buf; | |
5674 len = convlen; | |
5675 } | |
5676 | |
5677 /* | |
5678 * Restrict all drawing to the current screen line in order to prevent | |
5679 * fuzzy font lookups from messing up the screen. | |
5680 */ | |
5681 area.x = gui.border_offset; | |
5682 area.y = FILL_Y(row); | |
5683 area.width = gui.num_cols * gui.char_width; | |
5684 area.height = gui.char_height; | |
5685 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5686 #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
|
5687 cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5688 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
|
5689 cairo_clip(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5690 #else |
7 | 5691 gdk_gc_set_clip_origin(gui.text_gc, 0, 0); |
5692 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
|
5693 #endif |
7 | 5694 |
5695 glyphs = pango_glyph_string_new(); | |
5696 | |
5697 /* | |
5698 * Optimization hack: If possible, skip the itemize and shaping process | |
5699 * for pure ASCII strings. This optimization is particularly effective | |
5700 * because Vim draws space characters to clear parts of the screen. | |
5701 */ | |
5702 if (!(flags & DRAW_ITALIC) | |
5703 && !((flags & DRAW_BOLD) && gui.font_can_bold) | |
5704 && gui.ascii_glyphs != NULL) | |
5705 { | |
5706 char_u *p; | |
5707 | |
5708 for (p = s; p < s + len; ++p) | |
5709 if (*p & 0x80) | |
5710 goto not_ascii; | |
5711 | |
5712 pango_glyph_string_set_size(glyphs, len); | |
5713 | |
5714 for (i = 0; i < len; ++i) | |
5715 { | |
9879
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5716 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]]; |
7 | 5717 glyphs->log_clusters[i] = i; |
5718 } | |
5719 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5720 #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
|
5721 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
|
5722 #else |
7 | 5723 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
|
5724 #endif |
7 | 5725 |
5726 column_offset = len; | |
5727 } | |
5728 else | |
5729 not_ascii: | |
5730 { | |
5731 PangoAttrList *attr_list; | |
5732 GList *item_list; | |
5733 int cluster_width; | |
5734 int last_glyph_rbearing; | |
5735 int cells = 0; /* cells occupied by current cluster */ | |
5736 | |
26 | 5737 /* Safety check: pango crashes when invoked with invalid utf-8 |
5738 * characters. */ | |
5739 if (!utf_valid_string(s, s + len)) | |
5740 { | |
5741 column_offset = len; | |
5742 goto skipitall; | |
5743 } | |
5744 | |
7 | 5745 /* original width of the current cluster */ |
5746 cluster_width = PANGO_SCALE * gui.char_width; | |
5747 | |
5748 /* right bearing of the last non-composing glyph */ | |
5749 last_glyph_rbearing = PANGO_SCALE * gui.char_width; | |
5750 | |
5751 attr_list = pango_attr_list_new(); | |
5752 | |
5753 /* If 'guifontwide' is set then use that for double-width characters. | |
5754 * Otherwise just go with 'guifont' and let Pango do its thing. */ | |
5755 if (gui.wide_font != NULL) | |
5756 apply_wide_font_attr(s, len, attr_list); | |
5757 | |
5758 if ((flags & DRAW_BOLD) && gui.font_can_bold) | |
5759 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD), | |
5760 attr_list, 0, len); | |
5761 if (flags & DRAW_ITALIC) | |
5762 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC), | |
5763 attr_list, 0, len); | |
5764 /* | |
5765 * Break the text into segments with consistent directional level | |
5766 * and shaping engine. Pure Latin text needs only a single segment, | |
5767 * so there's no need to worry about the loop's efficiency. Better | |
5768 * try to optimize elsewhere, e.g. reducing exposes and stuff :) | |
5769 */ | |
5770 item_list = pango_itemize(gui.text_context, | |
5771 (const char *)s, 0, len, attr_list, NULL); | |
5772 | |
5773 while (item_list != NULL) | |
5774 { | |
5775 PangoItem *item; | |
5776 int item_cells = 0; /* item length in cells */ | |
5777 | |
5778 item = (PangoItem *)item_list->data; | |
5779 item_list = g_list_delete_link(item_list, item_list); | |
5780 /* | |
5781 * Increment the bidirectional embedding level by 1 if it is not | |
5782 * even. An odd number means the output will be RTL, but we don't | |
5783 * want that since Vim handles right-to-left text on its own. It | |
5784 * would probably be sufficient to just set level = 0, but you can | |
5785 * never know :) | |
5786 * | |
5787 * Unfortunately we can't take advantage of Pango's ability to | |
5788 * render both LTR and RTL at the same time. In order to support | |
5789 * that, Vim's main screen engine would have to make use of Pango | |
5790 * functionality. | |
5791 */ | |
5792 item->analysis.level = (item->analysis.level + 1) & (~1U); | |
5793 | |
5794 /* HACK: Overrule the shape engine, we don't want shaping to be | |
5795 * done, because drawing the cursor would change the display. */ | |
5796 item->analysis.shape_engine = default_shape_engine; | |
5797 | |
7098
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
5798 #ifdef HAVE_PANGO_SHAPE_FULL |
7086
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
5799 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
|
5800 (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
|
5801 #else |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
5802 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
|
5803 &item->analysis, glyphs); |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
5804 #endif |
7 | 5805 /* |
5806 * Fixed-width hack: iterate over the array and assign a fixed | |
5807 * width to each glyph, thus overriding the choice made by the | |
5808 * shaping engine. We use utf_char2cells() to determine the | |
5809 * number of cells needed. | |
5810 * | |
5811 * Also perform all kind of dark magic to get composing | |
5812 * characters right (and pretty too of course). | |
5813 */ | |
5814 for (i = 0; i < glyphs->num_glyphs; ++i) | |
5815 { | |
5816 PangoGlyphInfo *glyph; | |
5817 | |
5818 glyph = &glyphs->glyphs[i]; | |
5819 | |
5820 if (glyph->attr.is_cluster_start) | |
5821 { | |
5822 int cellcount; | |
5823 | |
5824 cellcount = count_cluster_cells( | |
5825 s, item, glyphs, i, &cluster_width, | |
5826 (item_list != NULL) ? &last_glyph_rbearing : NULL); | |
5827 | |
5828 if (cellcount > 0) | |
5829 { | |
5830 int width; | |
5831 | |
5832 width = cellcount * gui.char_width * PANGO_SCALE; | |
5833 glyph->geometry.x_offset += | |
5834 MAX(0, width - cluster_width) / 2; | |
5835 glyph->geometry.width = width; | |
5836 } | |
5837 else | |
5838 { | |
5839 /* If there are only combining characters in the | |
5840 * cluster, we cannot just change the width of the | |
5841 * previous glyph since there is none. Therefore | |
5842 * some guesswork is needed. */ | |
5843 setup_zero_width_cluster(item, glyph, cells, | |
5844 cluster_width, | |
5845 last_glyph_rbearing); | |
5846 } | |
5847 | |
5848 item_cells += cellcount; | |
5849 cells = cellcount; | |
5850 } | |
5851 else if (i > 0) | |
5852 { | |
5853 int width; | |
5854 | |
5855 /* 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
|
5856 * characters the canonical way. |
2517
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5857 * 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
|
5858 * 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
|
5859 * and set the previous width to zero. |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5860 * 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
|
5861 * 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
|
5862 * 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
|
5863 * 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
|
5864 * 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
|
5865 if (glyph->geometry.x_offset >= 0) |
2517
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5866 { |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5867 glyphs->glyphs[i].geometry.width = |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5868 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
|
5869 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
|
5870 } |
7 | 5871 width = cells * gui.char_width * PANGO_SCALE; |
5872 glyph->geometry.x_offset += | |
5873 MAX(0, width - cluster_width) / 2; | |
5874 } | |
5875 else /* i == 0 "cannot happen" */ | |
5876 { | |
5877 glyph->geometry.width = 0; | |
5878 } | |
5879 } | |
5880 | |
5881 /*** Aaaaand action! ***/ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5882 #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
|
5883 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
|
5884 flags, item->analysis.font, glyphs, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5885 cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5886 #else |
7 | 5887 draw_glyph_string(row, col + column_offset, item_cells, |
5888 flags, item->analysis.font, glyphs); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5889 #endif |
7 | 5890 |
5891 pango_item_free(item); | |
5892 | |
5893 column_offset += item_cells; | |
5894 } | |
5895 | |
5896 pango_attr_list_unref(attr_list); | |
5897 } | |
5898 | |
26 | 5899 skipitall: |
207 | 5900 /* Draw underline and undercurl. */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5901 #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
|
5902 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
|
5903 #else |
207 | 5904 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
|
5905 #endif |
7 | 5906 |
5907 pango_glyph_string_free(glyphs); | |
5908 vim_free(conv_buf); | |
5909 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5910 #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
|
5911 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5912 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5913 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
|
5914 &area, FALSE); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5915 #else |
7 | 5916 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
|
5917 #endif |
7 | 5918 |
5919 return column_offset; | |
5920 } | |
5921 | |
5922 /* | |
5923 * Return OK if the key with the termcap name "name" is supported. | |
5924 */ | |
5925 int | |
5926 gui_mch_haskey(char_u *name) | |
5927 { | |
5928 int i; | |
5929 | |
5930 for (i = 0; special_keys[i].key_sym != 0; i++) | |
5931 if (name[0] == special_keys[i].code0 | |
5932 && name[1] == special_keys[i].code1) | |
5933 return OK; | |
5934 return FAIL; | |
5935 } | |
5936 | |
4133 | 5937 #if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO) |
7 | 5938 /* |
5939 * Return the text window-id and display. Only required for X-based GUI's | |
5940 */ | |
5941 int | |
5942 gui_get_x11_windis(Window *win, Display **dis) | |
5943 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5944 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL) |
14712
82e7ce311065
patch 8.1.0368: GTK code has too many #ifdefs and GTK 2.10 building fails
Christian Brabandt <cb@256bit.org>
parents:
14575
diff
changeset
|
5945 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5946 *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
|
5947 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)); |
7 | 5948 return OK; |
5949 } | |
5950 | |
5951 *dis = NULL; | |
5952 *win = 0; | |
5953 return FAIL; | |
5954 } | |
5955 #endif | |
5956 | |
5957 #if defined(FEAT_CLIENTSERVER) \ | |
5958 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO) | |
5959 | |
5960 Display * | |
5961 gui_mch_get_display(void) | |
5962 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5963 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
|
5964 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
7 | 5965 else |
5966 return NULL; | |
5967 } | |
5968 #endif | |
5969 | |
5970 void | |
5971 gui_mch_beep(void) | |
5972 { | |
5973 GdkDisplay *display; | |
5974 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5975 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
7 | 5976 display = gtk_widget_get_display(gui.mainwin); |
5977 else | |
5978 display = gdk_display_get_default(); | |
5979 | |
5980 if (display != NULL) | |
5981 gdk_display_beep(display); | |
5982 } | |
5983 | |
5984 void | |
5985 gui_mch_flash(int msec) | |
5986 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5987 #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
|
5988 /* TODO Replace GdkGC with Cairo */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5989 (void)msec; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5990 #else |
7 | 5991 GdkGCValues values; |
5992 GdkGC *invert_gc; | |
5993 | |
5994 if (gui.drawarea->window == NULL) | |
5995 return; | |
5996 | |
5997 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; | |
5998 values.background.pixel = gui.norm_pixel ^ gui.back_pixel; | |
5999 values.function = GDK_XOR; | |
6000 invert_gc = gdk_gc_new_with_values(gui.drawarea->window, | |
6001 &values, | |
6002 GDK_GC_FOREGROUND | | |
6003 GDK_GC_BACKGROUND | | |
6004 GDK_GC_FUNCTION); | |
6005 gdk_gc_set_exposures(invert_gc, | |
6006 gui.visibility != GDK_VISIBILITY_UNOBSCURED); | |
6007 /* | |
6008 * Do a visual beep by changing back and forth in some undetermined way, | |
6009 * the foreground and background colors. This is due to the fact that | |
6010 * there can't be really any prediction about the effects of XOR on | |
6011 * arbitrary X11 servers. However this seems to be enough for what we | |
6012 * intend it to do. | |
6013 */ | |
6014 gdk_draw_rectangle(gui.drawarea->window, invert_gc, | |
6015 TRUE, | |
6016 0, 0, | |
6017 FILL_X((int)Columns) + gui.border_offset, | |
6018 FILL_Y((int)Rows) + gui.border_offset); | |
6019 | |
6020 gui_mch_flush(); | |
6021 ui_delay((long)msec, TRUE); /* wait so many msec */ | |
6022 | |
6023 gdk_draw_rectangle(gui.drawarea->window, invert_gc, | |
6024 TRUE, | |
6025 0, 0, | |
6026 FILL_X((int)Columns) + gui.border_offset, | |
6027 FILL_Y((int)Rows) + gui.border_offset); | |
6028 | |
6029 gdk_gc_destroy(invert_gc); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6030 #endif |
7 | 6031 } |
6032 | |
6033 /* | |
6034 * Invert a rectangle from row r, column c, for nr rows and nc columns. | |
6035 */ | |
6036 void | |
6037 gui_mch_invert_rectangle(int r, int c, int nr, int nc) | |
6038 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6039 #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
|
6040 const GdkRectangle rect = { |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6041 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
|
6042 }; |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6043 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
|
6044 |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6045 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
|
6046 # 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
|
6047 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
|
6048 # else |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6049 /* 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
|
6050 # endif |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6051 gdk_cairo_rectangle(cr, &rect); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6052 cairo_fill(cr); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6053 |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6054 cairo_destroy(cr); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6055 |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6056 if (!gui.by_signal) |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6057 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
|
6058 rect.width, rect.height); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6059 #else |
7 | 6060 GdkGCValues values; |
6061 GdkGC *invert_gc; | |
6062 | |
6063 if (gui.drawarea->window == NULL) | |
6064 return; | |
6065 | |
944 | 6066 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
6067 values.background.pixel = gui.norm_pixel ^ gui.back_pixel; | |
7 | 6068 values.function = GDK_XOR; |
6069 invert_gc = gdk_gc_new_with_values(gui.drawarea->window, | |
6070 &values, | |
6071 GDK_GC_FOREGROUND | | |
6072 GDK_GC_BACKGROUND | | |
6073 GDK_GC_FUNCTION); | |
944 | 6074 gdk_gc_set_exposures(invert_gc, gui.visibility != |
6075 GDK_VISIBILITY_UNOBSCURED); | |
7 | 6076 gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
6077 TRUE, | |
6078 FILL_X(c), FILL_Y(r), | |
6079 (nc) * gui.char_width, (nr) * gui.char_height); | |
6080 gdk_gc_destroy(invert_gc); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6081 #endif |
7 | 6082 } |
6083 | |
6084 /* | |
6085 * Iconify the GUI window. | |
6086 */ | |
6087 void | |
6088 gui_mch_iconify(void) | |
6089 { | |
6090 gtk_window_iconify(GTK_WINDOW(gui.mainwin)); | |
6091 } | |
6092 | |
6093 #if defined(FEAT_EVAL) || defined(PROTO) | |
6094 /* | |
6095 * Bring the Vim window to the foreground. | |
6096 */ | |
6097 void | |
6098 gui_mch_set_foreground(void) | |
6099 { | |
6100 gtk_window_present(GTK_WINDOW(gui.mainwin)); | |
6101 } | |
6102 #endif | |
6103 | |
6104 /* | |
6105 * Draw a cursor without focus. | |
6106 */ | |
6107 void | |
6108 gui_mch_draw_hollow_cursor(guicolor_T color) | |
6109 { | |
6110 int i = 1; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6111 #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
|
6112 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6113 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6114 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6115 if (gtk_widget_get_window(gui.drawarea) == NULL) |
7 | 6116 return; |
6117 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6118 #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
|
6119 cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6120 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6121 |
7 | 6122 gui_mch_set_fg_color(color); |
6123 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6124 #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
|
6125 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6126 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
|
6127 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6128 #else |
7 | 6129 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
|
6130 #endif |
7 | 6131 if (mb_lefthalve(gui.row, gui.col)) |
6132 i = 2; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6133 #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
|
6134 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
|
6135 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
|
6136 cairo_rectangle(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6137 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
|
6138 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
|
6139 cairo_stroke(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6140 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6141 #else |
7 | 6142 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
6143 FALSE, | |
6144 FILL_X(gui.col), FILL_Y(gui.row), | |
6145 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
|
6146 #endif |
7 | 6147 } |
6148 | |
6149 /* | |
6150 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using | |
6151 * color "color". | |
6152 */ | |
6153 void | |
6154 gui_mch_draw_part_cursor(int w, int h, guicolor_T color) | |
6155 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6156 if (gtk_widget_get_window(gui.drawarea) == NULL) |
7 | 6157 return; |
6158 | |
6159 gui_mch_set_fg_color(color); | |
6160 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6161 #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
|
6162 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6163 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6164 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6165 cr = cairo_create(gui.surface); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6166 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6167 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
|
6168 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6169 cairo_rectangle(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6170 # ifdef FEAT_RIGHTLEFT |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6171 /* 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
|
6172 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
|
6173 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6174 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
|
6175 w, h); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6176 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6177 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6178 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6179 #else /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6180 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
6181 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, | |
6182 TRUE, | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6183 # ifdef FEAT_RIGHTLEFT |
7 | 6184 /* vertical line should be on the right of current point */ |
6185 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
|
6186 # endif |
7 | 6187 FILL_X(gui.col), |
6188 FILL_Y(gui.row) + gui.char_height - h, | |
6189 w, h); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6190 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6191 } |
6192 | |
6193 | |
6194 /* | |
6195 * Catch up with any queued X11 events. This may put keyboard input into the | |
6196 * input buffer, call resize call-backs, trigger timers etc. If there is | |
6197 * nothing in the X11 event queue (& no timers pending), then we return | |
6198 * immediately. | |
6199 */ | |
6200 void | |
6201 gui_mch_update(void) | |
6202 { | |
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
|
6203 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
|
6204 g_main_context_iteration(NULL, TRUE); |
7 | 6205 } |
6206 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6207 static timeout_cb_type |
7 | 6208 input_timer_cb(gpointer data) |
6209 { | |
6210 int *timed_out = (int *) data; | |
6211 | |
1226 | 6212 /* Just inform the caller about the occurrence of it */ |
7 | 6213 *timed_out = TRUE; |
6214 | |
6215 return FALSE; /* don't happen again */ | |
6216 } | |
6217 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6218 #ifdef FEAT_JOB_CHANNEL |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6219 static timeout_cb_type |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6220 channel_poll_cb(gpointer data UNUSED) |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6221 { |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6222 /* Using an event handler for a channel that may be disconnected does |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6223 * not work, it hangs. Instead poll for messages. */ |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6224 channel_handle_events(TRUE); |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6225 parse_queued_messages(); |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6226 |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6227 return TRUE; /* repeat */ |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6228 } |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6229 #endif |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6230 |
7 | 6231 /* |
6232 * GUI input routine called by gui_wait_for_chars(). Waits for a character | |
6233 * from the keyboard. | |
6234 * wtime == -1 Wait forever. | |
6235 * wtime == 0 This should never happen. | |
6236 * wtime > 0 Wait wtime milliseconds for a character. | |
6237 * Returns OK if a character was found to be available within the given time, | |
6238 * or FAIL otherwise. | |
6239 */ | |
6240 int | |
6241 gui_mch_wait_for_chars(long wtime) | |
6242 { | |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6243 int focus; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6244 guint timer; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6245 static int timed_out; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6246 int retval = FAIL; |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6247 #ifdef FEAT_JOB_CHANNEL |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6248 guint channel_timer = 0; |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6249 #endif |
7 | 6250 |
6251 timed_out = FALSE; | |
6252 | |
15665
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
6253 // This timeout makes sure that we will return if no characters arrived in |
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
6254 // time. If "wtime" is zero just use one. |
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
6255 if (wtime >= 0) |
15730
e5441bee8063
patch 8.1.0872: confusing condition
Bram Moolenaar <Bram@vim.org>
parents:
15665
diff
changeset
|
6256 timer = timeout_add(wtime == 0 ? 1L : wtime, |
15665
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
6257 input_timer_cb, &timed_out); |
7 | 6258 else |
6259 timer = 0; | |
6260 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6261 #ifdef FEAT_JOB_CHANNEL |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6262 /* If there is a channel with the keep_open flag we need to poll for input |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6263 * on them. */ |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6264 if (channel_any_keep_open()) |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6265 channel_timer = timeout_add(20, channel_poll_cb, NULL); |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6266 #endif |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6267 |
7 | 6268 focus = gui.in_focus; |
6269 | |
6270 do | |
6271 { | |
6272 /* Stop or start blinking when focus changes */ | |
6273 if (gui.in_focus != focus) | |
6274 { | |
6275 if (gui.in_focus) | |
6276 gui_mch_start_blink(); | |
6277 else | |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
12802
diff
changeset
|
6278 gui_mch_stop_blink(TRUE); |
7 | 6279 focus = gui.in_focus; |
6280 } | |
6281 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
6282 #ifdef MESSAGE_QUEUE |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6283 # ifdef FEAT_TIMERS |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6284 did_add_timer = FALSE; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6285 # endif |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
6286 parse_queued_messages(); |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6287 # ifdef FEAT_TIMERS |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6288 if (did_add_timer) |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6289 /* Need to recompute the waiting time. */ |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6290 goto theend; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6291 # endif |
1624 | 6292 #endif |
6293 | |
7 | 6294 /* |
6295 * Loop in GTK+ processing until a timeout or input occurs. | |
22 | 6296 * Skip this if input is available anyway (can happen in rare |
6297 * situations, sort of race condition). | |
7 | 6298 */ |
22 | 6299 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
|
6300 g_main_context_iteration(NULL, TRUE); |
7 | 6301 |
6302 /* Got char, return immediately */ | |
6303 if (input_available()) | |
6304 { | |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6305 retval = OK; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6306 goto theend; |
7 | 6307 } |
6308 } while (wtime < 0 || !timed_out); | |
6309 | |
6310 /* | |
6311 * Flush all eventually pending (drawing) events. | |
6312 */ | |
6313 gui_mch_update(); | |
6314 | |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6315 theend: |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6316 if (timer != 0 && !timed_out) |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6317 timeout_remove(timer); |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6318 #ifdef FEAT_JOB_CHANNEL |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6319 if (channel_timer != 0) |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6320 timeout_remove(channel_timer); |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6321 #endif |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6322 |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6323 return retval; |
7 | 6324 } |
6325 | |
6326 | |
6327 /**************************************************************************** | |
6328 * Output drawing routines. | |
6329 ****************************************************************************/ | |
6330 | |
6331 | |
6332 /* Flush any output to the screen */ | |
6333 void | |
6334 gui_mch_flush(void) | |
6335 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6336 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
6337 #if GTK_CHECK_VERSION(2,4,0) |
9523
9d1abad90d6c
commit https://github.com/vim/vim/commit/fdadad994a6e8f6cc8b11519082e23200b96d0ba
Christian Brabandt <cb@256bit.org>
parents:
9489
diff
changeset
|
6338 gdk_display_flush(gtk_widget_get_display(gui.mainwin)); |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
6339 #else |
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
6340 gdk_display_sync(gtk_widget_get_display(gui.mainwin)); |
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
6341 #endif |
7 | 6342 } |
6343 | |
6344 /* | |
6345 * Clear a rectangular region of the screen from text pos (row1, col1) to | |
6346 * (row2, col2) inclusive. | |
6347 */ | |
6348 void | |
10920
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6349 gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg) |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6350 { |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6351 |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6352 int col1 = check_col(col1arg); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6353 int col2 = check_col(col2arg); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6354 int row1 = check_row(row1arg); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6355 int row2 = check_row(row2arg); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6356 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6357 #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
|
6358 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
|
6359 return; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6360 #else |
7 | 6361 GdkColor color; |
6362 | |
6363 if (gui.drawarea->window == NULL) | |
6364 return; | |
6365 | |
6366 color.pixel = gui.back_pixel; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6367 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6368 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6369 #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
|
6370 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6371 /* 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
|
6372 * bold glyph may sit there. */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6373 const GdkRectangle rect = { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6374 FILL_X(col1), FILL_Y(row1), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6375 (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
|
6376 (row2 - row1 + 1) * gui.char_height |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6377 }; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6378 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
|
6379 cairo_t * const cr = cairo_create(gui.surface); |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6380 # if GTK_CHECK_VERSION(3,22,2) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6381 set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6382 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6383 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
|
6384 if (pat != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6385 cairo_set_source(cr, pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6386 else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6387 set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6388 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6389 gdk_cairo_rectangle(cr, &rect); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6390 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6391 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6392 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6393 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6394 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
|
6395 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6396 #else /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6397 gdk_gc_set_foreground(gui.text_gc, &color); |
6398 | |
6399 /* Clear one extra pixel at the far right, for when bold characters have | |
6400 * spilled over to the window border. */ | |
6401 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE, | |
6402 FILL_X(col1), FILL_Y(row1), | |
6403 (col2 - col1 + 1) * gui.char_width | |
6404 + (col2 == Columns - 1), | |
6405 (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
|
6406 #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
|
6407 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6408 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6409 #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
|
6410 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6411 gui_gtk_window_clear(GdkWindow *win) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6412 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6413 const GdkRectangle rect = { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6414 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
|
6415 }; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6416 cairo_t * const cr = cairo_create(gui.surface); |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6417 # if GTK_CHECK_VERSION(3,22,2) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6418 set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6419 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6420 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
|
6421 if (pat != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6422 cairo_set_source(cr, pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6423 else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6424 set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6425 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6426 gdk_cairo_rectangle(cr, &rect); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6427 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6428 cairo_destroy(cr); |
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 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6431 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
|
6432 } |
14712
82e7ce311065
patch 8.1.0368: GTK code has too many #ifdefs and GTK 2.10 building fails
Christian Brabandt <cb@256bit.org>
parents:
14575
diff
changeset
|
6433 #else |
82e7ce311065
patch 8.1.0368: GTK code has too many #ifdefs and GTK 2.10 building fails
Christian Brabandt <cb@256bit.org>
parents:
14575
diff
changeset
|
6434 # define gui_gtk_window_clear(win) gdk_window_clear(win) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6435 #endif |
7 | 6436 |
6437 void | |
6438 gui_mch_clear_all(void) | |
6439 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6440 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
|
6441 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
|
6442 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6443 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6444 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 6445 /* |
6446 * Redraw any text revealed by scrolling up/down. | |
6447 */ | |
6448 static void | |
6449 check_copy_area(void) | |
6450 { | |
6451 GdkEvent *event; | |
6452 int expose_count; | |
6453 | |
6454 if (gui.visibility != GDK_VISIBILITY_PARTIAL) | |
6455 return; | |
6456 | |
6457 /* Avoid redrawing the cursor while scrolling or it'll end up where | |
6458 * we don't want it to be. I'm not sure if it's correct to call | |
6459 * gui_dont_update_cursor() at this point but it works as a quick | |
6460 * fix for now. */ | |
9848
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9836
diff
changeset
|
6461 gui_dont_update_cursor(TRUE); |
7 | 6462 |
6463 do | |
6464 { | |
6465 /* Wait to check whether the scroll worked or not. */ | |
6466 event = gdk_event_get_graphics_expose(gui.drawarea->window); | |
6467 | |
6468 if (event == NULL) | |
6469 break; /* received NoExpose event */ | |
6470 | |
6471 gui_redraw(event->expose.area.x, event->expose.area.y, | |
6472 event->expose.area.width, event->expose.area.height); | |
6473 | |
6474 expose_count = event->expose.count; | |
6475 gdk_event_free(event); | |
6476 } | |
6477 while (expose_count > 0); /* more events follow */ | |
6478 | |
6479 gui_can_update_cursor(); | |
6480 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6481 #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
|
6482 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6483 #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
|
6484 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6485 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
|
6486 int src_x, int src_y, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6487 int width, int height) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6488 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6489 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
|
6490 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6491 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
|
6492 cairo_clip(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6493 cairo_push_group(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6494 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
|
6495 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6496 cairo_pop_group_to_source(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6497 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6498 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6499 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6500 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6501 #endif |
7 | 6502 |
6503 /* | |
6504 * Delete the given number of lines from the given row, scrolling up any | |
6505 * text further down within the scroll region. | |
6506 */ | |
6507 void | |
6508 gui_mch_delete_lines(int row, int num_lines) | |
6509 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6510 #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
|
6511 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
|
6512 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
|
6513 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
|
6514 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6515 gui_gtk_surface_copy_rect( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6516 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
|
6517 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
|
6518 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
|
6519 gui_clear_block( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6520 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
|
6521 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
|
6522 gui_gtk3_redraw( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6523 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
|
6524 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
|
6525 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6526 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
|
6527 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
|
6528 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
|
6529 #else |
7 | 6530 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
6531 return; /* Can't see the window */ | |
6532 | |
6533 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); | |
6534 gdk_gc_set_background(gui.text_gc, gui.bgcolor); | |
6535 | |
6536 /* copy one extra pixel, for when bold has spilled over */ | |
6537 gdk_window_copy_area(gui.drawarea->window, gui.text_gc, | |
6538 FILL_X(gui.scroll_region_left), FILL_Y(row), | |
6539 gui.drawarea->window, | |
6540 FILL_X(gui.scroll_region_left), | |
6541 FILL_Y(row + num_lines), | |
6542 gui.char_width * (gui.scroll_region_right | |
6543 - gui.scroll_region_left + 1) + 1, | |
6544 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); | |
6545 | |
6546 gui_clear_block(gui.scroll_region_bot - num_lines + 1, | |
6547 gui.scroll_region_left, | |
6548 gui.scroll_region_bot, gui.scroll_region_right); | |
6549 check_copy_area(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6550 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6551 } |
6552 | |
6553 /* | |
6554 * Insert the given number of lines before the given row, scrolling down any | |
6555 * following text within the scroll region. | |
6556 */ | |
6557 void | |
6558 gui_mch_insert_lines(int row, int num_lines) | |
6559 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6560 #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
|
6561 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
|
6562 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
|
6563 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
|
6564 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6565 gui_gtk_surface_copy_rect( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6566 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
|
6567 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
|
6568 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
|
6569 gui_mch_clear_block( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6570 row, gui.scroll_region_left, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6571 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
|
6572 gui_gtk3_redraw( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6573 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
|
6574 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
|
6575 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6576 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
|
6577 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
|
6578 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
|
6579 #else |
7 | 6580 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
6581 return; /* Can't see the window */ | |
6582 | |
6583 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); | |
6584 gdk_gc_set_background(gui.text_gc, gui.bgcolor); | |
6585 | |
6586 /* copy one extra pixel, for when bold has spilled over */ | |
6587 gdk_window_copy_area(gui.drawarea->window, gui.text_gc, | |
6588 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), | |
6589 gui.drawarea->window, | |
6590 FILL_X(gui.scroll_region_left), FILL_Y(row), | |
6591 gui.char_width * (gui.scroll_region_right | |
6592 - gui.scroll_region_left + 1) + 1, | |
6593 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); | |
6594 | |
6595 gui_clear_block(row, gui.scroll_region_left, | |
6596 row + num_lines - 1, gui.scroll_region_right); | |
6597 check_copy_area(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6598 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6599 } |
6600 | |
6601 /* | |
6602 * X Selection stuff, for cutting and pasting text to other windows. | |
6603 */ | |
6604 void | |
6605 clip_mch_request_selection(VimClipboard *cbd) | |
6606 { | |
6607 GdkAtom target; | |
6608 unsigned i; | |
1494 | 6609 time_t start; |
7 | 6610 |
6611 for (i = 0; i < N_SELECTION_TARGETS; ++i) | |
6612 { | |
1904 | 6613 if (!clip_html && selection_targets[i].info == TARGET_HTML) |
6614 continue; | |
7 | 6615 received_selection = RS_NONE; |
6616 target = gdk_atom_intern(selection_targets[i].target, FALSE); | |
6617 | |
6618 gtk_selection_convert(gui.drawarea, | |
6619 cbd->gtk_sel_atom, target, | |
6620 (guint32)GDK_CURRENT_TIME); | |
6621 | |
1494 | 6622 /* Hack: Wait up to three seconds for the selection. A hang was |
6623 * noticed here when using the netrw plugin combined with ":gui" | |
6624 * during the FocusGained event. */ | |
6625 start = time(NULL); | |
6626 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
|
6627 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */ |
7 | 6628 |
6629 if (received_selection != RS_FAIL) | |
6630 return; | |
6631 } | |
6632 | |
6633 /* 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
|
6634 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
|
6635 cbd); |
7 | 6636 } |
6637 | |
6638 /* | |
6639 * Disown the selection. | |
6640 */ | |
6641 void | |
1884 | 6642 clip_mch_lose_selection(VimClipboard *cbd UNUSED) |
7 | 6643 { |
13503
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6644 if (!in_selection_clear_event) |
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6645 { |
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6646 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time); |
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6647 gui_mch_update(); |
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6648 } |
7 | 6649 } |
6650 | |
6651 /* | |
6652 * Own the selection and return OK if it worked. | |
6653 */ | |
6654 int | |
6655 clip_mch_own_selection(VimClipboard *cbd) | |
6656 { | |
6657 int success; | |
6658 | |
6659 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom, | |
2923 | 6660 gui.event_time); |
7 | 6661 gui_mch_update(); |
6662 return (success) ? OK : FAIL; | |
6663 } | |
6664 | |
6665 /* | |
6666 * Send the current selection to the clipboard. Do nothing for X because we | |
6667 * will fill in the selection only when requested by another app. | |
6668 */ | |
6669 void | |
1884 | 6670 clip_mch_set_selection(VimClipboard *cbd UNUSED) |
7 | 6671 { |
6672 } | |
6673 | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6674 #if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO) |
4209 | 6675 int |
6676 clip_gtk_owner_exists(VimClipboard *cbd) | |
6677 { | |
6678 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL; | |
6679 } | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6680 #endif |
4209 | 6681 |
7 | 6682 |
6683 #if defined(FEAT_MENU) || defined(PROTO) | |
6684 /* | |
6685 * Make a menu item appear either active or not active (grey or not grey). | |
6686 */ | |
6687 void | |
6688 gui_mch_menu_grey(vimmenu_T *menu, int grey) | |
6689 { | |
6690 if (menu->id == NULL) | |
6691 return; | |
6692 | |
6693 if (menu_is_separator(menu->name)) | |
6694 grey = TRUE; | |
6695 | |
6696 gui_mch_menu_hidden(menu, FALSE); | |
6697 /* 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
|
6698 if (!gtk_widget_get_sensitive(menu->id) == !grey) |
7 | 6699 { |
6700 gtk_widget_set_sensitive(menu->id, !grey); | |
6701 gui_mch_update(); | |
6702 } | |
6703 } | |
6704 | |
6705 /* | |
6706 * Make menu item hidden or not hidden. | |
6707 */ | |
6708 void | |
6709 gui_mch_menu_hidden(vimmenu_T *menu, int hidden) | |
6710 { | |
6711 if (menu->id == 0) | |
6712 return; | |
6713 | |
6714 if (hidden) | |
6715 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6716 if (gtk_widget_get_visible(menu->id)) |
7 | 6717 { |
6718 gtk_widget_hide(menu->id); | |
6719 gui_mch_update(); | |
6720 } | |
6721 } | |
6722 else | |
6723 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6724 if (!gtk_widget_get_visible(menu->id)) |
7 | 6725 { |
6726 gtk_widget_show(menu->id); | |
6727 gui_mch_update(); | |
6728 } | |
6729 } | |
6730 } | |
6731 | |
6732 /* | |
6733 * This is called after setting all the menus to grey/hidden or not. | |
6734 */ | |
6735 void | |
6736 gui_mch_draw_menubar(void) | |
6737 { | |
6738 /* just make sure that the visual changes get effect immediately */ | |
6739 gui_mch_update(); | |
6740 } | |
6741 #endif /* FEAT_MENU */ | |
6742 | |
6743 /* | |
6744 * Scrollbar stuff. | |
6745 */ | |
6746 void | |
6747 gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) | |
6748 { | |
6749 if (sb->id == NULL) | |
6750 return; | |
6751 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6752 gtk_widget_set_visible(sb->id, flag); |
791 | 6753 update_window_manager_hints(0, 0); |
7 | 6754 } |
6755 | |
6756 | |
6757 /* | |
6758 * Return the RGB value of a pixel as long. | |
6759 */ | |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
6760 guicolor_T |
7 | 6761 gui_mch_get_rgb(guicolor_T pixel) |
6762 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6763 #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
|
6764 return (long_u)pixel; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6765 #else |
7 | 6766 GdkColor color; |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6767 |
7 | 6768 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea), |
6769 (unsigned long)pixel, &color); | |
6770 | |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
6771 return (guicolor_T)( |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
6772 (((unsigned)color.red & 0xff00) << 8) |
7 | 6773 | ((unsigned)color.green & 0xff00) |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
6774 | (((unsigned)color.blue & 0xff00) >> 8)); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6775 #endif |
7 | 6776 } |
6777 | |
6778 /* | |
88 | 6779 * Get current mouse coordinates in text window. |
7 | 6780 */ |
88 | 6781 void |
6782 gui_mch_getmouse(int *x, int *y) | |
7 | 6783 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6784 gui_gtk_get_pointer(gui.drawarea, x, y, NULL); |
7 | 6785 } |
6786 | |
6787 void | |
6788 gui_mch_setmouse(int x, int y) | |
6789 { | |
6790 /* Sorry for the Xlib call, but we can't avoid it, since there is no | |
6791 * internal GDK mechanism present to accomplish this. (and for good | |
6792 * reason...) */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6793 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
|
6794 (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
|
6795 0, 0, 0U, 0U, x, y); |
7 | 6796 } |
6797 | |
6798 | |
6799 #ifdef FEAT_MOUSESHAPE | |
6800 /* The last set mouse pointer shape is remembered, to be used when it goes | |
6801 * from hidden to not hidden. */ | |
6802 static int last_shape = 0; | |
6803 #endif | |
6804 | |
6805 /* | |
6806 * Use the blank mouse pointer or not. | |
6807 * | |
6808 * hide: TRUE = use blank ptr, FALSE = use parent ptr | |
6809 */ | |
6810 void | |
6811 gui_mch_mousehide(int hide) | |
6812 { | |
6813 if (gui.pointer_hidden != hide) | |
6814 { | |
6815 gui.pointer_hidden = hide; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6816 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL) |
7 | 6817 { |
6818 if (hide) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6819 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
|
6820 gui.blank_pointer); |
7 | 6821 else |
6822 #ifdef FEAT_MOUSESHAPE | |
6823 mch_set_mouse_shape(last_shape); | |
14712
82e7ce311065
patch 8.1.0368: GTK code has too many #ifdefs and GTK 2.10 building fails
Christian Brabandt <cb@256bit.org>
parents:
14575
diff
changeset
|
6824 #else |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
6825 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL); |
7 | 6826 #endif |
6827 } | |
6828 } | |
6829 } | |
6830 | |
6831 #if defined(FEAT_MOUSESHAPE) || defined(PROTO) | |
6832 | |
6833 /* Table for shape IDs. Keep in sync with the mshape_names[] table in | |
6834 * misc2.c! */ | |
6835 static const int mshape_ids[] = | |
6836 { | |
6837 GDK_LEFT_PTR, /* arrow */ | |
6838 GDK_CURSOR_IS_PIXMAP, /* blank */ | |
6839 GDK_XTERM, /* beam */ | |
6840 GDK_SB_V_DOUBLE_ARROW, /* updown */ | |
6841 GDK_SIZING, /* udsizing */ | |
6842 GDK_SB_H_DOUBLE_ARROW, /* leftright */ | |
6843 GDK_SIZING, /* lrsizing */ | |
6844 GDK_WATCH, /* busy */ | |
6845 GDK_X_CURSOR, /* no */ | |
6846 GDK_CROSSHAIR, /* crosshair */ | |
6847 GDK_HAND1, /* hand1 */ | |
6848 GDK_HAND2, /* hand2 */ | |
6849 GDK_PENCIL, /* pencil */ | |
6850 GDK_QUESTION_ARROW, /* question */ | |
6851 GDK_RIGHT_PTR, /* right-arrow */ | |
6852 GDK_CENTER_PTR, /* up-arrow */ | |
6853 GDK_LEFT_PTR /* last one */ | |
6854 }; | |
6855 | |
6856 void | |
6857 mch_set_mouse_shape(int shape) | |
6858 { | |
6859 int id; | |
6860 GdkCursor *c; | |
6861 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6862 if (gtk_widget_get_window(gui.drawarea) == NULL) |
7 | 6863 return; |
6864 | |
6865 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
|
6866 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
|
6867 gui.blank_pointer); |
7 | 6868 else |
6869 { | |
6870 if (shape >= MSHAPE_NUMBERED) | |
6871 { | |
6872 id = shape - MSHAPE_NUMBERED; | |
6873 if (id >= GDK_LAST_CURSOR) | |
6874 id = GDK_LEFT_PTR; | |
6875 else | |
6876 id &= ~1; /* they are always even (why?) */ | |
6877 } | |
1884 | 6878 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int))) |
7 | 6879 id = mshape_ids[shape]; |
842 | 6880 else |
6881 return; | |
7 | 6882 c = gdk_cursor_new_for_display( |
136 | 6883 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6884 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
|
6885 # 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
|
6886 g_object_unref(G_OBJECT(c)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6887 # else |
7 | 6888 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
|
6889 # endif |
7 | 6890 } |
6891 if (shape != MSHAPE_HIDE) | |
6892 last_shape = shape; | |
6893 } | |
6894 #endif /* FEAT_MOUSESHAPE */ | |
6895 | |
6896 | |
6897 #if defined(FEAT_SIGN_ICONS) || defined(PROTO) | |
6898 /* | |
6899 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be | |
6900 * scaled down if the current font is not big enough, or scaled up if the image | |
6901 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap | |
6902 * will be cut off if the current font is not big enough, or centered if it's | |
6903 * too small. | |
6904 */ | |
6905 # define SIGN_WIDTH (2 * gui.char_width) | |
6906 # define SIGN_HEIGHT (gui.char_height) | |
6907 # define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH) | |
6908 | |
6909 void | |
6910 gui_mch_drawsign(int row, int col, int typenr) | |
6911 { | |
6912 GdkPixbuf *sign; | |
6913 | |
6914 sign = (GdkPixbuf *)sign_get_image(typenr); | |
6915 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6916 if (sign != NULL && gui.drawarea != NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6917 && gtk_widget_get_window(gui.drawarea) != NULL) |
7 | 6918 { |
6919 int width; | |
6920 int height; | |
6921 int xoffset; | |
6922 int yoffset; | |
6923 int need_scale; | |
6924 | |
6925 width = gdk_pixbuf_get_width(sign); | |
6926 height = gdk_pixbuf_get_height(sign); | |
6927 /* | |
6928 * Decide whether we need to scale. Allow one pixel of border | |
6929 * width to be cut off, in order to avoid excessive scaling for | |
6930 * tiny differences in font size. | |
5983 | 6931 * Do scale to fit the height to avoid gaps because of linespacing. |
7 | 6932 */ |
6933 need_scale = (width > SIGN_WIDTH + 2 | |
5983 | 6934 || height != SIGN_HEIGHT |
7 | 6935 || (width < 3 * SIGN_WIDTH / 4 |
6936 && height < 3 * SIGN_HEIGHT / 4)); | |
6937 if (need_scale) | |
6938 { | |
5983 | 6939 double aspect; |
6940 int w = width; | |
6941 int h = height; | |
7 | 6942 |
6943 /* Keep the original aspect ratio */ | |
6944 aspect = (double)height / (double)width; | |
6945 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect; | |
6946 width = MIN(width, SIGN_WIDTH); | |
5983 | 6947 if (((double)(MAX(height, SIGN_HEIGHT)) / |
6948 (double)(MIN(height, SIGN_HEIGHT))) < 1.15) | |
6949 { | |
6950 /* Change the aspect ratio by at most 15% to fill the | |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
6951 * available space completely. */ |
5983 | 6952 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect; |
6953 height = MIN(height, SIGN_HEIGHT); | |
6954 } | |
6955 else | |
6956 height = (double)width * aspect; | |
6957 | |
6958 if (w == width && h == height) | |
6959 { | |
6960 /* no change in dimensions; don't decrease reference counter | |
6961 * (below) */ | |
6962 need_scale = FALSE; | |
6963 } | |
6964 else | |
6965 { | |
6966 /* This doesn't seem to be worth caching, and doing so would | |
6967 * complicate the code quite a bit. */ | |
6968 sign = gdk_pixbuf_scale_simple(sign, width, height, | |
6969 GDK_INTERP_BILINEAR); | |
6970 if (sign == NULL) | |
6971 return; /* out of memory */ | |
6972 } | |
7 | 6973 } |
6974 | |
6975 /* The origin is the upper-left corner of the pixmap. Therefore | |
6976 * these offset may become negative if the pixmap is smaller than | |
6977 * the 2x1 cells reserved for the sign icon. */ | |
6978 xoffset = (width - SIGN_WIDTH) / 2; | |
6979 yoffset = (height - SIGN_HEIGHT) / 2; | |
6980 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6981 # 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
|
6982 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6983 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6984 cairo_surface_t *bg_surf; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6985 cairo_t *bg_cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6986 cairo_surface_t *sign_surf; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6987 cairo_t *sign_cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6988 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6989 cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6990 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6991 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
|
6992 cairo_surface_get_content(gui.surface), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6993 SIGN_WIDTH, SIGN_HEIGHT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6994 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
|
6995 cairo_set_source_rgba(bg_cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6996 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
|
6997 gui.bgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6998 cairo_paint(bg_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6999 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7000 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
|
7001 cairo_surface_get_content(gui.surface), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7002 SIGN_WIDTH, SIGN_HEIGHT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7003 sign_cr = cairo_create(sign_surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7004 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
|
7005 cairo_paint(sign_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7006 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7007 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
|
7008 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
|
7009 cairo_paint(sign_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7010 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7011 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
|
7012 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7013 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7014 cairo_destroy(sign_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7015 cairo_surface_destroy(sign_surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7016 cairo_destroy(bg_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7017 cairo_surface_destroy(bg_surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7018 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7019 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7020 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7021 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
|
7022 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
|
7023 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7024 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7025 # else /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 7026 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
7027 | |
7028 gdk_draw_rectangle(gui.drawarea->window, | |
7029 gui.text_gc, | |
7030 TRUE, | |
7031 FILL_X(col), | |
7032 FILL_Y(row), | |
7033 SIGN_WIDTH, | |
7034 SIGN_HEIGHT); | |
7035 | |
7036 gdk_pixbuf_render_to_drawable_alpha(sign, | |
7037 gui.drawarea->window, | |
7038 MAX(0, xoffset), | |
7039 MAX(0, yoffset), | |
7040 FILL_X(col) - MIN(0, xoffset), | |
7041 FILL_Y(row) - MIN(0, yoffset), | |
7042 MIN(width, SIGN_WIDTH), | |
7043 MIN(height, SIGN_HEIGHT), | |
7044 GDK_PIXBUF_ALPHA_BILEVEL, | |
7045 127, | |
7046 GDK_RGB_DITHER_NORMAL, | |
7047 0, 0); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7048 # endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 7049 if (need_scale) |
7050 g_object_unref(sign); | |
7051 } | |
7052 } | |
7053 | |
7054 void * | |
7055 gui_mch_register_sign(char_u *signfile) | |
7056 { | |
7057 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use) | |
7058 { | |
7059 GdkPixbuf *sign; | |
7060 GError *error = NULL; | |
7061 char_u *message; | |
7062 | |
7063 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error); | |
7064 | |
7065 if (error == NULL) | |
7066 return sign; | |
7067 | |
7068 message = (char_u *)error->message; | |
7069 | |
7070 if (message != NULL && input_conv.vc_type != CONV_NONE) | |
7071 message = string_convert(&input_conv, message, NULL); | |
7072 | |
7073 if (message != NULL) | |
7074 { | |
7075 /* The error message is already translated and will be more | |
7076 * descriptive than anything we could possibly do ourselves. */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15134
diff
changeset
|
7077 semsg("E255: %s", message); |
7 | 7078 |
7079 if (input_conv.vc_type != CONV_NONE) | |
7080 vim_free(message); | |
7081 } | |
7082 g_error_free(error); | |
7083 } | |
7084 | |
7085 return NULL; | |
7086 } | |
7087 | |
7088 void | |
7089 gui_mch_destroy_sign(void *sign) | |
7090 { | |
7091 if (sign != NULL) | |
7092 g_object_unref(sign); | |
7093 } | |
7094 | |
7095 #endif /* FEAT_SIGN_ICONS */ |