Mercurial > vim
annotate src/gui_gtk_x11.c @ 25986:34b75c77a7bd v8.2.3526
patch 8.2.3526: tests have clumsy check for X11 based GUI
Commit: https://github.com/vim/vim/commit/40bd5a15405206b130d487af0ca61b5d9b5859f8
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 16 21:58:27 2021 +0100
patch 8.2.3526: tests have clumsy check for X11 based GUI
Problem: Tests have clumsy check for X11 based GUI.
Solution: Add CheckX11BasedGui.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 16 Oct 2021 23:00:05 +0200 |
parents | aade8ef975d5 |
children | 9b2be5556740 |
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 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
34 // Gnome redefines _() and N_(). Grrr... |
7 | 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) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
51 # define ENABLE_NLS // so the texts in the dialog boxes are translated |
7 | 52 # endif |
53 # include <gnome.h> | |
54 # include "version.h" | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
55 // missing prototype in bonobo-dock-item.h |
798 | 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) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
60 // When generating prototypes we don't want syntax errors. |
7 | 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 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
108 // Selection type distinguishers |
7 | 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 }; | |
24768
7334bf933510
patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents:
24170
diff
changeset
|
137 #define N_SELECTION_TARGETS ARRAY_LENGTH(selection_targets) |
7 | 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 }; | |
24768
7334bf933510
patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents:
24170
diff
changeset
|
152 # define N_DND_TARGETS ARRAY_LENGTH(dnd_targets) |
7 | 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 | |
17539
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
162 #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
163 # define USE_GNOME_SESSION |
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
164 #endif |
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
165 |
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
166 #if !defined(FEAT_GUI_GNOME) |
7 | 167 /* |
168 * Atoms used to communicate save-yourself from the X11 session manager. There | |
169 * is no need to move them into the GUI struct, since they should be constant. | |
170 */ | |
171 static GdkAtom wm_protocols_atom = GDK_NONE; | |
172 static GdkAtom save_yourself_atom = GDK_NONE; | |
173 #endif | |
174 | |
175 /* | |
176 * Atoms used to control/reference X11 selections. | |
177 */ | |
1904 | 178 static GdkAtom html_atom = GDK_NONE; |
7 | 179 static GdkAtom utf8_string_atom = GDK_NONE; |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
180 static GdkAtom vim_atom = GDK_NONE; // Vim's own special selection format |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
181 static GdkAtom vimenc_atom = GDK_NONE; // Vim's extended selection format |
7 | 182 |
183 /* | |
184 * Keycodes recognized by vim. | |
185 * NOTE: when changing this, the table in gui_x11.c probably needs the same | |
186 * change! | |
187 */ | |
188 static struct special_key | |
189 { | |
190 guint key_sym; | |
191 char_u code0; | |
192 char_u code1; | |
193 } | |
194 const special_keys[] = | |
195 { | |
196 {GDK_Up, 'k', 'u'}, | |
197 {GDK_Down, 'k', 'd'}, | |
198 {GDK_Left, 'k', 'l'}, | |
199 {GDK_Right, 'k', 'r'}, | |
200 {GDK_F1, 'k', '1'}, | |
201 {GDK_F2, 'k', '2'}, | |
202 {GDK_F3, 'k', '3'}, | |
203 {GDK_F4, 'k', '4'}, | |
204 {GDK_F5, 'k', '5'}, | |
205 {GDK_F6, 'k', '6'}, | |
206 {GDK_F7, 'k', '7'}, | |
207 {GDK_F8, 'k', '8'}, | |
208 {GDK_F9, 'k', '9'}, | |
209 {GDK_F10, 'k', ';'}, | |
210 {GDK_F11, 'F', '1'}, | |
211 {GDK_F12, 'F', '2'}, | |
212 {GDK_F13, 'F', '3'}, | |
213 {GDK_F14, 'F', '4'}, | |
214 {GDK_F15, 'F', '5'}, | |
215 {GDK_F16, 'F', '6'}, | |
216 {GDK_F17, 'F', '7'}, | |
217 {GDK_F18, 'F', '8'}, | |
218 {GDK_F19, 'F', '9'}, | |
219 {GDK_F20, 'F', 'A'}, | |
220 {GDK_F21, 'F', 'B'}, | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
221 {GDK_Pause, 'F', 'B'}, // Pause == F21 according to netbeans.txt |
7 | 222 {GDK_F22, 'F', 'C'}, |
223 {GDK_F23, 'F', 'D'}, | |
224 {GDK_F24, 'F', 'E'}, | |
225 {GDK_F25, 'F', 'F'}, | |
226 {GDK_F26, 'F', 'G'}, | |
227 {GDK_F27, 'F', 'H'}, | |
228 {GDK_F28, 'F', 'I'}, | |
229 {GDK_F29, 'F', 'J'}, | |
230 {GDK_F30, 'F', 'K'}, | |
231 {GDK_F31, 'F', 'L'}, | |
232 {GDK_F32, 'F', 'M'}, | |
233 {GDK_F33, 'F', 'N'}, | |
234 {GDK_F34, 'F', 'O'}, | |
235 {GDK_F35, 'F', 'P'}, | |
236 #ifdef SunXK_F36 | |
237 {SunXK_F36, 'F', 'Q'}, | |
238 {SunXK_F37, 'F', 'R'}, | |
239 #endif | |
240 {GDK_Help, '%', '1'}, | |
241 {GDK_Undo, '&', '8'}, | |
242 {GDK_BackSpace, 'k', 'b'}, | |
243 {GDK_Insert, 'k', 'I'}, | |
244 {GDK_Delete, 'k', 'D'}, | |
245 {GDK_3270_BackTab, 'k', 'B'}, | |
246 {GDK_Clear, 'k', 'C'}, | |
247 {GDK_Home, 'k', 'h'}, | |
248 {GDK_End, '@', '7'}, | |
249 {GDK_Prior, 'k', 'P'}, | |
250 {GDK_Next, 'k', 'N'}, | |
251 {GDK_Print, '%', '9'}, | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
252 // Keypad keys: |
7 | 253 {GDK_KP_Left, 'k', 'l'}, |
254 {GDK_KP_Right, 'k', 'r'}, | |
255 {GDK_KP_Up, 'k', 'u'}, | |
256 {GDK_KP_Down, 'k', 'd'}, | |
257 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS}, | |
258 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL}, | |
259 {GDK_KP_Home, 'K', '1'}, | |
260 {GDK_KP_End, 'K', '4'}, | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
261 {GDK_KP_Prior, 'K', '3'}, // page up |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
262 {GDK_KP_Next, 'K', '5'}, // page down |
7 | 263 |
264 {GDK_KP_Add, 'K', '6'}, | |
265 {GDK_KP_Subtract, 'K', '7'}, | |
266 {GDK_KP_Divide, 'K', '8'}, | |
267 {GDK_KP_Multiply, 'K', '9'}, | |
268 {GDK_KP_Enter, 'K', 'A'}, | |
269 {GDK_KP_Decimal, 'K', 'B'}, | |
270 | |
271 {GDK_KP_0, 'K', 'C'}, | |
272 {GDK_KP_1, 'K', 'D'}, | |
273 {GDK_KP_2, 'K', 'E'}, | |
274 {GDK_KP_3, 'K', 'F'}, | |
275 {GDK_KP_4, 'K', 'G'}, | |
276 {GDK_KP_5, 'K', 'H'}, | |
277 {GDK_KP_6, 'K', 'I'}, | |
278 {GDK_KP_7, 'K', 'J'}, | |
279 {GDK_KP_8, 'K', 'K'}, | |
280 {GDK_KP_9, 'K', 'L'}, | |
281 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
282 // End of list marker: |
7 | 283 {0, 0, 0} |
284 }; | |
285 | |
286 /* | |
287 * Flags for command line options table below. | |
288 */ | |
289 #define ARG_FONT 1 | |
290 #define ARG_GEOMETRY 2 | |
291 #define ARG_REVERSE 3 | |
292 #define ARG_NOREVERSE 4 | |
293 #define ARG_BACKGROUND 5 | |
294 #define ARG_FOREGROUND 6 | |
295 #define ARG_ICONIC 7 | |
296 #define ARG_ROLE 8 | |
297 #define ARG_NETBEANS 9 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
298 #define ARG_XRM 10 // ignored |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
299 #define ARG_MENUFONT 11 // ignored |
7 | 300 #define ARG_INDEX_MASK 0x00ff |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
301 #define ARG_HAS_VALUE 0x0100 // a value is expected after the argument |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
302 #define ARG_NEEDS_GUI 0x0200 // need to initialize the GUI for this |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
303 #define ARG_FOR_GTK 0x0400 // argument is handled by GTK+ or GNOME |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
304 #define ARG_COMPAT_LONG 0x0800 // accept -foo but substitute with --foo |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
305 #define ARG_KEEP 0x1000 // don't remove argument from argv[] |
7 | 306 |
307 /* | |
308 * This table holds all the X GUI command line options allowed. This includes | |
309 * the standard ones so that we can skip them when Vim is started without the | |
310 * GUI (but the GUI might start up later). | |
311 * | |
312 * When changing this, also update doc/gui_x11.txt and the usage message!!! | |
313 */ | |
314 typedef struct | |
315 { | |
316 const char *name; | |
317 unsigned int flags; | |
318 } | |
319 cmdline_option_T; | |
320 | |
321 static const cmdline_option_T cmdline_options[] = | |
322 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
323 // We handle these options ourselves |
7 | 324 {"-fn", ARG_FONT|ARG_HAS_VALUE}, |
325 {"-font", ARG_FONT|ARG_HAS_VALUE}, | |
326 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE}, | |
327 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE}, | |
328 {"-rv", ARG_REVERSE}, | |
329 {"-reverse", ARG_REVERSE}, | |
330 {"+rv", ARG_NOREVERSE}, | |
331 {"+reverse", ARG_NOREVERSE}, | |
332 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE}, | |
333 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE}, | |
334 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE}, | |
335 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE}, | |
336 {"-iconic", ARG_ICONIC}, | |
337 {"--role", ARG_ROLE|ARG_HAS_VALUE}, | |
338 #ifdef FEAT_NETBEANS_INTG | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
339 {"-nb", ARG_NETBEANS}, // non-standard value format |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
340 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, // not implemented |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
341 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, // not implemented |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
342 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, // not implemented |
7 | 343 #endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
344 // Arguments handled by GTK (and GNOME) internally. |
7 | 345 {"--g-fatal-warnings", ARG_FOR_GTK}, |
346 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
347 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
348 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
349 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
350 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
351 {"--sync", ARG_FOR_GTK}, | |
352 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, | |
353 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, | |
354 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, | |
355 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
356 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
357 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
358 #ifdef FEAT_GUI_GNOME | |
359 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
360 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
361 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
362 {"--sm-disable", ARG_FOR_GTK}, | |
363 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
364 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
365 {"--oaf-private", ARG_FOR_GTK}, | |
366 {"--enable-sound", ARG_FOR_GTK}, | |
367 {"--disable-sound", ARG_FOR_GTK}, | |
368 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE}, | |
369 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI}, | |
370 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP}, | |
371 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI}, | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
372 # if 0 // conflicts with Vim's own --version argument |
7 | 373 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI}, |
374 # endif | |
375 {"--disable-crash-dialog", ARG_FOR_GTK}, | |
376 #endif | |
377 {NULL, 0} | |
378 }; | |
379 | |
380 static int gui_argc = 0; | |
381 static char **gui_argv = NULL; | |
382 | |
383 static const char *role_argument = NULL; | |
17539
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
384 #if defined(USE_GNOME_SESSION) |
7 | 385 static const char *restart_command = NULL; |
1898 | 386 static char *abs_restart_command = NULL; |
7 | 387 #endif |
388 static int found_iconic_arg = FALSE; | |
389 | |
390 #ifdef FEAT_GUI_GNOME | |
391 /* | |
392 * Can't use Gnome if --socketid given | |
393 */ | |
394 static int using_gnome = 0; | |
395 #else | |
396 # define using_gnome 0 | |
397 #endif | |
398 | |
399 /* | |
400 * Parse the GUI related command-line arguments. Any arguments used are | |
401 * deleted from argv, and *argc is decremented accordingly. This is called | |
402 * when vim is started, whether or not the GUI has been started. | |
403 */ | |
404 void | |
405 gui_mch_prepare(int *argc, char **argv) | |
406 { | |
407 const cmdline_option_T *option; | |
408 int i = 0; | |
409 int len = 0; | |
410 | |
17539
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
411 #if defined(USE_GNOME_SESSION) |
7 | 412 /* |
413 * Determine the command used to invoke Vim, to be passed as restart | |
414 * command to the session manager. If argv[0] contains any directory | |
415 * components try building an absolute path, otherwise leave it as is. | |
416 */ | |
417 restart_command = argv[0]; | |
418 | |
419 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL) | |
420 { | |
421 char_u buf[MAXPATHL]; | |
422 | |
423 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK) | |
1898 | 424 { |
425 abs_restart_command = (char *)vim_strsave(buf); | |
426 restart_command = abs_restart_command; | |
427 } | |
7 | 428 } |
429 #endif | |
430 | |
431 /* | |
432 * Move all the entries in argv which are relevant to GTK+ and GNOME | |
433 * into gui_argv. Freed later in gui_mch_init(). | |
434 */ | |
435 gui_argc = 0; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
436 gui_argv = ALLOC_MULT(char *, *argc + 1); |
7 | 437 |
438 g_return_if_fail(gui_argv != NULL); | |
439 | |
440 gui_argv[gui_argc++] = argv[i++]; | |
441 | |
442 while (i < *argc) | |
443 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
444 // Don't waste CPU cycles on non-option arguments. |
7 | 445 if (argv[i][0] != '-' && argv[i][0] != '+') |
446 { | |
447 ++i; | |
448 continue; | |
449 } | |
450 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
451 // Look for argv[i] in cmdline_options[] table. |
7 | 452 for (option = &cmdline_options[0]; option->name != NULL; ++option) |
453 { | |
454 len = strlen(option->name); | |
455 | |
456 if (strncmp(argv[i], option->name, len) == 0) | |
457 { | |
458 if (argv[i][len] == '\0') | |
459 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
460 // allow --foo=bar style |
7 | 461 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE)) |
462 break; | |
463 #ifdef FEAT_NETBEANS_INTG | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
464 // darn, -nb has non-standard syntax |
7 | 465 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL |
466 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS) | |
467 break; | |
468 #endif | |
469 } | |
470 else if ((option->flags & ARG_COMPAT_LONG) | |
471 && strcmp(argv[i], option->name + 1) == 0) | |
472 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
473 // Replace the standard X arguments "-name" and "-display" |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
474 // with their GNU-style long option counterparts. |
7 | 475 argv[i] = (char *)option->name; |
476 break; | |
477 } | |
478 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
479 if (option->name == NULL) // no match |
7 | 480 { |
481 ++i; | |
482 continue; | |
483 } | |
484 | |
485 if (option->flags & ARG_FOR_GTK) | |
486 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
487 // Move the argument into gui_argv, which |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
488 // will later be passed to gtk_init_check() |
7 | 489 gui_argv[gui_argc++] = argv[i]; |
490 } | |
491 else | |
492 { | |
493 char *value = NULL; | |
494 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
495 // Extract the option's value if there is one. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
496 // Accept both "--foo bar" and "--foo=bar" style. |
7 | 497 if (option->flags & ARG_HAS_VALUE) |
498 { | |
499 if (argv[i][len] == '=') | |
500 value = &argv[i][len + 1]; | |
501 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0) | |
502 value = argv[i + 1]; | |
503 } | |
504 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
505 // Check for options handled by Vim itself |
7 | 506 switch (option->flags & ARG_INDEX_MASK) |
507 { | |
508 case ARG_REVERSE: | |
509 found_reverse_arg = TRUE; | |
510 break; | |
511 case ARG_NOREVERSE: | |
512 found_reverse_arg = FALSE; | |
513 break; | |
514 case ARG_FONT: | |
515 font_argument = value; | |
516 break; | |
517 case ARG_GEOMETRY: | |
518 if (value != NULL) | |
519 gui.geom = vim_strsave((char_u *)value); | |
520 break; | |
521 case ARG_BACKGROUND: | |
522 background_argument = value; | |
523 break; | |
524 case ARG_FOREGROUND: | |
525 foreground_argument = value; | |
526 break; | |
527 case ARG_ICONIC: | |
528 found_iconic_arg = TRUE; | |
529 break; | |
530 case ARG_ROLE: | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
531 role_argument = value; // used later in gui_mch_open() |
7 | 532 break; |
533 #ifdef FEAT_NETBEANS_INTG | |
534 case ARG_NETBEANS: | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
535 gui.dofork = FALSE; // don't fork() when starting GUI |
7 | 536 netbeansArg = argv[i]; |
537 break; | |
538 #endif | |
539 default: | |
540 break; | |
541 } | |
542 } | |
543 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
544 // These arguments make gnome_program_init() print a message and exit. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
545 // Must start the GUI for this, otherwise ":gui" will exit later! |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
546 // Only when the GUI can start. |
9836
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
547 if ((option->flags & ARG_NEEDS_GUI) |
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
548 && gui_mch_early_init_check(FALSE) == OK) |
7 | 549 gui.starting = TRUE; |
550 | |
551 if (option->flags & ARG_KEEP) | |
552 ++i; | |
553 else | |
554 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
555 // Remove the flag from the argument vector. |
7 | 556 if (--*argc > i) |
557 { | |
558 int n_strip = 1; | |
559 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
560 // Move the argument's value as well, if there is one. |
7 | 561 if ((option->flags & ARG_HAS_VALUE) |
562 && argv[i][len] != '=' | |
563 && strcmp(argv[i + 1], "--") != 0) | |
564 { | |
565 ++n_strip; | |
566 --*argc; | |
567 if (option->flags & ARG_FOR_GTK) | |
568 gui_argv[gui_argc++] = argv[i + 1]; | |
569 } | |
570 | |
571 if (*argc > i) | |
572 mch_memmove(&argv[i], &argv[i + n_strip], | |
573 (*argc - i) * sizeof(char *)); | |
574 } | |
575 argv[*argc] = NULL; | |
576 } | |
577 } | |
578 | |
579 gui_argv[gui_argc] = NULL; | |
580 } | |
581 | |
359 | 582 #if defined(EXITFREE) || defined(PROTO) |
583 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
584 gui_mch_free_all(void) |
359 | 585 { |
586 vim_free(gui_argv); | |
17539
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
587 #if defined(USE_GNOME_SESSION) |
1898 | 588 vim_free(abs_restart_command); |
589 #endif | |
359 | 590 } |
591 #endif | |
592 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
593 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 594 /* |
595 * This should be maybe completely removed. | |
596 * Doesn't seem possible, since check_copy_area() relies on | |
597 * this information. --danielk | |
598 */ | |
599 static gint | |
1884 | 600 visibility_event(GtkWidget *widget UNUSED, |
601 GdkEventVisibility *event, | |
602 gpointer data UNUSED) | |
7 | 603 { |
604 gui.visibility = event->state; | |
605 /* | |
606 * When we do an gdk_window_copy_area(), and the window is partially | |
607 * obscured, we want to receive an event to tell us whether it worked | |
608 * or not. | |
609 */ | |
610 if (gui.text_gc != NULL) | |
611 gdk_gc_set_exposures(gui.text_gc, | |
612 gui.visibility != GDK_VISIBILITY_UNOBSCURED); | |
613 return FALSE; | |
614 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
615 #endif // !GTK_CHECK_VERSION(3,0,0) |
7 | 616 |
617 /* | |
618 * Redraw the corresponding portions of the screen. | |
619 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
620 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
621 static gboolean is_key_pressed = FALSE; |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
622 static gboolean blink_mode = TRUE; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
623 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
624 static gboolean gui_gtk_is_blink_on(void); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
625 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
626 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
627 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
|
628 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
629 // 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
|
630 gui_redraw_block(Y_2_ROW(y), X_2_COL(x), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
631 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
632 GUI_MON_NOCLEAR); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
633 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
634 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
635 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
636 gui_gtk3_update_cursor(cairo_t *cr) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
637 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
638 if (gui.row == gui.cursor_row) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
639 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
640 gui.by_signal = TRUE; |
8495
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
641 if (State & CMDLINE) |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
642 gui_update_cursor(TRUE, FALSE); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
643 else |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
644 gui_update_cursor(TRUE, TRUE); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
645 gui.by_signal = FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
646 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
647 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
648 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
649 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
650 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
651 gui_gtk3_should_draw_cursor(void) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
652 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
653 unsigned int cond = 0; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
654 cond |= gui_gtk_is_blink_on(); |
8510
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
655 if (gui.cursor_col >= gui.col) |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
656 cond |= is_key_pressed; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
657 cond |= gui.in_focus == FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
658 return cond; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
659 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
660 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
661 static gboolean |
9232
a64e2a624fbe
commit https://github.com/vim/vim/commit/8e31fd52ec8be6ef1dc600b637d5f099d55e1715
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
662 draw_event(GtkWidget *widget UNUSED, |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
663 cairo_t *cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
664 gpointer user_data UNUSED) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
665 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
666 // Skip this when the GUI isn't set up yet, will redraw later. |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
667 if (gui.starting) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
668 return FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
669 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
670 out_flush(); // make sure all output has been processed |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
671 // for GTK+ 3, may induce other draw events. |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
672 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
673 cairo_set_source_surface(cr, gui.surface, 0, 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
674 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
675 // Draw the window without the cursor. |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
676 gui.by_signal = TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
677 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
678 cairo_rectangle_list_t *list = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
679 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
680 list = cairo_copy_clip_rectangle_list(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
681 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
682 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
683 int i; |
10920
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
684 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
685 // First clear all the blocks and then redraw them. Just in case |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
686 // some blocks overlap. |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
687 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
|
688 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
689 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
|
690 |
10920
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
691 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
|
692 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
|
693 } |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
694 |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
695 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
|
696 { |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
697 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
|
698 |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
699 if (blink_mode) |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
700 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
|
701 else |
8510
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
702 { |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
703 if (get_real_state() & VISUAL) |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
704 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
|
705 rect.width, rect.height); |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
706 else |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
707 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
|
708 } |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
709 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
710 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
711 cairo_rectangle_list_destroy(list); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
712 |
8510
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
713 if (get_real_state() & VISUAL) |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
714 { |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
715 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
|
716 gui_update_cursor(TRUE, TRUE); |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
717 } |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
718 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
719 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
720 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
721 gui.by_signal = FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
722 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
723 // 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
|
724 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
|
725 gui_gtk3_update_cursor(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
726 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
727 return FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
728 } |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
729 #else // !GTK_CHECK_VERSION(3,0,0) |
7 | 730 static gint |
1884 | 731 expose_event(GtkWidget *widget UNUSED, |
732 GdkEventExpose *event, | |
733 gpointer data UNUSED) | |
7 | 734 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
735 // Skip this when the GUI isn't set up yet, will redraw later. |
7 | 736 if (gui.starting) |
737 return FALSE; | |
738 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
739 out_flush(); // make sure all output has been processed |
7 | 740 gui_redraw(event->area.x, event->area.y, |
741 event->area.width, event->area.height); | |
742 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
743 // Clear the border areas if needed |
7 | 744 if (event->area.x < FILL_X(0)) |
745 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0); | |
746 if (event->area.y < FILL_Y(0)) | |
747 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0)); | |
748 if (event->area.x > FILL_X(Columns)) | |
749 gdk_window_clear_area(gui.drawarea->window, | |
750 FILL_X((int)Columns), 0, 0, 0); | |
751 if (event->area.y > FILL_Y(Rows)) | |
752 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0); | |
753 | |
754 return FALSE; | |
755 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
756 #endif // !GTK_CHECK_VERSION(3,0,0) |
7 | 757 |
758 #ifdef FEAT_CLIENTSERVER | |
759 /* | |
760 * Handle changes to the "Comm" property | |
761 */ | |
762 static gint | |
1884 | 763 property_event(GtkWidget *widget, |
764 GdkEventProperty *event, | |
765 gpointer data UNUSED) | |
7 | 766 { |
767 if (event->type == GDK_PROPERTY_NOTIFY | |
768 && 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
|
769 && GDK_WINDOW_XID(event->window) == commWindow |
7 | 770 && GET_X_ATOM(event->atom) == commProperty) |
771 { | |
772 XEvent xev; | |
773 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
774 // Translate to XLib |
7 | 775 xev.xproperty.type = PropertyNotify; |
776 xev.xproperty.atom = commProperty; | |
777 xev.xproperty.window = commWindow; | |
778 xev.xproperty.state = PropertyNewValue; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
779 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
|
780 &xev, 0); |
7 | 781 } |
782 return FALSE; | |
783 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
784 #endif // defined(FEAT_CLIENTSERVER) |
7 | 785 |
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
|
786 /* |
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 * 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
|
788 */ |
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 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
|
790 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
|
791 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
|
792 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
|
793 { |
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 // 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
|
795 // 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
|
796 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
|
797 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
|
798 |
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 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
|
800 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
|
801 |
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 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
|
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 // 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
|
805 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
|
806 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
|
807 } |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
808 } |
7 | 809 |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
810 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
|
811 |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
812 /* |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
813 * 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
|
814 * 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
|
815 */ |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
816 static guint |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
817 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
|
818 { |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
819 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
|
820 } |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
821 |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
822 static void |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
823 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
|
824 { |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
825 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
|
826 } |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
827 |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
828 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
829 ///////////////////////////////////////////////////////////////////////////// |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
830 // Focus handlers: |
7 | 831 |
832 | |
833 /* | |
834 * This is a simple state machine: | |
835 * BLINK_NONE not blinking at all | |
836 * BLINK_OFF blinking, cursor is not shown | |
837 * BLINK_ON blinking, cursor is shown | |
838 */ | |
839 | |
840 #define BLINK_NONE 0 | |
841 #define BLINK_OFF 1 | |
842 #define BLINK_ON 2 | |
843 | |
844 static int blink_state = BLINK_NONE; | |
845 static long_u blink_waittime = 700; | |
846 static long_u blink_ontime = 400; | |
847 static long_u blink_offtime = 250; | |
848 static guint blink_timer = 0; | |
849 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
850 #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
|
851 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
852 gui_gtk_is_blink_on(void) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
853 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
854 return blink_state == BLINK_ON; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
855 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
856 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
857 |
9213
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
858 int |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
859 gui_mch_is_blinking(void) |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
860 { |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
861 return blink_state != BLINK_NONE; |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
862 } |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
863 |
9428
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
864 int |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
865 gui_mch_is_blink_off(void) |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
866 { |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
867 return blink_state == BLINK_OFF; |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
868 } |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
869 |
7 | 870 void |
871 gui_mch_set_blinking(long waittime, long on, long off) | |
872 { | |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
873 #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
|
874 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
|
875 { |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
876 blink_mode = FALSE; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
877 |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
878 blink_waittime = 700; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
879 blink_ontime = 400; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
880 blink_offtime = 250; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
881 } |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
882 else |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
883 { |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
884 blink_mode = TRUE; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
885 |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
886 blink_waittime = waittime; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
887 blink_ontime = on; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
888 blink_offtime = off; |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
889 } |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
890 #else |
7 | 891 blink_waittime = waittime; |
892 blink_ontime = on; | |
893 blink_offtime = off; | |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
894 #endif |
7 | 895 } |
896 | |
897 /* | |
898 * Stop the cursor blinking. Show the cursor if it wasn't shown. | |
899 */ | |
900 void | |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
12802
diff
changeset
|
901 gui_mch_stop_blink(int may_call_gui_update_cursor) |
7 | 902 { |
903 if (blink_timer) | |
904 { | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
905 timeout_remove(blink_timer); |
7 | 906 blink_timer = 0; |
907 } | |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
12802
diff
changeset
|
908 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
|
909 { |
7 | 910 gui_update_cursor(TRUE, FALSE); |
9489
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
911 gui_mch_flush(); |
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
912 } |
7 | 913 blink_state = BLINK_NONE; |
914 } | |
915 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
916 static timeout_cb_type |
1884 | 917 blink_cb(gpointer data UNUSED) |
7 | 918 { |
919 if (blink_state == BLINK_ON) | |
920 { | |
921 gui_undraw_cursor(); | |
922 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
|
923 blink_timer = timeout_add(blink_offtime, blink_cb, NULL); |
7 | 924 } |
925 else | |
926 { | |
927 gui_update_cursor(TRUE, FALSE); | |
928 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
|
929 blink_timer = timeout_add(blink_ontime, blink_cb, NULL); |
7 | 930 } |
9489
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
931 gui_mch_flush(); |
7 | 932 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
933 return FALSE; // don't happen again |
7 | 934 } |
935 | |
936 /* | |
937 * Start the cursor blinking. If it was already blinking, this restarts the | |
938 * waiting time and shows the cursor. | |
939 */ | |
940 void | |
941 gui_mch_start_blink(void) | |
942 { | |
943 if (blink_timer) | |
5818 | 944 { |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
945 timeout_remove(blink_timer); |
5818 | 946 blink_timer = 0; |
947 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
948 // Only switch blinking on if none of the times is zero |
7 | 949 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus) |
950 { | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
951 blink_timer = timeout_add(blink_waittime, blink_cb, NULL); |
7 | 952 blink_state = BLINK_ON; |
953 gui_update_cursor(TRUE, FALSE); | |
9489
c5f40fc2e3e0
commit https://github.com/vim/vim/commit/da3a77d9ec28407b8fa2aa014e76944d0a525662
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
954 gui_mch_flush(); |
7 | 955 } |
956 } | |
957 | |
958 static gint | |
1884 | 959 enter_notify_event(GtkWidget *widget UNUSED, |
960 GdkEventCrossing *event UNUSED, | |
961 gpointer data UNUSED) | |
7 | 962 { |
963 if (blink_state == BLINK_NONE) | |
964 gui_mch_start_blink(); | |
965 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
966 // 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
|
967 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea)) |
7 | 968 gtk_widget_grab_focus(gui.drawarea); |
969 | |
970 return FALSE; | |
971 } | |
972 | |
973 static gint | |
1884 | 974 leave_notify_event(GtkWidget *widget UNUSED, |
975 GdkEventCrossing *event UNUSED, | |
976 gpointer data UNUSED) | |
7 | 977 { |
978 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
|
979 gui_mch_stop_blink(TRUE); |
7 | 980 |
981 return FALSE; | |
982 } | |
983 | |
984 static gint | |
1884 | 985 focus_in_event(GtkWidget *widget, |
986 GdkEventFocus *event UNUSED, | |
987 gpointer data UNUSED) | |
7 | 988 { |
989 gui_focus_change(TRUE); | |
990 | |
991 if (blink_state == BLINK_NONE) | |
992 gui_mch_start_blink(); | |
993 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
994 // make sure keyboard input goes to the draw area (if this is focus for a |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
995 // window) |
791 | 996 if (widget != gui.drawarea) |
856 | 997 gtk_widget_grab_focus(gui.drawarea); |
7 | 998 |
999 return TRUE; | |
1000 } | |
1001 | |
1002 static gint | |
1884 | 1003 focus_out_event(GtkWidget *widget UNUSED, |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
1004 GdkEventFocus *event UNUSED, |
1884 | 1005 gpointer data UNUSED) |
7 | 1006 { |
1007 gui_focus_change(FALSE); | |
1008 | |
1009 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
|
1010 gui_mch_stop_blink(TRUE); |
7 | 1011 |
1012 return TRUE; | |
1013 } | |
1014 | |
1015 | |
1016 /* | |
1017 * Translate a GDK key value to UTF-8 independently of the current locale. | |
1018 * The output is written to string, which must have room for at least 6 bytes | |
1019 * plus the NUL terminator. Returns the length in bytes. | |
1020 * | |
20595
3609e842f822
patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20431
diff
changeset
|
1021 * event->string is evil; see here why: |
7 | 1022 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey |
1023 */ | |
1024 static int | |
20595
3609e842f822
patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20431
diff
changeset
|
1025 keyval_to_string(unsigned int keyval, char_u *string) |
7 | 1026 { |
1027 int len; | |
1028 guint32 uc; | |
1029 | |
1030 uc = gdk_keyval_to_unicode(keyval); | |
1031 if (uc != 0) | |
1032 { | |
20595
3609e842f822
patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20431
diff
changeset
|
1033 // Translate a normal key to UTF-8. This doesn't work for dead |
3609e842f822
patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20431
diff
changeset
|
1034 // keys of course, you _have_ to use an input method for that. |
3609e842f822
patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20431
diff
changeset
|
1035 len = utf_char2bytes((int)uc, string); |
7 | 1036 } |
1037 else | |
1038 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1039 // Translate keys which are represented by ASCII control codes in Vim. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1040 // There are only a few of those; most control keys are translated to |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1041 // special terminal-like control sequences. |
7 | 1042 len = 1; |
1043 switch (keyval) | |
1044 { | |
1045 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab: | |
1046 string[0] = TAB; | |
1047 break; | |
1048 case GDK_Linefeed: | |
1049 string[0] = NL; | |
1050 break; | |
1051 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter: | |
1052 string[0] = CAR; | |
1053 break; | |
1054 case GDK_Escape: | |
1055 string[0] = ESC; | |
1056 break; | |
1057 default: | |
1058 len = 0; | |
1059 break; | |
1060 } | |
1061 } | |
1062 string[len] = NUL; | |
1063 | |
1064 return len; | |
1065 } | |
1066 | |
179 | 1067 static int |
1068 modifiers_gdk2vim(guint state) | |
1069 { | |
1070 int modifiers = 0; | |
1071 | |
1072 if (state & GDK_SHIFT_MASK) | |
1073 modifiers |= MOD_MASK_SHIFT; | |
1074 if (state & GDK_CONTROL_MASK) | |
1075 modifiers |= MOD_MASK_CTRL; | |
1076 if (state & GDK_MOD1_MASK) | |
1077 modifiers |= MOD_MASK_ALT; | |
2550
7c1f73452ea6
Fix #ifdef for GDK_SUPER_MASK.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1078 #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
|
1079 if (state & GDK_SUPER_MASK) |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1080 modifiers |= MOD_MASK_META; |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1081 #endif |
179 | 1082 if (state & GDK_MOD4_MASK) |
1083 modifiers |= MOD_MASK_META; | |
1084 | |
1085 return modifiers; | |
1086 } | |
1087 | |
1088 static int | |
1089 modifiers_gdk2mouse(guint state) | |
1090 { | |
1091 int modifiers = 0; | |
1092 | |
1093 if (state & GDK_SHIFT_MASK) | |
1094 modifiers |= MOUSE_SHIFT; | |
1095 if (state & GDK_CONTROL_MASK) | |
1096 modifiers |= MOUSE_CTRL; | |
1097 if (state & GDK_MOD1_MASK) | |
1098 modifiers |= MOUSE_ALT; | |
1099 | |
1100 return modifiers; | |
1101 } | |
1102 | |
7 | 1103 /* |
1104 * Main keyboard handler: | |
1105 */ | |
1106 static gint | |
1884 | 1107 key_press_event(GtkWidget *widget UNUSED, |
1108 GdkEventKey *event, | |
1109 gpointer data UNUSED) | |
7 | 1110 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1111 // For GTK+ 2 we know for sure how large the string might get. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1112 // (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) |
7 | 1113 char_u string[32], string2[32]; |
1114 guint key_sym; | |
1115 int len; | |
1116 int i; | |
1117 int modifiers; | |
1118 int key; | |
1119 guint state; | |
1120 char_u *s, *d; | |
1121 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1122 #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
|
1123 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
|
1124 gui_mch_stop_blink(TRUE); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1125 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1126 |
2923 | 1127 gui.event_time = event->time; |
7 | 1128 key_sym = event->keyval; |
1129 state = event->state; | |
1130 | |
1131 #ifdef FEAT_XIM | |
1132 if (xim_queue_key_press_event(event, TRUE)) | |
1133 return TRUE; | |
1134 #endif | |
1135 | |
1136 #ifdef SunXK_F36 | |
1137 /* | |
1138 * These keys have bogus lookup strings, and trapping them here is | |
1139 * easier than trying to XRebindKeysym() on them with every possible | |
1140 * combination of modifiers. | |
1141 */ | |
1142 if (key_sym == SunXK_F36 || key_sym == SunXK_F37) | |
1143 len = 0; | |
1144 else | |
1145 #endif | |
1146 { | |
20595
3609e842f822
patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20431
diff
changeset
|
1147 len = keyval_to_string(key_sym, string2); |
7 | 1148 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1149 // Careful: convert_input() doesn't handle the NUL character. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1150 // No need to convert pure ASCII anyway, thus the len > 1 check. |
7 | 1151 if (len > 1 && input_conv.vc_type != CONV_NONE) |
1152 len = convert_input(string2, len, sizeof(string2)); | |
1153 | |
1154 s = string2; | |
1155 d = string; | |
1156 for (i = 0; i < len; ++i) | |
1157 { | |
1158 *d++ = s[i]; | |
1159 if (d[-1] == CSI && d + 2 < string + sizeof(string)) | |
1160 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1161 // Turn CSI into K_CSI. |
7 | 1162 *d++ = KS_EXTRA; |
1163 *d++ = (int)KE_CSI; | |
1164 } | |
1165 } | |
1166 len = d - string; | |
1167 } | |
1168 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1169 // Shift-Tab results in Left_Tab, but we want <S-Tab> |
7 | 1170 if (key_sym == GDK_ISO_Left_Tab) |
1171 { | |
1172 key_sym = GDK_Tab; | |
1173 state |= GDK_SHIFT_MASK; | |
1174 } | |
1175 | |
1176 #ifdef FEAT_MENU | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1177 // If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1178 // is a menu shortcut, we ignore everything with the ALT modifier. |
7 | 1179 if ((state & GDK_MOD1_MASK) |
1180 && gui.menu_is_active | |
1181 && (*p_wak == 'y' | |
1182 || (*p_wak == 'm' | |
1183 && len == 1 | |
1184 && gui_is_menu_shortcut(string[0])))) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1185 // For GTK2 we return false to signify that we haven't handled the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1186 // keypress, so that gtk will handle the mnemonic or accelerator. |
7 | 1187 return FALSE; |
1188 #endif | |
1189 | |
20421
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1190 // We used to apply Alt/Meta to the key here (Mod1Mask), but that is now |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1191 // done later, the same as it happens for the terminal. Hopefully that |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1192 // works for everybody... |
7 | 1193 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1194 // Check for special keys. Also do this when len == 1 (key has an ASCII |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1195 // value) to detect backspace, delete and keypad keys. |
7 | 1196 if (len == 0 || len == 1) |
1197 { | |
1198 for (i = 0; special_keys[i].key_sym != 0; i++) | |
1199 { | |
1200 if (special_keys[i].key_sym == key_sym) | |
1201 { | |
1202 string[0] = CSI; | |
1203 string[1] = special_keys[i].code0; | |
1204 string[2] = special_keys[i].code1; | |
1205 len = -3; | |
1206 break; | |
1207 } | |
1208 } | |
1209 } | |
1210 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1211 if (len == 0) // Unrecognized key |
7 | 1212 return TRUE; |
1213 | |
20421
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1214 // For some keys a shift modifier is translated into another key code. |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1215 if (len == -3) |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1216 key = TO_SPECIAL(string[1], string[2]); |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1217 else |
20951
64c1b0796c46
patch 8.2.1027: GUI: multi-byte characters do not work in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
1218 { |
64c1b0796c46
patch 8.2.1027: GUI: multi-byte characters do not work in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
1219 string[len] = NUL; |
64c1b0796c46
patch 8.2.1027: GUI: multi-byte characters do not work in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
1220 key = mb_ptr2char(string); |
64c1b0796c46
patch 8.2.1027: GUI: multi-byte characters do not work in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
1221 } |
20421
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1222 |
20935
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20607
diff
changeset
|
1223 // Handle modifiers. |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20607
diff
changeset
|
1224 modifiers = modifiers_gdk2vim(state); |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20607
diff
changeset
|
1225 |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20607
diff
changeset
|
1226 // Recognize special keys. |
20421
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1227 key = simplify_key(key, &modifiers); |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1228 if (key == CSI) |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1229 key = K_CSI; |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1230 if (IS_SPECIAL(key)) |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1231 { |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1232 string[0] = CSI; |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1233 string[1] = K_SECOND(key); |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1234 string[2] = K_THIRD(key); |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1235 len = 3; |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1236 } |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1237 else |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1238 { |
22522
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22452
diff
changeset
|
1239 // Some keys need adjustment when the Ctrl modifier is used. |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22452
diff
changeset
|
1240 key = may_adjust_key_for_ctrl(modifiers, key); |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22452
diff
changeset
|
1241 |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22452
diff
changeset
|
1242 // May remove the Shift modifier if it's included in the key. |
20935
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20607
diff
changeset
|
1243 modifiers = may_remove_shift_modifier(modifiers, key); |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20607
diff
changeset
|
1244 |
20951
64c1b0796c46
patch 8.2.1027: GUI: multi-byte characters do not work in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
1245 len = mb_char2bytes(key, string); |
20421
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1246 } |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1247 |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1248 if (modifiers != 0) |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1249 { |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1250 string2[0] = CSI; |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1251 string2[1] = KS_MODIFIER; |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1252 string2[2] = modifiers; |
8590a462ad46
patch 8.2.0765: In the GUI can't use all the modifiers.
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
1253 add_to_input_buf(string2, 3); |
7 | 1254 } |
1255 | |
21570
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
20951
diff
changeset
|
1256 // Check if the key interrupts. |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
20951
diff
changeset
|
1257 { |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
20951
diff
changeset
|
1258 int int_ch = check_for_interrupt(key, modifiers); |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
20951
diff
changeset
|
1259 |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
20951
diff
changeset
|
1260 if (int_ch != NUL) |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
20951
diff
changeset
|
1261 { |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
20951
diff
changeset
|
1262 trash_input_buf(); |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
20951
diff
changeset
|
1263 string[0] = int_ch; |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
20951
diff
changeset
|
1264 len = 1; |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
20951
diff
changeset
|
1265 } |
7 | 1266 } |
1267 | |
1268 add_to_input_buf(string, len); | |
1269 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1270 // blank out the pointer if necessary |
7 | 1271 if (p_mh) |
1272 gui_mch_mousehide(TRUE); | |
1273 | |
1274 return TRUE; | |
1275 } | |
1276 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1277 #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
7 | 1278 static gboolean |
1884 | 1279 key_release_event(GtkWidget *widget UNUSED, |
1280 GdkEventKey *event, | |
1281 gpointer data UNUSED) | |
7 | 1282 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1283 # 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
|
1284 is_key_pressed = FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1285 gui_mch_start_blink(); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1286 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1287 # if defined(FEAT_XIM) |
2923 | 1288 gui.event_time = event->time; |
7 | 1289 /* |
1290 * GTK+ 2 input methods may do fancy stuff on key release events too. | |
1291 * With the default IM for instance, you can enter any UCS code point | |
1292 * by holding down CTRL-SHIFT and typing hexadecimal digits. | |
1293 */ | |
1294 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
|
1295 # else |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1296 return TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1297 # endif |
7 | 1298 } |
1299 #endif | |
1300 | |
1301 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1302 ///////////////////////////////////////////////////////////////////////////// |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1303 // Selection handlers: |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1304 |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1305 // Remember when clip_lose_selection was called from here, we must not call |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1306 // gtk_selection_owner_set() then. |
13503
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1307 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
|
1308 |
7 | 1309 static gint |
1884 | 1310 selection_clear_event(GtkWidget *widget UNUSED, |
7 | 1311 GdkEventSelection *event, |
1884 | 1312 gpointer user_data UNUSED) |
7 | 1313 { |
13503
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1314 in_selection_clear_event = TRUE; |
7 | 1315 if (event->selection == clip_plus.gtk_sel_atom) |
1316 clip_lose_selection(&clip_plus); | |
1317 else | |
1318 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
|
1319 in_selection_clear_event = FALSE; |
7 | 1320 |
1321 return TRUE; | |
1322 } | |
1323 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1324 #define RS_NONE 0 // selection_received_cb() not called yet |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1325 #define RS_OK 1 // selection_received_cb() called and OK |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1326 #define RS_FAIL 2 // selection_received_cb() called and failed |
7 | 1327 static int received_selection = RS_NONE; |
1328 | |
1329 static void | |
1884 | 1330 selection_received_cb(GtkWidget *widget UNUSED, |
7 | 1331 GtkSelectionData *data, |
1884 | 1332 guint time_ UNUSED, |
1333 gpointer user_data UNUSED) | |
7 | 1334 { |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1335 Clipboard_T *cbd; |
7 | 1336 char_u *text; |
1337 char_u *tmpbuf = NULL; | |
1338 guchar *tmpbuf_utf8 = NULL; | |
1339 int len; | |
2896 | 1340 int motion_type = MAUTO; |
7 | 1341 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1342 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom) |
7 | 1343 cbd = &clip_plus; |
1344 else | |
1345 cbd = &clip_star; | |
1346 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1347 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
|
1348 len = gtk_selection_data_get_length(data); |
7 | 1349 |
1350 if (text == NULL || len <= 0) | |
1351 { | |
1352 received_selection = RS_FAIL; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1353 // clip_free_selection(cbd); ??? |
7 | 1354 |
1355 return; | |
1356 } | |
1357 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1358 if (gtk_selection_data_get_data_type(data) == vim_atom) |
7 | 1359 { |
1360 motion_type = *text++; | |
1361 --len; | |
1362 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1363 else if (gtk_selection_data_get_data_type(data) == vimenc_atom) |
7 | 1364 { |
1365 char_u *enc; | |
1366 vimconv_T conv; | |
1367 | |
1368 motion_type = *text++; | |
1369 --len; | |
1370 | |
1371 enc = text; | |
1372 text += STRLEN(text) + 1; | |
1373 len -= text - enc; | |
1374 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1375 // If the encoding of the text is different from 'encoding', attempt |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1376 // converting it. |
7 | 1377 conv.vc_type = CONV_NONE; |
1378 convert_setup(&conv, enc, p_enc); | |
1379 if (conv.vc_type != CONV_NONE) | |
1380 { | |
1381 tmpbuf = string_convert(&conv, text, &len); | |
1382 if (tmpbuf != NULL) | |
1383 text = tmpbuf; | |
1384 convert_setup(&conv, NULL, NULL); | |
1385 } | |
1386 } | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
1387 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1388 // gtk_selection_data_get_text() handles all the nasty details |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1389 // and targets and encodings etc. This rocks so hard. |
7 | 1390 else |
1391 { | |
1392 tmpbuf_utf8 = gtk_selection_data_get_text(data); | |
1393 if (tmpbuf_utf8 != NULL) | |
1394 { | |
1395 len = STRLEN(tmpbuf_utf8); | |
1396 if (input_conv.vc_type != CONV_NONE) | |
1397 { | |
1398 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len); | |
1399 if (tmpbuf != NULL) | |
1400 text = tmpbuf; | |
1401 } | |
1402 else | |
1403 text = tmpbuf_utf8; | |
1404 } | |
1904 | 1405 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe) |
1406 { | |
1407 vimconv_T conv; | |
1408 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1409 // UTF-16, we get this for HTML |
1904 | 1410 conv.vc_type = CONV_NONE; |
1411 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE); | |
1412 | |
1413 if (conv.vc_type != CONV_NONE) | |
1414 { | |
1415 text += 2; | |
1416 len -= 2; | |
1417 tmpbuf = string_convert(&conv, text, &len); | |
1418 convert_setup(&conv, NULL, NULL); | |
1419 } | |
1420 if (tmpbuf != NULL) | |
1421 text = tmpbuf; | |
1422 } | |
7 | 1423 } |
1424 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1425 // Chop off any trailing NUL bytes. OpenOffice sends these. |
2183 | 1426 while (len > 0 && text[len - 1] == NUL) |
1427 --len; | |
1428 | |
7 | 1429 clip_yank_selection(motion_type, text, (long)len, cbd); |
1430 received_selection = RS_OK; | |
1431 vim_free(tmpbuf); | |
1432 g_free(tmpbuf_utf8); | |
1433 } | |
1434 | |
1435 /* | |
1436 * Prepare our selection data for passing it to the external selection | |
1437 * client. | |
1438 */ | |
1439 static void | |
1884 | 1440 selection_get_cb(GtkWidget *widget UNUSED, |
7 | 1441 GtkSelectionData *selection_data, |
1442 guint info, | |
1884 | 1443 guint time_ UNUSED, |
1444 gpointer user_data UNUSED) | |
7 | 1445 { |
1446 char_u *string; | |
1447 char_u *tmpbuf; | |
1448 long_u tmplen; | |
1449 int length; | |
1450 int motion_type; | |
1451 GdkAtom type; | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1452 Clipboard_T *cbd; |
7 | 1453 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1454 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
|
1455 == clip_plus.gtk_sel_atom) |
7 | 1456 cbd = &clip_plus; |
1457 else | |
1458 cbd = &clip_star; | |
1459 | |
1460 if (!cbd->owned) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1461 return; // Shouldn't ever happen |
7 | 1462 |
1463 if (info != (guint)TARGET_STRING | |
1904 | 1464 && (!clip_html || info != (guint)TARGET_HTML) |
7 | 1465 && info != (guint)TARGET_UTF8_STRING |
1466 && info != (guint)TARGET_VIMENC | |
1467 && info != (guint)TARGET_VIM | |
1468 && info != (guint)TARGET_COMPOUND_TEXT | |
1469 && info != (guint)TARGET_TEXT) | |
1470 return; | |
1471 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1472 // get the selection from the '*'/'+' register |
7 | 1473 clip_get_selection(cbd); |
1474 | |
1475 motion_type = clip_convert_selection(&string, &tmplen, cbd); | |
1476 if (motion_type < 0 || string == NULL) | |
1477 return; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1478 // Due to int arguments we can't handle more than G_MAXINT. Also |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1479 // reserve one extra byte for NUL or the motion type; just in case. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1480 // (Not that pasting 2G of text is ever going to work, but... ;-) |
7 | 1481 length = MIN(tmplen, (long_u)(G_MAXINT - 1)); |
1482 | |
1483 if (info == (guint)TARGET_VIM) | |
1484 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1485 tmpbuf = alloc(length + 1); |
7 | 1486 if (tmpbuf != NULL) |
1487 { | |
1488 tmpbuf[0] = motion_type; | |
1489 mch_memmove(tmpbuf + 1, string, (size_t)length); | |
1490 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1491 // For our own format, the first byte contains the motion type |
7 | 1492 ++length; |
1493 vim_free(string); | |
1494 string = tmpbuf; | |
1495 type = vim_atom; | |
1496 } | |
1497 | |
1904 | 1498 else if (info == (guint)TARGET_HTML) |
1499 { | |
1500 vimconv_T conv; | |
1501 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1502 // Since we get utf-16, we probably should set it as well. |
1904 | 1503 conv.vc_type = CONV_NONE; |
1504 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE); | |
1505 if (conv.vc_type != CONV_NONE) | |
1506 { | |
1507 tmpbuf = string_convert(&conv, string, &length); | |
1508 convert_setup(&conv, NULL, NULL); | |
1509 vim_free(string); | |
1510 string = tmpbuf; | |
1511 } | |
1512 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1513 // Prepend the BOM: "fffe" |
1904 | 1514 if (string != NULL) |
1515 { | |
1516 tmpbuf = alloc(length + 2); | |
16429
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1517 if (tmpbuf != NULL) |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1518 { |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1519 tmpbuf[0] = 0xff; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1520 tmpbuf[1] = 0xfe; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1521 mch_memmove(tmpbuf + 2, string, (size_t)length); |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1522 vim_free(string); |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1523 string = tmpbuf; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1524 length += 2; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1525 } |
1904 | 1526 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1527 #if !GTK_CHECK_VERSION(3,0,0) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1528 // Looks redundant even for GTK2 because these values are |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1529 // overwritten by gtk_selection_data_set() that follows. |
1904 | 1530 selection_data->type = selection_data->target; |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1531 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
|
1532 #endif |
1904 | 1533 gtk_selection_data_set(selection_data, html_atom, 16, |
1534 string, length); | |
1535 vim_free(string); | |
1536 } | |
1537 return; | |
1538 } | |
7 | 1539 else if (info == (guint)TARGET_VIMENC) |
1540 { | |
1541 int l = STRLEN(p_enc); | |
1542 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1543 // contents: motion_type 'encoding' NUL text |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1544 tmpbuf = alloc(length + l + 2); |
7 | 1545 if (tmpbuf != NULL) |
1546 { | |
1547 tmpbuf[0] = motion_type; | |
1548 STRCPY(tmpbuf + 1, p_enc); | |
1549 mch_memmove(tmpbuf + l + 2, string, (size_t)length); | |
16429
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1550 length += l + 2; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1551 vim_free(string); |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1552 string = tmpbuf; |
7 | 1553 } |
1554 type = vimenc_atom; | |
1555 } | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
1556 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1557 // gtk_selection_data_set_text() handles everything for us. This is |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1558 // so easy and simple and cool, it'd be insane not to use it. |
7 | 1559 else |
1560 { | |
1561 if (output_conv.vc_type != CONV_NONE) | |
1562 { | |
1563 tmpbuf = string_convert(&output_conv, string, &length); | |
1564 vim_free(string); | |
1565 if (tmpbuf == NULL) | |
1566 return; | |
1567 string = tmpbuf; | |
1568 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1569 // Validate the string to avoid runtime warnings |
7 | 1570 if (g_utf8_validate((const char *)string, (gssize)length, NULL)) |
1571 { | |
1572 gtk_selection_data_set_text(selection_data, | |
1573 (const char *)string, length); | |
1574 } | |
1575 vim_free(string); | |
1576 return; | |
1577 } | |
1578 | |
1579 if (string != NULL) | |
1580 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1581 #if !GTK_CHECK_VERSION(3,0,0) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1582 // Looks redundant even for GTK2 because these values are |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1583 // overwritten by gtk_selection_data_set() that follows. |
7 | 1584 selection_data->type = selection_data->target; |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1585 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
|
1586 #endif |
7 | 1587 gtk_selection_data_set(selection_data, type, 8, string, length); |
1588 vim_free(string); | |
1589 } | |
1590 } | |
1591 | |
1592 /* | |
3518 | 1593 * Check if the GUI can be started. Called before gvimrc is sourced and |
1594 * before fork(). | |
1595 * Return OK or FAIL. | |
1596 */ | |
1597 int | |
9836
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
1598 gui_mch_early_init_check(int give_message) |
3518 | 1599 { |
1600 char_u *p; | |
1601 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1602 // Guess that when $DISPLAY isn't set the GUI can't start. |
3518 | 1603 p = mch_getenv((char_u *)"DISPLAY"); |
1604 if (p == NULL || *p == NUL) | |
1605 { | |
1606 gui.dying = TRUE; | |
9836
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
1607 if (give_message) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15134
diff
changeset
|
1608 emsg(_((char *)e_opendisp)); |
3518 | 1609 return FAIL; |
1610 } | |
1611 return OK; | |
1612 } | |
1613 | |
1614 /* | |
1615 * Check if the GUI can be started. Called before gvimrc is sourced but after | |
1616 * fork(). | |
7 | 1617 * Return OK or FAIL. |
1618 */ | |
1619 int | |
1620 gui_mch_init_check(void) | |
1621 { | |
7679
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1622 #ifdef USE_GRESOURCE |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1623 static int res_registered = FALSE; |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1624 |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1625 if (!res_registered) |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1626 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1627 // Call this function in the GUI process; otherwise, the resources |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1628 // won't be available. Don't call it twice. |
7679
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1629 res_registered = TRUE; |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1630 gui_gtk_register_resource(); |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1631 } |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1632 #endif |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1633 |
8851
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1634 #if GTK_CHECK_VERSION(3,10,0) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1635 // Vim currently assumes that Gtk means X11, so it cannot use native Gtk |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1636 // support for other backends such as Wayland. |
8851
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1637 gdk_set_allowed_backends ("x11"); |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1638 #endif |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1639 |
7 | 1640 #ifdef FEAT_GUI_GNOME |
1641 if (gtk_socket_id == 0) | |
1642 using_gnome = 1; | |
1643 #endif | |
1644 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1645 // This defaults to argv[0], but we want it to match the name of the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1646 // shipped gvim.desktop so that Vim's windows can be associated with this |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1647 // file. |
4474 | 1648 g_set_prgname("gvim"); |
1649 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1650 // Don't use gtk_init() or gnome_init(), it exits on failure. |
7 | 1651 if (!gtk_init_check(&gui_argc, &gui_argv)) |
1652 { | |
1653 gui.dying = TRUE; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15134
diff
changeset
|
1654 emsg(_((char *)e_opendisp)); |
7 | 1655 return FAIL; |
1656 } | |
1657 | |
1658 return OK; | |
1659 } | |
1660 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1661 ///////////////////////////////////////////////////////////////////////////// |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1662 // Mouse handling callbacks |
7 | 1663 |
1664 | |
1665 static guint mouse_click_timer = 0; | |
1666 static int mouse_timed_out = TRUE; | |
1667 | |
1668 /* | |
1669 * Timer used to recognize multiple clicks of the mouse button | |
1670 */ | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1671 static timeout_cb_type |
7 | 1672 mouse_click_timer_cb(gpointer data) |
1673 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1674 // we don't use this information currently |
7 | 1675 int *timed_out = (int *) data; |
1676 | |
1677 *timed_out = TRUE; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1678 return FALSE; // don't happen again |
7 | 1679 } |
1680 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1681 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
|
1682 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
|
1683 static timeout_cb_type motion_repeat_timer_cb(gpointer); |
7 | 1684 |
1685 static void | |
1686 process_motion_notify(int x, int y, GdkModifierType state) | |
1687 { | |
1688 int button; | |
1689 int_u vim_modifiers; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1690 GtkAllocation allocation; |
7 | 1691 |
1692 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | | |
1693 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | | |
1694 GDK_BUTTON5_MASK)) | |
1695 ? MOUSE_DRAG : ' '; | |
1696 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1697 // If our pointer is currently hidden, then we should show it. |
7 | 1698 gui_mch_mousehide(FALSE); |
1699 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1700 // Just moving the rodent above the drawing area without any button |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1701 // being pressed. |
7 | 1702 if (button != MOUSE_DRAG) |
1703 { | |
1704 gui_mouse_moved(x, y); | |
1705 return; | |
1706 } | |
1707 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1708 // translate modifier coding between the main engine and GTK |
179 | 1709 vim_modifiers = modifiers_gdk2mouse(state); |
7 | 1710 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1711 // inform the editor engine about the occurrence of this event |
7 | 1712 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers); |
1713 | |
1714 /* | |
1715 * Auto repeat timer handling. | |
1716 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1717 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
|
1718 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1719 if (x < 0 || y < 0 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1720 || x >= allocation.width |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1721 || y >= allocation.height) |
7 | 1722 { |
1723 | |
1724 int dx; | |
1725 int dy; | |
1726 int offshoot; | |
1727 int delay = 10; | |
1728 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1729 // Calculate the maximal distance of the cursor from the drawing area. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1730 // (offshoot can't become negative here!). |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1731 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
|
1732 dy = y < 0 ? -y : y - allocation.height; |
7 | 1733 |
1734 offshoot = dx > dy ? dx : dy; | |
1735 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1736 // Make a linearly decaying timer delay with a threshold of 5 at a |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1737 // distance of 127 pixels from the main window. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1738 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1739 // One could think endlessly about the most ergonomic variant here. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1740 // For example it could make sense to calculate the distance from the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1741 // drags start instead... |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1742 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1743 // Maybe a parabolic interpolation would suite us better here too... |
7 | 1744 if (offshoot > 127) |
1745 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1746 // 5 appears to be somehow near to my perceptual limits :-). |
7 | 1747 delay = 5; |
1748 } | |
1749 else | |
1750 { | |
1751 delay = (130 * (127 - offshoot)) / 127 + 5; | |
1752 } | |
1753 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1754 // shoot again |
7 | 1755 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
|
1756 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
|
1757 NULL); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1758 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1759 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1760 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1761 #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
|
1762 static GdkDevice * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1763 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
|
1764 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1765 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
|
1766 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
|
1767 # 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
|
1768 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
|
1769 return gdk_seat_get_pointer(seat); |
fc69eed19ba7
commit https://github.com/vim/vim/commit/30e12d259ee78272359f9da2655d0593a4f6a626
Christian Brabandt <cb@256bit.org>
parents:
8851
diff
changeset
|
1770 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1771 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
|
1772 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
|
1773 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1774 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1775 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1776 static GdkWindow * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1777 gui_gtk_get_pointer(GtkWidget *widget, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1778 gint *x, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1779 gint *y, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1780 GdkModifierType *state) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1781 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1782 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
|
1783 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
|
1784 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
|
1785 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1786 |
8397
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1787 # 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
|
1788 static GdkWindow * |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1789 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
|
1790 gint *x, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1791 gint *y) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1792 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1793 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
|
1794 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
|
1795 } |
8397
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1796 # endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1797 #else // !GTK_CHECK_VERSION(3,0,0) |
14786
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
1798 # 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
|
1799 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
|
1800 # 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
|
1801 #endif |
7 | 1802 |
1803 /* | |
1804 * Timer used to recognize multiple clicks of the mouse button. | |
1805 */ | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1806 static timeout_cb_type |
1884 | 1807 motion_repeat_timer_cb(gpointer data UNUSED) |
7 | 1808 { |
1809 int x; | |
1810 int y; | |
1811 GdkModifierType state; | |
1812 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1813 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state); |
7 | 1814 |
1815 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | | |
1816 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | | |
1817 GDK_BUTTON5_MASK))) | |
1818 { | |
1819 motion_repeat_timer = 0; | |
1820 return FALSE; | |
1821 } | |
1822 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1823 // If there already is a mouse click in the input buffer, wait another |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1824 // time (otherwise we would create a backlog of clicks) |
7 | 1825 if (vim_used_in_input_buf() > 10) |
1826 return TRUE; | |
1827 | |
1828 motion_repeat_timer = 0; | |
1829 | |
1830 /* | |
1831 * Fake a motion event. | |
1832 * Trick: Pretend the mouse moved to the next character on every other | |
1833 * event, otherwise drag events will be discarded, because they are still | |
1834 * in the same character. | |
1835 */ | |
1836 if (motion_repeat_offset) | |
1837 x += gui.char_width; | |
1838 | |
1839 motion_repeat_offset = !motion_repeat_offset; | |
1840 process_motion_notify(x, y, state); | |
1841 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1842 // Don't happen again. We will get reinstalled in the synthetic event |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1843 // if needed -- thus repeating should still work. |
7 | 1844 return FALSE; |
1845 } | |
1846 | |
1847 static gint | |
1884 | 1848 motion_notify_event(GtkWidget *widget, |
1849 GdkEventMotion *event, | |
1850 gpointer data UNUSED) | |
7 | 1851 { |
1852 if (event->is_hint) | |
1853 { | |
1854 int x; | |
1855 int y; | |
1856 GdkModifierType state; | |
1857 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1858 gui_gtk_get_pointer(widget, &x, &y, &state); |
7 | 1859 process_motion_notify(x, y, state); |
1860 } | |
1861 else | |
1862 { | |
1863 process_motion_notify((int)event->x, (int)event->y, | |
1864 (GdkModifierType)event->state); | |
1865 } | |
1866 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1867 return TRUE; // handled |
7 | 1868 } |
1869 | |
1870 | |
1871 /* | |
1872 * Mouse button handling. Note please that we are capturing multiple click's | |
1873 * by our own timeout mechanism instead of the one provided by GTK+ itself. | |
1874 * This is due to the way the generic VIM code is recognizing multiple clicks. | |
1875 */ | |
1876 static gint | |
1884 | 1877 button_press_event(GtkWidget *widget, |
1878 GdkEventButton *event, | |
1879 gpointer data UNUSED) | |
7 | 1880 { |
1881 int button; | |
1882 int repeated_click = FALSE; | |
1883 int x, y; | |
1884 int_u vim_modifiers; | |
1885 | |
2923 | 1886 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
|
1887 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1888 // 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
|
1889 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
7 | 1890 gtk_widget_grab_focus(widget); |
1891 | |
1892 /* | |
1893 * Don't let additional events about multiple clicks send by GTK to us | |
1894 * after the initial button press event confuse us. | |
1895 */ | |
1896 if (event->type != GDK_BUTTON_PRESS) | |
1897 return FALSE; | |
1898 | |
1899 x = event->x; | |
1900 y = event->y; | |
1901 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1902 // Handle multiple clicks |
7 | 1903 if (!mouse_timed_out && mouse_click_timer) |
1904 { | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
1905 timeout_remove(mouse_click_timer); |
7 | 1906 mouse_click_timer = 0; |
1907 repeated_click = TRUE; | |
1908 } | |
1909 | |
1910 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
|
1911 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
|
1912 &mouse_timed_out); |
7 | 1913 |
1914 switch (event->button) | |
1915 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1916 // Keep in sync with gui_x11.c. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1917 // Buttons 4-7 are handled in scroll_event() |
7260
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1918 case 1: button = MOUSE_LEFT; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1919 case 2: button = MOUSE_MIDDLE; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1920 case 3: button = MOUSE_RIGHT; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1921 case 8: button = MOUSE_X1; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1922 case 9: button = MOUSE_X2; break; |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1923 default: |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1924 return FALSE; // Unknown button |
7 | 1925 } |
1926 | |
1927 #ifdef FEAT_XIM | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1928 // cancel any preediting |
7 | 1929 if (im_is_preediting()) |
1930 xim_reset(); | |
1931 #endif | |
1932 | |
179 | 1933 vim_modifiers = modifiers_gdk2mouse(event->state); |
7 | 1934 |
1935 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers); | |
1936 | |
1937 return TRUE; | |
1938 } | |
1939 | |
1940 /* | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
1941 * GTK+ 2 abstracts scrolling via the GdkEventScroll. |
7 | 1942 */ |
1943 static gboolean | |
1884 | 1944 scroll_event(GtkWidget *widget, |
1945 GdkEventScroll *event, | |
1946 gpointer data UNUSED) | |
7 | 1947 { |
1948 int button; | |
179 | 1949 int_u vim_modifiers; |
7 | 1950 |
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 switch (event->direction) | |
1955 { | |
1956 case GDK_SCROLL_UP: | |
1957 button = MOUSE_4; | |
1958 break; | |
1959 case GDK_SCROLL_DOWN: | |
1960 button = MOUSE_5; | |
1961 break; | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1962 case GDK_SCROLL_LEFT: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1963 button = MOUSE_7; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1964 break; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1965 case GDK_SCROLL_RIGHT: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1966 button = MOUSE_6; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1967 break; |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1968 default: // This shouldn't happen |
7 | 1969 return FALSE; |
1970 } | |
1971 | |
1972 # ifdef FEAT_XIM | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1973 // cancel any preediting |
7 | 1974 if (im_is_preediting()) |
1975 xim_reset(); | |
1976 # endif | |
1977 | |
179 | 1978 vim_modifiers = modifiers_gdk2mouse(event->state); |
7 | 1979 |
1980 gui_send_mouse_event(button, (int)event->x, (int)event->y, | |
1981 FALSE, vim_modifiers); | |
1982 | |
1983 return TRUE; | |
1984 } | |
1985 | |
1986 | |
1987 static gint | |
1884 | 1988 button_release_event(GtkWidget *widget UNUSED, |
1989 GdkEventButton *event, | |
1990 gpointer data UNUSED) | |
7 | 1991 { |
1992 int x, y; | |
1993 int_u vim_modifiers; | |
1994 | |
2923 | 1995 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
|
1996 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1997 // Remove any motion "machine gun" timers used for automatic further |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1998 // extension of allocation areas if outside of the applications window |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
1999 // area . |
7 | 2000 if (motion_repeat_timer) |
2001 { | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
2002 timeout_remove(motion_repeat_timer); |
7 | 2003 motion_repeat_timer = 0; |
2004 } | |
2005 | |
2006 x = event->x; | |
2007 y = event->y; | |
2008 | |
179 | 2009 vim_modifiers = modifiers_gdk2mouse(event->state); |
7 | 2010 |
2011 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers); | |
2012 | |
2013 return TRUE; | |
2014 } | |
2015 | |
2016 | |
2017 #ifdef FEAT_DND | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2018 ///////////////////////////////////////////////////////////////////////////// |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2019 // Drag aNd Drop support handlers. |
7 | 2020 |
2021 /* | |
2022 * Count how many items there may be and separate them with a NUL. | |
2023 * Apparently the items are separated with \r\n. This is not documented, | |
2024 * thus be careful not to go past the end. Also allow separation with | |
2025 * NUL characters. | |
2026 */ | |
2027 static int | |
2028 count_and_decode_uri_list(char_u *out, char_u *raw, int len) | |
2029 { | |
2030 int i; | |
2031 char_u *p = out; | |
2032 int count = 0; | |
2033 | |
2034 for (i = 0; i < len; ++i) | |
2035 { | |
2036 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r') | |
2037 { | |
2038 if (p > out && p[-1] != NUL) | |
2039 { | |
2040 ++count; | |
2041 *p++ = NUL; | |
2042 } | |
2043 } | |
2044 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0) | |
2045 { | |
2046 *p++ = hexhex2nr(raw + i + 1); | |
2047 i += 2; | |
2048 } | |
2049 else | |
2050 *p++ = raw[i]; | |
2051 } | |
2052 if (p > out && p[-1] != NUL) | |
2053 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2054 *p = NUL; // last item didn't have \r or \n |
7 | 2055 ++count; |
2056 } | |
2057 return count; | |
2058 } | |
2059 | |
2060 /* | |
2061 * Parse NUL separated "src" strings. Make it an array "outlist" form. On | |
2062 * this process, URI which protocol is not "file:" are removed. Return | |
2063 * length of array (less than "max"). | |
2064 */ | |
2065 static int | |
2066 filter_uri_list(char_u **outlist, int max, char_u *src) | |
2067 { | |
2068 int i, j; | |
2069 | |
2070 for (i = j = 0; i < max; ++i) | |
2071 { | |
2072 outlist[i] = NULL; | |
2073 if (STRNCMP(src, "file:", 5) == 0) | |
2074 { | |
2075 src += 5; | |
2076 if (STRNCMP(src, "//localhost", 11) == 0) | |
2077 src += 11; | |
2078 while (src[0] == '/' && src[1] == '/') | |
2079 ++src; | |
2080 outlist[j++] = vim_strsave(src); | |
2081 } | |
2082 src += STRLEN(src) + 1; | |
2083 } | |
2084 return j; | |
2085 } | |
2086 | |
2087 static char_u ** | |
2088 parse_uri_list(int *count, char_u *data, int len) | |
2089 { | |
2090 int n = 0; | |
2091 char_u *tmp = NULL; | |
9252
c25898cc99c1
commit https://github.com/vim/vim/commit/945ec093cd4ddefab930239990564b12eb232153
Christian Brabandt <cb@256bit.org>
parents:
9232
diff
changeset
|
2092 char_u **array = NULL; |
7 | 2093 |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2094 if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL) |
7 | 2095 { |
2096 n = count_and_decode_uri_list(tmp, data, len); | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2097 if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL) |
7 | 2098 n = filter_uri_list(array, n, tmp); |
2099 } | |
2100 vim_free(tmp); | |
2101 *count = n; | |
2102 return array; | |
2103 } | |
2104 | |
2105 static void | |
2106 drag_handle_uri_list(GdkDragContext *context, | |
2107 GtkSelectionData *data, | |
2108 guint time_, | |
2109 GdkModifierType state, | |
2110 gint x, | |
2111 gint y) | |
2112 { | |
2113 char_u **fnames; | |
2114 int nfiles = 0; | |
2115 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2116 fnames = parse_uri_list(&nfiles, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2117 (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
|
2118 gtk_selection_data_get_length(data)); |
7 | 2119 |
2120 if (fnames != NULL && nfiles > 0) | |
2121 { | |
179 | 2122 int_u modifiers; |
7 | 2123 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2124 gtk_drag_finish(context, TRUE, FALSE, time_); // accept |
7 | 2125 |
179 | 2126 modifiers = modifiers_gdk2mouse(state); |
7 | 2127 |
2128 gui_handle_drop(x, y, modifiers, fnames, nfiles); | |
2129 } | |
840 | 2130 else |
2131 vim_free(fnames); | |
7 | 2132 } |
2133 | |
2134 static void | |
2135 drag_handle_text(GdkDragContext *context, | |
2136 GtkSelectionData *data, | |
2137 guint time_, | |
2138 GdkModifierType state) | |
2139 { | |
2140 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP}; | |
2141 char_u *text; | |
2142 int len; | |
2143 char_u *tmpbuf = NULL; | |
2144 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2145 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
|
2146 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
|
2147 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2148 if (gtk_selection_data_get_data_type(data) == utf8_string_atom) |
7 | 2149 { |
2150 if (input_conv.vc_type != CONV_NONE) | |
2151 tmpbuf = string_convert(&input_conv, text, &len); | |
2152 if (tmpbuf != NULL) | |
2153 text = tmpbuf; | |
2154 } | |
2155 | |
2156 dnd_yank_drag_data(text, (long)len); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2157 gtk_drag_finish(context, TRUE, FALSE, time_); // accept |
7 | 2158 vim_free(tmpbuf); |
2159 | |
179 | 2160 dropkey[2] = modifiers_gdk2vim(state); |
7 | 2161 |
2162 if (dropkey[2] != 0) | |
2163 add_to_input_buf(dropkey, (int)sizeof(dropkey)); | |
2164 else | |
2165 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3)); | |
2166 } | |
2167 | |
2168 /* | |
2169 * DND receiver. | |
2170 */ | |
2171 static void | |
2172 drag_data_received_cb(GtkWidget *widget, | |
2173 GdkDragContext *context, | |
2174 gint x, | |
2175 gint y, | |
2176 GtkSelectionData *data, | |
2177 guint info, | |
2178 guint time_, | |
1884 | 2179 gpointer user_data UNUSED) |
7 | 2180 { |
2181 GdkModifierType state; | |
2182 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2183 // Guard against trash |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2184 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
|
2185 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
|
2186 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
|
2187 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2188 if (data_data == NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2189 || data_length <= 0 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2190 || data_format != 8 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2191 || data_data[data_length] != '\0') |
7 | 2192 { |
2193 gtk_drag_finish(context, FALSE, FALSE, time_); | |
2194 return; | |
2195 } | |
2196 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2197 // Get the current modifier state for proper distinguishment between |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2198 // different operations later. |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2199 gui_gtk_get_pointer(widget, NULL, NULL, &state); |
7 | 2200 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2201 // Not sure about the role of "text/plain" here... |
7 | 2202 if (info == (guint)TARGET_TEXT_URI_LIST) |
2203 drag_handle_uri_list(context, data, time_, state, x, y); | |
2204 else | |
2205 drag_handle_text(context, data, time_, state); | |
2206 | |
2207 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2208 #endif // FEAT_DND |
7 | 2209 |
2210 | |
17539
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
2211 #if defined(USE_GNOME_SESSION) |
7 | 2212 /* |
2213 * GnomeClient interact callback. Check for unsaved buffers that cannot | |
2214 * be abandoned and pop up a dialog asking the user for confirmation if | |
2215 * necessary. | |
2216 */ | |
2217 static void | |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2218 sm_client_check_changed_any(GnomeClient *client UNUSED, |
7 | 2219 gint key, |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2220 GnomeDialogType type UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2221 gpointer data UNUSED) |
7 | 2222 { |
2223 cmdmod_T save_cmdmod; | |
2224 gboolean shutdown_cancelled; | |
2225 | |
2226 save_cmdmod = cmdmod; | |
2227 | |
2228 # ifdef FEAT_BROWSE | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22659
diff
changeset
|
2229 cmdmod.cmod_flags |= CMOD_BROWSE; |
7 | 2230 # endif |
2231 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22659
diff
changeset
|
2232 cmdmod.cmod_flags |= CMOD_CONFIRM; |
7 | 2233 # endif |
2234 /* | |
2235 * If there are changed buffers, present the user with | |
2236 * a dialog if possible, otherwise give an error message. | |
2237 */ | |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
2238 shutdown_cancelled = check_changed_any(FALSE, FALSE); |
7 | 2239 |
2240 exiting = FALSE; | |
2241 cmdmod = save_cmdmod; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2242 setcursor(); // position the cursor |
7 | 2243 out_flush(); |
2244 /* | |
2245 * If the user hit the [Cancel] button the whole shutdown | |
2246 * will be cancelled. Wow, quite powerful feature (: | |
2247 */ | |
2248 gnome_interaction_key_return(key, shutdown_cancelled); | |
2249 } | |
2250 | |
2251 /* | |
2252 * "save_yourself" signal handler. Initiate an interaction to ask the user | |
2253 * for confirmation if necessary. Save the current editing session and tell | |
2254 * the session manager how to restart Vim. | |
2255 */ | |
2256 static gboolean | |
2257 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
|
2258 gint phase UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2259 GnomeSaveStyle save_style UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2260 gboolean shutdown UNUSED, |
7 | 2261 GnomeInteractStyle interact_style, |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2262 gboolean fast UNUSED, |
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2263 gpointer data UNUSED) |
7 | 2264 { |
2265 static const char suffix[] = "-session.vim"; | |
2266 char *session_file; | |
2267 unsigned int len; | |
2268 gboolean success; | |
2269 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2270 // Always request an interaction if possible. check_changed_any() |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2271 // won't actually show a dialog unless any buffers have been modified. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2272 // There doesn't seem to be an obvious way to check that without |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2273 // automatically firing the dialog. Anyway, it works just fine. |
7 | 2274 if (interact_style == GNOME_INTERACT_ANY) |
2275 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL, | |
2276 &sm_client_check_changed_any, | |
2277 NULL); | |
2278 out_flush(); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2279 ml_sync_all(FALSE, FALSE); // preserve all swap files |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2280 |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2281 // The path is unique for each session save. We do neither know nor care |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2282 // which session script will actually be used later. This decision is in |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2283 // the domain of the session manager. |
7 | 2284 session_file = gnome_config_get_real_path( |
2285 gnome_client_get_config_prefix(client)); | |
2286 len = strlen(session_file); | |
2287 | |
2288 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2289 --len; // get rid of the superfluous trailing '/' |
7 | 2290 |
2291 session_file = g_renew(char, session_file, len + sizeof(suffix)); | |
2292 memcpy(session_file + len, suffix, sizeof(suffix)); | |
2293 | |
2294 success = write_session_file((char_u *)session_file); | |
2295 | |
2296 if (success) | |
2297 { | |
2298 const char *argv[8]; | |
2299 int i; | |
2300 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2301 // Tell the session manager how to wipe out the stored session data. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2302 // This isn't as dangerous as it looks, don't worry :) session_file |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2303 // is a unique absolute filename. Usually it'll be something like |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2304 // `/home/user/.gnome2/vim-XXXXXX-session.vim'. |
7 | 2305 i = 0; |
2306 argv[i++] = "rm"; | |
2307 argv[i++] = session_file; | |
2308 argv[i] = NULL; | |
2309 | |
2310 gnome_client_set_discard_command(client, i, (char **)argv); | |
2311 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2312 // Tell the session manager how to restore the just saved session. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2313 // This is easily done thanks to Vim's -S option. Pass the -f flag |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2314 // since there's no need to fork -- it might even cause confusion. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2315 // Also pass the window role to give the WM something to match on. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2316 // The role is set in gui_mch_open(), thus should _never_ be NULL. |
7 | 2317 i = 0; |
2318 argv[i++] = restart_command; | |
2319 argv[i++] = "-f"; | |
2320 argv[i++] = "-g"; | |
2321 argv[i++] = "--role"; | |
2322 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin)); | |
2323 argv[i++] = "-S"; | |
2324 argv[i++] = session_file; | |
2325 argv[i] = NULL; | |
2326 | |
2327 gnome_client_set_restart_command(client, i, (char **)argv); | |
2328 gnome_client_set_clone_command(client, 0, NULL); | |
2329 } | |
2330 | |
2331 g_free(session_file); | |
2332 | |
2333 return success; | |
2334 } | |
2335 | |
2336 /* | |
2337 * Called when the session manager wants us to die. There isn't much to save | |
2338 * here since "save_yourself" has been emitted before (unless serious trouble | |
2339 * is happening). | |
2340 */ | |
2341 static void | |
2188
722e390945d7
Avoid warnings for unused arguments when compiling with Gnome.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2342 sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED) |
7 | 2343 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2344 // Don't write messages to the GUI anymore |
7 | 2345 full_screen = FALSE; |
2346 | |
1666 | 2347 vim_strncpy(IObuff, (char_u *) |
419 | 2348 _("Vim: Received \"die\" request from session manager\n"), |
1666 | 2349 IOSIZE - 1); |
7 | 2350 preserve_exit(); |
2351 } | |
2352 | |
2353 /* | |
2354 * Connect our signal handlers to be notified on session save and shutdown. | |
2355 */ | |
2356 static void | |
2357 setup_save_yourself(void) | |
2358 { | |
2359 GnomeClient *client; | |
2360 | |
2361 client = gnome_master_client(); | |
2362 | |
2363 if (client != NULL) | |
2364 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2365 // Must use the deprecated gtk_signal_connect() for compatibility |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2366 // with GNOME 1. Arrgh, zombies! |
7 | 2367 gtk_signal_connect(GTK_OBJECT(client), "save_yourself", |
2368 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL); | |
2369 gtk_signal_connect(GTK_OBJECT(client), "die", | |
2370 GTK_SIGNAL_FUNC(&sm_client_die), NULL); | |
2371 } | |
2372 } | |
2373 | |
17539
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
2374 #else // !USE_GNOME_SESSION |
7 | 2375 |
2376 # ifdef USE_XSMP | |
2377 /* | |
2378 * GTK tells us that XSMP needs attention | |
2379 */ | |
2380 static gboolean | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2381 local_xsmp_handle_requests( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2382 GIOChannel *source UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2383 GIOCondition condition, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2384 gpointer data) |
7 | 2385 { |
2386 if (condition == G_IO_IN) | |
2387 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2388 // Do stuff; maybe close connection |
7 | 2389 if (xsmp_handle_requests() == FAIL) |
2390 g_io_channel_unref((GIOChannel *)data); | |
2391 return TRUE; | |
2392 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2393 // Error |
7 | 2394 g_io_channel_unref((GIOChannel *)data); |
2395 xsmp_close(); | |
2396 return TRUE; | |
2397 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2398 # endif // USE_XSMP |
7 | 2399 |
2400 /* | |
2401 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event. | |
2402 * This is an ugly use of X functions. GTK doesn't offer an alternative. | |
2403 */ | |
2404 static void | |
2405 setup_save_yourself(void) | |
2406 { | |
2407 Atom *existing_atoms = NULL; | |
2408 int count = 0; | |
2409 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2410 # ifdef USE_XSMP |
7 | 2411 if (xsmp_icefd != -1) |
2412 { | |
2413 /* | |
2414 * Use XSMP is preference to legacy WM_SAVE_YOURSELF; | |
2415 * set up GTK IO monitor | |
2416 */ | |
2417 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd); | |
2418 | |
2419 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP, | |
2420 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
|
2421 g_io_channel_unref(g_io); |
7 | 2422 } |
2423 else | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2424 # endif |
7 | 2425 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2426 // Fall back to old method |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2427 |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2428 // first get the existing value |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2429 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
|
2430 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2431 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
|
2432 GDK_WINDOW_XID(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2433 &existing_atoms, &count)) |
7 | 2434 { |
2435 Atom *new_atoms; | |
2436 Atom save_yourself_xatom; | |
2437 int i; | |
2438 | |
2439 save_yourself_xatom = GET_X_ATOM(save_yourself_atom); | |
2440 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2441 // check if WM_SAVE_YOURSELF isn't there yet |
7 | 2442 for (i = 0; i < count; ++i) |
2443 if (existing_atoms[i] == save_yourself_xatom) | |
2444 break; | |
2445 | |
2446 if (i == count) | |
2447 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2448 // allocate an Atoms array which is one item longer |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2449 new_atoms = ALLOC_MULT(Atom, count + 1); |
7 | 2450 if (new_atoms != NULL) |
2451 { | |
2452 memcpy(new_atoms, existing_atoms, count * sizeof(Atom)); | |
2453 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
|
2454 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2455 GDK_WINDOW_XID(mainwin_win), |
7 | 2456 new_atoms, count + 1); |
2457 vim_free(new_atoms); | |
2458 } | |
2459 } | |
2460 XFree(existing_atoms); | |
2461 } | |
2462 } | |
2463 } | |
2464 | |
2465 /* | |
2466 * Installing a global event filter seems to be the only way to catch | |
2467 * client messages of type WM_PROTOCOLS without overriding GDK's own | |
2468 * client message event filter. Well, that's still better than trying | |
2469 * to guess what the GDK filter had done if it had been invoked instead | |
2470 * | |
2471 * GTK2_FIXME: This doesn't seem to work. For some reason we never | |
2472 * receive WM_SAVE_YOURSELF even though everything is set up correctly. | |
2473 * I have the nasty feeling modern session managers just don't send this | |
2474 * deprecated message anymore. Addition: confirmed by several people. | |
2475 * | |
2476 * The GNOME session support is much cooler anyway. Unlike this ugly | |
2477 * WM_SAVE_YOURSELF hack it actually stores the session... And yes, | |
2478 * it should work with KDE as well. | |
2479 */ | |
2480 static GdkFilterReturn | |
1884 | 2481 global_event_filter(GdkXEvent *xev, |
2482 GdkEvent *event UNUSED, | |
2483 gpointer data UNUSED) | |
7 | 2484 { |
2485 XEvent *xevent = (XEvent *)xev; | |
2486 | |
2487 if (xevent != NULL | |
2488 && xevent->type == ClientMessage | |
2489 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom) | |
1884 | 2490 && (long_u)xevent->xclient.data.l[0] |
2491 == GET_X_ATOM(save_yourself_atom)) | |
7 | 2492 { |
2493 out_flush(); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2494 ml_sync_all(FALSE, FALSE); // preserve all swap files |
7 | 2495 /* |
2496 * Set the window's WM_COMMAND property, to let the window manager | |
2497 * know we are done saving ourselves. We don't want to be | |
2498 * restarted, thus set argv to NULL. | |
2499 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2500 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
|
2501 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)), |
7 | 2502 NULL, 0); |
2503 return GDK_FILTER_REMOVE; | |
2504 } | |
2505 | |
2506 return GDK_FILTER_CONTINUE; | |
2507 } | |
17539
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
2508 #endif // !USE_GNOME_SESSION |
7 | 2509 |
2510 | |
2511 /* | |
2512 * Setup the window icon & xcmdsrv comm after the main window has been realized. | |
2513 */ | |
2514 static void | |
1884 | 2515 mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED) |
7 | 2516 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2517 // If you get an error message here, you still need to unpack the runtime |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2518 // archive! |
7 | 2519 #ifdef magick |
2520 # undef magick | |
2521 #endif | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2522 // A bit hackish, but avoids casting later and allows optimization |
7 | 2523 # define static static const |
2524 #define magick vim32x32 | |
2525 #include "../runtime/vim32x32.xpm" | |
2526 #undef magick | |
2527 #define magick vim16x16 | |
2528 #include "../runtime/vim16x16.xpm" | |
2529 #undef magick | |
2530 #define magick vim48x48 | |
2531 #include "../runtime/vim48x48.xpm" | |
2532 #undef magick | |
2533 # undef static | |
2534 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2535 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
|
2536 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2537 // When started with "--echo-wid" argument, write window ID on stdout. |
7 | 2538 if (echo_wid_arg) |
2539 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2540 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win)); |
7 | 2541 fflush(stdout); |
2542 } | |
2543 | |
2544 if (vim_strchr(p_go, GO_ICON) != NULL) | |
2545 { | |
2546 /* | |
2547 * Add an icon to the main window. For fun and convenience of the user. | |
2548 */ | |
2549 GList *icons = NULL; | |
2550 | |
2551 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16)); | |
2552 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32)); | |
2553 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48)); | |
2554 | |
2555 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons); | |
2556 | |
22192
9b5a90ad76c6
patch 8.2.1645: GTK3: icons become broken images when resized
Bram Moolenaar <Bram@vim.org>
parents:
21570
diff
changeset
|
2557 // TODO: is this type cast OK? |
9b5a90ad76c6
patch 8.2.1645: GTK3: icons become broken images when resized
Bram Moolenaar <Bram@vim.org>
parents:
21570
diff
changeset
|
2558 g_list_foreach(icons, (GFunc)(void *)&g_object_unref, NULL); |
7 | 2559 g_list_free(icons); |
2560 } | |
2561 | |
17539
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
2562 #if !defined(USE_GNOME_SESSION) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2563 // Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F |
7 | 2564 gdk_window_add_filter(NULL, &global_event_filter, NULL); |
2565 #endif | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2566 // Setup to indicate to the window manager that we want to catch the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2567 // WM_SAVE_YOURSELF event. For GNOME, this connects to the session |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2568 // manager instead. |
17539
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
2569 #if defined(USE_GNOME_SESSION) |
7 | 2570 if (using_gnome) |
2571 #endif | |
2572 setup_save_yourself(); | |
2573 | |
2574 #ifdef FEAT_CLIENTSERVER | |
2575 if (serverName == NULL && serverDelayedStartName != NULL) | |
2576 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2577 // 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
|
2578 commWindow = GDK_WINDOW_XID(mainwin_win); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2579 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2580 (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
|
2581 serverDelayedStartName); |
7 | 2582 } |
2583 else | |
2584 { | |
2585 /* | |
2586 * Cannot handle "XLib-only" windows with gtk event routines, we'll | |
2587 * 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
|
2588 * If we have not registered a name yet, remember the window. |
7 | 2589 */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2590 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2591 GDK_WINDOW_XID(mainwin_win)); |
7 | 2592 } |
2593 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
|
2594 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
|
2595 G_CALLBACK(property_event), NULL); |
7 | 2596 #endif |
2597 } | |
2598 | |
2599 static GdkCursor * | |
2600 create_blank_pointer(void) | |
2601 { | |
2602 GdkWindow *root_window = NULL; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2603 #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
|
2604 GdkPixbuf *blank_mask; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2605 #else |
7 | 2606 GdkPixmap *blank_mask; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2607 #endif |
7 | 2608 GdkCursor *cursor; |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2609 #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
|
2610 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
|
2611 #else |
7 | 2612 GdkColor color = { 0, 0, 0, 0 }; |
2613 char blank_data[] = { 0x0 }; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2614 #endif |
7 | 2615 |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2616 #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
|
2617 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2618 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
|
2619 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
|
2620 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
|
2621 } |
11474
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2622 #else |
7 | 2623 root_window = gtk_widget_get_root_window(gui.mainwin); |
2624 #endif | |
2625 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2626 // Create a pseudo blank pointer, which is in fact one pixel by one pixel |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2627 // in size. |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2628 #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
|
2629 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2630 cairo_surface_t *surf; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2631 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2632 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2633 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
|
2634 cr = cairo_create(surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2635 |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2636 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2637 color.red, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2638 color.green, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2639 color.blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
2640 color.alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2641 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
|
2642 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2643 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2644 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2645 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
|
2646 cairo_surface_destroy(surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2647 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2648 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
|
2649 blank_mask, 0, 0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2650 g_object_unref(blank_mask); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2651 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2652 #else |
7 | 2653 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1); |
2654 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask, | |
2655 &color, &color, 0, 0); | |
2656 gdk_bitmap_unref(blank_mask); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2657 #endif |
7 | 2658 |
2659 return cursor; | |
2660 } | |
2661 | |
2662 static void | |
2663 mainwin_screen_changed_cb(GtkWidget *widget, | |
1884 | 2664 GdkScreen *previous_screen UNUSED, |
2665 gpointer data UNUSED) | |
7 | 2666 { |
2667 if (!gtk_widget_has_screen(widget)) | |
2668 return; | |
2669 | |
2670 /* | |
1226 | 2671 * Recreate the invisible mouse cursor. |
7 | 2672 */ |
2673 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
|
2674 #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
|
2675 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
|
2676 #else |
7 | 2677 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
|
2678 #endif |
7 | 2679 |
2680 gui.blank_pointer = create_blank_pointer(); | |
2681 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2682 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
|
2683 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
|
2684 gui.blank_pointer); |
7 | 2685 |
2686 /* | |
2687 * Create a new PangoContext for this screen, and initialize it | |
2688 * with the current font if necessary. | |
2689 */ | |
2690 if (gui.text_context != NULL) | |
2691 g_object_unref(gui.text_context); | |
2692 | |
2693 gui.text_context = gtk_widget_create_pango_context(widget); | |
2694 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); | |
2695 | |
2696 if (gui.norm_font != NULL) | |
2697 { | |
38 | 2698 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
|
2699 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH); |
7 | 2700 } |
2701 } | |
2702 | |
2703 /* | |
2704 * After the drawing area comes up, we calculate all colors and create the | |
2705 * dummy blank cursor. | |
2706 * | |
2707 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the | |
2708 * fact that the main VIM engine doesn't take them into account anywhere. | |
2709 */ | |
2710 static void | |
1884 | 2711 drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED) |
7 | 2712 { |
2713 GtkWidget *sbar; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2714 GtkAllocation allocation; |
7 | 2715 |
2716 #ifdef FEAT_XIM | |
2717 xim_init(); | |
2718 #endif | |
2719 gui_mch_new_colors(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2720 #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
|
2721 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
|
2722 gtk_widget_get_window(widget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2723 CAIRO_CONTENT_COLOR_ALPHA, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2724 gtk_widget_get_allocated_width(widget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2725 gtk_widget_get_allocated_height(widget)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2726 #else |
7 | 2727 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
|
2728 #endif |
7 | 2729 |
2730 gui.blank_pointer = create_blank_pointer(); | |
2731 if (gui.pointer_hidden) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2732 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer); |
7 | 2733 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2734 // get the actual size of the scrollbars, if they are realized |
7 | 2735 sbar = firstwin->w_scrollbars[SBAR_LEFT].id; |
2736 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT] | |
2737 && firstwin->w_scrollbars[SBAR_RIGHT].id)) | |
2738 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
|
2739 gtk_widget_get_allocation(sbar, &allocation); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2740 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
|
2741 gui.scrollbar_width = allocation.width; |
7 | 2742 |
2743 sbar = gui.bottom_sbar.id; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2744 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
|
2745 gui.scrollbar_height = allocation.height; |
7 | 2746 } |
2747 | |
2748 /* | |
2749 * Properly clean up on shutdown. | |
2750 */ | |
2751 static void | |
1884 | 2752 drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED) |
7 | 2753 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2754 // Don't write messages to the GUI anymore |
7 | 2755 full_screen = FALSE; |
2756 | |
2757 #ifdef FEAT_XIM | |
2758 im_shutdown(); | |
2759 #endif | |
2760 if (gui.ascii_glyphs != NULL) | |
2761 { | |
2762 pango_glyph_string_free(gui.ascii_glyphs); | |
2763 gui.ascii_glyphs = NULL; | |
2764 } | |
2765 if (gui.ascii_font != NULL) | |
2766 { | |
2767 g_object_unref(gui.ascii_font); | |
2768 gui.ascii_font = NULL; | |
2769 } | |
2770 g_object_unref(gui.text_context); | |
2771 gui.text_context = NULL; | |
2772 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2773 #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
|
2774 if (gui.surface != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2775 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2776 cairo_surface_destroy(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2777 gui.surface = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2778 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2779 #else |
7 | 2780 g_object_unref(gui.text_gc); |
2781 gui.text_gc = NULL; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2782 #endif |
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 #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
|
2785 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
|
2786 #else |
7 | 2787 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
|
2788 #endif |
7 | 2789 gui.blank_pointer = NULL; |
2790 } | |
2791 | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2792 #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
|
2793 static void |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2794 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
|
2795 gpointer data UNUSED) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2796 #else |
7 | 2797 static void |
1884 | 2798 drawarea_style_set_cb(GtkWidget *widget UNUSED, |
2799 GtkStyle *previous_style UNUSED, | |
2800 gpointer data UNUSED) | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2801 #endif |
7 | 2802 { |
2803 gui_mch_new_colors(); | |
2804 } | |
2805 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2806 #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
|
2807 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2808 drawarea_configure_event_cb(GtkWidget *widget, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2809 GdkEventConfigure *event, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2810 gpointer data UNUSED) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2811 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2812 static int cur_width = 0; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2813 static int cur_height = 0; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2814 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2815 g_return_val_if_fail(event |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2816 && 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
|
2817 |
10402
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
2818 # if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2819 // As of 3.22.2, GdkWindows have started distributing configure events to |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2820 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0). |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2821 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2822 // As can be seen from the implementation of move_native_children() and |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2823 // configure_native_child() in gdkwindow.c, those functions actually |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2824 // propagate configure events to every child, failing to distinguish |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2825 // "native" one from non-native one. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2826 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2827 // Naturally, configure events propagated to here like that are fallacious |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2828 // and, as a matter of fact, they trigger a geometric collapse of |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2829 // gui.drawarea in fullscreen and maximized modes. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2830 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2831 // To filter out such nuisance events, we are making use of the fact that |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2832 // the field send_event of such GdkEventConfigures is set to FALSE in |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2833 // configure_native_child(). |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2834 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2835 // Obviously, this is a terrible hack making GVim depend on GTK's |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2836 // implementation details. Therefore, watch out any relevant internal |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2837 // changes happening in GTK in the feature (sigh). |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2838 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2839 // Follow-up |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2840 // After a few weeks later, the GdkWindow change mentioned above was |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2841 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155). |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2842 // 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
|
2843 if (event->send_event == FALSE) |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2844 return TRUE; |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2845 # endif |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2846 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2847 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
|
2848 return TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2849 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2850 cur_width = event->width; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2851 cur_height = event->height; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2852 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2853 if (gui.surface != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2854 cairo_surface_destroy(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2855 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2856 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
|
2857 gtk_widget_get_window(widget), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2858 CAIRO_CONTENT_COLOR_ALPHA, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2859 event->width, event->height); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2860 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2861 gtk_widget_queue_draw(widget); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2862 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2863 return TRUE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2864 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2865 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2866 |
7 | 2867 /* |
2868 * Callback routine for the "delete_event" signal on the toplevel window. | |
2869 * Tries to vim gracefully, or refuses to exit with changed buffers. | |
2870 */ | |
2871 static gint | |
1884 | 2872 delete_event_cb(GtkWidget *widget UNUSED, |
2873 GdkEventAny *event UNUSED, | |
2874 gpointer data UNUSED) | |
7 | 2875 { |
2876 gui_shell_closed(); | |
2877 return TRUE; | |
2878 } | |
2879 | |
685 | 2880 #if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE) |
2881 static int | |
2882 get_item_dimensions(GtkWidget *widget, GtkOrientation orientation) | |
2883 { | |
10767
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
2884 # ifdef FEAT_GUI_GNOME |
685 | 2885 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL; |
2886 | |
2887 if (using_gnome && widget != NULL) | |
2888 { | |
856 | 2889 GtkWidget *parent; |
685 | 2890 BonoboDockItem *dockitem; |
2891 | |
791 | 2892 parent = gtk_widget_get_parent(widget); |
856 | 2893 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM) |
2894 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2895 // Only menu & toolbar are dock items. Could tabline be? |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2896 // Seem to be only the 2 defined in GNOME |
856 | 2897 widget = parent; |
2898 dockitem = BONOBO_DOCK_ITEM(widget); | |
2899 | |
2900 if (dockitem == NULL || dockitem->is_floating) | |
2901 return 0; | |
2902 item_orientation = bonobo_dock_item_get_orientation(dockitem); | |
2903 } | |
685 | 2904 } |
10767
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
2905 # else |
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
2906 # 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
|
2907 # endif |
10767
a8ce0dbbb1d0
patch 8.0.0273: dead code detected by Coverity
Christian Brabandt <cb@256bit.org>
parents:
10544
diff
changeset
|
2908 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2909 if (widget != NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2910 && item_orientation == orientation |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2911 && gtk_widget_get_realized(widget) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2912 && 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
|
2913 { |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
2914 # 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
|
2915 GtkAllocation allocation; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2916 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2917 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
|
2918 return allocation.height; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2919 # else |
685 | 2920 if (orientation == GTK_ORIENTATION_HORIZONTAL) |
2921 return widget->allocation.height; | |
2922 else | |
2923 return widget->allocation.width; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2924 # endif |
685 | 2925 } |
2926 return 0; | |
2927 } | |
2928 #endif | |
2929 | |
2930 static int | |
2931 get_menu_tool_width(void) | |
2932 { | |
2933 int width = 0; | |
2934 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2935 #ifdef FEAT_GUI_GNOME // these are never vertical without GNOME |
685 | 2936 # ifdef FEAT_MENU |
2937 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL); | |
2938 # endif | |
2939 # ifdef FEAT_TOOLBAR | |
2940 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL); | |
2941 # endif | |
2942 # ifdef FEAT_GUI_TABLINE | |
782 | 2943 if (gui.tabline != NULL) |
2944 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL); | |
685 | 2945 # endif |
2946 #endif | |
2947 | |
2948 return width; | |
2949 } | |
2950 | |
2951 static int | |
2952 get_menu_tool_height(void) | |
2953 { | |
2954 int height = 0; | |
2955 | |
2956 #ifdef FEAT_MENU | |
2957 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL); | |
2958 #endif | |
2959 #ifdef FEAT_TOOLBAR | |
2960 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL); | |
2961 #endif | |
2962 #ifdef FEAT_GUI_TABLINE | |
782 | 2963 if (gui.tabline != NULL) |
2964 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL); | |
685 | 2965 #endif |
2966 | |
2967 return height; | |
2968 } | |
2969 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2970 // This controls whether we can set the real window hints at |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2971 // start-up when in a GtkPlug. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2972 // 0 = normal processing (default) |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2973 // 1 = init. hints set, no-one's tried to reset since last check |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2974 // 2 = init. hints set, attempt made to change hints |
791 | 2975 static int init_window_hints_state = 0; |
2976 | |
685 | 2977 static void |
791 | 2978 update_window_manager_hints(int force_width, int force_height) |
685 | 2979 { |
2980 static int old_width = 0; | |
2981 static int old_height = 0; | |
791 | 2982 static int old_min_width = 0; |
2983 static int old_min_height = 0; | |
685 | 2984 static int old_char_width = 0; |
2985 static int old_char_height = 0; | |
2986 | |
2987 int width; | |
2988 int height; | |
791 | 2989 int min_width; |
2990 int min_height; | |
2991 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2992 // At start-up, don't try to set the hints until the initial |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2993 // values have been used (those that dictate our initial size) |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2994 // Let forced (i.e., correct) values through always. |
791 | 2995 if (!(force_width && force_height) && init_window_hints_state > 0) |
2996 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
2997 // Don't do it! |
856 | 2998 init_window_hints_state = 2; |
2999 return; | |
791 | 3000 } |
685 | 3001 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3002 // This also needs to be done when the main window isn't there yet, |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3003 // otherwise the hints don't work. |
685 | 3004 width = gui_get_base_width(); |
3005 height = gui_get_base_height(); | |
3006 # ifdef FEAT_MENU | |
3007 height += tabline_height() * gui.char_height; | |
3008 # endif | |
3009 width += get_menu_tool_width(); | |
3010 height += get_menu_tool_height(); | |
3011 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3012 // GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3013 // their actual widget size. When we set our size ourselves (e.g., |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3014 // 'set columns=' or init. -geom) we briefly set the min. to the size |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3015 // we wish to be instead of the legitimate minimum so that we actually |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3016 // resize correctly. |
791 | 3017 if (force_width && force_height) |
3018 { | |
856 | 3019 min_width = force_width; |
3020 min_height = force_height; | |
791 | 3021 } |
3022 else | |
3023 { | |
856 | 3024 min_width = width + MIN_COLUMNS * gui.char_width; |
3025 min_height = height + MIN_LINES * gui.char_height; | |
791 | 3026 } |
3027 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3028 // Avoid an expose event when the size didn't change. |
685 | 3029 if (width != old_width |
3030 || height != old_height | |
856 | 3031 || min_width != old_min_width |
791 | 3032 || min_height != old_min_height |
685 | 3033 || gui.char_width != old_char_width |
3034 || gui.char_height != old_char_height) | |
3035 { | |
3036 GdkGeometry geometry; | |
3037 GdkWindowHints geometry_mask; | |
3038 | |
3039 geometry.width_inc = gui.char_width; | |
3040 geometry.height_inc = gui.char_height; | |
3041 geometry.base_width = width; | |
3042 geometry.base_height = height; | |
856 | 3043 geometry.min_width = min_width; |
3044 geometry.min_height = min_height; | |
685 | 3045 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC |
3046 |GDK_HINT_MIN_SIZE; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3047 // Using gui.formwin as geometry widget doesn't work as expected |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3048 // with GTK+ 2 -- dunno why. Presumably all the resizing hacks |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3049 // in Vim confuse GTK+. |
685 | 3050 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin, |
3051 &geometry, geometry_mask); | |
856 | 3052 old_width = width; |
3053 old_height = height; | |
3054 old_min_width = min_width; | |
3055 old_min_height = min_height; | |
3056 old_char_width = gui.char_width; | |
3057 old_char_height = gui.char_height; | |
685 | 3058 } |
3059 } | |
3060 | |
18078
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17539
diff
changeset
|
3061 #if defined(FEAT_GUI_DARKTHEME) || defined(PROTO) |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17539
diff
changeset
|
3062 void |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17539
diff
changeset
|
3063 gui_mch_set_dark_theme(int dark) |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17539
diff
changeset
|
3064 { |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17539
diff
changeset
|
3065 # if GTK_CHECK_VERSION(3,0,0) |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17539
diff
changeset
|
3066 GtkSettings *gtk_settings; |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17539
diff
changeset
|
3067 |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17539
diff
changeset
|
3068 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default()); |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17539
diff
changeset
|
3069 g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL); |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17539
diff
changeset
|
3070 # endif |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17539
diff
changeset
|
3071 } |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3072 #endif // FEAT_GUI_DARKTHEME |
18078
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17539
diff
changeset
|
3073 |
7 | 3074 #ifdef FEAT_TOOLBAR |
3075 | |
3076 /* | |
3077 * This extra effort wouldn't be necessary if we only used stock icons in the | |
3078 * toolbar, as we do for all builtin icons. But user-defined toolbar icons | |
3079 * shouldn't be treated differently, thus we do need this. | |
3080 */ | |
3081 static void | |
3082 icon_size_changed_foreach(GtkWidget *widget, gpointer user_data) | |
3083 { | |
3084 if (GTK_IS_IMAGE(widget)) | |
3085 { | |
3086 GtkImage *image = (GtkImage *)widget; | |
3087 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3088 # 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
|
3089 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
|
3090 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3091 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
|
3092 const gchar *icon_name; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3093 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3094 gtk_image_get_icon_name(image, &icon_name, NULL); |
22192
9b5a90ad76c6
patch 8.2.1645: GTK3: icons become broken images when resized
Bram Moolenaar <Bram@vim.org>
parents:
21570
diff
changeset
|
3095 image = (GtkImage *)gtk_image_new_from_icon_name( |
9b5a90ad76c6
patch 8.2.1645: GTK3: icons become broken images when resized
Bram Moolenaar <Bram@vim.org>
parents:
21570
diff
changeset
|
3096 icon_name, icon_size); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3097 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3098 # else |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3099 // User-defined icons are stored in a GtkIconSet |
7 | 3100 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET) |
3101 { | |
3102 GtkIconSet *icon_set; | |
3103 GtkIconSize icon_size; | |
3104 | |
3105 gtk_image_get_icon_set(image, &icon_set, &icon_size); | |
3106 icon_size = (GtkIconSize)(long)user_data; | |
3107 | |
3108 gtk_icon_set_ref(icon_set); | |
3109 gtk_image_set_from_icon_set(image, icon_set, icon_size); | |
3110 gtk_icon_set_unref(icon_set); | |
3111 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3112 # endif |
7 | 3113 } |
3114 else if (GTK_IS_CONTAINER(widget)) | |
3115 { | |
3116 gtk_container_foreach((GtkContainer *)widget, | |
3117 &icon_size_changed_foreach, | |
3118 user_data); | |
3119 } | |
3120 } | |
3121 | |
3122 static void | |
3123 set_toolbar_style(GtkToolbar *toolbar) | |
3124 { | |
3125 GtkToolbarStyle style; | |
3126 GtkIconSize size; | |
3127 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
|
3128 |
7 | 3129 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
3130 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) | |
3131 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
|
3132 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
7 | 3133 == (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
3134 style = GTK_TOOLBAR_BOTH; | |
3135 else if (toolbar_flags & TOOLBAR_TEXT) | |
3136 style = GTK_TOOLBAR_TEXT; | |
3137 else | |
3138 style = GTK_TOOLBAR_ICONS; | |
3139 | |
3140 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
|
3141 # if !GTK_CHECK_VERSION(3,0,0) |
7 | 3142 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
|
3143 # endif |
7 | 3144 |
3145 switch (tbis_flags) | |
3146 { | |
3147 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break; | |
3148 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break; | |
3149 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break; | |
3150 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
|
3151 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
|
3152 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break; |
7 | 3153 default: size = GTK_ICON_SIZE_INVALID; break; |
3154 } | |
3155 oldsize = gtk_toolbar_get_icon_size(toolbar); | |
3156 | |
3157 if (size == GTK_ICON_SIZE_INVALID) | |
3158 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3159 // Let global user preferences decide the icon size. |
7 | 3160 gtk_toolbar_unset_icon_size(toolbar); |
3161 size = gtk_toolbar_get_icon_size(toolbar); | |
3162 } | |
3163 if (size != oldsize) | |
3164 { | |
3165 gtk_container_foreach(GTK_CONTAINER(toolbar), | |
3166 &icon_size_changed_foreach, | |
3167 GINT_TO_POINTER((int)size)); | |
3168 } | |
3169 gtk_toolbar_set_icon_size(toolbar, size); | |
3170 } | |
3171 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3172 #endif // FEAT_TOOLBAR |
7 | 3173 |
685 | 3174 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
3175 static int ignore_tabline_evt = FALSE; | |
689 | 3176 static GtkWidget *tabline_menu; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3177 # if !GTK_CHECK_VERSION(3,0,0) |
846 | 3178 static GtkTooltips *tabline_tooltip; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3179 # endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3180 static int clicked_page; // page clicked in tab line |
689 | 3181 |
3182 /* | |
3183 * Handle selecting an item in the tab line popup menu. | |
3184 */ | |
3185 static void | |
1884 | 3186 tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data) |
689 | 3187 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3188 // Add the string cmd into input buffer |
824 | 3189 send_tabline_menu_event(clicked_page, (int)(long)user_data); |
689 | 3190 } |
3191 | |
851 | 3192 static void |
3193 add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp) | |
3194 { | |
3195 GtkWidget *item; | |
3196 char_u *utf_text; | |
3197 | |
3198 utf_text = CONVERT_TO_UTF8(text); | |
3199 item = gtk_menu_item_new_with_label((const char *)utf_text); | |
3200 gtk_widget_show(item); | |
3201 CONVERT_TO_UTF8_FREE(utf_text); | |
3202 | |
3203 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
|
3204 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
|
3205 G_CALLBACK(tabline_menu_handler), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3206 GINT_TO_POINTER(resp)); |
851 | 3207 } |
3208 | |
689 | 3209 /* |
3210 * Create a menu for the tab line. | |
3211 */ | |
3212 static GtkWidget * | |
3213 create_tabline_menu(void) | |
3214 { | |
851 | 3215 GtkWidget *menu; |
689 | 3216 |
3217 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
|
3218 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE); |
851 | 3219 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW); |
3220 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN); | |
689 | 3221 |
3222 return menu; | |
3223 } | |
3224 | |
3225 static gboolean | |
3226 on_tabline_menu(GtkWidget *widget, GdkEvent *event) | |
3227 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3228 // Was this button press event ? |
689 | 3229 if (event->type == GDK_BUTTON_PRESS) |
3230 { | |
3231 GdkEventButton *bevent = (GdkEventButton *)event; | |
3232 int x = bevent->x; | |
851 | 3233 int y = bevent->y; |
3234 GtkWidget *tabwidget; | |
3235 GdkWindow *tabwin; | |
689 | 3236 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3237 // When ignoring events return TRUE so that the selected page doesn't |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3238 // change. |
844 | 3239 if (hold_gui_events |
3240 # ifdef FEAT_CMDWIN | |
3241 || cmdwin_type != 0 | |
3242 # endif | |
3243 ) | |
3244 return TRUE; | |
3245 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3246 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
|
3247 |
851 | 3248 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
|
3249 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
|
3250 "tab_num")); |
689 | 3251 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3252 // If the event was generated for 3rd button popup the menu. |
689 | 3253 if (bevent->button == 3) |
3254 { | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3255 # 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
|
3256 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
|
3257 # else |
689 | 3258 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL, |
3259 bevent->button, bevent->time); | |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3260 # endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3261 // We handled the event. |
689 | 3262 return TRUE; |
3263 } | |
868 | 3264 else if (bevent->button == 1) |
693 | 3265 { |
868 | 3266 if (clicked_page == 0) |
3267 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3268 // Click after all tabs moves to next tab page. When "x" is |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3269 // 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
|
3270 send_tabline_event(x < 50 ? -1 : 0); |
868 | 3271 } |
693 | 3272 } |
689 | 3273 } |
844 | 3274 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3275 // We didn't handle the event. |
689 | 3276 return FALSE; |
3277 } | |
685 | 3278 |
3279 /* | |
3280 * Handle selecting one of the tabs. | |
3281 */ | |
3282 static void | |
3283 on_select_tab( | |
1884 | 3284 GtkNotebook *notebook UNUSED, |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3285 gpointer *page UNUSED, |
944 | 3286 gint idx, |
1884 | 3287 gpointer data UNUSED) |
685 | 3288 { |
3289 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
|
3290 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
|
3291 } |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3292 |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3293 # 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
|
3294 /* |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3295 * 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
|
3296 */ |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3297 static void |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3298 on_tab_reordered( |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3299 GtkNotebook *notebook UNUSED, |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3300 gpointer *page UNUSED, |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3301 gint idx, |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3302 gpointer data UNUSED) |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3303 { |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3304 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
|
3305 { |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3306 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
|
3307 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
|
3308 else |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3309 tabpage_move(idx); |
693 | 3310 } |
685 | 3311 } |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3312 # endif |
685 | 3313 |
3314 /* | |
3315 * Show or hide the tabline. | |
3316 */ | |
3317 void | |
3318 gui_mch_show_tabline(int showit) | |
3319 { | |
3320 if (gui.tabline == NULL) | |
3321 return; | |
3322 | |
3323 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline))) | |
3324 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3325 // Note: this may cause a resize event |
685 | 3326 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit); |
791 | 3327 update_window_manager_hints(0, 0); |
868 | 3328 if (showit) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3329 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE); |
868 | 3330 } |
3331 | |
3332 gui_mch_update(); | |
685 | 3333 } |
3334 | |
3335 /* | |
708 | 3336 * Return TRUE when tabline is displayed. |
3337 */ | |
3338 int | |
3339 gui_mch_showing_tabline(void) | |
3340 { | |
3341 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
|
3342 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)); |
708 | 3343 } |
3344 | |
3345 /* | |
685 | 3346 * Update the labels of the tabline. |
3347 */ | |
3348 void | |
3349 gui_mch_update_tabline(void) | |
3350 { | |
3351 GtkWidget *page; | |
846 | 3352 GtkWidget *event_box; |
685 | 3353 GtkWidget *label; |
3354 tabpage_T *tp; | |
3355 int nr = 0; | |
851 | 3356 int tab_num; |
685 | 3357 int curtabidx = 0; |
836 | 3358 char_u *labeltext; |
685 | 3359 |
3360 if (gui.tabline == NULL) | |
3361 return; | |
3362 | |
3363 ignore_tabline_evt = TRUE; | |
3364 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3365 // Add a label for each tab page. They all contain the same text area. |
685 | 3366 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) |
3367 { | |
3368 if (tp == curtab) | |
3369 curtabidx = nr; | |
3370 | |
851 | 3371 tab_num = nr + 1; |
3372 | |
685 | 3373 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr); |
3374 if (page == NULL) | |
3375 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3376 // Add notebook page |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3377 # 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
|
3378 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
|
3379 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
|
3380 # else |
685 | 3381 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
|
3382 # endif |
685 | 3383 gtk_widget_show(page); |
846 | 3384 event_box = gtk_event_box_new(); |
3385 gtk_widget_show(event_box); | |
685 | 3386 label = gtk_label_new("-Empty-"); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3387 # if !GTK_CHECK_VERSION(3,14,0) |
851 | 3388 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
|
3389 # endif |
846 | 3390 gtk_container_add(GTK_CONTAINER(event_box), label); |
685 | 3391 gtk_widget_show(label); |
3392 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline), | |
3393 page, | |
846 | 3394 event_box, |
685 | 3395 nr++); |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3396 # 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
|
3397 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
|
3398 page, |
856a840679e3
patch 8.0.1211: cannot reorder tab pages with drag & drop
Christian Brabandt <cb@256bit.org>
parents:
12413
diff
changeset
|
3399 TRUE); |
14800
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
3400 # endif |
685 | 3401 } |
3402 | |
846 | 3403 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
|
3404 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
|
3405 GINT_TO_POINTER(tab_num)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3406 label = gtk_bin_get_child(GTK_BIN(event_box)); |
839 | 3407 get_tabline_label(tp, FALSE); |
836 | 3408 labeltext = CONVERT_TO_UTF8(NameBuff); |
846 | 3409 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext); |
836 | 3410 CONVERT_TO_UTF8_FREE(labeltext); |
846 | 3411 |
3412 get_tabline_label(tp, TRUE); | |
3413 labeltext = CONVERT_TO_UTF8(NameBuff); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3414 # 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
|
3415 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
|
3416 # else |
846 | 3417 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box, |
3418 (const char *)labeltext, NULL); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3419 # endif |
846 | 3420 CONVERT_TO_UTF8_FREE(labeltext); |
685 | 3421 } |
3422 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3423 // Remove any old labels. |
685 | 3424 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL) |
3425 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr); | |
3426 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3427 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
|
3428 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx); |
685 | 3429 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3430 // Make sure everything is in place before drawing text. |
851 | 3431 gui_mch_update(); |
3432 | |
685 | 3433 ignore_tabline_evt = FALSE; |
3434 } | |
3435 | |
3436 /* | |
3437 * Set the current tab to "nr". First tab is 1. | |
3438 */ | |
3439 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
3440 gui_mch_set_curtab(int nr) |
685 | 3441 { |
3442 if (gui.tabline == NULL) | |
3443 return; | |
3444 | |
3445 ignore_tabline_evt = TRUE; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3446 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
|
3447 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1); |
685 | 3448 ignore_tabline_evt = FALSE; |
3449 } | |
3450 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3451 #endif // FEAT_GUI_TABLINE |
685 | 3452 |
7 | 3453 /* |
2183 | 3454 * Add selection targets for PRIMARY and CLIPBOARD selections. |
3455 */ | |
3456 void | |
3457 gui_gtk_set_selection_targets(void) | |
3458 { | |
3459 int i, j = 0; | |
3460 int n_targets = N_SELECTION_TARGETS; | |
3461 GtkTargetEntry targets[N_SELECTION_TARGETS]; | |
3462 | |
3463 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i) | |
3464 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3465 // OpenOffice tries to use TARGET_HTML and fails when we don't |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3466 // return something, instead of trying another target. Therefore only |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3467 // offer TARGET_HTML when it works. |
2183 | 3468 if (!clip_html && selection_targets[i].info == TARGET_HTML) |
3469 n_targets--; | |
3470 else | |
3471 targets[j++] = selection_targets[i]; | |
3472 } | |
3473 | |
3474 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY); | |
3475 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom); | |
3476 gtk_selection_add_targets(gui.drawarea, | |
3477 (GdkAtom)GDK_SELECTION_PRIMARY, | |
3478 targets, n_targets); | |
3479 gtk_selection_add_targets(gui.drawarea, | |
3480 (GdkAtom)clip_plus.gtk_sel_atom, | |
3481 targets, n_targets); | |
3482 } | |
3483 | |
3484 /* | |
3485 * Set up for receiving DND items. | |
3486 */ | |
3487 void | |
3488 gui_gtk_set_dnd_targets(void) | |
3489 { | |
3490 int i, j = 0; | |
3491 int n_targets = N_DND_TARGETS; | |
3492 GtkTargetEntry targets[N_DND_TARGETS]; | |
3493 | |
3494 for (i = 0; i < (int)N_DND_TARGETS; ++i) | |
3495 { | |
3154 | 3496 if (!clip_html && dnd_targets[i].info == TARGET_HTML) |
2183 | 3497 n_targets--; |
3498 else | |
3499 targets[j++] = dnd_targets[i]; | |
3500 } | |
3501 | |
3502 gtk_drag_dest_unset(gui.drawarea); | |
3503 gtk_drag_dest_set(gui.drawarea, | |
3504 GTK_DEST_DEFAULT_ALL, | |
3505 targets, n_targets, | |
2718 | 3506 GDK_ACTION_COPY | GDK_ACTION_MOVE); |
2183 | 3507 } |
3508 | |
3509 /* | |
7 | 3510 * Initialize the GUI. Create all the windows, set up all the callbacks etc. |
3511 * Returns OK for success, FAIL when the GUI can't be started. | |
3512 */ | |
3513 int | |
3514 gui_mch_init(void) | |
3515 { | |
3516 GtkWidget *vbox; | |
3517 | |
3518 #ifdef FEAT_GUI_GNOME | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3519 // Initialize the GNOME libraries. gnome_program_init()/gnome_init() |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3520 // exits on failure, but that's a non-issue because we already called |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3521 // gtk_init_check() in gui_mch_init_check(). |
7 | 3522 if (using_gnome) |
4045 | 3523 { |
7 | 3524 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT, |
3525 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL); | |
4045 | 3526 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC) |
5854 | 3527 { |
3528 char *p = setlocale(LC_NUMERIC, NULL); | |
3529 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3530 // Make sure strtod() uses a decimal point, not a comma. Gnome |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3531 // init may change it. |
5854 | 3532 if (p == NULL || strcmp(p, "C") != 0) |
3533 setlocale(LC_NUMERIC, "C"); | |
3534 } | |
4045 | 3535 # endif |
3536 } | |
7 | 3537 #endif |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13152
diff
changeset
|
3538 VIM_CLEAR(gui_argv); |
7 | 3539 |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3540 #if GLIB_CHECK_VERSION(2,1,3) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3541 // Set the human-readable application name |
7 | 3542 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
|
3543 #endif |
7 | 3544 /* |
3545 * Force UTF-8 output no matter what the value of 'encoding' is. | |
3546 * did_set_string_option() in option.c prohibits changing 'termencoding' | |
3547 * to something else than UTF-8 if the GUI is in use. | |
3548 */ | |
3549 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0); | |
3550 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3551 #ifdef FEAT_TOOLBAR |
7 | 3552 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
|
3553 #endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3554 // FIXME: Need to install the classic icons and a gtkrc.classic file. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3555 // 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
|
3556 #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
|
3557 # if 0 |
7 | 3558 gtk_rc_parse("gtkrc"); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3559 # endif |
7 | 3560 #endif |
3561 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3562 // Initialize values |
7 | 3563 gui.border_width = 2; |
3564 gui.scrollbar_width = SB_DEFAULT_WIDTH; | |
3565 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
|
3566 #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
|
3567 gui.fgcolor = g_new(GdkRGBA, 1); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3568 gui.bgcolor = g_new(GdkRGBA, 1); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3569 gui.spcolor = g_new(GdkRGBA, 1); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
3570 #else |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3571 // LINTED: avoid warning: conversion to 'unsigned long' |
7 | 3572 gui.fgcolor = g_new0(GdkColor, 1); |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3573 // LINTED: avoid warning: conversion to 'unsigned long' |
7 | 3574 gui.bgcolor = g_new0(GdkColor, 1); |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3575 // LINTED: avoid warning: conversion to 'unsigned long' |
207 | 3576 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
|
3577 #endif |
7 | 3578 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3579 // Initialise atoms |
1904 | 3580 html_atom = gdk_atom_intern("text/html", FALSE); |
7 | 3581 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE); |
3582 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3583 // Set default foreground and background colors. |
7 | 3584 gui.norm_pixel = gui.def_norm_pixel; |
3585 gui.back_pixel = gui.def_back_pixel; | |
3586 | |
3587 if (gtk_socket_id != 0) | |
3588 { | |
3589 GtkWidget *plug; | |
3590 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3591 // Use GtkSocket from another app. |
7 | 3592 plug = gtk_plug_new_for_display(gdk_display_get_default(), |
3593 gtk_socket_id); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3594 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL) |
7 | 3595 { |
3596 gui.mainwin = plug; | |
3597 } | |
3598 else | |
3599 { | |
3600 g_warning("Connection to GTK+ socket (ID %u) failed", | |
3601 (unsigned int)gtk_socket_id); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3602 // Pretend we never wanted it if it failed (get own window) |
7 | 3603 gtk_socket_id = 0; |
3604 } | |
3605 } | |
3606 | |
3607 if (gtk_socket_id == 0) | |
3608 { | |
3609 #ifdef FEAT_GUI_GNOME | |
3610 if (using_gnome) | |
3611 { | |
3612 gui.mainwin = gnome_app_new("Vim", NULL); | |
3613 # ifdef USE_XSMP | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3614 // Use the GNOME save-yourself functionality now. |
7 | 3615 xsmp_close(); |
3616 # endif | |
3617 } | |
3618 else | |
3619 #endif | |
3620 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
3621 } | |
3622 | |
3623 gtk_widget_set_name(gui.mainwin, "vim-main-window"); | |
3624 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3625 // Create the PangoContext used for drawing all text. |
7 | 3626 gui.text_context = gtk_widget_create_pango_context(gui.mainwin); |
3627 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
|
3628 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3629 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0); |
7 | 3630 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK); |
3631 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3632 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
|
3633 G_CALLBACK(&delete_event_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3634 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3635 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
|
3636 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
|
3637 |
621e41f6dcc2
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3638 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed", |
7 | 3639 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
|
3640 |
7 | 3641 gui.accel_group = gtk_accel_group_new(); |
3642 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group); | |
3643 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3644 // 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
|
3645 #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
|
3646 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
|
3647 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
|
3648 #else |
7 | 3649 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
|
3650 #endif |
7 | 3651 |
3652 #ifdef FEAT_GUI_GNOME | |
3653 if (using_gnome) | |
3654 { | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
3655 # if defined(FEAT_MENU) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3656 // automagically restore menubar/toolbar placement |
7 | 3657 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE); |
3658 # endif | |
3659 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox); | |
3660 } | |
3661 else | |
3662 #endif | |
3663 { | |
3664 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox); | |
3665 gtk_widget_show(vbox); | |
3666 } | |
3667 | |
3668 #ifdef FEAT_MENU | |
3669 /* | |
3670 * Create the menubar and handle | |
3671 */ | |
3672 gui.menubar = gtk_menu_bar_new(); | |
3673 gtk_widget_set_name(gui.menubar, "vim-menubar"); | |
3674 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3675 // Avoid that GTK takes <F10> away from us. |
36 | 3676 { |
3677 GtkSettings *gtk_settings; | |
3678 | |
3679 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default()); | |
3680 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL); | |
3681 } | |
3682 | |
3683 | |
7 | 3684 # ifdef FEAT_GUI_GNOME |
3685 if (using_gnome) | |
3686 { | |
3687 BonoboDockItem *dockitem; | |
3688 | |
3689 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar)); | |
3690 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), | |
3691 GNOME_APP_MENUBAR_NAME); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3692 // We don't want the menu to float. |
798 | 3693 bonobo_dock_item_set_behavior(dockitem, |
3694 bonobo_dock_item_get_behavior(dockitem) | |
3695 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); | |
7 | 3696 gui.menubar_h = GTK_WIDGET(dockitem); |
3697 } | |
3698 else | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3699 # endif // FEAT_GUI_GNOME |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3700 { |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3701 // Always show the menubar, otherwise <F10> doesn't work. It may be |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3702 // disabled in gui_init() later. |
827 | 3703 gtk_widget_show(gui.menubar); |
7 | 3704 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0); |
3705 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3706 #endif // FEAT_MENU |
7 | 3707 |
3708 #ifdef FEAT_TOOLBAR | |
3709 /* | |
3710 * Create the toolbar and handle | |
3711 */ | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3712 // some aesthetics on the toolbar |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3713 # ifdef USE_GTK3 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3714 // TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3715 // N.B. Since the default value of GtkToolbar::button-relief is |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3716 // GTK_RELIEF_NONE, there's no need to specify that, probably. |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3717 # else |
7 | 3718 gtk_rc_parse_string( |
3719 "style \"vim-toolbar-style\" {\n" | |
3720 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n" | |
3721 "}\n" | |
3722 "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
|
3723 # endif |
7 | 3724 gui.toolbar = gtk_toolbar_new(); |
3725 gtk_widget_set_name(gui.toolbar, "vim-toolbar"); | |
3726 set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); | |
3727 | |
3728 # ifdef FEAT_GUI_GNOME | |
3729 if (using_gnome) | |
3730 { | |
3731 BonoboDockItem *dockitem; | |
3732 | |
3733 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar)); | |
3734 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), | |
3735 GNOME_APP_TOOLBAR_NAME); | |
3736 gui.toolbar_h = GTK_WIDGET(dockitem); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3737 // When the toolbar is floating it gets stuck. So long as that isn't |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3738 // fixed let's disallow floating. |
795 | 3739 bonobo_dock_item_set_behavior(dockitem, |
798 | 3740 bonobo_dock_item_get_behavior(dockitem) |
3741 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); | |
7 | 3742 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0); |
3743 } | |
3744 else | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3745 # endif // FEAT_GUI_GNOME |
7 | 3746 { |
3747 if (vim_strchr(p_go, GO_TOOLBAR) != NULL | |
3748 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) | |
3749 gtk_widget_show(gui.toolbar); | |
3750 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0); | |
3751 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3752 #endif // FEAT_TOOLBAR |
7 | 3753 |
685 | 3754 #ifdef FEAT_GUI_TABLINE |
782 | 3755 /* |
3756 * Use a Notebook for the tab pages labels. The labels are hidden by | |
3757 * default. | |
3758 */ | |
791 | 3759 gui.tabline = gtk_notebook_new(); |
3760 gtk_widget_show(gui.tabline); | |
3761 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0); | |
3762 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE); | |
3763 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE); | |
841 | 3764 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
|
3765 # if !GTK_CHECK_VERSION(3,0,0) |
868 | 3766 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
|
3767 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3768 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3769 # if !GTK_CHECK_VERSION(3,0,0) |
846 | 3770 tabline_tooltip = gtk_tooltips_new(); |
3771 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
|
3772 # endif |
846 | 3773 |
3774 { | |
3775 GtkWidget *page, *label, *event_box; | |
791 | 3776 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3777 // Add the first tab. |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3778 # 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
|
3779 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
|
3780 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
|
3781 # else |
846 | 3782 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
|
3783 # endif |
846 | 3784 gtk_widget_show(page); |
3785 gtk_container_add(GTK_CONTAINER(gui.tabline), page); | |
3786 label = gtk_label_new("-Empty-"); | |
3787 gtk_widget_show(label); | |
3788 event_box = gtk_event_box_new(); | |
3789 gtk_widget_show(event_box); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3790 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
|
3791 # if !GTK_CHECK_VERSION(3,14,0) |
851 | 3792 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
|
3793 # endif |
846 | 3794 gtk_container_add(GTK_CONTAINER(event_box), label); |
3795 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
|
3796 # 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
|
3797 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
|
3798 # endif |
791 | 3799 } |
865 | 3800 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3801 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
|
3802 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
|
3803 # 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
|
3804 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
|
3805 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
|
3806 # endif |
791 | 3807 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3808 // Create a popup menu for the tab line and connect it. |
791 | 3809 tabline_menu = create_tabline_menu(); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3810 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
|
3811 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu)); |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3812 #endif // FEAT_GUI_TABLINE |
685 | 3813 |
22659
8623ab39b421
patch 8.2.1878: GTK: error for redefining function
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
3814 gui.formwin = gui_gtk_form_new(); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3815 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
|
3816 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 3817 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
|
3818 #endif |
23130
5fabd6e0f6f7
patch 8.2.2111: GTK: menu background is the same color as the main window
Bram Moolenaar <Bram@vim.org>
parents:
22993
diff
changeset
|
3819 #if GTK_CHECK_VERSION(3,22,2) |
5fabd6e0f6f7
patch 8.2.2111: GTK: menu background is the same color as the main window
Bram Moolenaar <Bram@vim.org>
parents:
22993
diff
changeset
|
3820 gtk_widget_set_name(gui.formwin, "vim-gtk-form"); |
5fabd6e0f6f7
patch 8.2.2111: GTK: menu background is the same color as the main window
Bram Moolenaar <Bram@vim.org>
parents:
22993
diff
changeset
|
3821 #endif |
7 | 3822 |
3823 gui.drawarea = gtk_drawing_area_new(); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3824 #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
|
3825 gui.surface = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3826 gui.by_signal = FALSE; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3827 #endif |
7 | 3828 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3829 // Determine which events we will filter. |
7 | 3830 gtk_widget_set_events(gui.drawarea, |
3831 GDK_EXPOSURE_MASK | | |
3832 GDK_ENTER_NOTIFY_MASK | | |
3833 GDK_LEAVE_NOTIFY_MASK | | |
3834 GDK_BUTTON_PRESS_MASK | | |
3835 GDK_BUTTON_RELEASE_MASK | | |
3836 GDK_SCROLL_MASK | | |
3837 GDK_KEY_PRESS_MASK | | |
3838 GDK_KEY_RELEASE_MASK | | |
3839 GDK_POINTER_MOTION_MASK | | |
3840 GDK_POINTER_MOTION_HINT_MASK); | |
3841 | |
3842 gtk_widget_show(gui.drawarea); | |
22659
8623ab39b421
patch 8.2.1878: GTK: error for redefining function
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
3843 gui_gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0); |
7 | 3844 gtk_widget_show(gui.formwin); |
3845 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0); | |
3846 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3847 // For GtkSockets, key-presses must go to the focus widget (drawarea) |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3848 // and not the window. |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3849 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
|
3850 : G_OBJECT(gui.drawarea), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3851 "key-press-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3852 G_CALLBACK(key_press_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3853 #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3854 // Also forward key release events for the benefit of GTK+ 2 input |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3855 // modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. |
7 | 3856 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) |
3857 : G_OBJECT(gui.drawarea), | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3858 "key-release-event", |
7 | 3859 G_CALLBACK(&key_release_event), NULL); |
3860 #endif | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3861 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
|
3862 G_CALLBACK(drawarea_realize_cb), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3863 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
|
3864 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
|
3865 #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
|
3866 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
|
3867 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
|
3868 #endif |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
3869 #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
|
3870 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
|
3871 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
|
3872 #else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3873 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
|
3874 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
|
3875 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3876 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3877 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 3878 gui.visibility = GDK_VISIBILITY_UNOBSCURED; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3879 #endif |
7 | 3880 |
17539
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
3881 #if !defined(USE_GNOME_SESSION) |
7 | 3882 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE); |
3883 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE); | |
3884 #endif | |
3885 | |
3886 if (gtk_socket_id != 0) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3887 // 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
|
3888 gtk_widget_set_can_focus(gui.drawarea, TRUE); |
7 | 3889 |
3890 /* | |
3891 * Set clipboard specific atoms | |
3892 */ | |
3893 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE); | |
3894 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE); | |
3895 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY; | |
3896 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE); | |
3897 | |
3898 /* | |
3899 * Start out by adding the configured border width into the border offset. | |
3900 */ | |
3901 gui.border_offset = gui.border_width; | |
3902 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3903 #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
|
3904 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
|
3905 G_CALLBACK(draw_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3906 #else |
7 | 3907 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event", |
3908 GTK_SIGNAL_FUNC(visibility_event), NULL); | |
3909 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event", | |
3910 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
|
3911 #endif |
7 | 3912 |
3913 /* | |
3914 * Only install these enter/leave callbacks when 'p' in 'guioptions'. | |
3915 * Only needed for some window managers. | |
3916 */ | |
3917 if (vim_strchr(p_go, GO_POINTER) != NULL) | |
3918 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3919 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
|
3920 G_CALLBACK(leave_notify_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3921 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event", |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3922 G_CALLBACK(enter_notify_event), NULL); |
7 | 3923 } |
3924 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3925 // Real windows can get focus ... GtkPlug, being a mere container can't, |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3926 // only its widgets. Arguably, this could be common code and we not use |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3927 // the window focus at all, but let's be safe. |
791 | 3928 if (gtk_socket_id == 0) |
3929 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3930 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
|
3931 G_CALLBACK(focus_out_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3932 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
|
3933 G_CALLBACK(focus_in_event), NULL); |
791 | 3934 } |
3935 else | |
3936 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3937 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
|
3938 G_CALLBACK(focus_out_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3939 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
|
3940 G_CALLBACK(focus_in_event), NULL); |
791 | 3941 #ifdef FEAT_GUI_TABLINE |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3942 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
|
3943 G_CALLBACK(focus_out_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3944 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
|
3945 G_CALLBACK(focus_in_event), NULL); |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3946 #endif // FEAT_GUI_TABLINE |
791 | 3947 } |
7 | 3948 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3949 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
|
3950 G_CALLBACK(motion_notify_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3951 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
|
3952 G_CALLBACK(button_press_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3953 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
|
3954 G_CALLBACK(button_release_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3955 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
|
3956 G_CALLBACK(&scroll_event), NULL); |
7 | 3957 |
3958 /* | |
3959 * Add selection handler functions. | |
3960 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3961 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
|
3962 G_CALLBACK(selection_clear_event), NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3963 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
|
3964 G_CALLBACK(selection_received_cb), NULL); |
7 | 3965 |
2183 | 3966 gui_gtk_set_selection_targets(); |
7 | 3967 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
3968 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
|
3969 G_CALLBACK(selection_get_cb), NULL); |
7 | 3970 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3971 // Pretend we don't have input focus, we will get an event if we do. |
7 | 3972 gui.in_focus = FALSE; |
3973 | |
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
|
3974 // 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
|
3975 { |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
3976 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
|
3977 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
|
3978 |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
3979 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
|
3980 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
|
3981 } |
2f6f886d9a87
patch 8.1.0249: GTK: when screen DPI changes Vim does not handle it
Christian Brabandt <cb@256bit.org>
parents:
13674
diff
changeset
|
3982 |
7 | 3983 return OK; |
3984 } | |
3985 | |
17539
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
3986 #if defined(USE_GNOME_SESSION) || defined(PROTO) |
7 | 3987 /* |
3988 * This is called from gui_start() after a fork() has been done. | |
3989 * We have to tell the session manager our new PID. | |
3990 */ | |
3991 void | |
3992 gui_mch_forked(void) | |
3993 { | |
3994 if (using_gnome) | |
3995 { | |
3996 GnomeClient *client; | |
3997 | |
3998 client = gnome_master_client(); | |
3999 | |
4000 if (client != NULL) | |
4001 gnome_client_set_process_id(client, getpid()); | |
4002 } | |
4003 } | |
17539
554240b9574b
patch 8.1.1767: FEAT_SESSION defined separately
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
4004 #endif // USE_GNOME_SESSION |
7 | 4005 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4006 #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
|
4007 static GdkRGBA |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4008 color_to_rgba(guicolor_T color) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4009 { |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4010 GdkRGBA rgba; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4011 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
|
4012 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
|
4013 rgba.blue = ((color & 0xff)) / 255.0; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4014 rgba.alpha = 1.0; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4015 return rgba; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4016 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4017 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4018 static void |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4019 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
|
4020 { |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4021 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
|
4022 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
|
4023 } |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4024 #endif // 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
|
4025 |
7 | 4026 /* |
4027 * Called when the foreground or background color has been changed. | |
4028 * This used to change the graphics contexts directly but we are | |
4029 * currently manipulating them where desired. | |
4030 */ | |
4031 void | |
4032 gui_mch_new_colors(void) | |
4033 { | |
23146
b78b8c804af0
patch 8.2.2119: GTK3: status line background color is wrong
Bram Moolenaar <Bram@vim.org>
parents:
23130
diff
changeset
|
4034 if (gui.drawarea != NULL |
b78b8c804af0
patch 8.2.2119: GTK3: status line background color is wrong
Bram Moolenaar <Bram@vim.org>
parents:
23130
diff
changeset
|
4035 #if GTK_CHECK_VERSION(3,22,2) |
b78b8c804af0
patch 8.2.2119: GTK3: status line background color is wrong
Bram Moolenaar <Bram@vim.org>
parents:
23130
diff
changeset
|
4036 && gui.formwin != NULL |
b78b8c804af0
patch 8.2.2119: GTK3: status line background color is wrong
Bram Moolenaar <Bram@vim.org>
parents:
23130
diff
changeset
|
4037 #endif |
b78b8c804af0
patch 8.2.2119: GTK3: status line background color is wrong
Bram Moolenaar <Bram@vim.org>
parents:
23130
diff
changeset
|
4038 && 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
|
4039 { |
11978f68a8c3
patch 8.1.0405: too many #ifdefs for GTK
Christian Brabandt <cb@256bit.org>
parents:
14712
diff
changeset
|
4040 #if !GTK_CHECK_VERSION(3,22,2) |
23146
b78b8c804af0
patch 8.2.2119: GTK3: status line background color is wrong
Bram Moolenaar <Bram@vim.org>
parents:
23130
diff
changeset
|
4041 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
|
4042 #endif |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4043 #if GTK_CHECK_VERSION(3,22,2) |
23146
b78b8c804af0
patch 8.2.2119: GTK3: status line background color is wrong
Bram Moolenaar <Bram@vim.org>
parents:
23130
diff
changeset
|
4044 GtkStyleContext * const context = |
b78b8c804af0
patch 8.2.2119: GTK3: status line background color is wrong
Bram Moolenaar <Bram@vim.org>
parents:
23130
diff
changeset
|
4045 gtk_widget_get_style_context(gui.formwin); |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4046 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
|
4047 gchar * const css = g_strdup_printf( |
23130
5fabd6e0f6f7
patch 8.2.2111: GTK: menu background is the same color as the main window
Bram Moolenaar <Bram@vim.org>
parents:
22993
diff
changeset
|
4048 "widget#vim-gtk-form {\n" |
10390
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4049 " background-color: #%.2lx%.2lx%.2lx;\n" |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4050 "}\n", |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4051 (gui.back_pixel >> 16) & 0xff, |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4052 (gui.back_pixel >> 8) & 0xff, |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4053 gui.back_pixel & 0xff); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4054 |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4055 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
|
4056 gtk_style_context_add_provider(context, |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4057 GTK_STYLE_PROVIDER(provider), G_MAXUINT); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4058 |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4059 g_free(css); |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4060 g_object_unref(provider); |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4061 #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
|
4062 GdkRGBA rgba; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4063 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4064 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
|
4065 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4066 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
|
4067 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
|
4068 if (pat != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4069 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4070 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
|
4071 cairo_pattern_destroy(pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4072 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4073 else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
4074 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
|
4075 } |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4076 #else // !GTK_CHECK_VERSION(3,4,0) |
7 | 4077 GdkColor color = { 0, 0, 0, 0 }; |
4078 | |
4079 color.pixel = gui.back_pixel; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4080 gdk_window_set_background(da_win, &color); |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4081 #endif // !GTK_CHECK_VERSION(3,22,2) |
7 | 4082 } |
4083 } | |
4084 | |
4085 /* | |
4086 * This signal informs us about the need to rearrange our sub-widgets. | |
4087 */ | |
4088 static gint | |
1884 | 4089 form_configure_event(GtkWidget *widget UNUSED, |
4090 GdkEventConfigure *event, | |
4091 gpointer data UNUSED) | |
7 | 4092 { |
791 | 4093 int usable_height = event->height; |
4094 | |
10402
65646e5652df
commit https://github.com/vim/vim/commit/182707ac10d77359bf7a87c6b23ce4025d5b0ad4
Christian Brabandt <cb@256bit.org>
parents:
10390
diff
changeset
|
4095 #if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4096 // As of 3.22.2, GdkWindows have started distributing configure events to |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4097 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0). |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4098 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4099 // As can be seen from the implementation of move_native_children() and |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4100 // configure_native_child() in gdkwindow.c, those functions actually |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4101 // propagate configure events to every child, failing to distinguish |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4102 // "native" one from non-native one. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4103 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4104 // Naturally, configure events propagated to here like that are fallacious |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4105 // and, as a matter of fact, they trigger a geometric collapse of |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4106 // gui.formwin. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4107 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4108 // To filter out such fallacious events, check if the given event is the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4109 // one that was sent out to the right place. Ignore it if not. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4110 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4111 // Follow-up |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4112 // After a few weeks later, the GdkWindow change mentioned above was |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4113 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155). |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4114 // 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
|
4115 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
|
4116 return TRUE; |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4117 #endif |
6c8a4d21b873
commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4118 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4119 // When in a GtkPlug, we can't guarantee valid heights (as a round |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4120 // no. of char-heights), so we have to manually sanitise them. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4121 // Widths seem to sort themselves out, don't ask me why. |
791 | 4122 if (gtk_socket_id != 0) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4123 usable_height -= (gui.char_height - (gui.char_height/2)); // sic. |
791 | 4124 |
22659
8623ab39b421
patch 8.2.1878: GTK: error for redefining function
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
4125 gui_gtk_form_freeze(GTK_FORM(gui.formwin)); |
791 | 4126 gui_resize_shell(event->width, usable_height); |
22659
8623ab39b421
patch 8.2.1878: GTK: error for redefining function
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
4127 gui_gtk_form_thaw(GTK_FORM(gui.formwin)); |
7 | 4128 |
4129 return TRUE; | |
4130 } | |
4131 | |
4132 /* | |
4133 * Function called when window already closed. | |
4134 * We can't do much more here than to trying to preserve what had been done, | |
4135 * since the window is already inevitably going away. | |
4136 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4137 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4138 mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED) |
7 | 4139 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4140 // Don't write messages to the GUI anymore |
7 | 4141 full_screen = FALSE; |
4142 | |
4143 gui.mainwin = NULL; | |
4144 gui.drawarea = NULL; | |
4145 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4146 if (!exiting) // only do anything if the destroy was unexpected |
7 | 4147 { |
419 | 4148 vim_strncpy(IObuff, |
4149 (char_u *)_("Vim: Main window unexpectedly destroyed\n"), | |
4150 IOSIZE - 1); | |
7 | 4151 preserve_exit(); |
4152 } | |
7380
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
4153 #ifdef USE_GRESOURCE |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
4154 gui_gtk_unregister_resource(); |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
4155 #endif |
7 | 4156 } |
4157 | |
24162
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4158 void |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4159 gui_gtk_get_screen_geom_of_win( |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4160 GtkWidget *wid, |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4161 int point_x, // x position of window if not initialized |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4162 int point_y, // y position of window if not initialized |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4163 int *screen_x, |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4164 int *screen_y, |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4165 int *width, |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4166 int *height) |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4167 { |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4168 GdkRectangle geometry; |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4169 GdkWindow *win = gtk_widget_get_window(wid); |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4170 #if GTK_CHECK_VERSION(3,22,0) |
24170
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4171 GdkDisplay *dpy; |
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4172 GdkMonitor *monitor; |
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4173 |
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4174 if (wid != NULL && gtk_widget_get_realized(wid)) |
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4175 dpy = gtk_widget_get_display(wid); |
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4176 else |
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4177 dpy = gdk_display_get_default(); |
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4178 if (win != NULL) |
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4179 monitor = gdk_display_get_monitor_at_window(dpy, win); |
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4180 else |
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4181 monitor = gdk_display_get_monitor_at_point(dpy, point_x, point_y); |
24162
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4182 gdk_monitor_get_geometry(monitor, &geometry); |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4183 #else |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4184 GdkScreen* screen; |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4185 int monitor; |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4186 |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4187 if (wid != NULL && gtk_widget_has_screen(wid)) |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4188 screen = gtk_widget_get_screen(wid); |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4189 else |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4190 screen = gdk_screen_get_default(); |
24170
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4191 if (win != NULL) |
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4192 monitor = gdk_screen_get_monitor_at_window(screen, win); |
74f869d4bd54
patch 8.2.2626: GTK3: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
24162
diff
changeset
|
4193 else |
24162
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4194 monitor = gdk_screen_get_monitor_at_point(screen, point_x, point_y); |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4195 gdk_screen_get_monitor_geometry(screen, monitor, &geometry); |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4196 #endif |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4197 *screen_x = geometry.x; |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4198 *screen_y = geometry.y; |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4199 *width = geometry.width; |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4200 *height = geometry.height; |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4201 } |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4202 |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4203 /* |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4204 * The screen size is used to make sure the initial window doesn't get bigger |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4205 * than the screen. This subtracts some room for menubar, toolbar and window |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4206 * decorations. |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4207 */ |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4208 static void |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4209 gui_gtk_get_screen_dimensions( |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4210 int point_x, |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4211 int point_y, |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4212 int *screen_w, |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4213 int *screen_h) |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4214 { |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4215 int x, y; |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4216 |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4217 gui_gtk_get_screen_geom_of_win(gui.mainwin, point_x, point_y, |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4218 &x, &y, screen_w, screen_h); |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4219 |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4220 // Subtract 'guiheadroom' from the height to allow some room for the |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4221 // window manager (task list and window title bar). |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4222 *screen_h -= p_ghr; |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4223 |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4224 /* |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4225 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4226 * the toolbar and menubar for GTK, we subtract them from the screen |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4227 * height, so that the window size can be made to fit on the screen. |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4228 * This should be completely changed later. |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4229 */ |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4230 *screen_w -= get_menu_tool_width(); |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4231 *screen_h -= get_menu_tool_height(); |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4232 } |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4233 |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4234 void |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4235 gui_mch_get_screen_dimensions(int *screen_w, int *screen_h) |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4236 { |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4237 gui_gtk_get_screen_dimensions(0, 0, screen_w, screen_h); |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4238 } |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4239 |
791 | 4240 |
4241 /* | |
4242 * Bit of a hack to ensure we start GtkPlug windows with the correct window | |
4243 * hints (and thus the required size from -geom), but that after that we | |
4244 * put the hints back to normal (the actual minimum size) so we may | |
4245 * 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
|
4246 * plug's window 'min hints to set *its* minimum size, but that's also the |
791 | 4247 * only way we have of making ourselves bigger (by set lines/columns). |
4248 * 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
|
4249 * 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
|
4250 * scrollbar init.), actually do the standard hints and stop the timer. |
791 | 4251 * We'll not let the default hints be set while this timer's active. |
4252 */ | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
4253 static timeout_cb_type |
1884 | 4254 check_startup_plug_hints(gpointer data UNUSED) |
791 | 4255 { |
4256 if (init_window_hints_state == 1) | |
4257 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4258 // Safe to use normal hints now |
856 | 4259 init_window_hints_state = 0; |
4260 update_window_manager_hints(0, 0); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4261 return FALSE; // stop timer |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4262 } |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4263 |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4264 // Keep on trying |
791 | 4265 init_window_hints_state = 1; |
4266 return TRUE; | |
4267 } | |
4268 | |
7 | 4269 /* |
4270 * Open the GUI window which was created by a call to gui_mch_init(). | |
4271 */ | |
4272 int | |
4273 gui_mch_open(void) | |
4274 { | |
4275 guicolor_T fg_pixel = INVALCOLOR; | |
4276 guicolor_T bg_pixel = INVALCOLOR; | |
1966 | 4277 guint pixel_width; |
4278 guint pixel_height; | |
7 | 4279 |
4280 /* | |
4281 * Allow setting a window role on the command line, or invent one | |
4282 * if none was specified. This is mainly useful for GNOME session | |
4283 * support; allowing the WM to restore window placement. | |
4284 */ | |
4285 if (role_argument != NULL) | |
4286 { | |
4287 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument); | |
4288 } | |
4289 else | |
4290 { | |
4291 char *role; | |
4292 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4293 // Invent a unique-enough ID string for the role |
7 | 4294 role = g_strdup_printf("vim-%u-%u-%u", |
4295 (unsigned)mch_get_pid(), | |
4296 (unsigned)g_random_int(), | |
4297 (unsigned)time(NULL)); | |
4298 | |
4299 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role); | |
4300 g_free(role); | |
4301 } | |
4302 | |
4303 if (gui_win_x != -1 && gui_win_y != -1) | |
4304 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y); | |
4305 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4306 // Determine user specified geometry, if present. |
7 | 4307 if (gui.geom != NULL) |
4308 { | |
4309 int mask; | |
4310 unsigned int w, h; | |
4311 int x = 0; | |
4312 int y = 0; | |
4313 | |
4314 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h); | |
4315 | |
4316 if (mask & WidthValue) | |
4317 Columns = w; | |
4318 if (mask & HeightValue) | |
857 | 4319 { |
1884 | 4320 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window")) |
857 | 4321 p_window = h - 1; |
7 | 4322 Rows = h; |
857 | 4323 } |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4474
diff
changeset
|
4324 limit_screen_size(); |
1426 | 4325 |
4326 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); | |
4327 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); | |
4328 | |
4329 pixel_width += get_menu_tool_width(); | |
4330 pixel_height += get_menu_tool_height(); | |
4331 | |
7 | 4332 if (mask & (XValue | YValue)) |
1426 | 4333 { |
1757 | 4334 int ww, hh; |
24162
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4335 |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4336 #ifdef FEAT_GUI_GTK |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4337 gui_gtk_get_screen_dimensions(x, y, &ww, &hh); |
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4338 #else |
1757 | 4339 gui_mch_get_screen_dimensions(&ww, &hh); |
24162
cb8b9bf76082
patch 8.2.2622: GTK: error when starting up and -geometry is given
Bram Moolenaar <Bram@vim.org>
parents:
23146
diff
changeset
|
4340 #endif |
1757 | 4341 hh += p_ghr + get_menu_tool_height(); |
4342 ww += get_menu_tool_width(); | |
1426 | 4343 if (mask & XNegative) |
1757 | 4344 x += ww - pixel_width; |
1426 | 4345 if (mask & YNegative) |
1757 | 4346 y += hh - pixel_height; |
7 | 4347 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
1426 | 4348 } |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13152
diff
changeset
|
4349 VIM_CLEAR(gui.geom); |
791 | 4350 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4351 // From now until everyone's stopped trying to set the window hints |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4352 // to their correct minimum values, stop them being set as we need |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4353 // them to remain at our required size for the parent GtkSocket to |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4354 // give us the right initial size. |
791 | 4355 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue)) |
856 | 4356 { |
4357 update_window_manager_hints(pixel_width, pixel_height); | |
4358 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
|
4359 timeout_add(1000, check_startup_plug_hints, NULL); |
856 | 4360 } |
7 | 4361 } |
4362 | |
1966 | 4363 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
4364 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4365 // For GTK2 changing the size of the form widget doesn't cause window |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4366 // resizing. |
2254
4620acaf4814
One more fix for conceal patch.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
4367 if (gtk_socket_id == 0) |
1966 | 4368 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height); |
791 | 4369 update_window_manager_hints(0, 0); |
7 | 4370 |
4371 if (foreground_argument != NULL) | |
4372 fg_pixel = gui_get_color((char_u *)foreground_argument); | |
4373 if (fg_pixel == INVALCOLOR) | |
4374 fg_pixel = gui_get_color((char_u *)"Black"); | |
4375 | |
4376 if (background_argument != NULL) | |
4377 bg_pixel = gui_get_color((char_u *)background_argument); | |
4378 if (bg_pixel == INVALCOLOR) | |
4379 bg_pixel = gui_get_color((char_u *)"White"); | |
4380 | |
4381 if (found_reverse_arg) | |
4382 { | |
4383 gui.def_norm_pixel = bg_pixel; | |
4384 gui.def_back_pixel = fg_pixel; | |
4385 } | |
4386 else | |
4387 { | |
4388 gui.def_norm_pixel = fg_pixel; | |
4389 gui.def_back_pixel = bg_pixel; | |
4390 } | |
4391 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4392 // Get the colors from the "Normal" and "Menu" group (set in syntax.c or |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4393 // in a vimrc file) |
7 | 4394 set_normal_colors(); |
4395 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4396 // Check that none of the colors are the same as the background color |
7 | 4397 gui_check_colors(); |
4398 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4399 // Get the colors for the highlight groups (gui_check_colors() might have |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4400 // changed them). |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4401 highlight_gui_started(); // re-init colors and fonts |
7 | 4402 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4403 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
|
4404 G_CALLBACK(mainwin_destroy_cb), NULL); |
7 | 4405 |
4406 /* | |
4407 * Notify the fixed area about the need to resize the contents of the | |
4408 * gui.formwin, which we use for random positioning of the included | |
4409 * components. | |
4410 * | |
4411 * We connect this signal deferred finally after anything is in place, | |
4412 * since this is intended to handle resizements coming from the window | |
4413 * manager upon us and should not interfere with what VIM is requesting | |
4414 * upon startup. | |
4415 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4416 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
|
4417 G_CALLBACK(form_configure_event), NULL); |
7 | 4418 |
4419 #ifdef FEAT_DND | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4420 // Set up for receiving DND items. |
2183 | 4421 gui_gtk_set_dnd_targets(); |
7 | 4422 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4423 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
|
4424 G_CALLBACK(drag_data_received_cb), NULL); |
7 | 4425 #endif |
4426 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4427 // With GTK+ 2, we need to iconify the window before calling show() |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4428 // to avoid mapping the window for a short time. |
7 | 4429 if (found_iconic_arg && gtk_socket_id == 0) |
4430 gui_mch_iconify(); | |
4431 | |
4432 { | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
4433 #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
7 | 4434 unsigned long menu_handler = 0; |
4435 # ifdef FEAT_TOOLBAR | |
4436 unsigned long tool_handler = 0; | |
4437 # endif | |
4438 /* | |
4439 * Urgh hackish :/ For some reason BonoboDockLayout always forces a | |
4440 * show when restoring the saved layout configuration. We can't just | |
4441 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's | |
4442 * a toplevel window and thus will be realized immediately. Instead, | |
4443 * connect signal handlers to hide the widgets just after they've been | |
4444 * marked visible, but before the main window is realized. | |
4445 */ | |
4446 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL) | |
4447 menu_handler = g_signal_connect_after(gui.menubar_h, "show", | |
4448 G_CALLBACK(>k_widget_hide), | |
4449 NULL); | |
4450 # ifdef FEAT_TOOLBAR | |
4451 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL | |
4452 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) | |
4453 tool_handler = g_signal_connect_after(gui.toolbar_h, "show", | |
4454 G_CALLBACK(>k_widget_hide), | |
4455 NULL); | |
4456 # endif | |
4457 #endif | |
4458 gtk_widget_show(gui.mainwin); | |
4459 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
4460 #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
7 | 4461 if (menu_handler != 0) |
4462 g_signal_handler_disconnect(gui.menubar_h, menu_handler); | |
4463 # ifdef FEAT_TOOLBAR | |
4464 if (tool_handler != 0) | |
4465 g_signal_handler_disconnect(gui.toolbar_h, tool_handler); | |
4466 # endif | |
4467 #endif | |
4468 } | |
4469 | |
4470 return OK; | |
4471 } | |
4472 | |
22452
3845389725c9
patch 8.2.1774: GTK: hang when forced to exit
Bram Moolenaar <Bram@vim.org>
parents:
22192
diff
changeset
|
4473 /* |
3845389725c9
patch 8.2.1774: GTK: hang when forced to exit
Bram Moolenaar <Bram@vim.org>
parents:
22192
diff
changeset
|
4474 * Clean up for when exiting Vim. |
3845389725c9
patch 8.2.1774: GTK: hang when forced to exit
Bram Moolenaar <Bram@vim.org>
parents:
22192
diff
changeset
|
4475 */ |
7 | 4476 void |
1884 | 4477 gui_mch_exit(int rc UNUSED) |
7 | 4478 { |
22452
3845389725c9
patch 8.2.1774: GTK: hang when forced to exit
Bram Moolenaar <Bram@vim.org>
parents:
22192
diff
changeset
|
4479 // Clean up, unless we don't want to invoke free(). |
3845389725c9
patch 8.2.1774: GTK: hang when forced to exit
Bram Moolenaar <Bram@vim.org>
parents:
22192
diff
changeset
|
4480 if (gui.mainwin != NULL && !really_exiting) |
7 | 4481 gtk_widget_destroy(gui.mainwin); |
4482 } | |
4483 | |
4484 /* | |
4485 * Get the position of the top left corner of the window. | |
4486 */ | |
4487 int | |
4488 gui_mch_get_winpos(int *x, int *y) | |
4489 { | |
4490 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y); | |
4491 return OK; | |
4492 } | |
4493 | |
4494 /* | |
4495 * Set the position of the top left corner of the window to the given | |
4496 * coordinates. | |
4497 */ | |
4498 void | |
4499 gui_mch_set_winpos(int x, int y) | |
4500 { | |
4501 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); | |
4502 } | |
4503 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4504 #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
|
4505 # if 0 |
7 | 4506 static int resize_idle_installed = FALSE; |
4507 /* | |
4508 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure | |
4509 * the shell size doesn't exceed the window size, i.e. if the window manager | |
4510 * ignored our size request. Usually this happens if the window is maximized. | |
4511 * | |
4512 * FIXME: It'd be nice if we could find a little more orthodox solution. | |
4513 * See also the remark below in gui_mch_set_shellsize(). | |
4514 * | |
4515 * DISABLED: When doing ":set lines+=1" this function would first invoke | |
4516 * gui_resize_shell() with the old size, then the normal callback would | |
4517 * report the new size through form_configure_event(). That caused the window | |
4518 * layout to be messed up. | |
4519 */ | |
4520 static gboolean | |
4521 force_shell_resize_idle(gpointer data) | |
4522 { | |
4523 if (gui.mainwin != NULL | |
4524 && GTK_WIDGET_REALIZED(gui.mainwin) | |
4525 && GTK_WIDGET_VISIBLE(gui.mainwin)) | |
4526 { | |
4527 int width; | |
4528 int height; | |
4529 | |
4530 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height); | |
4531 | |
4532 width -= get_menu_tool_width(); | |
4533 height -= get_menu_tool_height(); | |
4534 | |
4535 gui_resize_shell(width, height); | |
4536 } | |
4537 | |
4538 resize_idle_installed = FALSE; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4539 return FALSE; // don't call me again |
7 | 4540 } |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4541 # endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4542 #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
|
4543 |
1967 | 4544 /* |
4545 * Return TRUE if the main window is maximized. | |
4546 */ | |
4547 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
4548 gui_mch_maximized(void) |
1967 | 4549 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4550 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
|
4551 && (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
|
4552 & GDK_WINDOW_STATE_MAXIMIZED)); |
1967 | 4553 } |
4554 | |
4555 /* | |
4556 * Unmaximize the main window | |
4557 */ | |
4558 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
4559 gui_mch_unmaximize(void) |
1967 | 4560 { |
4561 if (gui.mainwin != NULL) | |
4562 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin)); | |
4563 } | |
4564 | |
7 | 4565 /* |
12802
29a728529f92
patch 8.0.1278: GUI window always resizes when adding scrollbar
Christian Brabandt <cb@256bit.org>
parents:
12666
diff
changeset
|
4566 * 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
|
4567 * 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
|
4568 * window. |
3014 | 4569 */ |
4570 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
4571 gui_mch_newfont(void) |
3014 | 4572 { |
4573 int w, h; | |
4574 | |
4575 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h); | |
4576 w -= get_menu_tool_width(); | |
4577 h -= get_menu_tool_height(); | |
4578 gui_resize_shell(w, h); | |
4579 } | |
4580 | |
4581 /* | |
7 | 4582 * Set the windows size. |
4583 */ | |
4584 void | |
4585 gui_mch_set_shellsize(int width, int height, | |
1884 | 4586 int min_width UNUSED, int min_height UNUSED, |
4587 int base_width UNUSED, int base_height UNUSED, | |
4588 int direction UNUSED) | |
7 | 4589 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4590 // give GTK+ a chance to put all widget's into place |
7 | 4591 gui_mch_update(); |
4592 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4593 // this will cause the proper resizement to happen too |
791 | 4594 if (gtk_socket_id == 0) |
856 | 4595 update_window_manager_hints(0, 0); |
791 | 4596 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4597 // With GTK+ 2, changing the size of the form widget doesn't resize |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4598 // the window. So let's do it the other way around and resize the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4599 // main window instead. |
7 | 4600 width += get_menu_tool_width(); |
4601 height += get_menu_tool_height(); | |
4602 | |
791 | 4603 if (gtk_socket_id == 0) |
856 | 4604 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height); |
791 | 4605 else |
856 | 4606 update_window_manager_hints(width, height); |
7 | 4607 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4608 # 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
|
4609 # if 0 |
7 | 4610 if (!resize_idle_installed) |
4611 { | |
4612 g_idle_add_full(GDK_PRIORITY_EVENTS + 10, | |
4613 &force_shell_resize_idle, NULL, NULL); | |
4614 resize_idle_installed = TRUE; | |
4615 } | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4616 # endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4617 # endif // !GTK_CHECK_VERSION(3,0,0) |
7 | 4618 /* |
4619 * Wait until all events are processed to prevent a crash because the | |
4620 * real size of the drawing area doesn't reflect Vim's internal ideas. | |
4621 * | |
4622 * This is a bit of a hack, since Vim is a terminal application with a GUI | |
4623 * on top, while the GUI expects to be the boss. | |
4624 */ | |
4625 gui_mch_update(); | |
4626 } | |
4627 | |
4628 #if defined(FEAT_TITLE) || defined(PROTO) | |
4629 void | |
1884 | 4630 gui_mch_settitle(char_u *title, char_u *icon UNUSED) |
7 | 4631 { |
4632 if (title != NULL && output_conv.vc_type != CONV_NONE) | |
4633 title = string_convert(&output_conv, title, NULL); | |
4634 | |
4635 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title); | |
4636 | |
4637 if (output_conv.vc_type != CONV_NONE) | |
4638 vim_free(title); | |
4639 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4640 #endif // FEAT_TITLE |
7 | 4641 |
4642 #if defined(FEAT_MENU) || defined(PROTO) | |
4643 void | |
4644 gui_mch_enable_menu(int showit) | |
4645 { | |
4646 GtkWidget *widget; | |
4647 | |
4648 # ifdef FEAT_GUI_GNOME | |
4649 if (using_gnome) | |
4650 widget = gui.menubar_h; | |
4651 else | |
4652 # endif | |
4653 widget = gui.menubar; | |
4654 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4655 // 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
|
4656 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting) |
7 | 4657 { |
4658 if (showit) | |
4659 gtk_widget_show(widget); | |
4660 else | |
4661 gtk_widget_hide(widget); | |
4662 | |
791 | 4663 update_window_manager_hints(0, 0); |
7 | 4664 } |
4665 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4666 #endif // FEAT_MENU |
7 | 4667 |
4668 #if defined(FEAT_TOOLBAR) || defined(PROTO) | |
4669 void | |
4670 gui_mch_show_toolbar(int showit) | |
4671 { | |
4672 GtkWidget *widget; | |
4673 | |
4674 if (gui.toolbar == NULL) | |
4675 return; | |
4676 | |
4677 # ifdef FEAT_GUI_GNOME | |
4678 if (using_gnome) | |
4679 widget = gui.toolbar_h; | |
4680 else | |
4681 # endif | |
4682 widget = gui.toolbar; | |
4683 | |
4684 if (showit) | |
4685 set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); | |
4686 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4687 if (!showit != !gtk_widget_get_visible(widget)) |
7 | 4688 { |
4689 if (showit) | |
4690 gtk_widget_show(widget); | |
4691 else | |
4692 gtk_widget_hide(widget); | |
4693 | |
791 | 4694 update_window_manager_hints(0, 0); |
7 | 4695 } |
4696 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4697 #endif // FEAT_TOOLBAR |
7 | 4698 |
4699 /* | |
4700 * Check if a given font is a CJK font. This is done in a very crude manner. It | |
4701 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given | |
4702 * font. Consequently, this function cannot be used as a general purpose check | |
4703 * for CJK-ness for which fontconfig APIs should be used. This is only used by | |
4704 * gui_mch_init_font() to deal with 'CJK fixed width fonts'. | |
4705 */ | |
4706 static int | |
4707 is_cjk_font(PangoFontDescription *font_desc) | |
4708 { | |
4709 static const char * const cjk_langs[] = | |
4710 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"}; | |
4711 | |
4712 PangoFont *font; | |
4713 unsigned i; | |
4714 int is_cjk = FALSE; | |
4715 | |
4716 font = pango_context_load_font(gui.text_context, font_desc); | |
4717 | |
4718 if (font == NULL) | |
4719 return FALSE; | |
4720 | |
4721 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i) | |
4722 { | |
4723 PangoCoverage *coverage; | |
4724 gunichar uc; | |
4725 | |
19816
f37028184d6a
patch 8.2.0464: typos and other small problems
Bram Moolenaar <Bram@vim.org>
parents:
18781
diff
changeset
|
4726 // Valgrind reports a leak for pango_language_from_string(), but the |
f37028184d6a
patch 8.2.0464: typos and other small problems
Bram Moolenaar <Bram@vim.org>
parents:
18781
diff
changeset
|
4727 // documentation says "This is owned by Pango and should not be freed". |
7 | 4728 coverage = pango_font_get_coverage( |
4729 font, pango_language_from_string(cjk_langs[i])); | |
4730 | |
4731 if (coverage != NULL) | |
4732 { | |
4733 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00; | |
4734 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT); | |
4735 pango_coverage_unref(coverage); | |
4736 } | |
4737 } | |
4738 | |
4739 g_object_unref(font); | |
4740 | |
4741 return is_cjk; | |
4742 } | |
4743 | |
445 | 4744 /* |
4745 * Adjust gui.char_height (after 'linespace' was changed). | |
4746 */ | |
7 | 4747 int |
445 | 4748 gui_mch_adjust_charheight(void) |
7 | 4749 { |
4750 PangoFontMetrics *metrics; | |
4751 int ascent; | |
4752 int descent; | |
4753 | |
4754 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font, | |
4755 pango_context_get_language(gui.text_context)); | |
4756 ascent = pango_font_metrics_get_ascent(metrics); | |
4757 descent = pango_font_metrics_get_descent(metrics); | |
4758 | |
4759 pango_font_metrics_unref(metrics); | |
4760 | |
22730
28001013f467
patch 8.2.1913: GTK GUI: rounding for the cell height is too strict
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
4761 // Round up when the value is more than about 1/16 of a pixel above a whole |
28001013f467
patch 8.2.1913: GTK GUI: rounding for the cell height is too strict
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
4762 // pixel (12.0624 becomes 12, 12.07 becomes 13). Then add 'linespace'. |
28001013f467
patch 8.2.1913: GTK GUI: rounding for the cell height is too strict
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
4763 gui.char_height = (ascent + descent + (PANGO_SCALE * 15) / 16) |
28001013f467
patch 8.2.1913: GTK GUI: rounding for the cell height is too strict
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
4764 / PANGO_SCALE + p_linespace; |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4765 // LINTED: avoid warning: bitwise operation on signed value |
7 | 4766 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2); |
4767 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4768 // A not-positive value of char_height may crash Vim. Only happens |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4769 // if 'linespace' is negative (which does make sense sometimes). |
7 | 4770 gui.char_ascent = MAX(gui.char_ascent, 0); |
4771 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1); | |
4772 | |
4773 return OK; | |
4774 } | |
4775 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4776 #if GTK_CHECK_VERSION(3,0,0) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4777 // Callback function used in gui_mch_font_dialog() |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4778 static gboolean |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4779 font_filter(const PangoFontFamily *family, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4780 const PangoFontFace *face UNUSED, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4781 gpointer data UNUSED) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4782 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4783 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
|
4784 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4785 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4786 |
7 | 4787 /* |
4788 * Put up a font dialog and return the selected font name in allocated memory. | |
4789 * "oldval" is the previous value. Return NULL when cancelled. | |
4790 * This should probably go into gui_gtk.c. Hmm. | |
4791 * FIXME: | |
4792 * The GTK2 font selection dialog has no filtering API. So we could either | |
4793 * a) implement our own (possibly copying the code from somewhere else) or | |
4794 * b) just live with it. | |
4795 */ | |
4796 char_u * | |
4797 gui_mch_font_dialog(char_u *oldval) | |
4798 { | |
4799 GtkWidget *dialog; | |
4800 int response; | |
4801 char_u *fontname = NULL; | |
4802 char_u *oldname; | |
4803 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4804 #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
|
4805 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
|
4806 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
|
4807 NULL, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4808 #else |
7 | 4809 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
|
4810 #endif |
7 | 4811 |
4812 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin)); | |
4813 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE); | |
4814 | |
4815 if (oldval != NULL && oldval[0] != NUL) | |
4816 { | |
4817 if (output_conv.vc_type != CONV_NONE) | |
4818 oldname = string_convert(&output_conv, oldval, NULL); | |
4819 else | |
4820 oldname = oldval; | |
4821 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4822 // Annoying bug in GTK (or Pango): if the font name does not include a |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4823 // size, zero is used. Use default point size ten. |
7 | 4824 if (!vim_isdigit(oldname[STRLEN(oldname) - 1])) |
4825 { | |
4826 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3); | |
4827 | |
4828 if (p != NULL) | |
4829 { | |
4830 STRCPY(p + STRLEN(p), " 10"); | |
4831 if (oldname != oldval) | |
4832 vim_free(oldname); | |
4833 oldname = p; | |
4834 } | |
4835 } | |
4836 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4837 #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
|
4838 gtk_font_chooser_set_font( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4839 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
|
4840 #else |
7 | 4841 gtk_font_selection_dialog_set_font_name( |
4842 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
|
4843 #endif |
7 | 4844 |
4845 if (oldname != oldval) | |
100 | 4846 vim_free(oldname); |
7 | 4847 } |
1959 | 4848 else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4849 #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
|
4850 gtk_font_chooser_set_font( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4851 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4852 #else |
1959 | 4853 gtk_font_selection_dialog_set_font_name( |
4854 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
|
4855 #endif |
7 | 4856 |
4857 response = gtk_dialog_run(GTK_DIALOG(dialog)); | |
4858 | |
4859 if (response == GTK_RESPONSE_OK) | |
4860 { | |
4861 char *name; | |
4862 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4863 #if GTK_CHECK_VERSION(3,2,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4864 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
|
4865 #else |
7 | 4866 name = gtk_font_selection_dialog_get_font_name( |
4867 GTK_FONT_SELECTION_DIALOG(dialog)); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
4868 #endif |
7 | 4869 if (name != NULL) |
4870 { | |
714 | 4871 char_u *p; |
4872 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4873 // Apparently some font names include a comma, need to escape |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4874 // that, because in 'guifont' it separates names. |
714 | 4875 p = vim_strsave_escaped((char_u *)name, (char_u *)","); |
4876 g_free(name); | |
840 | 4877 if (p != NULL && input_conv.vc_type != CONV_NONE) |
714 | 4878 { |
4879 fontname = string_convert(&input_conv, p, NULL); | |
4880 vim_free(p); | |
4881 } | |
7 | 4882 else |
714 | 4883 fontname = p; |
7 | 4884 } |
4885 } | |
4886 | |
4887 if (response != GTK_RESPONSE_NONE) | |
4888 gtk_widget_destroy(dialog); | |
4889 | |
4890 return fontname; | |
4891 } | |
4892 | |
4893 /* | |
4894 * Some monospace fonts don't support a bold weight, and fall back | |
4895 * silently to the regular weight. But this is no good since our text | |
4896 * drawing function can emulate bold by overstriking. So let's try | |
4897 * to detect whether bold weight is actually available and emulate it | |
4898 * otherwise. | |
4899 * | |
4900 * Note that we don't need to check for italic style since Xft can | |
4901 * emulate italic on its own, provided you have a proper fontconfig | |
4902 * setup. We wouldn't be able to emulate it in Vim anyway. | |
4903 */ | |
4904 static void | |
4905 get_styled_font_variants(void) | |
4906 { | |
4907 PangoFontDescription *bold_font_desc; | |
4908 PangoFont *plain_font; | |
4909 PangoFont *bold_font; | |
4910 | |
4911 gui.font_can_bold = FALSE; | |
4912 | |
4913 plain_font = pango_context_load_font(gui.text_context, gui.norm_font); | |
4914 | |
4915 if (plain_font == NULL) | |
4916 return; | |
4917 | |
4918 bold_font_desc = pango_font_description_copy_static(gui.norm_font); | |
4919 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD); | |
4920 | |
4921 bold_font = pango_context_load_font(gui.text_context, bold_font_desc); | |
4922 /* | |
4923 * The comparison relies on the unique handle nature of a PangoFont*, | |
4924 * i.e. it's assumed that a different PangoFont* won't refer to the | |
4925 * same font. Seems to work, and failing here isn't critical anyway. | |
4926 */ | |
4927 if (bold_font != NULL) | |
4928 { | |
4929 gui.font_can_bold = (bold_font != plain_font); | |
4930 g_object_unref(bold_font); | |
4931 } | |
4932 | |
4933 pango_font_description_free(bold_font_desc); | |
4934 g_object_unref(plain_font); | |
4935 } | |
4936 | |
4937 static PangoEngineShape *default_shape_engine = NULL; | |
4938 | |
4939 /* | |
4940 * Create a map from ASCII characters in the range [32,126] to glyphs | |
4941 * of the current font. This is used by gui_gtk2_draw_string() to skip | |
4942 * the itemize and shaping process for the most common case. | |
4943 */ | |
4944 static void | |
4945 ascii_glyph_table_init(void) | |
4946 { | |
9879
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4947 char_u ascii_chars[2 * 128]; |
7 | 4948 PangoAttrList *attr_list; |
4949 GList *item_list; | |
4950 int i; | |
4951 | |
4952 if (gui.ascii_glyphs != NULL) | |
4953 pango_glyph_string_free(gui.ascii_glyphs); | |
4954 if (gui.ascii_font != NULL) | |
4955 g_object_unref(gui.ascii_font); | |
4956 | |
4957 gui.ascii_glyphs = NULL; | |
4958 gui.ascii_font = NULL; | |
4959 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4960 // For safety, fill in question marks for the control characters. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4961 // Put a space between characters to avoid shaping. |
9879
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4962 for (i = 0; i < 128; ++i) |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4963 { |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4964 if (i >= 32 && i < 127) |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4965 ascii_chars[2 * i] = i; |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4966 else |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4967 ascii_chars[2 * i] = '?'; |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4968 ascii_chars[2 * i + 1] = ' '; |
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4969 } |
7 | 4970 |
4971 attr_list = pango_attr_list_new(); | |
4972 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars, | |
4973 0, sizeof(ascii_chars), attr_list, NULL); | |
4974 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4975 if (item_list != NULL && item_list->next == NULL) // play safe |
7 | 4976 { |
4977 PangoItem *item; | |
4978 int width; | |
4979 | |
4980 item = (PangoItem *)item_list->data; | |
4981 width = gui.char_width * PANGO_SCALE; | |
4982 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4983 // Remember the shape engine used for ASCII. |
7 | 4984 default_shape_engine = item->analysis.shape_engine; |
4985 | |
4986 gui.ascii_font = item->analysis.font; | |
4987 g_object_ref(gui.ascii_font); | |
4988 | |
4989 gui.ascii_glyphs = pango_glyph_string_new(); | |
4990 | |
4991 pango_shape((const char *)ascii_chars, sizeof(ascii_chars), | |
4992 &item->analysis, gui.ascii_glyphs); | |
4993 | |
4994 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars)); | |
4995 | |
4996 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i) | |
4997 { | |
4998 PangoGlyphGeometry *geom; | |
4999 | |
5000 geom = &gui.ascii_glyphs->glyphs[i].geometry; | |
5001 geom->x_offset += MAX(0, width - geom->width) / 2; | |
5002 geom->width = width; | |
5003 } | |
5004 } | |
5005 | |
22192
9b5a90ad76c6
patch 8.2.1645: GTK3: icons become broken images when resized
Bram Moolenaar <Bram@vim.org>
parents:
21570
diff
changeset
|
5006 // TODO: is this type cast OK? |
9b5a90ad76c6
patch 8.2.1645: GTK3: icons become broken images when resized
Bram Moolenaar <Bram@vim.org>
parents:
21570
diff
changeset
|
5007 g_list_foreach(item_list, (GFunc)(void *)&pango_item_free, NULL); |
7 | 5008 g_list_free(item_list); |
5009 pango_attr_list_unref(attr_list); | |
5010 } | |
5011 | |
5012 /* | |
5013 * Initialize Vim to use the font or fontset with the given name. | |
5014 * Return FAIL if the font could not be loaded, OK otherwise. | |
5015 */ | |
5016 int | |
1884 | 5017 gui_mch_init_font(char_u *font_name, int fontset UNUSED) |
7 | 5018 { |
5019 PangoFontDescription *font_desc; | |
5020 PangoLayout *layout; | |
5021 int width; | |
5022 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5023 // If font_name is NULL, this means to use the default, which should |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5024 // be present on all proper Pango/fontconfig installations. |
7 | 5025 if (font_name == NULL) |
5026 font_name = (char_u *)DEFAULT_FONT; | |
5027 | |
5028 font_desc = gui_mch_get_font(font_name, FALSE); | |
5029 | |
5030 if (font_desc == NULL) | |
5031 return FAIL; | |
5032 | |
5033 gui_mch_free_font(gui.norm_font); | |
5034 gui.norm_font = font_desc; | |
5035 | |
5036 pango_context_set_font_description(gui.text_context, font_desc); | |
5037 | |
5038 layout = pango_layout_new(gui.text_context); | |
5039 pango_layout_set_text(layout, "MW", 2); | |
5040 pango_layout_get_size(layout, &width, NULL); | |
5041 /* | |
5042 * Set char_width to half the width obtained from pango_layout_get_size() | |
5043 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads | |
5044 * Pango to use the same width for both non-CJK characters (e.g. Latin | |
5045 * letters and numbers) and CJK characters. This results in 's p a c e d | |
5046 * o u t' rendering when a CJK 'fixed width' font is used. To work around | |
5047 * that, divide the width returned by Pango by 2 if cjk_width is equal to | |
5048 * width for CJK fonts. | |
5049 * | |
5050 * For related bugs, see: | |
5051 * http://bugzilla.gnome.org/show_bug.cgi?id=106618 | |
5052 * http://bugzilla.gnome.org/show_bug.cgi?id=106624 | |
5053 * | |
5054 * With this, for all four of the following cases, Vim works fine: | |
5055 * guifont=CJK_fixed_width_font | |
5056 * guifont=Non_CJK_fixed_font | |
5057 * guifont=Non_CJK_fixed_font,CJK_Fixed_font | |
5058 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font | |
5059 */ | |
5060 if (is_cjk_font(gui.norm_font)) | |
5061 { | |
5062 int cjk_width; | |
5063 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5064 // Measure the text extent of U+4E00 and U+4E8C |
7 | 5065 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1); |
5066 pango_layout_get_size(layout, &cjk_width, NULL); | |
5067 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5068 if (width == cjk_width) // Xft not patched |
7 | 5069 width /= 2; |
5070 } | |
5071 g_object_unref(layout); | |
5072 | |
5073 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE; | |
5074 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5075 // A zero width may cause a crash. Happens for semi-invalid fontsets. |
7 | 5076 if (gui.char_width <= 0) |
5077 gui.char_width = 8; | |
5078 | |
445 | 5079 gui_mch_adjust_charheight(); |
7 | 5080 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5081 // Set the fontname, which will be used for information purposes |
7 | 5082 hl_set_font_name(font_name); |
5083 | |
5084 get_styled_font_variants(); | |
5085 ascii_glyph_table_init(); | |
5086 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5087 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. |
7 | 5088 if (gui.wide_font != NULL |
5089 && pango_font_description_equal(gui.norm_font, gui.wide_font)) | |
5090 { | |
5091 pango_font_description_free(gui.wide_font); | |
5092 gui.wide_font = NULL; | |
5093 } | |
5094 | |
1986 | 5095 if (gui_mch_maximized()) |
5096 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5097 // Update lines and columns in accordance with the new font, keep the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5098 // window maximized. |
3014 | 5099 gui_mch_newfont(); |
1986 | 5100 } |
5101 else | |
5102 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5103 // Preserve the logical dimensions of the screen. |
1986 | 5104 update_window_manager_hints(0, 0); |
5105 } | |
7 | 5106 |
5107 return OK; | |
5108 } | |
5109 | |
5110 /* | |
5111 * Get a reference to the font "name". | |
5112 * Return zero for failure. | |
5113 */ | |
5114 GuiFont | |
5115 gui_mch_get_font(char_u *name, int report_error) | |
5116 { | |
5117 PangoFontDescription *font; | |
5118 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5119 // can't do this when GUI is not running |
7 | 5120 if (!gui.in_use || name == NULL) |
5121 return NULL; | |
5122 | |
5123 if (output_conv.vc_type != CONV_NONE) | |
5124 { | |
5125 char_u *buf; | |
5126 | |
5127 buf = string_convert(&output_conv, name, NULL); | |
5128 if (buf != NULL) | |
5129 { | |
5130 font = pango_font_description_from_string((const char *)buf); | |
5131 vim_free(buf); | |
5132 } | |
5133 else | |
5134 font = NULL; | |
5135 } | |
5136 else | |
5137 font = pango_font_description_from_string((const char *)name); | |
5138 | |
5139 if (font != NULL) | |
5140 { | |
5141 PangoFont *real_font; | |
5142 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5143 // pango_context_load_font() bails out if no font size is set |
7 | 5144 if (pango_font_description_get_size(font) <= 0) |
5145 pango_font_description_set_size(font, 10 * PANGO_SCALE); | |
5146 | |
5147 real_font = pango_context_load_font(gui.text_context, font); | |
5148 | |
5149 if (real_font == NULL) | |
5150 { | |
5151 pango_font_description_free(font); | |
5152 font = NULL; | |
5153 } | |
5154 else | |
5155 g_object_unref(real_font); | |
5156 } | |
5157 | |
5158 if (font == NULL) | |
5159 { | |
5160 if (report_error) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15134
diff
changeset
|
5161 semsg(_((char *)e_font), name); |
7 | 5162 return NULL; |
5163 } | |
5164 | |
5165 return font; | |
5166 } | |
5167 | |
39 | 5168 #if defined(FEAT_EVAL) || defined(PROTO) |
38 | 5169 /* |
5170 * Return the name of font "font" in allocated memory. | |
5171 */ | |
5172 char_u * | |
1884 | 5173 gui_mch_get_fontname(GuiFont font, char_u *name UNUSED) |
38 | 5174 { |
5175 if (font != NOFONT) | |
5176 { | |
944 | 5177 char *pangoname = pango_font_description_to_string(font); |
5178 | |
5179 if (pangoname != NULL) | |
38 | 5180 { |
944 | 5181 char_u *s = vim_strsave((char_u *)pangoname); |
5182 | |
5183 g_free(pangoname); | |
38 | 5184 return s; |
5185 } | |
5186 } | |
5187 return NULL; | |
5188 } | |
39 | 5189 #endif |
38 | 5190 |
7 | 5191 /* |
5192 * If a font is not going to be used, free its structure. | |
5193 */ | |
5194 void | |
5195 gui_mch_free_font(GuiFont font) | |
5196 { | |
5197 if (font != NOFONT) | |
5198 pango_font_description_free(font); | |
5199 } | |
5200 | |
5201 /* | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5202 * 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
|
5203 * |
7 | 5204 * Return INVALCOLOR for error. |
5205 */ | |
5206 guicolor_T | |
5207 gui_mch_get_color(char_u *name) | |
5208 { | |
13674
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5209 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
|
5210 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5211 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
|
5212 return color; |
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5213 |
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5214 if (name != NULL) |
1feeefd8cddb
patch 8.0.1709: some non-C89 code may slip through
Christian Brabandt <cb@256bit.org>
parents:
13503
diff
changeset
|
5215 color = gui_get_color_cmn(name); |
7 | 5216 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5217 #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
|
5218 return color; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5219 #else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5220 if (color == INVALCOLOR) |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5221 return INVALCOLOR; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5222 |
11745
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5223 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
|
5224 (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
|
5225 (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
|
5226 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
|
5227 #endif |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5228 } |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5229 |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5230 /* |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5231 * 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
|
5232 * 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
|
5233 */ |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5234 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
|
5235 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
|
5236 { |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5237 #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
|
5238 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
|
5239 #else |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5240 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
|
5241 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
|
5242 |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
5243 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
|
5244 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
|
5245 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
|
5246 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5247 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
|
5248 &gcolor, FALSE, TRUE); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5249 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5250 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
|
5251 #endif |
7 | 5252 } |
5253 | |
5254 /* | |
5255 * Set the current text foreground color. | |
5256 */ | |
5257 void | |
5258 gui_mch_set_fg_color(guicolor_T color) | |
5259 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5260 #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
|
5261 *gui.fgcolor = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5262 #else |
7 | 5263 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
|
5264 #endif |
7 | 5265 } |
5266 | |
5267 /* | |
5268 * Set the current text background color. | |
5269 */ | |
5270 void | |
5271 gui_mch_set_bg_color(guicolor_T color) | |
5272 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5273 #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
|
5274 *gui.bgcolor = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5275 #else |
7 | 5276 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
|
5277 #endif |
7 | 5278 } |
5279 | |
207 | 5280 /* |
5281 * Set the current text special color. | |
5282 */ | |
5283 void | |
5284 gui_mch_set_sp_color(guicolor_T color) | |
5285 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5286 #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
|
5287 *gui.spcolor = color_to_rgba(color); |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5288 #else |
207 | 5289 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
|
5290 #endif |
207 | 5291 } |
5292 | |
7 | 5293 /* |
5294 * Function-like convenience macro for the sake of efficiency. | |
5295 */ | |
5296 #define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \ | |
5297 G_STMT_START{ \ | |
5298 PangoAttribute *tmp_attr_; \ | |
5299 tmp_attr_ = (Attribute); \ | |
5300 tmp_attr_->start_index = (Start); \ | |
5301 tmp_attr_->end_index = (End); \ | |
5302 pango_attr_list_insert((AttrList), tmp_attr_); \ | |
5303 }G_STMT_END | |
5304 | |
5305 static void | |
5306 apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list) | |
5307 { | |
5308 char_u *start = NULL; | |
5309 char_u *p; | |
5310 int uc; | |
5311 | |
5312 for (p = s; p < s + len; p += utf_byte2len(*p)) | |
5313 { | |
5314 uc = utf_ptr2char(p); | |
5315 | |
5316 if (start == NULL) | |
5317 { | |
5318 if (uc >= 0x80 && utf_char2cells(uc) == 2) | |
5319 start = p; | |
5320 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5321 else if (uc < 0x80 // optimization shortcut |
7 | 5322 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc))) |
5323 { | |
5324 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), | |
5325 attr_list, start - s, p - s); | |
5326 start = NULL; | |
5327 } | |
5328 } | |
5329 | |
5330 if (start != NULL) | |
5331 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), | |
5332 attr_list, start - s, len); | |
5333 } | |
5334 | |
5335 static int | |
5336 count_cluster_cells(char_u *s, PangoItem *item, | |
5337 PangoGlyphString* glyphs, int i, | |
5338 int *cluster_width, | |
5339 int *last_glyph_rbearing) | |
5340 { | |
5341 char_u *p; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5342 int next; // glyph start index of next cluster |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5343 int start, end; // string segment of current cluster |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5344 int width; // real cluster width in Pango units |
7 | 5345 int uc; |
5346 int cellcount = 0; | |
5347 | |
5348 width = glyphs->glyphs[i].geometry.width; | |
5349 | |
5350 for (next = i + 1; next < glyphs->num_glyphs; ++next) | |
5351 { | |
5352 if (glyphs->glyphs[next].attr.is_cluster_start) | |
5353 break; | |
5354 else if (glyphs->glyphs[next].geometry.width > width) | |
5355 width = glyphs->glyphs[next].geometry.width; | |
5356 } | |
5357 | |
5358 start = item->offset + glyphs->log_clusters[i]; | |
5359 end = item->offset + ((next < glyphs->num_glyphs) ? | |
5360 glyphs->log_clusters[next] : item->length); | |
5361 | |
5362 for (p = s + start; p < s + end; p += utf_byte2len(*p)) | |
5363 { | |
5364 uc = utf_ptr2char(p); | |
5365 if (uc < 0x80) | |
5366 ++cellcount; | |
5367 else if (!utf_iscomposing(uc)) | |
5368 cellcount += utf_char2cells(uc); | |
5369 } | |
5370 | |
5371 if (last_glyph_rbearing != NULL | |
5372 && cellcount > 0 && next == glyphs->num_glyphs) | |
5373 { | |
5374 PangoRectangle ink_rect; | |
5375 /* | |
5376 * If a certain combining mark had to be taken from a non-monospace | |
5377 * font, we have to compensate manually by adapting x_offset according | |
5378 * to the ink extents of the previous glyph. | |
5379 */ | |
5380 pango_font_get_glyph_extents(item->analysis.font, | |
5381 glyphs->glyphs[i].glyph, | |
5382 &ink_rect, NULL); | |
5383 | |
5384 if (PANGO_RBEARING(ink_rect) > 0) | |
5385 *last_glyph_rbearing = PANGO_RBEARING(ink_rect); | |
5386 } | |
5387 | |
5388 if (cellcount > 0) | |
5389 *cluster_width = width; | |
5390 | |
5391 return cellcount; | |
5392 } | |
5393 | |
5394 /* | |
5395 * If there are only combining characters in the cluster, we cannot just | |
5396 * change the width of the previous glyph since there is none. Therefore | |
5397 * some guesswork is needed. | |
5398 * | |
5399 * If ink_rect.x is negative Pango apparently has taken care of the composing | |
5400 * by itself. Actually setting x_offset = 0 should be sufficient then, but due | |
5401 * 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
|
5402 * x_offset to avoid ugliness. |
7 | 5403 * |
5404 * If ink_rect.x is not negative, force overstriking by pointing x_offset to | |
5405 * the position of the previous glyph. Apparently this happens only with old | |
5406 * X fonts which don't provide the special combining information needed by | |
5407 * Pango. | |
5408 */ | |
5409 static void | |
5410 setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph, | |
5411 int last_cellcount, int last_cluster_width, | |
5412 int last_glyph_rbearing) | |
5413 { | |
5414 PangoRectangle ink_rect; | |
5415 PangoRectangle logical_rect; | |
5416 int width; | |
5417 | |
5418 width = last_cellcount * gui.char_width * PANGO_SCALE; | |
5419 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2; | |
5420 glyph->geometry.width = 0; | |
5421 | |
5422 pango_font_get_glyph_extents(item->analysis.font, | |
5423 glyph->glyph, | |
5424 &ink_rect, &logical_rect); | |
5425 if (ink_rect.x < 0) | |
5426 { | |
5427 glyph->geometry.x_offset += last_glyph_rbearing; | |
5428 glyph->geometry.y_offset = logical_rect.height | |
5429 - (gui.char_height - p_linespace) * PANGO_SCALE; | |
5430 } | |
2507
2070b63605a7
Fix: with newer GTK versions accented characters were drawn too much to the
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
5431 else |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5432 // If the accent width is smaller than the cluster width, position it |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5433 // in 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
|
5434 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2; |
7 | 5435 } |
5436 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5437 #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
|
5438 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5439 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
|
5440 PangoFont *font, PangoGlyphString *glyphs, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5441 cairo_t *cr) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5442 #else |
7 | 5443 static void |
5444 draw_glyph_string(int row, int col, int num_cells, int flags, | |
5445 PangoFont *font, PangoGlyphString *glyphs) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5446 #endif |
7 | 5447 { |
5448 if (!(flags & DRAW_TRANSP)) | |
5449 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5450 #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
|
5451 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5452 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
|
5453 gui.bgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5454 cairo_rectangle(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5455 FILL_X(col), FILL_Y(row), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5456 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
|
5457 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5458 #else |
7 | 5459 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
5460 | |
5461 gdk_draw_rectangle(gui.drawarea->window, | |
5462 gui.text_gc, | |
5463 TRUE, | |
5464 FILL_X(col), | |
5465 FILL_Y(row), | |
5466 num_cells * gui.char_width, | |
5467 gui.char_height); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5468 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5469 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5470 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5471 #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
|
5472 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5473 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
|
5474 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5475 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
|
5476 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
|
5477 #else |
7 | 5478 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
5479 | |
5480 gdk_draw_glyphs(gui.drawarea->window, | |
5481 gui.text_gc, | |
5482 font, | |
5483 TEXT_X(col), | |
5484 TEXT_Y(row), | |
5485 glyphs); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5486 #endif |
7 | 5487 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5488 // redraw the contents with an offset of 1 to emulate bold |
7 | 5489 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
|
5490 #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
|
5491 { |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5492 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5493 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
|
5494 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5495 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
|
5496 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
|
5497 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5498 #else |
7 | 5499 gdk_draw_glyphs(gui.drawarea->window, |
5500 gui.text_gc, | |
5501 font, | |
5502 TEXT_X(col) + 1, | |
5503 TEXT_Y(row), | |
5504 glyphs); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5505 #endif |
7 | 5506 } |
5507 | |
207 | 5508 /* |
5509 * Draw underline and undercurl at the bottom of the character cell. | |
5510 */ | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5511 #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
|
5512 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5513 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
|
5514 #else |
207 | 5515 static void |
5516 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
|
5517 #endif |
207 | 5518 { |
5519 int i; | |
5520 int offset; | |
1884 | 5521 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 }; |
207 | 5522 int y = FILL_Y(row + 1) - 1; |
5523 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5524 // Undercurl: draw curl at the bottom of the character cell. |
207 | 5525 if (flags & DRAW_UNDERC) |
5526 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5527 #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
|
5528 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
|
5529 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
|
5530 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
5531 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
|
5532 gui.spcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5533 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
|
5534 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5535 offset = val[i % 8]; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5536 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
|
5537 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5538 cairo_stroke(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5539 #else |
207 | 5540 gdk_gc_set_foreground(gui.text_gc, gui.spcolor); |
5541 for (i = FILL_X(col); i < FILL_X(col + cells); ++i) | |
5542 { | |
5543 offset = val[i % 8]; | |
5544 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset); | |
5545 } | |
5546 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
|
5547 #endif |
207 | 5548 } |
5549 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5550 // Draw a strikethrough line |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5551 if (flags & DRAW_STRIKE) |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5552 { |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5553 #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
|
5554 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
|
5555 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
|
5556 cairo_set_source_rgba(cr, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5557 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
|
5558 gui.spcolor->alpha); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5559 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
|
5560 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
|
5561 cairo_stroke(cr); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5562 #else |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5563 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
|
5564 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
|
5565 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
|
5566 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
|
5567 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
|
5568 #endif |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5569 } |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5570 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5571 // Underline: draw a line at the bottom of the character cell. |
207 | 5572 if (flags & DRAW_UNDERL) |
5573 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5574 // When p_linespace is 0, overwrite the bottom row of pixels. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5575 // Otherwise put the line just below the character. |
207 | 5576 if (p_linespace > 1) |
5577 y -= p_linespace - 1; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5578 #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
|
5579 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
|
5580 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
|
5581 cairo_set_source_rgba(cr, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5582 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
|
5583 gui.fgcolor->alpha); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12250
diff
changeset
|
5584 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
|
5585 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
|
5586 cairo_stroke(cr); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5587 #else |
207 | 5588 gdk_draw_line(gui.drawarea->window, gui.text_gc, |
5589 FILL_X(col), y, | |
5590 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
|
5591 #endif |
207 | 5592 } |
5593 } | |
5594 | |
7 | 5595 int |
5596 gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags) | |
5597 { | |
25982
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5598 char_u *conv_buf = NULL; // result of UTF-8 conversion |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5599 char_u *new_conv_buf; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5600 int convlen; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5601 char_u *sp, *bp; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5602 int plen; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5603 int len_sum; // return value needs to add up since we are |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5604 // printing substrings |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5605 int byte_sum; // byte position in string |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5606 char_u *cs; // current *s pointer |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5607 int needs_pango; // look ahead, 0=ascii 1=unicode/ligatures |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5608 int should_need_pango; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5609 int slen; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5610 int is_ligature; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5611 int next_is_ligature; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5612 int is_utf8; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5613 char_u backup_ch; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5614 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5615 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL) |
7 | 5616 return len; |
5617 | |
5618 if (output_conv.vc_type != CONV_NONE) | |
5619 { | |
5620 /* | |
5621 * Convert characters from 'encoding' to 'termencoding', which is set | |
5622 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c | |
5623 * prohibits changing this to something else than UTF-8 if the GUI is | |
5624 * in use. | |
5625 */ | |
5626 convlen = len; | |
5627 conv_buf = string_convert(&output_conv, s, &convlen); | |
5628 g_return_val_if_fail(conv_buf != NULL, len); | |
5629 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5630 // Correct for differences in char width: some chars are |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5631 // double-wide in 'encoding' but single-wide in utf-8. Add a space to |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5632 // compensate for that. |
7 | 5633 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; ) |
5634 { | |
474 | 5635 plen = utf_ptr2len(bp); |
7 | 5636 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1) |
5637 { | |
5638 new_conv_buf = alloc(convlen + 2); | |
5639 if (new_conv_buf == NULL) | |
5640 return len; | |
5641 plen += bp - conv_buf; | |
5642 mch_memmove(new_conv_buf, conv_buf, plen); | |
5643 new_conv_buf[plen] = ' '; | |
5644 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen, | |
5645 convlen - plen + 1); | |
5646 vim_free(conv_buf); | |
5647 conv_buf = new_conv_buf; | |
5648 ++convlen; | |
5649 bp = conv_buf + plen; | |
5650 plen = 1; | |
5651 } | |
474 | 5652 sp += (*mb_ptr2len)(sp); |
7 | 5653 bp += plen; |
5654 } | |
5655 s = conv_buf; | |
5656 len = convlen; | |
5657 } | |
5658 | |
5659 /* | |
25982
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5660 * Ligature support and complex utf-8 char optimization: |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5661 * String received to output to screen can print using pre-cached glyphs |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5662 * (fast) or Pango (slow). Ligatures and multibype utf-8 must use Pango. |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5663 * Since we receive mixed content string, split it into logical segments |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5664 * that are guaranteed to go trough glyphs as much as possible. Since |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5665 * single ligature char prints as ascii, print it that way. |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5666 */ |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5667 len_sum = 0; // return value needs to add up since we are printing |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5668 // substrings |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5669 byte_sum = 0; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5670 cs = s; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5671 // look ahead, 0=ascii 1=unicode/ligatures |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5672 needs_pango = ((*cs & 0x80) || gui.ligatures_map[*cs]); |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5673 |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5674 // split string into ascii and non-ascii (ligatures + utf-8) substrings, |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5675 // print glyphs or use Pango |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5676 while (cs < s + len) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5677 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5678 slen = 0; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5679 while (slen < (len - byte_sum)) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5680 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5681 is_ligature = gui.ligatures_map[*(cs + slen)]; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5682 // look ahead, single ligature char between ascii is ascii |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5683 if (is_ligature && !needs_pango) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5684 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5685 if ((slen + 1) < (len - byte_sum)) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5686 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5687 next_is_ligature = gui.ligatures_map[*(cs + slen + 1)]; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5688 if (!next_is_ligature) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5689 is_ligature = 0; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5690 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5691 else |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5692 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5693 is_ligature = 0; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5694 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5695 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5696 is_utf8 = *(cs + slen) & 0x80; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5697 should_need_pango = (is_ligature || is_utf8); |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5698 if (needs_pango != should_need_pango) // mode switch |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5699 break; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5700 if (needs_pango) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5701 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5702 if (is_ligature) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5703 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5704 slen++; // ligature char by char |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5705 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5706 else |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5707 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5708 if ((*(cs + slen) & 0xC0) == 0x80) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5709 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5710 // a continuation, find next 0xC0 != 0x80 but don't |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5711 // include it |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5712 while ((slen < (len - byte_sum)) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5713 && ((*(cs + slen) & 0xC0) == 0x80)) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5714 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5715 slen++; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5716 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5717 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5718 else if ((*(cs + slen) & 0xE0) == 0xC0) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5719 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5720 // + one byte utf8 |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5721 slen++; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5722 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5723 else if ((*(cs + slen) & 0xF0) == 0xE0) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5724 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5725 // + two bytes utf8 |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5726 slen += 2; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5727 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5728 else if ((*(cs + slen) & 0xF8) == 0xF0) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5729 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5730 // + three bytes utf8 |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5731 slen += 3; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5732 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5733 else |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5734 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5735 // this should not happen, try moving forward, Pango |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5736 // will catch it |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5737 slen++; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5738 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5739 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5740 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5741 else |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5742 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5743 slen++; // ascii |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5744 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5745 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5746 // temporarily zero terminate substring, print, restore char, wrap |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5747 backup_ch = *(cs + slen); |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5748 *(cs + slen) = 0; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5749 len_sum += gui_gtk2_draw_string_ext(row, col + len_sum, |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5750 cs, slen, flags, needs_pango); |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5751 *(cs + slen) = backup_ch; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5752 cs += slen; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5753 byte_sum += slen; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5754 needs_pango = should_need_pango; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5755 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5756 vim_free(conv_buf); |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5757 return len_sum; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5758 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5759 |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5760 int |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5761 gui_gtk2_draw_string_ext( |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5762 int row, |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5763 int col, |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5764 char_u *s, |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5765 int len, |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5766 int flags, |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5767 int force_pango) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5768 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5769 GdkRectangle area; // area for clip mask |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5770 PangoGlyphString *glyphs; // glyphs of current item |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5771 int column_offset = 0; // column offset in cells |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5772 int i; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5773 #if GTK_CHECK_VERSION(3,0,0) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5774 cairo_t *cr; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5775 #endif |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5776 |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5777 /* |
7 | 5778 * Restrict all drawing to the current screen line in order to prevent |
5779 * fuzzy font lookups from messing up the screen. | |
5780 */ | |
5781 area.x = gui.border_offset; | |
5782 area.y = FILL_Y(row); | |
5783 area.width = gui.num_cols * gui.char_width; | |
5784 area.height = gui.char_height; | |
5785 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5786 #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
|
5787 cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5788 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
|
5789 cairo_clip(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5790 #else |
7 | 5791 gdk_gc_set_clip_origin(gui.text_gc, 0, 0); |
5792 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
|
5793 #endif |
7 | 5794 |
5795 glyphs = pango_glyph_string_new(); | |
5796 | |
5797 /* | |
5798 * Optimization hack: If possible, skip the itemize and shaping process | |
5799 * for pure ASCII strings. This optimization is particularly effective | |
5800 * because Vim draws space characters to clear parts of the screen. | |
5801 */ | |
5802 if (!(flags & DRAW_ITALIC) | |
5803 && !((flags & DRAW_BOLD) && gui.font_can_bold) | |
25982
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5804 && gui.ascii_glyphs != NULL |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5805 && !force_pango) |
7 | 5806 { |
5807 char_u *p; | |
5808 | |
5809 for (p = s; p < s + len; ++p) | |
5810 if (*p & 0x80) | |
5811 goto not_ascii; | |
5812 | |
5813 pango_glyph_string_set_size(glyphs, len); | |
5814 | |
5815 for (i = 0; i < len; ++i) | |
5816 { | |
9879
5cd29e15f2f7
commit https://github.com/vim/vim/commit/16350cb97914bc86320185a9910b23c2b297d273
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
5817 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]]; |
7 | 5818 glyphs->log_clusters[i] = i; |
5819 } | |
5820 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5821 #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
|
5822 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
|
5823 #else |
7 | 5824 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
|
5825 #endif |
7 | 5826 |
5827 column_offset = len; | |
5828 } | |
5829 else | |
5830 not_ascii: | |
5831 { | |
5832 PangoAttrList *attr_list; | |
5833 GList *item_list; | |
5834 int cluster_width; | |
5835 int last_glyph_rbearing; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5836 int cells = 0; // cells occupied by current cluster |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5837 |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5838 // Safety check: pango crashes when invoked with invalid utf-8 |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5839 // characters. |
26 | 5840 if (!utf_valid_string(s, s + len)) |
5841 { | |
5842 column_offset = len; | |
5843 goto skipitall; | |
5844 } | |
5845 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5846 // original width of the current cluster |
7 | 5847 cluster_width = PANGO_SCALE * gui.char_width; |
5848 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5849 // right bearing of the last non-composing glyph |
7 | 5850 last_glyph_rbearing = PANGO_SCALE * gui.char_width; |
5851 | |
5852 attr_list = pango_attr_list_new(); | |
5853 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5854 // If 'guifontwide' is set then use that for double-width characters. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5855 // Otherwise just go with 'guifont' and let Pango do its thing. |
7 | 5856 if (gui.wide_font != NULL) |
5857 apply_wide_font_attr(s, len, attr_list); | |
5858 | |
5859 if ((flags & DRAW_BOLD) && gui.font_can_bold) | |
5860 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD), | |
5861 attr_list, 0, len); | |
5862 if (flags & DRAW_ITALIC) | |
5863 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC), | |
5864 attr_list, 0, len); | |
5865 /* | |
5866 * Break the text into segments with consistent directional level | |
5867 * and shaping engine. Pure Latin text needs only a single segment, | |
5868 * so there's no need to worry about the loop's efficiency. Better | |
5869 * try to optimize elsewhere, e.g. reducing exposes and stuff :) | |
5870 */ | |
5871 item_list = pango_itemize(gui.text_context, | |
5872 (const char *)s, 0, len, attr_list, NULL); | |
5873 | |
5874 while (item_list != NULL) | |
5875 { | |
5876 PangoItem *item; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5877 int item_cells = 0; // item length in cells |
7 | 5878 |
5879 item = (PangoItem *)item_list->data; | |
5880 item_list = g_list_delete_link(item_list, item_list); | |
5881 /* | |
5882 * Increment the bidirectional embedding level by 1 if it is not | |
5883 * even. An odd number means the output will be RTL, but we don't | |
5884 * want that since Vim handles right-to-left text on its own. It | |
5885 * would probably be sufficient to just set level = 0, but you can | |
5886 * never know :) | |
5887 * | |
5888 * Unfortunately we can't take advantage of Pango's ability to | |
5889 * render both LTR and RTL at the same time. In order to support | |
5890 * that, Vim's main screen engine would have to make use of Pango | |
5891 * functionality. | |
5892 */ | |
5893 item->analysis.level = (item->analysis.level + 1) & (~1U); | |
5894 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5895 // HACK: Overrule the shape engine, we don't want shaping to be |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5896 // done, because drawing the cursor would change the display. |
7 | 5897 item->analysis.shape_engine = default_shape_engine; |
5898 | |
7098
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
5899 #ifdef HAVE_PANGO_SHAPE_FULL |
7086
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
5900 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
|
5901 (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
|
5902 #else |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
5903 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
|
5904 &item->analysis, glyphs); |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
5905 #endif |
7 | 5906 /* |
5907 * Fixed-width hack: iterate over the array and assign a fixed | |
5908 * width to each glyph, thus overriding the choice made by the | |
5909 * shaping engine. We use utf_char2cells() to determine the | |
5910 * number of cells needed. | |
5911 * | |
5912 * Also perform all kind of dark magic to get composing | |
5913 * characters right (and pretty too of course). | |
5914 */ | |
5915 for (i = 0; i < glyphs->num_glyphs; ++i) | |
5916 { | |
5917 PangoGlyphInfo *glyph; | |
5918 | |
5919 glyph = &glyphs->glyphs[i]; | |
5920 | |
5921 if (glyph->attr.is_cluster_start) | |
5922 { | |
5923 int cellcount; | |
5924 | |
5925 cellcount = count_cluster_cells( | |
5926 s, item, glyphs, i, &cluster_width, | |
5927 (item_list != NULL) ? &last_glyph_rbearing : NULL); | |
5928 | |
5929 if (cellcount > 0) | |
5930 { | |
5931 int width; | |
5932 | |
5933 width = cellcount * gui.char_width * PANGO_SCALE; | |
5934 glyph->geometry.x_offset += | |
5935 MAX(0, width - cluster_width) / 2; | |
5936 glyph->geometry.width = width; | |
5937 } | |
5938 else | |
5939 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5940 // If there are only combining characters in the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5941 // cluster, we cannot just change the width of the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5942 // previous glyph since there is none. Therefore |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5943 // some guesswork is needed. |
7 | 5944 setup_zero_width_cluster(item, glyph, cells, |
5945 cluster_width, | |
5946 last_glyph_rbearing); | |
5947 } | |
5948 | |
5949 item_cells += cellcount; | |
5950 cells = cellcount; | |
5951 } | |
5952 else if (i > 0) | |
5953 { | |
5954 int width; | |
5955 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5956 // There is a previous glyph, so we deal with combining |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5957 // characters the canonical way. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5958 // In some circumstances Pango uses a positive x_offset, |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5959 // then use the width of the previous glyph for this one |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5960 // and set the previous width to zero. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5961 // Otherwise we get a negative x_offset, Pango has already |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5962 // positioned the combining char, keep the widths as they |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5963 // are. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5964 // For both adjust the x_offset to position the glyph in |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5965 // 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
|
5966 if (glyph->geometry.x_offset >= 0) |
2517
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5967 { |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5968 glyphs->glyphs[i].geometry.width = |
fe5709686d05
Improve positioning of combining characters in GTK.
Bram Moolenaar <bram@vim.org>
parents:
2507
diff
changeset
|
5969 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
|
5970 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
|
5971 } |
7 | 5972 width = cells * gui.char_width * PANGO_SCALE; |
5973 glyph->geometry.x_offset += | |
5974 MAX(0, width - cluster_width) / 2; | |
5975 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5976 else // i == 0 "cannot happen" |
7 | 5977 { |
5978 glyph->geometry.width = 0; | |
5979 } | |
5980 } | |
5981 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
5982 //// Aaaaand action! ** |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5983 #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
|
5984 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
|
5985 flags, item->analysis.font, glyphs, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5986 cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5987 #else |
7 | 5988 draw_glyph_string(row, col + column_offset, item_cells, |
5989 flags, item->analysis.font, glyphs); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
5990 #endif |
7 | 5991 |
5992 pango_item_free(item); | |
5993 | |
5994 column_offset += item_cells; | |
5995 } | |
5996 | |
5997 pango_attr_list_unref(attr_list); | |
5998 } | |
5999 | |
26 | 6000 skipitall: |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6001 // Draw underline and undercurl. |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6002 #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
|
6003 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
|
6004 #else |
207 | 6005 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
|
6006 #endif |
7 | 6007 |
6008 pango_glyph_string_free(glyphs); | |
6009 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6010 #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
|
6011 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6012 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6013 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
|
6014 &area, FALSE); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6015 #else |
7 | 6016 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
|
6017 #endif |
7 | 6018 |
6019 return column_offset; | |
6020 } | |
6021 | |
6022 /* | |
6023 * Return OK if the key with the termcap name "name" is supported. | |
6024 */ | |
6025 int | |
6026 gui_mch_haskey(char_u *name) | |
6027 { | |
6028 int i; | |
6029 | |
6030 for (i = 0; special_keys[i].key_sym != 0; i++) | |
6031 if (name[0] == special_keys[i].code0 | |
6032 && name[1] == special_keys[i].code1) | |
6033 return OK; | |
6034 return FAIL; | |
6035 } | |
6036 | |
4133 | 6037 #if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO) |
7 | 6038 /* |
6039 * Return the text window-id and display. Only required for X-based GUI's | |
6040 */ | |
6041 int | |
6042 gui_get_x11_windis(Window *win, Display **dis) | |
6043 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6044 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
|
6045 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6046 *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
|
6047 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)); |
7 | 6048 return OK; |
6049 } | |
6050 | |
6051 *dis = NULL; | |
6052 *win = 0; | |
6053 return FAIL; | |
6054 } | |
6055 #endif | |
6056 | |
6057 #if defined(FEAT_CLIENTSERVER) \ | |
6058 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO) | |
6059 | |
6060 Display * | |
6061 gui_mch_get_display(void) | |
6062 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6063 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
|
6064 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
7 | 6065 else |
6066 return NULL; | |
6067 } | |
6068 #endif | |
6069 | |
6070 void | |
6071 gui_mch_beep(void) | |
6072 { | |
6073 GdkDisplay *display; | |
6074 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6075 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
7 | 6076 display = gtk_widget_get_display(gui.mainwin); |
6077 else | |
6078 display = gdk_display_get_default(); | |
6079 | |
6080 if (display != NULL) | |
6081 gdk_display_beep(display); | |
6082 } | |
6083 | |
6084 void | |
6085 gui_mch_flash(int msec) | |
6086 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6087 #if GTK_CHECK_VERSION(3,0,0) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6088 // TODO Replace GdkGC with Cairo |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6089 (void)msec; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6090 #else |
7 | 6091 GdkGCValues values; |
6092 GdkGC *invert_gc; | |
6093 | |
6094 if (gui.drawarea->window == NULL) | |
6095 return; | |
6096 | |
6097 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; | |
6098 values.background.pixel = gui.norm_pixel ^ gui.back_pixel; | |
6099 values.function = GDK_XOR; | |
6100 invert_gc = gdk_gc_new_with_values(gui.drawarea->window, | |
6101 &values, | |
6102 GDK_GC_FOREGROUND | | |
6103 GDK_GC_BACKGROUND | | |
6104 GDK_GC_FUNCTION); | |
6105 gdk_gc_set_exposures(invert_gc, | |
6106 gui.visibility != GDK_VISIBILITY_UNOBSCURED); | |
6107 /* | |
6108 * Do a visual beep by changing back and forth in some undetermined way, | |
6109 * the foreground and background colors. This is due to the fact that | |
6110 * there can't be really any prediction about the effects of XOR on | |
6111 * arbitrary X11 servers. However this seems to be enough for what we | |
6112 * intend it to do. | |
6113 */ | |
6114 gdk_draw_rectangle(gui.drawarea->window, invert_gc, | |
6115 TRUE, | |
6116 0, 0, | |
6117 FILL_X((int)Columns) + gui.border_offset, | |
6118 FILL_Y((int)Rows) + gui.border_offset); | |
6119 | |
6120 gui_mch_flush(); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6121 ui_delay((long)msec, TRUE); // wait so many msec |
7 | 6122 |
6123 gdk_draw_rectangle(gui.drawarea->window, invert_gc, | |
6124 TRUE, | |
6125 0, 0, | |
6126 FILL_X((int)Columns) + gui.border_offset, | |
6127 FILL_Y((int)Rows) + gui.border_offset); | |
6128 | |
6129 gdk_gc_destroy(invert_gc); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6130 #endif |
7 | 6131 } |
6132 | |
6133 /* | |
6134 * Invert a rectangle from row r, column c, for nr rows and nc columns. | |
6135 */ | |
6136 void | |
6137 gui_mch_invert_rectangle(int r, int c, int nr, int nc) | |
6138 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6139 #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
|
6140 const GdkRectangle rect = { |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6141 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
|
6142 }; |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6143 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
|
6144 |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6145 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
|
6146 # 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
|
6147 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
|
6148 # else |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6149 // Give an implementation for older cairo versions if necessary. |
8495
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6150 # endif |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6151 gdk_cairo_rectangle(cr, &rect); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6152 cairo_fill(cr); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6153 |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6154 cairo_destroy(cr); |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6155 |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6156 if (!gui.by_signal) |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
6157 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
|
6158 rect.width, rect.height); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6159 #else |
7 | 6160 GdkGCValues values; |
6161 GdkGC *invert_gc; | |
6162 | |
6163 if (gui.drawarea->window == NULL) | |
6164 return; | |
6165 | |
944 | 6166 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
6167 values.background.pixel = gui.norm_pixel ^ gui.back_pixel; | |
7 | 6168 values.function = GDK_XOR; |
6169 invert_gc = gdk_gc_new_with_values(gui.drawarea->window, | |
6170 &values, | |
6171 GDK_GC_FOREGROUND | | |
6172 GDK_GC_BACKGROUND | | |
6173 GDK_GC_FUNCTION); | |
944 | 6174 gdk_gc_set_exposures(invert_gc, gui.visibility != |
6175 GDK_VISIBILITY_UNOBSCURED); | |
7 | 6176 gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
6177 TRUE, | |
6178 FILL_X(c), FILL_Y(r), | |
6179 (nc) * gui.char_width, (nr) * gui.char_height); | |
6180 gdk_gc_destroy(invert_gc); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6181 #endif |
7 | 6182 } |
6183 | |
6184 /* | |
6185 * Iconify the GUI window. | |
6186 */ | |
6187 void | |
6188 gui_mch_iconify(void) | |
6189 { | |
6190 gtk_window_iconify(GTK_WINDOW(gui.mainwin)); | |
6191 } | |
6192 | |
6193 #if defined(FEAT_EVAL) || defined(PROTO) | |
6194 /* | |
6195 * Bring the Vim window to the foreground. | |
6196 */ | |
6197 void | |
6198 gui_mch_set_foreground(void) | |
6199 { | |
6200 gtk_window_present(GTK_WINDOW(gui.mainwin)); | |
6201 } | |
6202 #endif | |
6203 | |
6204 /* | |
6205 * Draw a cursor without focus. | |
6206 */ | |
6207 void | |
6208 gui_mch_draw_hollow_cursor(guicolor_T color) | |
6209 { | |
6210 int i = 1; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6211 #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
|
6212 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6213 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6214 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6215 if (gtk_widget_get_window(gui.drawarea) == NULL) |
7 | 6216 return; |
6217 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6218 #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
|
6219 cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6220 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6221 |
7 | 6222 gui_mch_set_fg_color(color); |
6223 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6224 #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
|
6225 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6226 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
|
6227 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6228 #else |
7 | 6229 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
|
6230 #endif |
7 | 6231 if (mb_lefthalve(gui.row, gui.col)) |
6232 i = 2; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6233 #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
|
6234 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
|
6235 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
|
6236 cairo_rectangle(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6237 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
|
6238 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
|
6239 cairo_stroke(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6240 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6241 #else |
7 | 6242 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
6243 FALSE, | |
6244 FILL_X(gui.col), FILL_Y(gui.row), | |
6245 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
|
6246 #endif |
7 | 6247 } |
6248 | |
6249 /* | |
6250 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using | |
6251 * color "color". | |
6252 */ | |
6253 void | |
6254 gui_mch_draw_part_cursor(int w, int h, guicolor_T color) | |
6255 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6256 if (gtk_widget_get_window(gui.drawarea) == NULL) |
7 | 6257 return; |
6258 | |
6259 gui_mch_set_fg_color(color); | |
6260 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6261 #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
|
6262 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6263 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6264 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6265 cr = cairo_create(gui.surface); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6266 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6267 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
|
6268 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6269 cairo_rectangle(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6270 # ifdef FEAT_RIGHTLEFT |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6271 // vertical line should be on the right of current point |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6272 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
|
6273 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6274 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
|
6275 w, h); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6276 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6277 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6278 } |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6279 #else // !GTK_CHECK_VERSION(3,0,0) |
7 | 6280 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
6281 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, | |
6282 TRUE, | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6283 # ifdef FEAT_RIGHTLEFT |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6284 // vertical line should be on the right of current point |
7 | 6285 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
|
6286 # endif |
7 | 6287 FILL_X(gui.col), |
6288 FILL_Y(gui.row) + gui.char_height - h, | |
6289 w, h); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6290 #endif // !GTK_CHECK_VERSION(3,0,0) |
7 | 6291 } |
6292 | |
6293 | |
6294 /* | |
6295 * Catch up with any queued X11 events. This may put keyboard input into the | |
6296 * input buffer, call resize call-backs, trigger timers etc. If there is | |
6297 * nothing in the X11 event queue (& no timers pending), then we return | |
6298 * immediately. | |
6299 */ | |
6300 void | |
6301 gui_mch_update(void) | |
6302 { | |
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
|
6303 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
|
6304 g_main_context_iteration(NULL, TRUE); |
7 | 6305 } |
6306 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6307 static timeout_cb_type |
7 | 6308 input_timer_cb(gpointer data) |
6309 { | |
6310 int *timed_out = (int *) data; | |
6311 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6312 // Just inform the caller about the occurrence of it |
7 | 6313 *timed_out = TRUE; |
6314 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6315 return FALSE; // don't happen again |
7 | 6316 } |
6317 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6318 #ifdef FEAT_JOB_CHANNEL |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6319 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
|
6320 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
|
6321 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6322 // Using an event handler for a channel that may be disconnected does |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6323 // not work, it hangs. Instead poll for messages. |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6324 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
|
6325 parse_queued_messages(); |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6326 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6327 return TRUE; // repeat |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6328 } |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6329 #endif |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6330 |
7 | 6331 /* |
6332 * GUI input routine called by gui_wait_for_chars(). Waits for a character | |
6333 * from the keyboard. | |
6334 * wtime == -1 Wait forever. | |
6335 * wtime == 0 This should never happen. | |
6336 * wtime > 0 Wait wtime milliseconds for a character. | |
6337 * Returns OK if a character was found to be available within the given time, | |
6338 * or FAIL otherwise. | |
6339 */ | |
6340 int | |
6341 gui_mch_wait_for_chars(long wtime) | |
6342 { | |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6343 int focus; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6344 guint timer; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6345 static int timed_out; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6346 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
|
6347 #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
|
6348 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
|
6349 #endif |
7 | 6350 |
6351 timed_out = FALSE; | |
6352 | |
15665
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
6353 // 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
|
6354 // 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
|
6355 if (wtime >= 0) |
15730
e5441bee8063
patch 8.1.0872: confusing condition
Bram Moolenaar <Bram@vim.org>
parents:
15665
diff
changeset
|
6356 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
|
6357 input_timer_cb, &timed_out); |
7 | 6358 else |
6359 timer = 0; | |
6360 | |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6361 #ifdef FEAT_JOB_CHANNEL |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6362 // If there is a channel with the keep_open flag we need to poll for input |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6363 // on them. |
12250
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6364 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
|
6365 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
|
6366 #endif |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6367 |
7 | 6368 focus = gui.in_focus; |
6369 | |
6370 do | |
6371 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6372 // Stop or start blinking when focus changes |
7 | 6373 if (gui.in_focus != focus) |
6374 { | |
6375 if (gui.in_focus) | |
6376 gui_mch_start_blink(); | |
6377 else | |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
12802
diff
changeset
|
6378 gui_mch_stop_blink(TRUE); |
7 | 6379 focus = gui.in_focus; |
6380 } | |
6381 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
6382 #ifdef MESSAGE_QUEUE |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6383 # ifdef FEAT_TIMERS |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6384 did_add_timer = FALSE; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6385 # endif |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
6386 parse_queued_messages(); |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6387 # ifdef FEAT_TIMERS |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6388 if (did_add_timer) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6389 // Need to recompute the waiting time. |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6390 goto theend; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6391 # endif |
1624 | 6392 #endif |
6393 | |
7 | 6394 /* |
6395 * Loop in GTK+ processing until a timeout or input occurs. | |
22 | 6396 * Skip this if input is available anyway (can happen in rare |
6397 * situations, sort of race condition). | |
7 | 6398 */ |
22 | 6399 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
|
6400 g_main_context_iteration(NULL, TRUE); |
7 | 6401 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6402 // Got char, return immediately |
7 | 6403 if (input_available()) |
6404 { | |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6405 retval = OK; |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6406 goto theend; |
7 | 6407 } |
6408 } while (wtime < 0 || !timed_out); | |
6409 | |
6410 /* | |
6411 * Flush all eventually pending (drawing) events. | |
6412 */ | |
6413 gui_mch_update(); | |
6414 | |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6415 theend: |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6416 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
|
6417 timeout_remove(timer); |
ac8b2f9c1409
patch 8.0.1005: terminal without job updates slowly in GUI
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
6418 #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
|
6419 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
|
6420 timeout_remove(channel_timer); |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6421 #endif |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6422 |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
6423 return retval; |
7 | 6424 } |
6425 | |
6426 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6427 ///////////////////////////////////////////////////////////////////////////// |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6428 // Output drawing routines. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6429 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6430 |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6431 |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6432 // Flush any output to the screen |
7 | 6433 void |
6434 gui_mch_flush(void) | |
6435 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6436 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
|
6437 #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
|
6438 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
|
6439 #else |
40e19745ad12
patch 8.1.0412: cannot build with GTK 2.4
Christian Brabandt <cb@256bit.org>
parents:
14786
diff
changeset
|
6440 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
|
6441 #endif |
7 | 6442 } |
6443 | |
6444 /* | |
6445 * Clear a rectangular region of the screen from text pos (row1, col1) to | |
6446 * (row2, col2) inclusive. | |
6447 */ | |
6448 void | |
10920
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6449 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
|
6450 { |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6451 |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6452 int col1 = check_col(col1arg); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6453 int col2 = check_col(col2arg); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6454 int row1 = check_row(row1arg); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6455 int row2 = check_row(row2arg); |
687833a3fadc
patch 8.0.0349: redrawing errors with GTK 3
Christian Brabandt <cb@256bit.org>
parents:
10773
diff
changeset
|
6456 |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6457 #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
|
6458 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
|
6459 return; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6460 #else |
7 | 6461 GdkColor color; |
6462 | |
6463 if (gui.drawarea->window == NULL) | |
6464 return; | |
6465 | |
6466 color.pixel = gui.back_pixel; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6467 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6468 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6469 #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
|
6470 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6471 // Add one pixel to the far right column in case a double-stroked |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6472 // bold glyph may sit there. |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6473 const GdkRectangle rect = { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6474 FILL_X(col1), FILL_Y(row1), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6475 (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
|
6476 (row2 - row1 + 1) * gui.char_height |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6477 }; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6478 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
|
6479 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
|
6480 # 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
|
6481 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
|
6482 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6483 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
|
6484 if (pat != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6485 cairo_set_source(cr, pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6486 else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6487 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
|
6488 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6489 gdk_cairo_rectangle(cr, &rect); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6490 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6491 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6492 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6493 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6494 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
|
6495 } |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6496 #else // !GTK_CHECK_VERSION(3,0,0) |
7 | 6497 gdk_gc_set_foreground(gui.text_gc, &color); |
6498 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6499 // Clear one extra pixel at the far right, for when bold characters have |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6500 // spilled over to the window border. |
7 | 6501 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE, |
6502 FILL_X(col1), FILL_Y(row1), | |
6503 (col2 - col1 + 1) * gui.char_width | |
6504 + (col2 == Columns - 1), | |
6505 (row2 - row1 + 1) * gui.char_height); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6506 #endif // !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
|
6507 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6508 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6509 #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
|
6510 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6511 gui_gtk_window_clear(GdkWindow *win) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6512 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6513 const GdkRectangle rect = { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6514 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
|
6515 }; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6516 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
|
6517 # 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
|
6518 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
|
6519 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6520 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
|
6521 if (pat != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6522 cairo_set_source(cr, pat); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6523 else |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6524 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
|
6525 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6526 gdk_cairo_rectangle(cr, &rect); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6527 cairo_fill(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6528 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6529 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6530 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6531 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
|
6532 } |
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
|
6533 #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
|
6534 # 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
|
6535 #endif |
7 | 6536 |
6537 void | |
6538 gui_mch_clear_all(void) | |
6539 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6540 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
|
6541 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
|
6542 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6543 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6544 #if !GTK_CHECK_VERSION(3,0,0) |
7 | 6545 /* |
6546 * Redraw any text revealed by scrolling up/down. | |
6547 */ | |
6548 static void | |
6549 check_copy_area(void) | |
6550 { | |
6551 GdkEvent *event; | |
6552 int expose_count; | |
6553 | |
6554 if (gui.visibility != GDK_VISIBILITY_PARTIAL) | |
6555 return; | |
6556 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6557 // Avoid redrawing the cursor while scrolling or it'll end up where |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6558 // we don't want it to be. I'm not sure if it's correct to call |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6559 // gui_dont_update_cursor() at this point but it works as a quick |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6560 // fix for now. |
9848
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9836
diff
changeset
|
6561 gui_dont_update_cursor(TRUE); |
7 | 6562 |
6563 do | |
6564 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6565 // Wait to check whether the scroll worked or not. |
7 | 6566 event = gdk_event_get_graphics_expose(gui.drawarea->window); |
6567 | |
6568 if (event == NULL) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6569 break; // received NoExpose event |
7 | 6570 |
6571 gui_redraw(event->expose.area.x, event->expose.area.y, | |
6572 event->expose.area.width, event->expose.area.height); | |
6573 | |
6574 expose_count = event->expose.count; | |
6575 gdk_event_free(event); | |
6576 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6577 while (expose_count > 0); // more events follow |
7 | 6578 |
6579 gui_can_update_cursor(); | |
6580 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6581 #endif // !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
|
6582 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6583 #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
|
6584 static void |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6585 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
|
6586 int src_x, int src_y, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6587 int width, int height) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6588 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6589 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
|
6590 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6591 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
|
6592 cairo_clip(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6593 cairo_push_group(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6594 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
|
6595 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6596 cairo_pop_group_to_source(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6597 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6598 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6599 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6600 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6601 #endif |
7 | 6602 |
6603 /* | |
6604 * Delete the given number of lines from the given row, scrolling up any | |
6605 * text further down within the scroll region. | |
6606 */ | |
6607 void | |
6608 gui_mch_delete_lines(int row, int num_lines) | |
6609 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6610 #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
|
6611 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
|
6612 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
|
6613 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
|
6614 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6615 gui_gtk_surface_copy_rect( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6616 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
|
6617 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
|
6618 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
|
6619 gui_clear_block( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6620 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
|
6621 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
|
6622 gui_gtk3_redraw( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6623 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
|
6624 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
|
6625 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6626 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
|
6627 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
|
6628 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
|
6629 #else |
7 | 6630 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6631 return; // Can't see the window |
7 | 6632 |
6633 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); | |
6634 gdk_gc_set_background(gui.text_gc, gui.bgcolor); | |
6635 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6636 // copy one extra pixel, for when bold has spilled over |
7 | 6637 gdk_window_copy_area(gui.drawarea->window, gui.text_gc, |
6638 FILL_X(gui.scroll_region_left), FILL_Y(row), | |
6639 gui.drawarea->window, | |
6640 FILL_X(gui.scroll_region_left), | |
6641 FILL_Y(row + num_lines), | |
6642 gui.char_width * (gui.scroll_region_right | |
6643 - gui.scroll_region_left + 1) + 1, | |
6644 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); | |
6645 | |
6646 gui_clear_block(gui.scroll_region_bot - num_lines + 1, | |
6647 gui.scroll_region_left, | |
6648 gui.scroll_region_bot, gui.scroll_region_right); | |
6649 check_copy_area(); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6650 #endif // !GTK_CHECK_VERSION(3,0,0) |
7 | 6651 } |
6652 | |
6653 /* | |
6654 * Insert the given number of lines before the given row, scrolling down any | |
6655 * following text within the scroll region. | |
6656 */ | |
6657 void | |
6658 gui_mch_insert_lines(int row, int num_lines) | |
6659 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6660 #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
|
6661 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
|
6662 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
|
6663 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
|
6664 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6665 gui_gtk_surface_copy_rect( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6666 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
|
6667 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
|
6668 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
|
6669 gui_mch_clear_block( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6670 row, gui.scroll_region_left, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6671 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
|
6672 gui_gtk3_redraw( |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6673 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
|
6674 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
|
6675 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6676 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
|
6677 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
|
6678 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
|
6679 #else |
7 | 6680 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6681 return; // Can't see the window |
7 | 6682 |
6683 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); | |
6684 gdk_gc_set_background(gui.text_gc, gui.bgcolor); | |
6685 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6686 // copy one extra pixel, for when bold has spilled over |
7 | 6687 gdk_window_copy_area(gui.drawarea->window, gui.text_gc, |
6688 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), | |
6689 gui.drawarea->window, | |
6690 FILL_X(gui.scroll_region_left), FILL_Y(row), | |
6691 gui.char_width * (gui.scroll_region_right | |
6692 - gui.scroll_region_left + 1) + 1, | |
6693 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); | |
6694 | |
6695 gui_clear_block(row, gui.scroll_region_left, | |
6696 row + num_lines - 1, gui.scroll_region_right); | |
6697 check_copy_area(); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6698 #endif // !GTK_CHECK_VERSION(3,0,0) |
7 | 6699 } |
6700 | |
6701 /* | |
6702 * X Selection stuff, for cutting and pasting text to other windows. | |
6703 */ | |
6704 void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
6705 clip_mch_request_selection(Clipboard_T *cbd) |
7 | 6706 { |
6707 GdkAtom target; | |
6708 unsigned i; | |
1494 | 6709 time_t start; |
7 | 6710 |
6711 for (i = 0; i < N_SELECTION_TARGETS; ++i) | |
6712 { | |
1904 | 6713 if (!clip_html && selection_targets[i].info == TARGET_HTML) |
6714 continue; | |
7 | 6715 received_selection = RS_NONE; |
6716 target = gdk_atom_intern(selection_targets[i].target, FALSE); | |
6717 | |
6718 gtk_selection_convert(gui.drawarea, | |
6719 cbd->gtk_sel_atom, target, | |
6720 (guint32)GDK_CURRENT_TIME); | |
6721 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6722 // Hack: Wait up to three seconds for the selection. A hang was |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6723 // noticed here when using the netrw plugin combined with ":gui" |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6724 // during the FocusGained event. |
1494 | 6725 start = time(NULL); |
6726 while (received_selection == RS_NONE && time(NULL) < start + 3) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6727 g_main_context_iteration(NULL, TRUE); // wait for selection_received_cb |
7 | 6728 |
6729 if (received_selection != RS_FAIL) | |
6730 return; | |
6731 } | |
6732 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6733 // 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
|
6734 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
|
6735 cbd); |
7 | 6736 } |
6737 | |
6738 /* | |
6739 * Disown the selection. | |
6740 */ | |
6741 void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
6742 clip_mch_lose_selection(Clipboard_T *cbd UNUSED) |
7 | 6743 { |
13503
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6744 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
|
6745 { |
5d345460c984
patch 8.0.1625: test_quotestar is flaky when run in GTK GUI
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6746 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
|
6747 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
|
6748 } |
7 | 6749 } |
6750 | |
6751 /* | |
6752 * Own the selection and return OK if it worked. | |
6753 */ | |
6754 int | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
6755 clip_mch_own_selection(Clipboard_T *cbd) |
7 | 6756 { |
6757 int success; | |
6758 | |
6759 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom, | |
2923 | 6760 gui.event_time); |
7 | 6761 gui_mch_update(); |
6762 return (success) ? OK : FAIL; | |
6763 } | |
6764 | |
6765 /* | |
6766 * Send the current selection to the clipboard. Do nothing for X because we | |
6767 * will fill in the selection only when requested by another app. | |
6768 */ | |
6769 void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
6770 clip_mch_set_selection(Clipboard_T *cbd UNUSED) |
7 | 6771 { |
6772 } | |
6773 | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6774 #if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO) |
4209 | 6775 int |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
6776 clip_gtk_owner_exists(Clipboard_T *cbd) |
4209 | 6777 { |
6778 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL; | |
6779 } | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6780 #endif |
4209 | 6781 |
7 | 6782 |
6783 #if defined(FEAT_MENU) || defined(PROTO) | |
6784 /* | |
6785 * Make a menu item appear either active or not active (grey or not grey). | |
6786 */ | |
6787 void | |
6788 gui_mch_menu_grey(vimmenu_T *menu, int grey) | |
6789 { | |
6790 if (menu->id == NULL) | |
6791 return; | |
6792 | |
6793 if (menu_is_separator(menu->name)) | |
6794 grey = TRUE; | |
6795 | |
6796 gui_mch_menu_hidden(menu, FALSE); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6797 // 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
|
6798 if (!gtk_widget_get_sensitive(menu->id) == !grey) |
7 | 6799 { |
6800 gtk_widget_set_sensitive(menu->id, !grey); | |
6801 gui_mch_update(); | |
6802 } | |
6803 } | |
6804 | |
6805 /* | |
6806 * Make menu item hidden or not hidden. | |
6807 */ | |
6808 void | |
6809 gui_mch_menu_hidden(vimmenu_T *menu, int hidden) | |
6810 { | |
6811 if (menu->id == 0) | |
6812 return; | |
6813 | |
6814 if (hidden) | |
6815 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6816 if (gtk_widget_get_visible(menu->id)) |
7 | 6817 { |
6818 gtk_widget_hide(menu->id); | |
6819 gui_mch_update(); | |
6820 } | |
6821 } | |
6822 else | |
6823 { | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6824 if (!gtk_widget_get_visible(menu->id)) |
7 | 6825 { |
6826 gtk_widget_show(menu->id); | |
6827 gui_mch_update(); | |
6828 } | |
6829 } | |
6830 } | |
6831 | |
6832 /* | |
6833 * This is called after setting all the menus to grey/hidden or not. | |
6834 */ | |
6835 void | |
6836 gui_mch_draw_menubar(void) | |
6837 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6838 // just make sure that the visual changes get effect immediately |
7 | 6839 gui_mch_update(); |
6840 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6841 #endif // FEAT_MENU |
7 | 6842 |
6843 /* | |
6844 * Scrollbar stuff. | |
6845 */ | |
6846 void | |
6847 gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) | |
6848 { | |
6849 if (sb->id == NULL) | |
6850 return; | |
6851 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6852 gtk_widget_set_visible(sb->id, flag); |
791 | 6853 update_window_manager_hints(0, 0); |
7 | 6854 } |
6855 | |
6856 | |
6857 /* | |
6858 * Return the RGB value of a pixel as long. | |
6859 */ | |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
6860 guicolor_T |
7 | 6861 gui_mch_get_rgb(guicolor_T pixel) |
6862 { | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6863 #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
|
6864 return (long_u)pixel; |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6865 #else |
7 | 6866 GdkColor color; |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6867 |
7 | 6868 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea), |
6869 (unsigned long)pixel, &color); | |
6870 | |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
6871 return (guicolor_T)( |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
6872 (((unsigned)color.red & 0xff00) << 8) |
7 | 6873 | ((unsigned)color.green & 0xff00) |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9879
diff
changeset
|
6874 | (((unsigned)color.blue & 0xff00) >> 8)); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
6875 #endif |
7 | 6876 } |
6877 | |
6878 /* | |
88 | 6879 * Get current mouse coordinates in text window. |
7 | 6880 */ |
88 | 6881 void |
6882 gui_mch_getmouse(int *x, int *y) | |
7 | 6883 { |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6884 gui_gtk_get_pointer(gui.drawarea, x, y, NULL); |
7 | 6885 } |
6886 | |
6887 void | |
6888 gui_mch_setmouse(int x, int y) | |
6889 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6890 // Sorry for the Xlib call, but we can't avoid it, since there is no |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6891 // internal GDK mechanism present to accomplish this. (and for good |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6892 // reason...) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6893 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
|
6894 (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
|
6895 0, 0, 0U, 0U, x, y); |
7 | 6896 } |
6897 | |
6898 | |
6899 #ifdef FEAT_MOUSESHAPE | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6900 // The last set mouse pointer shape is remembered, to be used when it goes |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6901 // from hidden to not hidden. |
7 | 6902 static int last_shape = 0; |
6903 #endif | |
6904 | |
6905 /* | |
6906 * Use the blank mouse pointer or not. | |
6907 * | |
6908 * hide: TRUE = use blank ptr, FALSE = use parent ptr | |
6909 */ | |
6910 void | |
6911 gui_mch_mousehide(int hide) | |
6912 { | |
6913 if (gui.pointer_hidden != hide) | |
6914 { | |
6915 gui.pointer_hidden = hide; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6916 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL) |
7 | 6917 { |
6918 if (hide) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6919 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
|
6920 gui.blank_pointer); |
7 | 6921 else |
6922 #ifdef FEAT_MOUSESHAPE | |
6923 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
|
6924 #else |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
6925 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL); |
7 | 6926 #endif |
6927 } | |
6928 } | |
6929 } | |
6930 | |
6931 #if defined(FEAT_MOUSESHAPE) || defined(PROTO) | |
6932 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6933 // Table for shape IDs. Keep in sync with the mshape_names[] table in |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6934 // misc2.c! |
7 | 6935 static const int mshape_ids[] = |
6936 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6937 GDK_LEFT_PTR, // arrow |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6938 GDK_CURSOR_IS_PIXMAP, // blank |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6939 GDK_XTERM, // beam |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6940 GDK_SB_V_DOUBLE_ARROW, // updown |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6941 GDK_SIZING, // udsizing |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6942 GDK_SB_H_DOUBLE_ARROW, // leftright |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6943 GDK_SIZING, // lrsizing |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6944 GDK_WATCH, // busy |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6945 GDK_X_CURSOR, // no |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6946 GDK_CROSSHAIR, // crosshair |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6947 GDK_HAND1, // hand1 |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6948 GDK_HAND2, // hand2 |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6949 GDK_PENCIL, // pencil |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6950 GDK_QUESTION_ARROW, // question |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6951 GDK_RIGHT_PTR, // right-arrow |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6952 GDK_CENTER_PTR, // up-arrow |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6953 GDK_LEFT_PTR // last one |
7 | 6954 }; |
6955 | |
6956 void | |
6957 mch_set_mouse_shape(int shape) | |
6958 { | |
6959 int id; | |
6960 GdkCursor *c; | |
6961 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6962 if (gtk_widget_get_window(gui.drawarea) == NULL) |
7 | 6963 return; |
6964 | |
6965 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
|
6966 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
|
6967 gui.blank_pointer); |
7 | 6968 else |
6969 { | |
6970 if (shape >= MSHAPE_NUMBERED) | |
6971 { | |
6972 id = shape - MSHAPE_NUMBERED; | |
6973 if (id >= GDK_LAST_CURSOR) | |
6974 id = GDK_LEFT_PTR; | |
6975 else | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6976 id &= ~1; // they are always even (why?) |
7 | 6977 } |
24768
7334bf933510
patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents:
24170
diff
changeset
|
6978 else if (shape < (int)ARRAY_LENGTH(mshape_ids)) |
7 | 6979 id = mshape_ids[shape]; |
842 | 6980 else |
6981 return; | |
7 | 6982 c = gdk_cursor_new_for_display( |
136 | 6983 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
|
6984 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
|
6985 # 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
|
6986 g_object_unref(G_OBJECT(c)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
6987 # else |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6988 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
|
6989 # endif |
7 | 6990 } |
6991 if (shape != MSHAPE_HIDE) | |
6992 last_shape = shape; | |
6993 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
6994 #endif // FEAT_MOUSESHAPE |
7 | 6995 |
6996 | |
6997 #if defined(FEAT_SIGN_ICONS) || defined(PROTO) | |
6998 /* | |
6999 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be | |
7000 * scaled down if the current font is not big enough, or scaled up if the image | |
7001 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap | |
7002 * will be cut off if the current font is not big enough, or centered if it's | |
7003 * too small. | |
7004 */ | |
7005 # define SIGN_WIDTH (2 * gui.char_width) | |
7006 # define SIGN_HEIGHT (gui.char_height) | |
7007 # define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH) | |
7008 | |
7009 void | |
7010 gui_mch_drawsign(int row, int col, int typenr) | |
7011 { | |
7012 GdkPixbuf *sign; | |
7013 | |
7014 sign = (GdkPixbuf *)sign_get_image(typenr); | |
7015 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7016 if (sign != NULL && gui.drawarea != NULL |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7017 && gtk_widget_get_window(gui.drawarea) != NULL) |
7 | 7018 { |
7019 int width; | |
7020 int height; | |
7021 int xoffset; | |
7022 int yoffset; | |
7023 int need_scale; | |
7024 | |
7025 width = gdk_pixbuf_get_width(sign); | |
7026 height = gdk_pixbuf_get_height(sign); | |
7027 /* | |
7028 * Decide whether we need to scale. Allow one pixel of border | |
7029 * width to be cut off, in order to avoid excessive scaling for | |
7030 * tiny differences in font size. | |
5983 | 7031 * Do scale to fit the height to avoid gaps because of linespacing. |
7 | 7032 */ |
7033 need_scale = (width > SIGN_WIDTH + 2 | |
5983 | 7034 || height != SIGN_HEIGHT |
7 | 7035 || (width < 3 * SIGN_WIDTH / 4 |
7036 && height < 3 * SIGN_HEIGHT / 4)); | |
7037 if (need_scale) | |
7038 { | |
5983 | 7039 double aspect; |
7040 int w = width; | |
7041 int h = height; | |
7 | 7042 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7043 // Keep the original aspect ratio |
7 | 7044 aspect = (double)height / (double)width; |
7045 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect; | |
7046 width = MIN(width, SIGN_WIDTH); | |
5983 | 7047 if (((double)(MAX(height, SIGN_HEIGHT)) / |
7048 (double)(MIN(height, SIGN_HEIGHT))) < 1.15) | |
7049 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7050 // Change the aspect ratio by at most 15% to fill the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7051 // available space completely. |
5983 | 7052 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect; |
7053 height = MIN(height, SIGN_HEIGHT); | |
7054 } | |
7055 else | |
7056 height = (double)width * aspect; | |
7057 | |
7058 if (w == width && h == height) | |
7059 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7060 // no change in dimensions; don't decrease reference counter |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7061 // (below) |
5983 | 7062 need_scale = FALSE; |
7063 } | |
7064 else | |
7065 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7066 // This doesn't seem to be worth caching, and doing so would |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7067 // complicate the code quite a bit. |
5983 | 7068 sign = gdk_pixbuf_scale_simple(sign, width, height, |
7069 GDK_INTERP_BILINEAR); | |
7070 if (sign == NULL) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7071 return; // out of memory |
5983 | 7072 } |
7 | 7073 } |
7074 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7075 // The origin is the upper-left corner of the pixmap. Therefore |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7076 // these offset may become negative if the pixmap is smaller than |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7077 // the 2x1 cells reserved for the sign icon. |
7 | 7078 xoffset = (width - SIGN_WIDTH) / 2; |
7079 yoffset = (height - SIGN_HEIGHT) / 2; | |
7080 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7081 # 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
|
7082 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7083 cairo_t *cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7084 cairo_surface_t *bg_surf; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7085 cairo_t *bg_cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7086 cairo_surface_t *sign_surf; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7087 cairo_t *sign_cr; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7088 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7089 cr = cairo_create(gui.surface); |
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 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
|
7092 cairo_surface_get_content(gui.surface), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7093 SIGN_WIDTH, SIGN_HEIGHT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7094 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
|
7095 cairo_set_source_rgba(bg_cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9523
diff
changeset
|
7096 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
|
7097 gui.bgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7098 cairo_paint(bg_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7099 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7100 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
|
7101 cairo_surface_get_content(gui.surface), |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7102 SIGN_WIDTH, SIGN_HEIGHT); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7103 sign_cr = cairo_create(sign_surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7104 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
|
7105 cairo_paint(sign_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7106 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7107 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
|
7108 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
|
7109 cairo_paint(sign_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7110 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7111 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
|
7112 cairo_paint(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7113 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7114 cairo_destroy(sign_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7115 cairo_surface_destroy(sign_surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7116 cairo_destroy(bg_cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7117 cairo_surface_destroy(bg_surf); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7118 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7119 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7120 if (!gui.by_signal) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7121 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
|
7122 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
|
7123 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
7124 } |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7125 # else // !GTK_CHECK_VERSION(3,0,0) |
7 | 7126 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
7127 | |
7128 gdk_draw_rectangle(gui.drawarea->window, | |
7129 gui.text_gc, | |
7130 TRUE, | |
7131 FILL_X(col), | |
7132 FILL_Y(row), | |
7133 SIGN_WIDTH, | |
7134 SIGN_HEIGHT); | |
7135 | |
7136 gdk_pixbuf_render_to_drawable_alpha(sign, | |
7137 gui.drawarea->window, | |
7138 MAX(0, xoffset), | |
7139 MAX(0, yoffset), | |
7140 FILL_X(col) - MIN(0, xoffset), | |
7141 FILL_Y(row) - MIN(0, yoffset), | |
7142 MIN(width, SIGN_WIDTH), | |
7143 MIN(height, SIGN_HEIGHT), | |
7144 GDK_PIXBUF_ALPHA_BILEVEL, | |
7145 127, | |
7146 GDK_RGB_DITHER_NORMAL, | |
7147 0, 0); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7148 # endif // !GTK_CHECK_VERSION(3,0,0) |
7 | 7149 if (need_scale) |
7150 g_object_unref(sign); | |
7151 } | |
7152 } | |
7153 | |
7154 void * | |
7155 gui_mch_register_sign(char_u *signfile) | |
7156 { | |
7157 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use) | |
7158 { | |
7159 GdkPixbuf *sign; | |
7160 GError *error = NULL; | |
7161 char_u *message; | |
7162 | |
7163 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error); | |
7164 | |
7165 if (error == NULL) | |
7166 return sign; | |
7167 | |
7168 message = (char_u *)error->message; | |
7169 | |
7170 if (message != NULL && input_conv.vc_type != CONV_NONE) | |
7171 message = string_convert(&input_conv, message, NULL); | |
7172 | |
7173 if (message != NULL) | |
7174 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7175 // The error message is already translated and will be more |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7176 // 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
|
7177 semsg("E255: %s", message); |
7 | 7178 |
7179 if (input_conv.vc_type != CONV_NONE) | |
7180 vim_free(message); | |
7181 } | |
7182 g_error_free(error); | |
7183 } | |
7184 | |
7185 return NULL; | |
7186 } | |
7187 | |
7188 void | |
7189 gui_mch_destroy_sign(void *sign) | |
7190 { | |
7191 if (sign != NULL) | |
7192 g_object_unref(sign); | |
7193 } | |
7194 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
7195 #endif // FEAT_SIGN_ICONS |