Bram Moolenaar | edf3f97 | 2016-08-29 22:49:24 +0200 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4 noet: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | * |
Bram Moolenaar | 0a56cb8 | 2005-01-04 21:45:14 +0000 | [diff] [blame] | 13 | * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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> |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 22 | * |
| 23 | * Support for GTK+ 3 was added by: |
| 24 | * |
| 25 | * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 26 | */ |
| 27 | |
| 28 | #include "vim.h" |
Bram Moolenaar | 36e294c | 2015-12-29 18:55:46 +0100 | [diff] [blame] | 29 | #ifdef USE_GRESOURCE |
| 30 | #include "auto/gui_gtk_gresources.h" |
| 31 | #endif |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 32 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 33 | #ifdef FEAT_GUI_GNOME |
| 34 | /* Gnome redefines _() and N_(). Grrr... */ |
| 35 | # ifdef _ |
| 36 | # undef _ |
| 37 | # endif |
| 38 | # ifdef N_ |
| 39 | # undef N_ |
| 40 | # endif |
| 41 | # ifdef textdomain |
| 42 | # undef textdomain |
| 43 | # endif |
| 44 | # ifdef bindtextdomain |
| 45 | # undef bindtextdomain |
| 46 | # endif |
Bram Moolenaar | a2dd900 | 2007-05-14 17:38:30 +0000 | [diff] [blame] | 47 | # ifdef bind_textdomain_codeset |
| 48 | # undef bind_textdomain_codeset |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 49 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 50 | # if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS) |
| 51 | # define ENABLE_NLS /* so the texts in the dialog boxes are translated */ |
| 52 | # endif |
| 53 | # include <gnome.h> |
| 54 | # include "version.h" |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 55 | /* missing prototype in bonobo-dock-item.h */ |
| 56 | extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 57 | #endif |
| 58 | |
| 59 | #if !defined(FEAT_GUI_GTK) && defined(PROTO) |
| 60 | /* When generating prototypes we don't want syntax errors. */ |
| 61 | # define GdkAtom int |
| 62 | # define GdkEventExpose int |
| 63 | # define GdkEventFocus int |
| 64 | # define GdkEventVisibility int |
| 65 | # define GdkEventProperty int |
| 66 | # define GtkContainer int |
| 67 | # define GtkTargetEntry int |
| 68 | # define GtkType int |
| 69 | # define GtkWidget int |
| 70 | # define gint int |
| 71 | # define gpointer int |
| 72 | # define guint int |
| 73 | # define GdkEventKey int |
| 74 | # define GdkEventSelection int |
| 75 | # define GtkSelectionData int |
| 76 | # define GdkEventMotion int |
| 77 | # define GdkEventButton int |
| 78 | # define GdkDragContext int |
| 79 | # define GdkEventConfigure int |
| 80 | # define GdkEventClient int |
| 81 | #else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 82 | # if GTK_CHECK_VERSION(3,0,0) |
| 83 | # include <gdk/gdkkeysyms-compat.h> |
| 84 | # include <gtk/gtkx.h> |
| 85 | # else |
| 86 | # include <gdk/gdkkeysyms.h> |
| 87 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 88 | # include <gdk/gdk.h> |
Bram Moolenaar | 4f97475 | 2019-02-17 17:44:42 +0100 | [diff] [blame] | 89 | # ifdef MSWIN |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 90 | # include <gdk/gdkwin32.h> |
| 91 | # else |
| 92 | # include <gdk/gdkx.h> |
| 93 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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> |
| 100 | #endif |
| 101 | |
| 102 | /* |
| 103 | * Easy-to-use macro for multihead support. |
| 104 | */ |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 105 | #define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 106 | gtk_widget_get_display(gui.mainwin), atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 107 | |
| 108 | /* Selection type distinguishers */ |
| 109 | enum |
| 110 | { |
| 111 | TARGET_TYPE_NONE, |
| 112 | TARGET_UTF8_STRING, |
| 113 | TARGET_STRING, |
| 114 | TARGET_COMPOUND_TEXT, |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 115 | TARGET_HTML, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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}, |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 131 | {"text/html", 0, TARGET_HTML}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 132 | {"UTF8_STRING", 0, TARGET_UTF8_STRING}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 133 | {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT}, |
| 134 | {"TEXT", 0, TARGET_TEXT}, |
| 135 | {"STRING", 0, TARGET_STRING} |
| 136 | }; |
| 137 | #define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0])) |
| 138 | |
| 139 | #ifdef FEAT_DND |
| 140 | /* |
| 141 | * Table of DnD targets supported by Vim. |
| 142 | * Note: Order matters, preferred types should come first. |
| 143 | */ |
| 144 | static const GtkTargetEntry dnd_targets[] = |
| 145 | { |
| 146 | {"text/uri-list", 0, TARGET_TEXT_URI_LIST}, |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 147 | {"text/html", 0, TARGET_HTML}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 148 | {"UTF8_STRING", 0, TARGET_UTF8_STRING}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 149 | {"STRING", 0, TARGET_STRING}, |
| 150 | {"text/plain", 0, TARGET_TEXT_PLAIN} |
| 151 | }; |
| 152 | # define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0])) |
| 153 | #endif |
| 154 | |
| 155 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 162 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 163 | # define USE_GNOME_SESSION |
| 164 | #endif |
| 165 | |
| 166 | #if !defined(FEAT_GUI_GNOME) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | */ |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 178 | static GdkAtom html_atom = GDK_NONE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 179 | static GdkAtom utf8_string_atom = GDK_NONE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 180 | static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 181 | static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 182 | |
| 183 | /* |
| 184 | * Keycodes recognized by vim. |
| 185 | * NOTE: when changing this, the table in gui_x11.c probably needs the same |
| 186 | * change! |
| 187 | */ |
| 188 | static struct special_key |
| 189 | { |
| 190 | guint key_sym; |
| 191 | char_u code0; |
| 192 | char_u code1; |
| 193 | } |
| 194 | const special_keys[] = |
| 195 | { |
| 196 | {GDK_Up, 'k', 'u'}, |
| 197 | {GDK_Down, 'k', 'd'}, |
| 198 | {GDK_Left, 'k', 'l'}, |
| 199 | {GDK_Right, 'k', 'r'}, |
| 200 | {GDK_F1, 'k', '1'}, |
| 201 | {GDK_F2, 'k', '2'}, |
| 202 | {GDK_F3, 'k', '3'}, |
| 203 | {GDK_F4, 'k', '4'}, |
| 204 | {GDK_F5, 'k', '5'}, |
| 205 | {GDK_F6, 'k', '6'}, |
| 206 | {GDK_F7, 'k', '7'}, |
| 207 | {GDK_F8, 'k', '8'}, |
| 208 | {GDK_F9, 'k', '9'}, |
| 209 | {GDK_F10, 'k', ';'}, |
| 210 | {GDK_F11, 'F', '1'}, |
| 211 | {GDK_F12, 'F', '2'}, |
| 212 | {GDK_F13, 'F', '3'}, |
| 213 | {GDK_F14, 'F', '4'}, |
| 214 | {GDK_F15, 'F', '5'}, |
| 215 | {GDK_F16, 'F', '6'}, |
| 216 | {GDK_F17, 'F', '7'}, |
| 217 | {GDK_F18, 'F', '8'}, |
| 218 | {GDK_F19, 'F', '9'}, |
| 219 | {GDK_F20, 'F', 'A'}, |
| 220 | {GDK_F21, 'F', 'B'}, |
| 221 | {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */ |
| 222 | {GDK_F22, 'F', 'C'}, |
| 223 | {GDK_F23, 'F', 'D'}, |
| 224 | {GDK_F24, 'F', 'E'}, |
| 225 | {GDK_F25, 'F', 'F'}, |
| 226 | {GDK_F26, 'F', 'G'}, |
| 227 | {GDK_F27, 'F', 'H'}, |
| 228 | {GDK_F28, 'F', 'I'}, |
| 229 | {GDK_F29, 'F', 'J'}, |
| 230 | {GDK_F30, 'F', 'K'}, |
| 231 | {GDK_F31, 'F', 'L'}, |
| 232 | {GDK_F32, 'F', 'M'}, |
| 233 | {GDK_F33, 'F', 'N'}, |
| 234 | {GDK_F34, 'F', 'O'}, |
| 235 | {GDK_F35, 'F', 'P'}, |
| 236 | #ifdef SunXK_F36 |
| 237 | {SunXK_F36, 'F', 'Q'}, |
| 238 | {SunXK_F37, 'F', 'R'}, |
| 239 | #endif |
| 240 | {GDK_Help, '%', '1'}, |
| 241 | {GDK_Undo, '&', '8'}, |
| 242 | {GDK_BackSpace, 'k', 'b'}, |
| 243 | {GDK_Insert, 'k', 'I'}, |
| 244 | {GDK_Delete, 'k', 'D'}, |
| 245 | {GDK_3270_BackTab, 'k', 'B'}, |
| 246 | {GDK_Clear, 'k', 'C'}, |
| 247 | {GDK_Home, 'k', 'h'}, |
| 248 | {GDK_End, '@', '7'}, |
| 249 | {GDK_Prior, 'k', 'P'}, |
| 250 | {GDK_Next, 'k', 'N'}, |
| 251 | {GDK_Print, '%', '9'}, |
| 252 | /* Keypad keys: */ |
| 253 | {GDK_KP_Left, 'k', 'l'}, |
| 254 | {GDK_KP_Right, 'k', 'r'}, |
| 255 | {GDK_KP_Up, 'k', 'u'}, |
| 256 | {GDK_KP_Down, 'k', 'd'}, |
| 257 | {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS}, |
| 258 | {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL}, |
| 259 | {GDK_KP_Home, 'K', '1'}, |
| 260 | {GDK_KP_End, 'K', '4'}, |
| 261 | {GDK_KP_Prior, 'K', '3'}, /* page up */ |
| 262 | {GDK_KP_Next, 'K', '5'}, /* page down */ |
| 263 | |
| 264 | {GDK_KP_Add, 'K', '6'}, |
| 265 | {GDK_KP_Subtract, 'K', '7'}, |
| 266 | {GDK_KP_Divide, 'K', '8'}, |
| 267 | {GDK_KP_Multiply, 'K', '9'}, |
| 268 | {GDK_KP_Enter, 'K', 'A'}, |
| 269 | {GDK_KP_Decimal, 'K', 'B'}, |
| 270 | |
| 271 | {GDK_KP_0, 'K', 'C'}, |
| 272 | {GDK_KP_1, 'K', 'D'}, |
| 273 | {GDK_KP_2, 'K', 'E'}, |
| 274 | {GDK_KP_3, 'K', 'F'}, |
| 275 | {GDK_KP_4, 'K', 'G'}, |
| 276 | {GDK_KP_5, 'K', 'H'}, |
| 277 | {GDK_KP_6, 'K', 'I'}, |
| 278 | {GDK_KP_7, 'K', 'J'}, |
| 279 | {GDK_KP_8, 'K', 'K'}, |
| 280 | {GDK_KP_9, 'K', 'L'}, |
| 281 | |
| 282 | /* End of list marker: */ |
| 283 | {0, 0, 0} |
| 284 | }; |
| 285 | |
| 286 | /* |
| 287 | * Flags for command line options table below. |
| 288 | */ |
| 289 | #define ARG_FONT 1 |
| 290 | #define ARG_GEOMETRY 2 |
| 291 | #define ARG_REVERSE 3 |
| 292 | #define ARG_NOREVERSE 4 |
| 293 | #define ARG_BACKGROUND 5 |
| 294 | #define ARG_FOREGROUND 6 |
| 295 | #define ARG_ICONIC 7 |
| 296 | #define ARG_ROLE 8 |
| 297 | #define ARG_NETBEANS 9 |
| 298 | #define ARG_XRM 10 /* ignored */ |
| 299 | #define ARG_MENUFONT 11 /* ignored */ |
| 300 | #define ARG_INDEX_MASK 0x00ff |
| 301 | #define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */ |
| 302 | #define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */ |
| 303 | #define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */ |
| 304 | #define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */ |
| 305 | #define ARG_KEEP 0x1000 /* don't remove argument from argv[] */ |
| 306 | |
| 307 | /* |
| 308 | * This table holds all the X GUI command line options allowed. This includes |
| 309 | * the standard ones so that we can skip them when Vim is started without the |
| 310 | * GUI (but the GUI might start up later). |
| 311 | * |
| 312 | * When changing this, also update doc/gui_x11.txt and the usage message!!! |
| 313 | */ |
| 314 | typedef struct |
| 315 | { |
| 316 | const char *name; |
| 317 | unsigned int flags; |
| 318 | } |
| 319 | cmdline_option_T; |
| 320 | |
| 321 | static const cmdline_option_T cmdline_options[] = |
| 322 | { |
| 323 | /* We handle these options ourselves */ |
| 324 | {"-fn", ARG_FONT|ARG_HAS_VALUE}, |
| 325 | {"-font", ARG_FONT|ARG_HAS_VALUE}, |
| 326 | {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE}, |
| 327 | {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE}, |
| 328 | {"-rv", ARG_REVERSE}, |
| 329 | {"-reverse", ARG_REVERSE}, |
| 330 | {"+rv", ARG_NOREVERSE}, |
| 331 | {"+reverse", ARG_NOREVERSE}, |
| 332 | {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE}, |
| 333 | {"-background", ARG_BACKGROUND|ARG_HAS_VALUE}, |
| 334 | {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE}, |
| 335 | {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE}, |
| 336 | {"-iconic", ARG_ICONIC}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 337 | {"--role", ARG_ROLE|ARG_HAS_VALUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 338 | #ifdef FEAT_NETBEANS_INTG |
| 339 | {"-nb", ARG_NETBEANS}, /* non-standard value format */ |
| 340 | {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */ |
| 341 | {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */ |
| 342 | {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */ |
| 343 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 344 | /* Arguments handled by GTK (and GNOME) internally. */ |
| 345 | {"--g-fatal-warnings", ARG_FOR_GTK}, |
| 346 | {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 347 | {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 348 | {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 349 | {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 350 | {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 351 | {"--sync", ARG_FOR_GTK}, |
| 352 | {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, |
| 353 | {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, |
| 354 | {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 358 | #ifdef FEAT_GUI_GNOME |
| 359 | {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 360 | {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 361 | {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 362 | {"--sm-disable", ARG_FOR_GTK}, |
| 363 | {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 364 | {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 365 | {"--oaf-private", ARG_FOR_GTK}, |
| 366 | {"--enable-sound", ARG_FOR_GTK}, |
| 367 | {"--disable-sound", ARG_FOR_GTK}, |
| 368 | {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 369 | {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI}, |
| 370 | {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP}, |
| 371 | {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI}, |
| 372 | # if 0 /* conflicts with Vim's own --version argument */ |
| 373 | {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI}, |
| 374 | # endif |
| 375 | {"--disable-crash-dialog", ARG_FOR_GTK}, |
| 376 | #endif |
| 377 | {NULL, 0} |
| 378 | }; |
| 379 | |
| 380 | static int gui_argc = 0; |
| 381 | static char **gui_argv = NULL; |
| 382 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 383 | static const char *role_argument = NULL; |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 384 | #if defined(USE_GNOME_SESSION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 385 | static const char *restart_command = NULL; |
Bram Moolenaar | 9085f80 | 2009-06-03 14:20:21 +0000 | [diff] [blame] | 386 | static char *abs_restart_command = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 411 | #if defined(USE_GNOME_SESSION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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) |
Bram Moolenaar | 9085f80 | 2009-06-03 14:20:21 +0000 | [diff] [blame] | 424 | { |
| 425 | abs_restart_command = (char *)vim_strsave(buf); |
| 426 | restart_command = abs_restart_command; |
| 427 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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; |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 436 | gui_argv = ALLOC_MULT(char *, *argc + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 437 | |
| 438 | g_return_if_fail(gui_argv != NULL); |
| 439 | |
| 440 | gui_argv[gui_argc++] = argv[i++]; |
| 441 | |
| 442 | while (i < *argc) |
| 443 | { |
| 444 | /* Don't waste CPU cycles on non-option arguments. */ |
| 445 | if (argv[i][0] != '-' && argv[i][0] != '+') |
| 446 | { |
| 447 | ++i; |
| 448 | continue; |
| 449 | } |
| 450 | |
| 451 | /* Look for argv[i] in cmdline_options[] table. */ |
| 452 | for (option = &cmdline_options[0]; option->name != NULL; ++option) |
| 453 | { |
| 454 | len = strlen(option->name); |
| 455 | |
| 456 | if (strncmp(argv[i], option->name, len) == 0) |
| 457 | { |
| 458 | if (argv[i][len] == '\0') |
| 459 | break; |
| 460 | /* allow --foo=bar style */ |
| 461 | if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE)) |
| 462 | break; |
| 463 | #ifdef FEAT_NETBEANS_INTG |
| 464 | /* darn, -nb has non-standard syntax */ |
| 465 | if (vim_strchr((char_u *)":=", argv[i][len]) != NULL |
| 466 | && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS) |
| 467 | break; |
| 468 | #endif |
| 469 | } |
| 470 | else if ((option->flags & ARG_COMPAT_LONG) |
| 471 | && strcmp(argv[i], option->name + 1) == 0) |
| 472 | { |
| 473 | /* Replace the standard X arguments "-name" and "-display" |
| 474 | * with their GNU-style long option counterparts. */ |
| 475 | argv[i] = (char *)option->name; |
| 476 | break; |
| 477 | } |
| 478 | } |
| 479 | if (option->name == NULL) /* no match */ |
| 480 | { |
| 481 | ++i; |
| 482 | continue; |
| 483 | } |
| 484 | |
| 485 | if (option->flags & ARG_FOR_GTK) |
| 486 | { |
| 487 | /* Move the argument into gui_argv, which |
| 488 | * will later be passed to gtk_init_check() */ |
| 489 | gui_argv[gui_argc++] = argv[i]; |
| 490 | } |
| 491 | else |
| 492 | { |
| 493 | char *value = NULL; |
| 494 | |
| 495 | /* Extract the option's value if there is one. |
| 496 | * Accept both "--foo bar" and "--foo=bar" style. */ |
| 497 | if (option->flags & ARG_HAS_VALUE) |
| 498 | { |
| 499 | if (argv[i][len] == '=') |
| 500 | value = &argv[i][len + 1]; |
| 501 | else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0) |
| 502 | value = argv[i + 1]; |
| 503 | } |
| 504 | |
| 505 | /* Check for options handled by Vim itself */ |
| 506 | switch (option->flags & ARG_INDEX_MASK) |
| 507 | { |
| 508 | case ARG_REVERSE: |
| 509 | found_reverse_arg = TRUE; |
| 510 | break; |
| 511 | case ARG_NOREVERSE: |
| 512 | found_reverse_arg = FALSE; |
| 513 | break; |
| 514 | case ARG_FONT: |
| 515 | font_argument = value; |
| 516 | break; |
| 517 | case ARG_GEOMETRY: |
| 518 | if (value != NULL) |
| 519 | gui.geom = vim_strsave((char_u *)value); |
| 520 | break; |
| 521 | case ARG_BACKGROUND: |
| 522 | background_argument = value; |
| 523 | break; |
| 524 | case ARG_FOREGROUND: |
| 525 | foreground_argument = value; |
| 526 | break; |
| 527 | case ARG_ICONIC: |
| 528 | found_iconic_arg = TRUE; |
| 529 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 530 | case ARG_ROLE: |
| 531 | role_argument = value; /* used later in gui_mch_open() */ |
| 532 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 533 | #ifdef FEAT_NETBEANS_INTG |
| 534 | case ARG_NETBEANS: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 535 | gui.dofork = FALSE; /* don't fork() when starting GUI */ |
| 536 | netbeansArg = argv[i]; |
| 537 | break; |
| 538 | #endif |
| 539 | default: |
| 540 | break; |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | /* These arguments make gnome_program_init() print a message and exit. |
Bram Moolenaar | 717e196 | 2016-08-10 21:28:44 +0200 | [diff] [blame] | 545 | * Must start the GUI for this, otherwise ":gui" will exit later! |
| 546 | * Only when the GUI can start. */ |
| 547 | if ((option->flags & ARG_NEEDS_GUI) |
| 548 | && gui_mch_early_init_check(FALSE) == OK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 549 | gui.starting = TRUE; |
| 550 | |
| 551 | if (option->flags & ARG_KEEP) |
| 552 | ++i; |
| 553 | else |
| 554 | { |
| 555 | /* Remove the flag from the argument vector. */ |
| 556 | if (--*argc > i) |
| 557 | { |
| 558 | int n_strip = 1; |
| 559 | |
| 560 | /* Move the argument's value as well, if there is one. */ |
| 561 | if ((option->flags & ARG_HAS_VALUE) |
| 562 | && argv[i][len] != '=' |
| 563 | && strcmp(argv[i + 1], "--") != 0) |
| 564 | { |
| 565 | ++n_strip; |
| 566 | --*argc; |
| 567 | if (option->flags & ARG_FOR_GTK) |
| 568 | gui_argv[gui_argc++] = argv[i + 1]; |
| 569 | } |
| 570 | |
| 571 | if (*argc > i) |
| 572 | mch_memmove(&argv[i], &argv[i + n_strip], |
| 573 | (*argc - i) * sizeof(char *)); |
| 574 | } |
| 575 | argv[*argc] = NULL; |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | gui_argv[gui_argc] = NULL; |
| 580 | } |
| 581 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 582 | #if defined(EXITFREE) || defined(PROTO) |
| 583 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 584 | gui_mch_free_all(void) |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 585 | { |
| 586 | vim_free(gui_argv); |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 587 | #if defined(USE_GNOME_SESSION) |
Bram Moolenaar | 9085f80 | 2009-06-03 14:20:21 +0000 | [diff] [blame] | 588 | vim_free(abs_restart_command); |
| 589 | #endif |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 590 | } |
| 591 | #endif |
| 592 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 593 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 594 | /* |
| 595 | * This should be maybe completely removed. |
| 596 | * Doesn't seem possible, since check_copy_area() relies on |
| 597 | * this information. --danielk |
| 598 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 599 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 600 | visibility_event(GtkWidget *widget UNUSED, |
| 601 | GdkEventVisibility *event, |
| 602 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 615 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 616 | |
| 617 | /* |
| 618 | * Redraw the corresponding portions of the screen. |
| 619 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 620 | #if GTK_CHECK_VERSION(3,0,0) |
| 621 | static gboolean is_key_pressed = FALSE; |
Bram Moolenaar | 0ecbe33 | 2016-03-05 22:40:52 +0100 | [diff] [blame] | 622 | static gboolean blink_mode = TRUE; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 623 | |
| 624 | static gboolean gui_gtk_is_blink_on(void); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 625 | |
| 626 | static void |
| 627 | gui_gtk3_redraw(int x, int y, int width, int height) |
| 628 | { |
Bram Moolenaar | fe344a9 | 2017-02-23 12:20:35 +0100 | [diff] [blame] | 629 | /* Range checks are left to gui_redraw_block() */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 630 | gui_redraw_block(Y_2_ROW(y), X_2_COL(x), |
| 631 | Y_2_ROW(y + height - 1), X_2_COL(x + width - 1), |
| 632 | GUI_MON_NOCLEAR); |
| 633 | } |
| 634 | |
| 635 | static void |
| 636 | gui_gtk3_update_cursor(cairo_t *cr) |
| 637 | { |
| 638 | if (gui.row == gui.cursor_row) |
| 639 | { |
| 640 | gui.by_signal = TRUE; |
Bram Moolenaar | 4fc563b | 2016-03-12 12:40:58 +0100 | [diff] [blame] | 641 | if (State & CMDLINE) |
| 642 | gui_update_cursor(TRUE, FALSE); |
| 643 | else |
| 644 | gui_update_cursor(TRUE, TRUE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 645 | gui.by_signal = FALSE; |
| 646 | cairo_paint(cr); |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | static gboolean |
| 651 | gui_gtk3_should_draw_cursor(void) |
| 652 | { |
| 653 | unsigned int cond = 0; |
| 654 | cond |= gui_gtk_is_blink_on(); |
Bram Moolenaar | b4ebf9a | 2016-03-12 16:28:18 +0100 | [diff] [blame] | 655 | if (gui.cursor_col >= gui.col) |
| 656 | cond |= is_key_pressed; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 657 | cond |= gui.in_focus == FALSE; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 658 | return cond; |
| 659 | } |
| 660 | |
| 661 | static gboolean |
Bram Moolenaar | 8e31fd5 | 2016-06-04 22:18:13 +0200 | [diff] [blame] | 662 | draw_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 663 | cairo_t *cr, |
| 664 | gpointer user_data UNUSED) |
| 665 | { |
| 666 | /* Skip this when the GUI isn't set up yet, will redraw later. */ |
| 667 | if (gui.starting) |
| 668 | return FALSE; |
| 669 | |
| 670 | out_flush(); /* make sure all output has been processed */ |
| 671 | /* for GTK+ 3, may induce other draw events. */ |
| 672 | |
| 673 | cairo_set_source_surface(cr, gui.surface, 0, 0); |
| 674 | |
| 675 | /* Draw the window without the cursor. */ |
| 676 | gui.by_signal = TRUE; |
| 677 | { |
| 678 | cairo_rectangle_list_t *list = NULL; |
| 679 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 680 | list = cairo_copy_clip_rectangle_list(cr); |
| 681 | if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE) |
| 682 | { |
| 683 | int i; |
Bram Moolenaar | fe344a9 | 2017-02-23 12:20:35 +0100 | [diff] [blame] | 684 | |
| 685 | /* First clear all the blocks and then redraw them. Just in case |
| 686 | * some blocks overlap. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 687 | for (i = 0; i < list->num_rectangles; i++) |
| 688 | { |
| 689 | const cairo_rectangle_t rect = list->rectangles[i]; |
Bram Moolenaar | 8e31fd5 | 2016-06-04 22:18:13 +0200 | [diff] [blame] | 690 | |
Bram Moolenaar | fe344a9 | 2017-02-23 12:20:35 +0100 | [diff] [blame] | 691 | gui_mch_clear_block(Y_2_ROW((int)rect.y), 0, |
| 692 | Y_2_ROW((int)(rect.y + rect.height)) - 1, Columns - 1); |
| 693 | } |
| 694 | |
| 695 | for (i = 0; i < list->num_rectangles; i++) |
| 696 | { |
| 697 | const cairo_rectangle_t rect = list->rectangles[i]; |
Bram Moolenaar | 8e31fd5 | 2016-06-04 22:18:13 +0200 | [diff] [blame] | 698 | |
Bram Moolenaar | 0ecbe33 | 2016-03-05 22:40:52 +0100 | [diff] [blame] | 699 | if (blink_mode) |
| 700 | gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height); |
| 701 | else |
Bram Moolenaar | b4ebf9a | 2016-03-12 16:28:18 +0100 | [diff] [blame] | 702 | { |
| 703 | if (get_real_state() & VISUAL) |
| 704 | gui_gtk3_redraw(rect.x, rect.y, |
| 705 | rect.width, rect.height); |
| 706 | else |
| 707 | gui_redraw(rect.x, rect.y, rect.width, rect.height); |
| 708 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 709 | } |
| 710 | } |
| 711 | cairo_rectangle_list_destroy(list); |
| 712 | |
Bram Moolenaar | b4ebf9a | 2016-03-12 16:28:18 +0100 | [diff] [blame] | 713 | if (get_real_state() & VISUAL) |
| 714 | { |
| 715 | if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col) |
| 716 | gui_update_cursor(TRUE, TRUE); |
| 717 | } |
| 718 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 719 | cairo_paint(cr); |
| 720 | } |
| 721 | gui.by_signal = FALSE; |
| 722 | |
| 723 | /* Add the cursor to the window if necessary.*/ |
Bram Moolenaar | b4ebf9a | 2016-03-12 16:28:18 +0100 | [diff] [blame] | 724 | if (gui_gtk3_should_draw_cursor() && blink_mode) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 725 | gui_gtk3_update_cursor(cr); |
| 726 | |
| 727 | return FALSE; |
| 728 | } |
| 729 | #else /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 730 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 731 | expose_event(GtkWidget *widget UNUSED, |
| 732 | GdkEventExpose *event, |
| 733 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 734 | { |
| 735 | /* Skip this when the GUI isn't set up yet, will redraw later. */ |
| 736 | if (gui.starting) |
| 737 | return FALSE; |
| 738 | |
| 739 | out_flush(); /* make sure all output has been processed */ |
| 740 | gui_redraw(event->area.x, event->area.y, |
| 741 | event->area.width, event->area.height); |
| 742 | |
| 743 | /* Clear the border areas if needed */ |
| 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 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 756 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 757 | |
| 758 | #ifdef FEAT_CLIENTSERVER |
| 759 | /* |
| 760 | * Handle changes to the "Comm" property |
| 761 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 762 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 763 | property_event(GtkWidget *widget, |
| 764 | GdkEventProperty *event, |
| 765 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 766 | { |
| 767 | if (event->type == GDK_PROPERTY_NOTIFY |
| 768 | && event->state == (int)GDK_PROPERTY_NEW_VALUE |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 769 | && GDK_WINDOW_XID(event->window) == commWindow |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 770 | && GET_X_ATOM(event->atom) == commProperty) |
| 771 | { |
| 772 | XEvent xev; |
| 773 | |
| 774 | /* Translate to XLib */ |
| 775 | xev.xproperty.type = PropertyNotify; |
| 776 | xev.xproperty.atom = commProperty; |
| 777 | xev.xproperty.window = commWindow; |
| 778 | xev.xproperty.state = PropertyNewValue; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 779 | serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)), |
| 780 | &xev, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 781 | } |
| 782 | return FALSE; |
| 783 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 784 | #endif /* defined(FEAT_CLIENTSERVER) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 785 | |
Bram Moolenaar | 7ebf4e1 | 2018-08-07 20:01:40 +0200 | [diff] [blame] | 786 | /* |
| 787 | * Handle changes to the "Xft/DPI" setting |
| 788 | */ |
| 789 | static void |
| 790 | gtk_settings_xft_dpi_changed_cb(GtkSettings *gtk_settings UNUSED, |
| 791 | GParamSpec *pspec UNUSED, |
| 792 | gpointer data UNUSED) |
| 793 | { |
| 794 | // Create a new PangoContext for this screen, and initialize it |
| 795 | // with the current font if necessary. |
| 796 | if (gui.text_context != NULL) |
| 797 | g_object_unref(gui.text_context); |
| 798 | |
| 799 | gui.text_context = gtk_widget_create_pango_context(gui.mainwin); |
| 800 | pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
| 801 | |
| 802 | if (gui.norm_font != NULL) |
| 803 | { |
| 804 | // force default font |
| 805 | gui_mch_init_font(*p_guifont == NUL ? NULL : p_guifont, FALSE); |
| 806 | gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH); |
| 807 | } |
| 808 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 809 | |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 810 | typedef gboolean timeout_cb_type; |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 811 | |
| 812 | /* |
| 813 | * Start a timer that will invoke the specified callback. |
| 814 | * Returns the ID of the timer. |
| 815 | */ |
| 816 | static guint |
| 817 | timeout_add(int time, timeout_cb_type (*callback)(gpointer), int *flagp) |
| 818 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 819 | return g_timeout_add((guint)time, (GSourceFunc)callback, flagp); |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 820 | } |
| 821 | |
| 822 | static void |
| 823 | timeout_remove(guint timer) |
| 824 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 825 | g_source_remove(timer); |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 829 | /**************************************************************************** |
| 830 | * Focus handlers: |
| 831 | */ |
| 832 | |
| 833 | |
| 834 | /* |
| 835 | * This is a simple state machine: |
| 836 | * BLINK_NONE not blinking at all |
| 837 | * BLINK_OFF blinking, cursor is not shown |
| 838 | * BLINK_ON blinking, cursor is shown |
| 839 | */ |
| 840 | |
| 841 | #define BLINK_NONE 0 |
| 842 | #define BLINK_OFF 1 |
| 843 | #define BLINK_ON 2 |
| 844 | |
| 845 | static int blink_state = BLINK_NONE; |
| 846 | static long_u blink_waittime = 700; |
| 847 | static long_u blink_ontime = 400; |
| 848 | static long_u blink_offtime = 250; |
| 849 | static guint blink_timer = 0; |
| 850 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 851 | #if GTK_CHECK_VERSION(3,0,0) |
| 852 | static gboolean |
| 853 | gui_gtk_is_blink_on(void) |
| 854 | { |
| 855 | return blink_state == BLINK_ON; |
| 856 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 857 | #endif |
| 858 | |
Bram Moolenaar | 703a804 | 2016-06-04 16:24:32 +0200 | [diff] [blame] | 859 | int |
| 860 | gui_mch_is_blinking(void) |
| 861 | { |
| 862 | return blink_state != BLINK_NONE; |
| 863 | } |
| 864 | |
Bram Moolenaar | 9d5d3c9 | 2016-07-07 16:43:02 +0200 | [diff] [blame] | 865 | int |
| 866 | gui_mch_is_blink_off(void) |
| 867 | { |
| 868 | return blink_state == BLINK_OFF; |
| 869 | } |
| 870 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 871 | void |
| 872 | gui_mch_set_blinking(long waittime, long on, long off) |
| 873 | { |
Bram Moolenaar | 0ecbe33 | 2016-03-05 22:40:52 +0100 | [diff] [blame] | 874 | #if GTK_CHECK_VERSION(3,0,0) |
| 875 | if (waittime == 0 || on == 0 || off == 0) |
| 876 | { |
| 877 | blink_mode = FALSE; |
| 878 | |
| 879 | blink_waittime = 700; |
| 880 | blink_ontime = 400; |
| 881 | blink_offtime = 250; |
| 882 | } |
| 883 | else |
| 884 | { |
| 885 | blink_mode = TRUE; |
| 886 | |
| 887 | blink_waittime = waittime; |
| 888 | blink_ontime = on; |
| 889 | blink_offtime = off; |
| 890 | } |
| 891 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 892 | blink_waittime = waittime; |
| 893 | blink_ontime = on; |
| 894 | blink_offtime = off; |
Bram Moolenaar | 0ecbe33 | 2016-03-05 22:40:52 +0100 | [diff] [blame] | 895 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 896 | } |
| 897 | |
| 898 | /* |
| 899 | * Stop the cursor blinking. Show the cursor if it wasn't shown. |
| 900 | */ |
| 901 | void |
Bram Moolenaar | 1dd45fb | 2018-01-31 21:10:01 +0100 | [diff] [blame] | 902 | gui_mch_stop_blink(int may_call_gui_update_cursor) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 903 | { |
| 904 | if (blink_timer) |
| 905 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 906 | timeout_remove(blink_timer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 907 | blink_timer = 0; |
| 908 | } |
Bram Moolenaar | 1dd45fb | 2018-01-31 21:10:01 +0100 | [diff] [blame] | 909 | if (blink_state == BLINK_OFF && may_call_gui_update_cursor) |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 910 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 911 | gui_update_cursor(TRUE, FALSE); |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 912 | gui_mch_flush(); |
| 913 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 914 | blink_state = BLINK_NONE; |
| 915 | } |
| 916 | |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 917 | static timeout_cb_type |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 918 | blink_cb(gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 919 | { |
| 920 | if (blink_state == BLINK_ON) |
| 921 | { |
| 922 | gui_undraw_cursor(); |
| 923 | blink_state = BLINK_OFF; |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 924 | blink_timer = timeout_add(blink_offtime, blink_cb, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 925 | } |
| 926 | else |
| 927 | { |
| 928 | gui_update_cursor(TRUE, FALSE); |
| 929 | blink_state = BLINK_ON; |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 930 | blink_timer = timeout_add(blink_ontime, blink_cb, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 931 | } |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 932 | gui_mch_flush(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 933 | |
| 934 | return FALSE; /* don't happen again */ |
| 935 | } |
| 936 | |
| 937 | /* |
| 938 | * Start the cursor blinking. If it was already blinking, this restarts the |
| 939 | * waiting time and shows the cursor. |
| 940 | */ |
| 941 | void |
| 942 | gui_mch_start_blink(void) |
| 943 | { |
| 944 | if (blink_timer) |
Bram Moolenaar | 7bcdb7d | 2014-04-06 21:08:45 +0200 | [diff] [blame] | 945 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 946 | timeout_remove(blink_timer); |
Bram Moolenaar | 7bcdb7d | 2014-04-06 21:08:45 +0200 | [diff] [blame] | 947 | blink_timer = 0; |
| 948 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 949 | /* Only switch blinking on if none of the times is zero */ |
| 950 | if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus) |
| 951 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 952 | blink_timer = timeout_add(blink_waittime, blink_cb, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 953 | blink_state = BLINK_ON; |
| 954 | gui_update_cursor(TRUE, FALSE); |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 955 | gui_mch_flush(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 956 | } |
| 957 | } |
| 958 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 959 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 960 | enter_notify_event(GtkWidget *widget UNUSED, |
| 961 | GdkEventCrossing *event UNUSED, |
| 962 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 963 | { |
| 964 | if (blink_state == BLINK_NONE) |
| 965 | gui_mch_start_blink(); |
| 966 | |
| 967 | /* make sure keyboard input goes there */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 968 | if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 969 | gtk_widget_grab_focus(gui.drawarea); |
| 970 | |
| 971 | return FALSE; |
| 972 | } |
| 973 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 974 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 975 | leave_notify_event(GtkWidget *widget UNUSED, |
| 976 | GdkEventCrossing *event UNUSED, |
| 977 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 978 | { |
| 979 | if (blink_state != BLINK_NONE) |
Bram Moolenaar | 1dd45fb | 2018-01-31 21:10:01 +0100 | [diff] [blame] | 980 | gui_mch_stop_blink(TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 981 | |
| 982 | return FALSE; |
| 983 | } |
| 984 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 985 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 986 | focus_in_event(GtkWidget *widget, |
| 987 | GdkEventFocus *event UNUSED, |
| 988 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 989 | { |
| 990 | gui_focus_change(TRUE); |
| 991 | |
| 992 | if (blink_state == BLINK_NONE) |
| 993 | gui_mch_start_blink(); |
| 994 | |
Bram Moolenaar | 9c8791f | 2007-09-05 19:47:23 +0000 | [diff] [blame] | 995 | /* make sure keyboard input goes to the draw area (if this is focus for a |
| 996 | * window) */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 997 | if (widget != gui.drawarea) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 998 | gtk_widget_grab_focus(gui.drawarea); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 999 | |
| 1000 | return TRUE; |
| 1001 | } |
| 1002 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1003 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1004 | focus_out_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 1005 | GdkEventFocus *event UNUSED, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1006 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1007 | { |
| 1008 | gui_focus_change(FALSE); |
| 1009 | |
| 1010 | if (blink_state != BLINK_NONE) |
Bram Moolenaar | 1dd45fb | 2018-01-31 21:10:01 +0100 | [diff] [blame] | 1011 | gui_mch_stop_blink(TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1012 | |
| 1013 | return TRUE; |
| 1014 | } |
| 1015 | |
| 1016 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1017 | /* |
| 1018 | * Translate a GDK key value to UTF-8 independently of the current locale. |
| 1019 | * The output is written to string, which must have room for at least 6 bytes |
| 1020 | * plus the NUL terminator. Returns the length in bytes. |
| 1021 | * |
| 1022 | * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use |
| 1023 | * of GdkEventKey::string instead. But event->string is evil; see here why: |
| 1024 | * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey |
| 1025 | */ |
| 1026 | static int |
| 1027 | keyval_to_string(unsigned int keyval, unsigned int state, char_u *string) |
| 1028 | { |
| 1029 | int len; |
| 1030 | guint32 uc; |
| 1031 | |
| 1032 | uc = gdk_keyval_to_unicode(keyval); |
| 1033 | if (uc != 0) |
| 1034 | { |
| 1035 | /* Check for CTRL-foo */ |
| 1036 | if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80) |
| 1037 | { |
| 1038 | /* These mappings look arbitrary at the first glance, but in fact |
| 1039 | * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my |
| 1040 | * machine. The only difference is BS vs. DEL for CTRL-8 (makes |
| 1041 | * more sense and is consistent with usual terminal behaviour). */ |
| 1042 | if (uc >= '@') |
| 1043 | string[0] = uc & 0x1F; |
| 1044 | else if (uc == '2') |
| 1045 | string[0] = NUL; |
| 1046 | else if (uc >= '3' && uc <= '7') |
| 1047 | string[0] = uc ^ 0x28; |
| 1048 | else if (uc == '8') |
| 1049 | string[0] = BS; |
| 1050 | else if (uc == '?') |
| 1051 | string[0] = DEL; |
| 1052 | else |
| 1053 | string[0] = uc; |
| 1054 | len = 1; |
| 1055 | } |
| 1056 | else |
| 1057 | { |
| 1058 | /* Translate a normal key to UTF-8. This doesn't work for dead |
| 1059 | * keys of course, you _have_ to use an input method for that. */ |
| 1060 | len = utf_char2bytes((int)uc, string); |
| 1061 | } |
| 1062 | } |
| 1063 | else |
| 1064 | { |
| 1065 | /* Translate keys which are represented by ASCII control codes in Vim. |
| 1066 | * There are only a few of those; most control keys are translated to |
| 1067 | * special terminal-like control sequences. */ |
| 1068 | len = 1; |
| 1069 | switch (keyval) |
| 1070 | { |
| 1071 | case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab: |
| 1072 | string[0] = TAB; |
| 1073 | break; |
| 1074 | case GDK_Linefeed: |
| 1075 | string[0] = NL; |
| 1076 | break; |
| 1077 | case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter: |
| 1078 | string[0] = CAR; |
| 1079 | break; |
| 1080 | case GDK_Escape: |
| 1081 | string[0] = ESC; |
| 1082 | break; |
| 1083 | default: |
| 1084 | len = 0; |
| 1085 | break; |
| 1086 | } |
| 1087 | } |
| 1088 | string[len] = NUL; |
| 1089 | |
| 1090 | return len; |
| 1091 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1092 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1093 | static int |
| 1094 | modifiers_gdk2vim(guint state) |
| 1095 | { |
| 1096 | int modifiers = 0; |
| 1097 | |
| 1098 | if (state & GDK_SHIFT_MASK) |
| 1099 | modifiers |= MOD_MASK_SHIFT; |
| 1100 | if (state & GDK_CONTROL_MASK) |
| 1101 | modifiers |= MOD_MASK_CTRL; |
| 1102 | if (state & GDK_MOD1_MASK) |
| 1103 | modifiers |= MOD_MASK_ALT; |
Bram Moolenaar | 580061a | 2010-08-13 13:57:13 +0200 | [diff] [blame] | 1104 | #if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1105 | if (state & GDK_SUPER_MASK) |
| 1106 | modifiers |= MOD_MASK_META; |
| 1107 | #endif |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1108 | if (state & GDK_MOD4_MASK) |
| 1109 | modifiers |= MOD_MASK_META; |
| 1110 | |
| 1111 | return modifiers; |
| 1112 | } |
| 1113 | |
| 1114 | static int |
| 1115 | modifiers_gdk2mouse(guint state) |
| 1116 | { |
| 1117 | int modifiers = 0; |
| 1118 | |
| 1119 | if (state & GDK_SHIFT_MASK) |
| 1120 | modifiers |= MOUSE_SHIFT; |
| 1121 | if (state & GDK_CONTROL_MASK) |
| 1122 | modifiers |= MOUSE_CTRL; |
| 1123 | if (state & GDK_MOD1_MASK) |
| 1124 | modifiers |= MOUSE_ALT; |
| 1125 | |
| 1126 | return modifiers; |
| 1127 | } |
| 1128 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1129 | /* |
| 1130 | * Main keyboard handler: |
| 1131 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1132 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1133 | key_press_event(GtkWidget *widget UNUSED, |
| 1134 | GdkEventKey *event, |
| 1135 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1136 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 1137 | /* For GTK+ 2 we know for sure how large the string might get. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1138 | * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */ |
| 1139 | char_u string[32], string2[32]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1140 | guint key_sym; |
| 1141 | int len; |
| 1142 | int i; |
| 1143 | int modifiers; |
| 1144 | int key; |
| 1145 | guint state; |
| 1146 | char_u *s, *d; |
| 1147 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1148 | #if GTK_CHECK_VERSION(3,0,0) |
| 1149 | is_key_pressed = TRUE; |
Bram Moolenaar | 1dd45fb | 2018-01-31 21:10:01 +0100 | [diff] [blame] | 1150 | gui_mch_stop_blink(TRUE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1151 | #endif |
| 1152 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1153 | gui.event_time = event->time; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1154 | key_sym = event->keyval; |
| 1155 | state = event->state; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1156 | |
| 1157 | #ifdef FEAT_XIM |
| 1158 | if (xim_queue_key_press_event(event, TRUE)) |
| 1159 | return TRUE; |
| 1160 | #endif |
| 1161 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1162 | #ifdef SunXK_F36 |
| 1163 | /* |
| 1164 | * These keys have bogus lookup strings, and trapping them here is |
| 1165 | * easier than trying to XRebindKeysym() on them with every possible |
| 1166 | * combination of modifiers. |
| 1167 | */ |
| 1168 | if (key_sym == SunXK_F36 || key_sym == SunXK_F37) |
| 1169 | len = 0; |
| 1170 | else |
| 1171 | #endif |
| 1172 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1173 | len = keyval_to_string(key_sym, state, string2); |
| 1174 | |
| 1175 | /* Careful: convert_input() doesn't handle the NUL character. |
| 1176 | * No need to convert pure ASCII anyway, thus the len > 1 check. */ |
| 1177 | if (len > 1 && input_conv.vc_type != CONV_NONE) |
| 1178 | len = convert_input(string2, len, sizeof(string2)); |
| 1179 | |
| 1180 | s = string2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1181 | d = string; |
| 1182 | for (i = 0; i < len; ++i) |
| 1183 | { |
| 1184 | *d++ = s[i]; |
| 1185 | if (d[-1] == CSI && d + 2 < string + sizeof(string)) |
| 1186 | { |
| 1187 | /* Turn CSI into K_CSI. */ |
| 1188 | *d++ = KS_EXTRA; |
| 1189 | *d++ = (int)KE_CSI; |
| 1190 | } |
| 1191 | } |
| 1192 | len = d - string; |
| 1193 | } |
| 1194 | |
| 1195 | /* Shift-Tab results in Left_Tab, but we want <S-Tab> */ |
| 1196 | if (key_sym == GDK_ISO_Left_Tab) |
| 1197 | { |
| 1198 | key_sym = GDK_Tab; |
| 1199 | state |= GDK_SHIFT_MASK; |
| 1200 | } |
| 1201 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1202 | #ifdef FEAT_MENU |
| 1203 | /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key |
| 1204 | * is a menu shortcut, we ignore everything with the ALT modifier. */ |
| 1205 | if ((state & GDK_MOD1_MASK) |
| 1206 | && gui.menu_is_active |
| 1207 | && (*p_wak == 'y' |
| 1208 | || (*p_wak == 'm' |
| 1209 | && len == 1 |
| 1210 | && gui_is_menu_shortcut(string[0])))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1211 | /* For GTK2 we return false to signify that we haven't handled the |
| 1212 | * keypress, so that gtk will handle the mnemonic or accelerator. */ |
| 1213 | return FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1214 | #endif |
| 1215 | |
| 1216 | /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character |
| 1217 | * that already has the 8th bit set. |
| 1218 | * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT. |
| 1219 | * Don't do this for double-byte encodings, it turns the char into a lead |
| 1220 | * byte. */ |
| 1221 | if (len == 1 |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1222 | && ((state & GDK_MOD1_MASK) |
Bram Moolenaar | 35f330c | 2010-08-15 13:53:58 +0200 | [diff] [blame] | 1223 | #if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1224 | || (state & GDK_SUPER_MASK) |
| 1225 | #endif |
| 1226 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1227 | && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete) |
| 1228 | && (string[0] & 0x80) == 0 |
| 1229 | && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1230 | && !enc_dbcs |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1231 | ) |
| 1232 | { |
| 1233 | string[0] |= 0x80; |
| 1234 | state &= ~GDK_MOD1_MASK; /* don't use it again */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1235 | if (enc_utf8) /* convert to utf-8 */ |
| 1236 | { |
| 1237 | string[1] = string[0] & 0xbf; |
| 1238 | string[0] = ((unsigned)string[0] >> 6) + 0xc0; |
| 1239 | if (string[1] == CSI) |
| 1240 | { |
| 1241 | string[2] = KS_EXTRA; |
| 1242 | string[3] = (int)KE_CSI; |
| 1243 | len = 4; |
| 1244 | } |
| 1245 | else |
| 1246 | len = 2; |
| 1247 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1248 | } |
| 1249 | |
| 1250 | /* Check for special keys. Also do this when len == 1 (key has an ASCII |
| 1251 | * value) to detect backspace, delete and keypad keys. */ |
| 1252 | if (len == 0 || len == 1) |
| 1253 | { |
| 1254 | for (i = 0; special_keys[i].key_sym != 0; i++) |
| 1255 | { |
| 1256 | if (special_keys[i].key_sym == key_sym) |
| 1257 | { |
| 1258 | string[0] = CSI; |
| 1259 | string[1] = special_keys[i].code0; |
| 1260 | string[2] = special_keys[i].code1; |
| 1261 | len = -3; |
| 1262 | break; |
| 1263 | } |
| 1264 | } |
| 1265 | } |
| 1266 | |
| 1267 | if (len == 0) /* Unrecognized key */ |
| 1268 | return TRUE; |
| 1269 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1270 | /* Special keys (and a few others) may have modifiers. Also when using a |
| 1271 | * double-byte encoding (can't set the 8th bit). */ |
| 1272 | if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab |
| 1273 | || key_sym == GDK_Return || key_sym == GDK_Linefeed |
| 1274 | || key_sym == GDK_Escape || key_sym == GDK_KP_Tab |
| 1275 | || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1276 | || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK) |
Bram Moolenaar | 35f330c | 2010-08-15 13:53:58 +0200 | [diff] [blame] | 1277 | #if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1278 | || (state & GDK_SUPER_MASK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1279 | #endif |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 1280 | ))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1281 | { |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1282 | modifiers = modifiers_gdk2vim(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1283 | |
| 1284 | /* |
| 1285 | * For some keys a shift modifier is translated into another key |
| 1286 | * code. |
| 1287 | */ |
| 1288 | if (len == -3) |
| 1289 | key = TO_SPECIAL(string[1], string[2]); |
| 1290 | else |
| 1291 | key = string[0]; |
| 1292 | |
| 1293 | key = simplify_key(key, &modifiers); |
| 1294 | if (key == CSI) |
| 1295 | key = K_CSI; |
| 1296 | if (IS_SPECIAL(key)) |
| 1297 | { |
| 1298 | string[0] = CSI; |
| 1299 | string[1] = K_SECOND(key); |
| 1300 | string[2] = K_THIRD(key); |
| 1301 | len = 3; |
| 1302 | } |
| 1303 | else |
| 1304 | { |
| 1305 | string[0] = key; |
| 1306 | len = 1; |
| 1307 | } |
| 1308 | |
| 1309 | if (modifiers != 0) |
| 1310 | { |
| 1311 | string2[0] = CSI; |
| 1312 | string2[1] = KS_MODIFIER; |
| 1313 | string2[2] = modifiers; |
| 1314 | add_to_input_buf(string2, 3); |
| 1315 | } |
| 1316 | } |
| 1317 | |
| 1318 | if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts) |
| 1319 | || (string[0] == intr_char && intr_char != Ctrl_C))) |
| 1320 | { |
| 1321 | trash_input_buf(); |
| 1322 | got_int = TRUE; |
| 1323 | } |
| 1324 | |
| 1325 | add_to_input_buf(string, len); |
| 1326 | |
| 1327 | /* blank out the pointer if necessary */ |
| 1328 | if (p_mh) |
| 1329 | gui_mch_mousehide(TRUE); |
| 1330 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1331 | return TRUE; |
| 1332 | } |
| 1333 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1334 | #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1335 | static gboolean |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1336 | key_release_event(GtkWidget *widget UNUSED, |
| 1337 | GdkEventKey *event, |
| 1338 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1339 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1340 | # if GTK_CHECK_VERSION(3,0,0) |
| 1341 | is_key_pressed = FALSE; |
| 1342 | gui_mch_start_blink(); |
| 1343 | # endif |
| 1344 | # if defined(FEAT_XIM) |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1345 | gui.event_time = event->time; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1346 | /* |
| 1347 | * GTK+ 2 input methods may do fancy stuff on key release events too. |
| 1348 | * With the default IM for instance, you can enter any UCS code point |
| 1349 | * by holding down CTRL-SHIFT and typing hexadecimal digits. |
| 1350 | */ |
| 1351 | return xim_queue_key_press_event(event, FALSE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1352 | # else |
| 1353 | return TRUE; |
| 1354 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1355 | } |
| 1356 | #endif |
| 1357 | |
| 1358 | |
| 1359 | /**************************************************************************** |
| 1360 | * Selection handlers: |
| 1361 | */ |
| 1362 | |
Bram Moolenaar | 29dfa5a | 2018-03-20 21:24:45 +0100 | [diff] [blame] | 1363 | /* Remember when clip_lose_selection was called from here, we must not call |
| 1364 | * gtk_selection_owner_set() then. */ |
| 1365 | static int in_selection_clear_event = FALSE; |
| 1366 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1367 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1368 | selection_clear_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1369 | GdkEventSelection *event, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1370 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1371 | { |
Bram Moolenaar | 29dfa5a | 2018-03-20 21:24:45 +0100 | [diff] [blame] | 1372 | in_selection_clear_event = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1373 | if (event->selection == clip_plus.gtk_sel_atom) |
| 1374 | clip_lose_selection(&clip_plus); |
| 1375 | else |
| 1376 | clip_lose_selection(&clip_star); |
Bram Moolenaar | 29dfa5a | 2018-03-20 21:24:45 +0100 | [diff] [blame] | 1377 | in_selection_clear_event = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1378 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1379 | return TRUE; |
| 1380 | } |
| 1381 | |
| 1382 | #define RS_NONE 0 /* selection_received_cb() not called yet */ |
| 1383 | #define RS_OK 1 /* selection_received_cb() called and OK */ |
| 1384 | #define RS_FAIL 2 /* selection_received_cb() called and failed */ |
| 1385 | static int received_selection = RS_NONE; |
| 1386 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1387 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1388 | selection_received_cb(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1389 | GtkSelectionData *data, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1390 | guint time_ UNUSED, |
| 1391 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1392 | { |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1393 | Clipboard_T *cbd; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1394 | char_u *text; |
| 1395 | char_u *tmpbuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1396 | guchar *tmpbuf_utf8 = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1397 | int len; |
Bram Moolenaar | d44347f | 2011-06-19 01:14:29 +0200 | [diff] [blame] | 1398 | int motion_type = MAUTO; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1399 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1400 | if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1401 | cbd = &clip_plus; |
| 1402 | else |
| 1403 | cbd = &clip_star; |
| 1404 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1405 | text = (char_u *)gtk_selection_data_get_data(data); |
| 1406 | len = gtk_selection_data_get_length(data); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1407 | |
| 1408 | if (text == NULL || len <= 0) |
| 1409 | { |
| 1410 | received_selection = RS_FAIL; |
| 1411 | /* clip_free_selection(cbd); ??? */ |
| 1412 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1413 | return; |
| 1414 | } |
| 1415 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1416 | if (gtk_selection_data_get_data_type(data) == vim_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1417 | { |
| 1418 | motion_type = *text++; |
| 1419 | --len; |
| 1420 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1421 | else if (gtk_selection_data_get_data_type(data) == vimenc_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1422 | { |
| 1423 | char_u *enc; |
| 1424 | vimconv_T conv; |
| 1425 | |
| 1426 | motion_type = *text++; |
| 1427 | --len; |
| 1428 | |
| 1429 | enc = text; |
| 1430 | text += STRLEN(text) + 1; |
| 1431 | len -= text - enc; |
| 1432 | |
| 1433 | /* If the encoding of the text is different from 'encoding', attempt |
| 1434 | * converting it. */ |
| 1435 | conv.vc_type = CONV_NONE; |
| 1436 | convert_setup(&conv, enc, p_enc); |
| 1437 | if (conv.vc_type != CONV_NONE) |
| 1438 | { |
| 1439 | tmpbuf = string_convert(&conv, text, &len); |
| 1440 | if (tmpbuf != NULL) |
| 1441 | text = tmpbuf; |
| 1442 | convert_setup(&conv, NULL, NULL); |
| 1443 | } |
| 1444 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1445 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1446 | /* gtk_selection_data_get_text() handles all the nasty details |
| 1447 | * and targets and encodings etc. This rocks so hard. */ |
| 1448 | else |
| 1449 | { |
| 1450 | tmpbuf_utf8 = gtk_selection_data_get_text(data); |
| 1451 | if (tmpbuf_utf8 != NULL) |
| 1452 | { |
| 1453 | len = STRLEN(tmpbuf_utf8); |
| 1454 | if (input_conv.vc_type != CONV_NONE) |
| 1455 | { |
| 1456 | tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len); |
| 1457 | if (tmpbuf != NULL) |
| 1458 | text = tmpbuf; |
| 1459 | } |
| 1460 | else |
| 1461 | text = tmpbuf_utf8; |
| 1462 | } |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1463 | else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe) |
| 1464 | { |
| 1465 | vimconv_T conv; |
| 1466 | |
| 1467 | /* UTF-16, we get this for HTML */ |
| 1468 | conv.vc_type = CONV_NONE; |
| 1469 | convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE); |
| 1470 | |
| 1471 | if (conv.vc_type != CONV_NONE) |
| 1472 | { |
| 1473 | text += 2; |
| 1474 | len -= 2; |
| 1475 | tmpbuf = string_convert(&conv, text, &len); |
| 1476 | convert_setup(&conv, NULL, NULL); |
| 1477 | } |
| 1478 | if (tmpbuf != NULL) |
| 1479 | text = tmpbuf; |
| 1480 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1481 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1482 | |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 1483 | /* Chop off any trailing NUL bytes. OpenOffice sends these. */ |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 1484 | while (len > 0 && text[len - 1] == NUL) |
| 1485 | --len; |
| 1486 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1487 | clip_yank_selection(motion_type, text, (long)len, cbd); |
| 1488 | received_selection = RS_OK; |
| 1489 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1490 | g_free(tmpbuf_utf8); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1491 | } |
| 1492 | |
| 1493 | /* |
| 1494 | * Prepare our selection data for passing it to the external selection |
| 1495 | * client. |
| 1496 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1497 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1498 | selection_get_cb(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1499 | GtkSelectionData *selection_data, |
| 1500 | guint info, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1501 | guint time_ UNUSED, |
| 1502 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1503 | { |
| 1504 | char_u *string; |
| 1505 | char_u *tmpbuf; |
| 1506 | long_u tmplen; |
| 1507 | int length; |
| 1508 | int motion_type; |
| 1509 | GdkAtom type; |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1510 | Clipboard_T *cbd; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1511 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1512 | if (gtk_selection_data_get_selection(selection_data) |
| 1513 | == clip_plus.gtk_sel_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1514 | cbd = &clip_plus; |
| 1515 | else |
| 1516 | cbd = &clip_star; |
| 1517 | |
| 1518 | if (!cbd->owned) |
| 1519 | return; /* Shouldn't ever happen */ |
| 1520 | |
| 1521 | if (info != (guint)TARGET_STRING |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1522 | && (!clip_html || info != (guint)TARGET_HTML) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1523 | && info != (guint)TARGET_UTF8_STRING |
| 1524 | && info != (guint)TARGET_VIMENC |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1525 | && info != (guint)TARGET_VIM |
| 1526 | && info != (guint)TARGET_COMPOUND_TEXT |
| 1527 | && info != (guint)TARGET_TEXT) |
| 1528 | return; |
| 1529 | |
| 1530 | /* get the selection from the '*'/'+' register */ |
| 1531 | clip_get_selection(cbd); |
| 1532 | |
| 1533 | motion_type = clip_convert_selection(&string, &tmplen, cbd); |
| 1534 | if (motion_type < 0 || string == NULL) |
| 1535 | return; |
| 1536 | /* Due to int arguments we can't handle more than G_MAXINT. Also |
| 1537 | * reserve one extra byte for NUL or the motion type; just in case. |
| 1538 | * (Not that pasting 2G of text is ever going to work, but... ;-) */ |
| 1539 | length = MIN(tmplen, (long_u)(G_MAXINT - 1)); |
| 1540 | |
| 1541 | if (info == (guint)TARGET_VIM) |
| 1542 | { |
Bram Moolenaar | 964b374 | 2019-05-24 18:54:09 +0200 | [diff] [blame] | 1543 | tmpbuf = alloc(length + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1544 | if (tmpbuf != NULL) |
| 1545 | { |
| 1546 | tmpbuf[0] = motion_type; |
| 1547 | mch_memmove(tmpbuf + 1, string, (size_t)length); |
| 1548 | } |
| 1549 | /* For our own format, the first byte contains the motion type */ |
| 1550 | ++length; |
| 1551 | vim_free(string); |
| 1552 | string = tmpbuf; |
| 1553 | type = vim_atom; |
| 1554 | } |
| 1555 | |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1556 | else if (info == (guint)TARGET_HTML) |
| 1557 | { |
| 1558 | vimconv_T conv; |
| 1559 | |
| 1560 | /* Since we get utf-16, we probably should set it as well. */ |
| 1561 | conv.vc_type = CONV_NONE; |
| 1562 | convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE); |
| 1563 | if (conv.vc_type != CONV_NONE) |
| 1564 | { |
| 1565 | tmpbuf = string_convert(&conv, string, &length); |
| 1566 | convert_setup(&conv, NULL, NULL); |
| 1567 | vim_free(string); |
| 1568 | string = tmpbuf; |
| 1569 | } |
| 1570 | |
| 1571 | /* Prepend the BOM: "fffe" */ |
| 1572 | if (string != NULL) |
| 1573 | { |
| 1574 | tmpbuf = alloc(length + 2); |
Bram Moolenaar | 6ee9658 | 2019-04-27 22:06:37 +0200 | [diff] [blame] | 1575 | if (tmpbuf != NULL) |
| 1576 | { |
| 1577 | tmpbuf[0] = 0xff; |
| 1578 | tmpbuf[1] = 0xfe; |
| 1579 | mch_memmove(tmpbuf + 2, string, (size_t)length); |
| 1580 | vim_free(string); |
| 1581 | string = tmpbuf; |
| 1582 | length += 2; |
| 1583 | } |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1584 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1585 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 1586 | /* Looks redundant even for GTK2 because these values are |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1587 | * overwritten by gtk_selection_data_set() that follows. */ |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1588 | selection_data->type = selection_data->target; |
| 1589 | selection_data->format = 16; /* 16 bits per char */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1590 | #endif |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1591 | gtk_selection_data_set(selection_data, html_atom, 16, |
| 1592 | string, length); |
| 1593 | vim_free(string); |
| 1594 | } |
| 1595 | return; |
| 1596 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1597 | else if (info == (guint)TARGET_VIMENC) |
| 1598 | { |
| 1599 | int l = STRLEN(p_enc); |
| 1600 | |
| 1601 | /* contents: motion_type 'encoding' NUL text */ |
Bram Moolenaar | 964b374 | 2019-05-24 18:54:09 +0200 | [diff] [blame] | 1602 | tmpbuf = alloc(length + l + 2); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1603 | if (tmpbuf != NULL) |
| 1604 | { |
| 1605 | tmpbuf[0] = motion_type; |
| 1606 | STRCPY(tmpbuf + 1, p_enc); |
| 1607 | mch_memmove(tmpbuf + l + 2, string, (size_t)length); |
Bram Moolenaar | 6ee9658 | 2019-04-27 22:06:37 +0200 | [diff] [blame] | 1608 | length += l + 2; |
| 1609 | vim_free(string); |
| 1610 | string = tmpbuf; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1611 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1612 | type = vimenc_atom; |
| 1613 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1614 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1615 | /* gtk_selection_data_set_text() handles everything for us. This is |
| 1616 | * so easy and simple and cool, it'd be insane not to use it. */ |
| 1617 | else |
| 1618 | { |
| 1619 | if (output_conv.vc_type != CONV_NONE) |
| 1620 | { |
| 1621 | tmpbuf = string_convert(&output_conv, string, &length); |
| 1622 | vim_free(string); |
| 1623 | if (tmpbuf == NULL) |
| 1624 | return; |
| 1625 | string = tmpbuf; |
| 1626 | } |
| 1627 | /* Validate the string to avoid runtime warnings */ |
| 1628 | if (g_utf8_validate((const char *)string, (gssize)length, NULL)) |
| 1629 | { |
| 1630 | gtk_selection_data_set_text(selection_data, |
| 1631 | (const char *)string, length); |
| 1632 | } |
| 1633 | vim_free(string); |
| 1634 | return; |
| 1635 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1636 | |
| 1637 | if (string != NULL) |
| 1638 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1639 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 1640 | /* Looks redundant even for GTK2 because these values are |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1641 | * overwritten by gtk_selection_data_set() that follows. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1642 | selection_data->type = selection_data->target; |
| 1643 | selection_data->format = 8; /* 8 bits per char */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1644 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1645 | gtk_selection_data_set(selection_data, type, 8, string, length); |
| 1646 | vim_free(string); |
| 1647 | } |
| 1648 | } |
| 1649 | |
| 1650 | /* |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 1651 | * Check if the GUI can be started. Called before gvimrc is sourced and |
| 1652 | * before fork(). |
| 1653 | * Return OK or FAIL. |
| 1654 | */ |
| 1655 | int |
Bram Moolenaar | 717e196 | 2016-08-10 21:28:44 +0200 | [diff] [blame] | 1656 | gui_mch_early_init_check(int give_message) |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 1657 | { |
| 1658 | char_u *p; |
| 1659 | |
| 1660 | /* Guess that when $DISPLAY isn't set the GUI can't start. */ |
| 1661 | p = mch_getenv((char_u *)"DISPLAY"); |
| 1662 | if (p == NULL || *p == NUL) |
| 1663 | { |
| 1664 | gui.dying = TRUE; |
Bram Moolenaar | 717e196 | 2016-08-10 21:28:44 +0200 | [diff] [blame] | 1665 | if (give_message) |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 1666 | emsg(_((char *)e_opendisp)); |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 1667 | return FAIL; |
| 1668 | } |
| 1669 | return OK; |
| 1670 | } |
| 1671 | |
| 1672 | /* |
| 1673 | * Check if the GUI can be started. Called before gvimrc is sourced but after |
| 1674 | * fork(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1675 | * Return OK or FAIL. |
| 1676 | */ |
| 1677 | int |
| 1678 | gui_mch_init_check(void) |
| 1679 | { |
Bram Moolenaar | 3a466a8 | 2016-01-19 17:47:25 +0100 | [diff] [blame] | 1680 | #ifdef USE_GRESOURCE |
| 1681 | static int res_registered = FALSE; |
| 1682 | |
| 1683 | if (!res_registered) |
| 1684 | { |
| 1685 | /* Call this function in the GUI process; otherwise, the resources |
| 1686 | * won't be available. Don't call it twice. */ |
| 1687 | res_registered = TRUE; |
| 1688 | gui_gtk_register_resource(); |
| 1689 | } |
| 1690 | #endif |
| 1691 | |
Bram Moolenaar | f80663f | 2016-04-05 21:56:06 +0200 | [diff] [blame] | 1692 | #if GTK_CHECK_VERSION(3,10,0) |
| 1693 | /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk |
| 1694 | * support for other backends such as Wayland. */ |
| 1695 | gdk_set_allowed_backends ("x11"); |
| 1696 | #endif |
| 1697 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1698 | #ifdef FEAT_GUI_GNOME |
| 1699 | if (gtk_socket_id == 0) |
| 1700 | using_gnome = 1; |
| 1701 | #endif |
| 1702 | |
Bram Moolenaar | 8dd7901 | 2013-05-21 12:52:04 +0200 | [diff] [blame] | 1703 | /* This defaults to argv[0], but we want it to match the name of the |
| 1704 | * shipped gvim.desktop so that Vim's windows can be associated with this |
| 1705 | * file. */ |
| 1706 | g_set_prgname("gvim"); |
| 1707 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1708 | /* Don't use gtk_init() or gnome_init(), it exits on failure. */ |
| 1709 | if (!gtk_init_check(&gui_argc, &gui_argv)) |
| 1710 | { |
| 1711 | gui.dying = TRUE; |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 1712 | emsg(_((char *)e_opendisp)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1713 | return FAIL; |
| 1714 | } |
| 1715 | |
| 1716 | return OK; |
| 1717 | } |
| 1718 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1719 | /**************************************************************************** |
| 1720 | * Mouse handling callbacks |
| 1721 | */ |
| 1722 | |
| 1723 | |
| 1724 | static guint mouse_click_timer = 0; |
| 1725 | static int mouse_timed_out = TRUE; |
| 1726 | |
| 1727 | /* |
| 1728 | * Timer used to recognize multiple clicks of the mouse button |
| 1729 | */ |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 1730 | static timeout_cb_type |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1731 | mouse_click_timer_cb(gpointer data) |
| 1732 | { |
| 1733 | /* we don't use this information currently */ |
| 1734 | int *timed_out = (int *) data; |
| 1735 | |
| 1736 | *timed_out = TRUE; |
| 1737 | return FALSE; /* don't happen again */ |
| 1738 | } |
| 1739 | |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 1740 | static guint motion_repeat_timer = 0; |
| 1741 | static int motion_repeat_offset = FALSE; |
| 1742 | static timeout_cb_type motion_repeat_timer_cb(gpointer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1743 | |
| 1744 | static void |
| 1745 | process_motion_notify(int x, int y, GdkModifierType state) |
| 1746 | { |
| 1747 | int button; |
| 1748 | int_u vim_modifiers; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1749 | GtkAllocation allocation; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1750 | |
| 1751 | button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | |
| 1752 | GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | |
| 1753 | GDK_BUTTON5_MASK)) |
| 1754 | ? MOUSE_DRAG : ' '; |
| 1755 | |
| 1756 | /* If our pointer is currently hidden, then we should show it. */ |
| 1757 | gui_mch_mousehide(FALSE); |
| 1758 | |
| 1759 | /* Just moving the rodent above the drawing area without any button |
| 1760 | * being pressed. */ |
| 1761 | if (button != MOUSE_DRAG) |
| 1762 | { |
| 1763 | gui_mouse_moved(x, y); |
| 1764 | return; |
| 1765 | } |
| 1766 | |
| 1767 | /* translate modifier coding between the main engine and GTK */ |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1768 | vim_modifiers = modifiers_gdk2mouse(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1769 | |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 1770 | /* inform the editor engine about the occurrence of this event */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1771 | gui_send_mouse_event(button, x, y, FALSE, vim_modifiers); |
| 1772 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1773 | /* |
| 1774 | * Auto repeat timer handling. |
| 1775 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1776 | gtk_widget_get_allocation(gui.drawarea, &allocation); |
| 1777 | |
| 1778 | if (x < 0 || y < 0 |
| 1779 | || x >= allocation.width |
| 1780 | || y >= allocation.height) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1781 | { |
| 1782 | |
| 1783 | int dx; |
| 1784 | int dy; |
| 1785 | int offshoot; |
| 1786 | int delay = 10; |
| 1787 | |
| 1788 | /* Calculate the maximal distance of the cursor from the drawing area. |
| 1789 | * (offshoot can't become negative here!). |
| 1790 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1791 | dx = x < 0 ? -x : x - allocation.width; |
| 1792 | dy = y < 0 ? -y : y - allocation.height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1793 | |
| 1794 | offshoot = dx > dy ? dx : dy; |
| 1795 | |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1796 | /* Make a linearly decaying timer delay with a threshold of 5 at a |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1797 | * distance of 127 pixels from the main window. |
| 1798 | * |
| 1799 | * One could think endlessly about the most ergonomic variant here. |
| 1800 | * For example it could make sense to calculate the distance from the |
| 1801 | * drags start instead... |
| 1802 | * |
| 1803 | * Maybe a parabolic interpolation would suite us better here too... |
| 1804 | */ |
| 1805 | if (offshoot > 127) |
| 1806 | { |
| 1807 | /* 5 appears to be somehow near to my perceptual limits :-). */ |
| 1808 | delay = 5; |
| 1809 | } |
| 1810 | else |
| 1811 | { |
| 1812 | delay = (130 * (127 - offshoot)) / 127 + 5; |
| 1813 | } |
| 1814 | |
| 1815 | /* shoot again */ |
| 1816 | if (!motion_repeat_timer) |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 1817 | motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb, |
| 1818 | NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1819 | } |
| 1820 | } |
| 1821 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1822 | #if GTK_CHECK_VERSION(3,0,0) |
| 1823 | static GdkDevice * |
| 1824 | gui_gtk_get_pointer_device(GtkWidget *widget) |
| 1825 | { |
| 1826 | GdkWindow * const win = gtk_widget_get_window(widget); |
| 1827 | GdkDisplay * const dpy = gdk_window_get_display(win); |
Bram Moolenaar | 30e12d2 | 2016-04-17 20:49:53 +0200 | [diff] [blame] | 1828 | # if GTK_CHECK_VERSION(3,20,0) |
| 1829 | GdkSeat * const seat = gdk_display_get_default_seat(dpy); |
| 1830 | return gdk_seat_get_pointer(seat); |
| 1831 | # else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1832 | GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy); |
| 1833 | return gdk_device_manager_get_client_pointer(mngr); |
Bram Moolenaar | 30e12d2 | 2016-04-17 20:49:53 +0200 | [diff] [blame] | 1834 | # endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1835 | } |
| 1836 | |
| 1837 | static GdkWindow * |
| 1838 | gui_gtk_get_pointer(GtkWidget *widget, |
| 1839 | gint *x, |
| 1840 | gint *y, |
| 1841 | GdkModifierType *state) |
| 1842 | { |
| 1843 | GdkWindow * const win = gtk_widget_get_window(widget); |
| 1844 | GdkDevice * const dev = gui_gtk_get_pointer_device(widget); |
| 1845 | return gdk_window_get_device_position(win, dev , x, y, state); |
| 1846 | } |
| 1847 | |
Bram Moolenaar | 2369c15 | 2016-03-04 23:08:25 +0100 | [diff] [blame] | 1848 | # if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1849 | static GdkWindow * |
| 1850 | gui_gtk_window_at_position(GtkWidget *widget, |
| 1851 | gint *x, |
| 1852 | gint *y) |
| 1853 | { |
| 1854 | GdkDevice * const dev = gui_gtk_get_pointer_device(widget); |
| 1855 | return gdk_device_get_window_at_position(dev, x, y); |
| 1856 | } |
Bram Moolenaar | 2369c15 | 2016-03-04 23:08:25 +0100 | [diff] [blame] | 1857 | # endif |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 1858 | #else /* !GTK_CHECK_VERSION(3,0,0) */ |
| 1859 | # define gui_gtk_get_pointer(wid, x, y, s) \ |
| 1860 | gdk_window_get_pointer((wid)->window, x, y, s) |
| 1861 | # define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1862 | #endif |
| 1863 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1864 | /* |
| 1865 | * Timer used to recognize multiple clicks of the mouse button. |
| 1866 | */ |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 1867 | static timeout_cb_type |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1868 | motion_repeat_timer_cb(gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1869 | { |
| 1870 | int x; |
| 1871 | int y; |
| 1872 | GdkModifierType state; |
| 1873 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1874 | gui_gtk_get_pointer(gui.drawarea, &x, &y, &state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1875 | |
| 1876 | if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | |
| 1877 | GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | |
| 1878 | GDK_BUTTON5_MASK))) |
| 1879 | { |
| 1880 | motion_repeat_timer = 0; |
| 1881 | return FALSE; |
| 1882 | } |
| 1883 | |
| 1884 | /* If there already is a mouse click in the input buffer, wait another |
| 1885 | * time (otherwise we would create a backlog of clicks) */ |
| 1886 | if (vim_used_in_input_buf() > 10) |
| 1887 | return TRUE; |
| 1888 | |
| 1889 | motion_repeat_timer = 0; |
| 1890 | |
| 1891 | /* |
| 1892 | * Fake a motion event. |
| 1893 | * Trick: Pretend the mouse moved to the next character on every other |
| 1894 | * event, otherwise drag events will be discarded, because they are still |
| 1895 | * in the same character. |
| 1896 | */ |
| 1897 | if (motion_repeat_offset) |
| 1898 | x += gui.char_width; |
| 1899 | |
| 1900 | motion_repeat_offset = !motion_repeat_offset; |
| 1901 | process_motion_notify(x, y, state); |
| 1902 | |
| 1903 | /* Don't happen again. We will get reinstalled in the synthetic event |
| 1904 | * if needed -- thus repeating should still work. */ |
| 1905 | return FALSE; |
| 1906 | } |
| 1907 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1908 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1909 | motion_notify_event(GtkWidget *widget, |
| 1910 | GdkEventMotion *event, |
| 1911 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1912 | { |
| 1913 | if (event->is_hint) |
| 1914 | { |
| 1915 | int x; |
| 1916 | int y; |
| 1917 | GdkModifierType state; |
| 1918 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1919 | gui_gtk_get_pointer(widget, &x, &y, &state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1920 | process_motion_notify(x, y, state); |
| 1921 | } |
| 1922 | else |
| 1923 | { |
| 1924 | process_motion_notify((int)event->x, (int)event->y, |
| 1925 | (GdkModifierType)event->state); |
| 1926 | } |
| 1927 | |
| 1928 | return TRUE; /* handled */ |
| 1929 | } |
| 1930 | |
| 1931 | |
| 1932 | /* |
| 1933 | * Mouse button handling. Note please that we are capturing multiple click's |
| 1934 | * by our own timeout mechanism instead of the one provided by GTK+ itself. |
| 1935 | * This is due to the way the generic VIM code is recognizing multiple clicks. |
| 1936 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1937 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1938 | button_press_event(GtkWidget *widget, |
| 1939 | GdkEventButton *event, |
| 1940 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1941 | { |
| 1942 | int button; |
| 1943 | int repeated_click = FALSE; |
| 1944 | int x, y; |
| 1945 | int_u vim_modifiers; |
| 1946 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1947 | gui.event_time = event->time; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 1948 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1949 | /* Make sure we have focus now we've been selected */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1950 | if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1951 | gtk_widget_grab_focus(widget); |
| 1952 | |
| 1953 | /* |
| 1954 | * Don't let additional events about multiple clicks send by GTK to us |
| 1955 | * after the initial button press event confuse us. |
| 1956 | */ |
| 1957 | if (event->type != GDK_BUTTON_PRESS) |
| 1958 | return FALSE; |
| 1959 | |
| 1960 | x = event->x; |
| 1961 | y = event->y; |
| 1962 | |
| 1963 | /* Handle multiple clicks */ |
| 1964 | if (!mouse_timed_out && mouse_click_timer) |
| 1965 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 1966 | timeout_remove(mouse_click_timer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1967 | mouse_click_timer = 0; |
| 1968 | repeated_click = TRUE; |
| 1969 | } |
| 1970 | |
| 1971 | mouse_timed_out = FALSE; |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 1972 | mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb, |
| 1973 | &mouse_timed_out); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1974 | |
| 1975 | switch (event->button) |
| 1976 | { |
Bram Moolenaar | 88e484b | 2015-11-24 15:38:44 +0100 | [diff] [blame] | 1977 | /* Keep in sync with gui_x11.c. |
| 1978 | * Buttons 4-7 are handled in scroll_event() */ |
| 1979 | case 1: button = MOUSE_LEFT; break; |
| 1980 | case 2: button = MOUSE_MIDDLE; break; |
| 1981 | case 3: button = MOUSE_RIGHT; break; |
| 1982 | case 8: button = MOUSE_X1; break; |
| 1983 | case 9: button = MOUSE_X2; break; |
| 1984 | default: |
| 1985 | return FALSE; /* Unknown button */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1986 | } |
| 1987 | |
| 1988 | #ifdef FEAT_XIM |
| 1989 | /* cancel any preediting */ |
| 1990 | if (im_is_preediting()) |
| 1991 | xim_reset(); |
| 1992 | #endif |
| 1993 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1994 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1995 | |
| 1996 | gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1997 | |
| 1998 | return TRUE; |
| 1999 | } |
| 2000 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2001 | /* |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 2002 | * GTK+ 2 abstracts scrolling via the GdkEventScroll. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2003 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2004 | static gboolean |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2005 | scroll_event(GtkWidget *widget, |
| 2006 | GdkEventScroll *event, |
| 2007 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2008 | { |
| 2009 | int button; |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2010 | int_u vim_modifiers; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2011 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2012 | if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2013 | gtk_widget_grab_focus(widget); |
| 2014 | |
| 2015 | switch (event->direction) |
| 2016 | { |
| 2017 | case GDK_SCROLL_UP: |
| 2018 | button = MOUSE_4; |
| 2019 | break; |
| 2020 | case GDK_SCROLL_DOWN: |
| 2021 | button = MOUSE_5; |
| 2022 | break; |
Bram Moolenaar | 8d9b40e | 2010-07-25 15:49:07 +0200 | [diff] [blame] | 2023 | case GDK_SCROLL_LEFT: |
| 2024 | button = MOUSE_7; |
| 2025 | break; |
| 2026 | case GDK_SCROLL_RIGHT: |
| 2027 | button = MOUSE_6; |
| 2028 | break; |
| 2029 | default: /* This shouldn't happen */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2030 | return FALSE; |
| 2031 | } |
| 2032 | |
| 2033 | # ifdef FEAT_XIM |
| 2034 | /* cancel any preediting */ |
| 2035 | if (im_is_preediting()) |
| 2036 | xim_reset(); |
| 2037 | # endif |
| 2038 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2039 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2040 | |
| 2041 | gui_send_mouse_event(button, (int)event->x, (int)event->y, |
| 2042 | FALSE, vim_modifiers); |
| 2043 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2044 | return TRUE; |
| 2045 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2046 | |
| 2047 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2048 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2049 | button_release_event(GtkWidget *widget UNUSED, |
| 2050 | GdkEventButton *event, |
| 2051 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2052 | { |
| 2053 | int x, y; |
| 2054 | int_u vim_modifiers; |
| 2055 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 2056 | gui.event_time = event->time; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2057 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2058 | /* Remove any motion "machine gun" timers used for automatic further |
| 2059 | extension of allocation areas if outside of the applications window |
| 2060 | area .*/ |
| 2061 | if (motion_repeat_timer) |
| 2062 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 2063 | timeout_remove(motion_repeat_timer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2064 | motion_repeat_timer = 0; |
| 2065 | } |
| 2066 | |
| 2067 | x = event->x; |
| 2068 | y = event->y; |
| 2069 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2070 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2071 | |
| 2072 | gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2073 | |
| 2074 | return TRUE; |
| 2075 | } |
| 2076 | |
| 2077 | |
| 2078 | #ifdef FEAT_DND |
| 2079 | /**************************************************************************** |
| 2080 | * Drag aNd Drop support handlers. |
| 2081 | */ |
| 2082 | |
| 2083 | /* |
| 2084 | * Count how many items there may be and separate them with a NUL. |
| 2085 | * Apparently the items are separated with \r\n. This is not documented, |
| 2086 | * thus be careful not to go past the end. Also allow separation with |
| 2087 | * NUL characters. |
| 2088 | */ |
| 2089 | static int |
| 2090 | count_and_decode_uri_list(char_u *out, char_u *raw, int len) |
| 2091 | { |
| 2092 | int i; |
| 2093 | char_u *p = out; |
| 2094 | int count = 0; |
| 2095 | |
| 2096 | for (i = 0; i < len; ++i) |
| 2097 | { |
| 2098 | if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r') |
| 2099 | { |
| 2100 | if (p > out && p[-1] != NUL) |
| 2101 | { |
| 2102 | ++count; |
| 2103 | *p++ = NUL; |
| 2104 | } |
| 2105 | } |
| 2106 | else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0) |
| 2107 | { |
| 2108 | *p++ = hexhex2nr(raw + i + 1); |
| 2109 | i += 2; |
| 2110 | } |
| 2111 | else |
| 2112 | *p++ = raw[i]; |
| 2113 | } |
| 2114 | if (p > out && p[-1] != NUL) |
| 2115 | { |
| 2116 | *p = NUL; /* last item didn't have \r or \n */ |
| 2117 | ++count; |
| 2118 | } |
| 2119 | return count; |
| 2120 | } |
| 2121 | |
| 2122 | /* |
| 2123 | * Parse NUL separated "src" strings. Make it an array "outlist" form. On |
| 2124 | * this process, URI which protocol is not "file:" are removed. Return |
| 2125 | * length of array (less than "max"). |
| 2126 | */ |
| 2127 | static int |
| 2128 | filter_uri_list(char_u **outlist, int max, char_u *src) |
| 2129 | { |
| 2130 | int i, j; |
| 2131 | |
| 2132 | for (i = j = 0; i < max; ++i) |
| 2133 | { |
| 2134 | outlist[i] = NULL; |
| 2135 | if (STRNCMP(src, "file:", 5) == 0) |
| 2136 | { |
| 2137 | src += 5; |
| 2138 | if (STRNCMP(src, "//localhost", 11) == 0) |
| 2139 | src += 11; |
| 2140 | while (src[0] == '/' && src[1] == '/') |
| 2141 | ++src; |
| 2142 | outlist[j++] = vim_strsave(src); |
| 2143 | } |
| 2144 | src += STRLEN(src) + 1; |
| 2145 | } |
| 2146 | return j; |
| 2147 | } |
| 2148 | |
| 2149 | static char_u ** |
| 2150 | parse_uri_list(int *count, char_u *data, int len) |
| 2151 | { |
| 2152 | int n = 0; |
| 2153 | char_u *tmp = NULL; |
Bram Moolenaar | 945ec09 | 2016-06-08 21:17:43 +0200 | [diff] [blame] | 2154 | char_u **array = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2155 | |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 2156 | if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2157 | { |
| 2158 | n = count_and_decode_uri_list(tmp, data, len); |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 2159 | if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2160 | n = filter_uri_list(array, n, tmp); |
| 2161 | } |
| 2162 | vim_free(tmp); |
| 2163 | *count = n; |
| 2164 | return array; |
| 2165 | } |
| 2166 | |
| 2167 | static void |
| 2168 | drag_handle_uri_list(GdkDragContext *context, |
| 2169 | GtkSelectionData *data, |
| 2170 | guint time_, |
| 2171 | GdkModifierType state, |
| 2172 | gint x, |
| 2173 | gint y) |
| 2174 | { |
| 2175 | char_u **fnames; |
| 2176 | int nfiles = 0; |
| 2177 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2178 | fnames = parse_uri_list(&nfiles, |
| 2179 | (char_u *)gtk_selection_data_get_data(data), |
| 2180 | gtk_selection_data_get_length(data)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2181 | |
| 2182 | if (fnames != NULL && nfiles > 0) |
| 2183 | { |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2184 | int_u modifiers; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2185 | |
| 2186 | gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ |
| 2187 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2188 | modifiers = modifiers_gdk2mouse(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2189 | |
| 2190 | gui_handle_drop(x, y, modifiers, fnames, nfiles); |
| 2191 | } |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 2192 | else |
| 2193 | vim_free(fnames); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2194 | } |
| 2195 | |
| 2196 | static void |
| 2197 | drag_handle_text(GdkDragContext *context, |
| 2198 | GtkSelectionData *data, |
| 2199 | guint time_, |
| 2200 | GdkModifierType state) |
| 2201 | { |
| 2202 | char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP}; |
| 2203 | char_u *text; |
| 2204 | int len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2205 | char_u *tmpbuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2206 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2207 | text = (char_u *)gtk_selection_data_get_data(data); |
| 2208 | len = gtk_selection_data_get_length(data); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2209 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2210 | if (gtk_selection_data_get_data_type(data) == utf8_string_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2211 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2212 | if (input_conv.vc_type != CONV_NONE) |
| 2213 | tmpbuf = string_convert(&input_conv, text, &len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2214 | if (tmpbuf != NULL) |
| 2215 | text = tmpbuf; |
| 2216 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2217 | |
| 2218 | dnd_yank_drag_data(text, (long)len); |
| 2219 | gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2220 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2221 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2222 | dropkey[2] = modifiers_gdk2vim(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2223 | |
| 2224 | if (dropkey[2] != 0) |
| 2225 | add_to_input_buf(dropkey, (int)sizeof(dropkey)); |
| 2226 | else |
| 2227 | add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2228 | } |
| 2229 | |
| 2230 | /* |
| 2231 | * DND receiver. |
| 2232 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2233 | static void |
| 2234 | drag_data_received_cb(GtkWidget *widget, |
| 2235 | GdkDragContext *context, |
| 2236 | gint x, |
| 2237 | gint y, |
| 2238 | GtkSelectionData *data, |
| 2239 | guint info, |
| 2240 | guint time_, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2241 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2242 | { |
| 2243 | GdkModifierType state; |
| 2244 | |
| 2245 | /* Guard against trash */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2246 | const guchar * const data_data = gtk_selection_data_get_data(data); |
| 2247 | const gint data_length = gtk_selection_data_get_length(data); |
| 2248 | const gint data_format = gtk_selection_data_get_format(data); |
| 2249 | |
| 2250 | if (data_data == NULL |
| 2251 | || data_length <= 0 |
| 2252 | || data_format != 8 |
| 2253 | || data_data[data_length] != '\0') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2254 | { |
| 2255 | gtk_drag_finish(context, FALSE, FALSE, time_); |
| 2256 | return; |
| 2257 | } |
| 2258 | |
| 2259 | /* Get the current modifier state for proper distinguishment between |
| 2260 | * different operations later. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2261 | gui_gtk_get_pointer(widget, NULL, NULL, &state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2262 | |
| 2263 | /* Not sure about the role of "text/plain" here... */ |
| 2264 | if (info == (guint)TARGET_TEXT_URI_LIST) |
| 2265 | drag_handle_uri_list(context, data, time_, state, x, y); |
| 2266 | else |
| 2267 | drag_handle_text(context, data, time_, state); |
| 2268 | |
| 2269 | } |
| 2270 | #endif /* FEAT_DND */ |
| 2271 | |
| 2272 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 2273 | #if defined(USE_GNOME_SESSION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2274 | /* |
| 2275 | * GnomeClient interact callback. Check for unsaved buffers that cannot |
| 2276 | * be abandoned and pop up a dialog asking the user for confirmation if |
| 2277 | * necessary. |
| 2278 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2279 | static void |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2280 | sm_client_check_changed_any(GnomeClient *client UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2281 | gint key, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2282 | GnomeDialogType type UNUSED, |
| 2283 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2284 | { |
| 2285 | cmdmod_T save_cmdmod; |
| 2286 | gboolean shutdown_cancelled; |
| 2287 | |
| 2288 | save_cmdmod = cmdmod; |
| 2289 | |
| 2290 | # ifdef FEAT_BROWSE |
| 2291 | cmdmod.browse = TRUE; |
| 2292 | # endif |
| 2293 | # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2294 | cmdmod.confirm = TRUE; |
| 2295 | # endif |
| 2296 | /* |
| 2297 | * If there are changed buffers, present the user with |
| 2298 | * a dialog if possible, otherwise give an error message. |
| 2299 | */ |
Bram Moolenaar | 027387f | 2016-01-02 22:25:52 +0100 | [diff] [blame] | 2300 | shutdown_cancelled = check_changed_any(FALSE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2301 | |
| 2302 | exiting = FALSE; |
| 2303 | cmdmod = save_cmdmod; |
| 2304 | setcursor(); /* position the cursor */ |
| 2305 | out_flush(); |
| 2306 | /* |
| 2307 | * If the user hit the [Cancel] button the whole shutdown |
| 2308 | * will be cancelled. Wow, quite powerful feature (: |
| 2309 | */ |
| 2310 | gnome_interaction_key_return(key, shutdown_cancelled); |
| 2311 | } |
| 2312 | |
| 2313 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2314 | * "save_yourself" signal handler. Initiate an interaction to ask the user |
| 2315 | * for confirmation if necessary. Save the current editing session and tell |
| 2316 | * the session manager how to restart Vim. |
| 2317 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2318 | static gboolean |
| 2319 | sm_client_save_yourself(GnomeClient *client, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2320 | gint phase UNUSED, |
| 2321 | GnomeSaveStyle save_style UNUSED, |
| 2322 | gboolean shutdown UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2323 | GnomeInteractStyle interact_style, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2324 | gboolean fast UNUSED, |
| 2325 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2326 | { |
| 2327 | static const char suffix[] = "-session.vim"; |
| 2328 | char *session_file; |
| 2329 | unsigned int len; |
| 2330 | gboolean success; |
| 2331 | |
| 2332 | /* Always request an interaction if possible. check_changed_any() |
| 2333 | * won't actually show a dialog unless any buffers have been modified. |
| 2334 | * There doesn't seem to be an obvious way to check that without |
| 2335 | * automatically firing the dialog. Anyway, it works just fine. */ |
| 2336 | if (interact_style == GNOME_INTERACT_ANY) |
| 2337 | gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL, |
| 2338 | &sm_client_check_changed_any, |
| 2339 | NULL); |
| 2340 | out_flush(); |
| 2341 | ml_sync_all(FALSE, FALSE); /* preserve all swap files */ |
| 2342 | |
| 2343 | /* The path is unique for each session save. We do neither know nor care |
| 2344 | * which session script will actually be used later. This decision is in |
| 2345 | * the domain of the session manager. */ |
| 2346 | session_file = gnome_config_get_real_path( |
| 2347 | gnome_client_get_config_prefix(client)); |
| 2348 | len = strlen(session_file); |
| 2349 | |
| 2350 | if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR) |
| 2351 | --len; /* get rid of the superfluous trailing '/' */ |
| 2352 | |
| 2353 | session_file = g_renew(char, session_file, len + sizeof(suffix)); |
| 2354 | memcpy(session_file + len, suffix, sizeof(suffix)); |
| 2355 | |
| 2356 | success = write_session_file((char_u *)session_file); |
| 2357 | |
| 2358 | if (success) |
| 2359 | { |
| 2360 | const char *argv[8]; |
| 2361 | int i; |
| 2362 | |
| 2363 | /* Tell the session manager how to wipe out the stored session data. |
| 2364 | * This isn't as dangerous as it looks, don't worry :) session_file |
| 2365 | * is a unique absolute filename. Usually it'll be something like |
| 2366 | * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */ |
| 2367 | i = 0; |
| 2368 | argv[i++] = "rm"; |
| 2369 | argv[i++] = session_file; |
| 2370 | argv[i] = NULL; |
| 2371 | |
| 2372 | gnome_client_set_discard_command(client, i, (char **)argv); |
| 2373 | |
| 2374 | /* Tell the session manager how to restore the just saved session. |
| 2375 | * This is easily done thanks to Vim's -S option. Pass the -f flag |
| 2376 | * since there's no need to fork -- it might even cause confusion. |
| 2377 | * Also pass the window role to give the WM something to match on. |
| 2378 | * The role is set in gui_mch_open(), thus should _never_ be NULL. */ |
| 2379 | i = 0; |
| 2380 | argv[i++] = restart_command; |
| 2381 | argv[i++] = "-f"; |
| 2382 | argv[i++] = "-g"; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2383 | argv[i++] = "--role"; |
| 2384 | argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2385 | argv[i++] = "-S"; |
| 2386 | argv[i++] = session_file; |
| 2387 | argv[i] = NULL; |
| 2388 | |
| 2389 | gnome_client_set_restart_command(client, i, (char **)argv); |
| 2390 | gnome_client_set_clone_command(client, 0, NULL); |
| 2391 | } |
| 2392 | |
| 2393 | g_free(session_file); |
| 2394 | |
| 2395 | return success; |
| 2396 | } |
| 2397 | |
| 2398 | /* |
| 2399 | * Called when the session manager wants us to die. There isn't much to save |
| 2400 | * here since "save_yourself" has been emitted before (unless serious trouble |
| 2401 | * is happening). |
| 2402 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2403 | static void |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2404 | sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2405 | { |
| 2406 | /* Don't write messages to the GUI anymore */ |
| 2407 | full_screen = FALSE; |
| 2408 | |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 2409 | vim_strncpy(IObuff, (char_u *) |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 2410 | _("Vim: Received \"die\" request from session manager\n"), |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 2411 | IOSIZE - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2412 | preserve_exit(); |
| 2413 | } |
| 2414 | |
| 2415 | /* |
| 2416 | * Connect our signal handlers to be notified on session save and shutdown. |
| 2417 | */ |
| 2418 | static void |
| 2419 | setup_save_yourself(void) |
| 2420 | { |
| 2421 | GnomeClient *client; |
| 2422 | |
| 2423 | client = gnome_master_client(); |
| 2424 | |
| 2425 | if (client != NULL) |
| 2426 | { |
| 2427 | /* Must use the deprecated gtk_signal_connect() for compatibility |
| 2428 | * with GNOME 1. Arrgh, zombies! */ |
| 2429 | gtk_signal_connect(GTK_OBJECT(client), "save_yourself", |
| 2430 | GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL); |
| 2431 | gtk_signal_connect(GTK_OBJECT(client), "die", |
| 2432 | GTK_SIGNAL_FUNC(&sm_client_die), NULL); |
| 2433 | } |
| 2434 | } |
| 2435 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 2436 | #else // !USE_GNOME_SESSION |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2437 | |
| 2438 | # ifdef USE_XSMP |
| 2439 | /* |
| 2440 | * GTK tells us that XSMP needs attention |
| 2441 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2442 | static gboolean |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 2443 | local_xsmp_handle_requests( |
| 2444 | GIOChannel *source UNUSED, |
| 2445 | GIOCondition condition, |
| 2446 | gpointer data) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2447 | { |
| 2448 | if (condition == G_IO_IN) |
| 2449 | { |
| 2450 | /* Do stuff; maybe close connection */ |
| 2451 | if (xsmp_handle_requests() == FAIL) |
| 2452 | g_io_channel_unref((GIOChannel *)data); |
| 2453 | return TRUE; |
| 2454 | } |
| 2455 | /* Error */ |
| 2456 | g_io_channel_unref((GIOChannel *)data); |
| 2457 | xsmp_close(); |
| 2458 | return TRUE; |
| 2459 | } |
| 2460 | # endif /* USE_XSMP */ |
| 2461 | |
| 2462 | /* |
| 2463 | * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event. |
| 2464 | * This is an ugly use of X functions. GTK doesn't offer an alternative. |
| 2465 | */ |
| 2466 | static void |
| 2467 | setup_save_yourself(void) |
| 2468 | { |
| 2469 | Atom *existing_atoms = NULL; |
| 2470 | int count = 0; |
| 2471 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2472 | # ifdef USE_XSMP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2473 | if (xsmp_icefd != -1) |
| 2474 | { |
| 2475 | /* |
| 2476 | * Use XSMP is preference to legacy WM_SAVE_YOURSELF; |
| 2477 | * set up GTK IO monitor |
| 2478 | */ |
| 2479 | GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd); |
| 2480 | |
| 2481 | g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP, |
| 2482 | local_xsmp_handle_requests, (gpointer)g_io); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2483 | g_io_channel_unref(g_io); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2484 | } |
| 2485 | else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2486 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2487 | { |
| 2488 | /* Fall back to old method */ |
| 2489 | |
| 2490 | /* first get the existing value */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2491 | GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin); |
| 2492 | |
| 2493 | if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2494 | GDK_WINDOW_XID(mainwin_win), |
| 2495 | &existing_atoms, &count)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2496 | { |
| 2497 | Atom *new_atoms; |
| 2498 | Atom save_yourself_xatom; |
| 2499 | int i; |
| 2500 | |
| 2501 | save_yourself_xatom = GET_X_ATOM(save_yourself_atom); |
| 2502 | |
| 2503 | /* check if WM_SAVE_YOURSELF isn't there yet */ |
| 2504 | for (i = 0; i < count; ++i) |
| 2505 | if (existing_atoms[i] == save_yourself_xatom) |
| 2506 | break; |
| 2507 | |
| 2508 | if (i == count) |
| 2509 | { |
| 2510 | /* allocate an Atoms array which is one item longer */ |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 2511 | new_atoms = ALLOC_MULT(Atom, count + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2512 | if (new_atoms != NULL) |
| 2513 | { |
| 2514 | memcpy(new_atoms, existing_atoms, count * sizeof(Atom)); |
| 2515 | new_atoms[count] = save_yourself_xatom; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2516 | XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2517 | GDK_WINDOW_XID(mainwin_win), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2518 | new_atoms, count + 1); |
| 2519 | vim_free(new_atoms); |
| 2520 | } |
| 2521 | } |
| 2522 | XFree(existing_atoms); |
| 2523 | } |
| 2524 | } |
| 2525 | } |
| 2526 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2527 | /* |
| 2528 | * Installing a global event filter seems to be the only way to catch |
| 2529 | * client messages of type WM_PROTOCOLS without overriding GDK's own |
| 2530 | * client message event filter. Well, that's still better than trying |
| 2531 | * to guess what the GDK filter had done if it had been invoked instead |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2532 | * |
| 2533 | * GTK2_FIXME: This doesn't seem to work. For some reason we never |
| 2534 | * receive WM_SAVE_YOURSELF even though everything is set up correctly. |
| 2535 | * I have the nasty feeling modern session managers just don't send this |
| 2536 | * deprecated message anymore. Addition: confirmed by several people. |
| 2537 | * |
| 2538 | * The GNOME session support is much cooler anyway. Unlike this ugly |
| 2539 | * WM_SAVE_YOURSELF hack it actually stores the session... And yes, |
| 2540 | * it should work with KDE as well. |
| 2541 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2542 | static GdkFilterReturn |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2543 | global_event_filter(GdkXEvent *xev, |
| 2544 | GdkEvent *event UNUSED, |
| 2545 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2546 | { |
| 2547 | XEvent *xevent = (XEvent *)xev; |
| 2548 | |
| 2549 | if (xevent != NULL |
| 2550 | && xevent->type == ClientMessage |
| 2551 | && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2552 | && (long_u)xevent->xclient.data.l[0] |
| 2553 | == GET_X_ATOM(save_yourself_atom)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2554 | { |
| 2555 | out_flush(); |
| 2556 | ml_sync_all(FALSE, FALSE); /* preserve all swap files */ |
| 2557 | /* |
| 2558 | * Set the window's WM_COMMAND property, to let the window manager |
| 2559 | * know we are done saving ourselves. We don't want to be |
| 2560 | * restarted, thus set argv to NULL. |
| 2561 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2562 | XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)), |
| 2563 | GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2564 | NULL, 0); |
| 2565 | return GDK_FILTER_REMOVE; |
| 2566 | } |
| 2567 | |
| 2568 | return GDK_FILTER_CONTINUE; |
| 2569 | } |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 2570 | #endif // !USE_GNOME_SESSION |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2571 | |
| 2572 | |
| 2573 | /* |
| 2574 | * Setup the window icon & xcmdsrv comm after the main window has been realized. |
| 2575 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2576 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2577 | mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2578 | { |
| 2579 | /* If you get an error message here, you still need to unpack the runtime |
| 2580 | * archive! */ |
| 2581 | #ifdef magick |
| 2582 | # undef magick |
| 2583 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2584 | /* A bit hackish, but avoids casting later and allows optimization */ |
| 2585 | # define static static const |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2586 | #define magick vim32x32 |
| 2587 | #include "../runtime/vim32x32.xpm" |
| 2588 | #undef magick |
| 2589 | #define magick vim16x16 |
| 2590 | #include "../runtime/vim16x16.xpm" |
| 2591 | #undef magick |
| 2592 | #define magick vim48x48 |
| 2593 | #include "../runtime/vim48x48.xpm" |
| 2594 | #undef magick |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2595 | # undef static |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2596 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2597 | GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2598 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2599 | /* When started with "--echo-wid" argument, write window ID on stdout. */ |
| 2600 | if (echo_wid_arg) |
| 2601 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2602 | printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2603 | fflush(stdout); |
| 2604 | } |
| 2605 | |
| 2606 | if (vim_strchr(p_go, GO_ICON) != NULL) |
| 2607 | { |
| 2608 | /* |
| 2609 | * Add an icon to the main window. For fun and convenience of the user. |
| 2610 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2611 | GList *icons = NULL; |
| 2612 | |
| 2613 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16)); |
| 2614 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32)); |
| 2615 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48)); |
| 2616 | |
| 2617 | gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons); |
| 2618 | |
| 2619 | g_list_foreach(icons, (GFunc)&g_object_unref, NULL); |
| 2620 | g_list_free(icons); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2621 | } |
| 2622 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 2623 | #if !defined(USE_GNOME_SESSION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2624 | /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2625 | gdk_window_add_filter(NULL, &global_event_filter, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2626 | #endif |
| 2627 | /* Setup to indicate to the window manager that we want to catch the |
| 2628 | * WM_SAVE_YOURSELF event. For GNOME, this connects to the session |
| 2629 | * manager instead. */ |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 2630 | #if defined(USE_GNOME_SESSION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2631 | if (using_gnome) |
| 2632 | #endif |
| 2633 | setup_save_yourself(); |
| 2634 | |
| 2635 | #ifdef FEAT_CLIENTSERVER |
| 2636 | if (serverName == NULL && serverDelayedStartName != NULL) |
| 2637 | { |
| 2638 | /* This is a :gui command in a plain vim with no previous server */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2639 | commWindow = GDK_WINDOW_XID(mainwin_win); |
| 2640 | |
| 2641 | (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2642 | serverDelayedStartName); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2643 | } |
| 2644 | else |
| 2645 | { |
| 2646 | /* |
| 2647 | * Cannot handle "XLib-only" windows with gtk event routines, we'll |
| 2648 | * have to change the "server" registration to that of the main window |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 2649 | * If we have not registered a name yet, remember the window. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2650 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2651 | serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2652 | GDK_WINDOW_XID(mainwin_win)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2653 | } |
| 2654 | gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2655 | g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event", |
| 2656 | G_CALLBACK(property_event), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2657 | #endif |
| 2658 | } |
| 2659 | |
| 2660 | static GdkCursor * |
| 2661 | create_blank_pointer(void) |
| 2662 | { |
| 2663 | GdkWindow *root_window = NULL; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2664 | #if GTK_CHECK_VERSION(3,0,0) |
| 2665 | GdkPixbuf *blank_mask; |
| 2666 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2667 | GdkPixmap *blank_mask; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2668 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2669 | GdkCursor *cursor; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 2670 | #if GTK_CHECK_VERSION(3,0,0) |
| 2671 | GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 }; |
| 2672 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2673 | GdkColor color = { 0, 0, 0, 0 }; |
| 2674 | char blank_data[] = { 0x0 }; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2675 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2676 | |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 2677 | #if GTK_CHECK_VERSION(3,12,0) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2678 | { |
| 2679 | GdkWindow * const win = gtk_widget_get_window(gui.mainwin); |
| 2680 | GdkScreen * const scrn = gdk_window_get_screen(win); |
| 2681 | root_window = gdk_screen_get_root_window(scrn); |
| 2682 | } |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 2683 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2684 | root_window = gtk_widget_get_root_window(gui.mainwin); |
| 2685 | #endif |
| 2686 | |
| 2687 | /* Create a pseudo blank pointer, which is in fact one pixel by one pixel |
| 2688 | * in size. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2689 | #if GTK_CHECK_VERSION(3,0,0) |
| 2690 | { |
| 2691 | cairo_surface_t *surf; |
| 2692 | cairo_t *cr; |
| 2693 | |
| 2694 | surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1); |
| 2695 | cr = cairo_create(surf); |
| 2696 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 2697 | cairo_set_source_rgba(cr, |
| 2698 | color.red, |
| 2699 | color.green, |
| 2700 | color.blue, |
| 2701 | color.alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2702 | cairo_rectangle(cr, 0, 0, 1, 1); |
| 2703 | cairo_fill(cr); |
| 2704 | cairo_destroy(cr); |
| 2705 | |
| 2706 | blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1); |
| 2707 | cairo_surface_destroy(surf); |
| 2708 | |
| 2709 | cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window), |
| 2710 | blank_mask, 0, 0); |
| 2711 | g_object_unref(blank_mask); |
| 2712 | } |
| 2713 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2714 | blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1); |
| 2715 | cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask, |
| 2716 | &color, &color, 0, 0); |
| 2717 | gdk_bitmap_unref(blank_mask); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2718 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2719 | |
| 2720 | return cursor; |
| 2721 | } |
| 2722 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2723 | static void |
| 2724 | mainwin_screen_changed_cb(GtkWidget *widget, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2725 | GdkScreen *previous_screen UNUSED, |
| 2726 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2727 | { |
| 2728 | if (!gtk_widget_has_screen(widget)) |
| 2729 | return; |
| 2730 | |
| 2731 | /* |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 2732 | * Recreate the invisible mouse cursor. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2733 | */ |
| 2734 | if (gui.blank_pointer != NULL) |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 2735 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2736 | g_object_unref(G_OBJECT(gui.blank_pointer)); |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 2737 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2738 | gdk_cursor_unref(gui.blank_pointer); |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 2739 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2740 | |
| 2741 | gui.blank_pointer = create_blank_pointer(); |
| 2742 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2743 | if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL) |
| 2744 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
| 2745 | gui.blank_pointer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2746 | |
| 2747 | /* |
| 2748 | * Create a new PangoContext for this screen, and initialize it |
| 2749 | * with the current font if necessary. |
| 2750 | */ |
| 2751 | if (gui.text_context != NULL) |
| 2752 | g_object_unref(gui.text_context); |
| 2753 | |
| 2754 | gui.text_context = gtk_widget_create_pango_context(widget); |
| 2755 | pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
| 2756 | |
| 2757 | if (gui.norm_font != NULL) |
| 2758 | { |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 2759 | gui_mch_init_font(p_guifont, FALSE); |
Bram Moolenaar | 8ac4415 | 2017-11-09 18:33:29 +0100 | [diff] [blame] | 2760 | gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2761 | } |
| 2762 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2763 | |
| 2764 | /* |
| 2765 | * After the drawing area comes up, we calculate all colors and create the |
| 2766 | * dummy blank cursor. |
| 2767 | * |
| 2768 | * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the |
| 2769 | * fact that the main VIM engine doesn't take them into account anywhere. |
| 2770 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2771 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2772 | drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2773 | { |
| 2774 | GtkWidget *sbar; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2775 | GtkAllocation allocation; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2776 | |
| 2777 | #ifdef FEAT_XIM |
| 2778 | xim_init(); |
| 2779 | #endif |
| 2780 | gui_mch_new_colors(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2781 | #if GTK_CHECK_VERSION(3,0,0) |
| 2782 | gui.surface = gdk_window_create_similar_surface( |
| 2783 | gtk_widget_get_window(widget), |
| 2784 | CAIRO_CONTENT_COLOR_ALPHA, |
| 2785 | gtk_widget_get_allocated_width(widget), |
| 2786 | gtk_widget_get_allocated_height(widget)); |
| 2787 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2788 | gui.text_gc = gdk_gc_new(gui.drawarea->window); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2789 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2790 | |
| 2791 | gui.blank_pointer = create_blank_pointer(); |
| 2792 | if (gui.pointer_hidden) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2793 | gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2794 | |
| 2795 | /* get the actual size of the scrollbars, if they are realized */ |
| 2796 | sbar = firstwin->w_scrollbars[SBAR_LEFT].id; |
| 2797 | if (!sbar || (!gui.which_scrollbars[SBAR_LEFT] |
| 2798 | && firstwin->w_scrollbars[SBAR_RIGHT].id)) |
| 2799 | sbar = firstwin->w_scrollbars[SBAR_RIGHT].id; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2800 | gtk_widget_get_allocation(sbar, &allocation); |
| 2801 | if (sbar && gtk_widget_get_realized(sbar) && allocation.width) |
| 2802 | gui.scrollbar_width = allocation.width; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2803 | |
| 2804 | sbar = gui.bottom_sbar.id; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2805 | if (sbar && gtk_widget_get_realized(sbar) && allocation.height) |
| 2806 | gui.scrollbar_height = allocation.height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2807 | } |
| 2808 | |
| 2809 | /* |
| 2810 | * Properly clean up on shutdown. |
| 2811 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2812 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2813 | drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2814 | { |
| 2815 | /* Don't write messages to the GUI anymore */ |
| 2816 | full_screen = FALSE; |
| 2817 | |
| 2818 | #ifdef FEAT_XIM |
| 2819 | im_shutdown(); |
| 2820 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2821 | if (gui.ascii_glyphs != NULL) |
| 2822 | { |
| 2823 | pango_glyph_string_free(gui.ascii_glyphs); |
| 2824 | gui.ascii_glyphs = NULL; |
| 2825 | } |
| 2826 | if (gui.ascii_font != NULL) |
| 2827 | { |
| 2828 | g_object_unref(gui.ascii_font); |
| 2829 | gui.ascii_font = NULL; |
| 2830 | } |
| 2831 | g_object_unref(gui.text_context); |
| 2832 | gui.text_context = NULL; |
| 2833 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2834 | #if GTK_CHECK_VERSION(3,0,0) |
| 2835 | if (gui.surface != NULL) |
| 2836 | { |
| 2837 | cairo_surface_destroy(gui.surface); |
| 2838 | gui.surface = NULL; |
| 2839 | } |
| 2840 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2841 | g_object_unref(gui.text_gc); |
| 2842 | gui.text_gc = NULL; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2843 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2844 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2845 | #if GTK_CHECK_VERSION(3,0,0) |
| 2846 | g_object_unref(G_OBJECT(gui.blank_pointer)); |
| 2847 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2848 | gdk_cursor_unref(gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2849 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2850 | gui.blank_pointer = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2851 | } |
| 2852 | |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 2853 | #if GTK_CHECK_VERSION(3,22,2) |
| 2854 | static void |
| 2855 | drawarea_style_updated_cb(GtkWidget *widget UNUSED, |
| 2856 | gpointer data UNUSED) |
| 2857 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2858 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2859 | drawarea_style_set_cb(GtkWidget *widget UNUSED, |
| 2860 | GtkStyle *previous_style UNUSED, |
| 2861 | gpointer data UNUSED) |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 2862 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2863 | { |
| 2864 | gui_mch_new_colors(); |
| 2865 | } |
| 2866 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2867 | #if GTK_CHECK_VERSION(3,0,0) |
| 2868 | static gboolean |
| 2869 | drawarea_configure_event_cb(GtkWidget *widget, |
| 2870 | GdkEventConfigure *event, |
| 2871 | gpointer data UNUSED) |
| 2872 | { |
| 2873 | static int cur_width = 0; |
| 2874 | static int cur_height = 0; |
| 2875 | |
| 2876 | g_return_val_if_fail(event |
| 2877 | && event->width >= 1 && event->height >= 1, TRUE); |
| 2878 | |
Bram Moolenaar | 182707a | 2016-11-21 20:55:58 +0100 | [diff] [blame] | 2879 | # if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4) |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 2880 | /* As of 3.22.2, GdkWindows have started distributing configure events to |
| 2881 | * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0). |
| 2882 | * |
| 2883 | * As can be seen from the implementation of move_native_children() and |
| 2884 | * configure_native_child() in gdkwindow.c, those functions actually |
| 2885 | * propagate configure events to every child, failing to distinguish |
| 2886 | * "native" one from non-native one. |
| 2887 | * |
| 2888 | * Naturally, configure events propagated to here like that are fallacious |
| 2889 | * and, as a matter of fact, they trigger a geometric collapse of |
Bram Moolenaar | 32aa102 | 2019-11-02 22:54:41 +0100 | [diff] [blame] | 2890 | * gui.drawarea in fullscreen and maximized modes. |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 2891 | * |
| 2892 | * To filter out such nuisance events, we are making use of the fact that |
| 2893 | * the field send_event of such GdkEventConfigures is set to FALSE in |
| 2894 | * configure_native_child(). |
| 2895 | * |
| 2896 | * Obviously, this is a terrible hack making GVim depend on GTK's |
| 2897 | * implementation details. Therefore, watch out any relevant internal |
| 2898 | * changes happening in GTK in the feature (sigh). |
| 2899 | */ |
Bram Moolenaar | 182707a | 2016-11-21 20:55:58 +0100 | [diff] [blame] | 2900 | /* Follow-up |
| 2901 | * After a few weeks later, the GdkWindow change mentioned above was |
| 2902 | * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155). |
| 2903 | * The corresponding official release is 3.22.4. */ |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 2904 | if (event->send_event == FALSE) |
| 2905 | return TRUE; |
| 2906 | # endif |
| 2907 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2908 | if (event->width == cur_width && event->height == cur_height) |
| 2909 | return TRUE; |
| 2910 | |
| 2911 | cur_width = event->width; |
| 2912 | cur_height = event->height; |
| 2913 | |
| 2914 | if (gui.surface != NULL) |
| 2915 | cairo_surface_destroy(gui.surface); |
| 2916 | |
| 2917 | gui.surface = gdk_window_create_similar_surface( |
| 2918 | gtk_widget_get_window(widget), |
| 2919 | CAIRO_CONTENT_COLOR_ALPHA, |
| 2920 | event->width, event->height); |
| 2921 | |
| 2922 | gtk_widget_queue_draw(widget); |
| 2923 | |
| 2924 | return TRUE; |
| 2925 | } |
| 2926 | #endif |
| 2927 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2928 | /* |
| 2929 | * Callback routine for the "delete_event" signal on the toplevel window. |
| 2930 | * Tries to vim gracefully, or refuses to exit with changed buffers. |
| 2931 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2932 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2933 | delete_event_cb(GtkWidget *widget UNUSED, |
| 2934 | GdkEventAny *event UNUSED, |
| 2935 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2936 | { |
| 2937 | gui_shell_closed(); |
| 2938 | return TRUE; |
| 2939 | } |
| 2940 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2941 | #if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE) |
| 2942 | static int |
| 2943 | get_item_dimensions(GtkWidget *widget, GtkOrientation orientation) |
| 2944 | { |
Bram Moolenaar | c4a249a | 2017-01-30 22:56:48 +0100 | [diff] [blame] | 2945 | # ifdef FEAT_GUI_GNOME |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2946 | GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL; |
| 2947 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2948 | if (using_gnome && widget != NULL) |
| 2949 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2950 | GtkWidget *parent; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2951 | BonoboDockItem *dockitem; |
| 2952 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2953 | parent = gtk_widget_get_parent(widget); |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2954 | if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM) |
| 2955 | { |
| 2956 | /* Only menu & toolbar are dock items. Could tabline be? |
| 2957 | * Seem to be only the 2 defined in GNOME */ |
| 2958 | widget = parent; |
| 2959 | dockitem = BONOBO_DOCK_ITEM(widget); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2960 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2961 | if (dockitem == NULL || dockitem->is_floating) |
| 2962 | return 0; |
| 2963 | item_orientation = bonobo_dock_item_get_orientation(dockitem); |
| 2964 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2965 | } |
Bram Moolenaar | c4a249a | 2017-01-30 22:56:48 +0100 | [diff] [blame] | 2966 | # else |
| 2967 | # define item_orientation GTK_ORIENTATION_HORIZONTAL |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2968 | # endif |
Bram Moolenaar | c4a249a | 2017-01-30 22:56:48 +0100 | [diff] [blame] | 2969 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2970 | if (widget != NULL |
| 2971 | && item_orientation == orientation |
| 2972 | && gtk_widget_get_realized(widget) |
| 2973 | && gtk_widget_get_visible(widget)) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2974 | { |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 2975 | # if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2976 | GtkAllocation allocation; |
| 2977 | |
| 2978 | gtk_widget_get_allocation(widget, &allocation); |
Bram Moolenaar | c4a249a | 2017-01-30 22:56:48 +0100 | [diff] [blame] | 2979 | return allocation.height; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2980 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2981 | if (orientation == GTK_ORIENTATION_HORIZONTAL) |
| 2982 | return widget->allocation.height; |
| 2983 | else |
| 2984 | return widget->allocation.width; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2985 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2986 | } |
| 2987 | return 0; |
| 2988 | } |
| 2989 | #endif |
| 2990 | |
| 2991 | static int |
| 2992 | get_menu_tool_width(void) |
| 2993 | { |
| 2994 | int width = 0; |
| 2995 | |
| 2996 | #ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */ |
| 2997 | # ifdef FEAT_MENU |
| 2998 | width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL); |
| 2999 | # endif |
| 3000 | # ifdef FEAT_TOOLBAR |
| 3001 | width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL); |
| 3002 | # endif |
| 3003 | # ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3004 | if (gui.tabline != NULL) |
| 3005 | width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3006 | # endif |
| 3007 | #endif |
| 3008 | |
| 3009 | return width; |
| 3010 | } |
| 3011 | |
| 3012 | static int |
| 3013 | get_menu_tool_height(void) |
| 3014 | { |
| 3015 | int height = 0; |
| 3016 | |
| 3017 | #ifdef FEAT_MENU |
| 3018 | height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL); |
| 3019 | #endif |
| 3020 | #ifdef FEAT_TOOLBAR |
| 3021 | height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL); |
| 3022 | #endif |
| 3023 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3024 | if (gui.tabline != NULL) |
| 3025 | height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3026 | #endif |
| 3027 | |
| 3028 | return height; |
| 3029 | } |
| 3030 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3031 | /* This controls whether we can set the real window hints at |
| 3032 | * start-up when in a GtkPlug. |
| 3033 | * 0 = normal processing (default) |
| 3034 | * 1 = init. hints set, no-one's tried to reset since last check |
| 3035 | * 2 = init. hints set, attempt made to change hints |
| 3036 | */ |
| 3037 | static int init_window_hints_state = 0; |
| 3038 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3039 | static void |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3040 | update_window_manager_hints(int force_width, int force_height) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3041 | { |
| 3042 | static int old_width = 0; |
| 3043 | static int old_height = 0; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3044 | static int old_min_width = 0; |
| 3045 | static int old_min_height = 0; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3046 | static int old_char_width = 0; |
| 3047 | static int old_char_height = 0; |
| 3048 | |
| 3049 | int width; |
| 3050 | int height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3051 | int min_width; |
| 3052 | int min_height; |
| 3053 | |
| 3054 | /* At start-up, don't try to set the hints until the initial |
| 3055 | * values have been used (those that dictate our initial size) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3056 | * Let forced (i.e., correct) values through always. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3057 | */ |
| 3058 | if (!(force_width && force_height) && init_window_hints_state > 0) |
| 3059 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3060 | /* Don't do it! */ |
| 3061 | init_window_hints_state = 2; |
| 3062 | return; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3063 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3064 | |
| 3065 | /* This also needs to be done when the main window isn't there yet, |
| 3066 | * otherwise the hints don't work. */ |
| 3067 | width = gui_get_base_width(); |
| 3068 | height = gui_get_base_height(); |
| 3069 | # ifdef FEAT_MENU |
| 3070 | height += tabline_height() * gui.char_height; |
| 3071 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3072 | width += get_menu_tool_width(); |
| 3073 | height += get_menu_tool_height(); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3074 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3075 | /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 3076 | * their actual widget size. When we set our size ourselves (e.g., |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3077 | * 'set columns=' or init. -geom) we briefly set the min. to the size |
| 3078 | * we wish to be instead of the legitimate minimum so that we actually |
| 3079 | * resize correctly. |
| 3080 | */ |
| 3081 | if (force_width && force_height) |
| 3082 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3083 | min_width = force_width; |
| 3084 | min_height = force_height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3085 | } |
| 3086 | else |
| 3087 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3088 | min_width = width + MIN_COLUMNS * gui.char_width; |
| 3089 | min_height = height + MIN_LINES * gui.char_height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3090 | } |
| 3091 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3092 | /* Avoid an expose event when the size didn't change. */ |
| 3093 | if (width != old_width |
| 3094 | || height != old_height |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3095 | || min_width != old_min_width |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3096 | || min_height != old_min_height |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3097 | || gui.char_width != old_char_width |
| 3098 | || gui.char_height != old_char_height) |
| 3099 | { |
| 3100 | GdkGeometry geometry; |
| 3101 | GdkWindowHints geometry_mask; |
| 3102 | |
| 3103 | geometry.width_inc = gui.char_width; |
| 3104 | geometry.height_inc = gui.char_height; |
| 3105 | geometry.base_width = width; |
| 3106 | geometry.base_height = height; |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3107 | geometry.min_width = min_width; |
| 3108 | geometry.min_height = min_height; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3109 | geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC |
| 3110 | |GDK_HINT_MIN_SIZE; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3111 | /* Using gui.formwin as geometry widget doesn't work as expected |
| 3112 | * with GTK+ 2 -- dunno why. Presumably all the resizing hacks |
| 3113 | * in Vim confuse GTK+. */ |
| 3114 | gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin, |
| 3115 | &geometry, geometry_mask); |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3116 | old_width = width; |
| 3117 | old_height = height; |
| 3118 | old_min_width = min_width; |
| 3119 | old_min_height = min_height; |
| 3120 | old_char_width = gui.char_width; |
| 3121 | old_char_height = gui.char_height; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3122 | } |
| 3123 | } |
| 3124 | |
Bram Moolenaar | 50bf7ce | 2019-09-15 13:17:00 +0200 | [diff] [blame] | 3125 | #if defined(FEAT_GUI_DARKTHEME) || defined(PROTO) |
| 3126 | void |
| 3127 | gui_mch_set_dark_theme(int dark) |
| 3128 | { |
| 3129 | # if GTK_CHECK_VERSION(3,0,0) |
| 3130 | GtkSettings *gtk_settings; |
| 3131 | |
| 3132 | gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default()); |
| 3133 | g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL); |
| 3134 | # endif |
| 3135 | } |
| 3136 | #endif /* FEAT_GUI_DARKTHEME */ |
| 3137 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3138 | #ifdef FEAT_TOOLBAR |
| 3139 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3140 | /* |
| 3141 | * This extra effort wouldn't be necessary if we only used stock icons in the |
| 3142 | * toolbar, as we do for all builtin icons. But user-defined toolbar icons |
| 3143 | * shouldn't be treated differently, thus we do need this. |
| 3144 | */ |
| 3145 | static void |
| 3146 | icon_size_changed_foreach(GtkWidget *widget, gpointer user_data) |
| 3147 | { |
| 3148 | if (GTK_IS_IMAGE(widget)) |
| 3149 | { |
| 3150 | GtkImage *image = (GtkImage *)widget; |
| 3151 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3152 | # if GTK_CHECK_VERSION(3,10,0) |
| 3153 | if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME) |
| 3154 | { |
| 3155 | const GtkIconSize icon_size = GPOINTER_TO_INT(user_data); |
| 3156 | const gchar *icon_name; |
| 3157 | |
| 3158 | gtk_image_get_icon_name(image, &icon_name, NULL); |
| 3159 | |
| 3160 | gtk_image_set_from_icon_name(image, icon_name, icon_size); |
| 3161 | } |
| 3162 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3163 | /* User-defined icons are stored in a GtkIconSet */ |
| 3164 | if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET) |
| 3165 | { |
| 3166 | GtkIconSet *icon_set; |
| 3167 | GtkIconSize icon_size; |
| 3168 | |
| 3169 | gtk_image_get_icon_set(image, &icon_set, &icon_size); |
| 3170 | icon_size = (GtkIconSize)(long)user_data; |
| 3171 | |
| 3172 | gtk_icon_set_ref(icon_set); |
| 3173 | gtk_image_set_from_icon_set(image, icon_set, icon_size); |
| 3174 | gtk_icon_set_unref(icon_set); |
| 3175 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3176 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3177 | } |
| 3178 | else if (GTK_IS_CONTAINER(widget)) |
| 3179 | { |
| 3180 | gtk_container_foreach((GtkContainer *)widget, |
| 3181 | &icon_size_changed_foreach, |
| 3182 | user_data); |
| 3183 | } |
| 3184 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3185 | |
| 3186 | static void |
| 3187 | set_toolbar_style(GtkToolbar *toolbar) |
| 3188 | { |
| 3189 | GtkToolbarStyle style; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3190 | GtkIconSize size; |
| 3191 | GtkIconSize oldsize; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3192 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3193 | if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
| 3194 | == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
| 3195 | style = GTK_TOOLBAR_BOTH_HORIZ; |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3196 | else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3197 | == (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
| 3198 | style = GTK_TOOLBAR_BOTH; |
| 3199 | else if (toolbar_flags & TOOLBAR_TEXT) |
| 3200 | style = GTK_TOOLBAR_TEXT; |
| 3201 | else |
| 3202 | style = GTK_TOOLBAR_ICONS; |
| 3203 | |
| 3204 | gtk_toolbar_set_style(toolbar, style); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3205 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3206 | gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3207 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3208 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3209 | switch (tbis_flags) |
| 3210 | { |
| 3211 | case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break; |
| 3212 | case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break; |
| 3213 | case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break; |
| 3214 | case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break; |
Bram Moolenaar | beb003b | 2016-03-08 22:47:17 +0100 | [diff] [blame] | 3215 | case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break; |
| 3216 | case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3217 | default: size = GTK_ICON_SIZE_INVALID; break; |
| 3218 | } |
| 3219 | oldsize = gtk_toolbar_get_icon_size(toolbar); |
| 3220 | |
| 3221 | if (size == GTK_ICON_SIZE_INVALID) |
| 3222 | { |
| 3223 | /* Let global user preferences decide the icon size. */ |
| 3224 | gtk_toolbar_unset_icon_size(toolbar); |
| 3225 | size = gtk_toolbar_get_icon_size(toolbar); |
| 3226 | } |
| 3227 | if (size != oldsize) |
| 3228 | { |
| 3229 | gtk_container_foreach(GTK_CONTAINER(toolbar), |
| 3230 | &icon_size_changed_foreach, |
| 3231 | GINT_TO_POINTER((int)size)); |
| 3232 | } |
| 3233 | gtk_toolbar_set_icon_size(toolbar, size); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3234 | } |
| 3235 | |
| 3236 | #endif /* FEAT_TOOLBAR */ |
| 3237 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3238 | #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
| 3239 | static int ignore_tabline_evt = FALSE; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3240 | static GtkWidget *tabline_menu; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3241 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3242 | static GtkTooltips *tabline_tooltip; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3243 | # endif |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3244 | static int clicked_page; /* page clicked in tab line */ |
| 3245 | |
| 3246 | /* |
| 3247 | * Handle selecting an item in the tab line popup menu. |
| 3248 | */ |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3249 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3250 | tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data) |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3251 | { |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3252 | /* Add the string cmd into input buffer */ |
Bram Moolenaar | c6fe919 | 2006-04-09 21:54:49 +0000 | [diff] [blame] | 3253 | send_tabline_menu_event(clicked_page, (int)(long)user_data); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3254 | } |
| 3255 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3256 | static void |
| 3257 | add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp) |
| 3258 | { |
| 3259 | GtkWidget *item; |
| 3260 | char_u *utf_text; |
| 3261 | |
| 3262 | utf_text = CONVERT_TO_UTF8(text); |
| 3263 | item = gtk_menu_item_new_with_label((const char *)utf_text); |
| 3264 | gtk_widget_show(item); |
| 3265 | CONVERT_TO_UTF8_FREE(utf_text); |
| 3266 | |
| 3267 | gtk_container_add(GTK_CONTAINER(menu), item); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3268 | g_signal_connect(G_OBJECT(item), "activate", |
| 3269 | G_CALLBACK(tabline_menu_handler), |
| 3270 | GINT_TO_POINTER(resp)); |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3271 | } |
| 3272 | |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3273 | /* |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3274 | * Create a menu for the tab line. |
| 3275 | */ |
| 3276 | static GtkWidget * |
| 3277 | create_tabline_menu(void) |
| 3278 | { |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3279 | GtkWidget *menu; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3280 | |
| 3281 | menu = gtk_menu_new(); |
Bram Moolenaar | 2954719 | 2018-12-11 20:39:19 +0100 | [diff] [blame] | 3282 | add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE); |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3283 | add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW); |
| 3284 | add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3285 | |
| 3286 | return menu; |
| 3287 | } |
| 3288 | |
| 3289 | static gboolean |
| 3290 | on_tabline_menu(GtkWidget *widget, GdkEvent *event) |
| 3291 | { |
| 3292 | /* Was this button press event ? */ |
| 3293 | if (event->type == GDK_BUTTON_PRESS) |
| 3294 | { |
| 3295 | GdkEventButton *bevent = (GdkEventButton *)event; |
| 3296 | int x = bevent->x; |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3297 | int y = bevent->y; |
| 3298 | GtkWidget *tabwidget; |
| 3299 | GdkWindow *tabwin; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3300 | |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 3301 | /* When ignoring events return TRUE so that the selected page doesn't |
| 3302 | * change. */ |
| 3303 | if (hold_gui_events |
| 3304 | # ifdef FEAT_CMDWIN |
| 3305 | || cmdwin_type != 0 |
| 3306 | # endif |
| 3307 | ) |
| 3308 | return TRUE; |
| 3309 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3310 | tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3311 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3312 | gdk_window_get_user_data(tabwin, (gpointer)&tabwidget); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3313 | clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget), |
| 3314 | "tab_num")); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3315 | |
| 3316 | /* If the event was generated for 3rd button popup the menu. */ |
| 3317 | if (bevent->button == 3) |
| 3318 | { |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 3319 | # if GTK_CHECK_VERSION(3,22,2) |
| 3320 | gtk_menu_popup_at_pointer(GTK_MENU(widget), event); |
| 3321 | # else |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3322 | gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL, |
| 3323 | bevent->button, bevent->time); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 3324 | # endif |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3325 | /* We handled the event. */ |
| 3326 | return TRUE; |
| 3327 | } |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3328 | else if (bevent->button == 1) |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3329 | { |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3330 | if (clicked_page == 0) |
| 3331 | { |
Bram Moolenaar | 0735454 | 2007-09-15 12:07:46 +0000 | [diff] [blame] | 3332 | /* Click after all tabs moves to next tab page. When "x" is |
| 3333 | * small guess it's the left button. */ |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 3334 | send_tabline_event(x < 50 ? -1 : 0); |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3335 | } |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3336 | } |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3337 | } |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 3338 | |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3339 | /* We didn't handle the event. */ |
| 3340 | return FALSE; |
| 3341 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3342 | |
| 3343 | /* |
| 3344 | * Handle selecting one of the tabs. |
| 3345 | */ |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3346 | static void |
| 3347 | on_select_tab( |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3348 | GtkNotebook *notebook UNUSED, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3349 | gpointer *page UNUSED, |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 3350 | gint idx, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3351 | gpointer data UNUSED) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3352 | { |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3353 | if (!ignore_tabline_evt) |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 3354 | send_tabline_event(idx + 1); |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3355 | } |
| 3356 | |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3357 | # if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3358 | /* |
| 3359 | * Handle reordering the tabs (using D&D). |
| 3360 | */ |
| 3361 | static void |
| 3362 | on_tab_reordered( |
| 3363 | GtkNotebook *notebook UNUSED, |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3364 | gpointer *page UNUSED, |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3365 | gint idx, |
| 3366 | gpointer data UNUSED) |
| 3367 | { |
| 3368 | if (!ignore_tabline_evt) |
| 3369 | { |
| 3370 | if ((tabpage_index(curtab) - 1) < idx) |
| 3371 | tabpage_move(idx + 1); |
| 3372 | else |
| 3373 | tabpage_move(idx); |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3374 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3375 | } |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3376 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3377 | |
| 3378 | /* |
| 3379 | * Show or hide the tabline. |
| 3380 | */ |
| 3381 | void |
| 3382 | gui_mch_show_tabline(int showit) |
| 3383 | { |
| 3384 | if (gui.tabline == NULL) |
| 3385 | return; |
| 3386 | |
| 3387 | if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline))) |
| 3388 | { |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 3389 | /* Note: this may cause a resize event */ |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3390 | gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3391 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3392 | if (showit) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3393 | gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3394 | } |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3395 | |
| 3396 | gui_mch_update(); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3397 | } |
| 3398 | |
| 3399 | /* |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 3400 | * Return TRUE when tabline is displayed. |
| 3401 | */ |
| 3402 | int |
| 3403 | gui_mch_showing_tabline(void) |
| 3404 | { |
| 3405 | return gui.tabline != NULL |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3406 | && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)); |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 3407 | } |
| 3408 | |
| 3409 | /* |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3410 | * Update the labels of the tabline. |
| 3411 | */ |
| 3412 | void |
| 3413 | gui_mch_update_tabline(void) |
| 3414 | { |
| 3415 | GtkWidget *page; |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3416 | GtkWidget *event_box; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3417 | GtkWidget *label; |
| 3418 | tabpage_T *tp; |
| 3419 | int nr = 0; |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3420 | int tab_num; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3421 | int curtabidx = 0; |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3422 | char_u *labeltext; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3423 | |
| 3424 | if (gui.tabline == NULL) |
| 3425 | return; |
| 3426 | |
| 3427 | ignore_tabline_evt = TRUE; |
| 3428 | |
| 3429 | /* Add a label for each tab page. They all contain the same text area. */ |
| 3430 | for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) |
| 3431 | { |
| 3432 | if (tp == curtab) |
| 3433 | curtabidx = nr; |
| 3434 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3435 | tab_num = nr + 1; |
| 3436 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3437 | page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr); |
| 3438 | if (page == NULL) |
| 3439 | { |
| 3440 | /* Add notebook page */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3441 | # if GTK_CHECK_VERSION(3,2,0) |
| 3442 | page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
| 3443 | gtk_box_set_homogeneous(GTK_BOX(page), FALSE); |
| 3444 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3445 | page = gtk_vbox_new(FALSE, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3446 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3447 | gtk_widget_show(page); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3448 | event_box = gtk_event_box_new(); |
| 3449 | gtk_widget_show(event_box); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3450 | label = gtk_label_new("-Empty-"); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3451 | # if !GTK_CHECK_VERSION(3,14,0) |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3452 | gtk_misc_set_padding(GTK_MISC(label), 2, 2); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3453 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3454 | gtk_container_add(GTK_CONTAINER(event_box), label); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3455 | gtk_widget_show(label); |
| 3456 | gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline), |
| 3457 | page, |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3458 | event_box, |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3459 | nr++); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3460 | # if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3461 | gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), |
| 3462 | page, |
| 3463 | TRUE); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3464 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3465 | } |
| 3466 | |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3467 | event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3468 | g_object_set_data(G_OBJECT(event_box), "tab_num", |
| 3469 | GINT_TO_POINTER(tab_num)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3470 | label = gtk_bin_get_child(GTK_BIN(event_box)); |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 3471 | get_tabline_label(tp, FALSE); |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3472 | labeltext = CONVERT_TO_UTF8(NameBuff); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3473 | gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext); |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3474 | CONVERT_TO_UTF8_FREE(labeltext); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3475 | |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3476 | get_tabline_label(tp, TRUE); |
| 3477 | labeltext = CONVERT_TO_UTF8(NameBuff); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3478 | # if GTK_CHECK_VERSION(3,0,0) |
| 3479 | gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext); |
| 3480 | # else |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3481 | gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box, |
| 3482 | (const char *)labeltext, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3483 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3484 | CONVERT_TO_UTF8_FREE(labeltext); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3485 | } |
| 3486 | |
| 3487 | /* Remove any old labels. */ |
| 3488 | while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL) |
| 3489 | gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr); |
| 3490 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3491 | if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx) |
| 3492 | gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3493 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3494 | /* Make sure everything is in place before drawing text. */ |
| 3495 | gui_mch_update(); |
| 3496 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3497 | ignore_tabline_evt = FALSE; |
| 3498 | } |
| 3499 | |
| 3500 | /* |
| 3501 | * Set the current tab to "nr". First tab is 1. |
| 3502 | */ |
| 3503 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 3504 | gui_mch_set_curtab(int nr) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3505 | { |
| 3506 | if (gui.tabline == NULL) |
| 3507 | return; |
| 3508 | |
| 3509 | ignore_tabline_evt = TRUE; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3510 | if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1) |
| 3511 | gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3512 | ignore_tabline_evt = FALSE; |
| 3513 | } |
| 3514 | |
| 3515 | #endif /* FEAT_GUI_TABLINE */ |
| 3516 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3517 | /* |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3518 | * Add selection targets for PRIMARY and CLIPBOARD selections. |
| 3519 | */ |
| 3520 | void |
| 3521 | gui_gtk_set_selection_targets(void) |
| 3522 | { |
| 3523 | int i, j = 0; |
| 3524 | int n_targets = N_SELECTION_TARGETS; |
| 3525 | GtkTargetEntry targets[N_SELECTION_TARGETS]; |
| 3526 | |
| 3527 | for (i = 0; i < (int)N_SELECTION_TARGETS; ++i) |
| 3528 | { |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 3529 | /* OpenOffice tries to use TARGET_HTML and fails when we don't |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3530 | * return something, instead of trying another target. Therefore only |
| 3531 | * offer TARGET_HTML when it works. */ |
| 3532 | if (!clip_html && selection_targets[i].info == TARGET_HTML) |
| 3533 | n_targets--; |
| 3534 | else |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3535 | targets[j++] = selection_targets[i]; |
| 3536 | } |
| 3537 | |
| 3538 | gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY); |
| 3539 | gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom); |
| 3540 | gtk_selection_add_targets(gui.drawarea, |
| 3541 | (GdkAtom)GDK_SELECTION_PRIMARY, |
| 3542 | targets, n_targets); |
| 3543 | gtk_selection_add_targets(gui.drawarea, |
| 3544 | (GdkAtom)clip_plus.gtk_sel_atom, |
| 3545 | targets, n_targets); |
| 3546 | } |
| 3547 | |
| 3548 | /* |
| 3549 | * Set up for receiving DND items. |
| 3550 | */ |
| 3551 | void |
| 3552 | gui_gtk_set_dnd_targets(void) |
| 3553 | { |
| 3554 | int i, j = 0; |
| 3555 | int n_targets = N_DND_TARGETS; |
| 3556 | GtkTargetEntry targets[N_DND_TARGETS]; |
| 3557 | |
| 3558 | for (i = 0; i < (int)N_DND_TARGETS; ++i) |
| 3559 | { |
Bram Moolenaar | b931d74 | 2011-10-26 11:36:25 +0200 | [diff] [blame] | 3560 | if (!clip_html && dnd_targets[i].info == TARGET_HTML) |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3561 | n_targets--; |
| 3562 | else |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3563 | targets[j++] = dnd_targets[i]; |
| 3564 | } |
| 3565 | |
| 3566 | gtk_drag_dest_unset(gui.drawarea); |
| 3567 | gtk_drag_dest_set(gui.drawarea, |
| 3568 | GTK_DEST_DEFAULT_ALL, |
| 3569 | targets, n_targets, |
Bram Moolenaar | ba7cc9f | 2011-02-25 17:10:27 +0100 | [diff] [blame] | 3570 | GDK_ACTION_COPY | GDK_ACTION_MOVE); |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3571 | } |
| 3572 | |
| 3573 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3574 | * Initialize the GUI. Create all the windows, set up all the callbacks etc. |
| 3575 | * Returns OK for success, FAIL when the GUI can't be started. |
| 3576 | */ |
| 3577 | int |
| 3578 | gui_mch_init(void) |
| 3579 | { |
| 3580 | GtkWidget *vbox; |
| 3581 | |
| 3582 | #ifdef FEAT_GUI_GNOME |
| 3583 | /* Initialize the GNOME libraries. gnome_program_init()/gnome_init() |
| 3584 | * exits on failure, but that's a non-issue because we already called |
| 3585 | * gtk_init_check() in gui_mch_init_check(). */ |
| 3586 | if (using_gnome) |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3587 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3588 | gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT, |
| 3589 | LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL); |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3590 | # if defined(FEAT_FLOAT) && defined(LC_NUMERIC) |
Bram Moolenaar | 1ff32c5 | 2014-04-29 15:11:43 +0200 | [diff] [blame] | 3591 | { |
| 3592 | char *p = setlocale(LC_NUMERIC, NULL); |
| 3593 | |
| 3594 | /* Make sure strtod() uses a decimal point, not a comma. Gnome |
| 3595 | * init may change it. */ |
| 3596 | if (p == NULL || strcmp(p, "C") != 0) |
| 3597 | setlocale(LC_NUMERIC, "C"); |
| 3598 | } |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3599 | # endif |
| 3600 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3601 | #endif |
Bram Moolenaar | d23a823 | 2018-02-10 18:45:26 +0100 | [diff] [blame] | 3602 | VIM_CLEAR(gui_argv); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3603 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3604 | #if GLIB_CHECK_VERSION(2,1,3) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3605 | /* Set the human-readable application name */ |
| 3606 | g_set_application_name("Vim"); |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3607 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3608 | /* |
| 3609 | * Force UTF-8 output no matter what the value of 'encoding' is. |
| 3610 | * did_set_string_option() in option.c prohibits changing 'termencoding' |
| 3611 | * to something else than UTF-8 if the GUI is in use. |
| 3612 | */ |
| 3613 | set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0); |
| 3614 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3615 | #ifdef FEAT_TOOLBAR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3616 | gui_gtk_register_stock_icons(); |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3617 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3618 | /* FIXME: Need to install the classic icons and a gtkrc.classic file. |
| 3619 | * The hard part is deciding install locations and the Makefile magic. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3620 | #if !GTK_CHECK_VERSION(3,0,0) |
| 3621 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3622 | gtk_rc_parse("gtkrc"); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3623 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3624 | #endif |
| 3625 | |
| 3626 | /* Initialize values */ |
| 3627 | gui.border_width = 2; |
| 3628 | gui.scrollbar_width = SB_DEFAULT_WIDTH; |
| 3629 | gui.scrollbar_height = SB_DEFAULT_WIDTH; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 3630 | #if GTK_CHECK_VERSION(3,0,0) |
| 3631 | gui.fgcolor = g_new(GdkRGBA, 1); |
| 3632 | gui.bgcolor = g_new(GdkRGBA, 1); |
| 3633 | gui.spcolor = g_new(GdkRGBA, 1); |
| 3634 | #else |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 3635 | /* LINTED: avoid warning: conversion to 'unsigned long' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3636 | gui.fgcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 3637 | /* LINTED: avoid warning: conversion to 'unsigned long' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3638 | gui.bgcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 3639 | /* LINTED: avoid warning: conversion to 'unsigned long' */ |
| 3640 | gui.spcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 3641 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3642 | |
| 3643 | /* Initialise atoms */ |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 3644 | html_atom = gdk_atom_intern("text/html", FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3645 | utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3646 | |
| 3647 | /* Set default foreground and background colors. */ |
| 3648 | gui.norm_pixel = gui.def_norm_pixel; |
| 3649 | gui.back_pixel = gui.def_back_pixel; |
| 3650 | |
| 3651 | if (gtk_socket_id != 0) |
| 3652 | { |
| 3653 | GtkWidget *plug; |
| 3654 | |
| 3655 | /* Use GtkSocket from another app. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3656 | plug = gtk_plug_new_for_display(gdk_display_get_default(), |
| 3657 | gtk_socket_id); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3658 | if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3659 | { |
| 3660 | gui.mainwin = plug; |
| 3661 | } |
| 3662 | else |
| 3663 | { |
| 3664 | g_warning("Connection to GTK+ socket (ID %u) failed", |
| 3665 | (unsigned int)gtk_socket_id); |
| 3666 | /* Pretend we never wanted it if it failed (get own window) */ |
| 3667 | gtk_socket_id = 0; |
| 3668 | } |
| 3669 | } |
| 3670 | |
| 3671 | if (gtk_socket_id == 0) |
| 3672 | { |
| 3673 | #ifdef FEAT_GUI_GNOME |
| 3674 | if (using_gnome) |
| 3675 | { |
| 3676 | gui.mainwin = gnome_app_new("Vim", NULL); |
| 3677 | # ifdef USE_XSMP |
| 3678 | /* Use the GNOME save-yourself functionality now. */ |
| 3679 | xsmp_close(); |
| 3680 | # endif |
| 3681 | } |
| 3682 | else |
| 3683 | #endif |
| 3684 | gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
| 3685 | } |
| 3686 | |
| 3687 | gtk_widget_set_name(gui.mainwin, "vim-main-window"); |
| 3688 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3689 | /* Create the PangoContext used for drawing all text. */ |
| 3690 | gui.text_context = gtk_widget_create_pango_context(gui.mainwin); |
| 3691 | pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3692 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3693 | gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3694 | gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK); |
| 3695 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3696 | g_signal_connect(G_OBJECT(gui.mainwin), "delete-event", |
| 3697 | G_CALLBACK(&delete_event_cb), NULL); |
| 3698 | |
| 3699 | g_signal_connect(G_OBJECT(gui.mainwin), "realize", |
| 3700 | G_CALLBACK(&mainwin_realize), NULL); |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 3701 | |
| 3702 | g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3703 | G_CALLBACK(&mainwin_screen_changed_cb), NULL); |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 3704 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3705 | gui.accel_group = gtk_accel_group_new(); |
| 3706 | gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3707 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3708 | /* A vertical box holds the menubar, toolbar and main text window. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3709 | #if GTK_CHECK_VERSION(3,2,0) |
| 3710 | vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
| 3711 | gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE); |
| 3712 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3713 | vbox = gtk_vbox_new(FALSE, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3714 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3715 | |
| 3716 | #ifdef FEAT_GUI_GNOME |
| 3717 | if (using_gnome) |
| 3718 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3719 | # if defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3720 | /* automagically restore menubar/toolbar placement */ |
| 3721 | gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE); |
| 3722 | # endif |
| 3723 | gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox); |
| 3724 | } |
| 3725 | else |
| 3726 | #endif |
| 3727 | { |
| 3728 | gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox); |
| 3729 | gtk_widget_show(vbox); |
| 3730 | } |
| 3731 | |
| 3732 | #ifdef FEAT_MENU |
| 3733 | /* |
| 3734 | * Create the menubar and handle |
| 3735 | */ |
| 3736 | gui.menubar = gtk_menu_bar_new(); |
| 3737 | gtk_widget_set_name(gui.menubar, "vim-menubar"); |
| 3738 | |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3739 | /* Avoid that GTK takes <F10> away from us. */ |
| 3740 | { |
| 3741 | GtkSettings *gtk_settings; |
| 3742 | |
| 3743 | gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default()); |
| 3744 | g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL); |
| 3745 | } |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3746 | |
| 3747 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3748 | # ifdef FEAT_GUI_GNOME |
| 3749 | if (using_gnome) |
| 3750 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3751 | BonoboDockItem *dockitem; |
| 3752 | |
| 3753 | gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar)); |
| 3754 | dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), |
| 3755 | GNOME_APP_MENUBAR_NAME); |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 3756 | /* We don't want the menu to float. */ |
| 3757 | bonobo_dock_item_set_behavior(dockitem, |
| 3758 | bonobo_dock_item_get_behavior(dockitem) |
| 3759 | | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3760 | gui.menubar_h = GTK_WIDGET(dockitem); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3761 | } |
| 3762 | else |
| 3763 | # endif /* FEAT_GUI_GNOME */ |
| 3764 | { |
Bram Moolenaar | 18144c8 | 2006-04-12 21:52:12 +0000 | [diff] [blame] | 3765 | /* Always show the menubar, otherwise <F10> doesn't work. It may be |
| 3766 | * disabled in gui_init() later. */ |
| 3767 | gtk_widget_show(gui.menubar); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3768 | gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0); |
| 3769 | } |
| 3770 | #endif /* FEAT_MENU */ |
| 3771 | |
| 3772 | #ifdef FEAT_TOOLBAR |
| 3773 | /* |
| 3774 | * Create the toolbar and handle |
| 3775 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3776 | /* some aesthetics on the toolbar */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3777 | # ifdef USE_GTK3 |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 3778 | /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3779 | /* N.B. Since the default value of GtkToolbar::button-relief is |
| 3780 | * GTK_RELIEF_NONE, there's no need to specify that, probably. */ |
| 3781 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3782 | gtk_rc_parse_string( |
| 3783 | "style \"vim-toolbar-style\" {\n" |
| 3784 | " GtkToolbar::button_relief = GTK_RELIEF_NONE\n" |
| 3785 | "}\n" |
| 3786 | "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n"); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3787 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3788 | gui.toolbar = gtk_toolbar_new(); |
| 3789 | gtk_widget_set_name(gui.toolbar, "vim-toolbar"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3790 | set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); |
| 3791 | |
| 3792 | # ifdef FEAT_GUI_GNOME |
| 3793 | if (using_gnome) |
| 3794 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3795 | BonoboDockItem *dockitem; |
| 3796 | |
| 3797 | gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar)); |
| 3798 | dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), |
| 3799 | GNOME_APP_TOOLBAR_NAME); |
| 3800 | gui.toolbar_h = GTK_WIDGET(dockitem); |
Bram Moolenaar | e580b0c | 2006-03-21 21:33:03 +0000 | [diff] [blame] | 3801 | /* When the toolbar is floating it gets stuck. So long as that isn't |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 3802 | * fixed let's disallow floating. */ |
Bram Moolenaar | e580b0c | 2006-03-21 21:33:03 +0000 | [diff] [blame] | 3803 | bonobo_dock_item_set_behavior(dockitem, |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 3804 | bonobo_dock_item_get_behavior(dockitem) |
| 3805 | | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3806 | gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3807 | } |
| 3808 | else |
| 3809 | # endif /* FEAT_GUI_GNOME */ |
| 3810 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3811 | if (vim_strchr(p_go, GO_TOOLBAR) != NULL |
| 3812 | && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) |
| 3813 | gtk_widget_show(gui.toolbar); |
| 3814 | gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0); |
| 3815 | } |
| 3816 | #endif /* FEAT_TOOLBAR */ |
| 3817 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3818 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3819 | /* |
| 3820 | * Use a Notebook for the tab pages labels. The labels are hidden by |
| 3821 | * default. |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3822 | */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3823 | gui.tabline = gtk_notebook_new(); |
| 3824 | gtk_widget_show(gui.tabline); |
| 3825 | gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0); |
| 3826 | gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE); |
| 3827 | gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE); |
Bram Moolenaar | 4a85b41 | 2006-04-23 22:40:29 +0000 | [diff] [blame] | 3828 | gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3829 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3830 | gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3831 | # endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3832 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3833 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3834 | tabline_tooltip = gtk_tooltips_new(); |
| 3835 | gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3836 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3837 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3838 | { |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3839 | GtkWidget *page, *label, *event_box; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3840 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3841 | /* Add the first tab. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3842 | # if GTK_CHECK_VERSION(3,2,0) |
| 3843 | page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
| 3844 | gtk_box_set_homogeneous(GTK_BOX(page), FALSE); |
| 3845 | # else |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3846 | page = gtk_vbox_new(FALSE, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3847 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3848 | gtk_widget_show(page); |
| 3849 | gtk_container_add(GTK_CONTAINER(gui.tabline), page); |
| 3850 | label = gtk_label_new("-Empty-"); |
| 3851 | gtk_widget_show(label); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3852 | event_box = gtk_event_box_new(); |
| 3853 | gtk_widget_show(event_box); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3854 | g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3855 | # if !GTK_CHECK_VERSION(3,14,0) |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3856 | gtk_misc_set_padding(GTK_MISC(label), 2, 2); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3857 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3858 | gtk_container_add(GTK_CONTAINER(event_box), label); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3859 | gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3860 | # if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3861 | gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3862 | # endif |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3863 | } |
Bram Moolenaar | 54a709e | 2006-05-04 21:57:11 +0000 | [diff] [blame] | 3864 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3865 | g_signal_connect(G_OBJECT(gui.tabline), "switch-page", |
| 3866 | G_CALLBACK(on_select_tab), NULL); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3867 | # if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3868 | g_signal_connect(G_OBJECT(gui.tabline), "page-reordered", |
| 3869 | G_CALLBACK(on_tab_reordered), NULL); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3870 | # endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3871 | |
| 3872 | /* Create a popup menu for the tab line and connect it. */ |
| 3873 | tabline_menu = create_tabline_menu(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3874 | g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event", |
| 3875 | G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3876 | #endif /* FEAT_GUI_TABLINE */ |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3877 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3878 | gui.formwin = gtk_form_new(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3879 | gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3880 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3881 | gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3882 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3883 | |
| 3884 | gui.drawarea = gtk_drawing_area_new(); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 3885 | #if GTK_CHECK_VERSION(3,22,2) |
| 3886 | gtk_widget_set_name(gui.drawarea, "vim-gui-drawarea"); |
| 3887 | #endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3888 | #if GTK_CHECK_VERSION(3,0,0) |
| 3889 | gui.surface = NULL; |
| 3890 | gui.by_signal = FALSE; |
| 3891 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3892 | |
| 3893 | /* Determine which events we will filter. */ |
| 3894 | gtk_widget_set_events(gui.drawarea, |
| 3895 | GDK_EXPOSURE_MASK | |
| 3896 | GDK_ENTER_NOTIFY_MASK | |
| 3897 | GDK_LEAVE_NOTIFY_MASK | |
| 3898 | GDK_BUTTON_PRESS_MASK | |
| 3899 | GDK_BUTTON_RELEASE_MASK | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3900 | GDK_SCROLL_MASK | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3901 | GDK_KEY_PRESS_MASK | |
| 3902 | GDK_KEY_RELEASE_MASK | |
| 3903 | GDK_POINTER_MOTION_MASK | |
| 3904 | GDK_POINTER_MOTION_HINT_MASK); |
| 3905 | |
| 3906 | gtk_widget_show(gui.drawarea); |
| 3907 | gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0); |
| 3908 | gtk_widget_show(gui.formwin); |
| 3909 | gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0); |
| 3910 | |
| 3911 | /* For GtkSockets, key-presses must go to the focus widget (drawarea) |
| 3912 | * and not the window. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3913 | g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) |
| 3914 | : G_OBJECT(gui.drawarea), |
| 3915 | "key-press-event", |
| 3916 | G_CALLBACK(key_press_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3917 | #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3918 | /* Also forward key release events for the benefit of GTK+ 2 input |
| 3919 | * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */ |
| 3920 | g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) |
| 3921 | : G_OBJECT(gui.drawarea), |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3922 | "key-release-event", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3923 | G_CALLBACK(&key_release_event), NULL); |
| 3924 | #endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3925 | g_signal_connect(G_OBJECT(gui.drawarea), "realize", |
| 3926 | G_CALLBACK(drawarea_realize_cb), NULL); |
| 3927 | g_signal_connect(G_OBJECT(gui.drawarea), "unrealize", |
| 3928 | G_CALLBACK(drawarea_unrealize_cb), NULL); |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 3929 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3930 | g_signal_connect(G_OBJECT(gui.drawarea), "configure-event", |
| 3931 | G_CALLBACK(drawarea_configure_event_cb), NULL); |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 3932 | #endif |
| 3933 | #if GTK_CHECK_VERSION(3,22,2) |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 3934 | g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated", |
| 3935 | G_CALLBACK(&drawarea_style_updated_cb), NULL); |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 3936 | #else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3937 | g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set", |
| 3938 | G_CALLBACK(&drawarea_style_set_cb), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3939 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3940 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3941 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3942 | gui.visibility = GDK_VISIBILITY_UNOBSCURED; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3943 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3944 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 3945 | #if !defined(USE_GNOME_SESSION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3946 | wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE); |
| 3947 | save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE); |
| 3948 | #endif |
| 3949 | |
| 3950 | if (gtk_socket_id != 0) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3951 | /* make sure keyboard input can go to the drawarea */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3952 | gtk_widget_set_can_focus(gui.drawarea, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3953 | |
| 3954 | /* |
| 3955 | * Set clipboard specific atoms |
| 3956 | */ |
| 3957 | vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3958 | vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3959 | clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY; |
| 3960 | clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE); |
| 3961 | |
| 3962 | /* |
| 3963 | * Start out by adding the configured border width into the border offset. |
| 3964 | */ |
| 3965 | gui.border_offset = gui.border_width; |
| 3966 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3967 | #if GTK_CHECK_VERSION(3,0,0) |
| 3968 | g_signal_connect(G_OBJECT(gui.drawarea), "draw", |
| 3969 | G_CALLBACK(draw_event), NULL); |
| 3970 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3971 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event", |
| 3972 | GTK_SIGNAL_FUNC(visibility_event), NULL); |
| 3973 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event", |
| 3974 | GTK_SIGNAL_FUNC(expose_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3975 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3976 | |
| 3977 | /* |
| 3978 | * Only install these enter/leave callbacks when 'p' in 'guioptions'. |
| 3979 | * Only needed for some window managers. |
| 3980 | */ |
| 3981 | if (vim_strchr(p_go, GO_POINTER) != NULL) |
| 3982 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3983 | g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event", |
| 3984 | G_CALLBACK(leave_notify_event), NULL); |
| 3985 | g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event", |
| 3986 | G_CALLBACK(enter_notify_event), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3987 | } |
| 3988 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3989 | /* Real windows can get focus ... GtkPlug, being a mere container can't, |
| 3990 | * only its widgets. Arguably, this could be common code and we not use |
| 3991 | * the window focus at all, but let's be safe. |
| 3992 | */ |
| 3993 | if (gtk_socket_id == 0) |
| 3994 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3995 | g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event", |
| 3996 | G_CALLBACK(focus_out_event), NULL); |
| 3997 | g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event", |
| 3998 | G_CALLBACK(focus_in_event), NULL); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3999 | } |
| 4000 | else |
| 4001 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4002 | g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event", |
| 4003 | G_CALLBACK(focus_out_event), NULL); |
| 4004 | g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event", |
| 4005 | G_CALLBACK(focus_in_event), NULL); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4006 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4007 | g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event", |
| 4008 | G_CALLBACK(focus_out_event), NULL); |
| 4009 | g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event", |
| 4010 | G_CALLBACK(focus_in_event), NULL); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4011 | #endif /* FEAT_GUI_TABLINE */ |
| 4012 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4013 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4014 | g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event", |
| 4015 | G_CALLBACK(motion_notify_event), NULL); |
| 4016 | g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event", |
| 4017 | G_CALLBACK(button_press_event), NULL); |
| 4018 | g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event", |
| 4019 | G_CALLBACK(button_release_event), NULL); |
| 4020 | g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event", |
| 4021 | G_CALLBACK(&scroll_event), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4022 | |
| 4023 | /* |
| 4024 | * Add selection handler functions. |
| 4025 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4026 | g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event", |
| 4027 | G_CALLBACK(selection_clear_event), NULL); |
| 4028 | g_signal_connect(G_OBJECT(gui.drawarea), "selection-received", |
| 4029 | G_CALLBACK(selection_received_cb), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4030 | |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 4031 | gui_gtk_set_selection_targets(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4032 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4033 | g_signal_connect(G_OBJECT(gui.drawarea), "selection-get", |
| 4034 | G_CALLBACK(selection_get_cb), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4035 | |
| 4036 | /* Pretend we don't have input focus, we will get an event if we do. */ |
| 4037 | gui.in_focus = FALSE; |
| 4038 | |
Bram Moolenaar | 7ebf4e1 | 2018-08-07 20:01:40 +0200 | [diff] [blame] | 4039 | // Handle changes to the "Xft/DPI" setting. |
| 4040 | { |
| 4041 | GtkSettings *gtk_settings = |
| 4042 | gtk_settings_get_for_screen(gdk_screen_get_default()); |
| 4043 | |
| 4044 | g_signal_connect(gtk_settings, "notify::gtk-xft-dpi", |
| 4045 | G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL); |
| 4046 | } |
| 4047 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4048 | return OK; |
| 4049 | } |
| 4050 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 4051 | #if defined(USE_GNOME_SESSION) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4052 | /* |
| 4053 | * This is called from gui_start() after a fork() has been done. |
| 4054 | * We have to tell the session manager our new PID. |
| 4055 | */ |
| 4056 | void |
| 4057 | gui_mch_forked(void) |
| 4058 | { |
| 4059 | if (using_gnome) |
| 4060 | { |
| 4061 | GnomeClient *client; |
| 4062 | |
| 4063 | client = gnome_master_client(); |
| 4064 | |
| 4065 | if (client != NULL) |
| 4066 | gnome_client_set_process_id(client, getpid()); |
| 4067 | } |
| 4068 | } |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 4069 | #endif // USE_GNOME_SESSION |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4070 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4071 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4072 | static GdkRGBA |
| 4073 | color_to_rgba(guicolor_T color) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4074 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4075 | GdkRGBA rgba; |
| 4076 | rgba.red = ((color & 0xff0000) >> 16) / 255.0; |
| 4077 | rgba.green = ((color & 0xff00) >> 8) / 255.0; |
| 4078 | rgba.blue = ((color & 0xff)) / 255.0; |
| 4079 | rgba.alpha = 1.0; |
| 4080 | return rgba; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4081 | } |
| 4082 | |
| 4083 | static void |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4084 | set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4085 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4086 | const GdkRGBA rgba = color_to_rgba(color); |
| 4087 | cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4088 | } |
| 4089 | #endif /* GTK_CHECK_VERSION(3,0,0) */ |
| 4090 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4091 | /* |
| 4092 | * Called when the foreground or background color has been changed. |
| 4093 | * This used to change the graphics contexts directly but we are |
| 4094 | * currently manipulating them where desired. |
| 4095 | */ |
| 4096 | void |
| 4097 | gui_mch_new_colors(void) |
| 4098 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4099 | if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4100 | { |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 4101 | #if !GTK_CHECK_VERSION(3,22,2) |
| 4102 | GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea); |
| 4103 | #endif |
| 4104 | |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 4105 | #if GTK_CHECK_VERSION(3,22,2) |
| 4106 | GtkStyleContext * const context |
| 4107 | = gtk_widget_get_style_context(gui.drawarea); |
| 4108 | GtkCssProvider * const provider = gtk_css_provider_new(); |
| 4109 | gchar * const css = g_strdup_printf( |
| 4110 | "widget#vim-gui-drawarea {\n" |
| 4111 | " background-color: #%.2lx%.2lx%.2lx;\n" |
| 4112 | "}\n", |
| 4113 | (gui.back_pixel >> 16) & 0xff, |
| 4114 | (gui.back_pixel >> 8) & 0xff, |
| 4115 | gui.back_pixel & 0xff); |
| 4116 | |
| 4117 | gtk_css_provider_load_from_data(provider, css, -1, NULL); |
| 4118 | gtk_style_context_add_provider(context, |
| 4119 | GTK_STYLE_PROVIDER(provider), G_MAXUINT); |
| 4120 | |
| 4121 | g_free(css); |
| 4122 | g_object_unref(provider); |
| 4123 | #elif GTK_CHECK_VERSION(3,4,0) /* !GTK_CHECK_VERSION(3,22,2) */ |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4124 | GdkRGBA rgba; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4125 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4126 | rgba = color_to_rgba(gui.back_pixel); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4127 | { |
| 4128 | cairo_pattern_t * const pat = cairo_pattern_create_rgba( |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4129 | rgba.red, rgba.green, rgba.blue, rgba.alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4130 | if (pat != NULL) |
| 4131 | { |
| 4132 | gdk_window_set_background_pattern(da_win, pat); |
| 4133 | cairo_pattern_destroy(pat); |
| 4134 | } |
| 4135 | else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4136 | gdk_window_set_background_rgba(da_win, &rgba); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4137 | } |
| 4138 | #else /* !GTK_CHECK_VERSION(3,4,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4139 | GdkColor color = { 0, 0, 0, 0 }; |
| 4140 | |
| 4141 | color.pixel = gui.back_pixel; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4142 | gdk_window_set_background(da_win, &color); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 4143 | #endif /* !GTK_CHECK_VERSION(3,22,2) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4144 | } |
| 4145 | } |
| 4146 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4147 | /* |
| 4148 | * This signal informs us about the need to rearrange our sub-widgets. |
| 4149 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4150 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4151 | form_configure_event(GtkWidget *widget UNUSED, |
| 4152 | GdkEventConfigure *event, |
| 4153 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4154 | { |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4155 | int usable_height = event->height; |
| 4156 | |
Bram Moolenaar | 182707a | 2016-11-21 20:55:58 +0100 | [diff] [blame] | 4157 | #if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4) |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 4158 | /* As of 3.22.2, GdkWindows have started distributing configure events to |
| 4159 | * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0). |
| 4160 | * |
| 4161 | * As can be seen from the implementation of move_native_children() and |
| 4162 | * configure_native_child() in gdkwindow.c, those functions actually |
| 4163 | * propagate configure events to every child, failing to distinguish |
| 4164 | * "native" one from non-native one. |
| 4165 | * |
| 4166 | * Naturally, configure events propagated to here like that are fallacious |
| 4167 | * and, as a matter of fact, they trigger a geometric collapse of |
| 4168 | * gui.formwin. |
| 4169 | * |
| 4170 | * To filter out such fallacious events, check if the given event is the |
| 4171 | * one that was sent out to the right place. Ignore it if not. |
| 4172 | */ |
Bram Moolenaar | 182707a | 2016-11-21 20:55:58 +0100 | [diff] [blame] | 4173 | /* Follow-up |
| 4174 | * After a few weeks later, the GdkWindow change mentioned above was |
| 4175 | * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155). |
| 4176 | * The corresponding official release is 3.22.4. */ |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 4177 | if (event->window != gtk_widget_get_window(gui.formwin)) |
| 4178 | return TRUE; |
| 4179 | #endif |
| 4180 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4181 | /* When in a GtkPlug, we can't guarantee valid heights (as a round |
| 4182 | * no. of char-heights), so we have to manually sanitise them. |
| 4183 | * Widths seem to sort themselves out, don't ask me why. |
| 4184 | */ |
| 4185 | if (gtk_socket_id != 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4186 | usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4187 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4188 | gtk_form_freeze(GTK_FORM(gui.formwin)); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4189 | gui_resize_shell(event->width, usable_height); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4190 | gtk_form_thaw(GTK_FORM(gui.formwin)); |
| 4191 | |
| 4192 | return TRUE; |
| 4193 | } |
| 4194 | |
| 4195 | /* |
| 4196 | * Function called when window already closed. |
| 4197 | * We can't do much more here than to trying to preserve what had been done, |
| 4198 | * since the window is already inevitably going away. |
| 4199 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4200 | static void |
| 4201 | mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4202 | { |
| 4203 | /* Don't write messages to the GUI anymore */ |
| 4204 | full_screen = FALSE; |
| 4205 | |
| 4206 | gui.mainwin = NULL; |
| 4207 | gui.drawarea = NULL; |
| 4208 | |
| 4209 | if (!exiting) /* only do anything if the destroy was unexpected */ |
| 4210 | { |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 4211 | vim_strncpy(IObuff, |
| 4212 | (char_u *)_("Vim: Main window unexpectedly destroyed\n"), |
| 4213 | IOSIZE - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4214 | preserve_exit(); |
| 4215 | } |
Bram Moolenaar | 36e294c | 2015-12-29 18:55:46 +0100 | [diff] [blame] | 4216 | #ifdef USE_GRESOURCE |
| 4217 | gui_gtk_unregister_resource(); |
| 4218 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4219 | } |
| 4220 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4221 | |
| 4222 | /* |
| 4223 | * Bit of a hack to ensure we start GtkPlug windows with the correct window |
| 4224 | * hints (and thus the required size from -geom), but that after that we |
| 4225 | * put the hints back to normal (the actual minimum size) so we may |
| 4226 | * subsequently be resized smaller. GtkSocket (the parent end) uses the |
Bram Moolenaar | c4568ab | 2018-11-16 16:21:05 +0100 | [diff] [blame] | 4227 | * plug's window 'min hints to set *its* minimum size, but that's also the |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4228 | * only way we have of making ourselves bigger (by set lines/columns). |
| 4229 | * Thus set hints at start-up to ensure correct init. size, then a |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 4230 | * second after the final attempt to reset the real minimum hints (done by |
| 4231 | * scrollbar init.), actually do the standard hints and stop the timer. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4232 | * We'll not let the default hints be set while this timer's active. |
| 4233 | */ |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 4234 | static timeout_cb_type |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4235 | check_startup_plug_hints(gpointer data UNUSED) |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4236 | { |
| 4237 | if (init_window_hints_state == 1) |
| 4238 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4239 | /* Safe to use normal hints now */ |
| 4240 | init_window_hints_state = 0; |
| 4241 | update_window_manager_hints(0, 0); |
| 4242 | return FALSE; /* stop timer */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4243 | } |
| 4244 | |
| 4245 | /* Keep on trying */ |
| 4246 | init_window_hints_state = 1; |
| 4247 | return TRUE; |
| 4248 | } |
| 4249 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4250 | /* |
| 4251 | * Open the GUI window which was created by a call to gui_mch_init(). |
| 4252 | */ |
| 4253 | int |
| 4254 | gui_mch_open(void) |
| 4255 | { |
| 4256 | guicolor_T fg_pixel = INVALCOLOR; |
| 4257 | guicolor_T bg_pixel = INVALCOLOR; |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4258 | guint pixel_width; |
| 4259 | guint pixel_height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4260 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4261 | /* |
| 4262 | * Allow setting a window role on the command line, or invent one |
| 4263 | * if none was specified. This is mainly useful for GNOME session |
| 4264 | * support; allowing the WM to restore window placement. |
| 4265 | */ |
| 4266 | if (role_argument != NULL) |
| 4267 | { |
| 4268 | gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument); |
| 4269 | } |
| 4270 | else |
| 4271 | { |
| 4272 | char *role; |
| 4273 | |
| 4274 | /* Invent a unique-enough ID string for the role */ |
| 4275 | role = g_strdup_printf("vim-%u-%u-%u", |
| 4276 | (unsigned)mch_get_pid(), |
| 4277 | (unsigned)g_random_int(), |
| 4278 | (unsigned)time(NULL)); |
| 4279 | |
| 4280 | gtk_window_set_role(GTK_WINDOW(gui.mainwin), role); |
| 4281 | g_free(role); |
| 4282 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4283 | |
| 4284 | if (gui_win_x != -1 && gui_win_y != -1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4285 | gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4286 | |
| 4287 | /* Determine user specified geometry, if present. */ |
| 4288 | if (gui.geom != NULL) |
| 4289 | { |
| 4290 | int mask; |
| 4291 | unsigned int w, h; |
| 4292 | int x = 0; |
| 4293 | int y = 0; |
| 4294 | |
| 4295 | mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h); |
| 4296 | |
| 4297 | if (mask & WidthValue) |
| 4298 | Columns = w; |
| 4299 | if (mask & HeightValue) |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 4300 | { |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4301 | if (p_window > (long)h - 1 || !option_was_set((char_u *)"window")) |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 4302 | p_window = h - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4303 | Rows = h; |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 4304 | } |
Bram Moolenaar | e057d40 | 2013-06-30 17:51:51 +0200 | [diff] [blame] | 4305 | limit_screen_size(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4306 | |
| 4307 | pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
| 4308 | pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); |
| 4309 | |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4310 | pixel_width += get_menu_tool_width(); |
| 4311 | pixel_height += get_menu_tool_height(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4312 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4313 | if (mask & (XValue | YValue)) |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4314 | { |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4315 | int ww, hh; |
| 4316 | gui_mch_get_screen_dimensions(&ww, &hh); |
| 4317 | hh += p_ghr + get_menu_tool_height(); |
| 4318 | ww += get_menu_tool_width(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4319 | if (mask & XNegative) |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4320 | x += ww - pixel_width; |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4321 | if (mask & YNegative) |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4322 | y += hh - pixel_height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4323 | gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4324 | } |
Bram Moolenaar | d23a823 | 2018-02-10 18:45:26 +0100 | [diff] [blame] | 4325 | VIM_CLEAR(gui.geom); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4326 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4327 | /* From now until everyone's stopped trying to set the window hints |
| 4328 | * to their correct minimum values, stop them being set as we need |
| 4329 | * them to remain at our required size for the parent GtkSocket to |
| 4330 | * give us the right initial size. |
| 4331 | */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4332 | if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue)) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4333 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4334 | update_window_manager_hints(pixel_width, pixel_height); |
| 4335 | init_window_hints_state = 1; |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 4336 | timeout_add(1000, check_startup_plug_hints, NULL); |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4337 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4338 | } |
| 4339 | |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4340 | pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
| 4341 | pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4342 | /* For GTK2 changing the size of the form widget doesn't cause window |
| 4343 | * resizing. */ |
Bram Moolenaar | debe25a | 2010-06-06 17:41:24 +0200 | [diff] [blame] | 4344 | if (gtk_socket_id == 0) |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4345 | gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4346 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4347 | |
| 4348 | if (foreground_argument != NULL) |
| 4349 | fg_pixel = gui_get_color((char_u *)foreground_argument); |
| 4350 | if (fg_pixel == INVALCOLOR) |
| 4351 | fg_pixel = gui_get_color((char_u *)"Black"); |
| 4352 | |
| 4353 | if (background_argument != NULL) |
| 4354 | bg_pixel = gui_get_color((char_u *)background_argument); |
| 4355 | if (bg_pixel == INVALCOLOR) |
| 4356 | bg_pixel = gui_get_color((char_u *)"White"); |
| 4357 | |
| 4358 | if (found_reverse_arg) |
| 4359 | { |
| 4360 | gui.def_norm_pixel = bg_pixel; |
| 4361 | gui.def_back_pixel = fg_pixel; |
| 4362 | } |
| 4363 | else |
| 4364 | { |
| 4365 | gui.def_norm_pixel = fg_pixel; |
| 4366 | gui.def_back_pixel = bg_pixel; |
| 4367 | } |
| 4368 | |
| 4369 | /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or |
| 4370 | * in a vimrc file) */ |
| 4371 | set_normal_colors(); |
| 4372 | |
| 4373 | /* Check that none of the colors are the same as the background color */ |
| 4374 | gui_check_colors(); |
| 4375 | |
| 4376 | /* Get the colors for the highlight groups (gui_check_colors() might have |
| 4377 | * changed them). */ |
| 4378 | highlight_gui_started(); /* re-init colors and fonts */ |
| 4379 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4380 | g_signal_connect(G_OBJECT(gui.mainwin), "destroy", |
| 4381 | G_CALLBACK(mainwin_destroy_cb), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4382 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4383 | /* |
| 4384 | * Notify the fixed area about the need to resize the contents of the |
| 4385 | * gui.formwin, which we use for random positioning of the included |
| 4386 | * components. |
| 4387 | * |
| 4388 | * We connect this signal deferred finally after anything is in place, |
| 4389 | * since this is intended to handle resizements coming from the window |
| 4390 | * manager upon us and should not interfere with what VIM is requesting |
| 4391 | * upon startup. |
| 4392 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4393 | g_signal_connect(G_OBJECT(gui.formwin), "configure-event", |
| 4394 | G_CALLBACK(form_configure_event), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4395 | |
| 4396 | #ifdef FEAT_DND |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 4397 | /* Set up for receiving DND items. */ |
| 4398 | gui_gtk_set_dnd_targets(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4399 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4400 | g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received", |
| 4401 | G_CALLBACK(drag_data_received_cb), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4402 | #endif |
| 4403 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4404 | /* With GTK+ 2, we need to iconify the window before calling show() |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 4405 | * to avoid mapping the window for a short time. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4406 | if (found_iconic_arg && gtk_socket_id == 0) |
| 4407 | gui_mch_iconify(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4408 | |
| 4409 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 4410 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4411 | unsigned long menu_handler = 0; |
| 4412 | # ifdef FEAT_TOOLBAR |
| 4413 | unsigned long tool_handler = 0; |
| 4414 | # endif |
| 4415 | /* |
| 4416 | * Urgh hackish :/ For some reason BonoboDockLayout always forces a |
| 4417 | * show when restoring the saved layout configuration. We can't just |
| 4418 | * hide the widgets again after gtk_widget_show(gui.mainwin) since it's |
| 4419 | * a toplevel window and thus will be realized immediately. Instead, |
| 4420 | * connect signal handlers to hide the widgets just after they've been |
| 4421 | * marked visible, but before the main window is realized. |
| 4422 | */ |
| 4423 | if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL) |
| 4424 | menu_handler = g_signal_connect_after(gui.menubar_h, "show", |
| 4425 | G_CALLBACK(>k_widget_hide), |
| 4426 | NULL); |
| 4427 | # ifdef FEAT_TOOLBAR |
| 4428 | if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL |
| 4429 | && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) |
| 4430 | tool_handler = g_signal_connect_after(gui.toolbar_h, "show", |
| 4431 | G_CALLBACK(>k_widget_hide), |
| 4432 | NULL); |
| 4433 | # endif |
| 4434 | #endif |
| 4435 | gtk_widget_show(gui.mainwin); |
| 4436 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 4437 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4438 | if (menu_handler != 0) |
| 4439 | g_signal_handler_disconnect(gui.menubar_h, menu_handler); |
| 4440 | # ifdef FEAT_TOOLBAR |
| 4441 | if (tool_handler != 0) |
| 4442 | g_signal_handler_disconnect(gui.toolbar_h, tool_handler); |
| 4443 | # endif |
| 4444 | #endif |
| 4445 | } |
| 4446 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4447 | return OK; |
| 4448 | } |
| 4449 | |
| 4450 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4451 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4452 | gui_mch_exit(int rc UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4453 | { |
| 4454 | if (gui.mainwin != NULL) |
| 4455 | gtk_widget_destroy(gui.mainwin); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4456 | } |
| 4457 | |
| 4458 | /* |
| 4459 | * Get the position of the top left corner of the window. |
| 4460 | */ |
| 4461 | int |
| 4462 | gui_mch_get_winpos(int *x, int *y) |
| 4463 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4464 | gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4465 | return OK; |
| 4466 | } |
| 4467 | |
| 4468 | /* |
| 4469 | * Set the position of the top left corner of the window to the given |
| 4470 | * coordinates. |
| 4471 | */ |
| 4472 | void |
| 4473 | gui_mch_set_winpos(int x, int y) |
| 4474 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4475 | gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4476 | } |
| 4477 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4478 | #if !GTK_CHECK_VERSION(3,0,0) |
| 4479 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4480 | static int resize_idle_installed = FALSE; |
| 4481 | /* |
| 4482 | * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure |
| 4483 | * the shell size doesn't exceed the window size, i.e. if the window manager |
| 4484 | * ignored our size request. Usually this happens if the window is maximized. |
| 4485 | * |
| 4486 | * FIXME: It'd be nice if we could find a little more orthodox solution. |
| 4487 | * See also the remark below in gui_mch_set_shellsize(). |
| 4488 | * |
| 4489 | * DISABLED: When doing ":set lines+=1" this function would first invoke |
| 4490 | * gui_resize_shell() with the old size, then the normal callback would |
| 4491 | * report the new size through form_configure_event(). That caused the window |
| 4492 | * layout to be messed up. |
| 4493 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4494 | static gboolean |
| 4495 | force_shell_resize_idle(gpointer data) |
| 4496 | { |
| 4497 | if (gui.mainwin != NULL |
| 4498 | && GTK_WIDGET_REALIZED(gui.mainwin) |
| 4499 | && GTK_WIDGET_VISIBLE(gui.mainwin)) |
| 4500 | { |
| 4501 | int width; |
| 4502 | int height; |
| 4503 | |
| 4504 | gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height); |
| 4505 | |
| 4506 | width -= get_menu_tool_width(); |
| 4507 | height -= get_menu_tool_height(); |
| 4508 | |
| 4509 | gui_resize_shell(width, height); |
| 4510 | } |
| 4511 | |
| 4512 | resize_idle_installed = FALSE; |
| 4513 | return FALSE; /* don't call me again */ |
| 4514 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4515 | # endif |
| 4516 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4517 | |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4518 | /* |
| 4519 | * Return TRUE if the main window is maximized. |
| 4520 | */ |
| 4521 | int |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 4522 | gui_mch_maximized(void) |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4523 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4524 | return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL |
| 4525 | && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin)) |
| 4526 | & GDK_WINDOW_STATE_MAXIMIZED)); |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4527 | } |
| 4528 | |
| 4529 | /* |
| 4530 | * Unmaximize the main window |
| 4531 | */ |
| 4532 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 4533 | gui_mch_unmaximize(void) |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4534 | { |
| 4535 | if (gui.mainwin != NULL) |
| 4536 | gtk_window_unmaximize(GTK_WINDOW(gui.mainwin)); |
| 4537 | } |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4538 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4539 | /* |
Bram Moolenaar | 8ac4415 | 2017-11-09 18:33:29 +0100 | [diff] [blame] | 4540 | * Called when the font changed while the window is maximized or GO_KEEPWINSIZE |
| 4541 | * is set. Compute the new Rows and Columns. This is like resizing the |
| 4542 | * window. |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 4543 | */ |
| 4544 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 4545 | gui_mch_newfont(void) |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 4546 | { |
| 4547 | int w, h; |
| 4548 | |
| 4549 | gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h); |
| 4550 | w -= get_menu_tool_width(); |
| 4551 | h -= get_menu_tool_height(); |
| 4552 | gui_resize_shell(w, h); |
| 4553 | } |
| 4554 | |
| 4555 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4556 | * Set the windows size. |
| 4557 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4558 | void |
| 4559 | gui_mch_set_shellsize(int width, int height, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4560 | int min_width UNUSED, int min_height UNUSED, |
| 4561 | int base_width UNUSED, int base_height UNUSED, |
| 4562 | int direction UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4563 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4564 | /* give GTK+ a chance to put all widget's into place */ |
| 4565 | gui_mch_update(); |
| 4566 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4567 | /* this will cause the proper resizement to happen too */ |
| 4568 | if (gtk_socket_id == 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4569 | update_window_manager_hints(0, 0); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4570 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4571 | /* With GTK+ 2, changing the size of the form widget doesn't resize |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4572 | * the window. So let's do it the other way around and resize the |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4573 | * main window instead. */ |
| 4574 | width += get_menu_tool_width(); |
| 4575 | height += get_menu_tool_height(); |
| 4576 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4577 | if (gtk_socket_id == 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4578 | gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4579 | else |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4580 | update_window_manager_hints(width, height); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4581 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4582 | # if !GTK_CHECK_VERSION(3,0,0) |
| 4583 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4584 | if (!resize_idle_installed) |
| 4585 | { |
| 4586 | g_idle_add_full(GDK_PRIORITY_EVENTS + 10, |
| 4587 | &force_shell_resize_idle, NULL, NULL); |
| 4588 | resize_idle_installed = TRUE; |
| 4589 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4590 | # endif |
| 4591 | # endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4592 | /* |
| 4593 | * Wait until all events are processed to prevent a crash because the |
| 4594 | * real size of the drawing area doesn't reflect Vim's internal ideas. |
| 4595 | * |
| 4596 | * This is a bit of a hack, since Vim is a terminal application with a GUI |
| 4597 | * on top, while the GUI expects to be the boss. |
| 4598 | */ |
| 4599 | gui_mch_update(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4600 | } |
| 4601 | |
Bram Moolenaar | 7be9b50 | 2017-09-09 18:45:26 +0200 | [diff] [blame] | 4602 | void |
Bram Moolenaar | 3f6a16f | 2018-08-19 22:58:45 +0200 | [diff] [blame] | 4603 | gui_gtk_get_screen_geom_of_win( |
| 4604 | GtkWidget *wid, |
| 4605 | int *screen_x, |
| 4606 | int *screen_y, |
| 4607 | int *width, |
| 4608 | int *height) |
Bram Moolenaar | 7be9b50 | 2017-09-09 18:45:26 +0200 | [diff] [blame] | 4609 | { |
Bram Moolenaar | 3f6a16f | 2018-08-19 22:58:45 +0200 | [diff] [blame] | 4610 | GdkRectangle geometry; |
| 4611 | GdkWindow *win = gtk_widget_get_window(wid); |
Bram Moolenaar | 7be9b50 | 2017-09-09 18:45:26 +0200 | [diff] [blame] | 4612 | #if GTK_CHECK_VERSION(3,22,0) |
Bram Moolenaar | 8696bba | 2017-09-09 23:00:56 +0200 | [diff] [blame] | 4613 | GdkDisplay *dpy = gtk_widget_get_display(wid); |
Bram Moolenaar | 7be9b50 | 2017-09-09 18:45:26 +0200 | [diff] [blame] | 4614 | GdkMonitor *monitor = gdk_display_get_monitor_at_window(dpy, win); |
Bram Moolenaar | 7be9b50 | 2017-09-09 18:45:26 +0200 | [diff] [blame] | 4615 | |
| 4616 | gdk_monitor_get_geometry(monitor, &geometry); |
Bram Moolenaar | 7be9b50 | 2017-09-09 18:45:26 +0200 | [diff] [blame] | 4617 | #else |
| 4618 | GdkScreen* screen; |
Bram Moolenaar | 3f6a16f | 2018-08-19 22:58:45 +0200 | [diff] [blame] | 4619 | int monitor; |
Bram Moolenaar | 7be9b50 | 2017-09-09 18:45:26 +0200 | [diff] [blame] | 4620 | |
Bram Moolenaar | 8696bba | 2017-09-09 23:00:56 +0200 | [diff] [blame] | 4621 | if (wid != NULL && gtk_widget_has_screen(wid)) |
| 4622 | screen = gtk_widget_get_screen(wid); |
Bram Moolenaar | 7be9b50 | 2017-09-09 18:45:26 +0200 | [diff] [blame] | 4623 | else |
| 4624 | screen = gdk_screen_get_default(); |
Bram Moolenaar | 3f6a16f | 2018-08-19 22:58:45 +0200 | [diff] [blame] | 4625 | monitor = gdk_screen_get_monitor_at_window(screen, win); |
| 4626 | gdk_screen_get_monitor_geometry(screen, monitor, &geometry); |
Bram Moolenaar | 7be9b50 | 2017-09-09 18:45:26 +0200 | [diff] [blame] | 4627 | #endif |
Bram Moolenaar | 3f6a16f | 2018-08-19 22:58:45 +0200 | [diff] [blame] | 4628 | *screen_x = geometry.x; |
| 4629 | *screen_y = geometry.y; |
| 4630 | *width = geometry.width; |
| 4631 | *height = geometry.height; |
Bram Moolenaar | 7be9b50 | 2017-09-09 18:45:26 +0200 | [diff] [blame] | 4632 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4633 | |
| 4634 | /* |
| 4635 | * The screen size is used to make sure the initial window doesn't get bigger |
| 4636 | * than the screen. This subtracts some room for menubar, toolbar and window |
| 4637 | * decorations. |
| 4638 | */ |
| 4639 | void |
| 4640 | gui_mch_get_screen_dimensions(int *screen_w, int *screen_h) |
| 4641 | { |
Bram Moolenaar | 3f6a16f | 2018-08-19 22:58:45 +0200 | [diff] [blame] | 4642 | int x, y; |
| 4643 | |
| 4644 | gui_gtk_get_screen_geom_of_win(gui.mainwin, &x, &y, screen_w, screen_h); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 4645 | |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 4646 | /* Subtract 'guiheadroom' from the height to allow some room for the |
| 4647 | * window manager (task list and window title bar). */ |
Bram Moolenaar | 7be9b50 | 2017-09-09 18:45:26 +0200 | [diff] [blame] | 4648 | *screen_h -= p_ghr; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4649 | |
| 4650 | /* |
| 4651 | * FIXME: dirty trick: Because the gui_get_base_height() doesn't include |
| 4652 | * the toolbar and menubar for GTK, we subtract them from the screen |
Bram Moolenaar | 6440447 | 2010-06-26 06:24:45 +0200 | [diff] [blame] | 4653 | * height, so that the window size can be made to fit on the screen. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4654 | * This should be completely changed later. |
| 4655 | */ |
| 4656 | *screen_w -= get_menu_tool_width(); |
| 4657 | *screen_h -= get_menu_tool_height(); |
| 4658 | } |
| 4659 | |
| 4660 | #if defined(FEAT_TITLE) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4661 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4662 | gui_mch_settitle(char_u *title, char_u *icon UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4663 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4664 | if (title != NULL && output_conv.vc_type != CONV_NONE) |
| 4665 | title = string_convert(&output_conv, title, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4666 | |
| 4667 | gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title); |
| 4668 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4669 | if (output_conv.vc_type != CONV_NONE) |
| 4670 | vim_free(title); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4671 | } |
| 4672 | #endif /* FEAT_TITLE */ |
| 4673 | |
| 4674 | #if defined(FEAT_MENU) || defined(PROTO) |
| 4675 | void |
| 4676 | gui_mch_enable_menu(int showit) |
| 4677 | { |
| 4678 | GtkWidget *widget; |
| 4679 | |
| 4680 | # ifdef FEAT_GUI_GNOME |
| 4681 | if (using_gnome) |
| 4682 | widget = gui.menubar_h; |
| 4683 | else |
| 4684 | # endif |
| 4685 | widget = gui.menubar; |
| 4686 | |
Bram Moolenaar | 18144c8 | 2006-04-12 21:52:12 +0000 | [diff] [blame] | 4687 | /* Do not disable the menu while starting up, otherwise F10 doesn't work. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4688 | if (!showit != !gtk_widget_get_visible(widget) && !gui.starting) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4689 | { |
| 4690 | if (showit) |
| 4691 | gtk_widget_show(widget); |
| 4692 | else |
| 4693 | gtk_widget_hide(widget); |
| 4694 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4695 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4696 | } |
| 4697 | } |
| 4698 | #endif /* FEAT_MENU */ |
| 4699 | |
| 4700 | #if defined(FEAT_TOOLBAR) || defined(PROTO) |
| 4701 | void |
| 4702 | gui_mch_show_toolbar(int showit) |
| 4703 | { |
| 4704 | GtkWidget *widget; |
| 4705 | |
| 4706 | if (gui.toolbar == NULL) |
| 4707 | return; |
| 4708 | |
| 4709 | # ifdef FEAT_GUI_GNOME |
| 4710 | if (using_gnome) |
| 4711 | widget = gui.toolbar_h; |
| 4712 | else |
| 4713 | # endif |
| 4714 | widget = gui.toolbar; |
| 4715 | |
| 4716 | if (showit) |
| 4717 | set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); |
| 4718 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4719 | if (!showit != !gtk_widget_get_visible(widget)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4720 | { |
| 4721 | if (showit) |
| 4722 | gtk_widget_show(widget); |
| 4723 | else |
| 4724 | gtk_widget_hide(widget); |
| 4725 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4726 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4727 | } |
| 4728 | } |
| 4729 | #endif /* FEAT_TOOLBAR */ |
| 4730 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4731 | /* |
| 4732 | * Check if a given font is a CJK font. This is done in a very crude manner. It |
| 4733 | * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given |
| 4734 | * font. Consequently, this function cannot be used as a general purpose check |
| 4735 | * for CJK-ness for which fontconfig APIs should be used. This is only used by |
| 4736 | * gui_mch_init_font() to deal with 'CJK fixed width fonts'. |
| 4737 | */ |
| 4738 | static int |
| 4739 | is_cjk_font(PangoFontDescription *font_desc) |
| 4740 | { |
| 4741 | static const char * const cjk_langs[] = |
| 4742 | {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"}; |
| 4743 | |
| 4744 | PangoFont *font; |
| 4745 | unsigned i; |
| 4746 | int is_cjk = FALSE; |
| 4747 | |
| 4748 | font = pango_context_load_font(gui.text_context, font_desc); |
| 4749 | |
| 4750 | if (font == NULL) |
| 4751 | return FALSE; |
| 4752 | |
| 4753 | for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i) |
| 4754 | { |
| 4755 | PangoCoverage *coverage; |
| 4756 | gunichar uc; |
| 4757 | |
| 4758 | coverage = pango_font_get_coverage( |
| 4759 | font, pango_language_from_string(cjk_langs[i])); |
| 4760 | |
| 4761 | if (coverage != NULL) |
| 4762 | { |
| 4763 | uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00; |
| 4764 | is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT); |
| 4765 | pango_coverage_unref(coverage); |
| 4766 | } |
| 4767 | } |
| 4768 | |
| 4769 | g_object_unref(font); |
| 4770 | |
| 4771 | return is_cjk; |
| 4772 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4773 | |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 4774 | /* |
| 4775 | * Adjust gui.char_height (after 'linespace' was changed). |
| 4776 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4777 | int |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 4778 | gui_mch_adjust_charheight(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4779 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4780 | PangoFontMetrics *metrics; |
| 4781 | int ascent; |
| 4782 | int descent; |
| 4783 | |
| 4784 | metrics = pango_context_get_metrics(gui.text_context, gui.norm_font, |
| 4785 | pango_context_get_language(gui.text_context)); |
| 4786 | ascent = pango_font_metrics_get_ascent(metrics); |
| 4787 | descent = pango_font_metrics_get_descent(metrics); |
| 4788 | |
| 4789 | pango_font_metrics_unref(metrics); |
| 4790 | |
| 4791 | gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 4792 | + p_linespace; |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 4793 | /* LINTED: avoid warning: bitwise operation on signed value */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4794 | gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2); |
| 4795 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4796 | /* A not-positive value of char_height may crash Vim. Only happens |
| 4797 | * if 'linespace' is negative (which does make sense sometimes). */ |
| 4798 | gui.char_ascent = MAX(gui.char_ascent, 0); |
| 4799 | gui.char_height = MAX(gui.char_height, gui.char_ascent + 1); |
| 4800 | |
| 4801 | return OK; |
| 4802 | } |
| 4803 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4804 | #if GTK_CHECK_VERSION(3,0,0) |
| 4805 | /* Callback function used in gui_mch_font_dialog() */ |
| 4806 | static gboolean |
| 4807 | font_filter(const PangoFontFamily *family, |
| 4808 | const PangoFontFace *face UNUSED, |
| 4809 | gpointer data UNUSED) |
| 4810 | { |
| 4811 | return pango_font_family_is_monospace((PangoFontFamily *)family); |
| 4812 | } |
| 4813 | #endif |
| 4814 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4815 | /* |
| 4816 | * Put up a font dialog and return the selected font name in allocated memory. |
| 4817 | * "oldval" is the previous value. Return NULL when cancelled. |
| 4818 | * This should probably go into gui_gtk.c. Hmm. |
| 4819 | * FIXME: |
| 4820 | * The GTK2 font selection dialog has no filtering API. So we could either |
| 4821 | * a) implement our own (possibly copying the code from somewhere else) or |
| 4822 | * b) just live with it. |
| 4823 | */ |
| 4824 | char_u * |
| 4825 | gui_mch_font_dialog(char_u *oldval) |
| 4826 | { |
| 4827 | GtkWidget *dialog; |
| 4828 | int response; |
| 4829 | char_u *fontname = NULL; |
| 4830 | char_u *oldname; |
| 4831 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4832 | #if GTK_CHECK_VERSION(3,2,0) |
| 4833 | dialog = gtk_font_chooser_dialog_new(NULL, NULL); |
| 4834 | gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter, |
| 4835 | NULL, NULL); |
| 4836 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4837 | dialog = gtk_font_selection_dialog_new(NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4838 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4839 | |
| 4840 | gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin)); |
| 4841 | gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE); |
| 4842 | |
| 4843 | if (oldval != NULL && oldval[0] != NUL) |
| 4844 | { |
| 4845 | if (output_conv.vc_type != CONV_NONE) |
| 4846 | oldname = string_convert(&output_conv, oldval, NULL); |
| 4847 | else |
| 4848 | oldname = oldval; |
| 4849 | |
| 4850 | /* Annoying bug in GTK (or Pango): if the font name does not include a |
| 4851 | * size, zero is used. Use default point size ten. */ |
| 4852 | if (!vim_isdigit(oldname[STRLEN(oldname) - 1])) |
| 4853 | { |
| 4854 | char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3); |
| 4855 | |
| 4856 | if (p != NULL) |
| 4857 | { |
| 4858 | STRCPY(p + STRLEN(p), " 10"); |
| 4859 | if (oldname != oldval) |
| 4860 | vim_free(oldname); |
| 4861 | oldname = p; |
| 4862 | } |
| 4863 | } |
| 4864 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4865 | #if GTK_CHECK_VERSION(3,2,0) |
| 4866 | gtk_font_chooser_set_font( |
| 4867 | GTK_FONT_CHOOSER(dialog), (const gchar *)oldname); |
| 4868 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4869 | gtk_font_selection_dialog_set_font_name( |
| 4870 | GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4871 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4872 | |
| 4873 | if (oldname != oldval) |
Bram Moolenaar | 8c71145 | 2005-01-14 21:53:12 +0000 | [diff] [blame] | 4874 | vim_free(oldname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4875 | } |
Bram Moolenaar | bef9d83 | 2009-09-11 13:46:41 +0000 | [diff] [blame] | 4876 | else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4877 | #if GTK_CHECK_VERSION(3,2,0) |
| 4878 | gtk_font_chooser_set_font( |
| 4879 | GTK_FONT_CHOOSER(dialog), DEFAULT_FONT); |
| 4880 | #else |
Bram Moolenaar | bef9d83 | 2009-09-11 13:46:41 +0000 | [diff] [blame] | 4881 | gtk_font_selection_dialog_set_font_name( |
| 4882 | GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4883 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4884 | |
| 4885 | response = gtk_dialog_run(GTK_DIALOG(dialog)); |
| 4886 | |
| 4887 | if (response == GTK_RESPONSE_OK) |
| 4888 | { |
| 4889 | char *name; |
| 4890 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4891 | #if GTK_CHECK_VERSION(3,2,0) |
| 4892 | name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog)); |
| 4893 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4894 | name = gtk_font_selection_dialog_get_font_name( |
| 4895 | GTK_FONT_SELECTION_DIALOG(dialog)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4896 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4897 | if (name != NULL) |
| 4898 | { |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4899 | char_u *p; |
| 4900 | |
| 4901 | /* Apparently some font names include a comma, need to escape |
| 4902 | * that, because in 'guifont' it separates names. */ |
| 4903 | p = vim_strsave_escaped((char_u *)name, (char_u *)","); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4904 | g_free(name); |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 4905 | if (p != NULL && input_conv.vc_type != CONV_NONE) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4906 | { |
| 4907 | fontname = string_convert(&input_conv, p, NULL); |
| 4908 | vim_free(p); |
| 4909 | } |
| 4910 | else |
| 4911 | fontname = p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4912 | } |
| 4913 | } |
| 4914 | |
| 4915 | if (response != GTK_RESPONSE_NONE) |
| 4916 | gtk_widget_destroy(dialog); |
| 4917 | |
| 4918 | return fontname; |
| 4919 | } |
| 4920 | |
| 4921 | /* |
| 4922 | * Some monospace fonts don't support a bold weight, and fall back |
| 4923 | * silently to the regular weight. But this is no good since our text |
| 4924 | * drawing function can emulate bold by overstriking. So let's try |
| 4925 | * to detect whether bold weight is actually available and emulate it |
| 4926 | * otherwise. |
| 4927 | * |
| 4928 | * Note that we don't need to check for italic style since Xft can |
| 4929 | * emulate italic on its own, provided you have a proper fontconfig |
| 4930 | * setup. We wouldn't be able to emulate it in Vim anyway. |
| 4931 | */ |
| 4932 | static void |
| 4933 | get_styled_font_variants(void) |
| 4934 | { |
| 4935 | PangoFontDescription *bold_font_desc; |
| 4936 | PangoFont *plain_font; |
| 4937 | PangoFont *bold_font; |
| 4938 | |
| 4939 | gui.font_can_bold = FALSE; |
| 4940 | |
| 4941 | plain_font = pango_context_load_font(gui.text_context, gui.norm_font); |
| 4942 | |
| 4943 | if (plain_font == NULL) |
| 4944 | return; |
| 4945 | |
| 4946 | bold_font_desc = pango_font_description_copy_static(gui.norm_font); |
| 4947 | pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD); |
| 4948 | |
| 4949 | bold_font = pango_context_load_font(gui.text_context, bold_font_desc); |
| 4950 | /* |
| 4951 | * The comparison relies on the unique handle nature of a PangoFont*, |
| 4952 | * i.e. it's assumed that a different PangoFont* won't refer to the |
| 4953 | * same font. Seems to work, and failing here isn't critical anyway. |
| 4954 | */ |
| 4955 | if (bold_font != NULL) |
| 4956 | { |
| 4957 | gui.font_can_bold = (bold_font != plain_font); |
| 4958 | g_object_unref(bold_font); |
| 4959 | } |
| 4960 | |
| 4961 | pango_font_description_free(bold_font_desc); |
| 4962 | g_object_unref(plain_font); |
| 4963 | } |
| 4964 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4965 | static PangoEngineShape *default_shape_engine = NULL; |
| 4966 | |
| 4967 | /* |
| 4968 | * Create a map from ASCII characters in the range [32,126] to glyphs |
| 4969 | * of the current font. This is used by gui_gtk2_draw_string() to skip |
| 4970 | * the itemize and shaping process for the most common case. |
| 4971 | */ |
| 4972 | static void |
| 4973 | ascii_glyph_table_init(void) |
| 4974 | { |
Bram Moolenaar | 16350cb | 2016-08-14 20:27:34 +0200 | [diff] [blame] | 4975 | char_u ascii_chars[2 * 128]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4976 | PangoAttrList *attr_list; |
| 4977 | GList *item_list; |
| 4978 | int i; |
| 4979 | |
| 4980 | if (gui.ascii_glyphs != NULL) |
| 4981 | pango_glyph_string_free(gui.ascii_glyphs); |
| 4982 | if (gui.ascii_font != NULL) |
| 4983 | g_object_unref(gui.ascii_font); |
| 4984 | |
| 4985 | gui.ascii_glyphs = NULL; |
| 4986 | gui.ascii_font = NULL; |
| 4987 | |
Bram Moolenaar | 16350cb | 2016-08-14 20:27:34 +0200 | [diff] [blame] | 4988 | /* For safety, fill in question marks for the control characters. |
| 4989 | * Put a space between characters to avoid shaping. */ |
| 4990 | for (i = 0; i < 128; ++i) |
| 4991 | { |
| 4992 | if (i >= 32 && i < 127) |
| 4993 | ascii_chars[2 * i] = i; |
| 4994 | else |
| 4995 | ascii_chars[2 * i] = '?'; |
| 4996 | ascii_chars[2 * i + 1] = ' '; |
| 4997 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4998 | |
| 4999 | attr_list = pango_attr_list_new(); |
| 5000 | item_list = pango_itemize(gui.text_context, (const char *)ascii_chars, |
| 5001 | 0, sizeof(ascii_chars), attr_list, NULL); |
| 5002 | |
| 5003 | if (item_list != NULL && item_list->next == NULL) /* play safe */ |
| 5004 | { |
| 5005 | PangoItem *item; |
| 5006 | int width; |
| 5007 | |
| 5008 | item = (PangoItem *)item_list->data; |
| 5009 | width = gui.char_width * PANGO_SCALE; |
| 5010 | |
| 5011 | /* Remember the shape engine used for ASCII. */ |
| 5012 | default_shape_engine = item->analysis.shape_engine; |
| 5013 | |
| 5014 | gui.ascii_font = item->analysis.font; |
| 5015 | g_object_ref(gui.ascii_font); |
| 5016 | |
| 5017 | gui.ascii_glyphs = pango_glyph_string_new(); |
| 5018 | |
| 5019 | pango_shape((const char *)ascii_chars, sizeof(ascii_chars), |
| 5020 | &item->analysis, gui.ascii_glyphs); |
| 5021 | |
| 5022 | g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars)); |
| 5023 | |
| 5024 | for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i) |
| 5025 | { |
| 5026 | PangoGlyphGeometry *geom; |
| 5027 | |
| 5028 | geom = &gui.ascii_glyphs->glyphs[i].geometry; |
| 5029 | geom->x_offset += MAX(0, width - geom->width) / 2; |
| 5030 | geom->width = width; |
| 5031 | } |
| 5032 | } |
| 5033 | |
| 5034 | g_list_foreach(item_list, (GFunc)&pango_item_free, NULL); |
| 5035 | g_list_free(item_list); |
| 5036 | pango_attr_list_unref(attr_list); |
| 5037 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5038 | |
| 5039 | /* |
| 5040 | * Initialize Vim to use the font or fontset with the given name. |
| 5041 | * Return FAIL if the font could not be loaded, OK otherwise. |
| 5042 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5043 | int |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5044 | gui_mch_init_font(char_u *font_name, int fontset UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5045 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5046 | PangoFontDescription *font_desc; |
| 5047 | PangoLayout *layout; |
| 5048 | int width; |
| 5049 | |
| 5050 | /* If font_name is NULL, this means to use the default, which should |
| 5051 | * be present on all proper Pango/fontconfig installations. */ |
| 5052 | if (font_name == NULL) |
| 5053 | font_name = (char_u *)DEFAULT_FONT; |
| 5054 | |
| 5055 | font_desc = gui_mch_get_font(font_name, FALSE); |
| 5056 | |
| 5057 | if (font_desc == NULL) |
| 5058 | return FAIL; |
| 5059 | |
| 5060 | gui_mch_free_font(gui.norm_font); |
| 5061 | gui.norm_font = font_desc; |
| 5062 | |
| 5063 | pango_context_set_font_description(gui.text_context, font_desc); |
| 5064 | |
| 5065 | layout = pango_layout_new(gui.text_context); |
| 5066 | pango_layout_set_text(layout, "MW", 2); |
| 5067 | pango_layout_get_size(layout, &width, NULL); |
| 5068 | /* |
| 5069 | * Set char_width to half the width obtained from pango_layout_get_size() |
| 5070 | * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads |
| 5071 | * Pango to use the same width for both non-CJK characters (e.g. Latin |
| 5072 | * letters and numbers) and CJK characters. This results in 's p a c e d |
| 5073 | * o u t' rendering when a CJK 'fixed width' font is used. To work around |
| 5074 | * that, divide the width returned by Pango by 2 if cjk_width is equal to |
| 5075 | * width for CJK fonts. |
| 5076 | * |
| 5077 | * For related bugs, see: |
| 5078 | * http://bugzilla.gnome.org/show_bug.cgi?id=106618 |
| 5079 | * http://bugzilla.gnome.org/show_bug.cgi?id=106624 |
| 5080 | * |
| 5081 | * With this, for all four of the following cases, Vim works fine: |
| 5082 | * guifont=CJK_fixed_width_font |
| 5083 | * guifont=Non_CJK_fixed_font |
| 5084 | * guifont=Non_CJK_fixed_font,CJK_Fixed_font |
| 5085 | * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font |
| 5086 | */ |
| 5087 | if (is_cjk_font(gui.norm_font)) |
| 5088 | { |
| 5089 | int cjk_width; |
| 5090 | |
| 5091 | /* Measure the text extent of U+4E00 and U+4E8C */ |
| 5092 | pango_layout_set_text(layout, "\344\270\200\344\272\214", -1); |
| 5093 | pango_layout_get_size(layout, &cjk_width, NULL); |
| 5094 | |
| 5095 | if (width == cjk_width) /* Xft not patched */ |
| 5096 | width /= 2; |
| 5097 | } |
| 5098 | g_object_unref(layout); |
| 5099 | |
| 5100 | gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE; |
| 5101 | |
| 5102 | /* A zero width may cause a crash. Happens for semi-invalid fontsets. */ |
| 5103 | if (gui.char_width <= 0) |
| 5104 | gui.char_width = 8; |
| 5105 | |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5106 | gui_mch_adjust_charheight(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5107 | |
| 5108 | /* Set the fontname, which will be used for information purposes */ |
| 5109 | hl_set_font_name(font_name); |
| 5110 | |
| 5111 | get_styled_font_variants(); |
| 5112 | ascii_glyph_table_init(); |
| 5113 | |
| 5114 | /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */ |
| 5115 | if (gui.wide_font != NULL |
| 5116 | && pango_font_description_equal(gui.norm_font, gui.wide_font)) |
| 5117 | { |
| 5118 | pango_font_description_free(gui.wide_font); |
| 5119 | gui.wide_font = NULL; |
| 5120 | } |
| 5121 | |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5122 | if (gui_mch_maximized()) |
| 5123 | { |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5124 | /* Update lines and columns in accordance with the new font, keep the |
| 5125 | * window maximized. */ |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 5126 | gui_mch_newfont(); |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5127 | } |
| 5128 | else |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5129 | { |
| 5130 | /* Preserve the logical dimensions of the screen. */ |
| 5131 | update_window_manager_hints(0, 0); |
| 5132 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5133 | |
| 5134 | return OK; |
| 5135 | } |
| 5136 | |
| 5137 | /* |
| 5138 | * Get a reference to the font "name". |
| 5139 | * Return zero for failure. |
| 5140 | */ |
| 5141 | GuiFont |
| 5142 | gui_mch_get_font(char_u *name, int report_error) |
| 5143 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5144 | PangoFontDescription *font; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5145 | |
| 5146 | /* can't do this when GUI is not running */ |
| 5147 | if (!gui.in_use || name == NULL) |
| 5148 | return NULL; |
| 5149 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5150 | if (output_conv.vc_type != CONV_NONE) |
| 5151 | { |
| 5152 | char_u *buf; |
| 5153 | |
| 5154 | buf = string_convert(&output_conv, name, NULL); |
| 5155 | if (buf != NULL) |
| 5156 | { |
| 5157 | font = pango_font_description_from_string((const char *)buf); |
| 5158 | vim_free(buf); |
| 5159 | } |
| 5160 | else |
| 5161 | font = NULL; |
| 5162 | } |
| 5163 | else |
| 5164 | font = pango_font_description_from_string((const char *)name); |
| 5165 | |
| 5166 | if (font != NULL) |
| 5167 | { |
| 5168 | PangoFont *real_font; |
| 5169 | |
| 5170 | /* pango_context_load_font() bails out if no font size is set */ |
| 5171 | if (pango_font_description_get_size(font) <= 0) |
| 5172 | pango_font_description_set_size(font, 10 * PANGO_SCALE); |
| 5173 | |
| 5174 | real_font = pango_context_load_font(gui.text_context, font); |
| 5175 | |
| 5176 | if (real_font == NULL) |
| 5177 | { |
| 5178 | pango_font_description_free(font); |
| 5179 | font = NULL; |
| 5180 | } |
| 5181 | else |
| 5182 | g_object_unref(real_font); |
| 5183 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5184 | |
| 5185 | if (font == NULL) |
| 5186 | { |
| 5187 | if (report_error) |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 5188 | semsg(_((char *)e_font), name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5189 | return NULL; |
| 5190 | } |
| 5191 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5192 | return font; |
| 5193 | } |
| 5194 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5195 | #if defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5196 | /* |
| 5197 | * Return the name of font "font" in allocated memory. |
| 5198 | */ |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5199 | char_u * |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5200 | gui_mch_get_fontname(GuiFont font, char_u *name UNUSED) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5201 | { |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5202 | if (font != NOFONT) |
| 5203 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5204 | char *pangoname = pango_font_description_to_string(font); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5205 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5206 | if (pangoname != NULL) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5207 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5208 | char_u *s = vim_strsave((char_u *)pangoname); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5209 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5210 | g_free(pangoname); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5211 | return s; |
| 5212 | } |
| 5213 | } |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5214 | return NULL; |
| 5215 | } |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5216 | #endif |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5217 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5218 | /* |
| 5219 | * If a font is not going to be used, free its structure. |
| 5220 | */ |
| 5221 | void |
| 5222 | gui_mch_free_font(GuiFont font) |
| 5223 | { |
| 5224 | if (font != NOFONT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5225 | pango_font_description_free(font); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5226 | } |
| 5227 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5228 | /* |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5229 | * Return the Pixel value (color) for the given color name. |
| 5230 | * |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5231 | * Return INVALCOLOR for error. |
| 5232 | */ |
| 5233 | guicolor_T |
| 5234 | gui_mch_get_color(char_u *name) |
| 5235 | { |
Bram Moolenaar | 2e32495 | 2018-04-14 14:37:07 +0200 | [diff] [blame] | 5236 | guicolor_T color = INVALCOLOR; |
| 5237 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5238 | if (!gui.in_use) /* can't do this when GUI not running */ |
Bram Moolenaar | 2e32495 | 2018-04-14 14:37:07 +0200 | [diff] [blame] | 5239 | return color; |
| 5240 | |
| 5241 | if (name != NULL) |
| 5242 | color = gui_get_color_cmn(name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5243 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5244 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 2e32495 | 2018-04-14 14:37:07 +0200 | [diff] [blame] | 5245 | return color; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5246 | #else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5247 | if (color == INVALCOLOR) |
| 5248 | return INVALCOLOR; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5249 | |
Bram Moolenaar | 26af85d | 2017-07-23 16:45:10 +0200 | [diff] [blame] | 5250 | return gui_mch_get_rgb_color( |
| 5251 | (color & 0xff0000) >> 16, |
| 5252 | (color & 0xff00) >> 8, |
| 5253 | color & 0xff); |
| 5254 | #endif |
| 5255 | } |
| 5256 | |
| 5257 | /* |
| 5258 | * Return the Pixel value (color) for the given RGB values. |
| 5259 | * Return INVALCOLOR for error. |
| 5260 | */ |
| 5261 | guicolor_T |
| 5262 | gui_mch_get_rgb_color(int r, int g, int b) |
| 5263 | { |
| 5264 | #if GTK_CHECK_VERSION(3,0,0) |
| 5265 | return gui_get_rgb_color_cmn(r, g, b); |
| 5266 | #else |
| 5267 | GdkColor gcolor; |
| 5268 | int ret; |
| 5269 | |
| 5270 | gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5); |
| 5271 | gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5); |
| 5272 | gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5273 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5274 | ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea), |
| 5275 | &gcolor, FALSE, TRUE); |
| 5276 | |
| 5277 | return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR; |
| 5278 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5279 | } |
| 5280 | |
| 5281 | /* |
| 5282 | * Set the current text foreground color. |
| 5283 | */ |
| 5284 | void |
| 5285 | gui_mch_set_fg_color(guicolor_T color) |
| 5286 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5287 | #if GTK_CHECK_VERSION(3,0,0) |
| 5288 | *gui.fgcolor = color_to_rgba(color); |
| 5289 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5290 | gui.fgcolor->pixel = (unsigned long)color; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5291 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5292 | } |
| 5293 | |
| 5294 | /* |
| 5295 | * Set the current text background color. |
| 5296 | */ |
| 5297 | void |
| 5298 | gui_mch_set_bg_color(guicolor_T color) |
| 5299 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5300 | #if GTK_CHECK_VERSION(3,0,0) |
| 5301 | *gui.bgcolor = color_to_rgba(color); |
| 5302 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5303 | gui.bgcolor->pixel = (unsigned long)color; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5304 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5305 | } |
| 5306 | |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5307 | /* |
| 5308 | * Set the current text special color. |
| 5309 | */ |
| 5310 | void |
| 5311 | gui_mch_set_sp_color(guicolor_T color) |
| 5312 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5313 | #if GTK_CHECK_VERSION(3,0,0) |
| 5314 | *gui.spcolor = color_to_rgba(color); |
| 5315 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5316 | gui.spcolor->pixel = (unsigned long)color; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5317 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5318 | } |
| 5319 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5320 | /* |
| 5321 | * Function-like convenience macro for the sake of efficiency. |
| 5322 | */ |
| 5323 | #define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \ |
| 5324 | G_STMT_START{ \ |
| 5325 | PangoAttribute *tmp_attr_; \ |
| 5326 | tmp_attr_ = (Attribute); \ |
| 5327 | tmp_attr_->start_index = (Start); \ |
| 5328 | tmp_attr_->end_index = (End); \ |
| 5329 | pango_attr_list_insert((AttrList), tmp_attr_); \ |
| 5330 | }G_STMT_END |
| 5331 | |
| 5332 | static void |
| 5333 | apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list) |
| 5334 | { |
| 5335 | char_u *start = NULL; |
| 5336 | char_u *p; |
| 5337 | int uc; |
| 5338 | |
| 5339 | for (p = s; p < s + len; p += utf_byte2len(*p)) |
| 5340 | { |
| 5341 | uc = utf_ptr2char(p); |
| 5342 | |
| 5343 | if (start == NULL) |
| 5344 | { |
| 5345 | if (uc >= 0x80 && utf_char2cells(uc) == 2) |
| 5346 | start = p; |
| 5347 | } |
| 5348 | else if (uc < 0x80 /* optimization shortcut */ |
| 5349 | || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc))) |
| 5350 | { |
| 5351 | INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), |
| 5352 | attr_list, start - s, p - s); |
| 5353 | start = NULL; |
| 5354 | } |
| 5355 | } |
| 5356 | |
| 5357 | if (start != NULL) |
| 5358 | INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), |
| 5359 | attr_list, start - s, len); |
| 5360 | } |
| 5361 | |
| 5362 | static int |
| 5363 | count_cluster_cells(char_u *s, PangoItem *item, |
| 5364 | PangoGlyphString* glyphs, int i, |
| 5365 | int *cluster_width, |
| 5366 | int *last_glyph_rbearing) |
| 5367 | { |
| 5368 | char_u *p; |
| 5369 | int next; /* glyph start index of next cluster */ |
| 5370 | int start, end; /* string segment of current cluster */ |
| 5371 | int width; /* real cluster width in Pango units */ |
| 5372 | int uc; |
| 5373 | int cellcount = 0; |
| 5374 | |
| 5375 | width = glyphs->glyphs[i].geometry.width; |
| 5376 | |
| 5377 | for (next = i + 1; next < glyphs->num_glyphs; ++next) |
| 5378 | { |
| 5379 | if (glyphs->glyphs[next].attr.is_cluster_start) |
| 5380 | break; |
| 5381 | else if (glyphs->glyphs[next].geometry.width > width) |
| 5382 | width = glyphs->glyphs[next].geometry.width; |
| 5383 | } |
| 5384 | |
| 5385 | start = item->offset + glyphs->log_clusters[i]; |
| 5386 | end = item->offset + ((next < glyphs->num_glyphs) ? |
| 5387 | glyphs->log_clusters[next] : item->length); |
| 5388 | |
| 5389 | for (p = s + start; p < s + end; p += utf_byte2len(*p)) |
| 5390 | { |
| 5391 | uc = utf_ptr2char(p); |
| 5392 | if (uc < 0x80) |
| 5393 | ++cellcount; |
| 5394 | else if (!utf_iscomposing(uc)) |
| 5395 | cellcount += utf_char2cells(uc); |
| 5396 | } |
| 5397 | |
| 5398 | if (last_glyph_rbearing != NULL |
| 5399 | && cellcount > 0 && next == glyphs->num_glyphs) |
| 5400 | { |
| 5401 | PangoRectangle ink_rect; |
| 5402 | /* |
| 5403 | * If a certain combining mark had to be taken from a non-monospace |
| 5404 | * font, we have to compensate manually by adapting x_offset according |
| 5405 | * to the ink extents of the previous glyph. |
| 5406 | */ |
| 5407 | pango_font_get_glyph_extents(item->analysis.font, |
| 5408 | glyphs->glyphs[i].glyph, |
| 5409 | &ink_rect, NULL); |
| 5410 | |
| 5411 | if (PANGO_RBEARING(ink_rect) > 0) |
| 5412 | *last_glyph_rbearing = PANGO_RBEARING(ink_rect); |
| 5413 | } |
| 5414 | |
| 5415 | if (cellcount > 0) |
| 5416 | *cluster_width = width; |
| 5417 | |
| 5418 | return cellcount; |
| 5419 | } |
| 5420 | |
| 5421 | /* |
| 5422 | * If there are only combining characters in the cluster, we cannot just |
| 5423 | * change the width of the previous glyph since there is none. Therefore |
| 5424 | * some guesswork is needed. |
| 5425 | * |
| 5426 | * If ink_rect.x is negative Pango apparently has taken care of the composing |
| 5427 | * by itself. Actually setting x_offset = 0 should be sufficient then, but due |
| 5428 | * to problems with composing from different fonts we still need to fine-tune |
Bram Moolenaar | 6440447 | 2010-06-26 06:24:45 +0200 | [diff] [blame] | 5429 | * x_offset to avoid ugliness. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5430 | * |
| 5431 | * If ink_rect.x is not negative, force overstriking by pointing x_offset to |
| 5432 | * the position of the previous glyph. Apparently this happens only with old |
| 5433 | * X fonts which don't provide the special combining information needed by |
| 5434 | * Pango. |
| 5435 | */ |
| 5436 | static void |
| 5437 | setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph, |
| 5438 | int last_cellcount, int last_cluster_width, |
| 5439 | int last_glyph_rbearing) |
| 5440 | { |
| 5441 | PangoRectangle ink_rect; |
| 5442 | PangoRectangle logical_rect; |
| 5443 | int width; |
| 5444 | |
| 5445 | width = last_cellcount * gui.char_width * PANGO_SCALE; |
| 5446 | glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2; |
| 5447 | glyph->geometry.width = 0; |
| 5448 | |
| 5449 | pango_font_get_glyph_extents(item->analysis.font, |
| 5450 | glyph->glyph, |
| 5451 | &ink_rect, &logical_rect); |
| 5452 | if (ink_rect.x < 0) |
| 5453 | { |
| 5454 | glyph->geometry.x_offset += last_glyph_rbearing; |
| 5455 | glyph->geometry.y_offset = logical_rect.height |
| 5456 | - (gui.char_height - p_linespace) * PANGO_SCALE; |
| 5457 | } |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5458 | else |
| 5459 | /* If the accent width is smaller than the cluster width, position it |
| 5460 | * in the middle. */ |
| 5461 | glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5462 | } |
| 5463 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5464 | #if GTK_CHECK_VERSION(3,0,0) |
| 5465 | static void |
| 5466 | draw_glyph_string(int row, int col, int num_cells, int flags, |
| 5467 | PangoFont *font, PangoGlyphString *glyphs, |
| 5468 | cairo_t *cr) |
| 5469 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5470 | static void |
| 5471 | draw_glyph_string(int row, int col, int num_cells, int flags, |
| 5472 | PangoFont *font, PangoGlyphString *glyphs) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5473 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5474 | { |
| 5475 | if (!(flags & DRAW_TRANSP)) |
| 5476 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5477 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5478 | cairo_set_source_rgba(cr, |
| 5479 | gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue, |
| 5480 | gui.bgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5481 | cairo_rectangle(cr, |
| 5482 | FILL_X(col), FILL_Y(row), |
| 5483 | num_cells * gui.char_width, gui.char_height); |
| 5484 | cairo_fill(cr); |
| 5485 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5486 | gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
| 5487 | |
| 5488 | gdk_draw_rectangle(gui.drawarea->window, |
| 5489 | gui.text_gc, |
| 5490 | TRUE, |
| 5491 | FILL_X(col), |
| 5492 | FILL_Y(row), |
| 5493 | num_cells * gui.char_width, |
| 5494 | gui.char_height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5495 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5496 | } |
| 5497 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5498 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5499 | cairo_set_source_rgba(cr, |
| 5500 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 5501 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5502 | cairo_move_to(cr, TEXT_X(col), TEXT_Y(row)); |
| 5503 | pango_cairo_show_glyph_string(cr, font, glyphs); |
| 5504 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5505 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 5506 | |
| 5507 | gdk_draw_glyphs(gui.drawarea->window, |
| 5508 | gui.text_gc, |
| 5509 | font, |
| 5510 | TEXT_X(col), |
| 5511 | TEXT_Y(row), |
| 5512 | glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5513 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5514 | |
| 5515 | /* redraw the contents with an offset of 1 to emulate bold */ |
| 5516 | if ((flags & DRAW_BOLD) && !gui.font_can_bold) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5517 | #if GTK_CHECK_VERSION(3,0,0) |
| 5518 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5519 | cairo_set_source_rgba(cr, |
| 5520 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 5521 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5522 | cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row)); |
| 5523 | pango_cairo_show_glyph_string(cr, font, glyphs); |
| 5524 | } |
| 5525 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5526 | gdk_draw_glyphs(gui.drawarea->window, |
| 5527 | gui.text_gc, |
| 5528 | font, |
| 5529 | TEXT_X(col) + 1, |
| 5530 | TEXT_Y(row), |
| 5531 | glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5532 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5533 | } |
| 5534 | |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5535 | /* |
| 5536 | * Draw underline and undercurl at the bottom of the character cell. |
| 5537 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5538 | #if GTK_CHECK_VERSION(3,0,0) |
| 5539 | static void |
| 5540 | draw_under(int flags, int row, int col, int cells, cairo_t *cr) |
| 5541 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5542 | static void |
| 5543 | draw_under(int flags, int row, int col, int cells) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5544 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5545 | { |
| 5546 | int i; |
| 5547 | int offset; |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5548 | static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 }; |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5549 | int y = FILL_Y(row + 1) - 1; |
| 5550 | |
| 5551 | /* Undercurl: draw curl at the bottom of the character cell. */ |
| 5552 | if (flags & DRAW_UNDERC) |
| 5553 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5554 | #if GTK_CHECK_VERSION(3,0,0) |
| 5555 | cairo_set_line_width(cr, 1.0); |
| 5556 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5557 | cairo_set_source_rgba(cr, |
| 5558 | gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue, |
| 5559 | gui.spcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5560 | for (i = FILL_X(col); i < FILL_X(col + cells); ++i) |
| 5561 | { |
| 5562 | offset = val[i % 8]; |
| 5563 | cairo_line_to(cr, i, y - offset + 0.5); |
| 5564 | } |
| 5565 | cairo_stroke(cr); |
| 5566 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5567 | gdk_gc_set_foreground(gui.text_gc, gui.spcolor); |
| 5568 | for (i = FILL_X(col); i < FILL_X(col + cells); ++i) |
| 5569 | { |
| 5570 | offset = val[i % 8]; |
| 5571 | gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset); |
| 5572 | } |
| 5573 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5574 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5575 | } |
| 5576 | |
Bram Moolenaar | cf4b00c | 2017-09-02 18:33:56 +0200 | [diff] [blame] | 5577 | /* Draw a strikethrough line */ |
| 5578 | if (flags & DRAW_STRIKE) |
| 5579 | { |
| 5580 | #if GTK_CHECK_VERSION(3,0,0) |
| 5581 | cairo_set_line_width(cr, 1.0); |
| 5582 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
| 5583 | cairo_set_source_rgba(cr, |
| 5584 | gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue, |
| 5585 | gui.spcolor->alpha); |
| 5586 | cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5); |
| 5587 | cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5); |
| 5588 | cairo_stroke(cr); |
| 5589 | #else |
| 5590 | gdk_gc_set_foreground(gui.text_gc, gui.spcolor); |
| 5591 | gdk_draw_line(gui.drawarea->window, gui.text_gc, |
| 5592 | FILL_X(col), y + 1 - gui.char_height/2, |
| 5593 | FILL_X(col + cells), y + 1 - gui.char_height/2); |
| 5594 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 5595 | #endif |
| 5596 | } |
| 5597 | |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5598 | /* Underline: draw a line at the bottom of the character cell. */ |
| 5599 | if (flags & DRAW_UNDERL) |
| 5600 | { |
| 5601 | /* When p_linespace is 0, overwrite the bottom row of pixels. |
| 5602 | * Otherwise put the line just below the character. */ |
| 5603 | if (p_linespace > 1) |
| 5604 | y -= p_linespace - 1; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5605 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | cf4b00c | 2017-09-02 18:33:56 +0200 | [diff] [blame] | 5606 | cairo_set_line_width(cr, 1.0); |
| 5607 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
| 5608 | cairo_set_source_rgba(cr, |
| 5609 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 5610 | gui.fgcolor->alpha); |
| 5611 | cairo_move_to(cr, FILL_X(col), y + 0.5); |
| 5612 | cairo_line_to(cr, FILL_X(col + cells), y + 0.5); |
| 5613 | cairo_stroke(cr); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5614 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5615 | gdk_draw_line(gui.drawarea->window, gui.text_gc, |
| 5616 | FILL_X(col), y, |
| 5617 | FILL_X(col + cells) - 1, y); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5618 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5619 | } |
| 5620 | } |
| 5621 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5622 | int |
| 5623 | gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags) |
| 5624 | { |
| 5625 | GdkRectangle area; /* area for clip mask */ |
| 5626 | PangoGlyphString *glyphs; /* glyphs of current item */ |
| 5627 | int column_offset = 0; /* column offset in cells */ |
| 5628 | int i; |
| 5629 | char_u *conv_buf = NULL; /* result of UTF-8 conversion */ |
| 5630 | char_u *new_conv_buf; |
| 5631 | int convlen; |
| 5632 | char_u *sp, *bp; |
| 5633 | int plen; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5634 | #if GTK_CHECK_VERSION(3,0,0) |
| 5635 | cairo_t *cr; |
| 5636 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5637 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5638 | if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5639 | return len; |
| 5640 | |
| 5641 | if (output_conv.vc_type != CONV_NONE) |
| 5642 | { |
| 5643 | /* |
| 5644 | * Convert characters from 'encoding' to 'termencoding', which is set |
| 5645 | * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c |
| 5646 | * prohibits changing this to something else than UTF-8 if the GUI is |
| 5647 | * in use. |
| 5648 | */ |
| 5649 | convlen = len; |
| 5650 | conv_buf = string_convert(&output_conv, s, &convlen); |
| 5651 | g_return_val_if_fail(conv_buf != NULL, len); |
| 5652 | |
| 5653 | /* Correct for differences in char width: some chars are |
| 5654 | * double-wide in 'encoding' but single-wide in utf-8. Add a space to |
| 5655 | * compensate for that. */ |
| 5656 | for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; ) |
| 5657 | { |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 5658 | plen = utf_ptr2len(bp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5659 | if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1) |
| 5660 | { |
| 5661 | new_conv_buf = alloc(convlen + 2); |
| 5662 | if (new_conv_buf == NULL) |
| 5663 | return len; |
| 5664 | plen += bp - conv_buf; |
| 5665 | mch_memmove(new_conv_buf, conv_buf, plen); |
| 5666 | new_conv_buf[plen] = ' '; |
| 5667 | mch_memmove(new_conv_buf + plen + 1, conv_buf + plen, |
| 5668 | convlen - plen + 1); |
| 5669 | vim_free(conv_buf); |
| 5670 | conv_buf = new_conv_buf; |
| 5671 | ++convlen; |
| 5672 | bp = conv_buf + plen; |
| 5673 | plen = 1; |
| 5674 | } |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 5675 | sp += (*mb_ptr2len)(sp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5676 | bp += plen; |
| 5677 | } |
| 5678 | s = conv_buf; |
| 5679 | len = convlen; |
| 5680 | } |
| 5681 | |
| 5682 | /* |
| 5683 | * Restrict all drawing to the current screen line in order to prevent |
| 5684 | * fuzzy font lookups from messing up the screen. |
| 5685 | */ |
| 5686 | area.x = gui.border_offset; |
| 5687 | area.y = FILL_Y(row); |
| 5688 | area.width = gui.num_cols * gui.char_width; |
| 5689 | area.height = gui.char_height; |
| 5690 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5691 | #if GTK_CHECK_VERSION(3,0,0) |
| 5692 | cr = cairo_create(gui.surface); |
| 5693 | cairo_rectangle(cr, area.x, area.y, area.width, area.height); |
| 5694 | cairo_clip(cr); |
| 5695 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5696 | gdk_gc_set_clip_origin(gui.text_gc, 0, 0); |
| 5697 | gdk_gc_set_clip_rectangle(gui.text_gc, &area); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5698 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5699 | |
| 5700 | glyphs = pango_glyph_string_new(); |
| 5701 | |
| 5702 | /* |
| 5703 | * Optimization hack: If possible, skip the itemize and shaping process |
| 5704 | * for pure ASCII strings. This optimization is particularly effective |
| 5705 | * because Vim draws space characters to clear parts of the screen. |
| 5706 | */ |
| 5707 | if (!(flags & DRAW_ITALIC) |
| 5708 | && !((flags & DRAW_BOLD) && gui.font_can_bold) |
| 5709 | && gui.ascii_glyphs != NULL) |
| 5710 | { |
| 5711 | char_u *p; |
| 5712 | |
| 5713 | for (p = s; p < s + len; ++p) |
| 5714 | if (*p & 0x80) |
| 5715 | goto not_ascii; |
| 5716 | |
| 5717 | pango_glyph_string_set_size(glyphs, len); |
| 5718 | |
| 5719 | for (i = 0; i < len; ++i) |
| 5720 | { |
Bram Moolenaar | 16350cb | 2016-08-14 20:27:34 +0200 | [diff] [blame] | 5721 | glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5722 | glyphs->log_clusters[i] = i; |
| 5723 | } |
| 5724 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5725 | #if GTK_CHECK_VERSION(3,0,0) |
| 5726 | draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr); |
| 5727 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5728 | draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5729 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5730 | |
| 5731 | column_offset = len; |
| 5732 | } |
| 5733 | else |
| 5734 | not_ascii: |
| 5735 | { |
| 5736 | PangoAttrList *attr_list; |
| 5737 | GList *item_list; |
| 5738 | int cluster_width; |
| 5739 | int last_glyph_rbearing; |
| 5740 | int cells = 0; /* cells occupied by current cluster */ |
| 5741 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5742 | /* Safety check: pango crashes when invoked with invalid utf-8 |
| 5743 | * characters. */ |
| 5744 | if (!utf_valid_string(s, s + len)) |
| 5745 | { |
| 5746 | column_offset = len; |
| 5747 | goto skipitall; |
| 5748 | } |
| 5749 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5750 | /* original width of the current cluster */ |
| 5751 | cluster_width = PANGO_SCALE * gui.char_width; |
| 5752 | |
| 5753 | /* right bearing of the last non-composing glyph */ |
| 5754 | last_glyph_rbearing = PANGO_SCALE * gui.char_width; |
| 5755 | |
| 5756 | attr_list = pango_attr_list_new(); |
| 5757 | |
| 5758 | /* If 'guifontwide' is set then use that for double-width characters. |
| 5759 | * Otherwise just go with 'guifont' and let Pango do its thing. */ |
| 5760 | if (gui.wide_font != NULL) |
| 5761 | apply_wide_font_attr(s, len, attr_list); |
| 5762 | |
| 5763 | if ((flags & DRAW_BOLD) && gui.font_can_bold) |
| 5764 | INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD), |
| 5765 | attr_list, 0, len); |
| 5766 | if (flags & DRAW_ITALIC) |
| 5767 | INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC), |
| 5768 | attr_list, 0, len); |
| 5769 | /* |
| 5770 | * Break the text into segments with consistent directional level |
| 5771 | * and shaping engine. Pure Latin text needs only a single segment, |
| 5772 | * so there's no need to worry about the loop's efficiency. Better |
| 5773 | * try to optimize elsewhere, e.g. reducing exposes and stuff :) |
| 5774 | */ |
| 5775 | item_list = pango_itemize(gui.text_context, |
| 5776 | (const char *)s, 0, len, attr_list, NULL); |
| 5777 | |
| 5778 | while (item_list != NULL) |
| 5779 | { |
| 5780 | PangoItem *item; |
| 5781 | int item_cells = 0; /* item length in cells */ |
| 5782 | |
| 5783 | item = (PangoItem *)item_list->data; |
| 5784 | item_list = g_list_delete_link(item_list, item_list); |
| 5785 | /* |
| 5786 | * Increment the bidirectional embedding level by 1 if it is not |
| 5787 | * even. An odd number means the output will be RTL, but we don't |
| 5788 | * want that since Vim handles right-to-left text on its own. It |
| 5789 | * would probably be sufficient to just set level = 0, but you can |
| 5790 | * never know :) |
| 5791 | * |
| 5792 | * Unfortunately we can't take advantage of Pango's ability to |
| 5793 | * render both LTR and RTL at the same time. In order to support |
| 5794 | * that, Vim's main screen engine would have to make use of Pango |
| 5795 | * functionality. |
| 5796 | */ |
| 5797 | item->analysis.level = (item->analysis.level + 1) & (~1U); |
| 5798 | |
| 5799 | /* HACK: Overrule the shape engine, we don't want shaping to be |
| 5800 | * done, because drawing the cursor would change the display. */ |
| 5801 | item->analysis.shape_engine = default_shape_engine; |
| 5802 | |
Bram Moolenaar | 3cbe0c0 | 2015-09-08 20:00:22 +0200 | [diff] [blame] | 5803 | #ifdef HAVE_PANGO_SHAPE_FULL |
Bram Moolenaar | 7e2ec00 | 2015-09-08 16:31:06 +0200 | [diff] [blame] | 5804 | pango_shape_full((const char *)s + item->offset, item->length, |
| 5805 | (const char *)s, len, &item->analysis, glyphs); |
Bram Moolenaar | 3cbe0c0 | 2015-09-08 20:00:22 +0200 | [diff] [blame] | 5806 | #else |
| 5807 | pango_shape((const char *)s + item->offset, item->length, |
| 5808 | &item->analysis, glyphs); |
| 5809 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5810 | /* |
| 5811 | * Fixed-width hack: iterate over the array and assign a fixed |
| 5812 | * width to each glyph, thus overriding the choice made by the |
| 5813 | * shaping engine. We use utf_char2cells() to determine the |
| 5814 | * number of cells needed. |
| 5815 | * |
| 5816 | * Also perform all kind of dark magic to get composing |
| 5817 | * characters right (and pretty too of course). |
| 5818 | */ |
| 5819 | for (i = 0; i < glyphs->num_glyphs; ++i) |
| 5820 | { |
| 5821 | PangoGlyphInfo *glyph; |
| 5822 | |
| 5823 | glyph = &glyphs->glyphs[i]; |
| 5824 | |
| 5825 | if (glyph->attr.is_cluster_start) |
| 5826 | { |
| 5827 | int cellcount; |
| 5828 | |
| 5829 | cellcount = count_cluster_cells( |
| 5830 | s, item, glyphs, i, &cluster_width, |
| 5831 | (item_list != NULL) ? &last_glyph_rbearing : NULL); |
| 5832 | |
| 5833 | if (cellcount > 0) |
| 5834 | { |
| 5835 | int width; |
| 5836 | |
| 5837 | width = cellcount * gui.char_width * PANGO_SCALE; |
| 5838 | glyph->geometry.x_offset += |
| 5839 | MAX(0, width - cluster_width) / 2; |
| 5840 | glyph->geometry.width = width; |
| 5841 | } |
| 5842 | else |
| 5843 | { |
| 5844 | /* If there are only combining characters in the |
| 5845 | * cluster, we cannot just change the width of the |
| 5846 | * previous glyph since there is none. Therefore |
| 5847 | * some guesswork is needed. */ |
| 5848 | setup_zero_width_cluster(item, glyph, cells, |
| 5849 | cluster_width, |
| 5850 | last_glyph_rbearing); |
| 5851 | } |
| 5852 | |
| 5853 | item_cells += cellcount; |
| 5854 | cells = cellcount; |
| 5855 | } |
| 5856 | else if (i > 0) |
| 5857 | { |
| 5858 | int width; |
| 5859 | |
| 5860 | /* There is a previous glyph, so we deal with combining |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5861 | * characters the canonical way. |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 5862 | * In some circumstances Pango uses a positive x_offset, |
| 5863 | * then use the width of the previous glyph for this one |
| 5864 | * and set the previous width to zero. |
| 5865 | * Otherwise we get a negative x_offset, Pango has already |
| 5866 | * positioned the combining char, keep the widths as they |
| 5867 | * are. |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5868 | * For both adjust the x_offset to position the glyph in |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 5869 | * the middle. */ |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5870 | if (glyph->geometry.x_offset >= 0) |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 5871 | { |
| 5872 | glyphs->glyphs[i].geometry.width = |
| 5873 | glyphs->glyphs[i - 1].geometry.width; |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5874 | glyphs->glyphs[i - 1].geometry.width = 0; |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 5875 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5876 | width = cells * gui.char_width * PANGO_SCALE; |
| 5877 | glyph->geometry.x_offset += |
| 5878 | MAX(0, width - cluster_width) / 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5879 | } |
| 5880 | else /* i == 0 "cannot happen" */ |
| 5881 | { |
| 5882 | glyph->geometry.width = 0; |
| 5883 | } |
| 5884 | } |
| 5885 | |
| 5886 | /*** Aaaaand action! ***/ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5887 | #if GTK_CHECK_VERSION(3,0,0) |
| 5888 | draw_glyph_string(row, col + column_offset, item_cells, |
| 5889 | flags, item->analysis.font, glyphs, |
| 5890 | cr); |
| 5891 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5892 | draw_glyph_string(row, col + column_offset, item_cells, |
| 5893 | flags, item->analysis.font, glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5894 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5895 | |
| 5896 | pango_item_free(item); |
| 5897 | |
| 5898 | column_offset += item_cells; |
| 5899 | } |
| 5900 | |
| 5901 | pango_attr_list_unref(attr_list); |
| 5902 | } |
| 5903 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5904 | skipitall: |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5905 | /* Draw underline and undercurl. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5906 | #if GTK_CHECK_VERSION(3,0,0) |
| 5907 | draw_under(flags, row, col, column_offset, cr); |
| 5908 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5909 | draw_under(flags, row, col, column_offset); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5910 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5911 | |
| 5912 | pango_glyph_string_free(glyphs); |
| 5913 | vim_free(conv_buf); |
| 5914 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5915 | #if GTK_CHECK_VERSION(3,0,0) |
| 5916 | cairo_destroy(cr); |
| 5917 | if (!gui.by_signal) |
| 5918 | gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea), |
| 5919 | &area, FALSE); |
| 5920 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5921 | gdk_gc_set_clip_rectangle(gui.text_gc, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5922 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5923 | |
| 5924 | return column_offset; |
| 5925 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5926 | |
| 5927 | /* |
| 5928 | * Return OK if the key with the termcap name "name" is supported. |
| 5929 | */ |
| 5930 | int |
| 5931 | gui_mch_haskey(char_u *name) |
| 5932 | { |
| 5933 | int i; |
| 5934 | |
| 5935 | for (i = 0; special_keys[i].key_sym != 0; i++) |
| 5936 | if (name[0] == special_keys[i].code0 |
| 5937 | && name[1] == special_keys[i].code1) |
| 5938 | return OK; |
| 5939 | return FAIL; |
| 5940 | } |
| 5941 | |
Bram Moolenaar | b2c5a5a | 2013-02-14 22:11:39 +0100 | [diff] [blame] | 5942 | #if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5943 | /* |
| 5944 | * Return the text window-id and display. Only required for X-based GUI's |
| 5945 | */ |
| 5946 | int |
| 5947 | gui_get_x11_windis(Window *win, Display **dis) |
| 5948 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5949 | if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5950 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5951 | *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
| 5952 | *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5953 | return OK; |
| 5954 | } |
| 5955 | |
| 5956 | *dis = NULL; |
| 5957 | *win = 0; |
| 5958 | return FAIL; |
| 5959 | } |
| 5960 | #endif |
| 5961 | |
| 5962 | #if defined(FEAT_CLIENTSERVER) \ |
| 5963 | || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO) |
| 5964 | |
| 5965 | Display * |
| 5966 | gui_mch_get_display(void) |
| 5967 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5968 | if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL) |
| 5969 | return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5970 | else |
| 5971 | return NULL; |
| 5972 | } |
| 5973 | #endif |
| 5974 | |
| 5975 | void |
| 5976 | gui_mch_beep(void) |
| 5977 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5978 | GdkDisplay *display; |
| 5979 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5980 | if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5981 | display = gtk_widget_get_display(gui.mainwin); |
| 5982 | else |
| 5983 | display = gdk_display_get_default(); |
| 5984 | |
| 5985 | if (display != NULL) |
| 5986 | gdk_display_beep(display); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5987 | } |
| 5988 | |
| 5989 | void |
| 5990 | gui_mch_flash(int msec) |
| 5991 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5992 | #if GTK_CHECK_VERSION(3,0,0) |
| 5993 | /* TODO Replace GdkGC with Cairo */ |
| 5994 | (void)msec; |
| 5995 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5996 | GdkGCValues values; |
| 5997 | GdkGC *invert_gc; |
| 5998 | |
| 5999 | if (gui.drawarea->window == NULL) |
| 6000 | return; |
| 6001 | |
| 6002 | values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 6003 | values.background.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 6004 | values.function = GDK_XOR; |
| 6005 | invert_gc = gdk_gc_new_with_values(gui.drawarea->window, |
| 6006 | &values, |
| 6007 | GDK_GC_FOREGROUND | |
| 6008 | GDK_GC_BACKGROUND | |
| 6009 | GDK_GC_FUNCTION); |
| 6010 | gdk_gc_set_exposures(invert_gc, |
| 6011 | gui.visibility != GDK_VISIBILITY_UNOBSCURED); |
| 6012 | /* |
| 6013 | * Do a visual beep by changing back and forth in some undetermined way, |
| 6014 | * the foreground and background colors. This is due to the fact that |
| 6015 | * there can't be really any prediction about the effects of XOR on |
| 6016 | * arbitrary X11 servers. However this seems to be enough for what we |
| 6017 | * intend it to do. |
| 6018 | */ |
| 6019 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 6020 | TRUE, |
| 6021 | 0, 0, |
| 6022 | FILL_X((int)Columns) + gui.border_offset, |
| 6023 | FILL_Y((int)Rows) + gui.border_offset); |
| 6024 | |
| 6025 | gui_mch_flush(); |
| 6026 | ui_delay((long)msec, TRUE); /* wait so many msec */ |
| 6027 | |
| 6028 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 6029 | TRUE, |
| 6030 | 0, 0, |
| 6031 | FILL_X((int)Columns) + gui.border_offset, |
| 6032 | FILL_Y((int)Rows) + gui.border_offset); |
| 6033 | |
| 6034 | gdk_gc_destroy(invert_gc); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6035 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6036 | } |
| 6037 | |
| 6038 | /* |
| 6039 | * Invert a rectangle from row r, column c, for nr rows and nc columns. |
| 6040 | */ |
| 6041 | void |
| 6042 | gui_mch_invert_rectangle(int r, int c, int nr, int nc) |
| 6043 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6044 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 4fc563b | 2016-03-12 12:40:58 +0100 | [diff] [blame] | 6045 | const GdkRectangle rect = { |
| 6046 | FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height |
| 6047 | }; |
| 6048 | cairo_t * const cr = cairo_create(gui.surface); |
| 6049 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6050 | set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel); |
Bram Moolenaar | 4fc563b | 2016-03-12 12:40:58 +0100 | [diff] [blame] | 6051 | # if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2) |
| 6052 | cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE); |
| 6053 | # else |
| 6054 | /* Give an implementation for older cairo versions if necessary. */ |
| 6055 | # endif |
| 6056 | gdk_cairo_rectangle(cr, &rect); |
| 6057 | cairo_fill(cr); |
| 6058 | |
| 6059 | cairo_destroy(cr); |
| 6060 | |
| 6061 | if (!gui.by_signal) |
| 6062 | gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y, |
| 6063 | rect.width, rect.height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6064 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6065 | GdkGCValues values; |
| 6066 | GdkGC *invert_gc; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6067 | |
| 6068 | if (gui.drawarea->window == NULL) |
| 6069 | return; |
| 6070 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 6071 | values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 6072 | values.background.pixel = gui.norm_pixel ^ gui.back_pixel; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6073 | values.function = GDK_XOR; |
| 6074 | invert_gc = gdk_gc_new_with_values(gui.drawarea->window, |
| 6075 | &values, |
| 6076 | GDK_GC_FOREGROUND | |
| 6077 | GDK_GC_BACKGROUND | |
| 6078 | GDK_GC_FUNCTION); |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 6079 | gdk_gc_set_exposures(invert_gc, gui.visibility != |
| 6080 | GDK_VISIBILITY_UNOBSCURED); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6081 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 6082 | TRUE, |
| 6083 | FILL_X(c), FILL_Y(r), |
| 6084 | (nc) * gui.char_width, (nr) * gui.char_height); |
| 6085 | gdk_gc_destroy(invert_gc); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6086 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6087 | } |
| 6088 | |
| 6089 | /* |
| 6090 | * Iconify the GUI window. |
| 6091 | */ |
| 6092 | void |
| 6093 | gui_mch_iconify(void) |
| 6094 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6095 | gtk_window_iconify(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6096 | } |
| 6097 | |
| 6098 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 6099 | /* |
| 6100 | * Bring the Vim window to the foreground. |
| 6101 | */ |
| 6102 | void |
| 6103 | gui_mch_set_foreground(void) |
| 6104 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6105 | gtk_window_present(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6106 | } |
| 6107 | #endif |
| 6108 | |
| 6109 | /* |
| 6110 | * Draw a cursor without focus. |
| 6111 | */ |
| 6112 | void |
| 6113 | gui_mch_draw_hollow_cursor(guicolor_T color) |
| 6114 | { |
| 6115 | int i = 1; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6116 | #if GTK_CHECK_VERSION(3,0,0) |
| 6117 | cairo_t *cr; |
| 6118 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6119 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6120 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6121 | return; |
| 6122 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6123 | #if GTK_CHECK_VERSION(3,0,0) |
| 6124 | cr = cairo_create(gui.surface); |
| 6125 | #endif |
| 6126 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6127 | gui_mch_set_fg_color(color); |
| 6128 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6129 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6130 | cairo_set_source_rgba(cr, |
| 6131 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 6132 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6133 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6134 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6135 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6136 | if (mb_lefthalve(gui.row, gui.col)) |
| 6137 | i = 2; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6138 | #if GTK_CHECK_VERSION(3,0,0) |
| 6139 | cairo_set_line_width(cr, 1.0); |
| 6140 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
| 6141 | cairo_rectangle(cr, |
| 6142 | FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5, |
| 6143 | i * gui.char_width - 1, gui.char_height - 1); |
| 6144 | cairo_stroke(cr); |
| 6145 | cairo_destroy(cr); |
| 6146 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6147 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
| 6148 | FALSE, |
| 6149 | FILL_X(gui.col), FILL_Y(gui.row), |
| 6150 | i * gui.char_width - 1, gui.char_height - 1); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6151 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6152 | } |
| 6153 | |
| 6154 | /* |
| 6155 | * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using |
| 6156 | * color "color". |
| 6157 | */ |
| 6158 | void |
| 6159 | gui_mch_draw_part_cursor(int w, int h, guicolor_T color) |
| 6160 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6161 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6162 | return; |
| 6163 | |
| 6164 | gui_mch_set_fg_color(color); |
| 6165 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6166 | #if GTK_CHECK_VERSION(3,0,0) |
| 6167 | { |
| 6168 | cairo_t *cr; |
| 6169 | |
| 6170 | cr = cairo_create(gui.surface); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6171 | cairo_set_source_rgba(cr, |
| 6172 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 6173 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6174 | cairo_rectangle(cr, |
| 6175 | # ifdef FEAT_RIGHTLEFT |
| 6176 | /* vertical line should be on the right of current point */ |
| 6177 | CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : |
| 6178 | # endif |
| 6179 | FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h, |
| 6180 | w, h); |
| 6181 | cairo_fill(cr); |
| 6182 | cairo_destroy(cr); |
| 6183 | } |
| 6184 | #else /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6185 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 6186 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
| 6187 | TRUE, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6188 | # ifdef FEAT_RIGHTLEFT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6189 | /* vertical line should be on the right of current point */ |
| 6190 | CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6191 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6192 | FILL_X(gui.col), |
| 6193 | FILL_Y(gui.row) + gui.char_height - h, |
| 6194 | w, h); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6195 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6196 | } |
| 6197 | |
| 6198 | |
| 6199 | /* |
| 6200 | * Catch up with any queued X11 events. This may put keyboard input into the |
| 6201 | * input buffer, call resize call-backs, trigger timers etc. If there is |
| 6202 | * nothing in the X11 event queue (& no timers pending), then we return |
| 6203 | * immediately. |
| 6204 | */ |
| 6205 | void |
| 6206 | gui_mch_update(void) |
| 6207 | { |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 6208 | while (g_main_context_pending(NULL) && !vim_is_input_buf_full()) |
| 6209 | g_main_context_iteration(NULL, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6210 | } |
| 6211 | |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6212 | static timeout_cb_type |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6213 | input_timer_cb(gpointer data) |
| 6214 | { |
| 6215 | int *timed_out = (int *) data; |
| 6216 | |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 6217 | /* Just inform the caller about the occurrence of it */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6218 | *timed_out = TRUE; |
| 6219 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6220 | return FALSE; /* don't happen again */ |
| 6221 | } |
| 6222 | |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6223 | #ifdef FEAT_JOB_CHANNEL |
| 6224 | static timeout_cb_type |
| 6225 | channel_poll_cb(gpointer data UNUSED) |
| 6226 | { |
| 6227 | /* Using an event handler for a channel that may be disconnected does |
| 6228 | * not work, it hangs. Instead poll for messages. */ |
| 6229 | channel_handle_events(TRUE); |
| 6230 | parse_queued_messages(); |
| 6231 | |
| 6232 | return TRUE; /* repeat */ |
| 6233 | } |
| 6234 | #endif |
| 6235 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6236 | /* |
| 6237 | * GUI input routine called by gui_wait_for_chars(). Waits for a character |
| 6238 | * from the keyboard. |
| 6239 | * wtime == -1 Wait forever. |
| 6240 | * wtime == 0 This should never happen. |
| 6241 | * wtime > 0 Wait wtime milliseconds for a character. |
| 6242 | * Returns OK if a character was found to be available within the given time, |
| 6243 | * or FAIL otherwise. |
| 6244 | */ |
| 6245 | int |
| 6246 | gui_mch_wait_for_chars(long wtime) |
| 6247 | { |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6248 | int focus; |
| 6249 | guint timer; |
| 6250 | static int timed_out; |
| 6251 | int retval = FAIL; |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6252 | #ifdef FEAT_JOB_CHANNEL |
| 6253 | guint channel_timer = 0; |
| 6254 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6255 | |
| 6256 | timed_out = FALSE; |
| 6257 | |
Bram Moolenaar | 12dfc9e | 2019-01-28 22:32:58 +0100 | [diff] [blame] | 6258 | // This timeout makes sure that we will return if no characters arrived in |
| 6259 | // time. If "wtime" is zero just use one. |
| 6260 | if (wtime >= 0) |
Bram Moolenaar | 34a5874 | 2019-02-03 15:28:28 +0100 | [diff] [blame] | 6261 | timer = timeout_add(wtime == 0 ? 1L : wtime, |
Bram Moolenaar | 12dfc9e | 2019-01-28 22:32:58 +0100 | [diff] [blame] | 6262 | input_timer_cb, &timed_out); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6263 | else |
| 6264 | timer = 0; |
| 6265 | |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6266 | #ifdef FEAT_JOB_CHANNEL |
| 6267 | /* If there is a channel with the keep_open flag we need to poll for input |
| 6268 | * on them. */ |
| 6269 | if (channel_any_keep_open()) |
| 6270 | channel_timer = timeout_add(20, channel_poll_cb, NULL); |
| 6271 | #endif |
| 6272 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6273 | focus = gui.in_focus; |
| 6274 | |
| 6275 | do |
| 6276 | { |
| 6277 | /* Stop or start blinking when focus changes */ |
| 6278 | if (gui.in_focus != focus) |
| 6279 | { |
| 6280 | if (gui.in_focus) |
| 6281 | gui_mch_start_blink(); |
| 6282 | else |
Bram Moolenaar | 1dd45fb | 2018-01-31 21:10:01 +0100 | [diff] [blame] | 6283 | gui_mch_stop_blink(TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6284 | focus = gui.in_focus; |
| 6285 | } |
| 6286 | |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 6287 | #ifdef MESSAGE_QUEUE |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6288 | # ifdef FEAT_TIMERS |
| 6289 | did_add_timer = FALSE; |
| 6290 | # endif |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 6291 | parse_queued_messages(); |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6292 | # ifdef FEAT_TIMERS |
| 6293 | if (did_add_timer) |
| 6294 | /* Need to recompute the waiting time. */ |
| 6295 | goto theend; |
| 6296 | # endif |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 6297 | #endif |
| 6298 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6299 | /* |
| 6300 | * Loop in GTK+ processing until a timeout or input occurs. |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 6301 | * Skip this if input is available anyway (can happen in rare |
| 6302 | * situations, sort of race condition). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6303 | */ |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 6304 | if (!input_available()) |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 6305 | g_main_context_iteration(NULL, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6306 | |
| 6307 | /* Got char, return immediately */ |
| 6308 | if (input_available()) |
| 6309 | { |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6310 | retval = OK; |
| 6311 | goto theend; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6312 | } |
| 6313 | } while (wtime < 0 || !timed_out); |
| 6314 | |
| 6315 | /* |
| 6316 | * Flush all eventually pending (drawing) events. |
| 6317 | */ |
| 6318 | gui_mch_update(); |
| 6319 | |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6320 | theend: |
| 6321 | if (timer != 0 && !timed_out) |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6322 | timeout_remove(timer); |
| 6323 | #ifdef FEAT_JOB_CHANNEL |
| 6324 | if (channel_timer != 0) |
| 6325 | timeout_remove(channel_timer); |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6326 | #endif |
| 6327 | |
| 6328 | return retval; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6329 | } |
| 6330 | |
| 6331 | |
| 6332 | /**************************************************************************** |
| 6333 | * Output drawing routines. |
| 6334 | ****************************************************************************/ |
| 6335 | |
| 6336 | |
| 6337 | /* Flush any output to the screen */ |
| 6338 | void |
| 6339 | gui_mch_flush(void) |
| 6340 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6341 | if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 6342 | #if GTK_CHECK_VERSION(2,4,0) |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 6343 | gdk_display_flush(gtk_widget_get_display(gui.mainwin)); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 6344 | #else |
| 6345 | gdk_display_sync(gtk_widget_get_display(gui.mainwin)); |
| 6346 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6347 | } |
| 6348 | |
| 6349 | /* |
| 6350 | * Clear a rectangular region of the screen from text pos (row1, col1) to |
| 6351 | * (row2, col2) inclusive. |
| 6352 | */ |
| 6353 | void |
Bram Moolenaar | fe344a9 | 2017-02-23 12:20:35 +0100 | [diff] [blame] | 6354 | gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6355 | { |
Bram Moolenaar | fe344a9 | 2017-02-23 12:20:35 +0100 | [diff] [blame] | 6356 | |
| 6357 | int col1 = check_col(col1arg); |
| 6358 | int col2 = check_col(col2arg); |
| 6359 | int row1 = check_row(row1arg); |
| 6360 | int row2 = check_row(row2arg); |
| 6361 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6362 | #if GTK_CHECK_VERSION(3,0,0) |
| 6363 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
| 6364 | return; |
| 6365 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6366 | GdkColor color; |
| 6367 | |
| 6368 | if (gui.drawarea->window == NULL) |
| 6369 | return; |
| 6370 | |
| 6371 | color.pixel = gui.back_pixel; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6372 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6373 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6374 | #if GTK_CHECK_VERSION(3,0,0) |
| 6375 | { |
| 6376 | /* Add one pixel to the far right column in case a double-stroked |
| 6377 | * bold glyph may sit there. */ |
| 6378 | const GdkRectangle rect = { |
| 6379 | FILL_X(col1), FILL_Y(row1), |
| 6380 | (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1), |
| 6381 | (row2 - row1 + 1) * gui.char_height |
| 6382 | }; |
| 6383 | GdkWindow * const win = gtk_widget_get_window(gui.drawarea); |
| 6384 | cairo_t * const cr = cairo_create(gui.surface); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 6385 | # if GTK_CHECK_VERSION(3,22,2) |
| 6386 | set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
| 6387 | # else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6388 | cairo_pattern_t * const pat = gdk_window_get_background_pattern(win); |
| 6389 | if (pat != NULL) |
| 6390 | cairo_set_source(cr, pat); |
| 6391 | else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6392 | set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 6393 | # endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6394 | gdk_cairo_rectangle(cr, &rect); |
| 6395 | cairo_fill(cr); |
| 6396 | cairo_destroy(cr); |
| 6397 | |
| 6398 | if (!gui.by_signal) |
| 6399 | gdk_window_invalidate_rect(win, &rect, FALSE); |
| 6400 | } |
| 6401 | #else /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6402 | gdk_gc_set_foreground(gui.text_gc, &color); |
| 6403 | |
| 6404 | /* Clear one extra pixel at the far right, for when bold characters have |
| 6405 | * spilled over to the window border. */ |
| 6406 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE, |
| 6407 | FILL_X(col1), FILL_Y(row1), |
| 6408 | (col2 - col1 + 1) * gui.char_width |
| 6409 | + (col2 == Columns - 1), |
| 6410 | (row2 - row1 + 1) * gui.char_height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6411 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6412 | } |
| 6413 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6414 | #if GTK_CHECK_VERSION(3,0,0) |
| 6415 | static void |
| 6416 | gui_gtk_window_clear(GdkWindow *win) |
| 6417 | { |
| 6418 | const GdkRectangle rect = { |
| 6419 | 0, 0, gdk_window_get_width(win), gdk_window_get_height(win) |
| 6420 | }; |
| 6421 | cairo_t * const cr = cairo_create(gui.surface); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 6422 | # if GTK_CHECK_VERSION(3,22,2) |
| 6423 | set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
| 6424 | # else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6425 | cairo_pattern_t * const pat = gdk_window_get_background_pattern(win); |
| 6426 | if (pat != NULL) |
| 6427 | cairo_set_source(cr, pat); |
| 6428 | else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6429 | set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 6430 | # endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6431 | gdk_cairo_rectangle(cr, &rect); |
| 6432 | cairo_fill(cr); |
| 6433 | cairo_destroy(cr); |
| 6434 | |
| 6435 | if (!gui.by_signal) |
| 6436 | gdk_window_invalidate_rect(win, &rect, FALSE); |
| 6437 | } |
Bram Moolenaar | 25328e3 | 2018-09-11 21:30:09 +0200 | [diff] [blame] | 6438 | #else |
| 6439 | # define gui_gtk_window_clear(win) gdk_window_clear(win) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6440 | #endif |
| 6441 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6442 | void |
| 6443 | gui_mch_clear_all(void) |
| 6444 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6445 | if (gtk_widget_get_window(gui.drawarea) != NULL) |
| 6446 | gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6447 | } |
| 6448 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6449 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6450 | /* |
| 6451 | * Redraw any text revealed by scrolling up/down. |
| 6452 | */ |
| 6453 | static void |
| 6454 | check_copy_area(void) |
| 6455 | { |
| 6456 | GdkEvent *event; |
| 6457 | int expose_count; |
| 6458 | |
| 6459 | if (gui.visibility != GDK_VISIBILITY_PARTIAL) |
| 6460 | return; |
| 6461 | |
| 6462 | /* Avoid redrawing the cursor while scrolling or it'll end up where |
| 6463 | * we don't want it to be. I'm not sure if it's correct to call |
| 6464 | * gui_dont_update_cursor() at this point but it works as a quick |
| 6465 | * fix for now. */ |
Bram Moolenaar | 107abd2 | 2016-08-12 14:08:25 +0200 | [diff] [blame] | 6466 | gui_dont_update_cursor(TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6467 | |
| 6468 | do |
| 6469 | { |
| 6470 | /* Wait to check whether the scroll worked or not. */ |
| 6471 | event = gdk_event_get_graphics_expose(gui.drawarea->window); |
| 6472 | |
| 6473 | if (event == NULL) |
| 6474 | break; /* received NoExpose event */ |
| 6475 | |
| 6476 | gui_redraw(event->expose.area.x, event->expose.area.y, |
| 6477 | event->expose.area.width, event->expose.area.height); |
| 6478 | |
| 6479 | expose_count = event->expose.count; |
| 6480 | gdk_event_free(event); |
| 6481 | } |
| 6482 | while (expose_count > 0); /* more events follow */ |
| 6483 | |
| 6484 | gui_can_update_cursor(); |
| 6485 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6486 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
| 6487 | |
| 6488 | #if GTK_CHECK_VERSION(3,0,0) |
| 6489 | static void |
| 6490 | gui_gtk_surface_copy_rect(int dest_x, int dest_y, |
| 6491 | int src_x, int src_y, |
| 6492 | int width, int height) |
| 6493 | { |
| 6494 | cairo_t * const cr = cairo_create(gui.surface); |
| 6495 | |
| 6496 | cairo_rectangle(cr, dest_x, dest_y, width, height); |
| 6497 | cairo_clip(cr); |
| 6498 | cairo_push_group(cr); |
| 6499 | cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y); |
| 6500 | cairo_paint(cr); |
| 6501 | cairo_pop_group_to_source(cr); |
| 6502 | cairo_paint(cr); |
| 6503 | |
| 6504 | cairo_destroy(cr); |
| 6505 | } |
| 6506 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6507 | |
| 6508 | /* |
| 6509 | * Delete the given number of lines from the given row, scrolling up any |
| 6510 | * text further down within the scroll region. |
| 6511 | */ |
| 6512 | void |
| 6513 | gui_mch_delete_lines(int row, int num_lines) |
| 6514 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6515 | #if GTK_CHECK_VERSION(3,0,0) |
| 6516 | const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1; |
| 6517 | const int nrows = gui.scroll_region_bot - row + 1; |
| 6518 | const int src_nrows = nrows - num_lines; |
| 6519 | |
| 6520 | gui_gtk_surface_copy_rect( |
| 6521 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6522 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 6523 | gui.char_width * ncols + 1, gui.char_height * src_nrows); |
| 6524 | gui_clear_block( |
| 6525 | gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left, |
| 6526 | gui.scroll_region_bot, gui.scroll_region_right); |
| 6527 | gui_gtk3_redraw( |
| 6528 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6529 | gui.char_width * ncols + 1, gui.char_height * nrows); |
| 6530 | if (!gui.by_signal) |
| 6531 | gtk_widget_queue_draw_area(gui.drawarea, |
| 6532 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6533 | gui.char_width * ncols + 1, gui.char_height * nrows); |
| 6534 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6535 | if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
| 6536 | return; /* Can't see the window */ |
| 6537 | |
| 6538 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 6539 | gdk_gc_set_background(gui.text_gc, gui.bgcolor); |
| 6540 | |
| 6541 | /* copy one extra pixel, for when bold has spilled over */ |
| 6542 | gdk_window_copy_area(gui.drawarea->window, gui.text_gc, |
| 6543 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6544 | gui.drawarea->window, |
| 6545 | FILL_X(gui.scroll_region_left), |
| 6546 | FILL_Y(row + num_lines), |
| 6547 | gui.char_width * (gui.scroll_region_right |
| 6548 | - gui.scroll_region_left + 1) + 1, |
| 6549 | gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); |
| 6550 | |
| 6551 | gui_clear_block(gui.scroll_region_bot - num_lines + 1, |
| 6552 | gui.scroll_region_left, |
| 6553 | gui.scroll_region_bot, gui.scroll_region_right); |
| 6554 | check_copy_area(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6555 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6556 | } |
| 6557 | |
| 6558 | /* |
| 6559 | * Insert the given number of lines before the given row, scrolling down any |
| 6560 | * following text within the scroll region. |
| 6561 | */ |
| 6562 | void |
| 6563 | gui_mch_insert_lines(int row, int num_lines) |
| 6564 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6565 | #if GTK_CHECK_VERSION(3,0,0) |
| 6566 | const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1; |
| 6567 | const int nrows = gui.scroll_region_bot - row + 1; |
| 6568 | const int src_nrows = nrows - num_lines; |
| 6569 | |
| 6570 | gui_gtk_surface_copy_rect( |
| 6571 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 6572 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6573 | gui.char_width * ncols + 1, gui.char_height * src_nrows); |
| 6574 | gui_mch_clear_block( |
| 6575 | row, gui.scroll_region_left, |
| 6576 | row + num_lines - 1, gui.scroll_region_right); |
| 6577 | gui_gtk3_redraw( |
| 6578 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6579 | gui.char_width * ncols + 1, gui.char_height * nrows); |
| 6580 | if (!gui.by_signal) |
| 6581 | gtk_widget_queue_draw_area(gui.drawarea, |
| 6582 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6583 | gui.char_width * ncols + 1, gui.char_height * nrows); |
| 6584 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6585 | if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
| 6586 | return; /* Can't see the window */ |
| 6587 | |
| 6588 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 6589 | gdk_gc_set_background(gui.text_gc, gui.bgcolor); |
| 6590 | |
| 6591 | /* copy one extra pixel, for when bold has spilled over */ |
| 6592 | gdk_window_copy_area(gui.drawarea->window, gui.text_gc, |
| 6593 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 6594 | gui.drawarea->window, |
| 6595 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6596 | gui.char_width * (gui.scroll_region_right |
| 6597 | - gui.scroll_region_left + 1) + 1, |
| 6598 | gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); |
| 6599 | |
| 6600 | gui_clear_block(row, gui.scroll_region_left, |
| 6601 | row + num_lines - 1, gui.scroll_region_right); |
| 6602 | check_copy_area(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6603 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6604 | } |
| 6605 | |
| 6606 | /* |
| 6607 | * X Selection stuff, for cutting and pasting text to other windows. |
| 6608 | */ |
| 6609 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 6610 | clip_mch_request_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6611 | { |
| 6612 | GdkAtom target; |
| 6613 | unsigned i; |
Bram Moolenaar | 51b5ab9 | 2008-01-06 14:17:07 +0000 | [diff] [blame] | 6614 | time_t start; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6615 | |
| 6616 | for (i = 0; i < N_SELECTION_TARGETS; ++i) |
| 6617 | { |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 6618 | if (!clip_html && selection_targets[i].info == TARGET_HTML) |
| 6619 | continue; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6620 | received_selection = RS_NONE; |
| 6621 | target = gdk_atom_intern(selection_targets[i].target, FALSE); |
| 6622 | |
| 6623 | gtk_selection_convert(gui.drawarea, |
| 6624 | cbd->gtk_sel_atom, target, |
| 6625 | (guint32)GDK_CURRENT_TIME); |
| 6626 | |
Bram Moolenaar | 51b5ab9 | 2008-01-06 14:17:07 +0000 | [diff] [blame] | 6627 | /* Hack: Wait up to three seconds for the selection. A hang was |
| 6628 | * noticed here when using the netrw plugin combined with ":gui" |
| 6629 | * during the FocusGained event. */ |
| 6630 | start = time(NULL); |
| 6631 | while (received_selection == RS_NONE && time(NULL) < start + 3) |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 6632 | g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6633 | |
| 6634 | if (received_selection != RS_FAIL) |
| 6635 | return; |
| 6636 | } |
| 6637 | |
| 6638 | /* Final fallback position - use the X CUT_BUFFER0 store */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6639 | yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)), |
| 6640 | cbd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6641 | } |
| 6642 | |
| 6643 | /* |
| 6644 | * Disown the selection. |
| 6645 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6646 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 6647 | clip_mch_lose_selection(Clipboard_T *cbd UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6648 | { |
Bram Moolenaar | 29dfa5a | 2018-03-20 21:24:45 +0100 | [diff] [blame] | 6649 | if (!in_selection_clear_event) |
| 6650 | { |
| 6651 | gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time); |
| 6652 | gui_mch_update(); |
| 6653 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6654 | } |
| 6655 | |
| 6656 | /* |
| 6657 | * Own the selection and return OK if it worked. |
| 6658 | */ |
| 6659 | int |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 6660 | clip_mch_own_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6661 | { |
| 6662 | int success; |
| 6663 | |
| 6664 | success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom, |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 6665 | gui.event_time); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6666 | gui_mch_update(); |
| 6667 | return (success) ? OK : FAIL; |
| 6668 | } |
| 6669 | |
| 6670 | /* |
| 6671 | * Send the current selection to the clipboard. Do nothing for X because we |
| 6672 | * will fill in the selection only when requested by another app. |
| 6673 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6674 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 6675 | clip_mch_set_selection(Clipboard_T *cbd UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6676 | { |
| 6677 | } |
| 6678 | |
Bram Moolenaar | 113e107 | 2019-01-20 15:30:40 +0100 | [diff] [blame] | 6679 | #if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 6680 | int |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 6681 | clip_gtk_owner_exists(Clipboard_T *cbd) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 6682 | { |
| 6683 | return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL; |
| 6684 | } |
Bram Moolenaar | 113e107 | 2019-01-20 15:30:40 +0100 | [diff] [blame] | 6685 | #endif |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 6686 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6687 | |
| 6688 | #if defined(FEAT_MENU) || defined(PROTO) |
| 6689 | /* |
| 6690 | * Make a menu item appear either active or not active (grey or not grey). |
| 6691 | */ |
| 6692 | void |
| 6693 | gui_mch_menu_grey(vimmenu_T *menu, int grey) |
| 6694 | { |
| 6695 | if (menu->id == NULL) |
| 6696 | return; |
| 6697 | |
| 6698 | if (menu_is_separator(menu->name)) |
| 6699 | grey = TRUE; |
| 6700 | |
| 6701 | gui_mch_menu_hidden(menu, FALSE); |
| 6702 | /* Be clever about bitfields versus true booleans here! */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6703 | if (!gtk_widget_get_sensitive(menu->id) == !grey) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6704 | { |
| 6705 | gtk_widget_set_sensitive(menu->id, !grey); |
| 6706 | gui_mch_update(); |
| 6707 | } |
| 6708 | } |
| 6709 | |
| 6710 | /* |
| 6711 | * Make menu item hidden or not hidden. |
| 6712 | */ |
| 6713 | void |
| 6714 | gui_mch_menu_hidden(vimmenu_T *menu, int hidden) |
| 6715 | { |
| 6716 | if (menu->id == 0) |
| 6717 | return; |
| 6718 | |
| 6719 | if (hidden) |
| 6720 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6721 | if (gtk_widget_get_visible(menu->id)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6722 | { |
| 6723 | gtk_widget_hide(menu->id); |
| 6724 | gui_mch_update(); |
| 6725 | } |
| 6726 | } |
| 6727 | else |
| 6728 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6729 | if (!gtk_widget_get_visible(menu->id)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6730 | { |
| 6731 | gtk_widget_show(menu->id); |
| 6732 | gui_mch_update(); |
| 6733 | } |
| 6734 | } |
| 6735 | } |
| 6736 | |
| 6737 | /* |
| 6738 | * This is called after setting all the menus to grey/hidden or not. |
| 6739 | */ |
| 6740 | void |
| 6741 | gui_mch_draw_menubar(void) |
| 6742 | { |
| 6743 | /* just make sure that the visual changes get effect immediately */ |
| 6744 | gui_mch_update(); |
| 6745 | } |
| 6746 | #endif /* FEAT_MENU */ |
| 6747 | |
| 6748 | /* |
| 6749 | * Scrollbar stuff. |
| 6750 | */ |
| 6751 | void |
| 6752 | gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) |
| 6753 | { |
| 6754 | if (sb->id == NULL) |
| 6755 | return; |
| 6756 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6757 | gtk_widget_set_visible(sb->id, flag); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 6758 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6759 | } |
| 6760 | |
| 6761 | |
| 6762 | /* |
| 6763 | * Return the RGB value of a pixel as long. |
| 6764 | */ |
Bram Moolenaar | 1b58cdd | 2016-08-22 23:04:33 +0200 | [diff] [blame] | 6765 | guicolor_T |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6766 | gui_mch_get_rgb(guicolor_T pixel) |
| 6767 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6768 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6769 | return (long_u)pixel; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6770 | #else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6771 | GdkColor color; |
| 6772 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6773 | gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea), |
| 6774 | (unsigned long)pixel, &color); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6775 | |
Bram Moolenaar | 1b58cdd | 2016-08-22 23:04:33 +0200 | [diff] [blame] | 6776 | return (guicolor_T)( |
| 6777 | (((unsigned)color.red & 0xff00) << 8) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6778 | | ((unsigned)color.green & 0xff00) |
Bram Moolenaar | 1b58cdd | 2016-08-22 23:04:33 +0200 | [diff] [blame] | 6779 | | (((unsigned)color.blue & 0xff00) >> 8)); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6780 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6781 | } |
| 6782 | |
| 6783 | /* |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 6784 | * Get current mouse coordinates in text window. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6785 | */ |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 6786 | void |
| 6787 | gui_mch_getmouse(int *x, int *y) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6788 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6789 | gui_gtk_get_pointer(gui.drawarea, x, y, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6790 | } |
| 6791 | |
| 6792 | void |
| 6793 | gui_mch_setmouse(int x, int y) |
| 6794 | { |
| 6795 | /* Sorry for the Xlib call, but we can't avoid it, since there is no |
| 6796 | * internal GDK mechanism present to accomplish this. (and for good |
| 6797 | * reason...) */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6798 | XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)), |
| 6799 | (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)), |
| 6800 | 0, 0, 0U, 0U, x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6801 | } |
| 6802 | |
| 6803 | |
| 6804 | #ifdef FEAT_MOUSESHAPE |
| 6805 | /* The last set mouse pointer shape is remembered, to be used when it goes |
| 6806 | * from hidden to not hidden. */ |
| 6807 | static int last_shape = 0; |
| 6808 | #endif |
| 6809 | |
| 6810 | /* |
| 6811 | * Use the blank mouse pointer or not. |
| 6812 | * |
| 6813 | * hide: TRUE = use blank ptr, FALSE = use parent ptr |
| 6814 | */ |
| 6815 | void |
| 6816 | gui_mch_mousehide(int hide) |
| 6817 | { |
| 6818 | if (gui.pointer_hidden != hide) |
| 6819 | { |
| 6820 | gui.pointer_hidden = hide; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6821 | if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6822 | { |
| 6823 | if (hide) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6824 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
| 6825 | gui.blank_pointer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6826 | else |
| 6827 | #ifdef FEAT_MOUSESHAPE |
| 6828 | mch_set_mouse_shape(last_shape); |
| 6829 | #else |
Bram Moolenaar | 25328e3 | 2018-09-11 21:30:09 +0200 | [diff] [blame] | 6830 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6831 | #endif |
| 6832 | } |
| 6833 | } |
| 6834 | } |
| 6835 | |
| 6836 | #if defined(FEAT_MOUSESHAPE) || defined(PROTO) |
| 6837 | |
| 6838 | /* Table for shape IDs. Keep in sync with the mshape_names[] table in |
| 6839 | * misc2.c! */ |
| 6840 | static const int mshape_ids[] = |
| 6841 | { |
| 6842 | GDK_LEFT_PTR, /* arrow */ |
| 6843 | GDK_CURSOR_IS_PIXMAP, /* blank */ |
| 6844 | GDK_XTERM, /* beam */ |
| 6845 | GDK_SB_V_DOUBLE_ARROW, /* updown */ |
| 6846 | GDK_SIZING, /* udsizing */ |
| 6847 | GDK_SB_H_DOUBLE_ARROW, /* leftright */ |
| 6848 | GDK_SIZING, /* lrsizing */ |
| 6849 | GDK_WATCH, /* busy */ |
| 6850 | GDK_X_CURSOR, /* no */ |
| 6851 | GDK_CROSSHAIR, /* crosshair */ |
| 6852 | GDK_HAND1, /* hand1 */ |
| 6853 | GDK_HAND2, /* hand2 */ |
| 6854 | GDK_PENCIL, /* pencil */ |
| 6855 | GDK_QUESTION_ARROW, /* question */ |
| 6856 | GDK_RIGHT_PTR, /* right-arrow */ |
| 6857 | GDK_CENTER_PTR, /* up-arrow */ |
| 6858 | GDK_LEFT_PTR /* last one */ |
| 6859 | }; |
| 6860 | |
| 6861 | void |
| 6862 | mch_set_mouse_shape(int shape) |
| 6863 | { |
| 6864 | int id; |
| 6865 | GdkCursor *c; |
| 6866 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6867 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6868 | return; |
| 6869 | |
| 6870 | if (shape == MSHAPE_HIDE || gui.pointer_hidden) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6871 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
| 6872 | gui.blank_pointer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6873 | else |
| 6874 | { |
| 6875 | if (shape >= MSHAPE_NUMBERED) |
| 6876 | { |
| 6877 | id = shape - MSHAPE_NUMBERED; |
| 6878 | if (id >= GDK_LAST_CURSOR) |
| 6879 | id = GDK_LEFT_PTR; |
| 6880 | else |
| 6881 | id &= ~1; /* they are always even (why?) */ |
| 6882 | } |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 6883 | else if (shape < (int)(sizeof(mshape_ids) / sizeof(int))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6884 | id = mshape_ids[shape]; |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 6885 | else |
| 6886 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6887 | c = gdk_cursor_new_for_display( |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 6888 | gtk_widget_get_display(gui.drawarea), (GdkCursorType)id); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6889 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6890 | # if GTK_CHECK_VERSION(3,0,0) |
| 6891 | g_object_unref(G_OBJECT(c)); |
| 6892 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6893 | gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6894 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6895 | } |
| 6896 | if (shape != MSHAPE_HIDE) |
| 6897 | last_shape = shape; |
| 6898 | } |
| 6899 | #endif /* FEAT_MOUSESHAPE */ |
| 6900 | |
| 6901 | |
| 6902 | #if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
| 6903 | /* |
| 6904 | * Signs are currently always 2 chars wide. With GTK+ 2, the image will be |
| 6905 | * scaled down if the current font is not big enough, or scaled up if the image |
| 6906 | * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap |
| 6907 | * will be cut off if the current font is not big enough, or centered if it's |
| 6908 | * too small. |
| 6909 | */ |
| 6910 | # define SIGN_WIDTH (2 * gui.char_width) |
| 6911 | # define SIGN_HEIGHT (gui.char_height) |
| 6912 | # define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH) |
| 6913 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6914 | void |
| 6915 | gui_mch_drawsign(int row, int col, int typenr) |
| 6916 | { |
| 6917 | GdkPixbuf *sign; |
| 6918 | |
| 6919 | sign = (GdkPixbuf *)sign_get_image(typenr); |
| 6920 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6921 | if (sign != NULL && gui.drawarea != NULL |
| 6922 | && gtk_widget_get_window(gui.drawarea) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6923 | { |
| 6924 | int width; |
| 6925 | int height; |
| 6926 | int xoffset; |
| 6927 | int yoffset; |
| 6928 | int need_scale; |
| 6929 | |
| 6930 | width = gdk_pixbuf_get_width(sign); |
| 6931 | height = gdk_pixbuf_get_height(sign); |
| 6932 | /* |
| 6933 | * Decide whether we need to scale. Allow one pixel of border |
| 6934 | * width to be cut off, in order to avoid excessive scaling for |
| 6935 | * tiny differences in font size. |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 6936 | * Do scale to fit the height to avoid gaps because of linespacing. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6937 | */ |
| 6938 | need_scale = (width > SIGN_WIDTH + 2 |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 6939 | || height != SIGN_HEIGHT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6940 | || (width < 3 * SIGN_WIDTH / 4 |
| 6941 | && height < 3 * SIGN_HEIGHT / 4)); |
| 6942 | if (need_scale) |
| 6943 | { |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 6944 | double aspect; |
| 6945 | int w = width; |
| 6946 | int h = height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6947 | |
| 6948 | /* Keep the original aspect ratio */ |
| 6949 | aspect = (double)height / (double)width; |
| 6950 | width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect; |
| 6951 | width = MIN(width, SIGN_WIDTH); |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 6952 | if (((double)(MAX(height, SIGN_HEIGHT)) / |
| 6953 | (double)(MIN(height, SIGN_HEIGHT))) < 1.15) |
| 6954 | { |
| 6955 | /* Change the aspect ratio by at most 15% to fill the |
Bram Moolenaar | bdace83 | 2019-03-02 10:13:42 +0100 | [diff] [blame] | 6956 | * available space completely. */ |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 6957 | height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect; |
| 6958 | height = MIN(height, SIGN_HEIGHT); |
| 6959 | } |
| 6960 | else |
| 6961 | height = (double)width * aspect; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6962 | |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 6963 | if (w == width && h == height) |
| 6964 | { |
| 6965 | /* no change in dimensions; don't decrease reference counter |
| 6966 | * (below) */ |
| 6967 | need_scale = FALSE; |
| 6968 | } |
| 6969 | else |
| 6970 | { |
| 6971 | /* This doesn't seem to be worth caching, and doing so would |
| 6972 | * complicate the code quite a bit. */ |
| 6973 | sign = gdk_pixbuf_scale_simple(sign, width, height, |
| 6974 | GDK_INTERP_BILINEAR); |
| 6975 | if (sign == NULL) |
| 6976 | return; /* out of memory */ |
| 6977 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6978 | } |
| 6979 | |
| 6980 | /* The origin is the upper-left corner of the pixmap. Therefore |
| 6981 | * these offset may become negative if the pixmap is smaller than |
| 6982 | * the 2x1 cells reserved for the sign icon. */ |
| 6983 | xoffset = (width - SIGN_WIDTH) / 2; |
| 6984 | yoffset = (height - SIGN_HEIGHT) / 2; |
| 6985 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6986 | # if GTK_CHECK_VERSION(3,0,0) |
| 6987 | { |
| 6988 | cairo_t *cr; |
| 6989 | cairo_surface_t *bg_surf; |
| 6990 | cairo_t *bg_cr; |
| 6991 | cairo_surface_t *sign_surf; |
| 6992 | cairo_t *sign_cr; |
| 6993 | |
| 6994 | cr = cairo_create(gui.surface); |
| 6995 | |
| 6996 | bg_surf = cairo_surface_create_similar(gui.surface, |
| 6997 | cairo_surface_get_content(gui.surface), |
| 6998 | SIGN_WIDTH, SIGN_HEIGHT); |
| 6999 | bg_cr = cairo_create(bg_surf); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 7000 | cairo_set_source_rgba(bg_cr, |
| 7001 | gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue, |
| 7002 | gui.bgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7003 | cairo_paint(bg_cr); |
| 7004 | |
| 7005 | sign_surf = cairo_surface_create_similar(gui.surface, |
| 7006 | cairo_surface_get_content(gui.surface), |
| 7007 | SIGN_WIDTH, SIGN_HEIGHT); |
| 7008 | sign_cr = cairo_create(sign_surf); |
| 7009 | gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset); |
| 7010 | cairo_paint(sign_cr); |
| 7011 | |
| 7012 | cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER); |
| 7013 | cairo_set_source_surface(sign_cr, bg_surf, 0, 0); |
| 7014 | cairo_paint(sign_cr); |
| 7015 | |
| 7016 | cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row)); |
| 7017 | cairo_paint(cr); |
| 7018 | |
| 7019 | cairo_destroy(sign_cr); |
| 7020 | cairo_surface_destroy(sign_surf); |
| 7021 | cairo_destroy(bg_cr); |
| 7022 | cairo_surface_destroy(bg_surf); |
| 7023 | cairo_destroy(cr); |
| 7024 | |
| 7025 | if (!gui.by_signal) |
| 7026 | gtk_widget_queue_draw_area(gui.drawarea, |
| 7027 | FILL_X(col), FILL_Y(col), width, height); |
| 7028 | |
| 7029 | } |
| 7030 | # else /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7031 | gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
| 7032 | |
| 7033 | gdk_draw_rectangle(gui.drawarea->window, |
| 7034 | gui.text_gc, |
| 7035 | TRUE, |
| 7036 | FILL_X(col), |
| 7037 | FILL_Y(row), |
| 7038 | SIGN_WIDTH, |
| 7039 | SIGN_HEIGHT); |
| 7040 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7041 | gdk_pixbuf_render_to_drawable_alpha(sign, |
| 7042 | gui.drawarea->window, |
| 7043 | MAX(0, xoffset), |
| 7044 | MAX(0, yoffset), |
| 7045 | FILL_X(col) - MIN(0, xoffset), |
| 7046 | FILL_Y(row) - MIN(0, yoffset), |
| 7047 | MIN(width, SIGN_WIDTH), |
| 7048 | MIN(height, SIGN_HEIGHT), |
| 7049 | GDK_PIXBUF_ALPHA_BILEVEL, |
| 7050 | 127, |
| 7051 | GDK_RGB_DITHER_NORMAL, |
| 7052 | 0, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7053 | # endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7054 | if (need_scale) |
| 7055 | g_object_unref(sign); |
| 7056 | } |
| 7057 | } |
| 7058 | |
| 7059 | void * |
| 7060 | gui_mch_register_sign(char_u *signfile) |
| 7061 | { |
| 7062 | if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use) |
| 7063 | { |
| 7064 | GdkPixbuf *sign; |
| 7065 | GError *error = NULL; |
| 7066 | char_u *message; |
| 7067 | |
| 7068 | sign = gdk_pixbuf_new_from_file((const char *)signfile, &error); |
| 7069 | |
| 7070 | if (error == NULL) |
| 7071 | return sign; |
| 7072 | |
| 7073 | message = (char_u *)error->message; |
| 7074 | |
| 7075 | if (message != NULL && input_conv.vc_type != CONV_NONE) |
| 7076 | message = string_convert(&input_conv, message, NULL); |
| 7077 | |
| 7078 | if (message != NULL) |
| 7079 | { |
| 7080 | /* The error message is already translated and will be more |
| 7081 | * descriptive than anything we could possibly do ourselves. */ |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 7082 | semsg("E255: %s", message); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7083 | |
| 7084 | if (input_conv.vc_type != CONV_NONE) |
| 7085 | vim_free(message); |
| 7086 | } |
| 7087 | g_error_free(error); |
| 7088 | } |
| 7089 | |
| 7090 | return NULL; |
| 7091 | } |
| 7092 | |
| 7093 | void |
| 7094 | gui_mch_destroy_sign(void *sign) |
| 7095 | { |
| 7096 | if (sign != NULL) |
| 7097 | g_object_unref(sign); |
| 7098 | } |
| 7099 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7100 | #endif /* FEAT_SIGN_ICONS */ |