Mercurial > vim
annotate src/gui_gtk_x11.c @ 15868:7fad90423bd2 v8.1.0941
patch 8.1.0941: macros for MS-Windows are inconsistent
commit https://github.com/vim/vim/commit/4f97475d326c2773a78561fb874e4f23c25cbcd9
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 17 17:44:42 2019 +0100
patch 8.1.0941: macros for MS-Windows are inconsistent
Problem: Macros for MS-Windows are inconsistent, using "32", "3264 and
others.
Solution: Use MSWIN for all MS-Windows builds. Use FEAT_GUI_MSWIN for the
GUI build. (Hirohito Higashi, closes #3932)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 17 Feb 2019 17:45:08 +0100 |
parents | e5441bee8063 |
children | ddd82b1c9e9d |
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; | |
432 gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *))); | |
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 { | |
1547 tmpbuf = alloc((unsigned)length + 1); | |
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); | |
1579 tmpbuf[0] = 0xff; | |
1580 tmpbuf[1] = 0xfe; | |
1581 mch_memmove(tmpbuf + 2, string, (size_t)length); | |
1582 vim_free(string); | |
1583 string = tmpbuf; | |
1584 length += 2; | |
1585 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1586 #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
|
1587 /* 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
|
1588 * overwritten by gtk_selection_data_set() that follows. */ |
1904 | 1589 selection_data->type = selection_data->target; |
1590 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
|
1591 #endif |
1904 | 1592 gtk_selection_data_set(selection_data, html_atom, 16, |
1593 string, length); | |
1594 vim_free(string); | |
1595 } | |
1596 return; | |
1597 } | |
7 | 1598 else if (info == (guint)TARGET_VIMENC) |
1599 { | |
1600 int l = STRLEN(p_enc); | |
1601 | |
1602 /* contents: motion_type 'encoding' NUL text */ | |
1603 tmpbuf = alloc((unsigned)length + l + 2); | |
1604 if (tmpbuf != NULL) | |
1605 { | |
1606 tmpbuf[0] = motion_type; | |
1607 STRCPY(tmpbuf + 1, p_enc); | |
1608 mch_memmove(tmpbuf + l + 2, string, (size_t)length); | |
1609 } | |
1610 length += l + 2; | |
1611 vim_free(string); | |
1612 string = tmpbuf; | |
1613 type = vimenc_atom; | |
1614 } | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
1615 |
7 | 1616 /* gtk_selection_data_set_text() handles everything for us. This is |
1617 * so easy and simple and cool, it'd be insane not to use it. */ | |
1618 else | |
1619 { | |
1620 if (output_conv.vc_type != CONV_NONE) | |
1621 { | |
1622 tmpbuf = string_convert(&output_conv, string, &length); | |
1623 vim_free(string); | |
1624 if (tmpbuf == NULL) | |
1625 return; | |
1626 string = tmpbuf; | |
1627 } | |
1628 /* Validate the string to avoid runtime warnings */ | |
1629 if (g_utf8_validate((const char *)string, (gssize)length, NULL)) | |
1630 { | |
1631 gtk_selection_data_set_text(selection_data, | |
1632 (const char *)string, length); | |
1633 } | |
1634 vim_free(string); | |
1635 return; | |
1636 } | |
1637 | |
1638 if (string != NULL) | |
1639 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1640 #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
|
1641 /* 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
|
1642 * overwritten by gtk_selection_data_set() that follows. */ |
7 | 1643 selection_data->type = selection_data->target; |
1644 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
|
1645 #endif |
7 | 1646 gtk_selection_data_set(selection_data, type, 8, string, length); |
1647 vim_free(string); | |
1648 } | |
1649 } | |
1650 | |
1651 /* | |
3518 | 1652 * Check if the GUI can be started. Called before gvimrc is sourced and |
1653 * before fork(). | |
1654 * Return OK or FAIL. | |
1655 */ | |
1656 int | |
9836
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
1657 gui_mch_early_init_check(int give_message) |
3518 | 1658 { |
1659 char_u *p; | |
1660 | |
1661 /* Guess that when $DISPLAY isn't set the GUI can't start. */ | |
1662 p = mch_getenv((char_u *)"DISPLAY"); | |
1663 if (p == NULL || *p == NUL) | |
1664 { | |
1665 gui.dying = TRUE; | |
9836
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
1666 if (give_message) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15134
diff
changeset
|
1667 emsg(_((char *)e_opendisp)); |
3518 | 1668 return FAIL; |
1669 } | |
1670 return OK; | |
1671 } | |
1672 | |
1673 /* | |
1674 * Check if the GUI can be started. Called before gvimrc is sourced but after | |
1675 * fork(). | |
7 | 1676 * Return OK or FAIL. |
1677 */ | |
1678 int | |
1679 gui_mch_init_check(void) | |
1680 { | |
7679
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1681 #ifdef USE_GRESOURCE |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1682 static int res_registered = FALSE; |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1683 |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1684 if (!res_registered) |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1685 { |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1686 /* 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
|
1687 * 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
|
1688 res_registered = TRUE; |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1689 gui_gtk_register_resource(); |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1690 } |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1691 #endif |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1692 |
8851
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1693 #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
|
1694 /* 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
|
1695 * 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
|
1696 gdk_set_allowed_backends ("x11"); |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1697 #endif |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1698 |
7 | 1699 #ifdef FEAT_GUI_GNOME |
1700 if (gtk_socket_id == 0) | |
1701 using_gnome = 1; | |
1702 #endif | |
1703 | |
4474 | 1704 /* This defaults to argv[0], but we want it to match the name of the |
1705 * shipped gvim.desktop so that Vim's windows can be associated with this | |
1706 * file. */ | |
1707 g_set_prgname("gvim"); | |
1708 | |
7 | 1709 /* Don't use gtk_init() or gnome_init(), it exits on failure. */ |
1710 if (!gtk_init_check(&gui_argc, &gui_argv)) | |
1711 { | |
1712 gui.dying = TRUE; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15134
diff
changeset
|
1713 emsg(_((char *)e_opendisp)); |
7 | 1714 return FAIL; |
1715 } | |
1716 | |
1717 return OK; | |
1718 } | |
1719 | |
1720 /**************************************************************************** | |
1721 * Mouse handling callbacks | |
1722 */ | |
1723 | |
1724 | |
1725 static guint mouse_click_timer = 0; | |
1726 static int mouse_timed_out = TRUE; | |
1727 | |
1728 /* | |
1729 * Timer used to recognize multiple clicks of the mouse button | |
1730 */ | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1731 static timeout_cb_type |
7 | 1732 mouse_click_timer_cb(gpointer data) |
1733 { | |
1734 /* we don't use this information currently */ | |
1735 int *timed_out = (int *) data; | |
1736 | |
1737 *timed_out = TRUE; | |
1738 return FALSE; /* don't happen again */ | |
1739 } | |
1740 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1741 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
|
1742 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
|
1743 static timeout_cb_type motion_repeat_timer_cb(gpointer); |
7 | 1744 |
1745 static void | |
1746 process_motion_notify(int x, int y, GdkModifierType state) | |
1747 { | |
1748 int button; | |
1749 int_u vim_modifiers; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1750 GtkAllocation allocation; |
7 | 1751 |
1752 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | | |
1753 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | | |
1754 GDK_BUTTON5_MASK)) | |
1755 ? MOUSE_DRAG : ' '; | |
1756 | |
1757 /* If our pointer is currently hidden, then we should show it. */ | |
1758 gui_mch_mousehide(FALSE); | |
1759 | |
1760 /* Just moving the rodent above the drawing area without any button | |
1761 * being pressed. */ | |
1762 if (button != MOUSE_DRAG) | |
1763 { | |
1764 gui_mouse_moved(x, y); | |
1765 return; | |
1766 } | |
1767 | |
1768 /* translate modifier coding between the main engine and GTK */ | |
179 | 1769 vim_modifiers = modifiers_gdk2mouse(state); |
7 | 1770 |
1226 | 1771 /* inform the editor engine about the occurrence of this event */ |
7 | 1772 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers); |
1773 | |
1774 /* | |
1775 * Auto repeat timer handling. | |
1776 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1777 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
|
1778 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1779 if (x < 0 || y < 0 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1780 || x >= allocation.width |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1781 || y >= allocation.height) |
7 | 1782 { |
1783 | |
1784 int dx; | |
1785 int dy; | |
1786 int offshoot; | |
1787 int delay = 10; | |
1788 | |
1789 /* Calculate the maximal distance of the cursor from the drawing area. | |
1790 * (offshoot can't become negative here!). | |
1791 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1792 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
|
1793 dy = y < 0 ? -y : y - allocation.height; |
7 | 1794 |
1795 offshoot = dx > dy ? dx : dy; | |
1796 | |
1884 | 1797 /* Make a linearly decaying timer delay with a threshold of 5 at a |
7 | 1798 * distance of 127 pixels from the main window. |
1799 * | |
1800 * One could think endlessly about the most ergonomic variant here. | |
1801 * For example it could make sense to calculate the distance from the | |
1802 * drags start instead... | |
1803 * | |
1804 * Maybe a parabolic interpolation would suite us better here too... | |
1805 */ | |
1806 if (offshoot > 127) | |
1807 { | |
1808 /* 5 appears to be somehow near to my perceptual limits :-). */ | |
1809 delay = 5; | |
1810 } | |
1811 else | |
1812 { | |
1813 delay = (130 * (127 - offshoot)) / 127 + 5; | |
1814 } | |
1815 | |
1816 /* shoot again */ | |
1817 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
|
1818 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
|
1819 NULL); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1820 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1821 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1822 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1823 #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
|
1824 static GdkDevice * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1825 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
|
1826 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1827 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
|
1828 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
|
1829 # 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
|
1830 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
|
1831 return gdk_seat_get_pointer(seat); |
fc69eed19ba7
commit https://github.com/vim/vim/commit/30e12d259ee78272359f9da2655d0593a4f6a626
Christian Brabandt <cb@256bit.org>
parents:
8851
diff
changeset
|
1832 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1833 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
|
1834 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
|
1835 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1836 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1837 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1838 static GdkWindow * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1839 gui_gtk_get_pointer(GtkWidget *widget, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1840 gint *x, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1841 gint *y, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1842 GdkModifierType *state) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1843 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1844 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
|
1845 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
|
1846 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
|
1847 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1848 |
8397
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1849 # 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
|
1850 static GdkWindow * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1851 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
|
1852 gint *x, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1853 gint *y) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1854 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1855 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
|
1856 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
|
1857 } |
8397
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1858 # endif |
14786
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
1859 #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
|
1860 # 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
|
1861 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
|
1862 # 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
|
1863 #endif |
7 | 1864 |
1865 /* | |
1866 * Timer used to recognize multiple clicks of the mouse button. | |
1867 */ | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1868 static timeout_cb_type |
1884 | 1869 motion_repeat_timer_cb(gpointer data UNUSED) |
7 | 1870 { |
1871 int x; | |
1872 int y; | |
1873 GdkModifierType state; | |
1874 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1875 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state); |
7 | 1876 |
1877 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | | |
1878 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | | |
1879 GDK_BUTTON5_MASK))) | |
1880 { | |
1881 motion_repeat_timer = 0; | |
1882 return FALSE; | |
1883 } | |
1884 | |
1885 /* If there already is a mouse click in the input buffer, wait another | |
1886 * time (otherwise we would create a backlog of clicks) */ | |
1887 if (vim_used_in_input_buf() > 10) | |
1888 return TRUE; | |
1889 | |
1890 motion_repeat_timer = 0; | |
1891 | |
1892 /* | |
1893 * Fake a motion event. | |
1894 * Trick: Pretend the mouse moved to the next character on every other | |
1895 * event, otherwise drag events will be discarded, because they are still | |
1896 * in the same character. | |
1897 */ | |
1898 if (motion_repeat_offset) | |
1899 x += gui.char_width; | |
1900 | |
1901 motion_repeat_offset = !motion_repeat_offset; | |
1902 process_motion_notify(x, y, state); | |
1903 | |
1904 /* Don't happen again. We will get reinstalled in the synthetic event | |
1905 * if needed -- thus repeating should still work. */ | |
1906 return FALSE; | |
1907 } | |
1908 | |
1909 static gint | |
1884 | 1910 motion_notify_event(GtkWidget *widget, |
1911 GdkEventMotion *event, | |
1912 gpointer data UNUSED) | |
7 | 1913 { |
1914 if (event->is_hint) | |
1915 { | |
1916 int x; | |
1917 int y; | |
1918 GdkModifierType state; | |
1919 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1920 gui_gtk_get_pointer(widget, &x, &y, &state); |
7 | 1921 process_motion_notify(x, y, state); |
1922 } | |
1923 else | |
1924 { | |
1925 process_motion_notify((int)event->x, (int)event->y, | |
1926 (GdkModifierType)event->state); | |
1927 } | |
1928 | |
1929 return TRUE; /* handled */ | |
1930 } | |
1931 | |
1932 | |
1933 /* | |
1934 * Mouse button handling. Note please that we are capturing multiple click's | |
1935 * by our own timeout mechanism instead of the one provided by GTK+ itself. | |
1936 * This is due to the way the generic VIM code is recognizing multiple clicks. | |
1937 */ | |
1938 static gint | |
1884 | 1939 button_press_event(GtkWidget *widget, |
1940 GdkEventButton *event, | |
1941 gpointer data UNUSED) | |
7 | 1942 { |
1943 int button; | |
1944 int repeated_click = FALSE; | |
1945 int x, y; | |
1946 int_u vim_modifiers; | |
1947 | |
2923 | 1948 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
|
1949 |
7 | 1950 /* 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
|
1951 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
7 | 1952 gtk_widget_grab_focus(widget); |
1953 | |
1954 /* | |
1955 * Don't let additional events about multiple clicks send by GTK to us | |
1956 * after the initial button press event confuse us. | |
1957 */ | |
1958 if (event->type != GDK_BUTTON_PRESS) | |
1959 return FALSE; | |
1960 | |
1961 x = event->x; | |
1962 y = event->y; | |
1963 | |
1964 /* Handle multiple clicks */ | |
1965 if (!mouse_timed_out && mouse_click_timer) | |
1966 { | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1967 timeout_remove(mouse_click_timer); |
7 | 1968 mouse_click_timer = 0; |
1969 repeated_click = TRUE; | |
1970 } | |
1971 | |
1972 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
|
1973 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
|
1974 &mouse_timed_out); |
7 | 1975 |
1976 switch (event->button) | |
1977 { | |
7260
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1978 /* 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
|
1979 * 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
|
1980 case 1: button = MOUSE_LEFT; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1981 case 2: button = MOUSE_MIDDLE; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1982 case 3: button = MOUSE_RIGHT; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1983 case 8: button = MOUSE_X1; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1984 case 9: button = MOUSE_X2; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1985 default: |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1986 return FALSE; /* Unknown button */ |
7 | 1987 } |
1988 | |
1989 #ifdef FEAT_XIM | |
1990 /* cancel any preediting */ | |
1991 if (im_is_preediting()) | |
1992 xim_reset(); | |
1993 #endif | |
1994 | |
179 | 1995 vim_modifiers = modifiers_gdk2mouse(event->state); |
7 | 1996 |
1997 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers); | |
1998 | |
1999 return TRUE; | |
2000 } | |
2001 | |
2002 /* | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
2003 * GTK+ 2 abstracts scrolling via the GdkEventScroll. |
7 | 2004 */ |
2005 static gboolean | |
1884 | 2006 scroll_event(GtkWidget *widget, |
2007 GdkEventScroll *event, | |
2008 gpointer data UNUSED) | |
7 | 2009 { |
2010 int button; | |
179 | 2011 int_u vim_modifiers; |
7 | 2012 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2013 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
7 | 2014 gtk_widget_grab_focus(widget); |
2015 | |
2016 switch (event->direction) | |
2017 { | |
2018 case GDK_SCROLL_UP: | |
2019 button = MOUSE_4; | |
2020 break; | |
2021 case GDK_SCROLL_DOWN: | |
2022 button = MOUSE_5; | |
2023 break; | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2024 case GDK_SCROLL_LEFT: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2025 button = MOUSE_7; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2026 break; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2027 case GDK_SCROLL_RIGHT: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2028 button = MOUSE_6; |
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 default: /* This shouldn't happen */ |
7 | 2031 return FALSE; |
2032 } | |
2033 | |
2034 # ifdef FEAT_XIM | |
2035 /* cancel any preediting */ | |
2036 if (im_is_preediting()) | |
2037 xim_reset(); | |
2038 # endif | |
2039 | |
179 | 2040 vim_modifiers = modifiers_gdk2mouse(event->state); |
7 | 2041 |
2042 gui_send_mouse_event(button, (int)event->x, (int)event->y, | |
2043 FALSE, vim_modifiers); | |
2044 | |
2045 return TRUE; | |
2046 } | |
2047 | |
2048 | |
2049 static gint | |
1884 | 2050 button_release_event(GtkWidget *widget UNUSED, |
2051 GdkEventButton *event, | |
2052 gpointer data UNUSED) | |
7 | 2053 { |
2054 int x, y; | |
2055 int_u vim_modifiers; | |
2056 | |
2923 | 2057 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
|
2058 |
7 | 2059 /* Remove any motion "machine gun" timers used for automatic further |
2060 extension of allocation areas if outside of the applications window | |
2061 area .*/ | |
2062 if (motion_repeat_timer) | |
2063 { | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
2064 timeout_remove(motion_repeat_timer); |
7 | 2065 motion_repeat_timer = 0; |
2066 } | |
2067 | |
2068 x = event->x; | |
2069 y = event->y; | |
2070 | |
179 | 2071 vim_modifiers = modifiers_gdk2mouse(event->state); |
7 | 2072 |
2073 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers); | |
2074 | |
2075 return TRUE; | |
2076 } | |
2077 | |
2078 | |
2079 #ifdef FEAT_DND | |
2080 /**************************************************************************** | |
2081 * Drag aNd Drop support handlers. | |
2082 */ | |
2083 | |
2084 /* | |
2085 * Count how many items there may be and separate them with a NUL. | |
2086 * Apparently the items are separated with \r\n. This is not documented, | |
2087 * thus be careful not to go past the end. Also allow separation with | |
2088 * NUL characters. | |
2089 */ | |
2090 static int | |
2091 count_and_decode_uri_list(char_u *out, char_u *raw, int len) | |
2092 { | |
2093 int i; | |
2094 char_u *p = out; | |
2095 int count = 0; | |
2096 | |
2097 for (i = 0; i < len; ++i) | |
2098 { | |
2099 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r') | |
2100 { | |
2101 if (p > out && p[-1] != NUL) | |
2102 { | |
2103 ++count; | |
2104 *p++ = NUL; | |
2105 } | |
2106 } | |
2107 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0) | |
2108 { | |
2109 *p++ = hexhex2nr(raw + i + 1); | |
2110 i += 2; | |
2111 } | |
2112 else | |
2113 *p++ = raw[i]; | |
2114 } | |
2115 if (p > out && p[-1] != NUL) | |
2116 { | |
2117 *p = NUL; /* last item didn't have \r or \n */ | |
2118 ++count; | |
2119 } | |
2120 return count; | |
2121 } | |
2122 | |
2123 /* | |
2124 * Parse NUL separated "src" strings. Make it an array "outlist" form. On | |
2125 * this process, URI which protocol is not "file:" are removed. Return | |
2126 * length of array (less than "max"). | |
2127 */ | |
2128 static int | |
2129 filter_uri_list(char_u **outlist, int max, char_u *src) | |
2130 { | |
2131 int i, j; | |
2132 | |
2133 for (i = j = 0; i < max; ++i) | |
2134 { | |
2135 outlist[i] = NULL; | |
2136 if (STRNCMP(src, "file:", 5) == 0) | |
2137 { | |
2138 src += 5; | |
2139 if (STRNCMP(src, "//localhost", 11) == 0) | |
2140 src += 11; | |
2141 while (src[0] == '/' && src[1] == '/') | |
2142 ++src; | |
2143 outlist[j++] = vim_strsave(src); | |
2144 } | |
2145 src += STRLEN(src) + 1; | |
2146 } | |
2147 return j; | |
2148 } | |
2149 | |
2150 static char_u ** | |
2151 parse_uri_list(int *count, char_u *data, int len) | |
2152 { | |
2153 int n = 0; | |
2154 char_u *tmp = NULL; | |
9252
c25898cc99c1
commit https://github.com/vim/vim/commit/945ec093cd4ddefab930239990564b12eb232153
Christian Brabandt <cb@256bit.org>
parents:
9232
diff
changeset
|
2155 char_u **array = NULL; |
7 | 2156 |
2157 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL) | |
2158 { | |
2159 n = count_and_decode_uri_list(tmp, data, len); | |
2160 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL) | |
2161 n = filter_uri_list(array, n, tmp); | |
2162 } | |
2163 vim_free(tmp); | |
2164 *count = n; | |
2165 return array; | |
2166 } | |
2167 | |
2168 static void | |
2169 drag_handle_uri_list(GdkDragContext *context, | |
2170 GtkSelectionData *data, | |
2171 guint time_, | |
2172 GdkModifierType state, | |
2173 gint x, | |
2174 gint y) | |
2175 { | |
2176 char_u **fnames; | |
2177 int nfiles = 0; | |
2178 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2179 fnames = parse_uri_list(&nfiles, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2180 (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
|
2181 gtk_selection_data_get_length(data)); |
7 | 2182 |
2183 if (fnames != NULL && nfiles > 0) | |
2184 { | |
179 | 2185 int_u modifiers; |
7 | 2186 |
2187 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ | |
2188 | |
179 | 2189 modifiers = modifiers_gdk2mouse(state); |
7 | 2190 |
2191 gui_handle_drop(x, y, modifiers, fnames, nfiles); | |
2192 } | |
840 | 2193 else |
2194 vim_free(fnames); | |
7 | 2195 } |
2196 | |
2197 static void | |
2198 drag_handle_text(GdkDragContext *context, | |
2199 GtkSelectionData *data, | |
2200 guint time_, | |
2201 GdkModifierType state) | |
2202 { | |
2203 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP}; | |
2204 char_u *text; | |
2205 int len; | |
2206 char_u *tmpbuf = NULL; | |
2207 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2208 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
|
2209 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
|
2210 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2211 if (gtk_selection_data_get_data_type(data) == utf8_string_atom) |
7 | 2212 { |
2213 if (input_conv.vc_type != CONV_NONE) | |
2214 tmpbuf = string_convert(&input_conv, text, &len); | |
2215 if (tmpbuf != NULL) | |
2216 text = tmpbuf; | |
2217 } | |
2218 | |
2219 dnd_yank_drag_data(text, (long)len); | |
2220 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ | |
2221 vim_free(tmpbuf); | |
2222 | |
179 | 2223 dropkey[2] = modifiers_gdk2vim(state); |
7 | 2224 |
2225 if (dropkey[2] != 0) | |
2226 add_to_input_buf(dropkey, (int)sizeof(dropkey)); | |
2227 else | |
2228 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3)); | |
2229 } | |
2230 | |
2231 /* | |
2232 * DND receiver. | |
2233 */ | |
2234 static void | |
2235 drag_data_received_cb(GtkWidget *widget, | |
2236 GdkDragContext *context, | |
2237 gint x, | |
2238 gint y, | |
2239 GtkSelectionData *data, | |
2240 guint info, | |
2241 guint time_, | |
1884 | 2242 gpointer user_data UNUSED) |
7 | 2243 { |
2244 GdkModifierType state; | |
2245 | |
2246 /* Guard against trash */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2247 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
|
2248 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
|
2249 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
|
2250 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2251 if (data_data == NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2252 || data_length <= 0 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2253 || data_format != 8 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2254 || data_data[data_length] != '\0') |
7 | 2255 { |
2256 gtk_drag_finish(context, FALSE, FALSE, time_); | |
2257 return; | |
2258 } | |
2259 | |
2260 /* Get the current modifier state for proper distinguishment between | |
2261 * different operations later. */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2262 gui_gtk_get_pointer(widget, NULL, NULL, &state); |
7 | 2263 |
2264 /* Not sure about the role of "text/plain" here... */ | |
2265 if (info == (guint)TARGET_TEXT_URI_LIST) | |
2266 drag_handle_uri_list(context, data, time_, state, x, y); | |
2267 else | |
2268 drag_handle_text(context, data, time_, state); | |
2269 | |
2270 } | |
2271 #endif /* FEAT_DND */ | |
2272 | |
2273 | |
2274 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) | |
2275 /* | |
2276 * GnomeClient interact callback. Check for unsaved buffers that cannot | |
2277 * be abandoned and pop up a dialog asking the user for confirmation if | |
2278 * necessary. | |
2279 */ | |
2280 static void | |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2281 sm_client_check_changed_any(GnomeClient *client UNUSED, |
7 | 2282 gint key, |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2283 GnomeDialogType type UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2284 gpointer data UNUSED) |
7 | 2285 { |
2286 cmdmod_T save_cmdmod; | |
2287 gboolean shutdown_cancelled; | |
2288 | |
2289 save_cmdmod = cmdmod; | |
2290 | |
2291 # ifdef FEAT_BROWSE | |
2292 cmdmod.browse = TRUE; | |
2293 # endif | |
2294 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2295 cmdmod.confirm = TRUE; | |
2296 # endif | |
2297 /* | |
2298 * If there are changed buffers, present the user with | |
2299 * a dialog if possible, otherwise give an error message. | |
2300 */ | |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
2301 shutdown_cancelled = check_changed_any(FALSE, FALSE); |
7 | 2302 |
2303 exiting = FALSE; | |
2304 cmdmod = save_cmdmod; | |
2305 setcursor(); /* position the cursor */ | |
2306 out_flush(); | |
2307 /* | |
2308 * If the user hit the [Cancel] button the whole shutdown | |
2309 * will be cancelled. Wow, quite powerful feature (: | |
2310 */ | |
2311 gnome_interaction_key_return(key, shutdown_cancelled); | |
2312 } | |
2313 | |
2314 /* | |
2315 * Generate a script that can be used to restore the current editing session. | |
2316 * Save the value of v:this_session before running :mksession in order to make | |
2317 * automagic session save fully transparent. Return TRUE on success. | |
2318 */ | |
2319 static int | |
2320 write_session_file(char_u *filename) | |
2321 { | |
2322 char_u *escaped_filename; | |
2323 char *mksession_cmdline; | |
2324 unsigned int save_ssop_flags; | |
2325 int failed; | |
2326 | |
2327 /* | |
2328 * Build an ex command line to create a script that restores the current | |
2329 * session if executed. Escape the filename to avoid nasty surprises. | |
2330 */ | |
2331 escaped_filename = vim_strsave_escaped(filename, escape_chars); | |
2332 if (escaped_filename == NULL) | |
2333 return FALSE; | |
1296 | 2334 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename, |
2335 NULL); | |
7 | 2336 vim_free(escaped_filename); |
1296 | 2337 |
7 | 2338 /* |
2339 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid | |
2340 * unpredictable effects when the session is saved automatically. Also, | |
2341 * we definitely need SSOP_GLOBALS to be able to restore v:this_session. | |
2342 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming | |
2343 * enormously large if the GNOME session feature is used regularly. | |
2344 */ | |
2345 save_ssop_flags = ssop_flags; | |
2346 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS | |
1296 | 2347 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES); |
7 | 2348 |
2349 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session"); | |
2350 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL); | |
2351 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session"); | |
150 | 2352 do_unlet((char_u *)"Save_VV_this_session", TRUE); |
7 | 2353 |
2354 ssop_flags = save_ssop_flags; | |
2355 g_free(mksession_cmdline); | |
5905 | 2356 |
7 | 2357 /* |
2358 * Reopen the file and append a command to restore v:this_session, | |
2359 * as if this save never happened. This is to avoid conflicts with | |
2360 * the user's own sessions. FIXME: It's probably less hackish to add | |
2361 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram. | |
2362 */ | |
2363 if (!failed) | |
2364 { | |
2365 FILE *fd; | |
2366 | |
2367 fd = open_exfile(filename, TRUE, APPENDBIN); | |
2368 | |
2369 failed = (fd == NULL | |
2370 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL | |
2371 || put_line(fd, "unlet Save_VV_this_session") == FAIL); | |
2372 | |
2373 if (fd != NULL && fclose(fd) != 0) | |
2374 failed = TRUE; | |
2375 | |
2376 if (failed) | |
2377 mch_remove(filename); | |
2378 } | |
2379 | |
2380 return !failed; | |
2381 } | |
2382 | |
2383 /* | |
2384 * "save_yourself" signal handler. Initiate an interaction to ask the user | |
2385 * for confirmation if necessary. Save the current editing session and tell | |
2386 * the session manager how to restart Vim. | |
2387 */ | |
2388 static gboolean | |
2389 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
|
2390 gint phase UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2391 GnomeSaveStyle save_style UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2392 gboolean shutdown UNUSED, |
7 | 2393 GnomeInteractStyle interact_style, |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2394 gboolean fast UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2395 gpointer data UNUSED) |
7 | 2396 { |
2397 static const char suffix[] = "-session.vim"; | |
2398 char *session_file; | |
2399 unsigned int len; | |
2400 gboolean success; | |
2401 | |
2402 /* Always request an interaction if possible. check_changed_any() | |
2403 * won't actually show a dialog unless any buffers have been modified. | |
2404 * There doesn't seem to be an obvious way to check that without | |
2405 * automatically firing the dialog. Anyway, it works just fine. */ | |
2406 if (interact_style == GNOME_INTERACT_ANY) | |
2407 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL, | |
2408 &sm_client_check_changed_any, | |
2409 NULL); | |
2410 out_flush(); | |
2411 ml_sync_all(FALSE, FALSE); /* preserve all swap files */ | |
2412 | |
2413 /* The path is unique for each session save. We do neither know nor care | |
2414 * which session script will actually be used later. This decision is in | |
2415 * the domain of the session manager. */ | |
2416 session_file = gnome_config_get_real_path( | |
2417 gnome_client_get_config_prefix(client)); | |
2418 len = strlen(session_file); | |
2419 | |
2420 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR) | |
2421 --len; /* get rid of the superfluous trailing '/' */ | |
2422 | |
2423 session_file = g_renew(char, session_file, len + sizeof(suffix)); | |
2424 memcpy(session_file + len, suffix, sizeof(suffix)); | |
2425 | |
2426 success = write_session_file((char_u *)session_file); | |
2427 | |
2428 if (success) | |
2429 { | |
2430 const char *argv[8]; | |
2431 int i; | |
2432 | |
2433 /* Tell the session manager how to wipe out the stored session data. | |
2434 * This isn't as dangerous as it looks, don't worry :) session_file | |
2435 * is a unique absolute filename. Usually it'll be something like | |
2436 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */ | |
2437 i = 0; | |
2438 argv[i++] = "rm"; | |
2439 argv[i++] = session_file; | |
2440 argv[i] = NULL; | |
2441 | |
2442 gnome_client_set_discard_command(client, i, (char **)argv); | |
2443 | |
2444 /* Tell the session manager how to restore the just saved session. | |
2445 * This is easily done thanks to Vim's -S option. Pass the -f flag | |
2446 * since there's no need to fork -- it might even cause confusion. | |
2447 * Also pass the window role to give the WM something to match on. | |
2448 * The role is set in gui_mch_open(), thus should _never_ be NULL. */ | |
2449 i = 0; | |
2450 argv[i++] = restart_command; | |
2451 argv[i++] = "-f"; | |
2452 argv[i++] = "-g"; | |
2453 argv[i++] = "--role"; | |
2454 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin)); | |
2455 argv[i++] = "-S"; | |
2456 argv[i++] = session_file; | |
2457 argv[i] = NULL; | |
2458 | |
2459 gnome_client_set_restart_command(client, i, (char **)argv); | |
2460 gnome_client_set_clone_command(client, 0, NULL); | |
2461 } | |
2462 | |
2463 g_free(session_file); | |
2464 | |
2465 return success; | |
2466 } | |
2467 | |
2468 /* | |
2469 * Called when the session manager wants us to die. There isn't much to save | |
2470 * here since "save_yourself" has been emitted before (unless serious trouble | |
2471 * is happening). | |
2472 */ | |
2473 static void | |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2474 sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED) |
7 | 2475 { |
2476 /* Don't write messages to the GUI anymore */ | |
2477 full_screen = FALSE; | |
2478 | |
1666 | 2479 vim_strncpy(IObuff, (char_u *) |
419 | 2480 _("Vim: Received \"die\" request from session manager\n"), |
1666 | 2481 IOSIZE - 1); |
7 | 2482 preserve_exit(); |
2483 } | |
2484 | |
2485 /* | |
2486 * Connect our signal handlers to be notified on session save and shutdown. | |
2487 */ | |
2488 static void | |
2489 setup_save_yourself(void) | |
2490 { | |
2491 GnomeClient *client; | |
2492 | |
2493 client = gnome_master_client(); | |
2494 | |
2495 if (client != NULL) | |
2496 { | |
2497 /* Must use the deprecated gtk_signal_connect() for compatibility | |
2498 * with GNOME 1. Arrgh, zombies! */ | |
2499 gtk_signal_connect(GTK_OBJECT(client), "save_yourself", | |
2500 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL); | |
2501 gtk_signal_connect(GTK_OBJECT(client), "die", | |
2502 GTK_SIGNAL_FUNC(&sm_client_die), NULL); | |
2503 } | |
2504 } | |
2505 | |
2506 #else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */ | |
2507 | |
2508 # ifdef USE_XSMP | |
2509 /* | |
2510 * GTK tells us that XSMP needs attention | |
2511 */ | |
2512 static gboolean | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2513 local_xsmp_handle_requests( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2514 GIOChannel *source UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2515 GIOCondition condition, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2516 gpointer data) |
7 | 2517 { |
2518 if (condition == G_IO_IN) | |
2519 { | |
2520 /* Do stuff; maybe close connection */ | |
2521 if (xsmp_handle_requests() == FAIL) | |
2522 g_io_channel_unref((GIOChannel *)data); | |
2523 return TRUE; | |
2524 } | |
2525 /* Error */ | |
2526 g_io_channel_unref((GIOChannel *)data); | |
2527 xsmp_close(); | |
2528 return TRUE; | |
2529 } | |
2530 # endif /* USE_XSMP */ | |
2531 | |
2532 /* | |
2533 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event. | |
2534 * This is an ugly use of X functions. GTK doesn't offer an alternative. | |
2535 */ | |
2536 static void | |
2537 setup_save_yourself(void) | |
2538 { | |
2539 Atom *existing_atoms = NULL; | |
2540 int count = 0; | |
2541 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2542 # ifdef USE_XSMP |
7 | 2543 if (xsmp_icefd != -1) |
2544 { | |
2545 /* | |
2546 * Use XSMP is preference to legacy WM_SAVE_YOURSELF; | |
2547 * set up GTK IO monitor | |
2548 */ | |
2549 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd); | |
2550 | |
2551 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP, | |
2552 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
|
2553 g_io_channel_unref(g_io); |
7 | 2554 } |
2555 else | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2556 # endif |
7 | 2557 { |
2558 /* Fall back to old method */ | |
2559 | |
2560 /* first get the existing value */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2561 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
|
2562 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2563 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
|
2564 GDK_WINDOW_XID(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2565 &existing_atoms, &count)) |
7 | 2566 { |
2567 Atom *new_atoms; | |
2568 Atom save_yourself_xatom; | |
2569 int i; | |
2570 | |
2571 save_yourself_xatom = GET_X_ATOM(save_yourself_atom); | |
2572 | |
2573 /* check if WM_SAVE_YOURSELF isn't there yet */ | |
2574 for (i = 0; i < count; ++i) | |
2575 if (existing_atoms[i] == save_yourself_xatom) | |
2576 break; | |
2577 | |
2578 if (i == count) | |
2579 { | |
2580 /* allocate an Atoms array which is one item longer */ | |
2581 new_atoms = (Atom *)alloc((unsigned)((count + 1) | |
2582 * sizeof(Atom))); | |
2583 if (new_atoms != NULL) | |
2584 { | |
2585 memcpy(new_atoms, existing_atoms, count * sizeof(Atom)); | |
2586 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
|
2587 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2588 GDK_WINDOW_XID(mainwin_win), |
7 | 2589 new_atoms, count + 1); |
2590 vim_free(new_atoms); | |
2591 } | |
2592 } | |
2593 XFree(existing_atoms); | |
2594 } | |
2595 } | |
2596 } | |
2597 | |
2598 /* | |
2599 * Installing a global event filter seems to be the only way to catch | |
2600 * client messages of type WM_PROTOCOLS without overriding GDK's own | |
2601 * client message event filter. Well, that's still better than trying | |
2602 * to guess what the GDK filter had done if it had been invoked instead | |
2603 * | |
2604 * GTK2_FIXME: This doesn't seem to work. For some reason we never | |
2605 * receive WM_SAVE_YOURSELF even though everything is set up correctly. | |
2606 * I have the nasty feeling modern session managers just don't send this | |
2607 * deprecated message anymore. Addition: confirmed by several people. | |
2608 * | |
2609 * The GNOME session support is much cooler anyway. Unlike this ugly | |
2610 * WM_SAVE_YOURSELF hack it actually stores the session... And yes, | |
2611 * it should work with KDE as well. | |
2612 */ | |
2613 static GdkFilterReturn | |
1884 | 2614 global_event_filter(GdkXEvent *xev, |
2615 GdkEvent *event UNUSED, | |
2616 gpointer data UNUSED) | |
7 | 2617 { |
2618 XEvent *xevent = (XEvent *)xev; | |
2619 | |
2620 if (xevent != NULL | |
2621 && xevent->type == ClientMessage | |
2622 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom) | |
1884 | 2623 && (long_u)xevent->xclient.data.l[0] |
2624 == GET_X_ATOM(save_yourself_atom)) | |
7 | 2625 { |
2626 out_flush(); | |
2627 ml_sync_all(FALSE, FALSE); /* preserve all swap files */ | |
2628 /* | |
2629 * Set the window's WM_COMMAND property, to let the window manager | |
2630 * know we are done saving ourselves. We don't want to be | |
2631 * restarted, thus set argv to NULL. | |
2632 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2633 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
|
2634 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)), |
7 | 2635 NULL, 0); |
2636 return GDK_FILTER_REMOVE; | |
2637 } | |
2638 | |
2639 return GDK_FILTER_CONTINUE; | |
2640 } | |
2641 #endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */ | |
2642 | |
2643 | |
2644 /* | |
2645 * Setup the window icon & xcmdsrv comm after the main window has been realized. | |
2646 */ | |
2647 static void | |
1884 | 2648 mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED) |
7 | 2649 { |
2650 /* If you get an error message here, you still need to unpack the runtime | |
2651 * archive! */ | |
2652 #ifdef magick | |
2653 # undef magick | |
2654 #endif | |
2655 /* A bit hackish, but avoids casting later and allows optimization */ | |
2656 # define static static const | |
2657 #define magick vim32x32 | |
2658 #include "../runtime/vim32x32.xpm" | |
2659 #undef magick | |
2660 #define magick vim16x16 | |
2661 #include "../runtime/vim16x16.xpm" | |
2662 #undef magick | |
2663 #define magick vim48x48 | |
2664 #include "../runtime/vim48x48.xpm" | |
2665 #undef magick | |
2666 # undef static | |
2667 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2668 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
|
2669 |
7 | 2670 /* When started with "--echo-wid" argument, write window ID on stdout. */ |
2671 if (echo_wid_arg) | |
2672 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2673 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win)); |
7 | 2674 fflush(stdout); |
2675 } | |
2676 | |
2677 if (vim_strchr(p_go, GO_ICON) != NULL) | |
2678 { | |
2679 /* | |
2680 * Add an icon to the main window. For fun and convenience of the user. | |
2681 */ | |
2682 GList *icons = NULL; | |
2683 | |
2684 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16)); | |
2685 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32)); | |
2686 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48)); | |
2687 | |
2688 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons); | |
2689 | |
2690 g_list_foreach(icons, (GFunc)&g_object_unref, NULL); | |
2691 g_list_free(icons); | |
2692 } | |
2693 | |
2694 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) | |
2695 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */ | |
2696 gdk_window_add_filter(NULL, &global_event_filter, NULL); | |
2697 #endif | |
2698 /* Setup to indicate to the window manager that we want to catch the | |
2699 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session | |
2700 * manager instead. */ | |
2701 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) | |
2702 if (using_gnome) | |
2703 #endif | |
2704 setup_save_yourself(); | |
2705 | |
2706 #ifdef FEAT_CLIENTSERVER | |
2707 if (serverName == NULL && serverDelayedStartName != NULL) | |
2708 { | |
2709 /* 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
|
2710 commWindow = GDK_WINDOW_XID(mainwin_win); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2711 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2712 (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
|
2713 serverDelayedStartName); |
7 | 2714 } |
2715 else | |
2716 { | |
2717 /* | |
2718 * Cannot handle "XLib-only" windows with gtk event routines, we'll | |
2719 * 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
|
2720 * If we have not registered a name yet, remember the window. |
7 | 2721 */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2722 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2723 GDK_WINDOW_XID(mainwin_win)); |
7 | 2724 } |
2725 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
|
2726 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
|
2727 G_CALLBACK(property_event), NULL); |
7 | 2728 #endif |
2729 } | |
2730 | |
2731 static GdkCursor * | |
2732 create_blank_pointer(void) | |
2733 { | |
2734 GdkWindow *root_window = NULL; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2735 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2736 GdkPixbuf *blank_mask; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2737 #else |
7 | 2738 GdkPixmap *blank_mask; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2739 #endif |
7 | 2740 GdkCursor *cursor; |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2741 #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
|
2742 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
|
2743 #else |
7 | 2744 GdkColor color = { 0, 0, 0, 0 }; |
2745 char blank_data[] = { 0x0 }; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2746 #endif |
7 | 2747 |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2748 #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
|
2749 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2750 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
|
2751 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
|
2752 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
|
2753 } |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2754 #else |
7 | 2755 root_window = gtk_widget_get_root_window(gui.mainwin); |
2756 #endif | |
2757 | |
2758 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel | |
2759 * in size. */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2760 #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
|
2761 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2762 cairo_surface_t *surf; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2763 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2764 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2765 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
|
2766 cr = cairo_create(surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2767 |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2768 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2769 color.red, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2770 color.green, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2771 color.blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2772 color.alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2773 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
|
2774 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2775 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2776 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2777 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
|
2778 cairo_surface_destroy(surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2779 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2780 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
|
2781 blank_mask, 0, 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2782 g_object_unref(blank_mask); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2783 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2784 #else |
7 | 2785 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1); |
2786 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask, | |
2787 &color, &color, 0, 0); | |
2788 gdk_bitmap_unref(blank_mask); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2789 #endif |
7 | 2790 |
2791 return cursor; | |
2792 } | |
2793 | |
2794 static void | |
2795 mainwin_screen_changed_cb(GtkWidget *widget, | |
1884 | 2796 GdkScreen *previous_screen UNUSED, |
2797 gpointer data UNUSED) | |
7 | 2798 { |
2799 if (!gtk_widget_has_screen(widget)) | |
2800 return; | |
2801 | |
2802 /* | |
1226 | 2803 * Recreate the invisible mouse cursor. |
7 | 2804 */ |
2805 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
|
2806 #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
|
2807 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
|
2808 #else |
7 | 2809 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
|
2810 #endif |
7 | 2811 |
2812 gui.blank_pointer = create_blank_pointer(); | |
2813 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2814 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
|
2815 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
|
2816 gui.blank_pointer); |
7 | 2817 |
2818 /* | |
2819 * Create a new PangoContext for this screen, and initialize it | |
2820 * with the current font if necessary. | |
2821 */ | |
2822 if (gui.text_context != NULL) | |
2823 g_object_unref(gui.text_context); | |
2824 | |
2825 gui.text_context = gtk_widget_create_pango_context(widget); | |
2826 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); | |
2827 | |
2828 if (gui.norm_font != NULL) | |
2829 { | |
38 | 2830 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
|
2831 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH); |
7 | 2832 } |
2833 } | |
2834 | |
2835 /* | |
2836 * After the drawing area comes up, we calculate all colors and create the | |
2837 * dummy blank cursor. | |
2838 * | |
2839 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the | |
2840 * fact that the main VIM engine doesn't take them into account anywhere. | |
2841 */ | |
2842 static void | |
1884 | 2843 drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED) |
7 | 2844 { |
2845 GtkWidget *sbar; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2846 GtkAllocation allocation; |
7 | 2847 |
2848 #ifdef FEAT_XIM | |
2849 xim_init(); | |
2850 #endif | |
2851 gui_mch_new_colors(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2852 #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
|
2853 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
|
2854 gtk_widget_get_window(widget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2855 CAIRO_CONTENT_COLOR_ALPHA, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2856 gtk_widget_get_allocated_width(widget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2857 gtk_widget_get_allocated_height(widget)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2858 #else |
7 | 2859 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
|
2860 #endif |
7 | 2861 |
2862 gui.blank_pointer = create_blank_pointer(); | |
2863 if (gui.pointer_hidden) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2864 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer); |
7 | 2865 |
2866 /* get the actual size of the scrollbars, if they are realized */ | |
2867 sbar = firstwin->w_scrollbars[SBAR_LEFT].id; | |
2868 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT] | |
2869 && firstwin->w_scrollbars[SBAR_RIGHT].id)) | |
2870 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
|
2871 gtk_widget_get_allocation(sbar, &allocation); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2872 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
|
2873 gui.scrollbar_width = allocation.width; |
7 | 2874 |
2875 sbar = gui.bottom_sbar.id; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2876 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
|
2877 gui.scrollbar_height = allocation.height; |
7 | 2878 } |
2879 | |
2880 /* | |
2881 * Properly clean up on shutdown. | |
2882 */ | |
2883 static void | |
1884 | 2884 drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED) |
7 | 2885 { |
2886 /* Don't write messages to the GUI anymore */ | |
2887 full_screen = FALSE; | |
2888 | |
2889 #ifdef FEAT_XIM | |
2890 im_shutdown(); | |
2891 #endif | |
2892 if (gui.ascii_glyphs != NULL) | |
2893 { | |
2894 pango_glyph_string_free(gui.ascii_glyphs); | |
2895 gui.ascii_glyphs = NULL; | |
2896 } | |
2897 if (gui.ascii_font != NULL) | |
2898 { | |
2899 g_object_unref(gui.ascii_font); | |
2900 gui.ascii_font = NULL; | |
2901 } | |
2902 g_object_unref(gui.text_context); | |
2903 gui.text_context = NULL; | |
2904 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2905 #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
|
2906 if (gui.surface != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2907 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2908 cairo_surface_destroy(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2909 gui.surface = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2910 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2911 #else |
7 | 2912 g_object_unref(gui.text_gc); |
2913 gui.text_gc = NULL; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2914 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2915 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2916 #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
|
2917 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
|
2918 #else |
7 | 2919 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
|
2920 #endif |
7 | 2921 gui.blank_pointer = NULL; |
2922 } | |
2923 | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2924 #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
|
2925 static void |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2926 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
|
2927 gpointer data UNUSED) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2928 #else |
7 | 2929 static void |
1884 | 2930 drawarea_style_set_cb(GtkWidget *widget UNUSED, |
2931 GtkStyle *previous_style UNUSED, | |
2932 gpointer data UNUSED) | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2933 #endif |
7 | 2934 { |
2935 gui_mch_new_colors(); | |
2936 } | |
2937 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2938 #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
|
2939 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2940 drawarea_configure_event_cb(GtkWidget *widget, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2941 GdkEventConfigure *event, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2942 gpointer data UNUSED) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2943 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2944 static int cur_width = 0; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2945 static int cur_height = 0; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2946 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2947 g_return_val_if_fail(event |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2948 && 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
|
2949 |
10402
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
2950 # 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
|
2951 /* 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
|
2952 * 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
|
2953 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2954 * 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
|
2955 * 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
|
2956 * 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
|
2957 * "native" one from non-native one. |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2958 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2959 * 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
|
2960 * 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
|
2961 * 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
|
2962 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2963 * 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
|
2964 * 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
|
2965 * configure_native_child(). |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2966 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2967 * 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
|
2968 * 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
|
2969 * 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
|
2970 */ |
10402
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
2971 /* Follow-up |
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
2972 * 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
|
2973 * 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
|
2974 * 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
|
2975 if (event->send_event == FALSE) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2976 return TRUE; |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2977 # endif |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2978 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2979 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
|
2980 return TRUE; |
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 cur_width = event->width; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2983 cur_height = event->height; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2984 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2985 if (gui.surface != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2986 cairo_surface_destroy(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2987 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2988 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
|
2989 gtk_widget_get_window(widget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2990 CAIRO_CONTENT_COLOR_ALPHA, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2991 event->width, event->height); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2992 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2993 gtk_widget_queue_draw(widget); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2994 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2995 return TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2996 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2997 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2998 |
7 | 2999 /* |
3000 * Callback routine for the "delete_event" signal on the toplevel window. | |
3001 * Tries to vim gracefully, or refuses to exit with changed buffers. | |
3002 */ | |
3003 static gint | |
1884 | 3004 delete_event_cb(GtkWidget *widget UNUSED, |
3005 GdkEventAny *event UNUSED, | |
3006 gpointer data UNUSED) | |
7 | 3007 { |
3008 gui_shell_closed(); | |
3009 return TRUE; | |
3010 } | |
3011 | |
685 | 3012 #if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE) |
3013 static int | |
3014 get_item_dimensions(GtkWidget *widget, GtkOrientation orientation) | |
3015 { | |
10767
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
3016 # ifdef FEAT_GUI_GNOME |
685 | 3017 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL; |
3018 | |
3019 if (using_gnome && widget != NULL) | |
3020 { | |
856 | 3021 GtkWidget *parent; |
685 | 3022 BonoboDockItem *dockitem; |
3023 | |
791 | 3024 parent = gtk_widget_get_parent(widget); |
856 | 3025 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM) |
3026 { | |
3027 /* Only menu & toolbar are dock items. Could tabline be? | |
3028 * Seem to be only the 2 defined in GNOME */ | |
3029 widget = parent; | |
3030 dockitem = BONOBO_DOCK_ITEM(widget); | |
3031 | |
3032 if (dockitem == NULL || dockitem->is_floating) | |
3033 return 0; | |
3034 item_orientation = bonobo_dock_item_get_orientation(dockitem); | |
3035 } | |
685 | 3036 } |
10767
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
3037 # else |
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
3038 # 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
|
3039 # endif |
10767
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
3040 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3041 if (widget != NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3042 && item_orientation == orientation |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3043 && gtk_widget_get_realized(widget) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3044 && 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
|
3045 { |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
3046 # 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
|
3047 GtkAllocation allocation; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3048 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3049 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
|
3050 return allocation.height; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3051 # else |
685 | 3052 if (orientation == GTK_ORIENTATION_HORIZONTAL) |
3053 return widget->allocation.height; | |
3054 else | |
3055 return widget->allocation.width; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3056 # endif |
685 | 3057 } |
3058 return 0; | |
3059 } | |
3060 #endif | |
3061 | |
3062 static int | |
3063 get_menu_tool_width(void) | |
3064 { | |
3065 int width = 0; | |
3066 | |
3067 #ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */ | |
3068 # ifdef FEAT_MENU | |
3069 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL); | |
3070 # endif | |
3071 # ifdef FEAT_TOOLBAR | |
3072 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL); | |
3073 # endif | |
3074 # ifdef FEAT_GUI_TABLINE | |
782 | 3075 if (gui.tabline != NULL) |
3076 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL); | |
685 | 3077 # endif |
3078 #endif | |
3079 | |
3080 return width; | |
3081 } | |
3082 | |
3083 static int | |
3084 get_menu_tool_height(void) | |
3085 { | |
3086 int height = 0; | |
3087 | |
3088 #ifdef FEAT_MENU | |
3089 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL); | |
3090 #endif | |
3091 #ifdef FEAT_TOOLBAR | |
3092 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL); | |
3093 #endif | |
3094 #ifdef FEAT_GUI_TABLINE | |
782 | 3095 if (gui.tabline != NULL) |
3096 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL); | |
685 | 3097 #endif |
3098 | |
3099 return height; | |
3100 } | |
3101 | |
791 | 3102 /* This controls whether we can set the real window hints at |
3103 * start-up when in a GtkPlug. | |
3104 * 0 = normal processing (default) | |
3105 * 1 = init. hints set, no-one's tried to reset since last check | |
3106 * 2 = init. hints set, attempt made to change hints | |
3107 */ | |
3108 static int init_window_hints_state = 0; | |
3109 | |
685 | 3110 static void |
791 | 3111 update_window_manager_hints(int force_width, int force_height) |
685 | 3112 { |
3113 static int old_width = 0; | |
3114 static int old_height = 0; | |
791 | 3115 static int old_min_width = 0; |
3116 static int old_min_height = 0; | |
685 | 3117 static int old_char_width = 0; |
3118 static int old_char_height = 0; | |
3119 | |
3120 int width; | |
3121 int height; | |
791 | 3122 int min_width; |
3123 int min_height; | |
3124 | |
3125 /* At start-up, don't try to set the hints until the initial | |
3126 * values have been used (those that dictate our initial size) | |
1884 | 3127 * Let forced (i.e., correct) values through always. |
791 | 3128 */ |
3129 if (!(force_width && force_height) && init_window_hints_state > 0) | |
3130 { | |
856 | 3131 /* Don't do it! */ |
3132 init_window_hints_state = 2; | |
3133 return; | |
791 | 3134 } |
685 | 3135 |
3136 /* This also needs to be done when the main window isn't there yet, | |
3137 * otherwise the hints don't work. */ | |
3138 width = gui_get_base_width(); | |
3139 height = gui_get_base_height(); | |
3140 # ifdef FEAT_MENU | |
3141 height += tabline_height() * gui.char_height; | |
3142 # endif | |
3143 width += get_menu_tool_width(); | |
3144 height += get_menu_tool_height(); | |
3145 | |
791 | 3146 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine |
1226 | 3147 * their actual widget size. When we set our size ourselves (e.g., |
791 | 3148 * 'set columns=' or init. -geom) we briefly set the min. to the size |
3149 * we wish to be instead of the legitimate minimum so that we actually | |
3150 * resize correctly. | |
3151 */ | |
3152 if (force_width && force_height) | |
3153 { | |
856 | 3154 min_width = force_width; |
3155 min_height = force_height; | |
791 | 3156 } |
3157 else | |
3158 { | |
856 | 3159 min_width = width + MIN_COLUMNS * gui.char_width; |
3160 min_height = height + MIN_LINES * gui.char_height; | |
791 | 3161 } |
3162 | |
685 | 3163 /* Avoid an expose event when the size didn't change. */ |
3164 if (width != old_width | |
3165 || height != old_height | |
856 | 3166 || min_width != old_min_width |
791 | 3167 || min_height != old_min_height |
685 | 3168 || gui.char_width != old_char_width |
3169 || gui.char_height != old_char_height) | |
3170 { | |
3171 GdkGeometry geometry; | |
3172 GdkWindowHints geometry_mask; | |
3173 | |
3174 geometry.width_inc = gui.char_width; | |
3175 geometry.height_inc = gui.char_height; | |
3176 geometry.base_width = width; | |
3177 geometry.base_height = height; | |
856 | 3178 geometry.min_width = min_width; |
3179 geometry.min_height = min_height; | |
685 | 3180 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC |
3181 |GDK_HINT_MIN_SIZE; | |
3182 /* Using gui.formwin as geometry widget doesn't work as expected | |
3183 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks | |
3184 * in Vim confuse GTK+. */ | |
3185 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin, | |
3186 &geometry, geometry_mask); | |
856 | 3187 old_width = width; |
3188 old_height = height; | |
3189 old_min_width = min_width; | |
3190 old_min_height = min_height; | |
3191 old_char_width = gui.char_width; | |
3192 old_char_height = gui.char_height; | |
685 | 3193 } |
3194 } | |
3195 | |
7 | 3196 #ifdef FEAT_TOOLBAR |
3197 | |
3198 /* | |
3199 * This extra effort wouldn't be necessary if we only used stock icons in the | |
3200 * toolbar, as we do for all builtin icons. But user-defined toolbar icons | |
3201 * shouldn't be treated differently, thus we do need this. | |
3202 */ | |
3203 static void | |
3204 icon_size_changed_foreach(GtkWidget *widget, gpointer user_data) | |
3205 { | |
3206 if (GTK_IS_IMAGE(widget)) | |
3207 { | |
3208 GtkImage *image = (GtkImage *)widget; | |
3209 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3210 # 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
|
3211 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
|
3212 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3213 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
|
3214 const gchar *icon_name; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3215 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3216 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
|
3217 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3218 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
|
3219 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3220 # else |
7 | 3221 /* User-defined icons are stored in a GtkIconSet */ |
3222 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET) | |
3223 { | |
3224 GtkIconSet *icon_set; | |
3225 GtkIconSize icon_size; | |
3226 | |
3227 gtk_image_get_icon_set(image, &icon_set, &icon_size); | |
3228 icon_size = (GtkIconSize)(long)user_data; | |
3229 | |
3230 gtk_icon_set_ref(icon_set); | |
3231 gtk_image_set_from_icon_set(image, icon_set, icon_size); | |
3232 gtk_icon_set_unref(icon_set); | |
3233 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3234 # endif |
7 | 3235 } |
3236 else if (GTK_IS_CONTAINER(widget)) | |
3237 { | |
3238 gtk_container_foreach((GtkContainer *)widget, | |
3239 &icon_size_changed_foreach, | |
3240 user_data); | |
3241 } | |
3242 } | |
3243 | |
3244 static void | |
3245 set_toolbar_style(GtkToolbar *toolbar) | |
3246 { | |
3247 GtkToolbarStyle style; | |
3248 GtkIconSize size; | |
3249 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
|
3250 |
7 | 3251 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
3252 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) | |
3253 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
|
3254 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
7 | 3255 == (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
3256 style = GTK_TOOLBAR_BOTH; | |
3257 else if (toolbar_flags & TOOLBAR_TEXT) | |
3258 style = GTK_TOOLBAR_TEXT; | |
3259 else | |
3260 style = GTK_TOOLBAR_ICONS; | |
3261 | |
3262 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
|
3263 # if !GTK_CHECK_VERSION(3,0,0) |
7 | 3264 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
|
3265 # endif |
7 | 3266 |
3267 switch (tbis_flags) | |
3268 { | |
3269 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break; | |
3270 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break; | |
3271 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break; | |
3272 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
|
3273 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
|
3274 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break; |
7 | 3275 default: size = GTK_ICON_SIZE_INVALID; break; |
3276 } | |
3277 oldsize = gtk_toolbar_get_icon_size(toolbar); | |
3278 | |
3279 if (size == GTK_ICON_SIZE_INVALID) | |
3280 { | |
3281 /* Let global user preferences decide the icon size. */ | |
3282 gtk_toolbar_unset_icon_size(toolbar); | |
3283 size = gtk_toolbar_get_icon_size(toolbar); | |
3284 } | |
3285 if (size != oldsize) | |
3286 { | |
3287 gtk_container_foreach(GTK_CONTAINER(toolbar), | |
3288 &icon_size_changed_foreach, | |
3289 GINT_TO_POINTER((int)size)); | |
3290 } | |
3291 gtk_toolbar_set_icon_size(toolbar, size); | |
3292 } | |
3293 | |
3294 #endif /* FEAT_TOOLBAR */ | |
3295 | |
685 | 3296 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
3297 static int ignore_tabline_evt = FALSE; | |
689 | 3298 static GtkWidget *tabline_menu; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3299 # if !GTK_CHECK_VERSION(3,0,0) |
846 | 3300 static GtkTooltips *tabline_tooltip; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3301 # endif |
689 | 3302 static int clicked_page; /* page clicked in tab line */ |
3303 | |
3304 /* | |
3305 * Handle selecting an item in the tab line popup menu. | |
3306 */ | |
3307 static void | |
1884 | 3308 tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data) |
689 | 3309 { |
3310 /* Add the string cmd into input buffer */ | |
824 | 3311 send_tabline_menu_event(clicked_page, (int)(long)user_data); |
689 | 3312 } |
3313 | |
851 | 3314 static void |
3315 add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp) | |
3316 { | |
3317 GtkWidget *item; | |
3318 char_u *utf_text; | |
3319 | |
3320 utf_text = CONVERT_TO_UTF8(text); | |
3321 item = gtk_menu_item_new_with_label((const char *)utf_text); | |
3322 gtk_widget_show(item); | |
3323 CONVERT_TO_UTF8_FREE(utf_text); | |
3324 | |
3325 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
|
3326 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
|
3327 G_CALLBACK(tabline_menu_handler), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3328 GINT_TO_POINTER(resp)); |
851 | 3329 } |
3330 | |
689 | 3331 /* |
3332 * Create a menu for the tab line. | |
3333 */ | |
3334 static GtkWidget * | |
3335 create_tabline_menu(void) | |
3336 { | |
851 | 3337 GtkWidget *menu; |
689 | 3338 |
3339 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
|
3340 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE); |
851 | 3341 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW); |
3342 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN); | |
689 | 3343 |
3344 return menu; | |
3345 } | |
3346 | |
3347 static gboolean | |
3348 on_tabline_menu(GtkWidget *widget, GdkEvent *event) | |
3349 { | |
3350 /* Was this button press event ? */ | |
3351 if (event->type == GDK_BUTTON_PRESS) | |
3352 { | |
3353 GdkEventButton *bevent = (GdkEventButton *)event; | |
3354 int x = bevent->x; | |
851 | 3355 int y = bevent->y; |
3356 GtkWidget *tabwidget; | |
3357 GdkWindow *tabwin; | |
689 | 3358 |
844 | 3359 /* When ignoring events return TRUE so that the selected page doesn't |
3360 * change. */ | |
3361 if (hold_gui_events | |
3362 # ifdef FEAT_CMDWIN | |
3363 || cmdwin_type != 0 | |
3364 # endif | |
3365 ) | |
3366 return TRUE; | |
3367 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3368 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
|
3369 |
851 | 3370 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
|
3371 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
|
3372 "tab_num")); |
689 | 3373 |
3374 /* If the event was generated for 3rd button popup the menu. */ | |
3375 if (bevent->button == 3) | |
3376 { | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3377 # 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
|
3378 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
|
3379 # else |
689 | 3380 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL, |
3381 bevent->button, bevent->time); | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3382 # endif |
689 | 3383 /* We handled the event. */ |
3384 return TRUE; | |
3385 } | |
868 | 3386 else if (bevent->button == 1) |
693 | 3387 { |
868 | 3388 if (clicked_page == 0) |
3389 { | |
1394 | 3390 /* Click after all tabs moves to next tab page. When "x" is |
3391 * 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
|
3392 send_tabline_event(x < 50 ? -1 : 0); |
868 | 3393 } |
693 | 3394 } |
689 | 3395 } |
844 | 3396 |
689 | 3397 /* We didn't handle the event. */ |
3398 return FALSE; | |
3399 } | |
685 | 3400 |
3401 /* | |
3402 * Handle selecting one of the tabs. | |
3403 */ | |
3404 static void | |
3405 on_select_tab( | |
1884 | 3406 GtkNotebook *notebook UNUSED, |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3407 gpointer *page UNUSED, |
944 | 3408 gint idx, |
1884 | 3409 gpointer data UNUSED) |
685 | 3410 { |
3411 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
|
3412 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
|
3413 } |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3414 |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3415 # 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
|
3416 /* |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3417 * 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
|
3418 */ |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3419 static void |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3420 on_tab_reordered( |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3421 GtkNotebook *notebook UNUSED, |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3422 gpointer *page UNUSED, |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3423 gint idx, |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3424 gpointer data UNUSED) |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3425 { |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3426 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
|
3427 { |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3428 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
|
3429 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
|
3430 else |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3431 tabpage_move(idx); |
693 | 3432 } |
685 | 3433 } |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3434 # endif |
685 | 3435 |
3436 /* | |
3437 * Show or hide the tabline. | |
3438 */ | |
3439 void | |
3440 gui_mch_show_tabline(int showit) | |
3441 { | |
3442 if (gui.tabline == NULL) | |
3443 return; | |
3444 | |
3445 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline))) | |
3446 { | |
708 | 3447 /* Note: this may cause a resize event */ |
685 | 3448 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit); |
791 | 3449 update_window_manager_hints(0, 0); |
868 | 3450 if (showit) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3451 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE); |
868 | 3452 } |
3453 | |
3454 gui_mch_update(); | |
685 | 3455 } |
3456 | |
3457 /* | |
708 | 3458 * Return TRUE when tabline is displayed. |
3459 */ | |
3460 int | |
3461 gui_mch_showing_tabline(void) | |
3462 { | |
3463 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
|
3464 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)); |
708 | 3465 } |
3466 | |
3467 /* | |
685 | 3468 * Update the labels of the tabline. |
3469 */ | |
3470 void | |
3471 gui_mch_update_tabline(void) | |
3472 { | |
3473 GtkWidget *page; | |
846 | 3474 GtkWidget *event_box; |
685 | 3475 GtkWidget *label; |
3476 tabpage_T *tp; | |
3477 int nr = 0; | |
851 | 3478 int tab_num; |
685 | 3479 int curtabidx = 0; |
836 | 3480 char_u *labeltext; |
685 | 3481 |
3482 if (gui.tabline == NULL) | |
3483 return; | |
3484 | |
3485 ignore_tabline_evt = TRUE; | |
3486 | |
3487 /* Add a label for each tab page. They all contain the same text area. */ | |
3488 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) | |
3489 { | |
3490 if (tp == curtab) | |
3491 curtabidx = nr; | |
3492 | |
851 | 3493 tab_num = nr + 1; |
3494 | |
685 | 3495 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr); |
3496 if (page == NULL) | |
3497 { | |
3498 /* Add notebook page */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3499 # 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
|
3500 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
|
3501 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
|
3502 # else |
685 | 3503 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
|
3504 # endif |
685 | 3505 gtk_widget_show(page); |
846 | 3506 event_box = gtk_event_box_new(); |
3507 gtk_widget_show(event_box); | |
685 | 3508 label = gtk_label_new("-Empty-"); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3509 # if !GTK_CHECK_VERSION(3,14,0) |
851 | 3510 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
|
3511 # endif |
846 | 3512 gtk_container_add(GTK_CONTAINER(event_box), label); |
685 | 3513 gtk_widget_show(label); |
3514 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline), | |
3515 page, | |
846 | 3516 event_box, |
685 | 3517 nr++); |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3518 # 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
|
3519 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
|
3520 page, |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3521 TRUE); |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3522 # endif |
685 | 3523 } |
3524 | |
846 | 3525 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
|
3526 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
|
3527 GINT_TO_POINTER(tab_num)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3528 label = gtk_bin_get_child(GTK_BIN(event_box)); |
839 | 3529 get_tabline_label(tp, FALSE); |
836 | 3530 labeltext = CONVERT_TO_UTF8(NameBuff); |
846 | 3531 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext); |
836 | 3532 CONVERT_TO_UTF8_FREE(labeltext); |
846 | 3533 |
3534 get_tabline_label(tp, TRUE); | |
3535 labeltext = CONVERT_TO_UTF8(NameBuff); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3536 # 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
|
3537 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
|
3538 # else |
846 | 3539 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box, |
3540 (const char *)labeltext, NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3541 # endif |
846 | 3542 CONVERT_TO_UTF8_FREE(labeltext); |
685 | 3543 } |
3544 | |
3545 /* Remove any old labels. */ | |
3546 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL) | |
3547 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr); | |
3548 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3549 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
|
3550 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx); |
685 | 3551 |
851 | 3552 /* Make sure everything is in place before drawing text. */ |
3553 gui_mch_update(); | |
3554 | |
685 | 3555 ignore_tabline_evt = FALSE; |
3556 } | |
3557 | |
3558 /* | |
3559 * Set the current tab to "nr". First tab is 1. | |
3560 */ | |
3561 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
3562 gui_mch_set_curtab(int nr) |
685 | 3563 { |
3564 if (gui.tabline == NULL) | |
3565 return; | |
3566 | |
3567 ignore_tabline_evt = TRUE; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3568 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
|
3569 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1); |
685 | 3570 ignore_tabline_evt = FALSE; |
3571 } | |
3572 | |
3573 #endif /* FEAT_GUI_TABLINE */ | |
3574 | |
7 | 3575 /* |
2183 | 3576 * Add selection targets for PRIMARY and CLIPBOARD selections. |
3577 */ | |
3578 void | |
3579 gui_gtk_set_selection_targets(void) | |
3580 { | |
3581 int i, j = 0; | |
3582 int n_targets = N_SELECTION_TARGETS; | |
3583 GtkTargetEntry targets[N_SELECTION_TARGETS]; | |
3584 | |
3585 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i) | |
3586 { | |
3518 | 3587 /* OpenOffice tries to use TARGET_HTML and fails when we don't |
2183 | 3588 * return something, instead of trying another target. Therefore only |
3589 * offer TARGET_HTML when it works. */ | |
3590 if (!clip_html && selection_targets[i].info == TARGET_HTML) | |
3591 n_targets--; | |
3592 else | |
3593 targets[j++] = selection_targets[i]; | |
3594 } | |
3595 | |
3596 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY); | |
3597 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom); | |
3598 gtk_selection_add_targets(gui.drawarea, | |
3599 (GdkAtom)GDK_SELECTION_PRIMARY, | |
3600 targets, n_targets); | |
3601 gtk_selection_add_targets(gui.drawarea, | |
3602 (GdkAtom)clip_plus.gtk_sel_atom, | |
3603 targets, n_targets); | |
3604 } | |
3605 | |
3606 /* | |
3607 * Set up for receiving DND items. | |
3608 */ | |
3609 void | |
3610 gui_gtk_set_dnd_targets(void) | |
3611 { | |
3612 int i, j = 0; | |
3613 int n_targets = N_DND_TARGETS; | |
3614 GtkTargetEntry targets[N_DND_TARGETS]; | |
3615 | |
3616 for (i = 0; i < (int)N_DND_TARGETS; ++i) | |
3617 { | |
3154 | 3618 if (!clip_html && dnd_targets[i].info == TARGET_HTML) |
2183 | 3619 n_targets--; |
3620 else | |
3621 targets[j++] = dnd_targets[i]; | |
3622 } | |
3623 | |
3624 gtk_drag_dest_unset(gui.drawarea); | |
3625 gtk_drag_dest_set(gui.drawarea, | |
3626 GTK_DEST_DEFAULT_ALL, | |
3627 targets, n_targets, | |
2718 | 3628 GDK_ACTION_COPY | GDK_ACTION_MOVE); |
2183 | 3629 } |
3630 | |
3631 /* | |
7 | 3632 * Initialize the GUI. Create all the windows, set up all the callbacks etc. |
3633 * Returns OK for success, FAIL when the GUI can't be started. | |
3634 */ | |
3635 int | |
3636 gui_mch_init(void) | |
3637 { | |
3638 GtkWidget *vbox; | |
3639 | |
3640 #ifdef FEAT_GUI_GNOME | |
3641 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init() | |
3642 * exits on failure, but that's a non-issue because we already called | |
3643 * gtk_init_check() in gui_mch_init_check(). */ | |
3644 if (using_gnome) | |
4045 | 3645 { |
7 | 3646 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT, |
3647 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL); | |
4045 | 3648 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC) |
5854 | 3649 { |
3650 char *p = setlocale(LC_NUMERIC, NULL); | |
3651 | |
3652 /* Make sure strtod() uses a decimal point, not a comma. Gnome | |
3653 * init may change it. */ | |
3654 if (p == NULL || strcmp(p, "C") != 0) | |
3655 setlocale(LC_NUMERIC, "C"); | |
3656 } | |
4045 | 3657 # endif |
3658 } | |
7 | 3659 #endif |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13152
diff
changeset
|
3660 VIM_CLEAR(gui_argv); |
7 | 3661 |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3662 #if GLIB_CHECK_VERSION(2,1,3) |
7 | 3663 /* Set the human-readable application name */ |
3664 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
|
3665 #endif |
7 | 3666 /* |
3667 * Force UTF-8 output no matter what the value of 'encoding' is. | |
3668 * did_set_string_option() in option.c prohibits changing 'termencoding' | |
3669 * to something else than UTF-8 if the GUI is in use. | |
3670 */ | |
3671 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0); | |
3672 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3673 #ifdef FEAT_TOOLBAR |
7 | 3674 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
|
3675 #endif |
7 | 3676 /* FIXME: Need to install the classic icons and a gtkrc.classic file. |
3677 * 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
|
3678 #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
|
3679 # if 0 |
7 | 3680 gtk_rc_parse("gtkrc"); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3681 # endif |
7 | 3682 #endif |
3683 | |
3684 /* Initialize values */ | |
3685 gui.border_width = 2; | |
3686 gui.scrollbar_width = SB_DEFAULT_WIDTH; | |
3687 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
|
3688 #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
|
3689 gui.fgcolor = g_new(GdkRGBA, 1); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3690 gui.bgcolor = g_new(GdkRGBA, 1); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3691 gui.spcolor = g_new(GdkRGBA, 1); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3692 #else |
136 | 3693 /* LINTED: avoid warning: conversion to 'unsigned long' */ |
7 | 3694 gui.fgcolor = g_new0(GdkColor, 1); |
136 | 3695 /* LINTED: avoid warning: conversion to 'unsigned long' */ |
7 | 3696 gui.bgcolor = g_new0(GdkColor, 1); |
207 | 3697 /* LINTED: avoid warning: conversion to 'unsigned long' */ |
3698 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
|
3699 #endif |
7 | 3700 |
3701 /* Initialise atoms */ | |
1904 | 3702 html_atom = gdk_atom_intern("text/html", FALSE); |
7 | 3703 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE); |
3704 | |
3705 /* Set default foreground and background colors. */ | |
3706 gui.norm_pixel = gui.def_norm_pixel; | |
3707 gui.back_pixel = gui.def_back_pixel; | |
3708 | |
3709 if (gtk_socket_id != 0) | |
3710 { | |
3711 GtkWidget *plug; | |
3712 | |
3713 /* Use GtkSocket from another app. */ | |
3714 plug = gtk_plug_new_for_display(gdk_display_get_default(), | |
3715 gtk_socket_id); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3716 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL) |
7 | 3717 { |
3718 gui.mainwin = plug; | |
3719 } | |
3720 else | |
3721 { | |
3722 g_warning("Connection to GTK+ socket (ID %u) failed", | |
3723 (unsigned int)gtk_socket_id); | |
3724 /* Pretend we never wanted it if it failed (get own window) */ | |
3725 gtk_socket_id = 0; | |
3726 } | |
3727 } | |
3728 | |
3729 if (gtk_socket_id == 0) | |
3730 { | |
3731 #ifdef FEAT_GUI_GNOME | |
3732 if (using_gnome) | |
3733 { | |
3734 gui.mainwin = gnome_app_new("Vim", NULL); | |
3735 # ifdef USE_XSMP | |
3736 /* Use the GNOME save-yourself functionality now. */ | |
3737 xsmp_close(); | |
3738 # endif | |
3739 } | |
3740 else | |
3741 #endif | |
3742 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
3743 } | |
3744 | |
3745 gtk_widget_set_name(gui.mainwin, "vim-main-window"); | |
3746 | |
3747 /* Create the PangoContext used for drawing all text. */ | |
3748 gui.text_context = gtk_widget_create_pango_context(gui.mainwin); | |
3749 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
|
3750 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3751 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0); |
7 | 3752 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK); |
3753 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3754 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
|
3755 G_CALLBACK(&delete_event_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3756 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3757 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
|
3758 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
|
3759 |
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3760 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed", |
7 | 3761 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
|
3762 |
7 | 3763 gui.accel_group = gtk_accel_group_new(); |
3764 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group); | |
3765 | |
685 | 3766 /* 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
|
3767 #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
|
3768 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
|
3769 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
|
3770 #else |
7 | 3771 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
|
3772 #endif |
7 | 3773 |
3774 #ifdef FEAT_GUI_GNOME | |
3775 if (using_gnome) | |
3776 { | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3777 # if defined(FEAT_MENU) |
7 | 3778 /* automagically restore menubar/toolbar placement */ |
3779 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE); | |
3780 # endif | |
3781 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox); | |
3782 } | |
3783 else | |
3784 #endif | |
3785 { | |
3786 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox); | |
3787 gtk_widget_show(vbox); | |
3788 } | |
3789 | |
3790 #ifdef FEAT_MENU | |
3791 /* | |
3792 * Create the menubar and handle | |
3793 */ | |
3794 gui.menubar = gtk_menu_bar_new(); | |
3795 gtk_widget_set_name(gui.menubar, "vim-menubar"); | |
3796 | |
36 | 3797 /* Avoid that GTK takes <F10> away from us. */ |
3798 { | |
3799 GtkSettings *gtk_settings; | |
3800 | |
3801 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default()); | |
3802 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL); | |
3803 } | |
3804 | |
3805 | |
7 | 3806 # ifdef FEAT_GUI_GNOME |
3807 if (using_gnome) | |
3808 { | |
3809 BonoboDockItem *dockitem; | |
3810 | |
3811 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar)); | |
3812 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), | |
3813 GNOME_APP_MENUBAR_NAME); | |
798 | 3814 /* We don't want the menu to float. */ |
3815 bonobo_dock_item_set_behavior(dockitem, | |
3816 bonobo_dock_item_get_behavior(dockitem) | |
3817 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); | |
7 | 3818 gui.menubar_h = GTK_WIDGET(dockitem); |
3819 } | |
3820 else | |
3821 # endif /* FEAT_GUI_GNOME */ | |
3822 { | |
827 | 3823 /* Always show the menubar, otherwise <F10> doesn't work. It may be |
3824 * disabled in gui_init() later. */ | |
3825 gtk_widget_show(gui.menubar); | |
7 | 3826 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0); |
3827 } | |
3828 #endif /* FEAT_MENU */ | |
3829 | |
3830 #ifdef FEAT_TOOLBAR | |
3831 /* | |
3832 * Create the toolbar and handle | |
3833 */ | |
3834 /* some aesthetics on the toolbar */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3835 # ifdef USE_GTK3 |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
3836 /* 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
|
3837 /* 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
|
3838 * 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
|
3839 # else |
7 | 3840 gtk_rc_parse_string( |
3841 "style \"vim-toolbar-style\" {\n" | |
3842 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n" | |
3843 "}\n" | |
3844 "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
|
3845 # endif |
7 | 3846 gui.toolbar = gtk_toolbar_new(); |
3847 gtk_widget_set_name(gui.toolbar, "vim-toolbar"); | |
3848 set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); | |
3849 | |
3850 # ifdef FEAT_GUI_GNOME | |
3851 if (using_gnome) | |
3852 { | |
3853 BonoboDockItem *dockitem; | |
3854 | |
3855 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar)); | |
3856 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), | |
3857 GNOME_APP_TOOLBAR_NAME); | |
3858 gui.toolbar_h = GTK_WIDGET(dockitem); | |
795 | 3859 /* When the toolbar is floating it gets stuck. So long as that isn't |
798 | 3860 * fixed let's disallow floating. */ |
795 | 3861 bonobo_dock_item_set_behavior(dockitem, |
798 | 3862 bonobo_dock_item_get_behavior(dockitem) |
3863 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); | |
7 | 3864 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0); |
3865 } | |
3866 else | |
3867 # endif /* FEAT_GUI_GNOME */ | |
3868 { | |
3869 if (vim_strchr(p_go, GO_TOOLBAR) != NULL | |
3870 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) | |
3871 gtk_widget_show(gui.toolbar); | |
3872 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0); | |
3873 } | |
3874 #endif /* FEAT_TOOLBAR */ | |
3875 | |
685 | 3876 #ifdef FEAT_GUI_TABLINE |
782 | 3877 /* |
3878 * Use a Notebook for the tab pages labels. The labels are hidden by | |
3879 * default. | |
3880 */ | |
791 | 3881 gui.tabline = gtk_notebook_new(); |
3882 gtk_widget_show(gui.tabline); | |
3883 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0); | |
3884 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE); | |
3885 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE); | |
841 | 3886 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
|
3887 # if !GTK_CHECK_VERSION(3,0,0) |
868 | 3888 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
|
3889 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3890 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3891 # if !GTK_CHECK_VERSION(3,0,0) |
846 | 3892 tabline_tooltip = gtk_tooltips_new(); |
3893 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
|
3894 # endif |
846 | 3895 |
3896 { | |
3897 GtkWidget *page, *label, *event_box; | |
791 | 3898 |
856 | 3899 /* Add the first tab. */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3900 # 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
|
3901 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
|
3902 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
|
3903 # else |
846 | 3904 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
|
3905 # endif |
846 | 3906 gtk_widget_show(page); |
3907 gtk_container_add(GTK_CONTAINER(gui.tabline), page); | |
3908 label = gtk_label_new("-Empty-"); | |
3909 gtk_widget_show(label); | |
3910 event_box = gtk_event_box_new(); | |
3911 gtk_widget_show(event_box); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3912 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
|
3913 # if !GTK_CHECK_VERSION(3,14,0) |
851 | 3914 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
|
3915 # endif |
846 | 3916 gtk_container_add(GTK_CONTAINER(event_box), label); |
3917 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
|
3918 # 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
|
3919 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
|
3920 # endif |
791 | 3921 } |
865 | 3922 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3923 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
|
3924 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
|
3925 # 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
|
3926 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
|
3927 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
|
3928 # endif |
791 | 3929 |
3930 /* Create a popup menu for the tab line and connect it. */ | |
3931 tabline_menu = create_tabline_menu(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3932 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
|
3933 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
|
3934 #endif /* FEAT_GUI_TABLINE */ |
685 | 3935 |
7 | 3936 gui.formwin = gtk_form_new(); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3937 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
|
3938 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 3939 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
|
3940 #endif |
7 | 3941 |
3942 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
|
3943 #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
|
3944 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
|
3945 #endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3946 #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
|
3947 gui.surface = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3948 gui.by_signal = FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3949 #endif |
7 | 3950 |
3951 /* Determine which events we will filter. */ | |
3952 gtk_widget_set_events(gui.drawarea, | |
3953 GDK_EXPOSURE_MASK | | |
3954 GDK_ENTER_NOTIFY_MASK | | |
3955 GDK_LEAVE_NOTIFY_MASK | | |
3956 GDK_BUTTON_PRESS_MASK | | |
3957 GDK_BUTTON_RELEASE_MASK | | |
3958 GDK_SCROLL_MASK | | |
3959 GDK_KEY_PRESS_MASK | | |
3960 GDK_KEY_RELEASE_MASK | | |
3961 GDK_POINTER_MOTION_MASK | | |
3962 GDK_POINTER_MOTION_HINT_MASK); | |
3963 | |
3964 gtk_widget_show(gui.drawarea); | |
3965 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0); | |
3966 gtk_widget_show(gui.formwin); | |
3967 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0); | |
3968 | |
3969 /* For GtkSockets, key-presses must go to the focus widget (drawarea) | |
3970 * and not the window. */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3971 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
|
3972 : G_OBJECT(gui.drawarea), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3973 "key-press-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3974 G_CALLBACK(key_press_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3975 #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
7 | 3976 /* Also forward key release events for the benefit of GTK+ 2 input |
3977 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */ | |
3978 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) | |
3979 : G_OBJECT(gui.drawarea), | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3980 "key-release-event", |
7 | 3981 G_CALLBACK(&key_release_event), NULL); |
3982 #endif | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3983 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
|
3984 G_CALLBACK(drawarea_realize_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3985 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
|
3986 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
|
3987 #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
|
3988 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
|
3989 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
|
3990 #endif |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
3991 #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
|
3992 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
|
3993 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
|
3994 #else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3995 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
|
3996 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
|
3997 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3998 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3999 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 4000 gui.visibility = GDK_VISIBILITY_UNOBSCURED; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4001 #endif |
7 | 4002 |
4003 #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) | |
4004 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE); | |
4005 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE); | |
4006 #endif | |
4007 | |
4008 if (gtk_socket_id != 0) | |
1884 | 4009 /* 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
|
4010 gtk_widget_set_can_focus(gui.drawarea, TRUE); |
7 | 4011 |
4012 /* | |
4013 * Set clipboard specific atoms | |
4014 */ | |
4015 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE); | |
4016 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE); | |
4017 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY; | |
4018 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE); | |
4019 | |
4020 /* | |
4021 * Start out by adding the configured border width into the border offset. | |
4022 */ | |
4023 gui.border_offset = gui.border_width; | |
4024 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4025 #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
|
4026 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
|
4027 G_CALLBACK(draw_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4028 #else |
7 | 4029 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event", |
4030 GTK_SIGNAL_FUNC(visibility_event), NULL); | |
4031 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event", | |
4032 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
|
4033 #endif |
7 | 4034 |
4035 /* | |
4036 * Only install these enter/leave callbacks when 'p' in 'guioptions'. | |
4037 * Only needed for some window managers. | |
4038 */ | |
4039 if (vim_strchr(p_go, GO_POINTER) != NULL) | |
4040 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4041 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
|
4042 G_CALLBACK(leave_notify_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4043 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
|
4044 G_CALLBACK(enter_notify_event), NULL); |
7 | 4045 } |
4046 | |
791 | 4047 /* Real windows can get focus ... GtkPlug, being a mere container can't, |
4048 * only its widgets. Arguably, this could be common code and we not use | |
4049 * the window focus at all, but let's be safe. | |
4050 */ | |
4051 if (gtk_socket_id == 0) | |
4052 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4053 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
|
4054 G_CALLBACK(focus_out_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4055 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
|
4056 G_CALLBACK(focus_in_event), NULL); |
791 | 4057 } |
4058 else | |
4059 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4060 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
|
4061 G_CALLBACK(focus_out_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4062 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
|
4063 G_CALLBACK(focus_in_event), NULL); |
791 | 4064 #ifdef FEAT_GUI_TABLINE |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4065 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
|
4066 G_CALLBACK(focus_out_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4067 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
|
4068 G_CALLBACK(focus_in_event), NULL); |
791 | 4069 #endif /* FEAT_GUI_TABLINE */ |
4070 } | |
7 | 4071 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4072 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
|
4073 G_CALLBACK(motion_notify_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4074 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
|
4075 G_CALLBACK(button_press_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4076 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
|
4077 G_CALLBACK(button_release_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4078 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
|
4079 G_CALLBACK(&scroll_event), NULL); |
7 | 4080 |
4081 /* | |
4082 * Add selection handler functions. | |
4083 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4084 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
|
4085 G_CALLBACK(selection_clear_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4086 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
|
4087 G_CALLBACK(selection_received_cb), NULL); |
7 | 4088 |
2183 | 4089 gui_gtk_set_selection_targets(); |
7 | 4090 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4091 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
|
4092 G_CALLBACK(selection_get_cb), NULL); |
7 | 4093 |
4094 /* Pretend we don't have input focus, we will get an event if we do. */ | |
4095 gui.in_focus = FALSE; | |
4096 | |
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
|
4097 // 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
|
4098 { |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
4099 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
|
4100 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
|
4101 |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
4102 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
|
4103 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
|
4104 } |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
4105 |
7 | 4106 return OK; |
4107 } | |
4108 | |
4109 #if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO) | |
4110 /* | |
4111 * This is called from gui_start() after a fork() has been done. | |
4112 * We have to tell the session manager our new PID. | |
4113 */ | |
4114 void | |
4115 gui_mch_forked(void) | |
4116 { | |
4117 if (using_gnome) | |
4118 { | |
4119 GnomeClient *client; | |
4120 | |
4121 client = gnome_master_client(); | |
4122 | |
4123 if (client != NULL) | |
4124 gnome_client_set_process_id(client, getpid()); | |
4125 } | |
4126 } | |
4127 #endif /* FEAT_GUI_GNOME && FEAT_SESSION */ | |
4128 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4129 #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
|
4130 static GdkRGBA |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4131 color_to_rgba(guicolor_T color) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4132 { |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4133 GdkRGBA rgba; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4134 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
|
4135 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
|
4136 rgba.blue = ((color & 0xff)) / 255.0; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4137 rgba.alpha = 1.0; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4138 return rgba; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4139 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4140 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4141 static void |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4142 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
|
4143 { |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4144 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
|
4145 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
|
4146 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4147 #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
|
4148 |
7 | 4149 /* |
4150 * Called when the foreground or background color has been changed. | |
4151 * This used to change the graphics contexts directly but we are | |
4152 * currently manipulating them where desired. | |
4153 */ | |
4154 void | |
4155 gui_mch_new_colors(void) | |
4156 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4157 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
|
4158 { |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
4159 #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
|
4160 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
|
4161 #endif |
14786
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
4162 |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4163 #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
|
4164 GtkStyleContext * const context |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4165 = 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
|
4166 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
|
4167 gchar * const css = g_strdup_printf( |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4168 "widget#vim-gui-drawarea {\n" |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4169 " background-color: #%.2lx%.2lx%.2lx;\n" |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4170 "}\n", |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4171 (gui.back_pixel >> 16) & 0xff, |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4172 (gui.back_pixel >> 8) & 0xff, |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4173 gui.back_pixel & 0xff); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4174 |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4175 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
|
4176 gtk_style_context_add_provider(context, |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4177 GTK_STYLE_PROVIDER(provider), G_MAXUINT); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4178 |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4179 g_free(css); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4180 g_object_unref(provider); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4181 #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
|
4182 GdkRGBA rgba; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4183 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4184 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
|
4185 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4186 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
|
4187 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
|
4188 if (pat != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4189 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4190 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
|
4191 cairo_pattern_destroy(pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4192 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4193 else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4194 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
|
4195 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4196 #else /* !GTK_CHECK_VERSION(3,4,0) */ |
7 | 4197 GdkColor color = { 0, 0, 0, 0 }; |
4198 | |
4199 color.pixel = gui.back_pixel; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4200 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
|
4201 #endif /* !GTK_CHECK_VERSION(3,22,2) */ |
7 | 4202 } |
4203 } | |
4204 | |
4205 /* | |
4206 * This signal informs us about the need to rearrange our sub-widgets. | |
4207 */ | |
4208 static gint | |
1884 | 4209 form_configure_event(GtkWidget *widget UNUSED, |
4210 GdkEventConfigure *event, | |
4211 gpointer data UNUSED) | |
7 | 4212 { |
791 | 4213 int usable_height = event->height; |
4214 | |
10402
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
4215 #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
|
4216 /* 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
|
4217 * 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
|
4218 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4219 * 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
|
4220 * 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
|
4221 * 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
|
4222 * "native" one from non-native one. |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4223 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4224 * 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
|
4225 * 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
|
4226 * gui.formwin. |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4227 * |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4228 * 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
|
4229 * 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
|
4230 */ |
10402
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
4231 /* Follow-up |
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
4232 * 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
|
4233 * 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
|
4234 * 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
|
4235 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
|
4236 return TRUE; |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4237 #endif |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4238 |
791 | 4239 /* When in a GtkPlug, we can't guarantee valid heights (as a round |
4240 * no. of char-heights), so we have to manually sanitise them. | |
4241 * Widths seem to sort themselves out, don't ask me why. | |
4242 */ | |
4243 if (gtk_socket_id != 0) | |
856 | 4244 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */ |
791 | 4245 |
7 | 4246 gtk_form_freeze(GTK_FORM(gui.formwin)); |
791 | 4247 gui_resize_shell(event->width, usable_height); |
7 | 4248 gtk_form_thaw(GTK_FORM(gui.formwin)); |
4249 | |
4250 return TRUE; | |
4251 } | |
4252 | |
4253 /* | |
4254 * Function called when window already closed. | |
4255 * We can't do much more here than to trying to preserve what had been done, | |
4256 * since the window is already inevitably going away. | |
4257 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4258 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4259 mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED) |
7 | 4260 { |
4261 /* Don't write messages to the GUI anymore */ | |
4262 full_screen = FALSE; | |
4263 | |
4264 gui.mainwin = NULL; | |
4265 gui.drawarea = NULL; | |
4266 | |
4267 if (!exiting) /* only do anything if the destroy was unexpected */ | |
4268 { | |
419 | 4269 vim_strncpy(IObuff, |
4270 (char_u *)_("Vim: Main window unexpectedly destroyed\n"), | |
4271 IOSIZE - 1); | |
7 | 4272 preserve_exit(); |
4273 } | |
7380
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
4274 #ifdef USE_GRESOURCE |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
4275 gui_gtk_unregister_resource(); |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
4276 #endif |
7 | 4277 } |
4278 | |
791 | 4279 |
4280 /* | |
4281 * Bit of a hack to ensure we start GtkPlug windows with the correct window | |
4282 * hints (and thus the required size from -geom), but that after that we | |
4283 * put the hints back to normal (the actual minimum size) so we may | |
4284 * 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
|
4285 * plug's window 'min hints to set *its* minimum size, but that's also the |
791 | 4286 * only way we have of making ourselves bigger (by set lines/columns). |
4287 * 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
|
4288 * 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
|
4289 * scrollbar init.), actually do the standard hints and stop the timer. |
791 | 4290 * We'll not let the default hints be set while this timer's active. |
4291 */ | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
4292 static timeout_cb_type |
1884 | 4293 check_startup_plug_hints(gpointer data UNUSED) |
791 | 4294 { |
4295 if (init_window_hints_state == 1) | |
4296 { | |
856 | 4297 /* Safe to use normal hints now */ |
4298 init_window_hints_state = 0; | |
4299 update_window_manager_hints(0, 0); | |
4300 return FALSE; /* stop timer */ | |
791 | 4301 } |
4302 | |
4303 /* Keep on trying */ | |
4304 init_window_hints_state = 1; | |
4305 return TRUE; | |
4306 } | |
4307 | |
7 | 4308 /* |
4309 * Open the GUI window which was created by a call to gui_mch_init(). | |
4310 */ | |
4311 int | |
4312 gui_mch_open(void) | |
4313 { | |
4314 guicolor_T fg_pixel = INVALCOLOR; | |
4315 guicolor_T bg_pixel = INVALCOLOR; | |
1966 | 4316 guint pixel_width; |
4317 guint pixel_height; | |
7 | 4318 |
4319 /* | |
4320 * Allow setting a window role on the command line, or invent one | |
4321 * if none was specified. This is mainly useful for GNOME session | |
4322 * support; allowing the WM to restore window placement. | |
4323 */ | |
4324 if (role_argument != NULL) | |
4325 { | |
4326 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument); | |
4327 } | |
4328 else | |
4329 { | |
4330 char *role; | |
4331 | |
4332 /* Invent a unique-enough ID string for the role */ | |
4333 role = g_strdup_printf("vim-%u-%u-%u", | |
4334 (unsigned)mch_get_pid(), | |
4335 (unsigned)g_random_int(), | |
4336 (unsigned)time(NULL)); | |
4337 | |
4338 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role); | |
4339 g_free(role); | |
4340 } | |
4341 | |
4342 if (gui_win_x != -1 && gui_win_y != -1) | |
4343 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y); | |
4344 | |
4345 /* Determine user specified geometry, if present. */ | |
4346 if (gui.geom != NULL) | |
4347 { | |
4348 int mask; | |
4349 unsigned int w, h; | |
4350 int x = 0; | |
4351 int y = 0; | |
4352 | |
4353 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h); | |
4354 | |
4355 if (mask & WidthValue) | |
4356 Columns = w; | |
4357 if (mask & HeightValue) | |
857 | 4358 { |
1884 | 4359 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window")) |
857 | 4360 p_window = h - 1; |
7 | 4361 Rows = h; |
857 | 4362 } |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4474
diff
changeset
|
4363 limit_screen_size(); |
1426 | 4364 |
4365 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); | |
4366 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); | |
4367 | |
4368 pixel_width += get_menu_tool_width(); | |
4369 pixel_height += get_menu_tool_height(); | |
4370 | |
7 | 4371 if (mask & (XValue | YValue)) |
1426 | 4372 { |
1757 | 4373 int ww, hh; |
4374 gui_mch_get_screen_dimensions(&ww, &hh); | |
4375 hh += p_ghr + get_menu_tool_height(); | |
4376 ww += get_menu_tool_width(); | |
1426 | 4377 if (mask & XNegative) |
1757 | 4378 x += ww - pixel_width; |
1426 | 4379 if (mask & YNegative) |
1757 | 4380 y += hh - pixel_height; |
7 | 4381 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
1426 | 4382 } |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13152
diff
changeset
|
4383 VIM_CLEAR(gui.geom); |
791 | 4384 |
856 | 4385 /* From now until everyone's stopped trying to set the window hints |
4386 * to their correct minimum values, stop them being set as we need | |
4387 * them to remain at our required size for the parent GtkSocket to | |
4388 * give us the right initial size. | |
4389 */ | |
791 | 4390 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue)) |
856 | 4391 { |
4392 update_window_manager_hints(pixel_width, pixel_height); | |
4393 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
|
4394 timeout_add(1000, check_startup_plug_hints, NULL); |
856 | 4395 } |
7 | 4396 } |
4397 | |
1966 | 4398 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
4399 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); | |
4400 /* For GTK2 changing the size of the form widget doesn't cause window | |
4401 * resizing. */ | |
2254
4620acaf4814
One more fix for conceal patch.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
4402 if (gtk_socket_id == 0) |
1966 | 4403 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height); |
791 | 4404 update_window_manager_hints(0, 0); |
7 | 4405 |
4406 if (foreground_argument != NULL) | |
4407 fg_pixel = gui_get_color((char_u *)foreground_argument); | |
4408 if (fg_pixel == INVALCOLOR) | |
4409 fg_pixel = gui_get_color((char_u *)"Black"); | |
4410 | |
4411 if (background_argument != NULL) | |
4412 bg_pixel = gui_get_color((char_u *)background_argument); | |
4413 if (bg_pixel == INVALCOLOR) | |
4414 bg_pixel = gui_get_color((char_u *)"White"); | |
4415 | |
4416 if (found_reverse_arg) | |
4417 { | |
4418 gui.def_norm_pixel = bg_pixel; | |
4419 gui.def_back_pixel = fg_pixel; | |
4420 } | |
4421 else | |
4422 { | |
4423 gui.def_norm_pixel = fg_pixel; | |
4424 gui.def_back_pixel = bg_pixel; | |
4425 } | |
4426 | |
4427 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or | |
4428 * in a vimrc file) */ | |
4429 set_normal_colors(); | |
4430 | |
4431 /* Check that none of the colors are the same as the background color */ | |
4432 gui_check_colors(); | |
4433 | |
4434 /* Get the colors for the highlight groups (gui_check_colors() might have | |
4435 * changed them). */ | |
4436 highlight_gui_started(); /* re-init colors and fonts */ | |
4437 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4438 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
|
4439 G_CALLBACK(mainwin_destroy_cb), NULL); |
7 | 4440 |
4441 #ifdef FEAT_HANGULIN | |
4442 hangul_keyboard_set(); | |
4443 #endif | |
4444 | |
4445 /* | |
4446 * Notify the fixed area about the need to resize the contents of the | |
4447 * gui.formwin, which we use for random positioning of the included | |
4448 * components. | |
4449 * | |
4450 * We connect this signal deferred finally after anything is in place, | |
4451 * since this is intended to handle resizements coming from the window | |
4452 * manager upon us and should not interfere with what VIM is requesting | |
4453 * upon startup. | |
4454 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4455 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
|
4456 G_CALLBACK(form_configure_event), NULL); |
7 | 4457 |
4458 #ifdef FEAT_DND | |
2183 | 4459 /* Set up for receiving DND items. */ |
4460 gui_gtk_set_dnd_targets(); | |
7 | 4461 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4462 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
|
4463 G_CALLBACK(drag_data_received_cb), NULL); |
7 | 4464 #endif |
4465 | |
4466 /* 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
|
4467 * to avoid mapping the window for a short time. */ |
7 | 4468 if (found_iconic_arg && gtk_socket_id == 0) |
4469 gui_mch_iconify(); | |
4470 | |
4471 { | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
4472 #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
7 | 4473 unsigned long menu_handler = 0; |
4474 # ifdef FEAT_TOOLBAR | |
4475 unsigned long tool_handler = 0; | |
4476 # endif | |
4477 /* | |
4478 * Urgh hackish :/ For some reason BonoboDockLayout always forces a | |
4479 * show when restoring the saved layout configuration. We can't just | |
4480 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's | |
4481 * a toplevel window and thus will be realized immediately. Instead, | |
4482 * connect signal handlers to hide the widgets just after they've been | |
4483 * marked visible, but before the main window is realized. | |
4484 */ | |
4485 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL) | |
4486 menu_handler = g_signal_connect_after(gui.menubar_h, "show", | |
4487 G_CALLBACK(>k_widget_hide), | |
4488 NULL); | |
4489 # ifdef FEAT_TOOLBAR | |
4490 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL | |
4491 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) | |
4492 tool_handler = g_signal_connect_after(gui.toolbar_h, "show", | |
4493 G_CALLBACK(>k_widget_hide), | |
4494 NULL); | |
4495 # endif | |
4496 #endif | |
4497 gtk_widget_show(gui.mainwin); | |
4498 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
4499 #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
7 | 4500 if (menu_handler != 0) |
4501 g_signal_handler_disconnect(gui.menubar_h, menu_handler); | |
4502 # ifdef FEAT_TOOLBAR | |
4503 if (tool_handler != 0) | |
4504 g_signal_handler_disconnect(gui.toolbar_h, tool_handler); | |
4505 # endif | |
4506 #endif | |
4507 } | |
4508 | |
4509 return OK; | |
4510 } | |
4511 | |
4512 | |
4513 void | |
1884 | 4514 gui_mch_exit(int rc UNUSED) |
7 | 4515 { |
4516 if (gui.mainwin != NULL) | |
4517 gtk_widget_destroy(gui.mainwin); | |
4518 } | |
4519 | |
4520 /* | |
4521 * Get the position of the top left corner of the window. | |
4522 */ | |
4523 int | |
4524 gui_mch_get_winpos(int *x, int *y) | |
4525 { | |
4526 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y); | |
4527 return OK; | |
4528 } | |
4529 | |
4530 /* | |
4531 * Set the position of the top left corner of the window to the given | |
4532 * coordinates. | |
4533 */ | |
4534 void | |
4535 gui_mch_set_winpos(int x, int y) | |
4536 { | |
4537 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); | |
4538 } | |
4539 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4540 #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
|
4541 # if 0 |
7 | 4542 static int resize_idle_installed = FALSE; |
4543 /* | |
4544 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure | |
4545 * the shell size doesn't exceed the window size, i.e. if the window manager | |
4546 * ignored our size request. Usually this happens if the window is maximized. | |
4547 * | |
4548 * FIXME: It'd be nice if we could find a little more orthodox solution. | |
4549 * See also the remark below in gui_mch_set_shellsize(). | |
4550 * | |
4551 * DISABLED: When doing ":set lines+=1" this function would first invoke | |
4552 * gui_resize_shell() with the old size, then the normal callback would | |
4553 * report the new size through form_configure_event(). That caused the window | |
4554 * layout to be messed up. | |
4555 */ | |
4556 static gboolean | |
4557 force_shell_resize_idle(gpointer data) | |
4558 { | |
4559 if (gui.mainwin != NULL | |
4560 && GTK_WIDGET_REALIZED(gui.mainwin) | |
4561 && GTK_WIDGET_VISIBLE(gui.mainwin)) | |
4562 { | |
4563 int width; | |
4564 int height; | |
4565 | |
4566 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height); | |
4567 | |
4568 width -= get_menu_tool_width(); | |
4569 height -= get_menu_tool_height(); | |
4570 | |
4571 gui_resize_shell(width, height); | |
4572 } | |
4573 | |
4574 resize_idle_installed = FALSE; | |
4575 return FALSE; /* don't call me again */ | |
4576 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4577 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4578 #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
|
4579 |
1967 | 4580 /* |
4581 * Return TRUE if the main window is maximized. | |
4582 */ | |
4583 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
4584 gui_mch_maximized(void) |
1967 | 4585 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4586 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
|
4587 && (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
|
4588 & GDK_WINDOW_STATE_MAXIMIZED)); |
1967 | 4589 } |
4590 | |
4591 /* | |
4592 * Unmaximize the main window | |
4593 */ | |
4594 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
4595 gui_mch_unmaximize(void) |
1967 | 4596 { |
4597 if (gui.mainwin != NULL) | |
4598 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin)); | |
4599 } | |
4600 | |
7 | 4601 /* |
12802
29a728529f92
patch 8.0.1278: GUI window always resizes when adding scrollbar
Christian Brabandt <cb@256bit.org>
parents:
12666
diff
changeset
|
4602 * 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
|
4603 * 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
|
4604 * window. |
3014 | 4605 */ |
4606 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
4607 gui_mch_newfont(void) |
3014 | 4608 { |
4609 int w, h; | |
4610 | |
4611 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h); | |
4612 w -= get_menu_tool_width(); | |
4613 h -= get_menu_tool_height(); | |
4614 gui_resize_shell(w, h); | |
4615 } | |
4616 | |
4617 /* | |
7 | 4618 * Set the windows size. |
4619 */ | |
4620 void | |
4621 gui_mch_set_shellsize(int width, int height, | |
1884 | 4622 int min_width UNUSED, int min_height UNUSED, |
4623 int base_width UNUSED, int base_height UNUSED, | |
4624 int direction UNUSED) | |
7 | 4625 { |
4626 /* give GTK+ a chance to put all widget's into place */ | |
4627 gui_mch_update(); | |
4628 | |
791 | 4629 /* this will cause the proper resizement to happen too */ |
4630 if (gtk_socket_id == 0) | |
856 | 4631 update_window_manager_hints(0, 0); |
791 | 4632 |
7 | 4633 /* With GTK+ 2, changing the size of the form widget doesn't resize |
791 | 4634 * the window. So let's do it the other way around and resize the |
7 | 4635 * main window instead. */ |
4636 width += get_menu_tool_width(); | |
4637 height += get_menu_tool_height(); | |
4638 | |
791 | 4639 if (gtk_socket_id == 0) |
856 | 4640 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height); |
791 | 4641 else |
856 | 4642 update_window_manager_hints(width, height); |
7 | 4643 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4644 # 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
|
4645 # if 0 |
7 | 4646 if (!resize_idle_installed) |
4647 { | |
4648 g_idle_add_full(GDK_PRIORITY_EVENTS + 10, | |
4649 &force_shell_resize_idle, NULL, NULL); | |
4650 resize_idle_installed = TRUE; | |
4651 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4652 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4653 # endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 4654 /* |
4655 * Wait until all events are processed to prevent a crash because the | |
4656 * real size of the drawing area doesn't reflect Vim's internal ideas. | |
4657 * | |
4658 * This is a bit of a hack, since Vim is a terminal application with a GUI | |
4659 * on top, while the GUI expects to be the boss. | |
4660 */ | |
4661 gui_mch_update(); | |
4662 } | |
4663 | |
12409
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4664 void |
14575
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4665 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
|
4666 GtkWidget *wid, |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4667 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
|
4668 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
|
4669 int *width, |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4670 int *height) |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4671 { |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4672 GdkRectangle geometry; |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4673 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
|
4674 #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
|
4675 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
|
4676 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
|
4677 |
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4678 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
|
4679 #else |
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4680 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
|
4681 int monitor; |
12409
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4682 |
12413
ca7f2685e339
patch 8.0.1086: can't build with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
12409
diff
changeset
|
4683 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
|
4684 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
|
4685 else |
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4686 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
|
4687 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
|
4688 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
|
4689 #endif |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4690 *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
|
4691 *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
|
4692 *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
|
4693 *height = geometry.height; |
12409
2c020bc30f62
patch 8.0.1084: GTK build has compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4694 } |
7 | 4695 |
4696 /* | |
4697 * The screen size is used to make sure the initial window doesn't get bigger | |
4698 * than the screen. This subtracts some room for menubar, toolbar and window | |
4699 * decorations. | |
4700 */ | |
4701 void | |
4702 gui_mch_get_screen_dimensions(int *screen_w, int *screen_h) | |
4703 { | |
14575
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4704 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
|
4705 |
f8cd07a1cbb5
patch 8.1.0301: GTK: input method popup displayed on wrong screen.
Christian Brabandt <cb@256bit.org>
parents:
14471
diff
changeset
|
4706 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
|
4707 |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4708 /* 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
|
4709 * 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
|
4710 *screen_h -= p_ghr; |
7 | 4711 |
4712 /* | |
4713 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include | |
4714 * 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
|
4715 * height, so that the window size can be made to fit on the screen. |
7 | 4716 * This should be completely changed later. |
4717 */ | |
4718 *screen_w -= get_menu_tool_width(); | |
4719 *screen_h -= get_menu_tool_height(); | |
4720 } | |
4721 | |
4722 #if defined(FEAT_TITLE) || defined(PROTO) | |
4723 void | |
1884 | 4724 gui_mch_settitle(char_u *title, char_u *icon UNUSED) |
7 | 4725 { |
4726 if (title != NULL && output_conv.vc_type != CONV_NONE) | |
4727 title = string_convert(&output_conv, title, NULL); | |
4728 | |
4729 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title); | |
4730 | |
4731 if (output_conv.vc_type != CONV_NONE) | |
4732 vim_free(title); | |
4733 } | |
4734 #endif /* FEAT_TITLE */ | |
4735 | |
4736 #if defined(FEAT_MENU) || defined(PROTO) | |
4737 void | |
4738 gui_mch_enable_menu(int showit) | |
4739 { | |
4740 GtkWidget *widget; | |
4741 | |
4742 # ifdef FEAT_GUI_GNOME | |
4743 if (using_gnome) | |
4744 widget = gui.menubar_h; | |
4745 else | |
4746 # endif | |
4747 widget = gui.menubar; | |
4748 | |
827 | 4749 /* 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
|
4750 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting) |
7 | 4751 { |
4752 if (showit) | |
4753 gtk_widget_show(widget); | |
4754 else | |
4755 gtk_widget_hide(widget); | |
4756 | |
791 | 4757 update_window_manager_hints(0, 0); |
7 | 4758 } |
4759 } | |
4760 #endif /* FEAT_MENU */ | |
4761 | |
4762 #if defined(FEAT_TOOLBAR) || defined(PROTO) | |
4763 void | |
4764 gui_mch_show_toolbar(int showit) | |
4765 { | |
4766 GtkWidget *widget; | |
4767 | |
4768 if (gui.toolbar == NULL) | |
4769 return; | |
4770 | |
4771 # ifdef FEAT_GUI_GNOME | |
4772 if (using_gnome) | |
4773 widget = gui.toolbar_h; | |
4774 else | |
4775 # endif | |
4776 widget = gui.toolbar; | |
4777 | |
4778 if (showit) | |
4779 set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); | |
4780 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4781 if (!showit != !gtk_widget_get_visible(widget)) |
7 | 4782 { |
4783 if (showit) | |
4784 gtk_widget_show(widget); | |
4785 else | |
4786 gtk_widget_hide(widget); | |
4787 | |
791 | 4788 update_window_manager_hints(0, 0); |
7 | 4789 } |
4790 } | |
4791 #endif /* FEAT_TOOLBAR */ | |
4792 | |
4793 /* | |
4794 * Check if a given font is a CJK font. This is done in a very crude manner. It | |
4795 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given | |
4796 * font. Consequently, this function cannot be used as a general purpose check | |
4797 * for CJK-ness for which fontconfig APIs should be used. This is only used by | |
4798 * gui_mch_init_font() to deal with 'CJK fixed width fonts'. | |
4799 */ | |
4800 static int | |
4801 is_cjk_font(PangoFontDescription *font_desc) | |
4802 { | |
4803 static const char * const cjk_langs[] = | |
4804 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"}; | |
4805 | |
4806 PangoFont *font; | |
4807 unsigned i; | |
4808 int is_cjk = FALSE; | |
4809 | |
4810 font = pango_context_load_font(gui.text_context, font_desc); | |
4811 | |
4812 if (font == NULL) | |
4813 return FALSE; | |
4814 | |
4815 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i) | |
4816 { | |
4817 PangoCoverage *coverage; | |
4818 gunichar uc; | |
4819 | |
4820 coverage = pango_font_get_coverage( | |
4821 font, pango_language_from_string(cjk_langs[i])); | |
4822 | |
4823 if (coverage != NULL) | |
4824 { | |
4825 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00; | |
4826 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT); | |
4827 pango_coverage_unref(coverage); | |
4828 } | |
4829 } | |
4830 | |
4831 g_object_unref(font); | |
4832 | |
4833 return is_cjk; | |
4834 } | |
4835 | |
445 | 4836 /* |
4837 * Adjust gui.char_height (after 'linespace' was changed). | |
4838 */ | |
7 | 4839 int |
445 | 4840 gui_mch_adjust_charheight(void) |
7 | 4841 { |
4842 PangoFontMetrics *metrics; | |
4843 int ascent; | |
4844 int descent; | |
4845 | |
4846 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font, | |
4847 pango_context_get_language(gui.text_context)); | |
4848 ascent = pango_font_metrics_get_ascent(metrics); | |
4849 descent = pango_font_metrics_get_descent(metrics); | |
4850 | |
4851 pango_font_metrics_unref(metrics); | |
4852 | |
4853 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE | |
445 | 4854 + p_linespace; |
136 | 4855 /* LINTED: avoid warning: bitwise operation on signed value */ |
7 | 4856 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2); |
4857 | |
4858 /* A not-positive value of char_height may crash Vim. Only happens | |
4859 * if 'linespace' is negative (which does make sense sometimes). */ | |
4860 gui.char_ascent = MAX(gui.char_ascent, 0); | |
4861 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1); | |
4862 | |
4863 return OK; | |
4864 } | |
4865 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4866 #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
|
4867 /* 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
|
4868 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4869 font_filter(const PangoFontFamily *family, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4870 const PangoFontFace *face UNUSED, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4871 gpointer data UNUSED) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4872 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4873 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
|
4874 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4875 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4876 |
7 | 4877 /* |
4878 * Put up a font dialog and return the selected font name in allocated memory. | |
4879 * "oldval" is the previous value. Return NULL when cancelled. | |
4880 * This should probably go into gui_gtk.c. Hmm. | |
4881 * FIXME: | |
4882 * The GTK2 font selection dialog has no filtering API. So we could either | |
4883 * a) implement our own (possibly copying the code from somewhere else) or | |
4884 * b) just live with it. | |
4885 */ | |
4886 char_u * | |
4887 gui_mch_font_dialog(char_u *oldval) | |
4888 { | |
4889 GtkWidget *dialog; | |
4890 int response; | |
4891 char_u *fontname = NULL; | |
4892 char_u *oldname; | |
4893 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4894 #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
|
4895 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
|
4896 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
|
4897 NULL, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4898 #else |
7 | 4899 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
|
4900 #endif |
7 | 4901 |
4902 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin)); | |
4903 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE); | |
4904 | |
4905 if (oldval != NULL && oldval[0] != NUL) | |
4906 { | |
4907 if (output_conv.vc_type != CONV_NONE) | |
4908 oldname = string_convert(&output_conv, oldval, NULL); | |
4909 else | |
4910 oldname = oldval; | |
4911 | |
4912 /* Annoying bug in GTK (or Pango): if the font name does not include a | |
4913 * size, zero is used. Use default point size ten. */ | |
4914 if (!vim_isdigit(oldname[STRLEN(oldname) - 1])) | |
4915 { | |
4916 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3); | |
4917 | |
4918 if (p != NULL) | |
4919 { | |
4920 STRCPY(p + STRLEN(p), " 10"); | |
4921 if (oldname != oldval) | |
4922 vim_free(oldname); | |
4923 oldname = p; | |
4924 } | |
4925 } | |
4926 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4927 #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
|
4928 gtk_font_chooser_set_font( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4929 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
|
4930 #else |
7 | 4931 gtk_font_selection_dialog_set_font_name( |
4932 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
|
4933 #endif |
7 | 4934 |
4935 if (oldname != oldval) | |
100 | 4936 vim_free(oldname); |
7 | 4937 } |
1959 | 4938 else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4939 #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
|
4940 gtk_font_chooser_set_font( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4941 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4942 #else |
1959 | 4943 gtk_font_selection_dialog_set_font_name( |
4944 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
|
4945 #endif |
7 | 4946 |
4947 response = gtk_dialog_run(GTK_DIALOG(dialog)); | |
4948 | |
4949 if (response == GTK_RESPONSE_OK) | |
4950 { | |
4951 char *name; | |
4952 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4953 #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
|
4954 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
|
4955 #else |
7 | 4956 name = gtk_font_selection_dialog_get_font_name( |
4957 GTK_FONT_SELECTION_DIALOG(dialog)); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4958 #endif |
7 | 4959 if (name != NULL) |
4960 { | |
714 | 4961 char_u *p; |
4962 | |
4963 /* Apparently some font names include a comma, need to escape | |
4964 * that, because in 'guifont' it separates names. */ | |
4965 p = vim_strsave_escaped((char_u *)name, (char_u *)","); | |
4966 g_free(name); | |
840 | 4967 if (p != NULL && input_conv.vc_type != CONV_NONE) |
714 | 4968 { |
4969 fontname = string_convert(&input_conv, p, NULL); | |
4970 vim_free(p); | |
4971 } | |
7 | 4972 else |
714 | 4973 fontname = p; |
7 | 4974 } |
4975 } | |
4976 | |
4977 if (response != GTK_RESPONSE_NONE) | |
4978 gtk_widget_destroy(dialog); | |
4979 | |
4980 return fontname; | |
4981 } | |
4982 | |
4983 /* | |
4984 * Some monospace fonts don't support a bold weight, and fall back | |
4985 * silently to the regular weight. But this is no good since our text | |
4986 * drawing function can emulate bold by overstriking. So let's try | |
4987 * to detect whether bold weight is actually available and emulate it | |
4988 * otherwise. | |
4989 * | |
4990 * Note that we don't need to check for italic style since Xft can | |
4991 * emulate italic on its own, provided you have a proper fontconfig | |
4992 * setup. We wouldn't be able to emulate it in Vim anyway. | |
4993 */ | |
4994 static void | |
4995 get_styled_font_variants(void) | |
4996 { | |
4997 PangoFontDescription *bold_font_desc; | |
4998 PangoFont *plain_font; | |
4999 PangoFont *bold_font; | |
5000 | |
5001 gui.font_can_bold = FALSE; | |
5002 | |
5003 plain_font = pango_context_load_font(gui.text_context, gui.norm_font); | |
5004 | |
5005 if (plain_font == NULL) | |
5006 return; | |
5007 | |
5008 bold_font_desc = pango_font_description_copy_static(gui.norm_font); | |
5009 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD); | |
5010 | |
5011 bold_font = pango_context_load_font(gui.text_context, bold_font_desc); | |
5012 /* | |
5013 * The comparison relies on the unique handle nature of a PangoFont*, | |
5014 * i.e. it's assumed that a different PangoFont* won't refer to the | |
5015 * same font. Seems to work, and failing here isn't critical anyway. | |
5016 */ | |
5017 if (bold_font != NULL) | |
5018 { | |
5019 gui.font_can_bold = (bold_font != plain_font); | |
5020 g_object_unref(bold_font); | |
5021 } | |
5022 | |
5023 pango_font_description_free(bold_font_desc); | |
5024 g_object_unref(plain_font); | |
5025 } | |
5026 | |
5027 static PangoEngineShape *default_shape_engine = NULL; | |
5028 | |
5029 /* | |
5030 * Create a map from ASCII characters in the range [32,126] to glyphs | |
5031 * of the current font. This is used by gui_gtk2_draw_string() to skip | |
5032 * the itemize and shaping process for the most common case. | |
5033 */ | |
5034 static void | |
5035 ascii_glyph_table_init(void) | |
5036 { | |
9879
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5037 char_u ascii_chars[2 * 128]; |
7 | 5038 PangoAttrList *attr_list; |
5039 GList *item_list; | |
5040 int i; | |
5041 | |
5042 if (gui.ascii_glyphs != NULL) | |
5043 pango_glyph_string_free(gui.ascii_glyphs); | |
5044 if (gui.ascii_font != NULL) | |
5045 g_object_unref(gui.ascii_font); | |
5046 | |
5047 gui.ascii_glyphs = NULL; | |
5048 gui.ascii_font = NULL; | |
5049 | |
9879
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5050 /* 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
|
5051 * 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
|
5052 for (i = 0; i < 128; ++i) |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5053 { |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5054 if (i >= 32 && i < 127) |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5055 ascii_chars[2 * i] = i; |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5056 else |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5057 ascii_chars[2 * i] = '?'; |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5058 ascii_chars[2 * i + 1] = ' '; |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5059 } |
7 | 5060 |
5061 attr_list = pango_attr_list_new(); | |
5062 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars, | |
5063 0, sizeof(ascii_chars), attr_list, NULL); | |
5064 | |
5065 if (item_list != NULL && item_list->next == NULL) /* play safe */ | |
5066 { | |
5067 PangoItem *item; | |
5068 int width; | |
5069 | |
5070 item = (PangoItem *)item_list->data; | |
5071 width = gui.char_width * PANGO_SCALE; | |
5072 | |
5073 /* Remember the shape engine used for ASCII. */ | |
5074 default_shape_engine = item->analysis.shape_engine; | |
5075 | |
5076 gui.ascii_font = item->analysis.font; | |
5077 g_object_ref(gui.ascii_font); | |
5078 | |
5079 gui.ascii_glyphs = pango_glyph_string_new(); | |
5080 | |
5081 pango_shape((const char *)ascii_chars, sizeof(ascii_chars), | |
5082 &item->analysis, gui.ascii_glyphs); | |
5083 | |
5084 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars)); | |
5085 | |
5086 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i) | |
5087 { | |
5088 PangoGlyphGeometry *geom; | |
5089 | |
5090 geom = &gui.ascii_glyphs->glyphs[i].geometry; | |
5091 geom->x_offset += MAX(0, width - geom->width) / 2; | |
5092 geom->width = width; | |
5093 } | |
5094 } | |
5095 | |
5096 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL); | |
5097 g_list_free(item_list); | |
5098 pango_attr_list_unref(attr_list); | |
5099 } | |
5100 | |
5101 /* | |
5102 * Initialize Vim to use the font or fontset with the given name. | |
5103 * Return FAIL if the font could not be loaded, OK otherwise. | |
5104 */ | |
5105 int | |
1884 | 5106 gui_mch_init_font(char_u *font_name, int fontset UNUSED) |
7 | 5107 { |
5108 PangoFontDescription *font_desc; | |
5109 PangoLayout *layout; | |
5110 int width; | |
5111 | |
5112 /* If font_name is NULL, this means to use the default, which should | |
5113 * be present on all proper Pango/fontconfig installations. */ | |
5114 if (font_name == NULL) | |
5115 font_name = (char_u *)DEFAULT_FONT; | |
5116 | |
5117 font_desc = gui_mch_get_font(font_name, FALSE); | |
5118 | |
5119 if (font_desc == NULL) | |
5120 return FAIL; | |
5121 | |
5122 gui_mch_free_font(gui.norm_font); | |
5123 gui.norm_font = font_desc; | |
5124 | |
5125 pango_context_set_font_description(gui.text_context, font_desc); | |
5126 | |
5127 layout = pango_layout_new(gui.text_context); | |
5128 pango_layout_set_text(layout, "MW", 2); | |
5129 pango_layout_get_size(layout, &width, NULL); | |
5130 /* | |
5131 * Set char_width to half the width obtained from pango_layout_get_size() | |
5132 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads | |
5133 * Pango to use the same width for both non-CJK characters (e.g. Latin | |
5134 * letters and numbers) and CJK characters. This results in 's p a c e d | |
5135 * o u t' rendering when a CJK 'fixed width' font is used. To work around | |
5136 * that, divide the width returned by Pango by 2 if cjk_width is equal to | |
5137 * width for CJK fonts. | |
5138 * | |
5139 * For related bugs, see: | |
5140 * http://bugzilla.gnome.org/show_bug.cgi?id=106618 | |
5141 * http://bugzilla.gnome.org/show_bug.cgi?id=106624 | |
5142 * | |
5143 * With this, for all four of the following cases, Vim works fine: | |
5144 * guifont=CJK_fixed_width_font | |
5145 * guifont=Non_CJK_fixed_font | |
5146 * guifont=Non_CJK_fixed_font,CJK_Fixed_font | |
5147 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font | |
5148 */ | |
5149 if (is_cjk_font(gui.norm_font)) | |
5150 { | |
5151 int cjk_width; | |
5152 | |
5153 /* Measure the text extent of U+4E00 and U+4E8C */ | |
5154 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1); | |
5155 pango_layout_get_size(layout, &cjk_width, NULL); | |
5156 | |
5157 if (width == cjk_width) /* Xft not patched */ | |
5158 width /= 2; | |
5159 } | |
5160 g_object_unref(layout); | |
5161 | |
5162 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE; | |
5163 | |
5164 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */ | |
5165 if (gui.char_width <= 0) | |
5166 gui.char_width = 8; | |
5167 | |
445 | 5168 gui_mch_adjust_charheight(); |
7 | 5169 |
5170 /* Set the fontname, which will be used for information purposes */ | |
5171 hl_set_font_name(font_name); | |
5172 | |
5173 get_styled_font_variants(); | |
5174 ascii_glyph_table_init(); | |
5175 | |
5176 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */ | |
5177 if (gui.wide_font != NULL | |
5178 && pango_font_description_equal(gui.norm_font, gui.wide_font)) | |
5179 { | |
5180 pango_font_description_free(gui.wide_font); | |
5181 gui.wide_font = NULL; | |
5182 } | |
5183 | |
1986 | 5184 if (gui_mch_maximized()) |
5185 { | |
5186 /* Update lines and columns in accordance with the new font, keep the | |
5187 * window maximized. */ | |
3014 | 5188 gui_mch_newfont(); |
1986 | 5189 } |
5190 else | |
5191 { | |
5192 /* Preserve the logical dimensions of the screen. */ | |
5193 update_window_manager_hints(0, 0); | |
5194 } | |
7 | 5195 |
5196 return OK; | |
5197 } | |
5198 | |
5199 /* | |
5200 * Get a reference to the font "name". | |
5201 * Return zero for failure. | |
5202 */ | |
5203 GuiFont | |
5204 gui_mch_get_font(char_u *name, int report_error) | |
5205 { | |
5206 PangoFontDescription *font; | |
5207 | |
5208 /* can't do this when GUI is not running */ | |
5209 if (!gui.in_use || name == NULL) | |
5210 return NULL; | |
5211 | |
5212 if (output_conv.vc_type != CONV_NONE) | |
5213 { | |
5214 char_u *buf; | |
5215 | |
5216 buf = string_convert(&output_conv, name, NULL); | |
5217 if (buf != NULL) | |
5218 { | |
5219 font = pango_font_description_from_string((const char *)buf); | |
5220 vim_free(buf); | |
5221 } | |
5222 else | |
5223 font = NULL; | |
5224 } | |
5225 else | |
5226 font = pango_font_description_from_string((const char *)name); | |
5227 | |
5228 if (font != NULL) | |
5229 { | |
5230 PangoFont *real_font; | |
5231 | |
5232 /* pango_context_load_font() bails out if no font size is set */ | |
5233 if (pango_font_description_get_size(font) <= 0) | |
5234 pango_font_description_set_size(font, 10 * PANGO_SCALE); | |
5235 | |
5236 real_font = pango_context_load_font(gui.text_context, font); | |
5237 | |
5238 if (real_font == NULL) | |
5239 { | |
5240 pango_font_description_free(font); | |
5241 font = NULL; | |
5242 } | |
5243 else | |
5244 g_object_unref(real_font); | |
5245 } | |
5246 | |
5247 if (font == NULL) | |
5248 { | |
5249 if (report_error) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15134
diff
changeset
|
5250 semsg(_((char *)e_font), name); |
7 | 5251 return NULL; |
5252 } | |
5253 | |
5254 return font; | |
5255 } | |
5256 | |
39 | 5257 #if defined(FEAT_EVAL) || defined(PROTO) |
38 | 5258 /* |
5259 * Return the name of font "font" in allocated memory. | |
5260 */ | |
5261 char_u * | |
1884 | 5262 gui_mch_get_fontname(GuiFont font, char_u *name UNUSED) |
38 | 5263 { |
5264 if (font != NOFONT) | |
5265 { | |
944 | 5266 char *pangoname = pango_font_description_to_string(font); |
5267 | |
5268 if (pangoname != NULL) | |
38 | 5269 { |
944 | 5270 char_u *s = vim_strsave((char_u *)pangoname); |
5271 | |
5272 g_free(pangoname); | |
38 | 5273 return s; |
5274 } | |
5275 } | |
5276 return NULL; | |
5277 } | |
39 | 5278 #endif |
38 | 5279 |
7 | 5280 /* |
5281 * If a font is not going to be used, free its structure. | |
5282 */ | |
5283 void | |
5284 gui_mch_free_font(GuiFont font) | |
5285 { | |
5286 if (font != NOFONT) | |
5287 pango_font_description_free(font); | |
5288 } | |
5289 | |
5290 /* | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5291 * 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
|
5292 * |
7 | 5293 * Return INVALCOLOR for error. |
5294 */ | |
5295 guicolor_T | |
5296 gui_mch_get_color(char_u *name) | |
5297 { | |
13674
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5298 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
|
5299 |
7 | 5300 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
|
5301 return color; |
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5302 |
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5303 if (name != NULL) |
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5304 color = gui_get_color_cmn(name); |
7 | 5305 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5306 #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
|
5307 return color; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5308 #else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5309 if (color == INVALCOLOR) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5310 return INVALCOLOR; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5311 |
11745
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5312 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
|
5313 (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
|
5314 (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
|
5315 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
|
5316 #endif |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5317 } |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5318 |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5319 /* |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5320 * 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
|
5321 * 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
|
5322 */ |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5323 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
|
5324 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
|
5325 { |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5326 #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
|
5327 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
|
5328 #else |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5329 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
|
5330 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
|
5331 |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5332 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
|
5333 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
|
5334 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
|
5335 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5336 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
|
5337 &gcolor, FALSE, TRUE); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5338 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5339 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
|
5340 #endif |
7 | 5341 } |
5342 | |
5343 /* | |
5344 * Set the current text foreground color. | |
5345 */ | |
5346 void | |
5347 gui_mch_set_fg_color(guicolor_T color) | |
5348 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5349 #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
|
5350 *gui.fgcolor = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5351 #else |
7 | 5352 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
|
5353 #endif |
7 | 5354 } |
5355 | |
5356 /* | |
5357 * Set the current text background color. | |
5358 */ | |
5359 void | |
5360 gui_mch_set_bg_color(guicolor_T color) | |
5361 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5362 #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
|
5363 *gui.bgcolor = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5364 #else |
7 | 5365 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
|
5366 #endif |
7 | 5367 } |
5368 | |
207 | 5369 /* |
5370 * Set the current text special color. | |
5371 */ | |
5372 void | |
5373 gui_mch_set_sp_color(guicolor_T color) | |
5374 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5375 #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
|
5376 *gui.spcolor = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5377 #else |
207 | 5378 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
|
5379 #endif |
207 | 5380 } |
5381 | |
7 | 5382 /* |
5383 * Function-like convenience macro for the sake of efficiency. | |
5384 */ | |
5385 #define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \ | |
5386 G_STMT_START{ \ | |
5387 PangoAttribute *tmp_attr_; \ | |
5388 tmp_attr_ = (Attribute); \ | |
5389 tmp_attr_->start_index = (Start); \ | |
5390 tmp_attr_->end_index = (End); \ | |
5391 pango_attr_list_insert((AttrList), tmp_attr_); \ | |
5392 }G_STMT_END | |
5393 | |
5394 static void | |
5395 apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list) | |
5396 { | |
5397 char_u *start = NULL; | |
5398 char_u *p; | |
5399 int uc; | |
5400 | |
5401 for (p = s; p < s + len; p += utf_byte2len(*p)) | |
5402 { | |
5403 uc = utf_ptr2char(p); | |
5404 | |
5405 if (start == NULL) | |
5406 { | |
5407 if (uc >= 0x80 && utf_char2cells(uc) == 2) | |
5408 start = p; | |
5409 } | |
5410 else if (uc < 0x80 /* optimization shortcut */ | |
5411 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc))) | |
5412 { | |
5413 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), | |
5414 attr_list, start - s, p - s); | |
5415 start = NULL; | |
5416 } | |
5417 } | |
5418 | |
5419 if (start != NULL) | |
5420 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), | |
5421 attr_list, start - s, len); | |
5422 } | |
5423 | |
5424 static int | |
5425 count_cluster_cells(char_u *s, PangoItem *item, | |
5426 PangoGlyphString* glyphs, int i, | |
5427 int *cluster_width, | |
5428 int *last_glyph_rbearing) | |
5429 { | |
5430 char_u *p; | |
5431 int next; /* glyph start index of next cluster */ | |
5432 int start, end; /* string segment of current cluster */ | |
5433 int width; /* real cluster width in Pango units */ | |
5434 int uc; | |
5435 int cellcount = 0; | |
5436 | |
5437 width = glyphs->glyphs[i].geometry.width; | |
5438 | |
5439 for (next = i + 1; next < glyphs->num_glyphs; ++next) | |
5440 { | |
5441 if (glyphs->glyphs[next].attr.is_cluster_start) | |
5442 break; | |
5443 else if (glyphs->glyphs[next].geometry.width > width) | |
5444 width = glyphs->glyphs[next].geometry.width; | |
5445 } | |
5446 | |
5447 start = item->offset + glyphs->log_clusters[i]; | |
5448 end = item->offset + ((next < glyphs->num_glyphs) ? | |
5449 glyphs->log_clusters[next] : item->length); | |
5450 | |
5451 for (p = s + start; p < s + end; p += utf_byte2len(*p)) | |
5452 { | |
5453 uc = utf_ptr2char(p); | |
5454 if (uc < 0x80) | |
5455 ++cellcount; | |
5456 else if (!utf_iscomposing(uc)) | |
5457 cellcount += utf_char2cells(uc); | |
5458 } | |
5459 | |
5460 if (last_glyph_rbearing != NULL | |
5461 && cellcount > 0 && next == glyphs->num_glyphs) | |
5462 { | |
5463 PangoRectangle ink_rect; | |
5464 /* | |
5465 * If a certain combining mark had to be taken from a non-monospace | |
5466 * font, we have to compensate manually by adapting x_offset according | |
5467 * to the ink extents of the previous glyph. | |
5468 */ | |
5469 pango_font_get_glyph_extents(item->analysis.font, | |
5470 glyphs->glyphs[i].glyph, | |
5471 &ink_rect, NULL); | |
5472 | |
5473 if (PANGO_RBEARING(ink_rect) > 0) | |
5474 *last_glyph_rbearing = PANGO_RBEARING(ink_rect); | |
5475 } | |
5476 | |
5477 if (cellcount > 0) | |
5478 *cluster_width = width; | |
5479 | |
5480 return cellcount; | |
5481 } | |
5482 | |
5483 /* | |
5484 * If there are only combining characters in the cluster, we cannot just | |
5485 * change the width of the previous glyph since there is none. Therefore | |
5486 * some guesswork is needed. | |
5487 * | |
5488 * If ink_rect.x is negative Pango apparently has taken care of the composing | |
5489 * by itself. Actually setting x_offset = 0 should be sufficient then, but due | |
5490 * 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
|
5491 * x_offset to avoid ugliness. |
7 | 5492 * |
5493 * If ink_rect.x is not negative, force overstriking by pointing x_offset to | |
5494 * the position of the previous glyph. Apparently this happens only with old | |
5495 * X fonts which don't provide the special combining information needed by | |
5496 * Pango. | |
5497 */ | |
5498 static void | |
5499 setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph, | |
5500 int last_cellcount, int last_cluster_width, | |
5501 int last_glyph_rbearing) | |
5502 { | |
5503 PangoRectangle ink_rect; | |
5504 PangoRectangle logical_rect; | |
5505 int width; | |
5506 | |
5507 width = last_cellcount * gui.char_width * PANGO_SCALE; | |
5508 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2; | |
5509 glyph->geometry.width = 0; | |
5510 | |
5511 pango_font_get_glyph_extents(item->analysis.font, | |
5512 glyph->glyph, | |
5513 &ink_rect, &logical_rect); | |
5514 if (ink_rect.x < 0) | |
5515 { | |
5516 glyph->geometry.x_offset += last_glyph_rbearing; | |
5517 glyph->geometry.y_offset = logical_rect.height | |
5518 - (gui.char_height - p_linespace) * PANGO_SCALE; | |
5519 } | |
2507
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
5520 else |
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
5521 /* 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
|
5522 * 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
|
5523 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2; |
7 | 5524 } |
5525 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5526 #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
|
5527 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5528 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
|
5529 PangoFont *font, PangoGlyphString *glyphs, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5530 cairo_t *cr) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5531 #else |
7 | 5532 static void |
5533 draw_glyph_string(int row, int col, int num_cells, int flags, | |
5534 PangoFont *font, PangoGlyphString *glyphs) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5535 #endif |
7 | 5536 { |
5537 if (!(flags & DRAW_TRANSP)) | |
5538 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5539 #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
|
5540 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5541 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
|
5542 gui.bgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5543 cairo_rectangle(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5544 FILL_X(col), FILL_Y(row), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5545 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
|
5546 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5547 #else |
7 | 5548 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
5549 | |
5550 gdk_draw_rectangle(gui.drawarea->window, | |
5551 gui.text_gc, | |
5552 TRUE, | |
5553 FILL_X(col), | |
5554 FILL_Y(row), | |
5555 num_cells * gui.char_width, | |
5556 gui.char_height); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5557 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5558 } |
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 #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
|
5561 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5562 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
|
5563 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5564 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
|
5565 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
|
5566 #else |
7 | 5567 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
5568 | |
5569 gdk_draw_glyphs(gui.drawarea->window, | |
5570 gui.text_gc, | |
5571 font, | |
5572 TEXT_X(col), | |
5573 TEXT_Y(row), | |
5574 glyphs); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5575 #endif |
7 | 5576 |
5577 /* redraw the contents with an offset of 1 to emulate bold */ | |
5578 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
|
5579 #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
|
5580 { |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5581 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5582 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
|
5583 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5584 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
|
5585 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
|
5586 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5587 #else |
7 | 5588 gdk_draw_glyphs(gui.drawarea->window, |
5589 gui.text_gc, | |
5590 font, | |
5591 TEXT_X(col) + 1, | |
5592 TEXT_Y(row), | |
5593 glyphs); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5594 #endif |
7 | 5595 } |
5596 | |
207 | 5597 /* |
5598 * Draw underline and undercurl at the bottom of the character cell. | |
5599 */ | |
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) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5601 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5602 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
|
5603 #else |
207 | 5604 static void |
5605 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
|
5606 #endif |
207 | 5607 { |
5608 int i; | |
5609 int offset; | |
1884 | 5610 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 }; |
207 | 5611 int y = FILL_Y(row + 1) - 1; |
5612 | |
5613 /* Undercurl: draw curl at the bottom of the character cell. */ | |
5614 if (flags & DRAW_UNDERC) | |
5615 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5616 #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
|
5617 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
|
5618 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
|
5619 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5620 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
|
5621 gui.spcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5622 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
|
5623 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5624 offset = val[i % 8]; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5625 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
|
5626 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5627 cairo_stroke(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5628 #else |
207 | 5629 gdk_gc_set_foreground(gui.text_gc, gui.spcolor); |
5630 for (i = FILL_X(col); i < FILL_X(col + cells); ++i) | |
5631 { | |
5632 offset = val[i % 8]; | |
5633 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset); | |
5634 } | |
5635 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
|
5636 #endif |
207 | 5637 } |
5638 | |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5639 /* Draw a strikethrough line */ |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5640 if (flags & DRAW_STRIKE) |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5641 { |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5642 #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
|
5643 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
|
5644 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
|
5645 cairo_set_source_rgba(cr, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5646 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
|
5647 gui.spcolor->alpha); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5648 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
|
5649 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
|
5650 cairo_stroke(cr); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5651 #else |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5652 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
|
5653 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
|
5654 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
|
5655 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
|
5656 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
|
5657 #endif |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5658 } |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5659 |
207 | 5660 /* Underline: draw a line at the bottom of the character cell. */ |
5661 if (flags & DRAW_UNDERL) | |
5662 { | |
5663 /* When p_linespace is 0, overwrite the bottom row of pixels. | |
5664 * Otherwise put the line just below the character. */ | |
5665 if (p_linespace > 1) | |
5666 y -= p_linespace - 1; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5667 #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
|
5668 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
|
5669 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
|
5670 cairo_set_source_rgba(cr, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5671 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
|
5672 gui.fgcolor->alpha); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5673 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
|
5674 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
|
5675 cairo_stroke(cr); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5676 #else |
207 | 5677 gdk_draw_line(gui.drawarea->window, gui.text_gc, |
5678 FILL_X(col), y, | |
5679 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
|
5680 #endif |
207 | 5681 } |
5682 } | |
5683 | |
7 | 5684 int |
5685 gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags) | |
5686 { | |
5687 GdkRectangle area; /* area for clip mask */ | |
5688 PangoGlyphString *glyphs; /* glyphs of current item */ | |
5689 int column_offset = 0; /* column offset in cells */ | |
5690 int i; | |
5691 char_u *conv_buf = NULL; /* result of UTF-8 conversion */ | |
5692 char_u *new_conv_buf; | |
5693 int convlen; | |
5694 char_u *sp, *bp; | |
5695 int plen; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5696 #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
|
5697 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5698 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5699 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5700 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL) |
7 | 5701 return len; |
5702 | |
5703 if (output_conv.vc_type != CONV_NONE) | |
5704 { | |
5705 /* | |
5706 * Convert characters from 'encoding' to 'termencoding', which is set | |
5707 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c | |
5708 * prohibits changing this to something else than UTF-8 if the GUI is | |
5709 * in use. | |
5710 */ | |
5711 convlen = len; | |
5712 conv_buf = string_convert(&output_conv, s, &convlen); | |
5713 g_return_val_if_fail(conv_buf != NULL, len); | |
5714 | |
5715 /* Correct for differences in char width: some chars are | |
5716 * double-wide in 'encoding' but single-wide in utf-8. Add a space to | |
5717 * compensate for that. */ | |
5718 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; ) | |
5719 { | |
474 | 5720 plen = utf_ptr2len(bp); |
7 | 5721 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1) |
5722 { | |
5723 new_conv_buf = alloc(convlen + 2); | |
5724 if (new_conv_buf == NULL) | |
5725 return len; | |
5726 plen += bp - conv_buf; | |
5727 mch_memmove(new_conv_buf, conv_buf, plen); | |
5728 new_conv_buf[plen] = ' '; | |
5729 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen, | |
5730 convlen - plen + 1); | |
5731 vim_free(conv_buf); | |
5732 conv_buf = new_conv_buf; | |
5733 ++convlen; | |
5734 bp = conv_buf + plen; | |
5735 plen = 1; | |
5736 } | |
474 | 5737 sp += (*mb_ptr2len)(sp); |
7 | 5738 bp += plen; |
5739 } | |
5740 s = conv_buf; | |
5741 len = convlen; | |
5742 } | |
5743 | |
5744 /* | |
5745 * Restrict all drawing to the current screen line in order to prevent | |
5746 * fuzzy font lookups from messing up the screen. | |
5747 */ | |
5748 area.x = gui.border_offset; | |
5749 area.y = FILL_Y(row); | |
5750 area.width = gui.num_cols * gui.char_width; | |
5751 area.height = gui.char_height; | |
5752 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5753 #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
|
5754 cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5755 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
|
5756 cairo_clip(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5757 #else |
7 | 5758 gdk_gc_set_clip_origin(gui.text_gc, 0, 0); |
5759 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
|
5760 #endif |
7 | 5761 |
5762 glyphs = pango_glyph_string_new(); | |
5763 | |
5764 /* | |
5765 * Optimization hack: If possible, skip the itemize and shaping process | |
5766 * for pure ASCII strings. This optimization is particularly effective | |
5767 * because Vim draws space characters to clear parts of the screen. | |
5768 */ | |
5769 if (!(flags & DRAW_ITALIC) | |
5770 && !((flags & DRAW_BOLD) && gui.font_can_bold) | |
5771 && gui.ascii_glyphs != NULL) | |
5772 { | |
5773 char_u *p; | |
5774 | |
5775 for (p = s; p < s + len; ++p) | |
5776 if (*p & 0x80) | |
5777 goto not_ascii; | |
5778 | |
5779 pango_glyph_string_set_size(glyphs, len); | |
5780 | |
5781 for (i = 0; i < len; ++i) | |
5782 { | |
9879
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5783 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]]; |
7 | 5784 glyphs->log_clusters[i] = i; |
5785 } | |
5786 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5787 #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
|
5788 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
|
5789 #else |
7 | 5790 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
|
5791 #endif |
7 | 5792 |
5793 column_offset = len; | |
5794 } | |
5795 else | |
5796 not_ascii: | |
5797 { | |
5798 PangoAttrList *attr_list; | |
5799 GList *item_list; | |
5800 int cluster_width; | |
5801 int last_glyph_rbearing; | |
5802 int cells = 0; /* cells occupied by current cluster */ | |
5803 | |
26 | 5804 /* Safety check: pango crashes when invoked with invalid utf-8 |
5805 * characters. */ | |
5806 if (!utf_valid_string(s, s + len)) | |
5807 { | |
5808 column_offset = len; | |
5809 goto skipitall; | |
5810 } | |
5811 | |
7 | 5812 /* original width of the current cluster */ |
5813 cluster_width = PANGO_SCALE * gui.char_width; | |
5814 | |
5815 /* right bearing of the last non-composing glyph */ | |
5816 last_glyph_rbearing = PANGO_SCALE * gui.char_width; | |
5817 | |
5818 attr_list = pango_attr_list_new(); | |
5819 | |
5820 /* If 'guifontwide' is set then use that for double-width characters. | |
5821 * Otherwise just go with 'guifont' and let Pango do its thing. */ | |
5822 if (gui.wide_font != NULL) | |
5823 apply_wide_font_attr(s, len, attr_list); | |
5824 | |
5825 if ((flags & DRAW_BOLD) && gui.font_can_bold) | |
5826 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD), | |
5827 attr_list, 0, len); | |
5828 if (flags & DRAW_ITALIC) | |
5829 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC), | |
5830 attr_list, 0, len); | |
5831 /* | |
5832 * Break the text into segments with consistent directional level | |
5833 * and shaping engine. Pure Latin text needs only a single segment, | |
5834 * so there's no need to worry about the loop's efficiency. Better | |
5835 * try to optimize elsewhere, e.g. reducing exposes and stuff :) | |
5836 */ | |
5837 item_list = pango_itemize(gui.text_context, | |
5838 (const char *)s, 0, len, attr_list, NULL); | |
5839 | |
5840 while (item_list != NULL) | |
5841 { | |
5842 PangoItem *item; | |
5843 int item_cells = 0; /* item length in cells */ | |
5844 | |
5845 item = (PangoItem *)item_list->data; | |
5846 item_list = g_list_delete_link(item_list, item_list); | |
5847 /* | |
5848 * Increment the bidirectional embedding level by 1 if it is not | |
5849 * even. An odd number means the output will be RTL, but we don't | |
5850 * want that since Vim handles right-to-left text on its own. It | |
5851 * would probably be sufficient to just set level = 0, but you can | |
5852 * never know :) | |
5853 * | |
5854 * Unfortunately we can't take advantage of Pango's ability to | |
5855 * render both LTR and RTL at the same time. In order to support | |
5856 * that, Vim's main screen engine would have to make use of Pango | |
5857 * functionality. | |
5858 */ | |
5859 item->analysis.level = (item->analysis.level + 1) & (~1U); | |
5860 | |
5861 /* HACK: Overrule the shape engine, we don't want shaping to be | |
5862 * done, because drawing the cursor would change the display. */ | |
5863 item->analysis.shape_engine = default_shape_engine; | |
5864 | |
7098
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
5865 #ifdef HAVE_PANGO_SHAPE_FULL |
7086
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
5866 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
|
5867 (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
|
5868 #else |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
5869 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
|
5870 &item->analysis, glyphs); |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
5871 #endif |
7 | 5872 /* |
5873 * Fixed-width hack: iterate over the array and assign a fixed | |
5874 * width to each glyph, thus overriding the choice made by the | |
5875 * shaping engine. We use utf_char2cells() to determine the | |
5876 * number of cells needed. | |
5877 * | |
5878 * Also perform all kind of dark magic to get composing | |
5879 * characters right (and pretty too of course). | |
5880 */ | |
5881 for (i = 0; i < glyphs->num_glyphs; ++i) | |
5882 { | |
5883 PangoGlyphInfo *glyph; | |
5884 | |
5885 glyph = &glyphs->glyphs[i]; | |
5886 | |
5887 if (glyph->attr.is_cluster_start) | |
5888 { | |
5889 int cellcount; | |
5890 | |
5891 cellcount = count_cluster_cells( | |
5892 s, item, glyphs, i, &cluster_width, | |
5893 (item_list != NULL) ? &last_glyph_rbearing : NULL); | |
5894 | |
5895 if (cellcount > 0) | |
5896 { | |
5897 int width; | |
5898 | |
5899 width = cellcount * gui.char_width * PANGO_SCALE; | |
5900 glyph->geometry.x_offset += | |
5901 MAX(0, width - cluster_width) / 2; | |
5902 glyph->geometry.width = width; | |
5903 } | |
5904 else | |
5905 { | |
5906 /* If there are only combining characters in the | |
5907 * cluster, we cannot just change the width of the | |
5908 * previous glyph since there is none. Therefore | |
5909 * some guesswork is needed. */ | |
5910 setup_zero_width_cluster(item, glyph, cells, | |
5911 cluster_width, | |
5912 last_glyph_rbearing); | |
5913 } | |
5914 | |
5915 item_cells += cellcount; | |
5916 cells = cellcount; | |
5917 } | |
5918 else if (i > 0) | |
5919 { | |
5920 int width; | |
5921 | |
5922 /* 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
|
5923 * characters the canonical way. |
2517
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5924 * 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
|
5925 * 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
|
5926 * and set the previous width to zero. |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5927 * 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
|
5928 * 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
|
5929 * 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
|
5930 * 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
|
5931 * 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
|
5932 if (glyph->geometry.x_offset >= 0) |
2517
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5933 { |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5934 glyphs->glyphs[i].geometry.width = |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5935 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
|
5936 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
|
5937 } |
7 | 5938 width = cells * gui.char_width * PANGO_SCALE; |
5939 glyph->geometry.x_offset += | |
5940 MAX(0, width - cluster_width) / 2; | |
5941 } | |
5942 else /* i == 0 "cannot happen" */ | |
5943 { | |
5944 glyph->geometry.width = 0; | |
5945 } | |
5946 } | |
5947 | |
5948 /*** Aaaaand action! ***/ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5949 #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
|
5950 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
|
5951 flags, item->analysis.font, glyphs, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5952 cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5953 #else |
7 | 5954 draw_glyph_string(row, col + column_offset, item_cells, |
5955 flags, item->analysis.font, glyphs); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5956 #endif |
7 | 5957 |
5958 pango_item_free(item); | |
5959 | |
5960 column_offset += item_cells; | |
5961 } | |
5962 | |
5963 pango_attr_list_unref(attr_list); | |
5964 } | |
5965 | |
26 | 5966 skipitall: |
207 | 5967 /* Draw underline and undercurl. */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5968 #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
|
5969 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
|
5970 #else |
207 | 5971 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
|
5972 #endif |
7 | 5973 |
5974 pango_glyph_string_free(glyphs); | |
5975 vim_free(conv_buf); | |
5976 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5977 #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
|
5978 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5979 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5980 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
|
5981 &area, FALSE); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5982 #else |
7 | 5983 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
|
5984 #endif |
7 | 5985 |
5986 return column_offset; | |
5987 } | |
5988 | |
5989 /* | |
5990 * Return OK if the key with the termcap name "name" is supported. | |
5991 */ | |
5992 int | |
5993 gui_mch_haskey(char_u *name) | |
5994 { | |
5995 int i; | |
5996 | |
5997 for (i = 0; special_keys[i].key_sym != 0; i++) | |
5998 if (name[0] == special_keys[i].code0 | |
5999 && name[1] == special_keys[i].code1) | |
6000 return OK; | |
6001 return FAIL; | |
6002 } | |
6003 | |
4133 | 6004 #if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO) |
7 | 6005 /* |
6006 * Return the text window-id and display. Only required for X-based GUI's | |
6007 */ | |
6008 int | |
6009 gui_get_x11_windis(Window *win, Display **dis) | |
6010 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6011 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
|
6012 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6013 *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
|
6014 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)); |
7 | 6015 return OK; |
6016 } | |
6017 | |
6018 *dis = NULL; | |
6019 *win = 0; | |
6020 return FAIL; | |
6021 } | |
6022 #endif | |
6023 | |
6024 #if defined(FEAT_CLIENTSERVER) \ | |
6025 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO) | |
6026 | |
6027 Display * | |
6028 gui_mch_get_display(void) | |
6029 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6030 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
|
6031 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
7 | 6032 else |
6033 return NULL; | |
6034 } | |
6035 #endif | |
6036 | |
6037 void | |
6038 gui_mch_beep(void) | |
6039 { | |
6040 GdkDisplay *display; | |
6041 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6042 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
7 | 6043 display = gtk_widget_get_display(gui.mainwin); |
6044 else | |
6045 display = gdk_display_get_default(); | |
6046 | |
6047 if (display != NULL) | |
6048 gdk_display_beep(display); | |
6049 } | |
6050 | |
6051 void | |
6052 gui_mch_flash(int msec) | |
6053 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6054 #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
|
6055 /* TODO Replace GdkGC with Cairo */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6056 (void)msec; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6057 #else |
7 | 6058 GdkGCValues values; |
6059 GdkGC *invert_gc; | |
6060 | |
6061 if (gui.drawarea->window == NULL) | |
6062 return; | |
6063 | |
6064 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; | |
6065 values.background.pixel = gui.norm_pixel ^ gui.back_pixel; | |
6066 values.function = GDK_XOR; | |
6067 invert_gc = gdk_gc_new_with_values(gui.drawarea->window, | |
6068 &values, | |
6069 GDK_GC_FOREGROUND | | |
6070 GDK_GC_BACKGROUND | | |
6071 GDK_GC_FUNCTION); | |
6072 gdk_gc_set_exposures(invert_gc, | |
6073 gui.visibility != GDK_VISIBILITY_UNOBSCURED); | |
6074 /* | |
6075 * Do a visual beep by changing back and forth in some undetermined way, | |
6076 * the foreground and background colors. This is due to the fact that | |
6077 * there can't be really any prediction about the effects of XOR on | |
6078 * arbitrary X11 servers. However this seems to be enough for what we | |
6079 * intend it to do. | |
6080 */ | |
6081 gdk_draw_rectangle(gui.drawarea->window, invert_gc, | |
6082 TRUE, | |
6083 0, 0, | |
6084 FILL_X((int)Columns) + gui.border_offset, | |
6085 FILL_Y((int)Rows) + gui.border_offset); | |
6086 | |
6087 gui_mch_flush(); | |
6088 ui_delay((long)msec, TRUE); /* wait so many msec */ | |
6089 | |
6090 gdk_draw_rectangle(gui.drawarea->window, invert_gc, | |
6091 TRUE, | |
6092 0, 0, | |
6093 FILL_X((int)Columns) + gui.border_offset, | |
6094 FILL_Y((int)Rows) + gui.border_offset); | |
6095 | |
6096 gdk_gc_destroy(invert_gc); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6097 #endif |
7 | 6098 } |
6099 | |
6100 /* | |
6101 * Invert a rectangle from row r, column c, for nr rows and nc columns. | |
6102 */ | |
6103 void | |
6104 gui_mch_invert_rectangle(int r, int c, int nr, int nc) | |
6105 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6106 #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
|
6107 const GdkRectangle rect = { |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6108 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
|
6109 }; |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6110 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
|
6111 |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6112 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
|
6113 # 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
|
6114 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
|
6115 # else |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6116 /* 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
|
6117 # endif |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6118 gdk_cairo_rectangle(cr, &rect); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6119 cairo_fill(cr); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6120 |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6121 cairo_destroy(cr); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6122 |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6123 if (!gui.by_signal) |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6124 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
|
6125 rect.width, rect.height); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6126 #else |
7 | 6127 GdkGCValues values; |
6128 GdkGC *invert_gc; | |
6129 | |
6130 if (gui.drawarea->window == NULL) | |
6131 return; | |
6132 | |
944 | 6133 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
6134 values.background.pixel = gui.norm_pixel ^ gui.back_pixel; | |
7 | 6135 values.function = GDK_XOR; |
6136 invert_gc = gdk_gc_new_with_values(gui.drawarea->window, | |
6137 &values, | |
6138 GDK_GC_FOREGROUND | | |
6139 GDK_GC_BACKGROUND | | |
6140 GDK_GC_FUNCTION); | |
944 | 6141 gdk_gc_set_exposures(invert_gc, gui.visibility != |
6142 GDK_VISIBILITY_UNOBSCURED); | |
7 | 6143 gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
6144 TRUE, | |
6145 FILL_X(c), FILL_Y(r), | |
6146 (nc) * gui.char_width, (nr) * gui.char_height); | |
6147 gdk_gc_destroy(invert_gc); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6148 #endif |
7 | 6149 } |
6150 | |
6151 /* | |
6152 * Iconify the GUI window. | |
6153 */ | |
6154 void | |
6155 gui_mch_iconify(void) | |
6156 { | |
6157 gtk_window_iconify(GTK_WINDOW(gui.mainwin)); | |
6158 } | |
6159 | |
6160 #if defined(FEAT_EVAL) || defined(PROTO) | |
6161 /* | |
6162 * Bring the Vim window to the foreground. | |
6163 */ | |
6164 void | |
6165 gui_mch_set_foreground(void) | |
6166 { | |
6167 gtk_window_present(GTK_WINDOW(gui.mainwin)); | |
6168 } | |
6169 #endif | |
6170 | |
6171 /* | |
6172 * Draw a cursor without focus. | |
6173 */ | |
6174 void | |
6175 gui_mch_draw_hollow_cursor(guicolor_T color) | |
6176 { | |
6177 int i = 1; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6178 #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
|
6179 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6180 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6181 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6182 if (gtk_widget_get_window(gui.drawarea) == NULL) |
7 | 6183 return; |
6184 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6185 #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
|
6186 cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6187 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6188 |
7 | 6189 gui_mch_set_fg_color(color); |
6190 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6191 #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
|
6192 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6193 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
|
6194 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6195 #else |
7 | 6196 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
|
6197 #endif |
7 | 6198 if (mb_lefthalve(gui.row, gui.col)) |
6199 i = 2; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6200 #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
|
6201 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
|
6202 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
|
6203 cairo_rectangle(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6204 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
|
6205 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
|
6206 cairo_stroke(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6207 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6208 #else |
7 | 6209 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
6210 FALSE, | |
6211 FILL_X(gui.col), FILL_Y(gui.row), | |
6212 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
|
6213 #endif |
7 | 6214 } |
6215 | |
6216 /* | |
6217 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using | |
6218 * color "color". | |
6219 */ | |
6220 void | |
6221 gui_mch_draw_part_cursor(int w, int h, guicolor_T color) | |
6222 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6223 if (gtk_widget_get_window(gui.drawarea) == NULL) |
7 | 6224 return; |
6225 | |
6226 gui_mch_set_fg_color(color); | |
6227 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6228 #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
|
6229 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6230 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6231 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6232 cr = cairo_create(gui.surface); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6233 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6234 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
|
6235 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6236 cairo_rectangle(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6237 # ifdef FEAT_RIGHTLEFT |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6238 /* 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
|
6239 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
|
6240 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6241 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
|
6242 w, h); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6243 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6244 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6245 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6246 #else /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6247 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
6248 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, | |
6249 TRUE, | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6250 # ifdef FEAT_RIGHTLEFT |
7 | 6251 /* vertical line should be on the right of current point */ |
6252 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
|
6253 # endif |
7 | 6254 FILL_X(gui.col), |
6255 FILL_Y(gui.row) + gui.char_height - h, | |
6256 w, h); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6257 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6258 } |
6259 | |
6260 | |
6261 /* | |
6262 * Catch up with any queued X11 events. This may put keyboard input into the | |
6263 * input buffer, call resize call-backs, trigger timers etc. If there is | |
6264 * nothing in the X11 event queue (& no timers pending), then we return | |
6265 * immediately. | |
6266 */ | |
6267 void | |
6268 gui_mch_update(void) | |
6269 { | |
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
|
6270 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
|
6271 g_main_context_iteration(NULL, TRUE); |
7 | 6272 } |
6273 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6274 static timeout_cb_type |
7 | 6275 input_timer_cb(gpointer data) |
6276 { | |
6277 int *timed_out = (int *) data; | |
6278 | |
1226 | 6279 /* Just inform the caller about the occurrence of it */ |
7 | 6280 *timed_out = TRUE; |
6281 | |
6282 return FALSE; /* don't happen again */ | |
6283 } | |
6284 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6285 #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
|
6286 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
|
6287 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
|
6288 { |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6289 /* 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
|
6290 * 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
|
6291 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
|
6292 parse_queued_messages(); |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6293 |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6294 return TRUE; /* repeat */ |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6295 } |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6296 #endif |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6297 |
7 | 6298 /* |
6299 * GUI input routine called by gui_wait_for_chars(). Waits for a character | |
6300 * from the keyboard. | |
6301 * wtime == -1 Wait forever. | |
6302 * wtime == 0 This should never happen. | |
6303 * wtime > 0 Wait wtime milliseconds for a character. | |
6304 * Returns OK if a character was found to be available within the given time, | |
6305 * or FAIL otherwise. | |
6306 */ | |
6307 int | |
6308 gui_mch_wait_for_chars(long wtime) | |
6309 { | |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6310 int focus; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6311 guint timer; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6312 static int timed_out; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6313 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
|
6314 #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
|
6315 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
|
6316 #endif |
7 | 6317 |
6318 timed_out = FALSE; | |
6319 | |
15665
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
6320 // 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
|
6321 // 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
|
6322 if (wtime >= 0) |
15730
e5441bee8063
patch 8.1.0872: confusing condition
Bram Moolenaar <Bram@vim.org>
parents:
15665
diff
changeset
|
6323 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
|
6324 input_timer_cb, &timed_out); |
7 | 6325 else |
6326 timer = 0; | |
6327 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6328 #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
|
6329 /* 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
|
6330 * on them. */ |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6331 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
|
6332 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
|
6333 #endif |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6334 |
7 | 6335 focus = gui.in_focus; |
6336 | |
6337 do | |
6338 { | |
6339 /* Stop or start blinking when focus changes */ | |
6340 if (gui.in_focus != focus) | |
6341 { | |
6342 if (gui.in_focus) | |
6343 gui_mch_start_blink(); | |
6344 else | |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
12802
diff
changeset
|
6345 gui_mch_stop_blink(TRUE); |
7 | 6346 focus = gui.in_focus; |
6347 } | |
6348 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
6349 #ifdef MESSAGE_QUEUE |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6350 # ifdef FEAT_TIMERS |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6351 did_add_timer = FALSE; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6352 # endif |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
6353 parse_queued_messages(); |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6354 # ifdef FEAT_TIMERS |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6355 if (did_add_timer) |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6356 /* Need to recompute the waiting time. */ |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6357 goto theend; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6358 # endif |
1624 | 6359 #endif |
6360 | |
7 | 6361 /* |
6362 * Loop in GTK+ processing until a timeout or input occurs. | |
22 | 6363 * Skip this if input is available anyway (can happen in rare |
6364 * situations, sort of race condition). | |
7 | 6365 */ |
22 | 6366 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
|
6367 g_main_context_iteration(NULL, TRUE); |
7 | 6368 |
6369 /* Got char, return immediately */ | |
6370 if (input_available()) | |
6371 { | |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6372 retval = OK; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6373 goto theend; |
7 | 6374 } |
6375 } while (wtime < 0 || !timed_out); | |
6376 | |
6377 /* | |
6378 * Flush all eventually pending (drawing) events. | |
6379 */ | |
6380 gui_mch_update(); | |
6381 | |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6382 theend: |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6383 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
|
6384 timeout_remove(timer); |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6385 #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
|
6386 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
|
6387 timeout_remove(channel_timer); |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6388 #endif |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6389 |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6390 return retval; |
7 | 6391 } |
6392 | |
6393 | |
6394 /**************************************************************************** | |
6395 * Output drawing routines. | |
6396 ****************************************************************************/ | |
6397 | |
6398 | |
6399 /* Flush any output to the screen */ | |
6400 void | |
6401 gui_mch_flush(void) | |
6402 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6403 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
|
6404 #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
|
6405 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
|
6406 #else |
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
6407 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
|
6408 #endif |
7 | 6409 } |
6410 | |
6411 /* | |
6412 * Clear a rectangular region of the screen from text pos (row1, col1) to | |
6413 * (row2, col2) inclusive. | |
6414 */ | |
6415 void | |
10920
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6416 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
|
6417 { |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6418 |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6419 int col1 = check_col(col1arg); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6420 int col2 = check_col(col2arg); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6421 int row1 = check_row(row1arg); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6422 int row2 = check_row(row2arg); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6423 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6424 #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
|
6425 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
|
6426 return; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6427 #else |
7 | 6428 GdkColor color; |
6429 | |
6430 if (gui.drawarea->window == NULL) | |
6431 return; | |
6432 | |
6433 color.pixel = gui.back_pixel; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6434 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6435 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6436 #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
|
6437 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6438 /* 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
|
6439 * bold glyph may sit there. */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6440 const GdkRectangle rect = { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6441 FILL_X(col1), FILL_Y(row1), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6442 (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
|
6443 (row2 - row1 + 1) * gui.char_height |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6444 }; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6445 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
|
6446 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
|
6447 # 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
|
6448 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
|
6449 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6450 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
|
6451 if (pat != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6452 cairo_set_source(cr, pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6453 else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6454 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
|
6455 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6456 gdk_cairo_rectangle(cr, &rect); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6457 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6458 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6459 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6460 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6461 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
|
6462 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6463 #else /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6464 gdk_gc_set_foreground(gui.text_gc, &color); |
6465 | |
6466 /* Clear one extra pixel at the far right, for when bold characters have | |
6467 * spilled over to the window border. */ | |
6468 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE, | |
6469 FILL_X(col1), FILL_Y(row1), | |
6470 (col2 - col1 + 1) * gui.char_width | |
6471 + (col2 == Columns - 1), | |
6472 (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
|
6473 #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
|
6474 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6475 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6476 #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
|
6477 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6478 gui_gtk_window_clear(GdkWindow *win) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6479 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6480 const GdkRectangle rect = { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6481 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
|
6482 }; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6483 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
|
6484 # 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
|
6485 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
|
6486 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6487 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
|
6488 if (pat != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6489 cairo_set_source(cr, pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6490 else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6491 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
|
6492 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6493 gdk_cairo_rectangle(cr, &rect); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6494 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6495 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6496 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6497 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6498 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
|
6499 } |
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
|
6500 #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
|
6501 # 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
|
6502 #endif |
7 | 6503 |
6504 void | |
6505 gui_mch_clear_all(void) | |
6506 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6507 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
|
6508 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
|
6509 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6510 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6511 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 6512 /* |
6513 * Redraw any text revealed by scrolling up/down. | |
6514 */ | |
6515 static void | |
6516 check_copy_area(void) | |
6517 { | |
6518 GdkEvent *event; | |
6519 int expose_count; | |
6520 | |
6521 if (gui.visibility != GDK_VISIBILITY_PARTIAL) | |
6522 return; | |
6523 | |
6524 /* Avoid redrawing the cursor while scrolling or it'll end up where | |
6525 * we don't want it to be. I'm not sure if it's correct to call | |
6526 * gui_dont_update_cursor() at this point but it works as a quick | |
6527 * fix for now. */ | |
9848
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9836
diff
changeset
|
6528 gui_dont_update_cursor(TRUE); |
7 | 6529 |
6530 do | |
6531 { | |
6532 /* Wait to check whether the scroll worked or not. */ | |
6533 event = gdk_event_get_graphics_expose(gui.drawarea->window); | |
6534 | |
6535 if (event == NULL) | |
6536 break; /* received NoExpose event */ | |
6537 | |
6538 gui_redraw(event->expose.area.x, event->expose.area.y, | |
6539 event->expose.area.width, event->expose.area.height); | |
6540 | |
6541 expose_count = event->expose.count; | |
6542 gdk_event_free(event); | |
6543 } | |
6544 while (expose_count > 0); /* more events follow */ | |
6545 | |
6546 gui_can_update_cursor(); | |
6547 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6548 #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
|
6549 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6550 #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
|
6551 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6552 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
|
6553 int src_x, int src_y, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6554 int width, int height) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6555 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6556 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
|
6557 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6558 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
|
6559 cairo_clip(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6560 cairo_push_group(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6561 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
|
6562 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6563 cairo_pop_group_to_source(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6564 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6565 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6566 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6567 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6568 #endif |
7 | 6569 |
6570 /* | |
6571 * Delete the given number of lines from the given row, scrolling up any | |
6572 * text further down within the scroll region. | |
6573 */ | |
6574 void | |
6575 gui_mch_delete_lines(int row, int num_lines) | |
6576 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6577 #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
|
6578 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
|
6579 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
|
6580 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
|
6581 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6582 gui_gtk_surface_copy_rect( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6583 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
|
6584 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
|
6585 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
|
6586 gui_clear_block( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6587 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
|
6588 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
|
6589 gui_gtk3_redraw( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6590 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
|
6591 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
|
6592 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6593 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
|
6594 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
|
6595 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
|
6596 #else |
7 | 6597 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
6598 return; /* Can't see the window */ | |
6599 | |
6600 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); | |
6601 gdk_gc_set_background(gui.text_gc, gui.bgcolor); | |
6602 | |
6603 /* copy one extra pixel, for when bold has spilled over */ | |
6604 gdk_window_copy_area(gui.drawarea->window, gui.text_gc, | |
6605 FILL_X(gui.scroll_region_left), FILL_Y(row), | |
6606 gui.drawarea->window, | |
6607 FILL_X(gui.scroll_region_left), | |
6608 FILL_Y(row + num_lines), | |
6609 gui.char_width * (gui.scroll_region_right | |
6610 - gui.scroll_region_left + 1) + 1, | |
6611 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); | |
6612 | |
6613 gui_clear_block(gui.scroll_region_bot - num_lines + 1, | |
6614 gui.scroll_region_left, | |
6615 gui.scroll_region_bot, gui.scroll_region_right); | |
6616 check_copy_area(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6617 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6618 } |
6619 | |
6620 /* | |
6621 * Insert the given number of lines before the given row, scrolling down any | |
6622 * following text within the scroll region. | |
6623 */ | |
6624 void | |
6625 gui_mch_insert_lines(int row, int num_lines) | |
6626 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6627 #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
|
6628 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
|
6629 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
|
6630 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
|
6631 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6632 gui_gtk_surface_copy_rect( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6633 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
|
6634 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
|
6635 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
|
6636 gui_mch_clear_block( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6637 row, gui.scroll_region_left, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6638 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
|
6639 gui_gtk3_redraw( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6640 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
|
6641 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
|
6642 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6643 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
|
6644 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
|
6645 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
|
6646 #else |
7 | 6647 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
6648 return; /* Can't see the window */ | |
6649 | |
6650 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); | |
6651 gdk_gc_set_background(gui.text_gc, gui.bgcolor); | |
6652 | |
6653 /* copy one extra pixel, for when bold has spilled over */ | |
6654 gdk_window_copy_area(gui.drawarea->window, gui.text_gc, | |
6655 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), | |
6656 gui.drawarea->window, | |
6657 FILL_X(gui.scroll_region_left), FILL_Y(row), | |
6658 gui.char_width * (gui.scroll_region_right | |
6659 - gui.scroll_region_left + 1) + 1, | |
6660 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); | |
6661 | |
6662 gui_clear_block(row, gui.scroll_region_left, | |
6663 row + num_lines - 1, gui.scroll_region_right); | |
6664 check_copy_area(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6665 #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 6666 } |
6667 | |
6668 /* | |
6669 * X Selection stuff, for cutting and pasting text to other windows. | |
6670 */ | |
6671 void | |
6672 clip_mch_request_selection(VimClipboard *cbd) | |
6673 { | |
6674 GdkAtom target; | |
6675 unsigned i; | |
1494 | 6676 time_t start; |
7 | 6677 |
6678 for (i = 0; i < N_SELECTION_TARGETS; ++i) | |
6679 { | |
1904 | 6680 if (!clip_html && selection_targets[i].info == TARGET_HTML) |
6681 continue; | |
7 | 6682 received_selection = RS_NONE; |
6683 target = gdk_atom_intern(selection_targets[i].target, FALSE); | |
6684 | |
6685 gtk_selection_convert(gui.drawarea, | |
6686 cbd->gtk_sel_atom, target, | |
6687 (guint32)GDK_CURRENT_TIME); | |
6688 | |
1494 | 6689 /* Hack: Wait up to three seconds for the selection. A hang was |
6690 * noticed here when using the netrw plugin combined with ":gui" | |
6691 * during the FocusGained event. */ | |
6692 start = time(NULL); | |
6693 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
|
6694 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */ |
7 | 6695 |
6696 if (received_selection != RS_FAIL) | |
6697 return; | |
6698 } | |
6699 | |
6700 /* 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
|
6701 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
|
6702 cbd); |
7 | 6703 } |
6704 | |
6705 /* | |
6706 * Disown the selection. | |
6707 */ | |
6708 void | |
1884 | 6709 clip_mch_lose_selection(VimClipboard *cbd UNUSED) |
7 | 6710 { |
13503
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6711 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
|
6712 { |
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6713 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
|
6714 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
|
6715 } |
7 | 6716 } |
6717 | |
6718 /* | |
6719 * Own the selection and return OK if it worked. | |
6720 */ | |
6721 int | |
6722 clip_mch_own_selection(VimClipboard *cbd) | |
6723 { | |
6724 int success; | |
6725 | |
6726 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom, | |
2923 | 6727 gui.event_time); |
7 | 6728 gui_mch_update(); |
6729 return (success) ? OK : FAIL; | |
6730 } | |
6731 | |
6732 /* | |
6733 * Send the current selection to the clipboard. Do nothing for X because we | |
6734 * will fill in the selection only when requested by another app. | |
6735 */ | |
6736 void | |
1884 | 6737 clip_mch_set_selection(VimClipboard *cbd UNUSED) |
7 | 6738 { |
6739 } | |
6740 | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6741 #if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO) |
4209 | 6742 int |
6743 clip_gtk_owner_exists(VimClipboard *cbd) | |
6744 { | |
6745 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL; | |
6746 } | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6747 #endif |
4209 | 6748 |
7 | 6749 |
6750 #if defined(FEAT_MENU) || defined(PROTO) | |
6751 /* | |
6752 * Make a menu item appear either active or not active (grey or not grey). | |
6753 */ | |
6754 void | |
6755 gui_mch_menu_grey(vimmenu_T *menu, int grey) | |
6756 { | |
6757 if (menu->id == NULL) | |
6758 return; | |
6759 | |
6760 if (menu_is_separator(menu->name)) | |
6761 grey = TRUE; | |
6762 | |
6763 gui_mch_menu_hidden(menu, FALSE); | |
6764 /* Be clever about bitfields versus true booleans here! */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6765 if (!gtk_widget_get_sensitive(menu->id) == !grey) |
7 | 6766 { |
6767 gtk_widget_set_sensitive(menu->id, !grey); | |
6768 gui_mch_update(); | |
6769 } | |
6770 } | |
6771 | |
6772 /* | |
6773 * Make menu item hidden or not hidden. | |
6774 */ | |
6775 void | |
6776 gui_mch_menu_hidden(vimmenu_T *menu, int hidden) | |
6777 { | |
6778 if (menu->id == 0) | |
6779 return; | |
6780 | |
6781 if (hidden) | |
6782 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6783 if (gtk_widget_get_visible(menu->id)) |
7 | 6784 { |
6785 gtk_widget_hide(menu->id); | |
6786 gui_mch_update(); | |
6787 } | |
6788 } | |
6789 else | |
6790 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6791 if (!gtk_widget_get_visible(menu->id)) |
7 | 6792 { |
6793 gtk_widget_show(menu->id); | |
6794 gui_mch_update(); | |
6795 } | |
6796 } | |
6797 } | |
6798 | |
6799 /* | |
6800 * This is called after setting all the menus to grey/hidden or not. | |
6801 */ | |
6802 void | |
6803 gui_mch_draw_menubar(void) | |
6804 { | |
6805 /* just make sure that the visual changes get effect immediately */ | |
6806 gui_mch_update(); | |
6807 } | |
6808 #endif /* FEAT_MENU */ | |
6809 | |
6810 /* | |
6811 * Scrollbar stuff. | |
6812 */ | |
6813 void | |
6814 gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) | |
6815 { | |
6816 if (sb->id == NULL) | |
6817 return; | |
6818 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6819 gtk_widget_set_visible(sb->id, flag); |
791 | 6820 update_window_manager_hints(0, 0); |
7 | 6821 } |
6822 | |
6823 | |
6824 /* | |
6825 * Return the RGB value of a pixel as long. | |
6826 */ | |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
6827 guicolor_T |
7 | 6828 gui_mch_get_rgb(guicolor_T pixel) |
6829 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6830 #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
|
6831 return (long_u)pixel; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6832 #else |
7 | 6833 GdkColor color; |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6834 |
7 | 6835 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea), |
6836 (unsigned long)pixel, &color); | |
6837 | |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
6838 return (guicolor_T)( |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
6839 (((unsigned)color.red & 0xff00) << 8) |
7 | 6840 | ((unsigned)color.green & 0xff00) |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
6841 | (((unsigned)color.blue & 0xff00) >> 8)); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6842 #endif |
7 | 6843 } |
6844 | |
6845 /* | |
88 | 6846 * Get current mouse coordinates in text window. |
7 | 6847 */ |
88 | 6848 void |
6849 gui_mch_getmouse(int *x, int *y) | |
7 | 6850 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6851 gui_gtk_get_pointer(gui.drawarea, x, y, NULL); |
7 | 6852 } |
6853 | |
6854 void | |
6855 gui_mch_setmouse(int x, int y) | |
6856 { | |
6857 /* Sorry for the Xlib call, but we can't avoid it, since there is no | |
6858 * internal GDK mechanism present to accomplish this. (and for good | |
6859 * reason...) */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6860 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
|
6861 (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
|
6862 0, 0, 0U, 0U, x, y); |
7 | 6863 } |
6864 | |
6865 | |
6866 #ifdef FEAT_MOUSESHAPE | |
6867 /* The last set mouse pointer shape is remembered, to be used when it goes | |
6868 * from hidden to not hidden. */ | |
6869 static int last_shape = 0; | |
6870 #endif | |
6871 | |
6872 /* | |
6873 * Use the blank mouse pointer or not. | |
6874 * | |
6875 * hide: TRUE = use blank ptr, FALSE = use parent ptr | |
6876 */ | |
6877 void | |
6878 gui_mch_mousehide(int hide) | |
6879 { | |
6880 if (gui.pointer_hidden != hide) | |
6881 { | |
6882 gui.pointer_hidden = hide; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6883 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL) |
7 | 6884 { |
6885 if (hide) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6886 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
|
6887 gui.blank_pointer); |
7 | 6888 else |
6889 #ifdef FEAT_MOUSESHAPE | |
6890 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
|
6891 #else |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
6892 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL); |
7 | 6893 #endif |
6894 } | |
6895 } | |
6896 } | |
6897 | |
6898 #if defined(FEAT_MOUSESHAPE) || defined(PROTO) | |
6899 | |
6900 /* Table for shape IDs. Keep in sync with the mshape_names[] table in | |
6901 * misc2.c! */ | |
6902 static const int mshape_ids[] = | |
6903 { | |
6904 GDK_LEFT_PTR, /* arrow */ | |
6905 GDK_CURSOR_IS_PIXMAP, /* blank */ | |
6906 GDK_XTERM, /* beam */ | |
6907 GDK_SB_V_DOUBLE_ARROW, /* updown */ | |
6908 GDK_SIZING, /* udsizing */ | |
6909 GDK_SB_H_DOUBLE_ARROW, /* leftright */ | |
6910 GDK_SIZING, /* lrsizing */ | |
6911 GDK_WATCH, /* busy */ | |
6912 GDK_X_CURSOR, /* no */ | |
6913 GDK_CROSSHAIR, /* crosshair */ | |
6914 GDK_HAND1, /* hand1 */ | |
6915 GDK_HAND2, /* hand2 */ | |
6916 GDK_PENCIL, /* pencil */ | |
6917 GDK_QUESTION_ARROW, /* question */ | |
6918 GDK_RIGHT_PTR, /* right-arrow */ | |
6919 GDK_CENTER_PTR, /* up-arrow */ | |
6920 GDK_LEFT_PTR /* last one */ | |
6921 }; | |
6922 | |
6923 void | |
6924 mch_set_mouse_shape(int shape) | |
6925 { | |
6926 int id; | |
6927 GdkCursor *c; | |
6928 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6929 if (gtk_widget_get_window(gui.drawarea) == NULL) |
7 | 6930 return; |
6931 | |
6932 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
|
6933 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
|
6934 gui.blank_pointer); |
7 | 6935 else |
6936 { | |
6937 if (shape >= MSHAPE_NUMBERED) | |
6938 { | |
6939 id = shape - MSHAPE_NUMBERED; | |
6940 if (id >= GDK_LAST_CURSOR) | |
6941 id = GDK_LEFT_PTR; | |
6942 else | |
6943 id &= ~1; /* they are always even (why?) */ | |
6944 } | |
1884 | 6945 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int))) |
7 | 6946 id = mshape_ids[shape]; |
842 | 6947 else |
6948 return; | |
7 | 6949 c = gdk_cursor_new_for_display( |
136 | 6950 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
|
6951 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
|
6952 # 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
|
6953 g_object_unref(G_OBJECT(c)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6954 # else |
7 | 6955 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
|
6956 # endif |
7 | 6957 } |
6958 if (shape != MSHAPE_HIDE) | |
6959 last_shape = shape; | |
6960 } | |
6961 #endif /* FEAT_MOUSESHAPE */ | |
6962 | |
6963 | |
6964 #if defined(FEAT_SIGN_ICONS) || defined(PROTO) | |
6965 /* | |
6966 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be | |
6967 * scaled down if the current font is not big enough, or scaled up if the image | |
6968 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap | |
6969 * will be cut off if the current font is not big enough, or centered if it's | |
6970 * too small. | |
6971 */ | |
6972 # define SIGN_WIDTH (2 * gui.char_width) | |
6973 # define SIGN_HEIGHT (gui.char_height) | |
6974 # define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH) | |
6975 | |
6976 void | |
6977 gui_mch_drawsign(int row, int col, int typenr) | |
6978 { | |
6979 GdkPixbuf *sign; | |
6980 | |
6981 sign = (GdkPixbuf *)sign_get_image(typenr); | |
6982 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6983 if (sign != NULL && gui.drawarea != NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6984 && gtk_widget_get_window(gui.drawarea) != NULL) |
7 | 6985 { |
6986 int width; | |
6987 int height; | |
6988 int xoffset; | |
6989 int yoffset; | |
6990 int need_scale; | |
6991 | |
6992 width = gdk_pixbuf_get_width(sign); | |
6993 height = gdk_pixbuf_get_height(sign); | |
6994 /* | |
6995 * Decide whether we need to scale. Allow one pixel of border | |
6996 * width to be cut off, in order to avoid excessive scaling for | |
6997 * tiny differences in font size. | |
5983 | 6998 * Do scale to fit the height to avoid gaps because of linespacing. |
7 | 6999 */ |
7000 need_scale = (width > SIGN_WIDTH + 2 | |
5983 | 7001 || height != SIGN_HEIGHT |
7 | 7002 || (width < 3 * SIGN_WIDTH / 4 |
7003 && height < 3 * SIGN_HEIGHT / 4)); | |
7004 if (need_scale) | |
7005 { | |
5983 | 7006 double aspect; |
7007 int w = width; | |
7008 int h = height; | |
7 | 7009 |
7010 /* Keep the original aspect ratio */ | |
7011 aspect = (double)height / (double)width; | |
7012 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect; | |
7013 width = MIN(width, SIGN_WIDTH); | |
5983 | 7014 if (((double)(MAX(height, SIGN_HEIGHT)) / |
7015 (double)(MIN(height, SIGN_HEIGHT))) < 1.15) | |
7016 { | |
7017 /* Change the aspect ratio by at most 15% to fill the | |
7018 * available space completly. */ | |
7019 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect; | |
7020 height = MIN(height, SIGN_HEIGHT); | |
7021 } | |
7022 else | |
7023 height = (double)width * aspect; | |
7024 | |
7025 if (w == width && h == height) | |
7026 { | |
7027 /* no change in dimensions; don't decrease reference counter | |
7028 * (below) */ | |
7029 need_scale = FALSE; | |
7030 } | |
7031 else | |
7032 { | |
7033 /* This doesn't seem to be worth caching, and doing so would | |
7034 * complicate the code quite a bit. */ | |
7035 sign = gdk_pixbuf_scale_simple(sign, width, height, | |
7036 GDK_INTERP_BILINEAR); | |
7037 if (sign == NULL) | |
7038 return; /* out of memory */ | |
7039 } | |
7 | 7040 } |
7041 | |
7042 /* The origin is the upper-left corner of the pixmap. Therefore | |
7043 * these offset may become negative if the pixmap is smaller than | |
7044 * the 2x1 cells reserved for the sign icon. */ | |
7045 xoffset = (width - SIGN_WIDTH) / 2; | |
7046 yoffset = (height - SIGN_HEIGHT) / 2; | |
7047 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7048 # 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
|
7049 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7050 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7051 cairo_surface_t *bg_surf; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7052 cairo_t *bg_cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7053 cairo_surface_t *sign_surf; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7054 cairo_t *sign_cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7055 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7056 cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7057 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7058 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
|
7059 cairo_surface_get_content(gui.surface), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7060 SIGN_WIDTH, SIGN_HEIGHT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7061 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
|
7062 cairo_set_source_rgba(bg_cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
7063 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
|
7064 gui.bgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7065 cairo_paint(bg_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7066 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7067 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
|
7068 cairo_surface_get_content(gui.surface), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7069 SIGN_WIDTH, SIGN_HEIGHT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7070 sign_cr = cairo_create(sign_surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7071 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
|
7072 cairo_paint(sign_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7073 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7074 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
|
7075 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
|
7076 cairo_paint(sign_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7077 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7078 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
|
7079 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7080 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7081 cairo_destroy(sign_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7082 cairo_surface_destroy(sign_surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7083 cairo_destroy(bg_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7084 cairo_surface_destroy(bg_surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7085 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7086 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7087 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7088 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
|
7089 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
|
7090 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7091 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7092 # else /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 7093 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
7094 | |
7095 gdk_draw_rectangle(gui.drawarea->window, | |
7096 gui.text_gc, | |
7097 TRUE, | |
7098 FILL_X(col), | |
7099 FILL_Y(row), | |
7100 SIGN_WIDTH, | |
7101 SIGN_HEIGHT); | |
7102 | |
7103 gdk_pixbuf_render_to_drawable_alpha(sign, | |
7104 gui.drawarea->window, | |
7105 MAX(0, xoffset), | |
7106 MAX(0, yoffset), | |
7107 FILL_X(col) - MIN(0, xoffset), | |
7108 FILL_Y(row) - MIN(0, yoffset), | |
7109 MIN(width, SIGN_WIDTH), | |
7110 MIN(height, SIGN_HEIGHT), | |
7111 GDK_PIXBUF_ALPHA_BILEVEL, | |
7112 127, | |
7113 GDK_RGB_DITHER_NORMAL, | |
7114 0, 0); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7115 # endif /* !GTK_CHECK_VERSION(3,0,0) */ |
7 | 7116 if (need_scale) |
7117 g_object_unref(sign); | |
7118 } | |
7119 } | |
7120 | |
7121 void * | |
7122 gui_mch_register_sign(char_u *signfile) | |
7123 { | |
7124 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use) | |
7125 { | |
7126 GdkPixbuf *sign; | |
7127 GError *error = NULL; | |
7128 char_u *message; | |
7129 | |
7130 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error); | |
7131 | |
7132 if (error == NULL) | |
7133 return sign; | |
7134 | |
7135 message = (char_u *)error->message; | |
7136 | |
7137 if (message != NULL && input_conv.vc_type != CONV_NONE) | |
7138 message = string_convert(&input_conv, message, NULL); | |
7139 | |
7140 if (message != NULL) | |
7141 { | |
7142 /* The error message is already translated and will be more | |
7143 * 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
|
7144 semsg("E255: %s", message); |
7 | 7145 |
7146 if (input_conv.vc_type != CONV_NONE) | |
7147 vim_free(message); | |
7148 } | |
7149 g_error_free(error); | |
7150 } | |
7151 | |
7152 return NULL; | |
7153 } | |
7154 | |
7155 void | |
7156 gui_mch_destroy_sign(void *sign) | |
7157 { | |
7158 if (sign != NULL) | |
7159 g_object_unref(sign); | |
7160 } | |
7161 | |
7162 #endif /* FEAT_SIGN_ICONS */ |