Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4: |
| 2 | * |
| 3 | * VIM - Vi IMproved by Bram Moolenaar |
| 4 | * |
| 5 | * Do ":help uganda" in Vim to read copying and usage conditions. |
| 6 | * Do ":help credits" in Vim to see a list of people who contributed. |
| 7 | * See README.txt for an overview of the Vim source code. |
| 8 | */ |
| 9 | |
| 10 | /* |
| 11 | * Porting to GTK+ was done by: |
| 12 | * |
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> |
| 89 | # ifdef WIN3264 |
| 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 | */ |
| 105 | #ifdef HAVE_GTK_MULTIHEAD |
| 106 | # define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \ |
| 107 | gtk_widget_get_display(gui.mainwin), atom) |
| 108 | #else |
| 109 | # define GET_X_ATOM(atom) ((Atom)(atom)) |
| 110 | #endif |
| 111 | |
| 112 | /* Selection type distinguishers */ |
| 113 | enum |
| 114 | { |
| 115 | TARGET_TYPE_NONE, |
| 116 | TARGET_UTF8_STRING, |
| 117 | TARGET_STRING, |
| 118 | TARGET_COMPOUND_TEXT, |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 119 | TARGET_HTML, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 120 | TARGET_TEXT, |
| 121 | TARGET_TEXT_URI_LIST, |
| 122 | TARGET_TEXT_PLAIN, |
| 123 | TARGET_VIM, |
| 124 | TARGET_VIMENC |
| 125 | }; |
| 126 | |
| 127 | /* |
| 128 | * Table of selection targets supported by Vim. |
| 129 | * Note: Order matters, preferred types should come first. |
| 130 | */ |
| 131 | static const GtkTargetEntry selection_targets[] = |
| 132 | { |
| 133 | {VIMENC_ATOM_NAME, 0, TARGET_VIMENC}, |
| 134 | {VIM_ATOM_NAME, 0, TARGET_VIM}, |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 135 | {"text/html", 0, TARGET_HTML}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 136 | {"UTF8_STRING", 0, TARGET_UTF8_STRING}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 137 | {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT}, |
| 138 | {"TEXT", 0, TARGET_TEXT}, |
| 139 | {"STRING", 0, TARGET_STRING} |
| 140 | }; |
| 141 | #define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0])) |
| 142 | |
| 143 | #ifdef FEAT_DND |
| 144 | /* |
| 145 | * Table of DnD targets supported by Vim. |
| 146 | * Note: Order matters, preferred types should come first. |
| 147 | */ |
| 148 | static const GtkTargetEntry dnd_targets[] = |
| 149 | { |
| 150 | {"text/uri-list", 0, TARGET_TEXT_URI_LIST}, |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 151 | {"text/html", 0, TARGET_HTML}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 152 | {"UTF8_STRING", 0, TARGET_UTF8_STRING}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 153 | {"STRING", 0, TARGET_STRING}, |
| 154 | {"text/plain", 0, TARGET_TEXT_PLAIN} |
| 155 | }; |
| 156 | # define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0])) |
| 157 | #endif |
| 158 | |
| 159 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 160 | /* |
| 161 | * "Monospace" is a standard font alias that should be present |
| 162 | * on all proper Pango/fontconfig installations. |
| 163 | */ |
| 164 | # define DEFAULT_FONT "Monospace 10" |
| 165 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 166 | #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) |
| 167 | /* |
| 168 | * Atoms used to communicate save-yourself from the X11 session manager. There |
| 169 | * is no need to move them into the GUI struct, since they should be constant. |
| 170 | */ |
| 171 | static GdkAtom wm_protocols_atom = GDK_NONE; |
| 172 | static GdkAtom save_yourself_atom = GDK_NONE; |
| 173 | #endif |
| 174 | |
| 175 | /* |
| 176 | * Atoms used to control/reference X11 selections. |
| 177 | */ |
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 | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 384 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 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 | |
| 411 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 412 | /* |
| 413 | * Determine the command used to invoke Vim, to be passed as restart |
| 414 | * command to the session manager. If argv[0] contains any directory |
| 415 | * components try building an absolute path, otherwise leave it as is. |
| 416 | */ |
| 417 | restart_command = argv[0]; |
| 418 | |
| 419 | if (strchr(argv[0], G_DIR_SEPARATOR) != NULL) |
| 420 | { |
| 421 | char_u buf[MAXPATHL]; |
| 422 | |
| 423 | if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK) |
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; |
| 436 | gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *))); |
| 437 | |
| 438 | g_return_if_fail(gui_argv != NULL); |
| 439 | |
| 440 | gui_argv[gui_argc++] = argv[i++]; |
| 441 | |
| 442 | while (i < *argc) |
| 443 | { |
| 444 | /* Don't waste CPU cycles on non-option arguments. */ |
| 445 | if (argv[i][0] != '-' && argv[i][0] != '+') |
| 446 | { |
| 447 | ++i; |
| 448 | continue; |
| 449 | } |
| 450 | |
| 451 | /* Look for argv[i] in cmdline_options[] table. */ |
| 452 | for (option = &cmdline_options[0]; option->name != NULL; ++option) |
| 453 | { |
| 454 | len = strlen(option->name); |
| 455 | |
| 456 | if (strncmp(argv[i], option->name, len) == 0) |
| 457 | { |
| 458 | if (argv[i][len] == '\0') |
| 459 | break; |
| 460 | /* allow --foo=bar style */ |
| 461 | if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE)) |
| 462 | break; |
| 463 | #ifdef FEAT_NETBEANS_INTG |
| 464 | /* darn, -nb has non-standard syntax */ |
| 465 | if (vim_strchr((char_u *)":=", argv[i][len]) != NULL |
| 466 | && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS) |
| 467 | break; |
| 468 | #endif |
| 469 | } |
| 470 | else if ((option->flags & ARG_COMPAT_LONG) |
| 471 | && strcmp(argv[i], option->name + 1) == 0) |
| 472 | { |
| 473 | /* Replace the standard X arguments "-name" and "-display" |
| 474 | * with their GNU-style long option counterparts. */ |
| 475 | argv[i] = (char *)option->name; |
| 476 | break; |
| 477 | } |
| 478 | } |
| 479 | if (option->name == NULL) /* no match */ |
| 480 | { |
| 481 | ++i; |
| 482 | continue; |
| 483 | } |
| 484 | |
| 485 | if (option->flags & ARG_FOR_GTK) |
| 486 | { |
| 487 | /* Move the argument into gui_argv, which |
| 488 | * will later be passed to gtk_init_check() */ |
| 489 | gui_argv[gui_argc++] = argv[i]; |
| 490 | } |
| 491 | else |
| 492 | { |
| 493 | char *value = NULL; |
| 494 | |
| 495 | /* Extract the option's value if there is one. |
| 496 | * Accept both "--foo bar" and "--foo=bar" style. */ |
| 497 | if (option->flags & ARG_HAS_VALUE) |
| 498 | { |
| 499 | if (argv[i][len] == '=') |
| 500 | value = &argv[i][len + 1]; |
| 501 | else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0) |
| 502 | value = argv[i + 1]; |
| 503 | } |
| 504 | |
| 505 | /* Check for options handled by Vim itself */ |
| 506 | switch (option->flags & ARG_INDEX_MASK) |
| 507 | { |
| 508 | case ARG_REVERSE: |
| 509 | found_reverse_arg = TRUE; |
| 510 | break; |
| 511 | case ARG_NOREVERSE: |
| 512 | found_reverse_arg = FALSE; |
| 513 | break; |
| 514 | case ARG_FONT: |
| 515 | font_argument = value; |
| 516 | break; |
| 517 | case ARG_GEOMETRY: |
| 518 | if (value != NULL) |
| 519 | gui.geom = vim_strsave((char_u *)value); |
| 520 | break; |
| 521 | case ARG_BACKGROUND: |
| 522 | background_argument = value; |
| 523 | break; |
| 524 | case ARG_FOREGROUND: |
| 525 | foreground_argument = value; |
| 526 | break; |
| 527 | case ARG_ICONIC: |
| 528 | found_iconic_arg = TRUE; |
| 529 | break; |
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 | 9085f80 | 2009-06-03 14:20:21 +0000 | [diff] [blame] | 587 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 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 | static void gui_gtk_window_clear(GdkWindow *win); |
| 626 | |
| 627 | static void |
| 628 | gui_gtk3_redraw(int x, int y, int width, int height) |
| 629 | { |
| 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; |
| 684 | for (i = 0; i < list->num_rectangles; i++) |
| 685 | { |
| 686 | const cairo_rectangle_t rect = list->rectangles[i]; |
Bram Moolenaar | 8e31fd5 | 2016-06-04 22:18:13 +0200 | [diff] [blame] | 687 | |
| 688 | gui_mch_clear_block(Y_2_ROW(rect.y), 1, |
| 689 | Y_2_ROW(rect.y + rect.height - 1), Columns); |
| 690 | |
Bram Moolenaar | 0ecbe33 | 2016-03-05 22:40:52 +0100 | [diff] [blame] | 691 | if (blink_mode) |
| 692 | gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height); |
| 693 | else |
Bram Moolenaar | b4ebf9a | 2016-03-12 16:28:18 +0100 | [diff] [blame] | 694 | { |
| 695 | if (get_real_state() & VISUAL) |
| 696 | gui_gtk3_redraw(rect.x, rect.y, |
| 697 | rect.width, rect.height); |
| 698 | else |
| 699 | gui_redraw(rect.x, rect.y, rect.width, rect.height); |
| 700 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 701 | } |
| 702 | } |
| 703 | cairo_rectangle_list_destroy(list); |
| 704 | |
Bram Moolenaar | b4ebf9a | 2016-03-12 16:28:18 +0100 | [diff] [blame] | 705 | if (get_real_state() & VISUAL) |
| 706 | { |
| 707 | if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col) |
| 708 | gui_update_cursor(TRUE, TRUE); |
| 709 | } |
| 710 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 711 | cairo_paint(cr); |
| 712 | } |
| 713 | gui.by_signal = FALSE; |
| 714 | |
| 715 | /* Add the cursor to the window if necessary.*/ |
Bram Moolenaar | b4ebf9a | 2016-03-12 16:28:18 +0100 | [diff] [blame] | 716 | if (gui_gtk3_should_draw_cursor() && blink_mode) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 717 | gui_gtk3_update_cursor(cr); |
| 718 | |
| 719 | return FALSE; |
| 720 | } |
| 721 | #else /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 722 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 723 | expose_event(GtkWidget *widget UNUSED, |
| 724 | GdkEventExpose *event, |
| 725 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 726 | { |
| 727 | /* Skip this when the GUI isn't set up yet, will redraw later. */ |
| 728 | if (gui.starting) |
| 729 | return FALSE; |
| 730 | |
| 731 | out_flush(); /* make sure all output has been processed */ |
| 732 | gui_redraw(event->area.x, event->area.y, |
| 733 | event->area.width, event->area.height); |
| 734 | |
| 735 | /* Clear the border areas if needed */ |
| 736 | if (event->area.x < FILL_X(0)) |
| 737 | gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0); |
| 738 | if (event->area.y < FILL_Y(0)) |
| 739 | gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0)); |
| 740 | if (event->area.x > FILL_X(Columns)) |
| 741 | gdk_window_clear_area(gui.drawarea->window, |
| 742 | FILL_X((int)Columns), 0, 0, 0); |
| 743 | if (event->area.y > FILL_Y(Rows)) |
| 744 | gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0); |
| 745 | |
| 746 | return FALSE; |
| 747 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 748 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 749 | |
| 750 | #ifdef FEAT_CLIENTSERVER |
| 751 | /* |
| 752 | * Handle changes to the "Comm" property |
| 753 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 754 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 755 | property_event(GtkWidget *widget, |
| 756 | GdkEventProperty *event, |
| 757 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 758 | { |
| 759 | if (event->type == GDK_PROPERTY_NOTIFY |
| 760 | && event->state == (int)GDK_PROPERTY_NEW_VALUE |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 761 | # if GTK_CHECK_VERSION(3,0,0) |
| 762 | && GDK_WINDOW_XID(event->window) == commWindow |
| 763 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 764 | && GDK_WINDOW_XWINDOW(event->window) == commWindow |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 765 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 766 | && GET_X_ATOM(event->atom) == commProperty) |
| 767 | { |
| 768 | XEvent xev; |
| 769 | |
| 770 | /* Translate to XLib */ |
| 771 | xev.xproperty.type = PropertyNotify; |
| 772 | xev.xproperty.atom = commProperty; |
| 773 | xev.xproperty.window = commWindow; |
| 774 | xev.xproperty.state = PropertyNewValue; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 775 | # if GTK_CHECK_VERSION(3,0,0) |
| 776 | serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)), |
| 777 | &xev, 0); |
| 778 | # else |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 779 | serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 780 | # endif |
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 | |
| 786 | |
| 787 | /**************************************************************************** |
| 788 | * Focus handlers: |
| 789 | */ |
| 790 | |
| 791 | |
| 792 | /* |
| 793 | * This is a simple state machine: |
| 794 | * BLINK_NONE not blinking at all |
| 795 | * BLINK_OFF blinking, cursor is not shown |
| 796 | * BLINK_ON blinking, cursor is shown |
| 797 | */ |
| 798 | |
| 799 | #define BLINK_NONE 0 |
| 800 | #define BLINK_OFF 1 |
| 801 | #define BLINK_ON 2 |
| 802 | |
| 803 | static int blink_state = BLINK_NONE; |
| 804 | static long_u blink_waittime = 700; |
| 805 | static long_u blink_ontime = 400; |
| 806 | static long_u blink_offtime = 250; |
| 807 | static guint blink_timer = 0; |
| 808 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 809 | #if GTK_CHECK_VERSION(3,0,0) |
| 810 | static gboolean |
| 811 | gui_gtk_is_blink_on(void) |
| 812 | { |
| 813 | return blink_state == BLINK_ON; |
| 814 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 815 | #endif |
| 816 | |
Bram Moolenaar | 703a804 | 2016-06-04 16:24:32 +0200 | [diff] [blame] | 817 | int |
| 818 | gui_mch_is_blinking(void) |
| 819 | { |
| 820 | return blink_state != BLINK_NONE; |
| 821 | } |
| 822 | |
Bram Moolenaar | 9d5d3c9 | 2016-07-07 16:43:02 +0200 | [diff] [blame] | 823 | int |
| 824 | gui_mch_is_blink_off(void) |
| 825 | { |
| 826 | return blink_state == BLINK_OFF; |
| 827 | } |
| 828 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 829 | void |
| 830 | gui_mch_set_blinking(long waittime, long on, long off) |
| 831 | { |
Bram Moolenaar | 0ecbe33 | 2016-03-05 22:40:52 +0100 | [diff] [blame] | 832 | #if GTK_CHECK_VERSION(3,0,0) |
| 833 | if (waittime == 0 || on == 0 || off == 0) |
| 834 | { |
| 835 | blink_mode = FALSE; |
| 836 | |
| 837 | blink_waittime = 700; |
| 838 | blink_ontime = 400; |
| 839 | blink_offtime = 250; |
| 840 | } |
| 841 | else |
| 842 | { |
| 843 | blink_mode = TRUE; |
| 844 | |
| 845 | blink_waittime = waittime; |
| 846 | blink_ontime = on; |
| 847 | blink_offtime = off; |
| 848 | } |
| 849 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 850 | blink_waittime = waittime; |
| 851 | blink_ontime = on; |
| 852 | blink_offtime = off; |
Bram Moolenaar | 0ecbe33 | 2016-03-05 22:40:52 +0100 | [diff] [blame] | 853 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 854 | } |
| 855 | |
| 856 | /* |
| 857 | * Stop the cursor blinking. Show the cursor if it wasn't shown. |
| 858 | */ |
| 859 | void |
| 860 | gui_mch_stop_blink(void) |
| 861 | { |
| 862 | if (blink_timer) |
| 863 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 864 | #if GTK_CHECK_VERSION(3,0,0) |
| 865 | g_source_remove(blink_timer); |
| 866 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 867 | gtk_timeout_remove(blink_timer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 868 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 869 | blink_timer = 0; |
| 870 | } |
| 871 | if (blink_state == BLINK_OFF) |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 872 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 873 | gui_update_cursor(TRUE, FALSE); |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 874 | gui_mch_flush(); |
| 875 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 876 | blink_state = BLINK_NONE; |
| 877 | } |
| 878 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 879 | #if GTK_CHECK_VERSION(3,0,0) |
| 880 | static gboolean |
| 881 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 882 | static gint |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 883 | #endif |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 884 | blink_cb(gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 885 | { |
| 886 | if (blink_state == BLINK_ON) |
| 887 | { |
| 888 | gui_undraw_cursor(); |
| 889 | blink_state = BLINK_OFF; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 890 | #if GTK_CHECK_VERSION(3,0,0) |
| 891 | blink_timer = g_timeout_add((guint)blink_offtime, |
| 892 | (GSourceFunc) blink_cb, NULL); |
| 893 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 894 | blink_timer = gtk_timeout_add((guint32)blink_offtime, |
| 895 | (GtkFunction) blink_cb, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 896 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 897 | } |
| 898 | else |
| 899 | { |
| 900 | gui_update_cursor(TRUE, FALSE); |
| 901 | blink_state = BLINK_ON; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 902 | #if GTK_CHECK_VERSION(3,0,0) |
| 903 | blink_timer = g_timeout_add((guint)blink_ontime, |
| 904 | (GSourceFunc) blink_cb, NULL); |
| 905 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 906 | blink_timer = gtk_timeout_add((guint32)blink_ontime, |
| 907 | (GtkFunction) blink_cb, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 908 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 909 | } |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 910 | gui_mch_flush(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 911 | |
| 912 | return FALSE; /* don't happen again */ |
| 913 | } |
| 914 | |
| 915 | /* |
| 916 | * Start the cursor blinking. If it was already blinking, this restarts the |
| 917 | * waiting time and shows the cursor. |
| 918 | */ |
| 919 | void |
| 920 | gui_mch_start_blink(void) |
| 921 | { |
| 922 | if (blink_timer) |
Bram Moolenaar | 7bcdb7d | 2014-04-06 21:08:45 +0200 | [diff] [blame] | 923 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 924 | #if GTK_CHECK_VERSION(3,0,0) |
| 925 | g_source_remove(blink_timer); |
| 926 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 927 | gtk_timeout_remove(blink_timer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 928 | #endif |
Bram Moolenaar | 7bcdb7d | 2014-04-06 21:08:45 +0200 | [diff] [blame] | 929 | blink_timer = 0; |
| 930 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 931 | /* Only switch blinking on if none of the times is zero */ |
| 932 | if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus) |
| 933 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 934 | #if GTK_CHECK_VERSION(3,0,0) |
| 935 | blink_timer = g_timeout_add((guint)blink_waittime, |
| 936 | (GSourceFunc) blink_cb, NULL); |
| 937 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 938 | blink_timer = gtk_timeout_add((guint32)blink_waittime, |
| 939 | (GtkFunction) blink_cb, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 940 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 941 | blink_state = BLINK_ON; |
| 942 | gui_update_cursor(TRUE, FALSE); |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 943 | gui_mch_flush(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 944 | } |
| 945 | } |
| 946 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 947 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 948 | enter_notify_event(GtkWidget *widget UNUSED, |
| 949 | GdkEventCrossing *event UNUSED, |
| 950 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 951 | { |
| 952 | if (blink_state == BLINK_NONE) |
| 953 | gui_mch_start_blink(); |
| 954 | |
| 955 | /* make sure keyboard input goes there */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 956 | #if GTK_CHECK_VERSION(3,0,0) |
| 957 | if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea)) |
| 958 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 959 | if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 960 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 961 | gtk_widget_grab_focus(gui.drawarea); |
| 962 | |
| 963 | return FALSE; |
| 964 | } |
| 965 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 966 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 967 | leave_notify_event(GtkWidget *widget UNUSED, |
| 968 | GdkEventCrossing *event UNUSED, |
| 969 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 970 | { |
| 971 | if (blink_state != BLINK_NONE) |
| 972 | gui_mch_stop_blink(); |
| 973 | |
| 974 | return FALSE; |
| 975 | } |
| 976 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 977 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 978 | focus_in_event(GtkWidget *widget, |
| 979 | GdkEventFocus *event UNUSED, |
| 980 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 981 | { |
| 982 | gui_focus_change(TRUE); |
| 983 | |
| 984 | if (blink_state == BLINK_NONE) |
| 985 | gui_mch_start_blink(); |
| 986 | |
Bram Moolenaar | 9c8791f | 2007-09-05 19:47:23 +0000 | [diff] [blame] | 987 | /* make sure keyboard input goes to the draw area (if this is focus for a |
| 988 | * window) */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 989 | if (widget != gui.drawarea) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 990 | gtk_widget_grab_focus(gui.drawarea); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 991 | |
| 992 | return TRUE; |
| 993 | } |
| 994 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 995 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 996 | focus_out_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 997 | GdkEventFocus *event UNUSED, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 998 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 999 | { |
| 1000 | gui_focus_change(FALSE); |
| 1001 | |
| 1002 | if (blink_state != BLINK_NONE) |
| 1003 | gui_mch_stop_blink(); |
| 1004 | |
| 1005 | return TRUE; |
| 1006 | } |
| 1007 | |
| 1008 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1009 | /* |
| 1010 | * Translate a GDK key value to UTF-8 independently of the current locale. |
| 1011 | * The output is written to string, which must have room for at least 6 bytes |
| 1012 | * plus the NUL terminator. Returns the length in bytes. |
| 1013 | * |
| 1014 | * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use |
| 1015 | * of GdkEventKey::string instead. But event->string is evil; see here why: |
| 1016 | * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey |
| 1017 | */ |
| 1018 | static int |
| 1019 | keyval_to_string(unsigned int keyval, unsigned int state, char_u *string) |
| 1020 | { |
| 1021 | int len; |
| 1022 | guint32 uc; |
| 1023 | |
| 1024 | uc = gdk_keyval_to_unicode(keyval); |
| 1025 | if (uc != 0) |
| 1026 | { |
| 1027 | /* Check for CTRL-foo */ |
| 1028 | if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80) |
| 1029 | { |
| 1030 | /* These mappings look arbitrary at the first glance, but in fact |
| 1031 | * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my |
| 1032 | * machine. The only difference is BS vs. DEL for CTRL-8 (makes |
| 1033 | * more sense and is consistent with usual terminal behaviour). */ |
| 1034 | if (uc >= '@') |
| 1035 | string[0] = uc & 0x1F; |
| 1036 | else if (uc == '2') |
| 1037 | string[0] = NUL; |
| 1038 | else if (uc >= '3' && uc <= '7') |
| 1039 | string[0] = uc ^ 0x28; |
| 1040 | else if (uc == '8') |
| 1041 | string[0] = BS; |
| 1042 | else if (uc == '?') |
| 1043 | string[0] = DEL; |
| 1044 | else |
| 1045 | string[0] = uc; |
| 1046 | len = 1; |
| 1047 | } |
| 1048 | else |
| 1049 | { |
| 1050 | /* Translate a normal key to UTF-8. This doesn't work for dead |
| 1051 | * keys of course, you _have_ to use an input method for that. */ |
| 1052 | len = utf_char2bytes((int)uc, string); |
| 1053 | } |
| 1054 | } |
| 1055 | else |
| 1056 | { |
| 1057 | /* Translate keys which are represented by ASCII control codes in Vim. |
| 1058 | * There are only a few of those; most control keys are translated to |
| 1059 | * special terminal-like control sequences. */ |
| 1060 | len = 1; |
| 1061 | switch (keyval) |
| 1062 | { |
| 1063 | case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab: |
| 1064 | string[0] = TAB; |
| 1065 | break; |
| 1066 | case GDK_Linefeed: |
| 1067 | string[0] = NL; |
| 1068 | break; |
| 1069 | case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter: |
| 1070 | string[0] = CAR; |
| 1071 | break; |
| 1072 | case GDK_Escape: |
| 1073 | string[0] = ESC; |
| 1074 | break; |
| 1075 | default: |
| 1076 | len = 0; |
| 1077 | break; |
| 1078 | } |
| 1079 | } |
| 1080 | string[len] = NUL; |
| 1081 | |
| 1082 | return len; |
| 1083 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1084 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1085 | static int |
| 1086 | modifiers_gdk2vim(guint state) |
| 1087 | { |
| 1088 | int modifiers = 0; |
| 1089 | |
| 1090 | if (state & GDK_SHIFT_MASK) |
| 1091 | modifiers |= MOD_MASK_SHIFT; |
| 1092 | if (state & GDK_CONTROL_MASK) |
| 1093 | modifiers |= MOD_MASK_CTRL; |
| 1094 | if (state & GDK_MOD1_MASK) |
| 1095 | modifiers |= MOD_MASK_ALT; |
Bram Moolenaar | 580061a | 2010-08-13 13:57:13 +0200 | [diff] [blame] | 1096 | #if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1097 | if (state & GDK_SUPER_MASK) |
| 1098 | modifiers |= MOD_MASK_META; |
| 1099 | #endif |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1100 | if (state & GDK_MOD4_MASK) |
| 1101 | modifiers |= MOD_MASK_META; |
| 1102 | |
| 1103 | return modifiers; |
| 1104 | } |
| 1105 | |
| 1106 | static int |
| 1107 | modifiers_gdk2mouse(guint state) |
| 1108 | { |
| 1109 | int modifiers = 0; |
| 1110 | |
| 1111 | if (state & GDK_SHIFT_MASK) |
| 1112 | modifiers |= MOUSE_SHIFT; |
| 1113 | if (state & GDK_CONTROL_MASK) |
| 1114 | modifiers |= MOUSE_CTRL; |
| 1115 | if (state & GDK_MOD1_MASK) |
| 1116 | modifiers |= MOUSE_ALT; |
| 1117 | |
| 1118 | return modifiers; |
| 1119 | } |
| 1120 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1121 | /* |
| 1122 | * Main keyboard handler: |
| 1123 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1124 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1125 | key_press_event(GtkWidget *widget UNUSED, |
| 1126 | GdkEventKey *event, |
| 1127 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1128 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 1129 | /* 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] | 1130 | * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */ |
| 1131 | char_u string[32], string2[32]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1132 | guint key_sym; |
| 1133 | int len; |
| 1134 | int i; |
| 1135 | int modifiers; |
| 1136 | int key; |
| 1137 | guint state; |
| 1138 | char_u *s, *d; |
| 1139 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1140 | #if GTK_CHECK_VERSION(3,0,0) |
| 1141 | is_key_pressed = TRUE; |
| 1142 | gui_mch_stop_blink(); |
| 1143 | #endif |
| 1144 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1145 | gui.event_time = event->time; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1146 | key_sym = event->keyval; |
| 1147 | state = event->state; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1148 | |
| 1149 | #ifdef FEAT_XIM |
| 1150 | if (xim_queue_key_press_event(event, TRUE)) |
| 1151 | return TRUE; |
| 1152 | #endif |
| 1153 | |
| 1154 | #ifdef FEAT_HANGULIN |
| 1155 | if (key_sym == GDK_space && (state & GDK_SHIFT_MASK)) |
| 1156 | { |
| 1157 | hangul_input_state_toggle(); |
| 1158 | return TRUE; |
| 1159 | } |
| 1160 | #endif |
| 1161 | |
| 1162 | #ifdef SunXK_F36 |
| 1163 | /* |
| 1164 | * These keys have bogus lookup strings, and trapping them here is |
| 1165 | * easier than trying to XRebindKeysym() on them with every possible |
| 1166 | * combination of modifiers. |
| 1167 | */ |
| 1168 | if (key_sym == SunXK_F36 || key_sym == SunXK_F37) |
| 1169 | len = 0; |
| 1170 | else |
| 1171 | #endif |
| 1172 | { |
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 | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1363 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1364 | selection_clear_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1365 | GdkEventSelection *event, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1366 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1367 | { |
| 1368 | if (event->selection == clip_plus.gtk_sel_atom) |
| 1369 | clip_lose_selection(&clip_plus); |
| 1370 | else |
| 1371 | clip_lose_selection(&clip_star); |
| 1372 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1373 | return TRUE; |
| 1374 | } |
| 1375 | |
| 1376 | #define RS_NONE 0 /* selection_received_cb() not called yet */ |
| 1377 | #define RS_OK 1 /* selection_received_cb() called and OK */ |
| 1378 | #define RS_FAIL 2 /* selection_received_cb() called and failed */ |
| 1379 | static int received_selection = RS_NONE; |
| 1380 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1381 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1382 | selection_received_cb(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1383 | GtkSelectionData *data, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1384 | guint time_ UNUSED, |
| 1385 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1386 | { |
| 1387 | VimClipboard *cbd; |
| 1388 | char_u *text; |
| 1389 | char_u *tmpbuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1390 | guchar *tmpbuf_utf8 = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1391 | int len; |
Bram Moolenaar | d44347f | 2011-06-19 01:14:29 +0200 | [diff] [blame] | 1392 | int motion_type = MAUTO; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1393 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1394 | #if GTK_CHECK_VERSION(3,0,0) |
| 1395 | if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom) |
| 1396 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1397 | if (data->selection == clip_plus.gtk_sel_atom) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1398 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1399 | cbd = &clip_plus; |
| 1400 | else |
| 1401 | cbd = &clip_star; |
| 1402 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1403 | #if GTK_CHECK_VERSION(3,0,0) |
| 1404 | text = (char_u *)gtk_selection_data_get_data(data); |
| 1405 | len = gtk_selection_data_get_length(data); |
| 1406 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1407 | text = (char_u *)data->data; |
| 1408 | len = data->length; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1409 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1410 | |
| 1411 | if (text == NULL || len <= 0) |
| 1412 | { |
| 1413 | received_selection = RS_FAIL; |
| 1414 | /* clip_free_selection(cbd); ??? */ |
| 1415 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1416 | return; |
| 1417 | } |
| 1418 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1419 | #if GTK_CHECK_VERSION(3,0,0) |
| 1420 | if (gtk_selection_data_get_data_type(data) == vim_atom) |
| 1421 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1422 | if (data->type == vim_atom) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1423 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1424 | { |
| 1425 | motion_type = *text++; |
| 1426 | --len; |
| 1427 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1428 | #if GTK_CHECK_VERSION(3,0,0) |
| 1429 | else if (gtk_selection_data_get_data_type(data) == vimenc_atom) |
| 1430 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1431 | else if (data->type == vimenc_atom) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1432 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1433 | { |
| 1434 | char_u *enc; |
| 1435 | vimconv_T conv; |
| 1436 | |
| 1437 | motion_type = *text++; |
| 1438 | --len; |
| 1439 | |
| 1440 | enc = text; |
| 1441 | text += STRLEN(text) + 1; |
| 1442 | len -= text - enc; |
| 1443 | |
| 1444 | /* If the encoding of the text is different from 'encoding', attempt |
| 1445 | * converting it. */ |
| 1446 | conv.vc_type = CONV_NONE; |
| 1447 | convert_setup(&conv, enc, p_enc); |
| 1448 | if (conv.vc_type != CONV_NONE) |
| 1449 | { |
| 1450 | tmpbuf = string_convert(&conv, text, &len); |
| 1451 | if (tmpbuf != NULL) |
| 1452 | text = tmpbuf; |
| 1453 | convert_setup(&conv, NULL, NULL); |
| 1454 | } |
| 1455 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1456 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1457 | /* gtk_selection_data_get_text() handles all the nasty details |
| 1458 | * and targets and encodings etc. This rocks so hard. */ |
| 1459 | else |
| 1460 | { |
| 1461 | tmpbuf_utf8 = gtk_selection_data_get_text(data); |
| 1462 | if (tmpbuf_utf8 != NULL) |
| 1463 | { |
| 1464 | len = STRLEN(tmpbuf_utf8); |
| 1465 | if (input_conv.vc_type != CONV_NONE) |
| 1466 | { |
| 1467 | tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len); |
| 1468 | if (tmpbuf != NULL) |
| 1469 | text = tmpbuf; |
| 1470 | } |
| 1471 | else |
| 1472 | text = tmpbuf_utf8; |
| 1473 | } |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1474 | else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe) |
| 1475 | { |
| 1476 | vimconv_T conv; |
| 1477 | |
| 1478 | /* UTF-16, we get this for HTML */ |
| 1479 | conv.vc_type = CONV_NONE; |
| 1480 | convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE); |
| 1481 | |
| 1482 | if (conv.vc_type != CONV_NONE) |
| 1483 | { |
| 1484 | text += 2; |
| 1485 | len -= 2; |
| 1486 | tmpbuf = string_convert(&conv, text, &len); |
| 1487 | convert_setup(&conv, NULL, NULL); |
| 1488 | } |
| 1489 | if (tmpbuf != NULL) |
| 1490 | text = tmpbuf; |
| 1491 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1492 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1493 | |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 1494 | /* Chop off any trailing NUL bytes. OpenOffice sends these. */ |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 1495 | while (len > 0 && text[len - 1] == NUL) |
| 1496 | --len; |
| 1497 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1498 | clip_yank_selection(motion_type, text, (long)len, cbd); |
| 1499 | received_selection = RS_OK; |
| 1500 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1501 | g_free(tmpbuf_utf8); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1502 | } |
| 1503 | |
| 1504 | /* |
| 1505 | * Prepare our selection data for passing it to the external selection |
| 1506 | * client. |
| 1507 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1508 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1509 | selection_get_cb(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1510 | GtkSelectionData *selection_data, |
| 1511 | guint info, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1512 | guint time_ UNUSED, |
| 1513 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1514 | { |
| 1515 | char_u *string; |
| 1516 | char_u *tmpbuf; |
| 1517 | long_u tmplen; |
| 1518 | int length; |
| 1519 | int motion_type; |
| 1520 | GdkAtom type; |
| 1521 | VimClipboard *cbd; |
| 1522 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1523 | #if GTK_CHECK_VERSION(3,0,0) |
| 1524 | if (gtk_selection_data_get_selection(selection_data) |
| 1525 | == clip_plus.gtk_sel_atom) |
| 1526 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1527 | if (selection_data->selection == clip_plus.gtk_sel_atom) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1528 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1529 | cbd = &clip_plus; |
| 1530 | else |
| 1531 | cbd = &clip_star; |
| 1532 | |
| 1533 | if (!cbd->owned) |
| 1534 | return; /* Shouldn't ever happen */ |
| 1535 | |
| 1536 | if (info != (guint)TARGET_STRING |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1537 | && (!clip_html || info != (guint)TARGET_HTML) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1538 | && info != (guint)TARGET_UTF8_STRING |
| 1539 | && info != (guint)TARGET_VIMENC |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1540 | && info != (guint)TARGET_VIM |
| 1541 | && info != (guint)TARGET_COMPOUND_TEXT |
| 1542 | && info != (guint)TARGET_TEXT) |
| 1543 | return; |
| 1544 | |
| 1545 | /* get the selection from the '*'/'+' register */ |
| 1546 | clip_get_selection(cbd); |
| 1547 | |
| 1548 | motion_type = clip_convert_selection(&string, &tmplen, cbd); |
| 1549 | if (motion_type < 0 || string == NULL) |
| 1550 | return; |
| 1551 | /* Due to int arguments we can't handle more than G_MAXINT. Also |
| 1552 | * reserve one extra byte for NUL or the motion type; just in case. |
| 1553 | * (Not that pasting 2G of text is ever going to work, but... ;-) */ |
| 1554 | length = MIN(tmplen, (long_u)(G_MAXINT - 1)); |
| 1555 | |
| 1556 | if (info == (guint)TARGET_VIM) |
| 1557 | { |
| 1558 | tmpbuf = alloc((unsigned)length + 1); |
| 1559 | if (tmpbuf != NULL) |
| 1560 | { |
| 1561 | tmpbuf[0] = motion_type; |
| 1562 | mch_memmove(tmpbuf + 1, string, (size_t)length); |
| 1563 | } |
| 1564 | /* For our own format, the first byte contains the motion type */ |
| 1565 | ++length; |
| 1566 | vim_free(string); |
| 1567 | string = tmpbuf; |
| 1568 | type = vim_atom; |
| 1569 | } |
| 1570 | |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1571 | else if (info == (guint)TARGET_HTML) |
| 1572 | { |
| 1573 | vimconv_T conv; |
| 1574 | |
| 1575 | /* Since we get utf-16, we probably should set it as well. */ |
| 1576 | conv.vc_type = CONV_NONE; |
| 1577 | convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE); |
| 1578 | if (conv.vc_type != CONV_NONE) |
| 1579 | { |
| 1580 | tmpbuf = string_convert(&conv, string, &length); |
| 1581 | convert_setup(&conv, NULL, NULL); |
| 1582 | vim_free(string); |
| 1583 | string = tmpbuf; |
| 1584 | } |
| 1585 | |
| 1586 | /* Prepend the BOM: "fffe" */ |
| 1587 | if (string != NULL) |
| 1588 | { |
| 1589 | tmpbuf = alloc(length + 2); |
| 1590 | tmpbuf[0] = 0xff; |
| 1591 | tmpbuf[1] = 0xfe; |
| 1592 | mch_memmove(tmpbuf + 2, string, (size_t)length); |
| 1593 | vim_free(string); |
| 1594 | string = tmpbuf; |
| 1595 | length += 2; |
| 1596 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1597 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 1598 | /* Looks redundant even for GTK2 because these values are |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1599 | * overwritten by gtk_selection_data_set() that follows. */ |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1600 | selection_data->type = selection_data->target; |
| 1601 | selection_data->format = 16; /* 16 bits per char */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1602 | #endif |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1603 | gtk_selection_data_set(selection_data, html_atom, 16, |
| 1604 | string, length); |
| 1605 | vim_free(string); |
| 1606 | } |
| 1607 | return; |
| 1608 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1609 | else if (info == (guint)TARGET_VIMENC) |
| 1610 | { |
| 1611 | int l = STRLEN(p_enc); |
| 1612 | |
| 1613 | /* contents: motion_type 'encoding' NUL text */ |
| 1614 | tmpbuf = alloc((unsigned)length + l + 2); |
| 1615 | if (tmpbuf != NULL) |
| 1616 | { |
| 1617 | tmpbuf[0] = motion_type; |
| 1618 | STRCPY(tmpbuf + 1, p_enc); |
| 1619 | mch_memmove(tmpbuf + l + 2, string, (size_t)length); |
| 1620 | } |
| 1621 | length += l + 2; |
| 1622 | vim_free(string); |
| 1623 | string = tmpbuf; |
| 1624 | type = vimenc_atom; |
| 1625 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1626 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1627 | /* gtk_selection_data_set_text() handles everything for us. This is |
| 1628 | * so easy and simple and cool, it'd be insane not to use it. */ |
| 1629 | else |
| 1630 | { |
| 1631 | if (output_conv.vc_type != CONV_NONE) |
| 1632 | { |
| 1633 | tmpbuf = string_convert(&output_conv, string, &length); |
| 1634 | vim_free(string); |
| 1635 | if (tmpbuf == NULL) |
| 1636 | return; |
| 1637 | string = tmpbuf; |
| 1638 | } |
| 1639 | /* Validate the string to avoid runtime warnings */ |
| 1640 | if (g_utf8_validate((const char *)string, (gssize)length, NULL)) |
| 1641 | { |
| 1642 | gtk_selection_data_set_text(selection_data, |
| 1643 | (const char *)string, length); |
| 1644 | } |
| 1645 | vim_free(string); |
| 1646 | return; |
| 1647 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1648 | |
| 1649 | if (string != NULL) |
| 1650 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1651 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 1652 | /* Looks redundant even for GTK2 because these values are |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1653 | * overwritten by gtk_selection_data_set() that follows. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1654 | selection_data->type = selection_data->target; |
| 1655 | selection_data->format = 8; /* 8 bits per char */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1656 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1657 | gtk_selection_data_set(selection_data, type, 8, string, length); |
| 1658 | vim_free(string); |
| 1659 | } |
| 1660 | } |
| 1661 | |
| 1662 | /* |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 1663 | * Check if the GUI can be started. Called before gvimrc is sourced and |
| 1664 | * before fork(). |
| 1665 | * Return OK or FAIL. |
| 1666 | */ |
| 1667 | int |
Bram Moolenaar | 717e196 | 2016-08-10 21:28:44 +0200 | [diff] [blame] | 1668 | gui_mch_early_init_check(int give_message) |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 1669 | { |
| 1670 | char_u *p; |
| 1671 | |
| 1672 | /* Guess that when $DISPLAY isn't set the GUI can't start. */ |
| 1673 | p = mch_getenv((char_u *)"DISPLAY"); |
| 1674 | if (p == NULL || *p == NUL) |
| 1675 | { |
| 1676 | gui.dying = TRUE; |
Bram Moolenaar | 717e196 | 2016-08-10 21:28:44 +0200 | [diff] [blame] | 1677 | if (give_message) |
| 1678 | EMSG(_((char *)e_opendisp)); |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 1679 | return FAIL; |
| 1680 | } |
| 1681 | return OK; |
| 1682 | } |
| 1683 | |
| 1684 | /* |
| 1685 | * Check if the GUI can be started. Called before gvimrc is sourced but after |
| 1686 | * fork(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1687 | * Return OK or FAIL. |
| 1688 | */ |
| 1689 | int |
| 1690 | gui_mch_init_check(void) |
| 1691 | { |
Bram Moolenaar | 3a466a8 | 2016-01-19 17:47:25 +0100 | [diff] [blame] | 1692 | #ifdef USE_GRESOURCE |
| 1693 | static int res_registered = FALSE; |
| 1694 | |
| 1695 | if (!res_registered) |
| 1696 | { |
| 1697 | /* Call this function in the GUI process; otherwise, the resources |
| 1698 | * won't be available. Don't call it twice. */ |
| 1699 | res_registered = TRUE; |
| 1700 | gui_gtk_register_resource(); |
| 1701 | } |
| 1702 | #endif |
| 1703 | |
Bram Moolenaar | f80663f | 2016-04-05 21:56:06 +0200 | [diff] [blame] | 1704 | #if GTK_CHECK_VERSION(3,10,0) |
| 1705 | /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk |
| 1706 | * support for other backends such as Wayland. */ |
| 1707 | gdk_set_allowed_backends ("x11"); |
| 1708 | #endif |
| 1709 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1710 | #ifdef FEAT_GUI_GNOME |
| 1711 | if (gtk_socket_id == 0) |
| 1712 | using_gnome = 1; |
| 1713 | #endif |
| 1714 | |
Bram Moolenaar | 8dd7901 | 2013-05-21 12:52:04 +0200 | [diff] [blame] | 1715 | /* This defaults to argv[0], but we want it to match the name of the |
| 1716 | * shipped gvim.desktop so that Vim's windows can be associated with this |
| 1717 | * file. */ |
| 1718 | g_set_prgname("gvim"); |
| 1719 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1720 | /* Don't use gtk_init() or gnome_init(), it exits on failure. */ |
| 1721 | if (!gtk_init_check(&gui_argc, &gui_argv)) |
| 1722 | { |
| 1723 | gui.dying = TRUE; |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 1724 | EMSG(_((char *)e_opendisp)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1725 | return FAIL; |
| 1726 | } |
| 1727 | |
| 1728 | return OK; |
| 1729 | } |
| 1730 | |
| 1731 | |
| 1732 | /**************************************************************************** |
| 1733 | * Mouse handling callbacks |
| 1734 | */ |
| 1735 | |
| 1736 | |
| 1737 | static guint mouse_click_timer = 0; |
| 1738 | static int mouse_timed_out = TRUE; |
| 1739 | |
| 1740 | /* |
| 1741 | * Timer used to recognize multiple clicks of the mouse button |
| 1742 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1743 | #if GTK_CHECK_VERSION(3,0,0) |
| 1744 | static gboolean |
| 1745 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1746 | static gint |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1747 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1748 | mouse_click_timer_cb(gpointer data) |
| 1749 | { |
| 1750 | /* we don't use this information currently */ |
| 1751 | int *timed_out = (int *) data; |
| 1752 | |
| 1753 | *timed_out = TRUE; |
| 1754 | return FALSE; /* don't happen again */ |
| 1755 | } |
| 1756 | |
| 1757 | static guint motion_repeat_timer = 0; |
| 1758 | static int motion_repeat_offset = FALSE; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1759 | #ifdef GTK_DEST_DEFAULT_ALL |
| 1760 | static gboolean motion_repeat_timer_cb(gpointer); |
| 1761 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1762 | static gint motion_repeat_timer_cb(gpointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1763 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1764 | |
| 1765 | static void |
| 1766 | process_motion_notify(int x, int y, GdkModifierType state) |
| 1767 | { |
| 1768 | int button; |
| 1769 | int_u vim_modifiers; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1770 | #if GTK_CHECK_VERSION(3,0,0) |
| 1771 | GtkAllocation allocation; |
| 1772 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1773 | |
| 1774 | button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | |
| 1775 | GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | |
| 1776 | GDK_BUTTON5_MASK)) |
| 1777 | ? MOUSE_DRAG : ' '; |
| 1778 | |
| 1779 | /* If our pointer is currently hidden, then we should show it. */ |
| 1780 | gui_mch_mousehide(FALSE); |
| 1781 | |
| 1782 | /* Just moving the rodent above the drawing area without any button |
| 1783 | * being pressed. */ |
| 1784 | if (button != MOUSE_DRAG) |
| 1785 | { |
| 1786 | gui_mouse_moved(x, y); |
| 1787 | return; |
| 1788 | } |
| 1789 | |
| 1790 | /* translate modifier coding between the main engine and GTK */ |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1791 | vim_modifiers = modifiers_gdk2mouse(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1792 | |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 1793 | /* inform the editor engine about the occurrence of this event */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1794 | gui_send_mouse_event(button, x, y, FALSE, vim_modifiers); |
| 1795 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1796 | /* |
| 1797 | * Auto repeat timer handling. |
| 1798 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1799 | #if GTK_CHECK_VERSION(3,0,0) |
| 1800 | gtk_widget_get_allocation(gui.drawarea, &allocation); |
| 1801 | |
| 1802 | if (x < 0 || y < 0 |
| 1803 | || x >= allocation.width |
| 1804 | || y >= allocation.height) |
| 1805 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1806 | if (x < 0 || y < 0 |
| 1807 | || x >= gui.drawarea->allocation.width |
| 1808 | || y >= gui.drawarea->allocation.height) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1809 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1810 | { |
| 1811 | |
| 1812 | int dx; |
| 1813 | int dy; |
| 1814 | int offshoot; |
| 1815 | int delay = 10; |
| 1816 | |
| 1817 | /* Calculate the maximal distance of the cursor from the drawing area. |
| 1818 | * (offshoot can't become negative here!). |
| 1819 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1820 | #if GTK_CHECK_VERSION(3,0,0) |
| 1821 | dx = x < 0 ? -x : x - allocation.width; |
| 1822 | dy = y < 0 ? -y : y - allocation.height; |
| 1823 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1824 | dx = x < 0 ? -x : x - gui.drawarea->allocation.width; |
| 1825 | dy = y < 0 ? -y : y - gui.drawarea->allocation.height; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1826 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1827 | |
| 1828 | offshoot = dx > dy ? dx : dy; |
| 1829 | |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1830 | /* 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] | 1831 | * distance of 127 pixels from the main window. |
| 1832 | * |
| 1833 | * One could think endlessly about the most ergonomic variant here. |
| 1834 | * For example it could make sense to calculate the distance from the |
| 1835 | * drags start instead... |
| 1836 | * |
| 1837 | * Maybe a parabolic interpolation would suite us better here too... |
| 1838 | */ |
| 1839 | if (offshoot > 127) |
| 1840 | { |
| 1841 | /* 5 appears to be somehow near to my perceptual limits :-). */ |
| 1842 | delay = 5; |
| 1843 | } |
| 1844 | else |
| 1845 | { |
| 1846 | delay = (130 * (127 - offshoot)) / 127 + 5; |
| 1847 | } |
| 1848 | |
| 1849 | /* shoot again */ |
| 1850 | if (!motion_repeat_timer) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1851 | #if GTK_CHECK_VERSION(3,0,0) |
| 1852 | motion_repeat_timer = g_timeout_add((guint)delay, |
| 1853 | motion_repeat_timer_cb, NULL); |
| 1854 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1855 | motion_repeat_timer = gtk_timeout_add((guint32)delay, |
| 1856 | motion_repeat_timer_cb, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1857 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1858 | } |
| 1859 | } |
| 1860 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1861 | #if GTK_CHECK_VERSION(3,0,0) |
| 1862 | static GdkDevice * |
| 1863 | gui_gtk_get_pointer_device(GtkWidget *widget) |
| 1864 | { |
| 1865 | GdkWindow * const win = gtk_widget_get_window(widget); |
| 1866 | GdkDisplay * const dpy = gdk_window_get_display(win); |
Bram Moolenaar | 30e12d2 | 2016-04-17 20:49:53 +0200 | [diff] [blame] | 1867 | # if GTK_CHECK_VERSION(3,20,0) |
| 1868 | GdkSeat * const seat = gdk_display_get_default_seat(dpy); |
| 1869 | return gdk_seat_get_pointer(seat); |
| 1870 | # else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1871 | GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy); |
| 1872 | return gdk_device_manager_get_client_pointer(mngr); |
Bram Moolenaar | 30e12d2 | 2016-04-17 20:49:53 +0200 | [diff] [blame] | 1873 | # endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1874 | } |
| 1875 | |
| 1876 | static GdkWindow * |
| 1877 | gui_gtk_get_pointer(GtkWidget *widget, |
| 1878 | gint *x, |
| 1879 | gint *y, |
| 1880 | GdkModifierType *state) |
| 1881 | { |
| 1882 | GdkWindow * const win = gtk_widget_get_window(widget); |
| 1883 | GdkDevice * const dev = gui_gtk_get_pointer_device(widget); |
| 1884 | return gdk_window_get_device_position(win, dev , x, y, state); |
| 1885 | } |
| 1886 | |
Bram Moolenaar | 2369c15 | 2016-03-04 23:08:25 +0100 | [diff] [blame] | 1887 | # if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1888 | static GdkWindow * |
| 1889 | gui_gtk_window_at_position(GtkWidget *widget, |
| 1890 | gint *x, |
| 1891 | gint *y) |
| 1892 | { |
| 1893 | GdkDevice * const dev = gui_gtk_get_pointer_device(widget); |
| 1894 | return gdk_device_get_window_at_position(dev, x, y); |
| 1895 | } |
Bram Moolenaar | 2369c15 | 2016-03-04 23:08:25 +0100 | [diff] [blame] | 1896 | # endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1897 | #endif |
| 1898 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1899 | /* |
| 1900 | * Timer used to recognize multiple clicks of the mouse button. |
| 1901 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1902 | #if GTK_CHECK_VERSION(3,0,0) |
| 1903 | static gboolean |
| 1904 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1905 | static gint |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1906 | #endif |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1907 | motion_repeat_timer_cb(gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1908 | { |
| 1909 | int x; |
| 1910 | int y; |
| 1911 | GdkModifierType state; |
| 1912 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1913 | #if GTK_CHECK_VERSION(3,0,0) |
| 1914 | gui_gtk_get_pointer(gui.drawarea, &x, &y, &state); |
| 1915 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1916 | gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1917 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1918 | |
| 1919 | if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | |
| 1920 | GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | |
| 1921 | GDK_BUTTON5_MASK))) |
| 1922 | { |
| 1923 | motion_repeat_timer = 0; |
| 1924 | return FALSE; |
| 1925 | } |
| 1926 | |
| 1927 | /* If there already is a mouse click in the input buffer, wait another |
| 1928 | * time (otherwise we would create a backlog of clicks) */ |
| 1929 | if (vim_used_in_input_buf() > 10) |
| 1930 | return TRUE; |
| 1931 | |
| 1932 | motion_repeat_timer = 0; |
| 1933 | |
| 1934 | /* |
| 1935 | * Fake a motion event. |
| 1936 | * Trick: Pretend the mouse moved to the next character on every other |
| 1937 | * event, otherwise drag events will be discarded, because they are still |
| 1938 | * in the same character. |
| 1939 | */ |
| 1940 | if (motion_repeat_offset) |
| 1941 | x += gui.char_width; |
| 1942 | |
| 1943 | motion_repeat_offset = !motion_repeat_offset; |
| 1944 | process_motion_notify(x, y, state); |
| 1945 | |
| 1946 | /* Don't happen again. We will get reinstalled in the synthetic event |
| 1947 | * if needed -- thus repeating should still work. */ |
| 1948 | return FALSE; |
| 1949 | } |
| 1950 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1951 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1952 | motion_notify_event(GtkWidget *widget, |
| 1953 | GdkEventMotion *event, |
| 1954 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1955 | { |
| 1956 | if (event->is_hint) |
| 1957 | { |
| 1958 | int x; |
| 1959 | int y; |
| 1960 | GdkModifierType state; |
| 1961 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1962 | #if GTK_CHECK_VERSION(3,0,0) |
| 1963 | gui_gtk_get_pointer(widget, &x, &y, &state); |
| 1964 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1965 | gdk_window_get_pointer(widget->window, &x, &y, &state); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1966 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1967 | process_motion_notify(x, y, state); |
| 1968 | } |
| 1969 | else |
| 1970 | { |
| 1971 | process_motion_notify((int)event->x, (int)event->y, |
| 1972 | (GdkModifierType)event->state); |
| 1973 | } |
| 1974 | |
| 1975 | return TRUE; /* handled */ |
| 1976 | } |
| 1977 | |
| 1978 | |
| 1979 | /* |
| 1980 | * Mouse button handling. Note please that we are capturing multiple click's |
| 1981 | * by our own timeout mechanism instead of the one provided by GTK+ itself. |
| 1982 | * This is due to the way the generic VIM code is recognizing multiple clicks. |
| 1983 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1984 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1985 | button_press_event(GtkWidget *widget, |
| 1986 | GdkEventButton *event, |
| 1987 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1988 | { |
| 1989 | int button; |
| 1990 | int repeated_click = FALSE; |
| 1991 | int x, y; |
| 1992 | int_u vim_modifiers; |
| 1993 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1994 | gui.event_time = event->time; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 1995 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1996 | /* Make sure we have focus now we've been selected */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1997 | #if GTK_CHECK_VERSION(3,0,0) |
| 1998 | if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
| 1999 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2000 | if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2001 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2002 | gtk_widget_grab_focus(widget); |
| 2003 | |
| 2004 | /* |
| 2005 | * Don't let additional events about multiple clicks send by GTK to us |
| 2006 | * after the initial button press event confuse us. |
| 2007 | */ |
| 2008 | if (event->type != GDK_BUTTON_PRESS) |
| 2009 | return FALSE; |
| 2010 | |
| 2011 | x = event->x; |
| 2012 | y = event->y; |
| 2013 | |
| 2014 | /* Handle multiple clicks */ |
| 2015 | if (!mouse_timed_out && mouse_click_timer) |
| 2016 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2017 | #if GTK_CHECK_VERSION(3,0,0) |
| 2018 | g_source_remove(mouse_click_timer); |
| 2019 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2020 | gtk_timeout_remove(mouse_click_timer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2021 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2022 | mouse_click_timer = 0; |
| 2023 | repeated_click = TRUE; |
| 2024 | } |
| 2025 | |
| 2026 | mouse_timed_out = FALSE; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2027 | #if GTK_CHECK_VERSION(3,0,0) |
| 2028 | mouse_click_timer = g_timeout_add((guint)p_mouset, |
| 2029 | mouse_click_timer_cb, &mouse_timed_out); |
| 2030 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2031 | mouse_click_timer = gtk_timeout_add((guint32)p_mouset, |
| 2032 | mouse_click_timer_cb, &mouse_timed_out); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2033 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2034 | |
| 2035 | switch (event->button) |
| 2036 | { |
Bram Moolenaar | 88e484b | 2015-11-24 15:38:44 +0100 | [diff] [blame] | 2037 | /* Keep in sync with gui_x11.c. |
| 2038 | * Buttons 4-7 are handled in scroll_event() */ |
| 2039 | case 1: button = MOUSE_LEFT; break; |
| 2040 | case 2: button = MOUSE_MIDDLE; break; |
| 2041 | case 3: button = MOUSE_RIGHT; break; |
| 2042 | case 8: button = MOUSE_X1; break; |
| 2043 | case 9: button = MOUSE_X2; break; |
| 2044 | default: |
| 2045 | return FALSE; /* Unknown button */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2046 | } |
| 2047 | |
| 2048 | #ifdef FEAT_XIM |
| 2049 | /* cancel any preediting */ |
| 2050 | if (im_is_preediting()) |
| 2051 | xim_reset(); |
| 2052 | #endif |
| 2053 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2054 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2055 | |
| 2056 | gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2057 | |
| 2058 | return TRUE; |
| 2059 | } |
| 2060 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2061 | /* |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 2062 | * GTK+ 2 abstracts scrolling via the GdkEventScroll. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2063 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2064 | static gboolean |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2065 | scroll_event(GtkWidget *widget, |
| 2066 | GdkEventScroll *event, |
| 2067 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2068 | { |
| 2069 | int button; |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2070 | int_u vim_modifiers; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2071 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2072 | #if GTK_CHECK_VERSION(3,0,0) |
| 2073 | if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
| 2074 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2075 | if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2076 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2077 | gtk_widget_grab_focus(widget); |
| 2078 | |
| 2079 | switch (event->direction) |
| 2080 | { |
| 2081 | case GDK_SCROLL_UP: |
| 2082 | button = MOUSE_4; |
| 2083 | break; |
| 2084 | case GDK_SCROLL_DOWN: |
| 2085 | button = MOUSE_5; |
| 2086 | break; |
Bram Moolenaar | 8d9b40e | 2010-07-25 15:49:07 +0200 | [diff] [blame] | 2087 | case GDK_SCROLL_LEFT: |
| 2088 | button = MOUSE_7; |
| 2089 | break; |
| 2090 | case GDK_SCROLL_RIGHT: |
| 2091 | button = MOUSE_6; |
| 2092 | break; |
| 2093 | default: /* This shouldn't happen */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2094 | return FALSE; |
| 2095 | } |
| 2096 | |
| 2097 | # ifdef FEAT_XIM |
| 2098 | /* cancel any preediting */ |
| 2099 | if (im_is_preediting()) |
| 2100 | xim_reset(); |
| 2101 | # endif |
| 2102 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2103 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2104 | |
| 2105 | gui_send_mouse_event(button, (int)event->x, (int)event->y, |
| 2106 | FALSE, vim_modifiers); |
| 2107 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2108 | return TRUE; |
| 2109 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2110 | |
| 2111 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2112 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2113 | button_release_event(GtkWidget *widget UNUSED, |
| 2114 | GdkEventButton *event, |
| 2115 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2116 | { |
| 2117 | int x, y; |
| 2118 | int_u vim_modifiers; |
| 2119 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 2120 | gui.event_time = event->time; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2121 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2122 | /* Remove any motion "machine gun" timers used for automatic further |
| 2123 | extension of allocation areas if outside of the applications window |
| 2124 | area .*/ |
| 2125 | if (motion_repeat_timer) |
| 2126 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2127 | #if GTK_CHECK_VERSION(3,0,0) |
| 2128 | g_source_remove(motion_repeat_timer); |
| 2129 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2130 | gtk_timeout_remove(motion_repeat_timer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2131 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2132 | motion_repeat_timer = 0; |
| 2133 | } |
| 2134 | |
| 2135 | x = event->x; |
| 2136 | y = event->y; |
| 2137 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2138 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2139 | |
| 2140 | gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2141 | |
| 2142 | return TRUE; |
| 2143 | } |
| 2144 | |
| 2145 | |
| 2146 | #ifdef FEAT_DND |
| 2147 | /**************************************************************************** |
| 2148 | * Drag aNd Drop support handlers. |
| 2149 | */ |
| 2150 | |
| 2151 | /* |
| 2152 | * Count how many items there may be and separate them with a NUL. |
| 2153 | * Apparently the items are separated with \r\n. This is not documented, |
| 2154 | * thus be careful not to go past the end. Also allow separation with |
| 2155 | * NUL characters. |
| 2156 | */ |
| 2157 | static int |
| 2158 | count_and_decode_uri_list(char_u *out, char_u *raw, int len) |
| 2159 | { |
| 2160 | int i; |
| 2161 | char_u *p = out; |
| 2162 | int count = 0; |
| 2163 | |
| 2164 | for (i = 0; i < len; ++i) |
| 2165 | { |
| 2166 | if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r') |
| 2167 | { |
| 2168 | if (p > out && p[-1] != NUL) |
| 2169 | { |
| 2170 | ++count; |
| 2171 | *p++ = NUL; |
| 2172 | } |
| 2173 | } |
| 2174 | else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0) |
| 2175 | { |
| 2176 | *p++ = hexhex2nr(raw + i + 1); |
| 2177 | i += 2; |
| 2178 | } |
| 2179 | else |
| 2180 | *p++ = raw[i]; |
| 2181 | } |
| 2182 | if (p > out && p[-1] != NUL) |
| 2183 | { |
| 2184 | *p = NUL; /* last item didn't have \r or \n */ |
| 2185 | ++count; |
| 2186 | } |
| 2187 | return count; |
| 2188 | } |
| 2189 | |
| 2190 | /* |
| 2191 | * Parse NUL separated "src" strings. Make it an array "outlist" form. On |
| 2192 | * this process, URI which protocol is not "file:" are removed. Return |
| 2193 | * length of array (less than "max"). |
| 2194 | */ |
| 2195 | static int |
| 2196 | filter_uri_list(char_u **outlist, int max, char_u *src) |
| 2197 | { |
| 2198 | int i, j; |
| 2199 | |
| 2200 | for (i = j = 0; i < max; ++i) |
| 2201 | { |
| 2202 | outlist[i] = NULL; |
| 2203 | if (STRNCMP(src, "file:", 5) == 0) |
| 2204 | { |
| 2205 | src += 5; |
| 2206 | if (STRNCMP(src, "//localhost", 11) == 0) |
| 2207 | src += 11; |
| 2208 | while (src[0] == '/' && src[1] == '/') |
| 2209 | ++src; |
| 2210 | outlist[j++] = vim_strsave(src); |
| 2211 | } |
| 2212 | src += STRLEN(src) + 1; |
| 2213 | } |
| 2214 | return j; |
| 2215 | } |
| 2216 | |
| 2217 | static char_u ** |
| 2218 | parse_uri_list(int *count, char_u *data, int len) |
| 2219 | { |
| 2220 | int n = 0; |
| 2221 | char_u *tmp = NULL; |
Bram Moolenaar | 945ec09 | 2016-06-08 21:17:43 +0200 | [diff] [blame] | 2222 | char_u **array = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2223 | |
| 2224 | if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL) |
| 2225 | { |
| 2226 | n = count_and_decode_uri_list(tmp, data, len); |
| 2227 | if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL) |
| 2228 | n = filter_uri_list(array, n, tmp); |
| 2229 | } |
| 2230 | vim_free(tmp); |
| 2231 | *count = n; |
| 2232 | return array; |
| 2233 | } |
| 2234 | |
| 2235 | static void |
| 2236 | drag_handle_uri_list(GdkDragContext *context, |
| 2237 | GtkSelectionData *data, |
| 2238 | guint time_, |
| 2239 | GdkModifierType state, |
| 2240 | gint x, |
| 2241 | gint y) |
| 2242 | { |
| 2243 | char_u **fnames; |
| 2244 | int nfiles = 0; |
| 2245 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2246 | # if GTK_CHECK_VERSION(3,0,0) |
| 2247 | fnames = parse_uri_list(&nfiles, |
| 2248 | (char_u *)gtk_selection_data_get_data(data), |
| 2249 | gtk_selection_data_get_length(data)); |
| 2250 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2251 | fnames = parse_uri_list(&nfiles, data->data, data->length); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2252 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2253 | |
| 2254 | if (fnames != NULL && nfiles > 0) |
| 2255 | { |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2256 | int_u modifiers; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2257 | |
| 2258 | gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ |
| 2259 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2260 | modifiers = modifiers_gdk2mouse(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2261 | |
| 2262 | gui_handle_drop(x, y, modifiers, fnames, nfiles); |
| 2263 | } |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 2264 | else |
| 2265 | vim_free(fnames); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2266 | } |
| 2267 | |
| 2268 | static void |
| 2269 | drag_handle_text(GdkDragContext *context, |
| 2270 | GtkSelectionData *data, |
| 2271 | guint time_, |
| 2272 | GdkModifierType state) |
| 2273 | { |
| 2274 | char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP}; |
| 2275 | char_u *text; |
| 2276 | int len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2277 | char_u *tmpbuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2278 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2279 | # if GTK_CHECK_VERSION(3,0,0) |
| 2280 | text = (char_u *)gtk_selection_data_get_data(data); |
| 2281 | len = gtk_selection_data_get_length(data); |
| 2282 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2283 | text = data->data; |
| 2284 | len = data->length; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2285 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2286 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2287 | # if GTK_CHECK_VERSION(3,0,0) |
| 2288 | if (gtk_selection_data_get_data_type(data) == utf8_string_atom) |
| 2289 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2290 | if (data->type == utf8_string_atom) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2291 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2292 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2293 | if (input_conv.vc_type != CONV_NONE) |
| 2294 | tmpbuf = string_convert(&input_conv, text, &len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2295 | if (tmpbuf != NULL) |
| 2296 | text = tmpbuf; |
| 2297 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2298 | |
| 2299 | dnd_yank_drag_data(text, (long)len); |
| 2300 | gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2301 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2302 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2303 | dropkey[2] = modifiers_gdk2vim(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2304 | |
| 2305 | if (dropkey[2] != 0) |
| 2306 | add_to_input_buf(dropkey, (int)sizeof(dropkey)); |
| 2307 | else |
| 2308 | add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2309 | } |
| 2310 | |
| 2311 | /* |
| 2312 | * DND receiver. |
| 2313 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2314 | static void |
| 2315 | drag_data_received_cb(GtkWidget *widget, |
| 2316 | GdkDragContext *context, |
| 2317 | gint x, |
| 2318 | gint y, |
| 2319 | GtkSelectionData *data, |
| 2320 | guint info, |
| 2321 | guint time_, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2322 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2323 | { |
| 2324 | GdkModifierType state; |
| 2325 | |
| 2326 | /* Guard against trash */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2327 | # if GTK_CHECK_VERSION(3,0,0) |
| 2328 | const guchar * const data_data = gtk_selection_data_get_data(data); |
| 2329 | const gint data_length = gtk_selection_data_get_length(data); |
| 2330 | const gint data_format = gtk_selection_data_get_format(data); |
| 2331 | |
| 2332 | if (data_data == NULL |
| 2333 | || data_length <= 0 |
| 2334 | || data_format != 8 |
| 2335 | || data_data[data_length] != '\0') |
| 2336 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2337 | if (data->data == NULL |
| 2338 | || data->length <= 0 |
| 2339 | || data->format != 8 |
| 2340 | || data->data[data->length] != '\0') |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2341 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2342 | { |
| 2343 | gtk_drag_finish(context, FALSE, FALSE, time_); |
| 2344 | return; |
| 2345 | } |
| 2346 | |
| 2347 | /* Get the current modifier state for proper distinguishment between |
| 2348 | * different operations later. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2349 | #if GTK_CHECK_VERSION(3,0,0) |
| 2350 | gui_gtk_get_pointer(widget, NULL, NULL, &state); |
| 2351 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2352 | gdk_window_get_pointer(widget->window, NULL, NULL, &state); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2353 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2354 | |
| 2355 | /* Not sure about the role of "text/plain" here... */ |
| 2356 | if (info == (guint)TARGET_TEXT_URI_LIST) |
| 2357 | drag_handle_uri_list(context, data, time_, state, x, y); |
| 2358 | else |
| 2359 | drag_handle_text(context, data, time_, state); |
| 2360 | |
| 2361 | } |
| 2362 | #endif /* FEAT_DND */ |
| 2363 | |
| 2364 | |
| 2365 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 2366 | /* |
| 2367 | * GnomeClient interact callback. Check for unsaved buffers that cannot |
| 2368 | * be abandoned and pop up a dialog asking the user for confirmation if |
| 2369 | * necessary. |
| 2370 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2371 | static void |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2372 | sm_client_check_changed_any(GnomeClient *client UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2373 | gint key, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2374 | GnomeDialogType type UNUSED, |
| 2375 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2376 | { |
| 2377 | cmdmod_T save_cmdmod; |
| 2378 | gboolean shutdown_cancelled; |
| 2379 | |
| 2380 | save_cmdmod = cmdmod; |
| 2381 | |
| 2382 | # ifdef FEAT_BROWSE |
| 2383 | cmdmod.browse = TRUE; |
| 2384 | # endif |
| 2385 | # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2386 | cmdmod.confirm = TRUE; |
| 2387 | # endif |
| 2388 | /* |
| 2389 | * If there are changed buffers, present the user with |
| 2390 | * a dialog if possible, otherwise give an error message. |
| 2391 | */ |
Bram Moolenaar | 027387f | 2016-01-02 22:25:52 +0100 | [diff] [blame] | 2392 | shutdown_cancelled = check_changed_any(FALSE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2393 | |
| 2394 | exiting = FALSE; |
| 2395 | cmdmod = save_cmdmod; |
| 2396 | setcursor(); /* position the cursor */ |
| 2397 | out_flush(); |
| 2398 | /* |
| 2399 | * If the user hit the [Cancel] button the whole shutdown |
| 2400 | * will be cancelled. Wow, quite powerful feature (: |
| 2401 | */ |
| 2402 | gnome_interaction_key_return(key, shutdown_cancelled); |
| 2403 | } |
| 2404 | |
| 2405 | /* |
| 2406 | * Generate a script that can be used to restore the current editing session. |
| 2407 | * Save the value of v:this_session before running :mksession in order to make |
| 2408 | * automagic session save fully transparent. Return TRUE on success. |
| 2409 | */ |
| 2410 | static int |
| 2411 | write_session_file(char_u *filename) |
| 2412 | { |
| 2413 | char_u *escaped_filename; |
| 2414 | char *mksession_cmdline; |
| 2415 | unsigned int save_ssop_flags; |
| 2416 | int failed; |
| 2417 | |
| 2418 | /* |
| 2419 | * Build an ex command line to create a script that restores the current |
| 2420 | * session if executed. Escape the filename to avoid nasty surprises. |
| 2421 | */ |
| 2422 | escaped_filename = vim_strsave_escaped(filename, escape_chars); |
| 2423 | if (escaped_filename == NULL) |
| 2424 | return FALSE; |
Bram Moolenaar | dc3213d | 2007-06-19 16:03:50 +0000 | [diff] [blame] | 2425 | mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename, |
| 2426 | NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2427 | vim_free(escaped_filename); |
Bram Moolenaar | dc3213d | 2007-06-19 16:03:50 +0000 | [diff] [blame] | 2428 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2429 | /* |
| 2430 | * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid |
| 2431 | * unpredictable effects when the session is saved automatically. Also, |
| 2432 | * we definitely need SSOP_GLOBALS to be able to restore v:this_session. |
| 2433 | * Don't use SSOP_BUFFERS to prevent the buffer list from becoming |
| 2434 | * enormously large if the GNOME session feature is used regularly. |
| 2435 | */ |
| 2436 | save_ssop_flags = ssop_flags; |
| 2437 | ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS |
Bram Moolenaar | dc3213d | 2007-06-19 16:03:50 +0000 | [diff] [blame] | 2438 | |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2439 | |
| 2440 | do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session"); |
| 2441 | failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL); |
| 2442 | do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session"); |
Bram Moolenaar | 485db9b | 2005-01-31 19:23:41 +0000 | [diff] [blame] | 2443 | do_unlet((char_u *)"Save_VV_this_session", TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2444 | |
| 2445 | ssop_flags = save_ssop_flags; |
| 2446 | g_free(mksession_cmdline); |
Bram Moolenaar | 24dc230 | 2014-05-13 20:19:58 +0200 | [diff] [blame] | 2447 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2448 | /* |
| 2449 | * Reopen the file and append a command to restore v:this_session, |
| 2450 | * as if this save never happened. This is to avoid conflicts with |
| 2451 | * the user's own sessions. FIXME: It's probably less hackish to add |
| 2452 | * a "stealth" flag to 'sessionoptions' -- gotta ask Bram. |
| 2453 | */ |
| 2454 | if (!failed) |
| 2455 | { |
| 2456 | FILE *fd; |
| 2457 | |
| 2458 | fd = open_exfile(filename, TRUE, APPENDBIN); |
| 2459 | |
| 2460 | failed = (fd == NULL |
| 2461 | || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL |
| 2462 | || put_line(fd, "unlet Save_VV_this_session") == FAIL); |
| 2463 | |
| 2464 | if (fd != NULL && fclose(fd) != 0) |
| 2465 | failed = TRUE; |
| 2466 | |
| 2467 | if (failed) |
| 2468 | mch_remove(filename); |
| 2469 | } |
| 2470 | |
| 2471 | return !failed; |
| 2472 | } |
| 2473 | |
| 2474 | /* |
| 2475 | * "save_yourself" signal handler. Initiate an interaction to ask the user |
| 2476 | * for confirmation if necessary. Save the current editing session and tell |
| 2477 | * the session manager how to restart Vim. |
| 2478 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2479 | static gboolean |
| 2480 | sm_client_save_yourself(GnomeClient *client, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2481 | gint phase UNUSED, |
| 2482 | GnomeSaveStyle save_style UNUSED, |
| 2483 | gboolean shutdown UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2484 | GnomeInteractStyle interact_style, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2485 | gboolean fast UNUSED, |
| 2486 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2487 | { |
| 2488 | static const char suffix[] = "-session.vim"; |
| 2489 | char *session_file; |
| 2490 | unsigned int len; |
| 2491 | gboolean success; |
| 2492 | |
| 2493 | /* Always request an interaction if possible. check_changed_any() |
| 2494 | * won't actually show a dialog unless any buffers have been modified. |
| 2495 | * There doesn't seem to be an obvious way to check that without |
| 2496 | * automatically firing the dialog. Anyway, it works just fine. */ |
| 2497 | if (interact_style == GNOME_INTERACT_ANY) |
| 2498 | gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL, |
| 2499 | &sm_client_check_changed_any, |
| 2500 | NULL); |
| 2501 | out_flush(); |
| 2502 | ml_sync_all(FALSE, FALSE); /* preserve all swap files */ |
| 2503 | |
| 2504 | /* The path is unique for each session save. We do neither know nor care |
| 2505 | * which session script will actually be used later. This decision is in |
| 2506 | * the domain of the session manager. */ |
| 2507 | session_file = gnome_config_get_real_path( |
| 2508 | gnome_client_get_config_prefix(client)); |
| 2509 | len = strlen(session_file); |
| 2510 | |
| 2511 | if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR) |
| 2512 | --len; /* get rid of the superfluous trailing '/' */ |
| 2513 | |
| 2514 | session_file = g_renew(char, session_file, len + sizeof(suffix)); |
| 2515 | memcpy(session_file + len, suffix, sizeof(suffix)); |
| 2516 | |
| 2517 | success = write_session_file((char_u *)session_file); |
| 2518 | |
| 2519 | if (success) |
| 2520 | { |
| 2521 | const char *argv[8]; |
| 2522 | int i; |
| 2523 | |
| 2524 | /* Tell the session manager how to wipe out the stored session data. |
| 2525 | * This isn't as dangerous as it looks, don't worry :) session_file |
| 2526 | * is a unique absolute filename. Usually it'll be something like |
| 2527 | * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */ |
| 2528 | i = 0; |
| 2529 | argv[i++] = "rm"; |
| 2530 | argv[i++] = session_file; |
| 2531 | argv[i] = NULL; |
| 2532 | |
| 2533 | gnome_client_set_discard_command(client, i, (char **)argv); |
| 2534 | |
| 2535 | /* Tell the session manager how to restore the just saved session. |
| 2536 | * This is easily done thanks to Vim's -S option. Pass the -f flag |
| 2537 | * since there's no need to fork -- it might even cause confusion. |
| 2538 | * Also pass the window role to give the WM something to match on. |
| 2539 | * The role is set in gui_mch_open(), thus should _never_ be NULL. */ |
| 2540 | i = 0; |
| 2541 | argv[i++] = restart_command; |
| 2542 | argv[i++] = "-f"; |
| 2543 | argv[i++] = "-g"; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2544 | argv[i++] = "--role"; |
| 2545 | argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2546 | argv[i++] = "-S"; |
| 2547 | argv[i++] = session_file; |
| 2548 | argv[i] = NULL; |
| 2549 | |
| 2550 | gnome_client_set_restart_command(client, i, (char **)argv); |
| 2551 | gnome_client_set_clone_command(client, 0, NULL); |
| 2552 | } |
| 2553 | |
| 2554 | g_free(session_file); |
| 2555 | |
| 2556 | return success; |
| 2557 | } |
| 2558 | |
| 2559 | /* |
| 2560 | * Called when the session manager wants us to die. There isn't much to save |
| 2561 | * here since "save_yourself" has been emitted before (unless serious trouble |
| 2562 | * is happening). |
| 2563 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2564 | static void |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2565 | sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2566 | { |
| 2567 | /* Don't write messages to the GUI anymore */ |
| 2568 | full_screen = FALSE; |
| 2569 | |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 2570 | vim_strncpy(IObuff, (char_u *) |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 2571 | _("Vim: Received \"die\" request from session manager\n"), |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 2572 | IOSIZE - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2573 | preserve_exit(); |
| 2574 | } |
| 2575 | |
| 2576 | /* |
| 2577 | * Connect our signal handlers to be notified on session save and shutdown. |
| 2578 | */ |
| 2579 | static void |
| 2580 | setup_save_yourself(void) |
| 2581 | { |
| 2582 | GnomeClient *client; |
| 2583 | |
| 2584 | client = gnome_master_client(); |
| 2585 | |
| 2586 | if (client != NULL) |
| 2587 | { |
| 2588 | /* Must use the deprecated gtk_signal_connect() for compatibility |
| 2589 | * with GNOME 1. Arrgh, zombies! */ |
| 2590 | gtk_signal_connect(GTK_OBJECT(client), "save_yourself", |
| 2591 | GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL); |
| 2592 | gtk_signal_connect(GTK_OBJECT(client), "die", |
| 2593 | GTK_SIGNAL_FUNC(&sm_client_die), NULL); |
| 2594 | } |
| 2595 | } |
| 2596 | |
| 2597 | #else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */ |
| 2598 | |
| 2599 | # ifdef USE_XSMP |
| 2600 | /* |
| 2601 | * GTK tells us that XSMP needs attention |
| 2602 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2603 | static gboolean |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 2604 | local_xsmp_handle_requests( |
| 2605 | GIOChannel *source UNUSED, |
| 2606 | GIOCondition condition, |
| 2607 | gpointer data) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2608 | { |
| 2609 | if (condition == G_IO_IN) |
| 2610 | { |
| 2611 | /* Do stuff; maybe close connection */ |
| 2612 | if (xsmp_handle_requests() == FAIL) |
| 2613 | g_io_channel_unref((GIOChannel *)data); |
| 2614 | return TRUE; |
| 2615 | } |
| 2616 | /* Error */ |
| 2617 | g_io_channel_unref((GIOChannel *)data); |
| 2618 | xsmp_close(); |
| 2619 | return TRUE; |
| 2620 | } |
| 2621 | # endif /* USE_XSMP */ |
| 2622 | |
| 2623 | /* |
| 2624 | * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event. |
| 2625 | * This is an ugly use of X functions. GTK doesn't offer an alternative. |
| 2626 | */ |
| 2627 | static void |
| 2628 | setup_save_yourself(void) |
| 2629 | { |
| 2630 | Atom *existing_atoms = NULL; |
| 2631 | int count = 0; |
| 2632 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2633 | # ifdef USE_XSMP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2634 | if (xsmp_icefd != -1) |
| 2635 | { |
| 2636 | /* |
| 2637 | * Use XSMP is preference to legacy WM_SAVE_YOURSELF; |
| 2638 | * set up GTK IO monitor |
| 2639 | */ |
| 2640 | GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd); |
| 2641 | |
| 2642 | g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP, |
| 2643 | local_xsmp_handle_requests, (gpointer)g_io); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2644 | g_io_channel_unref(g_io); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2645 | } |
| 2646 | else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2647 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2648 | { |
| 2649 | /* Fall back to old method */ |
| 2650 | |
| 2651 | /* first get the existing value */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2652 | # if GTK_CHECK_VERSION(3,0,0) |
| 2653 | GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin); |
| 2654 | |
| 2655 | if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2656 | GDK_WINDOW_XID(mainwin_win), |
| 2657 | &existing_atoms, &count)) |
| 2658 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2659 | if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2660 | GDK_WINDOW_XWINDOW(gui.mainwin->window), |
| 2661 | &existing_atoms, &count)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2662 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2663 | { |
| 2664 | Atom *new_atoms; |
| 2665 | Atom save_yourself_xatom; |
| 2666 | int i; |
| 2667 | |
| 2668 | save_yourself_xatom = GET_X_ATOM(save_yourself_atom); |
| 2669 | |
| 2670 | /* check if WM_SAVE_YOURSELF isn't there yet */ |
| 2671 | for (i = 0; i < count; ++i) |
| 2672 | if (existing_atoms[i] == save_yourself_xatom) |
| 2673 | break; |
| 2674 | |
| 2675 | if (i == count) |
| 2676 | { |
| 2677 | /* allocate an Atoms array which is one item longer */ |
| 2678 | new_atoms = (Atom *)alloc((unsigned)((count + 1) |
| 2679 | * sizeof(Atom))); |
| 2680 | if (new_atoms != NULL) |
| 2681 | { |
| 2682 | memcpy(new_atoms, existing_atoms, count * sizeof(Atom)); |
| 2683 | new_atoms[count] = save_yourself_xatom; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2684 | # if GTK_CHECK_VERSION(3,0,0) |
| 2685 | XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2686 | GDK_WINDOW_XID(mainwin_win), |
| 2687 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2688 | XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2689 | GDK_WINDOW_XWINDOW(gui.mainwin->window), |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2690 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2691 | new_atoms, count + 1); |
| 2692 | vim_free(new_atoms); |
| 2693 | } |
| 2694 | } |
| 2695 | XFree(existing_atoms); |
| 2696 | } |
| 2697 | } |
| 2698 | } |
| 2699 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2700 | /* |
| 2701 | * Installing a global event filter seems to be the only way to catch |
| 2702 | * client messages of type WM_PROTOCOLS without overriding GDK's own |
| 2703 | * client message event filter. Well, that's still better than trying |
| 2704 | * to guess what the GDK filter had done if it had been invoked instead |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2705 | * |
| 2706 | * GTK2_FIXME: This doesn't seem to work. For some reason we never |
| 2707 | * receive WM_SAVE_YOURSELF even though everything is set up correctly. |
| 2708 | * I have the nasty feeling modern session managers just don't send this |
| 2709 | * deprecated message anymore. Addition: confirmed by several people. |
| 2710 | * |
| 2711 | * The GNOME session support is much cooler anyway. Unlike this ugly |
| 2712 | * WM_SAVE_YOURSELF hack it actually stores the session... And yes, |
| 2713 | * it should work with KDE as well. |
| 2714 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2715 | static GdkFilterReturn |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2716 | global_event_filter(GdkXEvent *xev, |
| 2717 | GdkEvent *event UNUSED, |
| 2718 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2719 | { |
| 2720 | XEvent *xevent = (XEvent *)xev; |
| 2721 | |
| 2722 | if (xevent != NULL |
| 2723 | && xevent->type == ClientMessage |
| 2724 | && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2725 | && (long_u)xevent->xclient.data.l[0] |
| 2726 | == GET_X_ATOM(save_yourself_atom)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2727 | { |
| 2728 | out_flush(); |
| 2729 | ml_sync_all(FALSE, FALSE); /* preserve all swap files */ |
| 2730 | /* |
| 2731 | * Set the window's WM_COMMAND property, to let the window manager |
| 2732 | * know we are done saving ourselves. We don't want to be |
| 2733 | * restarted, thus set argv to NULL. |
| 2734 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2735 | # if GTK_CHECK_VERSION(3,0,0) |
| 2736 | XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)), |
| 2737 | GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)), |
| 2738 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2739 | XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2740 | GDK_WINDOW_XWINDOW(gui.mainwin->window), |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2741 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2742 | NULL, 0); |
| 2743 | return GDK_FILTER_REMOVE; |
| 2744 | } |
| 2745 | |
| 2746 | return GDK_FILTER_CONTINUE; |
| 2747 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2748 | #endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */ |
| 2749 | |
| 2750 | |
| 2751 | /* |
| 2752 | * Setup the window icon & xcmdsrv comm after the main window has been realized. |
| 2753 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2754 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2755 | mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2756 | { |
| 2757 | /* If you get an error message here, you still need to unpack the runtime |
| 2758 | * archive! */ |
| 2759 | #ifdef magick |
| 2760 | # undef magick |
| 2761 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2762 | /* A bit hackish, but avoids casting later and allows optimization */ |
| 2763 | # define static static const |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2764 | #define magick vim32x32 |
| 2765 | #include "../runtime/vim32x32.xpm" |
| 2766 | #undef magick |
| 2767 | #define magick vim16x16 |
| 2768 | #include "../runtime/vim16x16.xpm" |
| 2769 | #undef magick |
| 2770 | #define magick vim48x48 |
| 2771 | #include "../runtime/vim48x48.xpm" |
| 2772 | #undef magick |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2773 | # undef static |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2774 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2775 | #if GTK_CHECK_VERSION(3,0,0) |
| 2776 | GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin); |
| 2777 | #endif |
| 2778 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2779 | /* When started with "--echo-wid" argument, write window ID on stdout. */ |
| 2780 | if (echo_wid_arg) |
| 2781 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2782 | #if GTK_CHECK_VERSION(3,0,0) |
| 2783 | printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win)); |
| 2784 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2785 | printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2786 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2787 | fflush(stdout); |
| 2788 | } |
| 2789 | |
| 2790 | if (vim_strchr(p_go, GO_ICON) != NULL) |
| 2791 | { |
| 2792 | /* |
| 2793 | * Add an icon to the main window. For fun and convenience of the user. |
| 2794 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2795 | GList *icons = NULL; |
| 2796 | |
| 2797 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16)); |
| 2798 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32)); |
| 2799 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48)); |
| 2800 | |
| 2801 | gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons); |
| 2802 | |
| 2803 | g_list_foreach(icons, (GFunc)&g_object_unref, NULL); |
| 2804 | g_list_free(icons); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2805 | } |
| 2806 | |
| 2807 | #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) |
| 2808 | /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2809 | gdk_window_add_filter(NULL, &global_event_filter, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2810 | #endif |
| 2811 | /* Setup to indicate to the window manager that we want to catch the |
| 2812 | * WM_SAVE_YOURSELF event. For GNOME, this connects to the session |
| 2813 | * manager instead. */ |
| 2814 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 2815 | if (using_gnome) |
| 2816 | #endif |
| 2817 | setup_save_yourself(); |
| 2818 | |
| 2819 | #ifdef FEAT_CLIENTSERVER |
| 2820 | if (serverName == NULL && serverDelayedStartName != NULL) |
| 2821 | { |
| 2822 | /* This is a :gui command in a plain vim with no previous server */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2823 | # if GTK_CHECK_VERSION(3,0,0) |
| 2824 | commWindow = GDK_WINDOW_XID(mainwin_win); |
| 2825 | |
| 2826 | (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2827 | serverDelayedStartName); |
| 2828 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2829 | commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window); |
| 2830 | |
| 2831 | (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2832 | serverDelayedStartName); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2833 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2834 | } |
| 2835 | else |
| 2836 | { |
| 2837 | /* |
| 2838 | * Cannot handle "XLib-only" windows with gtk event routines, we'll |
| 2839 | * have to change the "server" registration to that of the main window |
| 2840 | * If we have not registered a name yet, remember the window |
| 2841 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2842 | # if GTK_CHECK_VERSION(3,0,0) |
| 2843 | serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2844 | GDK_WINDOW_XID(mainwin_win)); |
| 2845 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2846 | serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2847 | GDK_WINDOW_XWINDOW(gui.mainwin->window)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2848 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2849 | } |
| 2850 | gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2851 | # if GTK_CHECK_VERSION(3,0,0) |
| 2852 | g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event", |
| 2853 | G_CALLBACK(property_event), NULL); |
| 2854 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2855 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event", |
| 2856 | GTK_SIGNAL_FUNC(property_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2857 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2858 | #endif |
| 2859 | } |
| 2860 | |
| 2861 | static GdkCursor * |
| 2862 | create_blank_pointer(void) |
| 2863 | { |
| 2864 | GdkWindow *root_window = NULL; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2865 | #if GTK_CHECK_VERSION(3,0,0) |
| 2866 | GdkPixbuf *blank_mask; |
| 2867 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2868 | GdkPixmap *blank_mask; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2869 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2870 | GdkCursor *cursor; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 2871 | #if GTK_CHECK_VERSION(3,0,0) |
| 2872 | GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 }; |
| 2873 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2874 | GdkColor color = { 0, 0, 0, 0 }; |
| 2875 | char blank_data[] = { 0x0 }; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2876 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2877 | |
| 2878 | #ifdef HAVE_GTK_MULTIHEAD |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2879 | # if GTK_CHECK_VERSION(3,12,0) |
| 2880 | { |
| 2881 | GdkWindow * const win = gtk_widget_get_window(gui.mainwin); |
| 2882 | GdkScreen * const scrn = gdk_window_get_screen(win); |
| 2883 | root_window = gdk_screen_get_root_window(scrn); |
| 2884 | } |
| 2885 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2886 | root_window = gtk_widget_get_root_window(gui.mainwin); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2887 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2888 | #endif |
| 2889 | |
| 2890 | /* Create a pseudo blank pointer, which is in fact one pixel by one pixel |
| 2891 | * in size. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2892 | #if GTK_CHECK_VERSION(3,0,0) |
| 2893 | { |
| 2894 | cairo_surface_t *surf; |
| 2895 | cairo_t *cr; |
| 2896 | |
| 2897 | surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1); |
| 2898 | cr = cairo_create(surf); |
| 2899 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 2900 | cairo_set_source_rgba(cr, |
| 2901 | color.red, |
| 2902 | color.green, |
| 2903 | color.blue, |
| 2904 | color.alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2905 | cairo_rectangle(cr, 0, 0, 1, 1); |
| 2906 | cairo_fill(cr); |
| 2907 | cairo_destroy(cr); |
| 2908 | |
| 2909 | blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1); |
| 2910 | cairo_surface_destroy(surf); |
| 2911 | |
| 2912 | cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window), |
| 2913 | blank_mask, 0, 0); |
| 2914 | g_object_unref(blank_mask); |
| 2915 | } |
| 2916 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2917 | blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1); |
| 2918 | cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask, |
| 2919 | &color, &color, 0, 0); |
| 2920 | gdk_bitmap_unref(blank_mask); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2921 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2922 | |
| 2923 | return cursor; |
| 2924 | } |
| 2925 | |
| 2926 | #ifdef HAVE_GTK_MULTIHEAD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2927 | static void |
| 2928 | mainwin_screen_changed_cb(GtkWidget *widget, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2929 | GdkScreen *previous_screen UNUSED, |
| 2930 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2931 | { |
| 2932 | if (!gtk_widget_has_screen(widget)) |
| 2933 | return; |
| 2934 | |
| 2935 | /* |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 2936 | * Recreate the invisible mouse cursor. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2937 | */ |
| 2938 | if (gui.blank_pointer != NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2939 | # if GTK_CHECK_VERSION(3,0,0) |
| 2940 | g_object_unref(G_OBJECT(gui.blank_pointer)); |
| 2941 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2942 | gdk_cursor_unref(gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2943 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2944 | |
| 2945 | gui.blank_pointer = create_blank_pointer(); |
| 2946 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2947 | # if GTK_CHECK_VERSION(3,0,0) |
| 2948 | if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL) |
| 2949 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
| 2950 | gui.blank_pointer); |
| 2951 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2952 | if (gui.pointer_hidden && gui.drawarea->window != NULL) |
| 2953 | gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2954 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2955 | |
| 2956 | /* |
| 2957 | * Create a new PangoContext for this screen, and initialize it |
| 2958 | * with the current font if necessary. |
| 2959 | */ |
| 2960 | if (gui.text_context != NULL) |
| 2961 | g_object_unref(gui.text_context); |
| 2962 | |
| 2963 | gui.text_context = gtk_widget_create_pango_context(widget); |
| 2964 | pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
| 2965 | |
| 2966 | if (gui.norm_font != NULL) |
| 2967 | { |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 2968 | gui_mch_init_font(p_guifont, FALSE); |
Bram Moolenaar | 04a9d45 | 2006-03-27 21:03:26 +0000 | [diff] [blame] | 2969 | gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2970 | } |
| 2971 | } |
| 2972 | #endif /* HAVE_GTK_MULTIHEAD */ |
| 2973 | |
| 2974 | /* |
| 2975 | * After the drawing area comes up, we calculate all colors and create the |
| 2976 | * dummy blank cursor. |
| 2977 | * |
| 2978 | * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the |
| 2979 | * fact that the main VIM engine doesn't take them into account anywhere. |
| 2980 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2981 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2982 | drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2983 | { |
| 2984 | GtkWidget *sbar; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2985 | #if GTK_CHECK_VERSION(3,0,0) |
| 2986 | GtkAllocation allocation; |
| 2987 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2988 | |
| 2989 | #ifdef FEAT_XIM |
| 2990 | xim_init(); |
| 2991 | #endif |
| 2992 | gui_mch_new_colors(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2993 | #if GTK_CHECK_VERSION(3,0,0) |
| 2994 | gui.surface = gdk_window_create_similar_surface( |
| 2995 | gtk_widget_get_window(widget), |
| 2996 | CAIRO_CONTENT_COLOR_ALPHA, |
| 2997 | gtk_widget_get_allocated_width(widget), |
| 2998 | gtk_widget_get_allocated_height(widget)); |
| 2999 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3000 | gui.text_gc = gdk_gc_new(gui.drawarea->window); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3001 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3002 | |
| 3003 | gui.blank_pointer = create_blank_pointer(); |
| 3004 | if (gui.pointer_hidden) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3005 | #if GTK_CHECK_VERSION(3,0,0) |
| 3006 | gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer); |
| 3007 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3008 | gdk_window_set_cursor(widget->window, gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3009 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3010 | |
| 3011 | /* get the actual size of the scrollbars, if they are realized */ |
| 3012 | sbar = firstwin->w_scrollbars[SBAR_LEFT].id; |
| 3013 | if (!sbar || (!gui.which_scrollbars[SBAR_LEFT] |
| 3014 | && firstwin->w_scrollbars[SBAR_RIGHT].id)) |
| 3015 | sbar = firstwin->w_scrollbars[SBAR_RIGHT].id; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3016 | #if GTK_CHECK_VERSION(3,0,0) |
| 3017 | gtk_widget_get_allocation(sbar, &allocation); |
| 3018 | if (sbar && gtk_widget_get_realized(sbar) && allocation.width) |
| 3019 | gui.scrollbar_width = allocation.width; |
| 3020 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3021 | if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width) |
| 3022 | gui.scrollbar_width = sbar->allocation.width; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3023 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3024 | |
| 3025 | sbar = gui.bottom_sbar.id; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3026 | #if GTK_CHECK_VERSION(3,0,0) |
| 3027 | if (sbar && gtk_widget_get_realized(sbar) && allocation.height) |
| 3028 | gui.scrollbar_height = allocation.height; |
| 3029 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3030 | if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height) |
| 3031 | gui.scrollbar_height = sbar->allocation.height; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3032 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3033 | } |
| 3034 | |
| 3035 | /* |
| 3036 | * Properly clean up on shutdown. |
| 3037 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3038 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3039 | drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3040 | { |
| 3041 | /* Don't write messages to the GUI anymore */ |
| 3042 | full_screen = FALSE; |
| 3043 | |
| 3044 | #ifdef FEAT_XIM |
| 3045 | im_shutdown(); |
| 3046 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3047 | if (gui.ascii_glyphs != NULL) |
| 3048 | { |
| 3049 | pango_glyph_string_free(gui.ascii_glyphs); |
| 3050 | gui.ascii_glyphs = NULL; |
| 3051 | } |
| 3052 | if (gui.ascii_font != NULL) |
| 3053 | { |
| 3054 | g_object_unref(gui.ascii_font); |
| 3055 | gui.ascii_font = NULL; |
| 3056 | } |
| 3057 | g_object_unref(gui.text_context); |
| 3058 | gui.text_context = NULL; |
| 3059 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3060 | #if GTK_CHECK_VERSION(3,0,0) |
| 3061 | if (gui.surface != NULL) |
| 3062 | { |
| 3063 | cairo_surface_destroy(gui.surface); |
| 3064 | gui.surface = NULL; |
| 3065 | } |
| 3066 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3067 | g_object_unref(gui.text_gc); |
| 3068 | gui.text_gc = NULL; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3069 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3070 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3071 | #if GTK_CHECK_VERSION(3,0,0) |
| 3072 | g_object_unref(G_OBJECT(gui.blank_pointer)); |
| 3073 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3074 | gdk_cursor_unref(gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3075 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3076 | gui.blank_pointer = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3077 | } |
| 3078 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3079 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3080 | drawarea_style_set_cb(GtkWidget *widget UNUSED, |
| 3081 | GtkStyle *previous_style UNUSED, |
| 3082 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3083 | { |
| 3084 | gui_mch_new_colors(); |
| 3085 | } |
| 3086 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3087 | #if GTK_CHECK_VERSION(3,0,0) |
| 3088 | static gboolean |
| 3089 | drawarea_configure_event_cb(GtkWidget *widget, |
| 3090 | GdkEventConfigure *event, |
| 3091 | gpointer data UNUSED) |
| 3092 | { |
| 3093 | static int cur_width = 0; |
| 3094 | static int cur_height = 0; |
| 3095 | |
| 3096 | g_return_val_if_fail(event |
| 3097 | && event->width >= 1 && event->height >= 1, TRUE); |
| 3098 | |
| 3099 | if (event->width == cur_width && event->height == cur_height) |
| 3100 | return TRUE; |
| 3101 | |
| 3102 | cur_width = event->width; |
| 3103 | cur_height = event->height; |
| 3104 | |
| 3105 | if (gui.surface != NULL) |
| 3106 | cairo_surface_destroy(gui.surface); |
| 3107 | |
| 3108 | gui.surface = gdk_window_create_similar_surface( |
| 3109 | gtk_widget_get_window(widget), |
| 3110 | CAIRO_CONTENT_COLOR_ALPHA, |
| 3111 | event->width, event->height); |
| 3112 | |
| 3113 | gtk_widget_queue_draw(widget); |
| 3114 | |
| 3115 | return TRUE; |
| 3116 | } |
| 3117 | #endif |
| 3118 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3119 | /* |
| 3120 | * Callback routine for the "delete_event" signal on the toplevel window. |
| 3121 | * Tries to vim gracefully, or refuses to exit with changed buffers. |
| 3122 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3123 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3124 | delete_event_cb(GtkWidget *widget UNUSED, |
| 3125 | GdkEventAny *event UNUSED, |
| 3126 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3127 | { |
| 3128 | gui_shell_closed(); |
| 3129 | return TRUE; |
| 3130 | } |
| 3131 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3132 | #if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE) |
| 3133 | static int |
| 3134 | get_item_dimensions(GtkWidget *widget, GtkOrientation orientation) |
| 3135 | { |
| 3136 | GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL; |
| 3137 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3138 | # ifdef FEAT_GUI_GNOME |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3139 | if (using_gnome && widget != NULL) |
| 3140 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3141 | GtkWidget *parent; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3142 | BonoboDockItem *dockitem; |
| 3143 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3144 | parent = gtk_widget_get_parent(widget); |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3145 | if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM) |
| 3146 | { |
| 3147 | /* Only menu & toolbar are dock items. Could tabline be? |
| 3148 | * Seem to be only the 2 defined in GNOME */ |
| 3149 | widget = parent; |
| 3150 | dockitem = BONOBO_DOCK_ITEM(widget); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3151 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3152 | if (dockitem == NULL || dockitem->is_floating) |
| 3153 | return 0; |
| 3154 | item_orientation = bonobo_dock_item_get_orientation(dockitem); |
| 3155 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3156 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3157 | # endif |
| 3158 | # if GTK_CHECK_VERSION(3,0,0) |
| 3159 | if (widget != NULL |
| 3160 | && item_orientation == orientation |
| 3161 | && gtk_widget_get_realized(widget) |
| 3162 | && gtk_widget_get_visible(widget)) |
| 3163 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3164 | if (widget != NULL |
| 3165 | && item_orientation == orientation |
| 3166 | && GTK_WIDGET_REALIZED(widget) |
| 3167 | && GTK_WIDGET_VISIBLE(widget)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3168 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3169 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3170 | # if GTK_CHECK_VERSION(3,0,0) |
| 3171 | GtkAllocation allocation; |
| 3172 | |
| 3173 | gtk_widget_get_allocation(widget, &allocation); |
| 3174 | |
| 3175 | if (orientation == GTK_ORIENTATION_HORIZONTAL) |
| 3176 | return allocation.height; |
| 3177 | else |
| 3178 | return allocation.width; |
| 3179 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3180 | if (orientation == GTK_ORIENTATION_HORIZONTAL) |
| 3181 | return widget->allocation.height; |
| 3182 | else |
| 3183 | return widget->allocation.width; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3184 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3185 | } |
| 3186 | return 0; |
| 3187 | } |
| 3188 | #endif |
| 3189 | |
| 3190 | static int |
| 3191 | get_menu_tool_width(void) |
| 3192 | { |
| 3193 | int width = 0; |
| 3194 | |
| 3195 | #ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */ |
| 3196 | # ifdef FEAT_MENU |
| 3197 | width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL); |
| 3198 | # endif |
| 3199 | # ifdef FEAT_TOOLBAR |
| 3200 | width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL); |
| 3201 | # endif |
| 3202 | # ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3203 | if (gui.tabline != NULL) |
| 3204 | width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3205 | # endif |
| 3206 | #endif |
| 3207 | |
| 3208 | return width; |
| 3209 | } |
| 3210 | |
| 3211 | static int |
| 3212 | get_menu_tool_height(void) |
| 3213 | { |
| 3214 | int height = 0; |
| 3215 | |
| 3216 | #ifdef FEAT_MENU |
| 3217 | height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL); |
| 3218 | #endif |
| 3219 | #ifdef FEAT_TOOLBAR |
| 3220 | height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL); |
| 3221 | #endif |
| 3222 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3223 | if (gui.tabline != NULL) |
| 3224 | height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3225 | #endif |
| 3226 | |
| 3227 | return height; |
| 3228 | } |
| 3229 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3230 | /* This controls whether we can set the real window hints at |
| 3231 | * start-up when in a GtkPlug. |
| 3232 | * 0 = normal processing (default) |
| 3233 | * 1 = init. hints set, no-one's tried to reset since last check |
| 3234 | * 2 = init. hints set, attempt made to change hints |
| 3235 | */ |
| 3236 | static int init_window_hints_state = 0; |
| 3237 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3238 | static void |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3239 | update_window_manager_hints(int force_width, int force_height) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3240 | { |
| 3241 | static int old_width = 0; |
| 3242 | static int old_height = 0; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3243 | static int old_min_width = 0; |
| 3244 | static int old_min_height = 0; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3245 | static int old_char_width = 0; |
| 3246 | static int old_char_height = 0; |
| 3247 | |
| 3248 | int width; |
| 3249 | int height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3250 | int min_width; |
| 3251 | int min_height; |
| 3252 | |
| 3253 | /* At start-up, don't try to set the hints until the initial |
| 3254 | * values have been used (those that dictate our initial size) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3255 | * Let forced (i.e., correct) values through always. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3256 | */ |
| 3257 | if (!(force_width && force_height) && init_window_hints_state > 0) |
| 3258 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3259 | /* Don't do it! */ |
| 3260 | init_window_hints_state = 2; |
| 3261 | return; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3262 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3263 | |
| 3264 | /* This also needs to be done when the main window isn't there yet, |
| 3265 | * otherwise the hints don't work. */ |
| 3266 | width = gui_get_base_width(); |
| 3267 | height = gui_get_base_height(); |
| 3268 | # ifdef FEAT_MENU |
| 3269 | height += tabline_height() * gui.char_height; |
| 3270 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3271 | width += get_menu_tool_width(); |
| 3272 | height += get_menu_tool_height(); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3273 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3274 | /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 3275 | * their actual widget size. When we set our size ourselves (e.g., |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3276 | * 'set columns=' or init. -geom) we briefly set the min. to the size |
| 3277 | * we wish to be instead of the legitimate minimum so that we actually |
| 3278 | * resize correctly. |
| 3279 | */ |
| 3280 | if (force_width && force_height) |
| 3281 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3282 | min_width = force_width; |
| 3283 | min_height = force_height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3284 | } |
| 3285 | else |
| 3286 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3287 | min_width = width + MIN_COLUMNS * gui.char_width; |
| 3288 | min_height = height + MIN_LINES * gui.char_height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3289 | } |
| 3290 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3291 | /* Avoid an expose event when the size didn't change. */ |
| 3292 | if (width != old_width |
| 3293 | || height != old_height |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3294 | || min_width != old_min_width |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3295 | || min_height != old_min_height |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3296 | || gui.char_width != old_char_width |
| 3297 | || gui.char_height != old_char_height) |
| 3298 | { |
| 3299 | GdkGeometry geometry; |
| 3300 | GdkWindowHints geometry_mask; |
| 3301 | |
| 3302 | geometry.width_inc = gui.char_width; |
| 3303 | geometry.height_inc = gui.char_height; |
| 3304 | geometry.base_width = width; |
| 3305 | geometry.base_height = height; |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3306 | geometry.min_width = min_width; |
| 3307 | geometry.min_height = min_height; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3308 | geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC |
| 3309 | |GDK_HINT_MIN_SIZE; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3310 | /* Using gui.formwin as geometry widget doesn't work as expected |
| 3311 | * with GTK+ 2 -- dunno why. Presumably all the resizing hacks |
| 3312 | * in Vim confuse GTK+. */ |
| 3313 | gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin, |
| 3314 | &geometry, geometry_mask); |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3315 | old_width = width; |
| 3316 | old_height = height; |
| 3317 | old_min_width = min_width; |
| 3318 | old_min_height = min_height; |
| 3319 | old_char_width = gui.char_width; |
| 3320 | old_char_height = gui.char_height; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3321 | } |
| 3322 | } |
| 3323 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3324 | #ifdef FEAT_TOOLBAR |
| 3325 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3326 | /* |
| 3327 | * This extra effort wouldn't be necessary if we only used stock icons in the |
| 3328 | * toolbar, as we do for all builtin icons. But user-defined toolbar icons |
| 3329 | * shouldn't be treated differently, thus we do need this. |
| 3330 | */ |
| 3331 | static void |
| 3332 | icon_size_changed_foreach(GtkWidget *widget, gpointer user_data) |
| 3333 | { |
| 3334 | if (GTK_IS_IMAGE(widget)) |
| 3335 | { |
| 3336 | GtkImage *image = (GtkImage *)widget; |
| 3337 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3338 | # if GTK_CHECK_VERSION(3,10,0) |
| 3339 | if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME) |
| 3340 | { |
| 3341 | const GtkIconSize icon_size = GPOINTER_TO_INT(user_data); |
| 3342 | const gchar *icon_name; |
| 3343 | |
| 3344 | gtk_image_get_icon_name(image, &icon_name, NULL); |
| 3345 | |
| 3346 | gtk_image_set_from_icon_name(image, icon_name, icon_size); |
| 3347 | } |
| 3348 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3349 | /* User-defined icons are stored in a GtkIconSet */ |
| 3350 | if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET) |
| 3351 | { |
| 3352 | GtkIconSet *icon_set; |
| 3353 | GtkIconSize icon_size; |
| 3354 | |
| 3355 | gtk_image_get_icon_set(image, &icon_set, &icon_size); |
| 3356 | icon_size = (GtkIconSize)(long)user_data; |
| 3357 | |
| 3358 | gtk_icon_set_ref(icon_set); |
| 3359 | gtk_image_set_from_icon_set(image, icon_set, icon_size); |
| 3360 | gtk_icon_set_unref(icon_set); |
| 3361 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3362 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3363 | } |
| 3364 | else if (GTK_IS_CONTAINER(widget)) |
| 3365 | { |
| 3366 | gtk_container_foreach((GtkContainer *)widget, |
| 3367 | &icon_size_changed_foreach, |
| 3368 | user_data); |
| 3369 | } |
| 3370 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3371 | |
| 3372 | static void |
| 3373 | set_toolbar_style(GtkToolbar *toolbar) |
| 3374 | { |
| 3375 | GtkToolbarStyle style; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3376 | GtkIconSize size; |
| 3377 | GtkIconSize oldsize; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3378 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3379 | if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
| 3380 | == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
| 3381 | style = GTK_TOOLBAR_BOTH_HORIZ; |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3382 | else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3383 | == (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
| 3384 | style = GTK_TOOLBAR_BOTH; |
| 3385 | else if (toolbar_flags & TOOLBAR_TEXT) |
| 3386 | style = GTK_TOOLBAR_TEXT; |
| 3387 | else |
| 3388 | style = GTK_TOOLBAR_ICONS; |
| 3389 | |
| 3390 | gtk_toolbar_set_style(toolbar, style); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3391 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3392 | gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3393 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3394 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3395 | switch (tbis_flags) |
| 3396 | { |
| 3397 | case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break; |
| 3398 | case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break; |
| 3399 | case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break; |
| 3400 | case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break; |
Bram Moolenaar | beb003b | 2016-03-08 22:47:17 +0100 | [diff] [blame] | 3401 | case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break; |
| 3402 | case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3403 | default: size = GTK_ICON_SIZE_INVALID; break; |
| 3404 | } |
| 3405 | oldsize = gtk_toolbar_get_icon_size(toolbar); |
| 3406 | |
| 3407 | if (size == GTK_ICON_SIZE_INVALID) |
| 3408 | { |
| 3409 | /* Let global user preferences decide the icon size. */ |
| 3410 | gtk_toolbar_unset_icon_size(toolbar); |
| 3411 | size = gtk_toolbar_get_icon_size(toolbar); |
| 3412 | } |
| 3413 | if (size != oldsize) |
| 3414 | { |
| 3415 | gtk_container_foreach(GTK_CONTAINER(toolbar), |
| 3416 | &icon_size_changed_foreach, |
| 3417 | GINT_TO_POINTER((int)size)); |
| 3418 | } |
| 3419 | gtk_toolbar_set_icon_size(toolbar, size); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3420 | } |
| 3421 | |
| 3422 | #endif /* FEAT_TOOLBAR */ |
| 3423 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3424 | #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
| 3425 | static int ignore_tabline_evt = FALSE; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3426 | static GtkWidget *tabline_menu; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3427 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3428 | static GtkTooltips *tabline_tooltip; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3429 | # endif |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3430 | static int clicked_page; /* page clicked in tab line */ |
| 3431 | |
| 3432 | /* |
| 3433 | * Handle selecting an item in the tab line popup menu. |
| 3434 | */ |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3435 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3436 | tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data) |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3437 | { |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3438 | /* Add the string cmd into input buffer */ |
Bram Moolenaar | c6fe919 | 2006-04-09 21:54:49 +0000 | [diff] [blame] | 3439 | send_tabline_menu_event(clicked_page, (int)(long)user_data); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3440 | } |
| 3441 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3442 | static void |
| 3443 | add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp) |
| 3444 | { |
| 3445 | GtkWidget *item; |
| 3446 | char_u *utf_text; |
| 3447 | |
| 3448 | utf_text = CONVERT_TO_UTF8(text); |
| 3449 | item = gtk_menu_item_new_with_label((const char *)utf_text); |
| 3450 | gtk_widget_show(item); |
| 3451 | CONVERT_TO_UTF8_FREE(utf_text); |
| 3452 | |
| 3453 | gtk_container_add(GTK_CONTAINER(menu), item); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3454 | # if GTK_CHECK_VERSION(3,0,0) |
| 3455 | g_signal_connect(G_OBJECT(item), "activate", |
| 3456 | G_CALLBACK(tabline_menu_handler), |
| 3457 | GINT_TO_POINTER(resp)); |
| 3458 | # else |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3459 | gtk_signal_connect(GTK_OBJECT(item), "activate", |
| 3460 | GTK_SIGNAL_FUNC(tabline_menu_handler), |
Bram Moolenaar | 47b46d7 | 2008-07-02 19:05:48 +0000 | [diff] [blame] | 3461 | (gpointer)(long)resp); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3462 | # endif |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3463 | } |
| 3464 | |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3465 | /* |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3466 | * Create a menu for the tab line. |
| 3467 | */ |
| 3468 | static GtkWidget * |
| 3469 | create_tabline_menu(void) |
| 3470 | { |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3471 | GtkWidget *menu; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3472 | |
| 3473 | menu = gtk_menu_new(); |
Bram Moolenaar | 7098ee5 | 2015-06-09 19:14:24 +0200 | [diff] [blame] | 3474 | if (first_tabpage->tp_next != NULL) |
| 3475 | add_tabline_menu_item(menu, (char_u *)_("Close tab"), |
| 3476 | TABLINE_MENU_CLOSE); |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3477 | add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW); |
| 3478 | add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3479 | |
| 3480 | return menu; |
| 3481 | } |
| 3482 | |
| 3483 | static gboolean |
| 3484 | on_tabline_menu(GtkWidget *widget, GdkEvent *event) |
| 3485 | { |
| 3486 | /* Was this button press event ? */ |
| 3487 | if (event->type == GDK_BUTTON_PRESS) |
| 3488 | { |
| 3489 | GdkEventButton *bevent = (GdkEventButton *)event; |
| 3490 | int x = bevent->x; |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3491 | int y = bevent->y; |
| 3492 | GtkWidget *tabwidget; |
| 3493 | GdkWindow *tabwin; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3494 | |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 3495 | /* When ignoring events return TRUE so that the selected page doesn't |
| 3496 | * change. */ |
| 3497 | if (hold_gui_events |
| 3498 | # ifdef FEAT_CMDWIN |
| 3499 | || cmdwin_type != 0 |
| 3500 | # endif |
| 3501 | ) |
| 3502 | return TRUE; |
| 3503 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3504 | # if GTK_CHECK_VERSION(3,0,0) |
| 3505 | tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y); |
| 3506 | # else |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3507 | tabwin = gdk_window_at_pointer(&x, &y); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3508 | # endif |
| 3509 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3510 | gdk_window_get_user_data(tabwin, (gpointer)&tabwidget); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3511 | # if GTK_CHECK_VERSION(3,0,0) |
| 3512 | clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget), |
| 3513 | "tab_num")); |
| 3514 | # else |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3515 | clicked_page = (int)(long)gtk_object_get_user_data( |
| 3516 | GTK_OBJECT(tabwidget)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3517 | # endif |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3518 | |
| 3519 | /* If the event was generated for 3rd button popup the menu. */ |
| 3520 | if (bevent->button == 3) |
| 3521 | { |
| 3522 | gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL, |
| 3523 | bevent->button, bevent->time); |
| 3524 | /* We handled the event. */ |
| 3525 | return TRUE; |
| 3526 | } |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3527 | else if (bevent->button == 1) |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3528 | { |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3529 | if (clicked_page == 0) |
| 3530 | { |
Bram Moolenaar | 0735454 | 2007-09-15 12:07:46 +0000 | [diff] [blame] | 3531 | /* Click after all tabs moves to next tab page. When "x" is |
| 3532 | * small guess it's the left button. */ |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 3533 | send_tabline_event(x < 50 ? -1 : 0); |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3534 | } |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3535 | } |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3536 | } |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 3537 | |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3538 | /* We didn't handle the event. */ |
| 3539 | return FALSE; |
| 3540 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3541 | |
| 3542 | /* |
| 3543 | * Handle selecting one of the tabs. |
| 3544 | */ |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3545 | static void |
| 3546 | on_select_tab( |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3547 | GtkNotebook *notebook UNUSED, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3548 | # if GTK_CHECK_VERSION(3,0,0) |
| 3549 | gpointer *page UNUSED, |
| 3550 | # else |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3551 | GtkNotebookPage *page UNUSED, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3552 | # endif |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 3553 | gint idx, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3554 | gpointer data UNUSED) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3555 | { |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3556 | if (!ignore_tabline_evt) |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3557 | { |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 3558 | send_tabline_event(idx + 1); |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3559 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3560 | } |
| 3561 | |
| 3562 | /* |
| 3563 | * Show or hide the tabline. |
| 3564 | */ |
| 3565 | void |
| 3566 | gui_mch_show_tabline(int showit) |
| 3567 | { |
| 3568 | if (gui.tabline == NULL) |
| 3569 | return; |
| 3570 | |
| 3571 | if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline))) |
| 3572 | { |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 3573 | /* Note: this may cause a resize event */ |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3574 | gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3575 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3576 | if (showit) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3577 | # if GTK_CHECK_VERSION(3,0,0) |
| 3578 | gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE); |
| 3579 | # else |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3580 | GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3581 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3582 | } |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3583 | |
| 3584 | gui_mch_update(); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3585 | } |
| 3586 | |
| 3587 | /* |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 3588 | * Return TRUE when tabline is displayed. |
| 3589 | */ |
| 3590 | int |
| 3591 | gui_mch_showing_tabline(void) |
| 3592 | { |
| 3593 | return gui.tabline != NULL |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3594 | && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)); |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 3595 | } |
| 3596 | |
| 3597 | /* |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3598 | * Update the labels of the tabline. |
| 3599 | */ |
| 3600 | void |
| 3601 | gui_mch_update_tabline(void) |
| 3602 | { |
| 3603 | GtkWidget *page; |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3604 | GtkWidget *event_box; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3605 | GtkWidget *label; |
| 3606 | tabpage_T *tp; |
| 3607 | int nr = 0; |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3608 | int tab_num; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3609 | int curtabidx = 0; |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3610 | char_u *labeltext; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3611 | |
| 3612 | if (gui.tabline == NULL) |
| 3613 | return; |
| 3614 | |
| 3615 | ignore_tabline_evt = TRUE; |
| 3616 | |
| 3617 | /* Add a label for each tab page. They all contain the same text area. */ |
| 3618 | for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) |
| 3619 | { |
| 3620 | if (tp == curtab) |
| 3621 | curtabidx = nr; |
| 3622 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3623 | tab_num = nr + 1; |
| 3624 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3625 | page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr); |
| 3626 | if (page == NULL) |
| 3627 | { |
| 3628 | /* Add notebook page */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3629 | # if GTK_CHECK_VERSION(3,2,0) |
| 3630 | page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
| 3631 | gtk_box_set_homogeneous(GTK_BOX(page), FALSE); |
| 3632 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3633 | page = gtk_vbox_new(FALSE, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3634 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3635 | gtk_widget_show(page); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3636 | event_box = gtk_event_box_new(); |
| 3637 | gtk_widget_show(event_box); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3638 | label = gtk_label_new("-Empty-"); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3639 | # if !GTK_CHECK_VERSION(3,14,0) |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3640 | gtk_misc_set_padding(GTK_MISC(label), 2, 2); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3641 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3642 | gtk_container_add(GTK_CONTAINER(event_box), label); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3643 | gtk_widget_show(label); |
| 3644 | gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline), |
| 3645 | page, |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3646 | event_box, |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3647 | nr++); |
| 3648 | } |
| 3649 | |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3650 | event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3651 | # if GTK_CHECK_VERSION(3,0,0) |
| 3652 | g_object_set_data(G_OBJECT(event_box), "tab_num", |
| 3653 | GINT_TO_POINTER(tab_num)); |
| 3654 | # else |
Bram Moolenaar | 47b46d7 | 2008-07-02 19:05:48 +0000 | [diff] [blame] | 3655 | gtk_object_set_user_data(GTK_OBJECT(event_box), |
| 3656 | (gpointer)(long)tab_num); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3657 | # endif |
| 3658 | # if GTK_CHECK_VERSION(3,0,0) |
| 3659 | label = gtk_bin_get_child(GTK_BIN(event_box)); |
| 3660 | # else |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3661 | label = GTK_BIN(event_box)->child; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3662 | # endif |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 3663 | get_tabline_label(tp, FALSE); |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3664 | labeltext = CONVERT_TO_UTF8(NameBuff); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3665 | gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext); |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3666 | CONVERT_TO_UTF8_FREE(labeltext); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3667 | |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3668 | get_tabline_label(tp, TRUE); |
| 3669 | labeltext = CONVERT_TO_UTF8(NameBuff); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3670 | # if GTK_CHECK_VERSION(3,0,0) |
| 3671 | gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext); |
| 3672 | # else |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3673 | gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box, |
| 3674 | (const char *)labeltext, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3675 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3676 | CONVERT_TO_UTF8_FREE(labeltext); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3677 | } |
| 3678 | |
| 3679 | /* Remove any old labels. */ |
| 3680 | while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL) |
| 3681 | gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr); |
| 3682 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3683 | # if GTK_CHECK_VERSION(3,0,0) |
| 3684 | if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx) |
| 3685 | gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx); |
| 3686 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3687 | if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3688 | gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3689 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3690 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3691 | /* Make sure everything is in place before drawing text. */ |
| 3692 | gui_mch_update(); |
| 3693 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3694 | ignore_tabline_evt = FALSE; |
| 3695 | } |
| 3696 | |
| 3697 | /* |
| 3698 | * Set the current tab to "nr". First tab is 1. |
| 3699 | */ |
| 3700 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 3701 | gui_mch_set_curtab(int nr) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3702 | { |
| 3703 | if (gui.tabline == NULL) |
| 3704 | return; |
| 3705 | |
| 3706 | ignore_tabline_evt = TRUE; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3707 | # if GTK_CHECK_VERSION(3,0,0) |
| 3708 | if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1) |
| 3709 | gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1); |
| 3710 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3711 | if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3712 | gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3713 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3714 | ignore_tabline_evt = FALSE; |
| 3715 | } |
| 3716 | |
| 3717 | #endif /* FEAT_GUI_TABLINE */ |
| 3718 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3719 | /* |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3720 | * Add selection targets for PRIMARY and CLIPBOARD selections. |
| 3721 | */ |
| 3722 | void |
| 3723 | gui_gtk_set_selection_targets(void) |
| 3724 | { |
| 3725 | int i, j = 0; |
| 3726 | int n_targets = N_SELECTION_TARGETS; |
| 3727 | GtkTargetEntry targets[N_SELECTION_TARGETS]; |
| 3728 | |
| 3729 | for (i = 0; i < (int)N_SELECTION_TARGETS; ++i) |
| 3730 | { |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 3731 | /* OpenOffice tries to use TARGET_HTML and fails when we don't |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3732 | * return something, instead of trying another target. Therefore only |
| 3733 | * offer TARGET_HTML when it works. */ |
| 3734 | if (!clip_html && selection_targets[i].info == TARGET_HTML) |
| 3735 | n_targets--; |
| 3736 | else |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3737 | targets[j++] = selection_targets[i]; |
| 3738 | } |
| 3739 | |
| 3740 | gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY); |
| 3741 | gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom); |
| 3742 | gtk_selection_add_targets(gui.drawarea, |
| 3743 | (GdkAtom)GDK_SELECTION_PRIMARY, |
| 3744 | targets, n_targets); |
| 3745 | gtk_selection_add_targets(gui.drawarea, |
| 3746 | (GdkAtom)clip_plus.gtk_sel_atom, |
| 3747 | targets, n_targets); |
| 3748 | } |
| 3749 | |
| 3750 | /* |
| 3751 | * Set up for receiving DND items. |
| 3752 | */ |
| 3753 | void |
| 3754 | gui_gtk_set_dnd_targets(void) |
| 3755 | { |
| 3756 | int i, j = 0; |
| 3757 | int n_targets = N_DND_TARGETS; |
| 3758 | GtkTargetEntry targets[N_DND_TARGETS]; |
| 3759 | |
| 3760 | for (i = 0; i < (int)N_DND_TARGETS; ++i) |
| 3761 | { |
Bram Moolenaar | b931d74 | 2011-10-26 11:36:25 +0200 | [diff] [blame] | 3762 | if (!clip_html && dnd_targets[i].info == TARGET_HTML) |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3763 | n_targets--; |
| 3764 | else |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3765 | targets[j++] = dnd_targets[i]; |
| 3766 | } |
| 3767 | |
| 3768 | gtk_drag_dest_unset(gui.drawarea); |
| 3769 | gtk_drag_dest_set(gui.drawarea, |
| 3770 | GTK_DEST_DEFAULT_ALL, |
| 3771 | targets, n_targets, |
Bram Moolenaar | ba7cc9f | 2011-02-25 17:10:27 +0100 | [diff] [blame] | 3772 | GDK_ACTION_COPY | GDK_ACTION_MOVE); |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3773 | } |
| 3774 | |
| 3775 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3776 | * Initialize the GUI. Create all the windows, set up all the callbacks etc. |
| 3777 | * Returns OK for success, FAIL when the GUI can't be started. |
| 3778 | */ |
| 3779 | int |
| 3780 | gui_mch_init(void) |
| 3781 | { |
| 3782 | GtkWidget *vbox; |
| 3783 | |
| 3784 | #ifdef FEAT_GUI_GNOME |
| 3785 | /* Initialize the GNOME libraries. gnome_program_init()/gnome_init() |
| 3786 | * exits on failure, but that's a non-issue because we already called |
| 3787 | * gtk_init_check() in gui_mch_init_check(). */ |
| 3788 | if (using_gnome) |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3789 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3790 | gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT, |
| 3791 | LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL); |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3792 | # if defined(FEAT_FLOAT) && defined(LC_NUMERIC) |
Bram Moolenaar | 1ff32c5 | 2014-04-29 15:11:43 +0200 | [diff] [blame] | 3793 | { |
| 3794 | char *p = setlocale(LC_NUMERIC, NULL); |
| 3795 | |
| 3796 | /* Make sure strtod() uses a decimal point, not a comma. Gnome |
| 3797 | * init may change it. */ |
| 3798 | if (p == NULL || strcmp(p, "C") != 0) |
| 3799 | setlocale(LC_NUMERIC, "C"); |
| 3800 | } |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3801 | # endif |
| 3802 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3803 | #endif |
| 3804 | vim_free(gui_argv); |
| 3805 | gui_argv = NULL; |
| 3806 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3807 | #if GLIB_CHECK_VERSION(2,1,3) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3808 | /* Set the human-readable application name */ |
| 3809 | g_set_application_name("Vim"); |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3810 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3811 | /* |
| 3812 | * Force UTF-8 output no matter what the value of 'encoding' is. |
| 3813 | * did_set_string_option() in option.c prohibits changing 'termencoding' |
| 3814 | * to something else than UTF-8 if the GUI is in use. |
| 3815 | */ |
| 3816 | set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0); |
| 3817 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3818 | #ifdef FEAT_TOOLBAR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3819 | gui_gtk_register_stock_icons(); |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3820 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3821 | /* FIXME: Need to install the classic icons and a gtkrc.classic file. |
| 3822 | * The hard part is deciding install locations and the Makefile magic. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3823 | #if !GTK_CHECK_VERSION(3,0,0) |
| 3824 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3825 | gtk_rc_parse("gtkrc"); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3826 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3827 | #endif |
| 3828 | |
| 3829 | /* Initialize values */ |
| 3830 | gui.border_width = 2; |
| 3831 | gui.scrollbar_width = SB_DEFAULT_WIDTH; |
| 3832 | gui.scrollbar_height = SB_DEFAULT_WIDTH; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 3833 | #if GTK_CHECK_VERSION(3,0,0) |
| 3834 | gui.fgcolor = g_new(GdkRGBA, 1); |
| 3835 | gui.bgcolor = g_new(GdkRGBA, 1); |
| 3836 | gui.spcolor = g_new(GdkRGBA, 1); |
| 3837 | #else |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 3838 | /* LINTED: avoid warning: conversion to 'unsigned long' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3839 | gui.fgcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 3840 | /* LINTED: avoid warning: conversion to 'unsigned long' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3841 | gui.bgcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 3842 | /* LINTED: avoid warning: conversion to 'unsigned long' */ |
| 3843 | gui.spcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 3844 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3845 | |
| 3846 | /* Initialise atoms */ |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 3847 | html_atom = gdk_atom_intern("text/html", FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3848 | utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3849 | |
| 3850 | /* Set default foreground and background colors. */ |
| 3851 | gui.norm_pixel = gui.def_norm_pixel; |
| 3852 | gui.back_pixel = gui.def_back_pixel; |
| 3853 | |
| 3854 | if (gtk_socket_id != 0) |
| 3855 | { |
| 3856 | GtkWidget *plug; |
| 3857 | |
| 3858 | /* Use GtkSocket from another app. */ |
| 3859 | #ifdef HAVE_GTK_MULTIHEAD |
| 3860 | plug = gtk_plug_new_for_display(gdk_display_get_default(), |
| 3861 | gtk_socket_id); |
| 3862 | #else |
| 3863 | plug = gtk_plug_new(gtk_socket_id); |
| 3864 | #endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3865 | #if GTK_CHECK_VERSION(3,0,0) |
| 3866 | if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL) |
| 3867 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3868 | if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3869 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3870 | { |
| 3871 | gui.mainwin = plug; |
| 3872 | } |
| 3873 | else |
| 3874 | { |
| 3875 | g_warning("Connection to GTK+ socket (ID %u) failed", |
| 3876 | (unsigned int)gtk_socket_id); |
| 3877 | /* Pretend we never wanted it if it failed (get own window) */ |
| 3878 | gtk_socket_id = 0; |
| 3879 | } |
| 3880 | } |
| 3881 | |
| 3882 | if (gtk_socket_id == 0) |
| 3883 | { |
| 3884 | #ifdef FEAT_GUI_GNOME |
| 3885 | if (using_gnome) |
| 3886 | { |
| 3887 | gui.mainwin = gnome_app_new("Vim", NULL); |
| 3888 | # ifdef USE_XSMP |
| 3889 | /* Use the GNOME save-yourself functionality now. */ |
| 3890 | xsmp_close(); |
| 3891 | # endif |
| 3892 | } |
| 3893 | else |
| 3894 | #endif |
| 3895 | gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
| 3896 | } |
| 3897 | |
| 3898 | gtk_widget_set_name(gui.mainwin, "vim-main-window"); |
| 3899 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3900 | /* Create the PangoContext used for drawing all text. */ |
| 3901 | gui.text_context = gtk_widget_create_pango_context(gui.mainwin); |
| 3902 | pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3903 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3904 | #if GTK_CHECK_VERSION(3,0,0) |
| 3905 | gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0); |
| 3906 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3907 | gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3908 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3909 | gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK); |
| 3910 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3911 | #if GTK_CHECK_VERSION(3,0,0) |
| 3912 | g_signal_connect(G_OBJECT(gui.mainwin), "delete-event", |
| 3913 | G_CALLBACK(&delete_event_cb), NULL); |
| 3914 | |
| 3915 | g_signal_connect(G_OBJECT(gui.mainwin), "realize", |
| 3916 | G_CALLBACK(&mainwin_realize), NULL); |
| 3917 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3918 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event", |
| 3919 | GTK_SIGNAL_FUNC(&delete_event_cb), NULL); |
| 3920 | |
| 3921 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize", |
| 3922 | GTK_SIGNAL_FUNC(&mainwin_realize), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3923 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3924 | #ifdef HAVE_GTK_MULTIHEAD |
| 3925 | g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed", |
| 3926 | G_CALLBACK(&mainwin_screen_changed_cb), NULL); |
| 3927 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3928 | gui.accel_group = gtk_accel_group_new(); |
| 3929 | gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3930 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3931 | /* A vertical box holds the menubar, toolbar and main text window. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3932 | #if GTK_CHECK_VERSION(3,2,0) |
| 3933 | vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
| 3934 | gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE); |
| 3935 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3936 | vbox = gtk_vbox_new(FALSE, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3937 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3938 | |
| 3939 | #ifdef FEAT_GUI_GNOME |
| 3940 | if (using_gnome) |
| 3941 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3942 | # if defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3943 | /* automagically restore menubar/toolbar placement */ |
| 3944 | gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE); |
| 3945 | # endif |
| 3946 | gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox); |
| 3947 | } |
| 3948 | else |
| 3949 | #endif |
| 3950 | { |
| 3951 | gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox); |
| 3952 | gtk_widget_show(vbox); |
| 3953 | } |
| 3954 | |
| 3955 | #ifdef FEAT_MENU |
| 3956 | /* |
| 3957 | * Create the menubar and handle |
| 3958 | */ |
| 3959 | gui.menubar = gtk_menu_bar_new(); |
| 3960 | gtk_widget_set_name(gui.menubar, "vim-menubar"); |
| 3961 | |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3962 | /* Avoid that GTK takes <F10> away from us. */ |
| 3963 | { |
| 3964 | GtkSettings *gtk_settings; |
| 3965 | |
| 3966 | gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default()); |
| 3967 | g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL); |
| 3968 | } |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3969 | |
| 3970 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3971 | # ifdef FEAT_GUI_GNOME |
| 3972 | if (using_gnome) |
| 3973 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3974 | BonoboDockItem *dockitem; |
| 3975 | |
| 3976 | gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar)); |
| 3977 | dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), |
| 3978 | GNOME_APP_MENUBAR_NAME); |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 3979 | /* We don't want the menu to float. */ |
| 3980 | bonobo_dock_item_set_behavior(dockitem, |
| 3981 | bonobo_dock_item_get_behavior(dockitem) |
| 3982 | | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3983 | gui.menubar_h = GTK_WIDGET(dockitem); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3984 | } |
| 3985 | else |
| 3986 | # endif /* FEAT_GUI_GNOME */ |
| 3987 | { |
Bram Moolenaar | 18144c8 | 2006-04-12 21:52:12 +0000 | [diff] [blame] | 3988 | /* Always show the menubar, otherwise <F10> doesn't work. It may be |
| 3989 | * disabled in gui_init() later. */ |
| 3990 | gtk_widget_show(gui.menubar); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3991 | gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0); |
| 3992 | } |
| 3993 | #endif /* FEAT_MENU */ |
| 3994 | |
| 3995 | #ifdef FEAT_TOOLBAR |
| 3996 | /* |
| 3997 | * Create the toolbar and handle |
| 3998 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3999 | /* some aesthetics on the toolbar */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4000 | # ifdef USE_GTK3 |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 4001 | /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4002 | /* N.B. Since the default value of GtkToolbar::button-relief is |
| 4003 | * GTK_RELIEF_NONE, there's no need to specify that, probably. */ |
| 4004 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4005 | gtk_rc_parse_string( |
| 4006 | "style \"vim-toolbar-style\" {\n" |
| 4007 | " GtkToolbar::button_relief = GTK_RELIEF_NONE\n" |
| 4008 | "}\n" |
| 4009 | "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n"); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4010 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4011 | gui.toolbar = gtk_toolbar_new(); |
| 4012 | gtk_widget_set_name(gui.toolbar, "vim-toolbar"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4013 | set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); |
| 4014 | |
| 4015 | # ifdef FEAT_GUI_GNOME |
| 4016 | if (using_gnome) |
| 4017 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4018 | BonoboDockItem *dockitem; |
| 4019 | |
| 4020 | gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar)); |
| 4021 | dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), |
| 4022 | GNOME_APP_TOOLBAR_NAME); |
| 4023 | gui.toolbar_h = GTK_WIDGET(dockitem); |
Bram Moolenaar | e580b0c | 2006-03-21 21:33:03 +0000 | [diff] [blame] | 4024 | /* 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] | 4025 | * fixed let's disallow floating. */ |
Bram Moolenaar | e580b0c | 2006-03-21 21:33:03 +0000 | [diff] [blame] | 4026 | bonobo_dock_item_set_behavior(dockitem, |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 4027 | bonobo_dock_item_get_behavior(dockitem) |
| 4028 | | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4029 | gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4030 | } |
| 4031 | else |
| 4032 | # endif /* FEAT_GUI_GNOME */ |
| 4033 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4034 | if (vim_strchr(p_go, GO_TOOLBAR) != NULL |
| 4035 | && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) |
| 4036 | gtk_widget_show(gui.toolbar); |
| 4037 | gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0); |
| 4038 | } |
| 4039 | #endif /* FEAT_TOOLBAR */ |
| 4040 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 4041 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 4042 | /* |
| 4043 | * Use a Notebook for the tab pages labels. The labels are hidden by |
| 4044 | * default. |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 4045 | */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4046 | gui.tabline = gtk_notebook_new(); |
| 4047 | gtk_widget_show(gui.tabline); |
| 4048 | gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0); |
| 4049 | gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE); |
| 4050 | gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE); |
Bram Moolenaar | 4a85b41 | 2006-04-23 22:40:29 +0000 | [diff] [blame] | 4051 | gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4052 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 4053 | gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4054 | # endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4055 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4056 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4057 | tabline_tooltip = gtk_tooltips_new(); |
| 4058 | gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4059 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4060 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 4061 | { |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4062 | GtkWidget *page, *label, *event_box; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 4063 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4064 | /* Add the first tab. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4065 | # if GTK_CHECK_VERSION(3,2,0) |
| 4066 | page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
| 4067 | gtk_box_set_homogeneous(GTK_BOX(page), FALSE); |
| 4068 | # else |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4069 | page = gtk_vbox_new(FALSE, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4070 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4071 | gtk_widget_show(page); |
| 4072 | gtk_container_add(GTK_CONTAINER(gui.tabline), page); |
| 4073 | label = gtk_label_new("-Empty-"); |
| 4074 | gtk_widget_show(label); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4075 | event_box = gtk_event_box_new(); |
| 4076 | gtk_widget_show(event_box); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4077 | # if GTK_CHECK_VERSION(3,0,0) |
| 4078 | g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L)); |
| 4079 | # else |
Bram Moolenaar | 47b46d7 | 2008-07-02 19:05:48 +0000 | [diff] [blame] | 4080 | gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4081 | # endif |
| 4082 | # if !GTK_CHECK_VERSION(3,14,0) |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 4083 | gtk_misc_set_padding(GTK_MISC(label), 2, 2); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4084 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4085 | gtk_container_add(GTK_CONTAINER(event_box), label); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4086 | gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box); |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 4087 | } |
Bram Moolenaar | 54a709e | 2006-05-04 21:57:11 +0000 | [diff] [blame] | 4088 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4089 | # if GTK_CHECK_VERSION(3,0,0) |
| 4090 | g_signal_connect(G_OBJECT(gui.tabline), "switch-page", |
| 4091 | G_CALLBACK(on_select_tab), NULL); |
| 4092 | # else |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4093 | gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page", |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4094 | GTK_SIGNAL_FUNC(on_select_tab), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4095 | # endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4096 | |
| 4097 | /* Create a popup menu for the tab line and connect it. */ |
| 4098 | tabline_menu = create_tabline_menu(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4099 | # if GTK_CHECK_VERSION(3,0,0) |
| 4100 | g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event", |
| 4101 | G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu)); |
| 4102 | # else |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4103 | gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event", |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4104 | GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4105 | # endif |
| 4106 | #endif /* FEAT_GUI_TABLINE */ |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 4107 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4108 | gui.formwin = gtk_form_new(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4109 | #if GTK_CHECK_VERSION(3,0,0) |
| 4110 | gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0); |
| 4111 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4112 | gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4113 | #endif |
| 4114 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4115 | gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4116 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4117 | |
| 4118 | gui.drawarea = gtk_drawing_area_new(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4119 | #if GTK_CHECK_VERSION(3,0,0) |
| 4120 | gui.surface = NULL; |
| 4121 | gui.by_signal = FALSE; |
| 4122 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4123 | |
| 4124 | /* Determine which events we will filter. */ |
| 4125 | gtk_widget_set_events(gui.drawarea, |
| 4126 | GDK_EXPOSURE_MASK | |
| 4127 | GDK_ENTER_NOTIFY_MASK | |
| 4128 | GDK_LEAVE_NOTIFY_MASK | |
| 4129 | GDK_BUTTON_PRESS_MASK | |
| 4130 | GDK_BUTTON_RELEASE_MASK | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4131 | GDK_SCROLL_MASK | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4132 | GDK_KEY_PRESS_MASK | |
| 4133 | GDK_KEY_RELEASE_MASK | |
| 4134 | GDK_POINTER_MOTION_MASK | |
| 4135 | GDK_POINTER_MOTION_HINT_MASK); |
| 4136 | |
| 4137 | gtk_widget_show(gui.drawarea); |
| 4138 | gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0); |
| 4139 | gtk_widget_show(gui.formwin); |
| 4140 | gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0); |
| 4141 | |
| 4142 | /* For GtkSockets, key-presses must go to the focus widget (drawarea) |
| 4143 | * and not the window. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4144 | #if GTK_CHECK_VERSION(3,0,0) |
| 4145 | g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) |
| 4146 | : G_OBJECT(gui.drawarea), |
| 4147 | "key-press-event", |
| 4148 | G_CALLBACK(key_press_event), NULL); |
| 4149 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4150 | gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin) |
| 4151 | : GTK_OBJECT(gui.drawarea), |
| 4152 | "key_press_event", |
| 4153 | GTK_SIGNAL_FUNC(key_press_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4154 | #endif |
| 4155 | #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4156 | /* Also forward key release events for the benefit of GTK+ 2 input |
| 4157 | * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */ |
| 4158 | g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) |
| 4159 | : G_OBJECT(gui.drawarea), |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4160 | "key-release-event", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4161 | G_CALLBACK(&key_release_event), NULL); |
| 4162 | #endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4163 | #if GTK_CHECK_VERSION(3,0,0) |
| 4164 | g_signal_connect(G_OBJECT(gui.drawarea), "realize", |
| 4165 | G_CALLBACK(drawarea_realize_cb), NULL); |
| 4166 | g_signal_connect(G_OBJECT(gui.drawarea), "unrealize", |
| 4167 | G_CALLBACK(drawarea_unrealize_cb), NULL); |
| 4168 | g_signal_connect(G_OBJECT(gui.drawarea), "configure-event", |
| 4169 | G_CALLBACK(drawarea_configure_event_cb), NULL); |
| 4170 | g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set", |
| 4171 | G_CALLBACK(&drawarea_style_set_cb), NULL); |
| 4172 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4173 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize", |
| 4174 | GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL); |
| 4175 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize", |
| 4176 | GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL); |
| 4177 | |
| 4178 | gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set", |
| 4179 | GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4180 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4181 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4182 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4183 | gui.visibility = GDK_VISIBILITY_UNOBSCURED; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4184 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4185 | |
| 4186 | #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) |
| 4187 | wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE); |
| 4188 | save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE); |
| 4189 | #endif |
| 4190 | |
| 4191 | if (gtk_socket_id != 0) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4192 | /* make sure keyboard input can go to the drawarea */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4193 | #if GTK_CHECK_VERSION(3,0,0) |
| 4194 | gtk_widget_set_can_focus(gui.drawarea, TRUE); |
| 4195 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4196 | GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4197 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4198 | |
| 4199 | /* |
| 4200 | * Set clipboard specific atoms |
| 4201 | */ |
| 4202 | vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4203 | vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4204 | clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY; |
| 4205 | clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE); |
| 4206 | |
| 4207 | /* |
| 4208 | * Start out by adding the configured border width into the border offset. |
| 4209 | */ |
| 4210 | gui.border_offset = gui.border_width; |
| 4211 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4212 | #if GTK_CHECK_VERSION(3,0,0) |
| 4213 | g_signal_connect(G_OBJECT(gui.drawarea), "draw", |
| 4214 | G_CALLBACK(draw_event), NULL); |
| 4215 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4216 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event", |
| 4217 | GTK_SIGNAL_FUNC(visibility_event), NULL); |
| 4218 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event", |
| 4219 | GTK_SIGNAL_FUNC(expose_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4220 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4221 | |
| 4222 | /* |
| 4223 | * Only install these enter/leave callbacks when 'p' in 'guioptions'. |
| 4224 | * Only needed for some window managers. |
| 4225 | */ |
| 4226 | if (vim_strchr(p_go, GO_POINTER) != NULL) |
| 4227 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4228 | #if GTK_CHECK_VERSION(3,0,0) |
| 4229 | g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event", |
| 4230 | G_CALLBACK(leave_notify_event), NULL); |
| 4231 | g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event", |
| 4232 | G_CALLBACK(enter_notify_event), NULL); |
| 4233 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4234 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event", |
| 4235 | GTK_SIGNAL_FUNC(leave_notify_event), NULL); |
| 4236 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event", |
| 4237 | GTK_SIGNAL_FUNC(enter_notify_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4238 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4239 | } |
| 4240 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4241 | /* Real windows can get focus ... GtkPlug, being a mere container can't, |
| 4242 | * only its widgets. Arguably, this could be common code and we not use |
| 4243 | * the window focus at all, but let's be safe. |
| 4244 | */ |
| 4245 | if (gtk_socket_id == 0) |
| 4246 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4247 | #if GTK_CHECK_VERSION(3,0,0) |
| 4248 | g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event", |
| 4249 | G_CALLBACK(focus_out_event), NULL); |
| 4250 | g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event", |
| 4251 | G_CALLBACK(focus_in_event), NULL); |
| 4252 | #else |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4253 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event", |
| 4254 | GTK_SIGNAL_FUNC(focus_out_event), NULL); |
| 4255 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event", |
| 4256 | GTK_SIGNAL_FUNC(focus_in_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4257 | #endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4258 | } |
| 4259 | else |
| 4260 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4261 | #if GTK_CHECK_VERSION(3,0,0) |
| 4262 | g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event", |
| 4263 | G_CALLBACK(focus_out_event), NULL); |
| 4264 | g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event", |
| 4265 | G_CALLBACK(focus_in_event), NULL); |
| 4266 | #else |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4267 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event", |
| 4268 | GTK_SIGNAL_FUNC(focus_out_event), NULL); |
| 4269 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event", |
| 4270 | GTK_SIGNAL_FUNC(focus_in_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4271 | #endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4272 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4273 | # if GTK_CHECK_VERSION(3,0,0) |
| 4274 | g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event", |
| 4275 | G_CALLBACK(focus_out_event), NULL); |
| 4276 | g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event", |
| 4277 | G_CALLBACK(focus_in_event), NULL); |
| 4278 | # else |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4279 | gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event", |
| 4280 | GTK_SIGNAL_FUNC(focus_out_event), NULL); |
| 4281 | gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event", |
| 4282 | GTK_SIGNAL_FUNC(focus_in_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4283 | # endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4284 | #endif /* FEAT_GUI_TABLINE */ |
| 4285 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4286 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4287 | #if GTK_CHECK_VERSION(3,0,0) |
| 4288 | g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event", |
| 4289 | G_CALLBACK(motion_notify_event), NULL); |
| 4290 | g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event", |
| 4291 | G_CALLBACK(button_press_event), NULL); |
| 4292 | g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event", |
| 4293 | G_CALLBACK(button_release_event), NULL); |
| 4294 | g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event", |
| 4295 | G_CALLBACK(&scroll_event), NULL); |
| 4296 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4297 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event", |
| 4298 | GTK_SIGNAL_FUNC(motion_notify_event), NULL); |
| 4299 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event", |
| 4300 | GTK_SIGNAL_FUNC(button_press_event), NULL); |
| 4301 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event", |
| 4302 | GTK_SIGNAL_FUNC(button_release_event), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4303 | g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event", |
| 4304 | G_CALLBACK(&scroll_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4305 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4306 | |
| 4307 | /* |
| 4308 | * Add selection handler functions. |
| 4309 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4310 | #if GTK_CHECK_VERSION(3,0,0) |
| 4311 | g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event", |
| 4312 | G_CALLBACK(selection_clear_event), NULL); |
| 4313 | g_signal_connect(G_OBJECT(gui.drawarea), "selection-received", |
| 4314 | G_CALLBACK(selection_received_cb), NULL); |
| 4315 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4316 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event", |
| 4317 | GTK_SIGNAL_FUNC(selection_clear_event), NULL); |
| 4318 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received", |
| 4319 | GTK_SIGNAL_FUNC(selection_received_cb), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4320 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4321 | |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 4322 | gui_gtk_set_selection_targets(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4323 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4324 | #if GTK_CHECK_VERSION(3,0,0) |
| 4325 | g_signal_connect(G_OBJECT(gui.drawarea), "selection-get", |
| 4326 | G_CALLBACK(selection_get_cb), NULL); |
| 4327 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4328 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get", |
| 4329 | GTK_SIGNAL_FUNC(selection_get_cb), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4330 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4331 | |
| 4332 | /* Pretend we don't have input focus, we will get an event if we do. */ |
| 4333 | gui.in_focus = FALSE; |
| 4334 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4335 | return OK; |
| 4336 | } |
| 4337 | |
| 4338 | #if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO) |
| 4339 | /* |
| 4340 | * This is called from gui_start() after a fork() has been done. |
| 4341 | * We have to tell the session manager our new PID. |
| 4342 | */ |
| 4343 | void |
| 4344 | gui_mch_forked(void) |
| 4345 | { |
| 4346 | if (using_gnome) |
| 4347 | { |
| 4348 | GnomeClient *client; |
| 4349 | |
| 4350 | client = gnome_master_client(); |
| 4351 | |
| 4352 | if (client != NULL) |
| 4353 | gnome_client_set_process_id(client, getpid()); |
| 4354 | } |
| 4355 | } |
| 4356 | #endif /* FEAT_GUI_GNOME && FEAT_SESSION */ |
| 4357 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4358 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4359 | static GdkRGBA |
| 4360 | color_to_rgba(guicolor_T color) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4361 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4362 | GdkRGBA rgba; |
| 4363 | rgba.red = ((color & 0xff0000) >> 16) / 255.0; |
| 4364 | rgba.green = ((color & 0xff00) >> 8) / 255.0; |
| 4365 | rgba.blue = ((color & 0xff)) / 255.0; |
| 4366 | rgba.alpha = 1.0; |
| 4367 | return rgba; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4368 | } |
| 4369 | |
| 4370 | static void |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4371 | set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4372 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4373 | const GdkRGBA rgba = color_to_rgba(color); |
| 4374 | 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] | 4375 | } |
| 4376 | #endif /* GTK_CHECK_VERSION(3,0,0) */ |
| 4377 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4378 | /* |
| 4379 | * Called when the foreground or background color has been changed. |
| 4380 | * This used to change the graphics contexts directly but we are |
| 4381 | * currently manipulating them where desired. |
| 4382 | */ |
| 4383 | void |
| 4384 | gui_mch_new_colors(void) |
| 4385 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4386 | #if GTK_CHECK_VERSION(3,0,0) |
| 4387 | GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea); |
| 4388 | |
| 4389 | if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL) |
| 4390 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4391 | if (gui.drawarea != NULL && gui.drawarea->window != NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4392 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4393 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4394 | #if GTK_CHECK_VERSION(3,4,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4395 | GdkRGBA rgba; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4396 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4397 | rgba = color_to_rgba(gui.back_pixel); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4398 | { |
| 4399 | cairo_pattern_t * const pat = cairo_pattern_create_rgba( |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4400 | rgba.red, rgba.green, rgba.blue, rgba.alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4401 | if (pat != NULL) |
| 4402 | { |
| 4403 | gdk_window_set_background_pattern(da_win, pat); |
| 4404 | cairo_pattern_destroy(pat); |
| 4405 | } |
| 4406 | else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4407 | gdk_window_set_background_rgba(da_win, &rgba); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4408 | } |
| 4409 | #else /* !GTK_CHECK_VERSION(3,4,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4410 | GdkColor color = { 0, 0, 0, 0 }; |
| 4411 | |
| 4412 | color.pixel = gui.back_pixel; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4413 | # if GTK_CHECK_VERSION(3,0,0) |
| 4414 | gdk_window_set_background(da_win, &color); |
| 4415 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4416 | gdk_window_set_background(gui.drawarea->window, &color); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4417 | # endif |
| 4418 | #endif /* !GTK_CHECK_VERSION(3,4,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4419 | } |
| 4420 | } |
| 4421 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4422 | /* |
| 4423 | * This signal informs us about the need to rearrange our sub-widgets. |
| 4424 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4425 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4426 | form_configure_event(GtkWidget *widget UNUSED, |
| 4427 | GdkEventConfigure *event, |
| 4428 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4429 | { |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4430 | int usable_height = event->height; |
| 4431 | |
| 4432 | /* When in a GtkPlug, we can't guarantee valid heights (as a round |
| 4433 | * no. of char-heights), so we have to manually sanitise them. |
| 4434 | * Widths seem to sort themselves out, don't ask me why. |
| 4435 | */ |
| 4436 | if (gtk_socket_id != 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4437 | usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4438 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4439 | gtk_form_freeze(GTK_FORM(gui.formwin)); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4440 | gui_resize_shell(event->width, usable_height); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4441 | gtk_form_thaw(GTK_FORM(gui.formwin)); |
| 4442 | |
| 4443 | return TRUE; |
| 4444 | } |
| 4445 | |
| 4446 | /* |
| 4447 | * Function called when window already closed. |
| 4448 | * We can't do much more here than to trying to preserve what had been done, |
| 4449 | * since the window is already inevitably going away. |
| 4450 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4451 | #if GTK_CHECK_VERSION(3,0,0) |
| 4452 | static void |
| 4453 | mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED) |
| 4454 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4455 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4456 | mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4457 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4458 | { |
| 4459 | /* Don't write messages to the GUI anymore */ |
| 4460 | full_screen = FALSE; |
| 4461 | |
| 4462 | gui.mainwin = NULL; |
| 4463 | gui.drawarea = NULL; |
| 4464 | |
| 4465 | if (!exiting) /* only do anything if the destroy was unexpected */ |
| 4466 | { |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 4467 | vim_strncpy(IObuff, |
| 4468 | (char_u *)_("Vim: Main window unexpectedly destroyed\n"), |
| 4469 | IOSIZE - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4470 | preserve_exit(); |
| 4471 | } |
Bram Moolenaar | 36e294c | 2015-12-29 18:55:46 +0100 | [diff] [blame] | 4472 | #ifdef USE_GRESOURCE |
| 4473 | gui_gtk_unregister_resource(); |
| 4474 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4475 | } |
| 4476 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4477 | |
| 4478 | /* |
| 4479 | * Bit of a hack to ensure we start GtkPlug windows with the correct window |
| 4480 | * hints (and thus the required size from -geom), but that after that we |
| 4481 | * put the hints back to normal (the actual minimum size) so we may |
| 4482 | * subsequently be resized smaller. GtkSocket (the parent end) uses the |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 4483 | * plug's window 'min hints to set *it's* minimum size, but that's also the |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4484 | * only way we have of making ourselves bigger (by set lines/columns). |
| 4485 | * Thus set hints at start-up to ensure correct init. size, then a |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 4486 | * second after the final attempt to reset the real minimum hints (done by |
| 4487 | * scrollbar init.), actually do the standard hints and stop the timer. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4488 | * We'll not let the default hints be set while this timer's active. |
| 4489 | */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4490 | static gboolean |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4491 | check_startup_plug_hints(gpointer data UNUSED) |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4492 | { |
| 4493 | if (init_window_hints_state == 1) |
| 4494 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4495 | /* Safe to use normal hints now */ |
| 4496 | init_window_hints_state = 0; |
| 4497 | update_window_manager_hints(0, 0); |
| 4498 | return FALSE; /* stop timer */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4499 | } |
| 4500 | |
| 4501 | /* Keep on trying */ |
| 4502 | init_window_hints_state = 1; |
| 4503 | return TRUE; |
| 4504 | } |
| 4505 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4506 | /* |
| 4507 | * Open the GUI window which was created by a call to gui_mch_init(). |
| 4508 | */ |
| 4509 | int |
| 4510 | gui_mch_open(void) |
| 4511 | { |
| 4512 | guicolor_T fg_pixel = INVALCOLOR; |
| 4513 | guicolor_T bg_pixel = INVALCOLOR; |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4514 | guint pixel_width; |
| 4515 | guint pixel_height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4516 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4517 | /* |
| 4518 | * Allow setting a window role on the command line, or invent one |
| 4519 | * if none was specified. This is mainly useful for GNOME session |
| 4520 | * support; allowing the WM to restore window placement. |
| 4521 | */ |
| 4522 | if (role_argument != NULL) |
| 4523 | { |
| 4524 | gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument); |
| 4525 | } |
| 4526 | else |
| 4527 | { |
| 4528 | char *role; |
| 4529 | |
| 4530 | /* Invent a unique-enough ID string for the role */ |
| 4531 | role = g_strdup_printf("vim-%u-%u-%u", |
| 4532 | (unsigned)mch_get_pid(), |
| 4533 | (unsigned)g_random_int(), |
| 4534 | (unsigned)time(NULL)); |
| 4535 | |
| 4536 | gtk_window_set_role(GTK_WINDOW(gui.mainwin), role); |
| 4537 | g_free(role); |
| 4538 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4539 | |
| 4540 | if (gui_win_x != -1 && gui_win_y != -1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4541 | 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] | 4542 | |
| 4543 | /* Determine user specified geometry, if present. */ |
| 4544 | if (gui.geom != NULL) |
| 4545 | { |
| 4546 | int mask; |
| 4547 | unsigned int w, h; |
| 4548 | int x = 0; |
| 4549 | int y = 0; |
| 4550 | |
| 4551 | mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h); |
| 4552 | |
| 4553 | if (mask & WidthValue) |
| 4554 | Columns = w; |
| 4555 | if (mask & HeightValue) |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 4556 | { |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4557 | if (p_window > (long)h - 1 || !option_was_set((char_u *)"window")) |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 4558 | p_window = h - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4559 | Rows = h; |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 4560 | } |
Bram Moolenaar | e057d40 | 2013-06-30 17:51:51 +0200 | [diff] [blame] | 4561 | limit_screen_size(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4562 | |
| 4563 | pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
| 4564 | pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); |
| 4565 | |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4566 | pixel_width += get_menu_tool_width(); |
| 4567 | pixel_height += get_menu_tool_height(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4568 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4569 | if (mask & (XValue | YValue)) |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4570 | { |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4571 | int ww, hh; |
| 4572 | gui_mch_get_screen_dimensions(&ww, &hh); |
| 4573 | hh += p_ghr + get_menu_tool_height(); |
| 4574 | ww += get_menu_tool_width(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4575 | if (mask & XNegative) |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4576 | x += ww - pixel_width; |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4577 | if (mask & YNegative) |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4578 | y += hh - pixel_height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4579 | gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4580 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4581 | vim_free(gui.geom); |
| 4582 | gui.geom = NULL; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4583 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4584 | /* From now until everyone's stopped trying to set the window hints |
| 4585 | * to their correct minimum values, stop them being set as we need |
| 4586 | * them to remain at our required size for the parent GtkSocket to |
| 4587 | * give us the right initial size. |
| 4588 | */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4589 | if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue)) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4590 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4591 | update_window_manager_hints(pixel_width, pixel_height); |
| 4592 | init_window_hints_state = 1; |
| 4593 | g_timeout_add(1000, check_startup_plug_hints, NULL); |
| 4594 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4595 | } |
| 4596 | |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4597 | pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
| 4598 | pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4599 | /* For GTK2 changing the size of the form widget doesn't cause window |
| 4600 | * resizing. */ |
Bram Moolenaar | debe25a | 2010-06-06 17:41:24 +0200 | [diff] [blame] | 4601 | if (gtk_socket_id == 0) |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4602 | gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4603 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4604 | |
| 4605 | if (foreground_argument != NULL) |
| 4606 | fg_pixel = gui_get_color((char_u *)foreground_argument); |
| 4607 | if (fg_pixel == INVALCOLOR) |
| 4608 | fg_pixel = gui_get_color((char_u *)"Black"); |
| 4609 | |
| 4610 | if (background_argument != NULL) |
| 4611 | bg_pixel = gui_get_color((char_u *)background_argument); |
| 4612 | if (bg_pixel == INVALCOLOR) |
| 4613 | bg_pixel = gui_get_color((char_u *)"White"); |
| 4614 | |
| 4615 | if (found_reverse_arg) |
| 4616 | { |
| 4617 | gui.def_norm_pixel = bg_pixel; |
| 4618 | gui.def_back_pixel = fg_pixel; |
| 4619 | } |
| 4620 | else |
| 4621 | { |
| 4622 | gui.def_norm_pixel = fg_pixel; |
| 4623 | gui.def_back_pixel = bg_pixel; |
| 4624 | } |
| 4625 | |
| 4626 | /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or |
| 4627 | * in a vimrc file) */ |
| 4628 | set_normal_colors(); |
| 4629 | |
| 4630 | /* Check that none of the colors are the same as the background color */ |
| 4631 | gui_check_colors(); |
| 4632 | |
| 4633 | /* Get the colors for the highlight groups (gui_check_colors() might have |
| 4634 | * changed them). */ |
| 4635 | highlight_gui_started(); /* re-init colors and fonts */ |
| 4636 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4637 | #if GTK_CHECK_VERSION(3,0,0) |
| 4638 | g_signal_connect(G_OBJECT(gui.mainwin), "destroy", |
| 4639 | G_CALLBACK(mainwin_destroy_cb), NULL); |
| 4640 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4641 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy", |
| 4642 | GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4643 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4644 | |
| 4645 | #ifdef FEAT_HANGULIN |
| 4646 | hangul_keyboard_set(); |
| 4647 | #endif |
| 4648 | |
| 4649 | /* |
| 4650 | * Notify the fixed area about the need to resize the contents of the |
| 4651 | * gui.formwin, which we use for random positioning of the included |
| 4652 | * components. |
| 4653 | * |
| 4654 | * We connect this signal deferred finally after anything is in place, |
| 4655 | * since this is intended to handle resizements coming from the window |
| 4656 | * manager upon us and should not interfere with what VIM is requesting |
| 4657 | * upon startup. |
| 4658 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4659 | #if GTK_CHECK_VERSION(3,0,0) |
| 4660 | g_signal_connect(G_OBJECT(gui.formwin), "configure-event", |
| 4661 | G_CALLBACK(form_configure_event), NULL); |
| 4662 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4663 | gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event", |
| 4664 | GTK_SIGNAL_FUNC(form_configure_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4665 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4666 | |
| 4667 | #ifdef FEAT_DND |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 4668 | /* Set up for receiving DND items. */ |
| 4669 | gui_gtk_set_dnd_targets(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4670 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4671 | # if GTK_CHECK_VERSION(3,0,0) |
| 4672 | g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received", |
| 4673 | G_CALLBACK(drag_data_received_cb), NULL); |
| 4674 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4675 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received", |
| 4676 | GTK_SIGNAL_FUNC(drag_data_received_cb), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4677 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4678 | #endif |
| 4679 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4680 | /* With GTK+ 2, we need to iconify the window before calling show() |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 4681 | * to avoid mapping the window for a short time. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4682 | if (found_iconic_arg && gtk_socket_id == 0) |
| 4683 | gui_mch_iconify(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4684 | |
| 4685 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 4686 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4687 | unsigned long menu_handler = 0; |
| 4688 | # ifdef FEAT_TOOLBAR |
| 4689 | unsigned long tool_handler = 0; |
| 4690 | # endif |
| 4691 | /* |
| 4692 | * Urgh hackish :/ For some reason BonoboDockLayout always forces a |
| 4693 | * show when restoring the saved layout configuration. We can't just |
| 4694 | * hide the widgets again after gtk_widget_show(gui.mainwin) since it's |
| 4695 | * a toplevel window and thus will be realized immediately. Instead, |
| 4696 | * connect signal handlers to hide the widgets just after they've been |
| 4697 | * marked visible, but before the main window is realized. |
| 4698 | */ |
| 4699 | if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL) |
| 4700 | menu_handler = g_signal_connect_after(gui.menubar_h, "show", |
| 4701 | G_CALLBACK(>k_widget_hide), |
| 4702 | NULL); |
| 4703 | # ifdef FEAT_TOOLBAR |
| 4704 | if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL |
| 4705 | && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) |
| 4706 | tool_handler = g_signal_connect_after(gui.toolbar_h, "show", |
| 4707 | G_CALLBACK(>k_widget_hide), |
| 4708 | NULL); |
| 4709 | # endif |
| 4710 | #endif |
| 4711 | gtk_widget_show(gui.mainwin); |
| 4712 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 4713 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4714 | if (menu_handler != 0) |
| 4715 | g_signal_handler_disconnect(gui.menubar_h, menu_handler); |
| 4716 | # ifdef FEAT_TOOLBAR |
| 4717 | if (tool_handler != 0) |
| 4718 | g_signal_handler_disconnect(gui.toolbar_h, tool_handler); |
| 4719 | # endif |
| 4720 | #endif |
| 4721 | } |
| 4722 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4723 | return OK; |
| 4724 | } |
| 4725 | |
| 4726 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4727 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4728 | gui_mch_exit(int rc UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4729 | { |
| 4730 | if (gui.mainwin != NULL) |
| 4731 | gtk_widget_destroy(gui.mainwin); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4732 | } |
| 4733 | |
| 4734 | /* |
| 4735 | * Get the position of the top left corner of the window. |
| 4736 | */ |
| 4737 | int |
| 4738 | gui_mch_get_winpos(int *x, int *y) |
| 4739 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4740 | gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4741 | return OK; |
| 4742 | } |
| 4743 | |
| 4744 | /* |
| 4745 | * Set the position of the top left corner of the window to the given |
| 4746 | * coordinates. |
| 4747 | */ |
| 4748 | void |
| 4749 | gui_mch_set_winpos(int x, int y) |
| 4750 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4751 | gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4752 | } |
| 4753 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4754 | #if !GTK_CHECK_VERSION(3,0,0) |
| 4755 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4756 | static int resize_idle_installed = FALSE; |
| 4757 | /* |
| 4758 | * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure |
| 4759 | * the shell size doesn't exceed the window size, i.e. if the window manager |
| 4760 | * ignored our size request. Usually this happens if the window is maximized. |
| 4761 | * |
| 4762 | * FIXME: It'd be nice if we could find a little more orthodox solution. |
| 4763 | * See also the remark below in gui_mch_set_shellsize(). |
| 4764 | * |
| 4765 | * DISABLED: When doing ":set lines+=1" this function would first invoke |
| 4766 | * gui_resize_shell() with the old size, then the normal callback would |
| 4767 | * report the new size through form_configure_event(). That caused the window |
| 4768 | * layout to be messed up. |
| 4769 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4770 | static gboolean |
| 4771 | force_shell_resize_idle(gpointer data) |
| 4772 | { |
| 4773 | if (gui.mainwin != NULL |
| 4774 | && GTK_WIDGET_REALIZED(gui.mainwin) |
| 4775 | && GTK_WIDGET_VISIBLE(gui.mainwin)) |
| 4776 | { |
| 4777 | int width; |
| 4778 | int height; |
| 4779 | |
| 4780 | gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height); |
| 4781 | |
| 4782 | width -= get_menu_tool_width(); |
| 4783 | height -= get_menu_tool_height(); |
| 4784 | |
| 4785 | gui_resize_shell(width, height); |
| 4786 | } |
| 4787 | |
| 4788 | resize_idle_installed = FALSE; |
| 4789 | return FALSE; /* don't call me again */ |
| 4790 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4791 | # endif |
| 4792 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4793 | |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4794 | /* |
| 4795 | * Return TRUE if the main window is maximized. |
| 4796 | */ |
| 4797 | int |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 4798 | gui_mch_maximized(void) |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4799 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4800 | #if GTK_CHECK_VERSION(3,0,0) |
| 4801 | return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL |
| 4802 | && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin)) |
| 4803 | & GDK_WINDOW_STATE_MAXIMIZED)); |
| 4804 | #else |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4805 | return (gui.mainwin != NULL && gui.mainwin->window != NULL |
| 4806 | && (gdk_window_get_state(gui.mainwin->window) |
| 4807 | & GDK_WINDOW_STATE_MAXIMIZED)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4808 | #endif |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4809 | } |
| 4810 | |
| 4811 | /* |
| 4812 | * Unmaximize the main window |
| 4813 | */ |
| 4814 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 4815 | gui_mch_unmaximize(void) |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4816 | { |
| 4817 | if (gui.mainwin != NULL) |
| 4818 | gtk_window_unmaximize(GTK_WINDOW(gui.mainwin)); |
| 4819 | } |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4820 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4821 | /* |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 4822 | * Called when the font changed while the window is maximized. Compute the |
| 4823 | * new Rows and Columns. This is like resizing the window. |
| 4824 | */ |
| 4825 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 4826 | gui_mch_newfont(void) |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 4827 | { |
| 4828 | int w, h; |
| 4829 | |
| 4830 | gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h); |
| 4831 | w -= get_menu_tool_width(); |
| 4832 | h -= get_menu_tool_height(); |
| 4833 | gui_resize_shell(w, h); |
| 4834 | } |
| 4835 | |
| 4836 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4837 | * Set the windows size. |
| 4838 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4839 | void |
| 4840 | gui_mch_set_shellsize(int width, int height, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4841 | int min_width UNUSED, int min_height UNUSED, |
| 4842 | int base_width UNUSED, int base_height UNUSED, |
| 4843 | int direction UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4844 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4845 | /* give GTK+ a chance to put all widget's into place */ |
| 4846 | gui_mch_update(); |
| 4847 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4848 | /* this will cause the proper resizement to happen too */ |
| 4849 | if (gtk_socket_id == 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4850 | update_window_manager_hints(0, 0); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4851 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4852 | /* 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] | 4853 | * 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] | 4854 | * main window instead. */ |
| 4855 | width += get_menu_tool_width(); |
| 4856 | height += get_menu_tool_height(); |
| 4857 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4858 | if (gtk_socket_id == 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4859 | gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4860 | else |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4861 | update_window_manager_hints(width, height); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4862 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4863 | # if !GTK_CHECK_VERSION(3,0,0) |
| 4864 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4865 | if (!resize_idle_installed) |
| 4866 | { |
| 4867 | g_idle_add_full(GDK_PRIORITY_EVENTS + 10, |
| 4868 | &force_shell_resize_idle, NULL, NULL); |
| 4869 | resize_idle_installed = TRUE; |
| 4870 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4871 | # endif |
| 4872 | # endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4873 | /* |
| 4874 | * Wait until all events are processed to prevent a crash because the |
| 4875 | * real size of the drawing area doesn't reflect Vim's internal ideas. |
| 4876 | * |
| 4877 | * This is a bit of a hack, since Vim is a terminal application with a GUI |
| 4878 | * on top, while the GUI expects to be the boss. |
| 4879 | */ |
| 4880 | gui_mch_update(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4881 | } |
| 4882 | |
| 4883 | |
| 4884 | /* |
| 4885 | * The screen size is used to make sure the initial window doesn't get bigger |
| 4886 | * than the screen. This subtracts some room for menubar, toolbar and window |
| 4887 | * decorations. |
| 4888 | */ |
| 4889 | void |
| 4890 | gui_mch_get_screen_dimensions(int *screen_w, int *screen_h) |
| 4891 | { |
| 4892 | #ifdef HAVE_GTK_MULTIHEAD |
| 4893 | GdkScreen* screen; |
| 4894 | |
| 4895 | if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin)) |
| 4896 | screen = gtk_widget_get_screen(gui.mainwin); |
| 4897 | else |
| 4898 | screen = gdk_screen_get_default(); |
| 4899 | |
| 4900 | *screen_w = gdk_screen_get_width(screen); |
| 4901 | *screen_h = gdk_screen_get_height(screen) - p_ghr; |
| 4902 | #else |
| 4903 | *screen_w = gdk_screen_width(); |
| 4904 | /* Subtract 'guiheadroom' from the height to allow some room for the |
| 4905 | * window manager (task list and window title bar). */ |
| 4906 | *screen_h = gdk_screen_height() - p_ghr; |
| 4907 | #endif |
| 4908 | |
| 4909 | /* |
| 4910 | * FIXME: dirty trick: Because the gui_get_base_height() doesn't include |
| 4911 | * the toolbar and menubar for GTK, we subtract them from the screen |
Bram Moolenaar | 6440447 | 2010-06-26 06:24:45 +0200 | [diff] [blame] | 4912 | * 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] | 4913 | * This should be completely changed later. |
| 4914 | */ |
| 4915 | *screen_w -= get_menu_tool_width(); |
| 4916 | *screen_h -= get_menu_tool_height(); |
| 4917 | } |
| 4918 | |
| 4919 | #if defined(FEAT_TITLE) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4920 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4921 | gui_mch_settitle(char_u *title, char_u *icon UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4922 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4923 | if (title != NULL && output_conv.vc_type != CONV_NONE) |
| 4924 | title = string_convert(&output_conv, title, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4925 | |
| 4926 | gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title); |
| 4927 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4928 | if (output_conv.vc_type != CONV_NONE) |
| 4929 | vim_free(title); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4930 | } |
| 4931 | #endif /* FEAT_TITLE */ |
| 4932 | |
| 4933 | #if defined(FEAT_MENU) || defined(PROTO) |
| 4934 | void |
| 4935 | gui_mch_enable_menu(int showit) |
| 4936 | { |
| 4937 | GtkWidget *widget; |
| 4938 | |
| 4939 | # ifdef FEAT_GUI_GNOME |
| 4940 | if (using_gnome) |
| 4941 | widget = gui.menubar_h; |
| 4942 | else |
| 4943 | # endif |
| 4944 | widget = gui.menubar; |
| 4945 | |
Bram Moolenaar | 18144c8 | 2006-04-12 21:52:12 +0000 | [diff] [blame] | 4946 | /* 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] | 4947 | # if GTK_CHECK_VERSION(3,0,0) |
| 4948 | if (!showit != !gtk_widget_get_visible(widget) && !gui.starting) |
| 4949 | # else |
Bram Moolenaar | 18144c8 | 2006-04-12 21:52:12 +0000 | [diff] [blame] | 4950 | if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4951 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4952 | { |
| 4953 | if (showit) |
| 4954 | gtk_widget_show(widget); |
| 4955 | else |
| 4956 | gtk_widget_hide(widget); |
| 4957 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4958 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4959 | } |
| 4960 | } |
| 4961 | #endif /* FEAT_MENU */ |
| 4962 | |
| 4963 | #if defined(FEAT_TOOLBAR) || defined(PROTO) |
| 4964 | void |
| 4965 | gui_mch_show_toolbar(int showit) |
| 4966 | { |
| 4967 | GtkWidget *widget; |
| 4968 | |
| 4969 | if (gui.toolbar == NULL) |
| 4970 | return; |
| 4971 | |
| 4972 | # ifdef FEAT_GUI_GNOME |
| 4973 | if (using_gnome) |
| 4974 | widget = gui.toolbar_h; |
| 4975 | else |
| 4976 | # endif |
| 4977 | widget = gui.toolbar; |
| 4978 | |
| 4979 | if (showit) |
| 4980 | set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); |
| 4981 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4982 | # if GTK_CHECK_VERSION(3,0,0) |
| 4983 | if (!showit != !gtk_widget_get_visible(widget)) |
| 4984 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4985 | if (!showit != !GTK_WIDGET_VISIBLE(widget)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4986 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4987 | { |
| 4988 | if (showit) |
| 4989 | gtk_widget_show(widget); |
| 4990 | else |
| 4991 | gtk_widget_hide(widget); |
| 4992 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4993 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4994 | } |
| 4995 | } |
| 4996 | #endif /* FEAT_TOOLBAR */ |
| 4997 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4998 | /* |
| 4999 | * Check if a given font is a CJK font. This is done in a very crude manner. It |
| 5000 | * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given |
| 5001 | * font. Consequently, this function cannot be used as a general purpose check |
| 5002 | * for CJK-ness for which fontconfig APIs should be used. This is only used by |
| 5003 | * gui_mch_init_font() to deal with 'CJK fixed width fonts'. |
| 5004 | */ |
| 5005 | static int |
| 5006 | is_cjk_font(PangoFontDescription *font_desc) |
| 5007 | { |
| 5008 | static const char * const cjk_langs[] = |
| 5009 | {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"}; |
| 5010 | |
| 5011 | PangoFont *font; |
| 5012 | unsigned i; |
| 5013 | int is_cjk = FALSE; |
| 5014 | |
| 5015 | font = pango_context_load_font(gui.text_context, font_desc); |
| 5016 | |
| 5017 | if (font == NULL) |
| 5018 | return FALSE; |
| 5019 | |
| 5020 | for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i) |
| 5021 | { |
| 5022 | PangoCoverage *coverage; |
| 5023 | gunichar uc; |
| 5024 | |
| 5025 | coverage = pango_font_get_coverage( |
| 5026 | font, pango_language_from_string(cjk_langs[i])); |
| 5027 | |
| 5028 | if (coverage != NULL) |
| 5029 | { |
| 5030 | uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00; |
| 5031 | is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT); |
| 5032 | pango_coverage_unref(coverage); |
| 5033 | } |
| 5034 | } |
| 5035 | |
| 5036 | g_object_unref(font); |
| 5037 | |
| 5038 | return is_cjk; |
| 5039 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5040 | |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5041 | /* |
| 5042 | * Adjust gui.char_height (after 'linespace' was changed). |
| 5043 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5044 | int |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5045 | gui_mch_adjust_charheight(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5046 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5047 | PangoFontMetrics *metrics; |
| 5048 | int ascent; |
| 5049 | int descent; |
| 5050 | |
| 5051 | metrics = pango_context_get_metrics(gui.text_context, gui.norm_font, |
| 5052 | pango_context_get_language(gui.text_context)); |
| 5053 | ascent = pango_font_metrics_get_ascent(metrics); |
| 5054 | descent = pango_font_metrics_get_descent(metrics); |
| 5055 | |
| 5056 | pango_font_metrics_unref(metrics); |
| 5057 | |
| 5058 | gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5059 | + p_linespace; |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 5060 | /* LINTED: avoid warning: bitwise operation on signed value */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5061 | gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2); |
| 5062 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5063 | /* A not-positive value of char_height may crash Vim. Only happens |
| 5064 | * if 'linespace' is negative (which does make sense sometimes). */ |
| 5065 | gui.char_ascent = MAX(gui.char_ascent, 0); |
| 5066 | gui.char_height = MAX(gui.char_height, gui.char_ascent + 1); |
| 5067 | |
| 5068 | return OK; |
| 5069 | } |
| 5070 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5071 | #if GTK_CHECK_VERSION(3,0,0) |
| 5072 | /* Callback function used in gui_mch_font_dialog() */ |
| 5073 | static gboolean |
| 5074 | font_filter(const PangoFontFamily *family, |
| 5075 | const PangoFontFace *face UNUSED, |
| 5076 | gpointer data UNUSED) |
| 5077 | { |
| 5078 | return pango_font_family_is_monospace((PangoFontFamily *)family); |
| 5079 | } |
| 5080 | #endif |
| 5081 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5082 | /* |
| 5083 | * Put up a font dialog and return the selected font name in allocated memory. |
| 5084 | * "oldval" is the previous value. Return NULL when cancelled. |
| 5085 | * This should probably go into gui_gtk.c. Hmm. |
| 5086 | * FIXME: |
| 5087 | * The GTK2 font selection dialog has no filtering API. So we could either |
| 5088 | * a) implement our own (possibly copying the code from somewhere else) or |
| 5089 | * b) just live with it. |
| 5090 | */ |
| 5091 | char_u * |
| 5092 | gui_mch_font_dialog(char_u *oldval) |
| 5093 | { |
| 5094 | GtkWidget *dialog; |
| 5095 | int response; |
| 5096 | char_u *fontname = NULL; |
| 5097 | char_u *oldname; |
| 5098 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5099 | #if GTK_CHECK_VERSION(3,2,0) |
| 5100 | dialog = gtk_font_chooser_dialog_new(NULL, NULL); |
| 5101 | gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter, |
| 5102 | NULL, NULL); |
| 5103 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5104 | dialog = gtk_font_selection_dialog_new(NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5105 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5106 | |
| 5107 | gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin)); |
| 5108 | gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE); |
| 5109 | |
| 5110 | if (oldval != NULL && oldval[0] != NUL) |
| 5111 | { |
| 5112 | if (output_conv.vc_type != CONV_NONE) |
| 5113 | oldname = string_convert(&output_conv, oldval, NULL); |
| 5114 | else |
| 5115 | oldname = oldval; |
| 5116 | |
| 5117 | /* Annoying bug in GTK (or Pango): if the font name does not include a |
| 5118 | * size, zero is used. Use default point size ten. */ |
| 5119 | if (!vim_isdigit(oldname[STRLEN(oldname) - 1])) |
| 5120 | { |
| 5121 | char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3); |
| 5122 | |
| 5123 | if (p != NULL) |
| 5124 | { |
| 5125 | STRCPY(p + STRLEN(p), " 10"); |
| 5126 | if (oldname != oldval) |
| 5127 | vim_free(oldname); |
| 5128 | oldname = p; |
| 5129 | } |
| 5130 | } |
| 5131 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5132 | #if GTK_CHECK_VERSION(3,2,0) |
| 5133 | gtk_font_chooser_set_font( |
| 5134 | GTK_FONT_CHOOSER(dialog), (const gchar *)oldname); |
| 5135 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5136 | gtk_font_selection_dialog_set_font_name( |
| 5137 | GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5138 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5139 | |
| 5140 | if (oldname != oldval) |
Bram Moolenaar | 8c71145 | 2005-01-14 21:53:12 +0000 | [diff] [blame] | 5141 | vim_free(oldname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5142 | } |
Bram Moolenaar | bef9d83 | 2009-09-11 13:46:41 +0000 | [diff] [blame] | 5143 | else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5144 | #if GTK_CHECK_VERSION(3,2,0) |
| 5145 | gtk_font_chooser_set_font( |
| 5146 | GTK_FONT_CHOOSER(dialog), DEFAULT_FONT); |
| 5147 | #else |
Bram Moolenaar | bef9d83 | 2009-09-11 13:46:41 +0000 | [diff] [blame] | 5148 | gtk_font_selection_dialog_set_font_name( |
| 5149 | GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5150 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5151 | |
| 5152 | response = gtk_dialog_run(GTK_DIALOG(dialog)); |
| 5153 | |
| 5154 | if (response == GTK_RESPONSE_OK) |
| 5155 | { |
| 5156 | char *name; |
| 5157 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5158 | #if GTK_CHECK_VERSION(3,2,0) |
| 5159 | name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog)); |
| 5160 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5161 | name = gtk_font_selection_dialog_get_font_name( |
| 5162 | GTK_FONT_SELECTION_DIALOG(dialog)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5163 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5164 | if (name != NULL) |
| 5165 | { |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 5166 | char_u *p; |
| 5167 | |
| 5168 | /* Apparently some font names include a comma, need to escape |
| 5169 | * that, because in 'guifont' it separates names. */ |
| 5170 | p = vim_strsave_escaped((char_u *)name, (char_u *)","); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5171 | g_free(name); |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 5172 | if (p != NULL && input_conv.vc_type != CONV_NONE) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 5173 | { |
| 5174 | fontname = string_convert(&input_conv, p, NULL); |
| 5175 | vim_free(p); |
| 5176 | } |
| 5177 | else |
| 5178 | fontname = p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5179 | } |
| 5180 | } |
| 5181 | |
| 5182 | if (response != GTK_RESPONSE_NONE) |
| 5183 | gtk_widget_destroy(dialog); |
| 5184 | |
| 5185 | return fontname; |
| 5186 | } |
| 5187 | |
| 5188 | /* |
| 5189 | * Some monospace fonts don't support a bold weight, and fall back |
| 5190 | * silently to the regular weight. But this is no good since our text |
| 5191 | * drawing function can emulate bold by overstriking. So let's try |
| 5192 | * to detect whether bold weight is actually available and emulate it |
| 5193 | * otherwise. |
| 5194 | * |
| 5195 | * Note that we don't need to check for italic style since Xft can |
| 5196 | * emulate italic on its own, provided you have a proper fontconfig |
| 5197 | * setup. We wouldn't be able to emulate it in Vim anyway. |
| 5198 | */ |
| 5199 | static void |
| 5200 | get_styled_font_variants(void) |
| 5201 | { |
| 5202 | PangoFontDescription *bold_font_desc; |
| 5203 | PangoFont *plain_font; |
| 5204 | PangoFont *bold_font; |
| 5205 | |
| 5206 | gui.font_can_bold = FALSE; |
| 5207 | |
| 5208 | plain_font = pango_context_load_font(gui.text_context, gui.norm_font); |
| 5209 | |
| 5210 | if (plain_font == NULL) |
| 5211 | return; |
| 5212 | |
| 5213 | bold_font_desc = pango_font_description_copy_static(gui.norm_font); |
| 5214 | pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD); |
| 5215 | |
| 5216 | bold_font = pango_context_load_font(gui.text_context, bold_font_desc); |
| 5217 | /* |
| 5218 | * The comparison relies on the unique handle nature of a PangoFont*, |
| 5219 | * i.e. it's assumed that a different PangoFont* won't refer to the |
| 5220 | * same font. Seems to work, and failing here isn't critical anyway. |
| 5221 | */ |
| 5222 | if (bold_font != NULL) |
| 5223 | { |
| 5224 | gui.font_can_bold = (bold_font != plain_font); |
| 5225 | g_object_unref(bold_font); |
| 5226 | } |
| 5227 | |
| 5228 | pango_font_description_free(bold_font_desc); |
| 5229 | g_object_unref(plain_font); |
| 5230 | } |
| 5231 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5232 | static PangoEngineShape *default_shape_engine = NULL; |
| 5233 | |
| 5234 | /* |
| 5235 | * Create a map from ASCII characters in the range [32,126] to glyphs |
| 5236 | * of the current font. This is used by gui_gtk2_draw_string() to skip |
| 5237 | * the itemize and shaping process for the most common case. |
| 5238 | */ |
| 5239 | static void |
| 5240 | ascii_glyph_table_init(void) |
| 5241 | { |
Bram Moolenaar | 16350cb | 2016-08-14 20:27:34 +0200 | [diff] [blame] | 5242 | char_u ascii_chars[2 * 128]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5243 | PangoAttrList *attr_list; |
| 5244 | GList *item_list; |
| 5245 | int i; |
| 5246 | |
| 5247 | if (gui.ascii_glyphs != NULL) |
| 5248 | pango_glyph_string_free(gui.ascii_glyphs); |
| 5249 | if (gui.ascii_font != NULL) |
| 5250 | g_object_unref(gui.ascii_font); |
| 5251 | |
| 5252 | gui.ascii_glyphs = NULL; |
| 5253 | gui.ascii_font = NULL; |
| 5254 | |
Bram Moolenaar | 16350cb | 2016-08-14 20:27:34 +0200 | [diff] [blame] | 5255 | /* For safety, fill in question marks for the control characters. |
| 5256 | * Put a space between characters to avoid shaping. */ |
| 5257 | for (i = 0; i < 128; ++i) |
| 5258 | { |
| 5259 | if (i >= 32 && i < 127) |
| 5260 | ascii_chars[2 * i] = i; |
| 5261 | else |
| 5262 | ascii_chars[2 * i] = '?'; |
| 5263 | ascii_chars[2 * i + 1] = ' '; |
| 5264 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5265 | |
| 5266 | attr_list = pango_attr_list_new(); |
| 5267 | item_list = pango_itemize(gui.text_context, (const char *)ascii_chars, |
| 5268 | 0, sizeof(ascii_chars), attr_list, NULL); |
| 5269 | |
| 5270 | if (item_list != NULL && item_list->next == NULL) /* play safe */ |
| 5271 | { |
| 5272 | PangoItem *item; |
| 5273 | int width; |
| 5274 | |
| 5275 | item = (PangoItem *)item_list->data; |
| 5276 | width = gui.char_width * PANGO_SCALE; |
| 5277 | |
| 5278 | /* Remember the shape engine used for ASCII. */ |
| 5279 | default_shape_engine = item->analysis.shape_engine; |
| 5280 | |
| 5281 | gui.ascii_font = item->analysis.font; |
| 5282 | g_object_ref(gui.ascii_font); |
| 5283 | |
| 5284 | gui.ascii_glyphs = pango_glyph_string_new(); |
| 5285 | |
| 5286 | pango_shape((const char *)ascii_chars, sizeof(ascii_chars), |
| 5287 | &item->analysis, gui.ascii_glyphs); |
| 5288 | |
| 5289 | g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars)); |
| 5290 | |
| 5291 | for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i) |
| 5292 | { |
| 5293 | PangoGlyphGeometry *geom; |
| 5294 | |
| 5295 | geom = &gui.ascii_glyphs->glyphs[i].geometry; |
| 5296 | geom->x_offset += MAX(0, width - geom->width) / 2; |
| 5297 | geom->width = width; |
| 5298 | } |
| 5299 | } |
| 5300 | |
| 5301 | g_list_foreach(item_list, (GFunc)&pango_item_free, NULL); |
| 5302 | g_list_free(item_list); |
| 5303 | pango_attr_list_unref(attr_list); |
| 5304 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5305 | |
| 5306 | /* |
| 5307 | * Initialize Vim to use the font or fontset with the given name. |
| 5308 | * Return FAIL if the font could not be loaded, OK otherwise. |
| 5309 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5310 | int |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5311 | gui_mch_init_font(char_u *font_name, int fontset UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5312 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5313 | PangoFontDescription *font_desc; |
| 5314 | PangoLayout *layout; |
| 5315 | int width; |
| 5316 | |
| 5317 | /* If font_name is NULL, this means to use the default, which should |
| 5318 | * be present on all proper Pango/fontconfig installations. */ |
| 5319 | if (font_name == NULL) |
| 5320 | font_name = (char_u *)DEFAULT_FONT; |
| 5321 | |
| 5322 | font_desc = gui_mch_get_font(font_name, FALSE); |
| 5323 | |
| 5324 | if (font_desc == NULL) |
| 5325 | return FAIL; |
| 5326 | |
| 5327 | gui_mch_free_font(gui.norm_font); |
| 5328 | gui.norm_font = font_desc; |
| 5329 | |
| 5330 | pango_context_set_font_description(gui.text_context, font_desc); |
| 5331 | |
| 5332 | layout = pango_layout_new(gui.text_context); |
| 5333 | pango_layout_set_text(layout, "MW", 2); |
| 5334 | pango_layout_get_size(layout, &width, NULL); |
| 5335 | /* |
| 5336 | * Set char_width to half the width obtained from pango_layout_get_size() |
| 5337 | * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads |
| 5338 | * Pango to use the same width for both non-CJK characters (e.g. Latin |
| 5339 | * letters and numbers) and CJK characters. This results in 's p a c e d |
| 5340 | * o u t' rendering when a CJK 'fixed width' font is used. To work around |
| 5341 | * that, divide the width returned by Pango by 2 if cjk_width is equal to |
| 5342 | * width for CJK fonts. |
| 5343 | * |
| 5344 | * For related bugs, see: |
| 5345 | * http://bugzilla.gnome.org/show_bug.cgi?id=106618 |
| 5346 | * http://bugzilla.gnome.org/show_bug.cgi?id=106624 |
| 5347 | * |
| 5348 | * With this, for all four of the following cases, Vim works fine: |
| 5349 | * guifont=CJK_fixed_width_font |
| 5350 | * guifont=Non_CJK_fixed_font |
| 5351 | * guifont=Non_CJK_fixed_font,CJK_Fixed_font |
| 5352 | * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font |
| 5353 | */ |
| 5354 | if (is_cjk_font(gui.norm_font)) |
| 5355 | { |
| 5356 | int cjk_width; |
| 5357 | |
| 5358 | /* Measure the text extent of U+4E00 and U+4E8C */ |
| 5359 | pango_layout_set_text(layout, "\344\270\200\344\272\214", -1); |
| 5360 | pango_layout_get_size(layout, &cjk_width, NULL); |
| 5361 | |
| 5362 | if (width == cjk_width) /* Xft not patched */ |
| 5363 | width /= 2; |
| 5364 | } |
| 5365 | g_object_unref(layout); |
| 5366 | |
| 5367 | gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE; |
| 5368 | |
| 5369 | /* A zero width may cause a crash. Happens for semi-invalid fontsets. */ |
| 5370 | if (gui.char_width <= 0) |
| 5371 | gui.char_width = 8; |
| 5372 | |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5373 | gui_mch_adjust_charheight(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5374 | |
| 5375 | /* Set the fontname, which will be used for information purposes */ |
| 5376 | hl_set_font_name(font_name); |
| 5377 | |
| 5378 | get_styled_font_variants(); |
| 5379 | ascii_glyph_table_init(); |
| 5380 | |
| 5381 | /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */ |
| 5382 | if (gui.wide_font != NULL |
| 5383 | && pango_font_description_equal(gui.norm_font, gui.wide_font)) |
| 5384 | { |
| 5385 | pango_font_description_free(gui.wide_font); |
| 5386 | gui.wide_font = NULL; |
| 5387 | } |
| 5388 | |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5389 | if (gui_mch_maximized()) |
| 5390 | { |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5391 | /* Update lines and columns in accordance with the new font, keep the |
| 5392 | * window maximized. */ |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 5393 | gui_mch_newfont(); |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5394 | } |
| 5395 | else |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5396 | { |
| 5397 | /* Preserve the logical dimensions of the screen. */ |
| 5398 | update_window_manager_hints(0, 0); |
| 5399 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5400 | |
| 5401 | return OK; |
| 5402 | } |
| 5403 | |
| 5404 | /* |
| 5405 | * Get a reference to the font "name". |
| 5406 | * Return zero for failure. |
| 5407 | */ |
| 5408 | GuiFont |
| 5409 | gui_mch_get_font(char_u *name, int report_error) |
| 5410 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5411 | PangoFontDescription *font; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5412 | |
| 5413 | /* can't do this when GUI is not running */ |
| 5414 | if (!gui.in_use || name == NULL) |
| 5415 | return NULL; |
| 5416 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5417 | if (output_conv.vc_type != CONV_NONE) |
| 5418 | { |
| 5419 | char_u *buf; |
| 5420 | |
| 5421 | buf = string_convert(&output_conv, name, NULL); |
| 5422 | if (buf != NULL) |
| 5423 | { |
| 5424 | font = pango_font_description_from_string((const char *)buf); |
| 5425 | vim_free(buf); |
| 5426 | } |
| 5427 | else |
| 5428 | font = NULL; |
| 5429 | } |
| 5430 | else |
| 5431 | font = pango_font_description_from_string((const char *)name); |
| 5432 | |
| 5433 | if (font != NULL) |
| 5434 | { |
| 5435 | PangoFont *real_font; |
| 5436 | |
| 5437 | /* pango_context_load_font() bails out if no font size is set */ |
| 5438 | if (pango_font_description_get_size(font) <= 0) |
| 5439 | pango_font_description_set_size(font, 10 * PANGO_SCALE); |
| 5440 | |
| 5441 | real_font = pango_context_load_font(gui.text_context, font); |
| 5442 | |
| 5443 | if (real_font == NULL) |
| 5444 | { |
| 5445 | pango_font_description_free(font); |
| 5446 | font = NULL; |
| 5447 | } |
| 5448 | else |
| 5449 | g_object_unref(real_font); |
| 5450 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5451 | |
| 5452 | if (font == NULL) |
| 5453 | { |
| 5454 | if (report_error) |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 5455 | EMSG2(_((char *)e_font), name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5456 | return NULL; |
| 5457 | } |
| 5458 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5459 | return font; |
| 5460 | } |
| 5461 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5462 | #if defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5463 | /* |
| 5464 | * Return the name of font "font" in allocated memory. |
| 5465 | */ |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5466 | char_u * |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5467 | gui_mch_get_fontname(GuiFont font, char_u *name UNUSED) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5468 | { |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5469 | if (font != NOFONT) |
| 5470 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5471 | char *pangoname = pango_font_description_to_string(font); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5472 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5473 | if (pangoname != NULL) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5474 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5475 | char_u *s = vim_strsave((char_u *)pangoname); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5476 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5477 | g_free(pangoname); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5478 | return s; |
| 5479 | } |
| 5480 | } |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5481 | return NULL; |
| 5482 | } |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5483 | #endif |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5484 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5485 | /* |
| 5486 | * If a font is not going to be used, free its structure. |
| 5487 | */ |
| 5488 | void |
| 5489 | gui_mch_free_font(GuiFont font) |
| 5490 | { |
| 5491 | if (font != NOFONT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5492 | pango_font_description_free(font); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5493 | } |
| 5494 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5495 | /* |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5496 | * Return the Pixel value (color) for the given color name. |
| 5497 | * |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5498 | * Return INVALCOLOR for error. |
| 5499 | */ |
| 5500 | guicolor_T |
| 5501 | gui_mch_get_color(char_u *name) |
| 5502 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5503 | if (!gui.in_use) /* can't do this when GUI not running */ |
| 5504 | return INVALCOLOR; |
| 5505 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5506 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5507 | return name != NULL ? gui_get_color_cmn(name) : INVALCOLOR; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5508 | #else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5509 | guicolor_T color; |
| 5510 | GdkColor gcolor; |
| 5511 | int ret; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5512 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5513 | color = (name != NULL) ? gui_get_color_cmn(name) : INVALCOLOR; |
| 5514 | if (color == INVALCOLOR) |
| 5515 | return INVALCOLOR; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5516 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5517 | gcolor.red = (guint16)(((color & 0xff0000) >> 16) / 255.0 * 65535 + 0.5); |
| 5518 | gcolor.green = (guint16)(((color & 0xff00) >> 8) / 255.0 * 65535 + 0.5); |
| 5519 | gcolor.blue = (guint16)((color & 0xff) / 255.0 * 65535 + 0.5); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5520 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5521 | ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea), |
| 5522 | &gcolor, FALSE, TRUE); |
| 5523 | |
| 5524 | return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR; |
| 5525 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5526 | } |
| 5527 | |
| 5528 | /* |
| 5529 | * Set the current text foreground color. |
| 5530 | */ |
| 5531 | void |
| 5532 | gui_mch_set_fg_color(guicolor_T color) |
| 5533 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5534 | #if GTK_CHECK_VERSION(3,0,0) |
| 5535 | *gui.fgcolor = color_to_rgba(color); |
| 5536 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5537 | gui.fgcolor->pixel = (unsigned long)color; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5538 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5539 | } |
| 5540 | |
| 5541 | /* |
| 5542 | * Set the current text background color. |
| 5543 | */ |
| 5544 | void |
| 5545 | gui_mch_set_bg_color(guicolor_T color) |
| 5546 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5547 | #if GTK_CHECK_VERSION(3,0,0) |
| 5548 | *gui.bgcolor = color_to_rgba(color); |
| 5549 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5550 | gui.bgcolor->pixel = (unsigned long)color; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5551 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5552 | } |
| 5553 | |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5554 | /* |
| 5555 | * Set the current text special color. |
| 5556 | */ |
| 5557 | void |
| 5558 | gui_mch_set_sp_color(guicolor_T color) |
| 5559 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5560 | #if GTK_CHECK_VERSION(3,0,0) |
| 5561 | *gui.spcolor = color_to_rgba(color); |
| 5562 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5563 | gui.spcolor->pixel = (unsigned long)color; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5564 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5565 | } |
| 5566 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5567 | /* |
| 5568 | * Function-like convenience macro for the sake of efficiency. |
| 5569 | */ |
| 5570 | #define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \ |
| 5571 | G_STMT_START{ \ |
| 5572 | PangoAttribute *tmp_attr_; \ |
| 5573 | tmp_attr_ = (Attribute); \ |
| 5574 | tmp_attr_->start_index = (Start); \ |
| 5575 | tmp_attr_->end_index = (End); \ |
| 5576 | pango_attr_list_insert((AttrList), tmp_attr_); \ |
| 5577 | }G_STMT_END |
| 5578 | |
| 5579 | static void |
| 5580 | apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list) |
| 5581 | { |
| 5582 | char_u *start = NULL; |
| 5583 | char_u *p; |
| 5584 | int uc; |
| 5585 | |
| 5586 | for (p = s; p < s + len; p += utf_byte2len(*p)) |
| 5587 | { |
| 5588 | uc = utf_ptr2char(p); |
| 5589 | |
| 5590 | if (start == NULL) |
| 5591 | { |
| 5592 | if (uc >= 0x80 && utf_char2cells(uc) == 2) |
| 5593 | start = p; |
| 5594 | } |
| 5595 | else if (uc < 0x80 /* optimization shortcut */ |
| 5596 | || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc))) |
| 5597 | { |
| 5598 | INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), |
| 5599 | attr_list, start - s, p - s); |
| 5600 | start = NULL; |
| 5601 | } |
| 5602 | } |
| 5603 | |
| 5604 | if (start != NULL) |
| 5605 | INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), |
| 5606 | attr_list, start - s, len); |
| 5607 | } |
| 5608 | |
| 5609 | static int |
| 5610 | count_cluster_cells(char_u *s, PangoItem *item, |
| 5611 | PangoGlyphString* glyphs, int i, |
| 5612 | int *cluster_width, |
| 5613 | int *last_glyph_rbearing) |
| 5614 | { |
| 5615 | char_u *p; |
| 5616 | int next; /* glyph start index of next cluster */ |
| 5617 | int start, end; /* string segment of current cluster */ |
| 5618 | int width; /* real cluster width in Pango units */ |
| 5619 | int uc; |
| 5620 | int cellcount = 0; |
| 5621 | |
| 5622 | width = glyphs->glyphs[i].geometry.width; |
| 5623 | |
| 5624 | for (next = i + 1; next < glyphs->num_glyphs; ++next) |
| 5625 | { |
| 5626 | if (glyphs->glyphs[next].attr.is_cluster_start) |
| 5627 | break; |
| 5628 | else if (glyphs->glyphs[next].geometry.width > width) |
| 5629 | width = glyphs->glyphs[next].geometry.width; |
| 5630 | } |
| 5631 | |
| 5632 | start = item->offset + glyphs->log_clusters[i]; |
| 5633 | end = item->offset + ((next < glyphs->num_glyphs) ? |
| 5634 | glyphs->log_clusters[next] : item->length); |
| 5635 | |
| 5636 | for (p = s + start; p < s + end; p += utf_byte2len(*p)) |
| 5637 | { |
| 5638 | uc = utf_ptr2char(p); |
| 5639 | if (uc < 0x80) |
| 5640 | ++cellcount; |
| 5641 | else if (!utf_iscomposing(uc)) |
| 5642 | cellcount += utf_char2cells(uc); |
| 5643 | } |
| 5644 | |
| 5645 | if (last_glyph_rbearing != NULL |
| 5646 | && cellcount > 0 && next == glyphs->num_glyphs) |
| 5647 | { |
| 5648 | PangoRectangle ink_rect; |
| 5649 | /* |
| 5650 | * If a certain combining mark had to be taken from a non-monospace |
| 5651 | * font, we have to compensate manually by adapting x_offset according |
| 5652 | * to the ink extents of the previous glyph. |
| 5653 | */ |
| 5654 | pango_font_get_glyph_extents(item->analysis.font, |
| 5655 | glyphs->glyphs[i].glyph, |
| 5656 | &ink_rect, NULL); |
| 5657 | |
| 5658 | if (PANGO_RBEARING(ink_rect) > 0) |
| 5659 | *last_glyph_rbearing = PANGO_RBEARING(ink_rect); |
| 5660 | } |
| 5661 | |
| 5662 | if (cellcount > 0) |
| 5663 | *cluster_width = width; |
| 5664 | |
| 5665 | return cellcount; |
| 5666 | } |
| 5667 | |
| 5668 | /* |
| 5669 | * If there are only combining characters in the cluster, we cannot just |
| 5670 | * change the width of the previous glyph since there is none. Therefore |
| 5671 | * some guesswork is needed. |
| 5672 | * |
| 5673 | * If ink_rect.x is negative Pango apparently has taken care of the composing |
| 5674 | * by itself. Actually setting x_offset = 0 should be sufficient then, but due |
| 5675 | * to problems with composing from different fonts we still need to fine-tune |
Bram Moolenaar | 6440447 | 2010-06-26 06:24:45 +0200 | [diff] [blame] | 5676 | * x_offset to avoid ugliness. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5677 | * |
| 5678 | * If ink_rect.x is not negative, force overstriking by pointing x_offset to |
| 5679 | * the position of the previous glyph. Apparently this happens only with old |
| 5680 | * X fonts which don't provide the special combining information needed by |
| 5681 | * Pango. |
| 5682 | */ |
| 5683 | static void |
| 5684 | setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph, |
| 5685 | int last_cellcount, int last_cluster_width, |
| 5686 | int last_glyph_rbearing) |
| 5687 | { |
| 5688 | PangoRectangle ink_rect; |
| 5689 | PangoRectangle logical_rect; |
| 5690 | int width; |
| 5691 | |
| 5692 | width = last_cellcount * gui.char_width * PANGO_SCALE; |
| 5693 | glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2; |
| 5694 | glyph->geometry.width = 0; |
| 5695 | |
| 5696 | pango_font_get_glyph_extents(item->analysis.font, |
| 5697 | glyph->glyph, |
| 5698 | &ink_rect, &logical_rect); |
| 5699 | if (ink_rect.x < 0) |
| 5700 | { |
| 5701 | glyph->geometry.x_offset += last_glyph_rbearing; |
| 5702 | glyph->geometry.y_offset = logical_rect.height |
| 5703 | - (gui.char_height - p_linespace) * PANGO_SCALE; |
| 5704 | } |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5705 | else |
| 5706 | /* If the accent width is smaller than the cluster width, position it |
| 5707 | * in the middle. */ |
| 5708 | glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5709 | } |
| 5710 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5711 | #if GTK_CHECK_VERSION(3,0,0) |
| 5712 | static void |
| 5713 | draw_glyph_string(int row, int col, int num_cells, int flags, |
| 5714 | PangoFont *font, PangoGlyphString *glyphs, |
| 5715 | cairo_t *cr) |
| 5716 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5717 | static void |
| 5718 | draw_glyph_string(int row, int col, int num_cells, int flags, |
| 5719 | PangoFont *font, PangoGlyphString *glyphs) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5720 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5721 | { |
| 5722 | if (!(flags & DRAW_TRANSP)) |
| 5723 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5724 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5725 | cairo_set_source_rgba(cr, |
| 5726 | gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue, |
| 5727 | gui.bgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5728 | cairo_rectangle(cr, |
| 5729 | FILL_X(col), FILL_Y(row), |
| 5730 | num_cells * gui.char_width, gui.char_height); |
| 5731 | cairo_fill(cr); |
| 5732 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5733 | gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
| 5734 | |
| 5735 | gdk_draw_rectangle(gui.drawarea->window, |
| 5736 | gui.text_gc, |
| 5737 | TRUE, |
| 5738 | FILL_X(col), |
| 5739 | FILL_Y(row), |
| 5740 | num_cells * gui.char_width, |
| 5741 | gui.char_height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5742 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5743 | } |
| 5744 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5745 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5746 | cairo_set_source_rgba(cr, |
| 5747 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 5748 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5749 | cairo_move_to(cr, TEXT_X(col), TEXT_Y(row)); |
| 5750 | pango_cairo_show_glyph_string(cr, font, glyphs); |
| 5751 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5752 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 5753 | |
| 5754 | gdk_draw_glyphs(gui.drawarea->window, |
| 5755 | gui.text_gc, |
| 5756 | font, |
| 5757 | TEXT_X(col), |
| 5758 | TEXT_Y(row), |
| 5759 | glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5760 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5761 | |
| 5762 | /* redraw the contents with an offset of 1 to emulate bold */ |
| 5763 | if ((flags & DRAW_BOLD) && !gui.font_can_bold) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5764 | #if GTK_CHECK_VERSION(3,0,0) |
| 5765 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5766 | cairo_set_source_rgba(cr, |
| 5767 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 5768 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5769 | cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row)); |
| 5770 | pango_cairo_show_glyph_string(cr, font, glyphs); |
| 5771 | } |
| 5772 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5773 | gdk_draw_glyphs(gui.drawarea->window, |
| 5774 | gui.text_gc, |
| 5775 | font, |
| 5776 | TEXT_X(col) + 1, |
| 5777 | TEXT_Y(row), |
| 5778 | glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5779 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5780 | } |
| 5781 | |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5782 | /* |
| 5783 | * Draw underline and undercurl at the bottom of the character cell. |
| 5784 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5785 | #if GTK_CHECK_VERSION(3,0,0) |
| 5786 | static void |
| 5787 | draw_under(int flags, int row, int col, int cells, cairo_t *cr) |
| 5788 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5789 | static void |
| 5790 | draw_under(int flags, int row, int col, int cells) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5791 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5792 | { |
| 5793 | int i; |
| 5794 | int offset; |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5795 | 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] | 5796 | int y = FILL_Y(row + 1) - 1; |
| 5797 | |
| 5798 | /* Undercurl: draw curl at the bottom of the character cell. */ |
| 5799 | if (flags & DRAW_UNDERC) |
| 5800 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5801 | #if GTK_CHECK_VERSION(3,0,0) |
| 5802 | cairo_set_line_width(cr, 1.0); |
| 5803 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5804 | cairo_set_source_rgba(cr, |
| 5805 | gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue, |
| 5806 | gui.spcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5807 | for (i = FILL_X(col); i < FILL_X(col + cells); ++i) |
| 5808 | { |
| 5809 | offset = val[i % 8]; |
| 5810 | cairo_line_to(cr, i, y - offset + 0.5); |
| 5811 | } |
| 5812 | cairo_stroke(cr); |
| 5813 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5814 | gdk_gc_set_foreground(gui.text_gc, gui.spcolor); |
| 5815 | for (i = FILL_X(col); i < FILL_X(col + cells); ++i) |
| 5816 | { |
| 5817 | offset = val[i % 8]; |
| 5818 | gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset); |
| 5819 | } |
| 5820 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5821 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5822 | } |
| 5823 | |
| 5824 | /* Underline: draw a line at the bottom of the character cell. */ |
| 5825 | if (flags & DRAW_UNDERL) |
| 5826 | { |
| 5827 | /* When p_linespace is 0, overwrite the bottom row of pixels. |
| 5828 | * Otherwise put the line just below the character. */ |
| 5829 | if (p_linespace > 1) |
| 5830 | y -= p_linespace - 1; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5831 | #if GTK_CHECK_VERSION(3,0,0) |
| 5832 | { |
| 5833 | cairo_set_line_width(cr, 1.0); |
| 5834 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5835 | cairo_set_source_rgba(cr, |
| 5836 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 5837 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5838 | cairo_move_to(cr, FILL_X(col), y + 0.5); |
| 5839 | cairo_line_to(cr, FILL_X(col + cells), y + 0.5); |
| 5840 | cairo_stroke(cr); |
| 5841 | } |
| 5842 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5843 | gdk_draw_line(gui.drawarea->window, gui.text_gc, |
| 5844 | FILL_X(col), y, |
| 5845 | FILL_X(col + cells) - 1, y); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5846 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5847 | } |
| 5848 | } |
| 5849 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5850 | int |
| 5851 | gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags) |
| 5852 | { |
| 5853 | GdkRectangle area; /* area for clip mask */ |
| 5854 | PangoGlyphString *glyphs; /* glyphs of current item */ |
| 5855 | int column_offset = 0; /* column offset in cells */ |
| 5856 | int i; |
| 5857 | char_u *conv_buf = NULL; /* result of UTF-8 conversion */ |
| 5858 | char_u *new_conv_buf; |
| 5859 | int convlen; |
| 5860 | char_u *sp, *bp; |
| 5861 | int plen; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5862 | #if GTK_CHECK_VERSION(3,0,0) |
| 5863 | cairo_t *cr; |
| 5864 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5865 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5866 | #if GTK_CHECK_VERSION(3,0,0) |
| 5867 | if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL) |
| 5868 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5869 | if (gui.text_context == NULL || gui.drawarea->window == NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5870 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5871 | return len; |
| 5872 | |
| 5873 | if (output_conv.vc_type != CONV_NONE) |
| 5874 | { |
| 5875 | /* |
| 5876 | * Convert characters from 'encoding' to 'termencoding', which is set |
| 5877 | * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c |
| 5878 | * prohibits changing this to something else than UTF-8 if the GUI is |
| 5879 | * in use. |
| 5880 | */ |
| 5881 | convlen = len; |
| 5882 | conv_buf = string_convert(&output_conv, s, &convlen); |
| 5883 | g_return_val_if_fail(conv_buf != NULL, len); |
| 5884 | |
| 5885 | /* Correct for differences in char width: some chars are |
| 5886 | * double-wide in 'encoding' but single-wide in utf-8. Add a space to |
| 5887 | * compensate for that. */ |
| 5888 | for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; ) |
| 5889 | { |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 5890 | plen = utf_ptr2len(bp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5891 | if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1) |
| 5892 | { |
| 5893 | new_conv_buf = alloc(convlen + 2); |
| 5894 | if (new_conv_buf == NULL) |
| 5895 | return len; |
| 5896 | plen += bp - conv_buf; |
| 5897 | mch_memmove(new_conv_buf, conv_buf, plen); |
| 5898 | new_conv_buf[plen] = ' '; |
| 5899 | mch_memmove(new_conv_buf + plen + 1, conv_buf + plen, |
| 5900 | convlen - plen + 1); |
| 5901 | vim_free(conv_buf); |
| 5902 | conv_buf = new_conv_buf; |
| 5903 | ++convlen; |
| 5904 | bp = conv_buf + plen; |
| 5905 | plen = 1; |
| 5906 | } |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 5907 | sp += (*mb_ptr2len)(sp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5908 | bp += plen; |
| 5909 | } |
| 5910 | s = conv_buf; |
| 5911 | len = convlen; |
| 5912 | } |
| 5913 | |
| 5914 | /* |
| 5915 | * Restrict all drawing to the current screen line in order to prevent |
| 5916 | * fuzzy font lookups from messing up the screen. |
| 5917 | */ |
| 5918 | area.x = gui.border_offset; |
| 5919 | area.y = FILL_Y(row); |
| 5920 | area.width = gui.num_cols * gui.char_width; |
| 5921 | area.height = gui.char_height; |
| 5922 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5923 | #if GTK_CHECK_VERSION(3,0,0) |
| 5924 | cr = cairo_create(gui.surface); |
| 5925 | cairo_rectangle(cr, area.x, area.y, area.width, area.height); |
| 5926 | cairo_clip(cr); |
| 5927 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5928 | gdk_gc_set_clip_origin(gui.text_gc, 0, 0); |
| 5929 | gdk_gc_set_clip_rectangle(gui.text_gc, &area); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5930 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5931 | |
| 5932 | glyphs = pango_glyph_string_new(); |
| 5933 | |
| 5934 | /* |
| 5935 | * Optimization hack: If possible, skip the itemize and shaping process |
| 5936 | * for pure ASCII strings. This optimization is particularly effective |
| 5937 | * because Vim draws space characters to clear parts of the screen. |
| 5938 | */ |
| 5939 | if (!(flags & DRAW_ITALIC) |
| 5940 | && !((flags & DRAW_BOLD) && gui.font_can_bold) |
| 5941 | && gui.ascii_glyphs != NULL) |
| 5942 | { |
| 5943 | char_u *p; |
| 5944 | |
| 5945 | for (p = s; p < s + len; ++p) |
| 5946 | if (*p & 0x80) |
| 5947 | goto not_ascii; |
| 5948 | |
| 5949 | pango_glyph_string_set_size(glyphs, len); |
| 5950 | |
| 5951 | for (i = 0; i < len; ++i) |
| 5952 | { |
Bram Moolenaar | 16350cb | 2016-08-14 20:27:34 +0200 | [diff] [blame] | 5953 | glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5954 | glyphs->log_clusters[i] = i; |
| 5955 | } |
| 5956 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5957 | #if GTK_CHECK_VERSION(3,0,0) |
| 5958 | draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr); |
| 5959 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5960 | draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5961 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5962 | |
| 5963 | column_offset = len; |
| 5964 | } |
| 5965 | else |
| 5966 | not_ascii: |
| 5967 | { |
| 5968 | PangoAttrList *attr_list; |
| 5969 | GList *item_list; |
| 5970 | int cluster_width; |
| 5971 | int last_glyph_rbearing; |
| 5972 | int cells = 0; /* cells occupied by current cluster */ |
| 5973 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5974 | /* Safety check: pango crashes when invoked with invalid utf-8 |
| 5975 | * characters. */ |
| 5976 | if (!utf_valid_string(s, s + len)) |
| 5977 | { |
| 5978 | column_offset = len; |
| 5979 | goto skipitall; |
| 5980 | } |
| 5981 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5982 | /* original width of the current cluster */ |
| 5983 | cluster_width = PANGO_SCALE * gui.char_width; |
| 5984 | |
| 5985 | /* right bearing of the last non-composing glyph */ |
| 5986 | last_glyph_rbearing = PANGO_SCALE * gui.char_width; |
| 5987 | |
| 5988 | attr_list = pango_attr_list_new(); |
| 5989 | |
| 5990 | /* If 'guifontwide' is set then use that for double-width characters. |
| 5991 | * Otherwise just go with 'guifont' and let Pango do its thing. */ |
| 5992 | if (gui.wide_font != NULL) |
| 5993 | apply_wide_font_attr(s, len, attr_list); |
| 5994 | |
| 5995 | if ((flags & DRAW_BOLD) && gui.font_can_bold) |
| 5996 | INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD), |
| 5997 | attr_list, 0, len); |
| 5998 | if (flags & DRAW_ITALIC) |
| 5999 | INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC), |
| 6000 | attr_list, 0, len); |
| 6001 | /* |
| 6002 | * Break the text into segments with consistent directional level |
| 6003 | * and shaping engine. Pure Latin text needs only a single segment, |
| 6004 | * so there's no need to worry about the loop's efficiency. Better |
| 6005 | * try to optimize elsewhere, e.g. reducing exposes and stuff :) |
| 6006 | */ |
| 6007 | item_list = pango_itemize(gui.text_context, |
| 6008 | (const char *)s, 0, len, attr_list, NULL); |
| 6009 | |
| 6010 | while (item_list != NULL) |
| 6011 | { |
| 6012 | PangoItem *item; |
| 6013 | int item_cells = 0; /* item length in cells */ |
| 6014 | |
| 6015 | item = (PangoItem *)item_list->data; |
| 6016 | item_list = g_list_delete_link(item_list, item_list); |
| 6017 | /* |
| 6018 | * Increment the bidirectional embedding level by 1 if it is not |
| 6019 | * even. An odd number means the output will be RTL, but we don't |
| 6020 | * want that since Vim handles right-to-left text on its own. It |
| 6021 | * would probably be sufficient to just set level = 0, but you can |
| 6022 | * never know :) |
| 6023 | * |
| 6024 | * Unfortunately we can't take advantage of Pango's ability to |
| 6025 | * render both LTR and RTL at the same time. In order to support |
| 6026 | * that, Vim's main screen engine would have to make use of Pango |
| 6027 | * functionality. |
| 6028 | */ |
| 6029 | item->analysis.level = (item->analysis.level + 1) & (~1U); |
| 6030 | |
| 6031 | /* HACK: Overrule the shape engine, we don't want shaping to be |
| 6032 | * done, because drawing the cursor would change the display. */ |
| 6033 | item->analysis.shape_engine = default_shape_engine; |
| 6034 | |
Bram Moolenaar | 3cbe0c0 | 2015-09-08 20:00:22 +0200 | [diff] [blame] | 6035 | #ifdef HAVE_PANGO_SHAPE_FULL |
Bram Moolenaar | 7e2ec00 | 2015-09-08 16:31:06 +0200 | [diff] [blame] | 6036 | pango_shape_full((const char *)s + item->offset, item->length, |
| 6037 | (const char *)s, len, &item->analysis, glyphs); |
Bram Moolenaar | 3cbe0c0 | 2015-09-08 20:00:22 +0200 | [diff] [blame] | 6038 | #else |
| 6039 | pango_shape((const char *)s + item->offset, item->length, |
| 6040 | &item->analysis, glyphs); |
| 6041 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6042 | /* |
| 6043 | * Fixed-width hack: iterate over the array and assign a fixed |
| 6044 | * width to each glyph, thus overriding the choice made by the |
| 6045 | * shaping engine. We use utf_char2cells() to determine the |
| 6046 | * number of cells needed. |
| 6047 | * |
| 6048 | * Also perform all kind of dark magic to get composing |
| 6049 | * characters right (and pretty too of course). |
| 6050 | */ |
| 6051 | for (i = 0; i < glyphs->num_glyphs; ++i) |
| 6052 | { |
| 6053 | PangoGlyphInfo *glyph; |
| 6054 | |
| 6055 | glyph = &glyphs->glyphs[i]; |
| 6056 | |
| 6057 | if (glyph->attr.is_cluster_start) |
| 6058 | { |
| 6059 | int cellcount; |
| 6060 | |
| 6061 | cellcount = count_cluster_cells( |
| 6062 | s, item, glyphs, i, &cluster_width, |
| 6063 | (item_list != NULL) ? &last_glyph_rbearing : NULL); |
| 6064 | |
| 6065 | if (cellcount > 0) |
| 6066 | { |
| 6067 | int width; |
| 6068 | |
| 6069 | width = cellcount * gui.char_width * PANGO_SCALE; |
| 6070 | glyph->geometry.x_offset += |
| 6071 | MAX(0, width - cluster_width) / 2; |
| 6072 | glyph->geometry.width = width; |
| 6073 | } |
| 6074 | else |
| 6075 | { |
| 6076 | /* If there are only combining characters in the |
| 6077 | * cluster, we cannot just change the width of the |
| 6078 | * previous glyph since there is none. Therefore |
| 6079 | * some guesswork is needed. */ |
| 6080 | setup_zero_width_cluster(item, glyph, cells, |
| 6081 | cluster_width, |
| 6082 | last_glyph_rbearing); |
| 6083 | } |
| 6084 | |
| 6085 | item_cells += cellcount; |
| 6086 | cells = cellcount; |
| 6087 | } |
| 6088 | else if (i > 0) |
| 6089 | { |
| 6090 | int width; |
| 6091 | |
| 6092 | /* There is a previous glyph, so we deal with combining |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 6093 | * characters the canonical way. |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 6094 | * In some circumstances Pango uses a positive x_offset, |
| 6095 | * then use the width of the previous glyph for this one |
| 6096 | * and set the previous width to zero. |
| 6097 | * Otherwise we get a negative x_offset, Pango has already |
| 6098 | * positioned the combining char, keep the widths as they |
| 6099 | * are. |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 6100 | * For both adjust the x_offset to position the glyph in |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 6101 | * the middle. */ |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 6102 | if (glyph->geometry.x_offset >= 0) |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 6103 | { |
| 6104 | glyphs->glyphs[i].geometry.width = |
| 6105 | glyphs->glyphs[i - 1].geometry.width; |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 6106 | glyphs->glyphs[i - 1].geometry.width = 0; |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 6107 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6108 | width = cells * gui.char_width * PANGO_SCALE; |
| 6109 | glyph->geometry.x_offset += |
| 6110 | MAX(0, width - cluster_width) / 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6111 | } |
| 6112 | else /* i == 0 "cannot happen" */ |
| 6113 | { |
| 6114 | glyph->geometry.width = 0; |
| 6115 | } |
| 6116 | } |
| 6117 | |
| 6118 | /*** Aaaaand action! ***/ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6119 | #if GTK_CHECK_VERSION(3,0,0) |
| 6120 | draw_glyph_string(row, col + column_offset, item_cells, |
| 6121 | flags, item->analysis.font, glyphs, |
| 6122 | cr); |
| 6123 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6124 | draw_glyph_string(row, col + column_offset, item_cells, |
| 6125 | flags, item->analysis.font, glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6126 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6127 | |
| 6128 | pango_item_free(item); |
| 6129 | |
| 6130 | column_offset += item_cells; |
| 6131 | } |
| 6132 | |
| 6133 | pango_attr_list_unref(attr_list); |
| 6134 | } |
| 6135 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6136 | skipitall: |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 6137 | /* Draw underline and undercurl. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6138 | #if GTK_CHECK_VERSION(3,0,0) |
| 6139 | draw_under(flags, row, col, column_offset, cr); |
| 6140 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 6141 | draw_under(flags, row, col, column_offset); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6142 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6143 | |
| 6144 | pango_glyph_string_free(glyphs); |
| 6145 | vim_free(conv_buf); |
| 6146 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6147 | #if GTK_CHECK_VERSION(3,0,0) |
| 6148 | cairo_destroy(cr); |
| 6149 | if (!gui.by_signal) |
| 6150 | gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea), |
| 6151 | &area, FALSE); |
| 6152 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6153 | gdk_gc_set_clip_rectangle(gui.text_gc, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6154 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6155 | |
| 6156 | return column_offset; |
| 6157 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6158 | |
| 6159 | /* |
| 6160 | * Return OK if the key with the termcap name "name" is supported. |
| 6161 | */ |
| 6162 | int |
| 6163 | gui_mch_haskey(char_u *name) |
| 6164 | { |
| 6165 | int i; |
| 6166 | |
| 6167 | for (i = 0; special_keys[i].key_sym != 0; i++) |
| 6168 | if (name[0] == special_keys[i].code0 |
| 6169 | && name[1] == special_keys[i].code1) |
| 6170 | return OK; |
| 6171 | return FAIL; |
| 6172 | } |
| 6173 | |
Bram Moolenaar | b2c5a5a | 2013-02-14 22:11:39 +0100 | [diff] [blame] | 6174 | #if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6175 | /* |
| 6176 | * Return the text window-id and display. Only required for X-based GUI's |
| 6177 | */ |
| 6178 | int |
| 6179 | gui_get_x11_windis(Window *win, Display **dis) |
| 6180 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6181 | #if GTK_CHECK_VERSION(3,0,0) |
| 6182 | if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL) |
| 6183 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6184 | if (gui.mainwin != NULL && gui.mainwin->window != NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6185 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6186 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6187 | #if GTK_CHECK_VERSION(3,0,0) |
| 6188 | *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
| 6189 | *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)); |
| 6190 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6191 | *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window); |
| 6192 | *win = GDK_WINDOW_XWINDOW(gui.mainwin->window); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6193 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6194 | return OK; |
| 6195 | } |
| 6196 | |
| 6197 | *dis = NULL; |
| 6198 | *win = 0; |
| 6199 | return FAIL; |
| 6200 | } |
| 6201 | #endif |
| 6202 | |
| 6203 | #if defined(FEAT_CLIENTSERVER) \ |
| 6204 | || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO) |
| 6205 | |
| 6206 | Display * |
| 6207 | gui_mch_get_display(void) |
| 6208 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6209 | #if GTK_CHECK_VERSION(3,0,0) |
| 6210 | if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL) |
| 6211 | return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
| 6212 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6213 | if (gui.mainwin != NULL && gui.mainwin->window != NULL) |
| 6214 | return GDK_WINDOW_XDISPLAY(gui.mainwin->window); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6215 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6216 | else |
| 6217 | return NULL; |
| 6218 | } |
| 6219 | #endif |
| 6220 | |
| 6221 | void |
| 6222 | gui_mch_beep(void) |
| 6223 | { |
| 6224 | #ifdef HAVE_GTK_MULTIHEAD |
| 6225 | GdkDisplay *display; |
| 6226 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6227 | # if GTK_CHECK_VERSION(3,0,0) |
| 6228 | if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
| 6229 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6230 | if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6231 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6232 | display = gtk_widget_get_display(gui.mainwin); |
| 6233 | else |
| 6234 | display = gdk_display_get_default(); |
| 6235 | |
| 6236 | if (display != NULL) |
| 6237 | gdk_display_beep(display); |
| 6238 | #else |
| 6239 | gdk_beep(); |
| 6240 | #endif |
| 6241 | } |
| 6242 | |
| 6243 | void |
| 6244 | gui_mch_flash(int msec) |
| 6245 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6246 | #if GTK_CHECK_VERSION(3,0,0) |
| 6247 | /* TODO Replace GdkGC with Cairo */ |
| 6248 | (void)msec; |
| 6249 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6250 | GdkGCValues values; |
| 6251 | GdkGC *invert_gc; |
| 6252 | |
| 6253 | if (gui.drawarea->window == NULL) |
| 6254 | return; |
| 6255 | |
| 6256 | values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 6257 | values.background.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 6258 | values.function = GDK_XOR; |
| 6259 | invert_gc = gdk_gc_new_with_values(gui.drawarea->window, |
| 6260 | &values, |
| 6261 | GDK_GC_FOREGROUND | |
| 6262 | GDK_GC_BACKGROUND | |
| 6263 | GDK_GC_FUNCTION); |
| 6264 | gdk_gc_set_exposures(invert_gc, |
| 6265 | gui.visibility != GDK_VISIBILITY_UNOBSCURED); |
| 6266 | /* |
| 6267 | * Do a visual beep by changing back and forth in some undetermined way, |
| 6268 | * the foreground and background colors. This is due to the fact that |
| 6269 | * there can't be really any prediction about the effects of XOR on |
| 6270 | * arbitrary X11 servers. However this seems to be enough for what we |
| 6271 | * intend it to do. |
| 6272 | */ |
| 6273 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 6274 | TRUE, |
| 6275 | 0, 0, |
| 6276 | FILL_X((int)Columns) + gui.border_offset, |
| 6277 | FILL_Y((int)Rows) + gui.border_offset); |
| 6278 | |
| 6279 | gui_mch_flush(); |
| 6280 | ui_delay((long)msec, TRUE); /* wait so many msec */ |
| 6281 | |
| 6282 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 6283 | TRUE, |
| 6284 | 0, 0, |
| 6285 | FILL_X((int)Columns) + gui.border_offset, |
| 6286 | FILL_Y((int)Rows) + gui.border_offset); |
| 6287 | |
| 6288 | gdk_gc_destroy(invert_gc); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6289 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6290 | } |
| 6291 | |
| 6292 | /* |
| 6293 | * Invert a rectangle from row r, column c, for nr rows and nc columns. |
| 6294 | */ |
| 6295 | void |
| 6296 | gui_mch_invert_rectangle(int r, int c, int nr, int nc) |
| 6297 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6298 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 4fc563b | 2016-03-12 12:40:58 +0100 | [diff] [blame] | 6299 | const GdkRectangle rect = { |
| 6300 | FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height |
| 6301 | }; |
| 6302 | cairo_t * const cr = cairo_create(gui.surface); |
| 6303 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6304 | 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] | 6305 | # if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2) |
| 6306 | cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE); |
| 6307 | # else |
| 6308 | /* Give an implementation for older cairo versions if necessary. */ |
| 6309 | # endif |
| 6310 | gdk_cairo_rectangle(cr, &rect); |
| 6311 | cairo_fill(cr); |
| 6312 | |
| 6313 | cairo_destroy(cr); |
| 6314 | |
| 6315 | if (!gui.by_signal) |
| 6316 | gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y, |
| 6317 | rect.width, rect.height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6318 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6319 | GdkGCValues values; |
| 6320 | GdkGC *invert_gc; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6321 | |
| 6322 | if (gui.drawarea->window == NULL) |
| 6323 | return; |
| 6324 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 6325 | values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 6326 | values.background.pixel = gui.norm_pixel ^ gui.back_pixel; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6327 | values.function = GDK_XOR; |
| 6328 | invert_gc = gdk_gc_new_with_values(gui.drawarea->window, |
| 6329 | &values, |
| 6330 | GDK_GC_FOREGROUND | |
| 6331 | GDK_GC_BACKGROUND | |
| 6332 | GDK_GC_FUNCTION); |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 6333 | gdk_gc_set_exposures(invert_gc, gui.visibility != |
| 6334 | GDK_VISIBILITY_UNOBSCURED); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6335 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 6336 | TRUE, |
| 6337 | FILL_X(c), FILL_Y(r), |
| 6338 | (nc) * gui.char_width, (nr) * gui.char_height); |
| 6339 | gdk_gc_destroy(invert_gc); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6340 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6341 | } |
| 6342 | |
| 6343 | /* |
| 6344 | * Iconify the GUI window. |
| 6345 | */ |
| 6346 | void |
| 6347 | gui_mch_iconify(void) |
| 6348 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6349 | gtk_window_iconify(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6350 | } |
| 6351 | |
| 6352 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 6353 | /* |
| 6354 | * Bring the Vim window to the foreground. |
| 6355 | */ |
| 6356 | void |
| 6357 | gui_mch_set_foreground(void) |
| 6358 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6359 | gtk_window_present(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6360 | } |
| 6361 | #endif |
| 6362 | |
| 6363 | /* |
| 6364 | * Draw a cursor without focus. |
| 6365 | */ |
| 6366 | void |
| 6367 | gui_mch_draw_hollow_cursor(guicolor_T color) |
| 6368 | { |
| 6369 | int i = 1; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6370 | #if GTK_CHECK_VERSION(3,0,0) |
| 6371 | cairo_t *cr; |
| 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 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
| 6376 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6377 | if (gui.drawarea->window == NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6378 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6379 | return; |
| 6380 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6381 | #if GTK_CHECK_VERSION(3,0,0) |
| 6382 | cr = cairo_create(gui.surface); |
| 6383 | #endif |
| 6384 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6385 | gui_mch_set_fg_color(color); |
| 6386 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6387 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6388 | cairo_set_source_rgba(cr, |
| 6389 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 6390 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6391 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6392 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6393 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6394 | if (mb_lefthalve(gui.row, gui.col)) |
| 6395 | i = 2; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6396 | #if GTK_CHECK_VERSION(3,0,0) |
| 6397 | cairo_set_line_width(cr, 1.0); |
| 6398 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
| 6399 | cairo_rectangle(cr, |
| 6400 | FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5, |
| 6401 | i * gui.char_width - 1, gui.char_height - 1); |
| 6402 | cairo_stroke(cr); |
| 6403 | cairo_destroy(cr); |
| 6404 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6405 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
| 6406 | FALSE, |
| 6407 | FILL_X(gui.col), FILL_Y(gui.row), |
| 6408 | i * gui.char_width - 1, gui.char_height - 1); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6409 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6410 | } |
| 6411 | |
| 6412 | /* |
| 6413 | * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using |
| 6414 | * color "color". |
| 6415 | */ |
| 6416 | void |
| 6417 | gui_mch_draw_part_cursor(int w, int h, guicolor_T color) |
| 6418 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6419 | #if GTK_CHECK_VERSION(3,0,0) |
| 6420 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
| 6421 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6422 | if (gui.drawarea->window == NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6423 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6424 | return; |
| 6425 | |
| 6426 | gui_mch_set_fg_color(color); |
| 6427 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6428 | #if GTK_CHECK_VERSION(3,0,0) |
| 6429 | { |
| 6430 | cairo_t *cr; |
| 6431 | |
| 6432 | cr = cairo_create(gui.surface); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6433 | cairo_set_source_rgba(cr, |
| 6434 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 6435 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6436 | cairo_rectangle(cr, |
| 6437 | # ifdef FEAT_RIGHTLEFT |
| 6438 | /* vertical line should be on the right of current point */ |
| 6439 | CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : |
| 6440 | # endif |
| 6441 | FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h, |
| 6442 | w, h); |
| 6443 | cairo_fill(cr); |
| 6444 | cairo_destroy(cr); |
| 6445 | } |
| 6446 | #else /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6447 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 6448 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
| 6449 | TRUE, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6450 | # ifdef FEAT_RIGHTLEFT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6451 | /* vertical line should be on the right of current point */ |
| 6452 | CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6453 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6454 | FILL_X(gui.col), |
| 6455 | FILL_Y(gui.row) + gui.char_height - h, |
| 6456 | w, h); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6457 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6458 | } |
| 6459 | |
| 6460 | |
| 6461 | /* |
| 6462 | * Catch up with any queued X11 events. This may put keyboard input into the |
| 6463 | * input buffer, call resize call-backs, trigger timers etc. If there is |
| 6464 | * nothing in the X11 event queue (& no timers pending), then we return |
| 6465 | * immediately. |
| 6466 | */ |
| 6467 | void |
| 6468 | gui_mch_update(void) |
| 6469 | { |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 6470 | while (g_main_context_pending(NULL) && !vim_is_input_buf_full()) |
| 6471 | g_main_context_iteration(NULL, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6472 | } |
| 6473 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6474 | #if GTK_CHECK_VERSION(3,0,0) |
| 6475 | static gboolean |
| 6476 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6477 | static gint |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6478 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6479 | input_timer_cb(gpointer data) |
| 6480 | { |
| 6481 | int *timed_out = (int *) data; |
| 6482 | |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 6483 | /* Just inform the caller about the occurrence of it */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6484 | *timed_out = TRUE; |
| 6485 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6486 | return FALSE; /* don't happen again */ |
| 6487 | } |
| 6488 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6489 | /* |
| 6490 | * GUI input routine called by gui_wait_for_chars(). Waits for a character |
| 6491 | * from the keyboard. |
| 6492 | * wtime == -1 Wait forever. |
| 6493 | * wtime == 0 This should never happen. |
| 6494 | * wtime > 0 Wait wtime milliseconds for a character. |
| 6495 | * Returns OK if a character was found to be available within the given time, |
| 6496 | * or FAIL otherwise. |
| 6497 | */ |
| 6498 | int |
| 6499 | gui_mch_wait_for_chars(long wtime) |
| 6500 | { |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6501 | int focus; |
| 6502 | guint timer; |
| 6503 | static int timed_out; |
| 6504 | int retval = FAIL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6505 | |
| 6506 | timed_out = FALSE; |
| 6507 | |
| 6508 | /* this timeout makes sure that we will return if no characters arrived in |
| 6509 | * time */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6510 | if (wtime > 0) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6511 | #if GTK_CHECK_VERSION(3,0,0) |
| 6512 | timer = g_timeout_add((guint)wtime, input_timer_cb, &timed_out); |
| 6513 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6514 | timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6515 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6516 | else |
| 6517 | timer = 0; |
| 6518 | |
| 6519 | focus = gui.in_focus; |
| 6520 | |
| 6521 | do |
| 6522 | { |
| 6523 | /* Stop or start blinking when focus changes */ |
| 6524 | if (gui.in_focus != focus) |
| 6525 | { |
| 6526 | if (gui.in_focus) |
| 6527 | gui_mch_start_blink(); |
| 6528 | else |
| 6529 | gui_mch_stop_blink(); |
| 6530 | focus = gui.in_focus; |
| 6531 | } |
| 6532 | |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 6533 | #ifdef MESSAGE_QUEUE |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6534 | # ifdef FEAT_TIMERS |
| 6535 | did_add_timer = FALSE; |
| 6536 | # endif |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 6537 | parse_queued_messages(); |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6538 | # ifdef FEAT_TIMERS |
| 6539 | if (did_add_timer) |
| 6540 | /* Need to recompute the waiting time. */ |
| 6541 | goto theend; |
| 6542 | # endif |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 6543 | #endif |
| 6544 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6545 | /* |
| 6546 | * Loop in GTK+ processing until a timeout or input occurs. |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 6547 | * Skip this if input is available anyway (can happen in rare |
| 6548 | * situations, sort of race condition). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6549 | */ |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 6550 | if (!input_available()) |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 6551 | g_main_context_iteration(NULL, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6552 | |
| 6553 | /* Got char, return immediately */ |
| 6554 | if (input_available()) |
| 6555 | { |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6556 | retval = OK; |
| 6557 | goto theend; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6558 | } |
| 6559 | } while (wtime < 0 || !timed_out); |
| 6560 | |
| 6561 | /* |
| 6562 | * Flush all eventually pending (drawing) events. |
| 6563 | */ |
| 6564 | gui_mch_update(); |
| 6565 | |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6566 | theend: |
| 6567 | if (timer != 0 && !timed_out) |
| 6568 | #if GTK_CHECK_VERSION(3,0,0) |
| 6569 | g_source_remove(timer); |
| 6570 | #else |
| 6571 | gtk_timeout_remove(timer); |
| 6572 | #endif |
| 6573 | |
| 6574 | return retval; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6575 | } |
| 6576 | |
| 6577 | |
| 6578 | /**************************************************************************** |
| 6579 | * Output drawing routines. |
| 6580 | ****************************************************************************/ |
| 6581 | |
| 6582 | |
| 6583 | /* Flush any output to the screen */ |
| 6584 | void |
| 6585 | gui_mch_flush(void) |
| 6586 | { |
| 6587 | #ifdef HAVE_GTK_MULTIHEAD |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6588 | # if GTK_CHECK_VERSION(3,0,0) |
| 6589 | if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
| 6590 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6591 | if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6592 | # endif |
Bram Moolenaar | fdadad9 | 2016-07-15 17:49:58 +0200 | [diff] [blame] | 6593 | gdk_display_flush(gtk_widget_get_display(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6594 | #else |
| 6595 | gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */ |
| 6596 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6597 | } |
| 6598 | |
| 6599 | /* |
| 6600 | * Clear a rectangular region of the screen from text pos (row1, col1) to |
| 6601 | * (row2, col2) inclusive. |
| 6602 | */ |
| 6603 | void |
| 6604 | gui_mch_clear_block(int row1, int col1, int row2, int col2) |
| 6605 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6606 | #if GTK_CHECK_VERSION(3,0,0) |
| 6607 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
| 6608 | return; |
| 6609 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6610 | GdkColor color; |
| 6611 | |
| 6612 | if (gui.drawarea->window == NULL) |
| 6613 | return; |
| 6614 | |
| 6615 | color.pixel = gui.back_pixel; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6616 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6617 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6618 | #if GTK_CHECK_VERSION(3,0,0) |
| 6619 | { |
| 6620 | /* Add one pixel to the far right column in case a double-stroked |
| 6621 | * bold glyph may sit there. */ |
| 6622 | const GdkRectangle rect = { |
| 6623 | FILL_X(col1), FILL_Y(row1), |
| 6624 | (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1), |
| 6625 | (row2 - row1 + 1) * gui.char_height |
| 6626 | }; |
| 6627 | GdkWindow * const win = gtk_widget_get_window(gui.drawarea); |
| 6628 | cairo_t * const cr = cairo_create(gui.surface); |
| 6629 | cairo_pattern_t * const pat = gdk_window_get_background_pattern(win); |
| 6630 | if (pat != NULL) |
| 6631 | cairo_set_source(cr, pat); |
| 6632 | else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6633 | set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6634 | gdk_cairo_rectangle(cr, &rect); |
| 6635 | cairo_fill(cr); |
| 6636 | cairo_destroy(cr); |
| 6637 | |
| 6638 | if (!gui.by_signal) |
| 6639 | gdk_window_invalidate_rect(win, &rect, FALSE); |
| 6640 | } |
| 6641 | #else /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6642 | gdk_gc_set_foreground(gui.text_gc, &color); |
| 6643 | |
| 6644 | /* Clear one extra pixel at the far right, for when bold characters have |
| 6645 | * spilled over to the window border. */ |
| 6646 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE, |
| 6647 | FILL_X(col1), FILL_Y(row1), |
| 6648 | (col2 - col1 + 1) * gui.char_width |
| 6649 | + (col2 == Columns - 1), |
| 6650 | (row2 - row1 + 1) * gui.char_height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6651 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6652 | } |
| 6653 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6654 | #if GTK_CHECK_VERSION(3,0,0) |
| 6655 | static void |
| 6656 | gui_gtk_window_clear(GdkWindow *win) |
| 6657 | { |
| 6658 | const GdkRectangle rect = { |
| 6659 | 0, 0, gdk_window_get_width(win), gdk_window_get_height(win) |
| 6660 | }; |
| 6661 | cairo_t * const cr = cairo_create(gui.surface); |
| 6662 | cairo_pattern_t * const pat = gdk_window_get_background_pattern(win); |
| 6663 | if (pat != NULL) |
| 6664 | cairo_set_source(cr, pat); |
| 6665 | else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6666 | set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6667 | gdk_cairo_rectangle(cr, &rect); |
| 6668 | cairo_fill(cr); |
| 6669 | cairo_destroy(cr); |
| 6670 | |
| 6671 | if (!gui.by_signal) |
| 6672 | gdk_window_invalidate_rect(win, &rect, FALSE); |
| 6673 | } |
| 6674 | #endif |
| 6675 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6676 | void |
| 6677 | gui_mch_clear_all(void) |
| 6678 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6679 | #if GTK_CHECK_VERSION(3,0,0) |
| 6680 | if (gtk_widget_get_window(gui.drawarea) != NULL) |
| 6681 | gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea)); |
| 6682 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6683 | if (gui.drawarea->window != NULL) |
| 6684 | gdk_window_clear(gui.drawarea->window); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6685 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6686 | } |
| 6687 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6688 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6689 | /* |
| 6690 | * Redraw any text revealed by scrolling up/down. |
| 6691 | */ |
| 6692 | static void |
| 6693 | check_copy_area(void) |
| 6694 | { |
| 6695 | GdkEvent *event; |
| 6696 | int expose_count; |
| 6697 | |
| 6698 | if (gui.visibility != GDK_VISIBILITY_PARTIAL) |
| 6699 | return; |
| 6700 | |
| 6701 | /* Avoid redrawing the cursor while scrolling or it'll end up where |
| 6702 | * we don't want it to be. I'm not sure if it's correct to call |
| 6703 | * gui_dont_update_cursor() at this point but it works as a quick |
| 6704 | * fix for now. */ |
Bram Moolenaar | 107abd2 | 2016-08-12 14:08:25 +0200 | [diff] [blame] | 6705 | gui_dont_update_cursor(TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6706 | |
| 6707 | do |
| 6708 | { |
| 6709 | /* Wait to check whether the scroll worked or not. */ |
| 6710 | event = gdk_event_get_graphics_expose(gui.drawarea->window); |
| 6711 | |
| 6712 | if (event == NULL) |
| 6713 | break; /* received NoExpose event */ |
| 6714 | |
| 6715 | gui_redraw(event->expose.area.x, event->expose.area.y, |
| 6716 | event->expose.area.width, event->expose.area.height); |
| 6717 | |
| 6718 | expose_count = event->expose.count; |
| 6719 | gdk_event_free(event); |
| 6720 | } |
| 6721 | while (expose_count > 0); /* more events follow */ |
| 6722 | |
| 6723 | gui_can_update_cursor(); |
| 6724 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6725 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
| 6726 | |
| 6727 | #if GTK_CHECK_VERSION(3,0,0) |
| 6728 | static void |
| 6729 | gui_gtk_surface_copy_rect(int dest_x, int dest_y, |
| 6730 | int src_x, int src_y, |
| 6731 | int width, int height) |
| 6732 | { |
| 6733 | cairo_t * const cr = cairo_create(gui.surface); |
| 6734 | |
| 6735 | cairo_rectangle(cr, dest_x, dest_y, width, height); |
| 6736 | cairo_clip(cr); |
| 6737 | cairo_push_group(cr); |
| 6738 | cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y); |
| 6739 | cairo_paint(cr); |
| 6740 | cairo_pop_group_to_source(cr); |
| 6741 | cairo_paint(cr); |
| 6742 | |
| 6743 | cairo_destroy(cr); |
| 6744 | } |
| 6745 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6746 | |
| 6747 | /* |
| 6748 | * Delete the given number of lines from the given row, scrolling up any |
| 6749 | * text further down within the scroll region. |
| 6750 | */ |
| 6751 | void |
| 6752 | gui_mch_delete_lines(int row, int num_lines) |
| 6753 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6754 | #if GTK_CHECK_VERSION(3,0,0) |
| 6755 | const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1; |
| 6756 | const int nrows = gui.scroll_region_bot - row + 1; |
| 6757 | const int src_nrows = nrows - num_lines; |
| 6758 | |
| 6759 | gui_gtk_surface_copy_rect( |
| 6760 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6761 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 6762 | gui.char_width * ncols + 1, gui.char_height * src_nrows); |
| 6763 | gui_clear_block( |
| 6764 | gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left, |
| 6765 | gui.scroll_region_bot, gui.scroll_region_right); |
| 6766 | gui_gtk3_redraw( |
| 6767 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6768 | gui.char_width * ncols + 1, gui.char_height * nrows); |
| 6769 | if (!gui.by_signal) |
| 6770 | gtk_widget_queue_draw_area(gui.drawarea, |
| 6771 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6772 | gui.char_width * ncols + 1, gui.char_height * nrows); |
| 6773 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6774 | if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
| 6775 | return; /* Can't see the window */ |
| 6776 | |
| 6777 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 6778 | gdk_gc_set_background(gui.text_gc, gui.bgcolor); |
| 6779 | |
| 6780 | /* copy one extra pixel, for when bold has spilled over */ |
| 6781 | gdk_window_copy_area(gui.drawarea->window, gui.text_gc, |
| 6782 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6783 | gui.drawarea->window, |
| 6784 | FILL_X(gui.scroll_region_left), |
| 6785 | FILL_Y(row + num_lines), |
| 6786 | gui.char_width * (gui.scroll_region_right |
| 6787 | - gui.scroll_region_left + 1) + 1, |
| 6788 | gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); |
| 6789 | |
| 6790 | gui_clear_block(gui.scroll_region_bot - num_lines + 1, |
| 6791 | gui.scroll_region_left, |
| 6792 | gui.scroll_region_bot, gui.scroll_region_right); |
| 6793 | check_copy_area(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6794 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6795 | } |
| 6796 | |
| 6797 | /* |
| 6798 | * Insert the given number of lines before the given row, scrolling down any |
| 6799 | * following text within the scroll region. |
| 6800 | */ |
| 6801 | void |
| 6802 | gui_mch_insert_lines(int row, int num_lines) |
| 6803 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6804 | #if GTK_CHECK_VERSION(3,0,0) |
| 6805 | const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1; |
| 6806 | const int nrows = gui.scroll_region_bot - row + 1; |
| 6807 | const int src_nrows = nrows - num_lines; |
| 6808 | |
| 6809 | gui_gtk_surface_copy_rect( |
| 6810 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 6811 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6812 | gui.char_width * ncols + 1, gui.char_height * src_nrows); |
| 6813 | gui_mch_clear_block( |
| 6814 | row, gui.scroll_region_left, |
| 6815 | row + num_lines - 1, gui.scroll_region_right); |
| 6816 | gui_gtk3_redraw( |
| 6817 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6818 | gui.char_width * ncols + 1, gui.char_height * nrows); |
| 6819 | if (!gui.by_signal) |
| 6820 | gtk_widget_queue_draw_area(gui.drawarea, |
| 6821 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6822 | gui.char_width * ncols + 1, gui.char_height * nrows); |
| 6823 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6824 | if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
| 6825 | return; /* Can't see the window */ |
| 6826 | |
| 6827 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 6828 | gdk_gc_set_background(gui.text_gc, gui.bgcolor); |
| 6829 | |
| 6830 | /* copy one extra pixel, for when bold has spilled over */ |
| 6831 | gdk_window_copy_area(gui.drawarea->window, gui.text_gc, |
| 6832 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 6833 | gui.drawarea->window, |
| 6834 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6835 | gui.char_width * (gui.scroll_region_right |
| 6836 | - gui.scroll_region_left + 1) + 1, |
| 6837 | gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); |
| 6838 | |
| 6839 | gui_clear_block(row, gui.scroll_region_left, |
| 6840 | row + num_lines - 1, gui.scroll_region_right); |
| 6841 | check_copy_area(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6842 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6843 | } |
| 6844 | |
| 6845 | /* |
| 6846 | * X Selection stuff, for cutting and pasting text to other windows. |
| 6847 | */ |
| 6848 | void |
| 6849 | clip_mch_request_selection(VimClipboard *cbd) |
| 6850 | { |
| 6851 | GdkAtom target; |
| 6852 | unsigned i; |
Bram Moolenaar | 51b5ab9 | 2008-01-06 14:17:07 +0000 | [diff] [blame] | 6853 | time_t start; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6854 | |
| 6855 | for (i = 0; i < N_SELECTION_TARGETS; ++i) |
| 6856 | { |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 6857 | if (!clip_html && selection_targets[i].info == TARGET_HTML) |
| 6858 | continue; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6859 | received_selection = RS_NONE; |
| 6860 | target = gdk_atom_intern(selection_targets[i].target, FALSE); |
| 6861 | |
| 6862 | gtk_selection_convert(gui.drawarea, |
| 6863 | cbd->gtk_sel_atom, target, |
| 6864 | (guint32)GDK_CURRENT_TIME); |
| 6865 | |
Bram Moolenaar | 51b5ab9 | 2008-01-06 14:17:07 +0000 | [diff] [blame] | 6866 | /* Hack: Wait up to three seconds for the selection. A hang was |
| 6867 | * noticed here when using the netrw plugin combined with ":gui" |
| 6868 | * during the FocusGained event. */ |
| 6869 | start = time(NULL); |
| 6870 | while (received_selection == RS_NONE && time(NULL) < start + 3) |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 6871 | g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6872 | |
| 6873 | if (received_selection != RS_FAIL) |
| 6874 | return; |
| 6875 | } |
| 6876 | |
| 6877 | /* Final fallback position - use the X CUT_BUFFER0 store */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6878 | #if GTK_CHECK_VERSION(3,0,0) |
| 6879 | yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)), |
| 6880 | cbd); |
| 6881 | #else |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 6882 | yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6883 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6884 | } |
| 6885 | |
| 6886 | /* |
| 6887 | * Disown the selection. |
| 6888 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6889 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 6890 | clip_mch_lose_selection(VimClipboard *cbd UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6891 | { |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 6892 | gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6893 | gui_mch_update(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6894 | } |
| 6895 | |
| 6896 | /* |
| 6897 | * Own the selection and return OK if it worked. |
| 6898 | */ |
| 6899 | int |
| 6900 | clip_mch_own_selection(VimClipboard *cbd) |
| 6901 | { |
| 6902 | int success; |
| 6903 | |
| 6904 | success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom, |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 6905 | gui.event_time); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6906 | gui_mch_update(); |
| 6907 | return (success) ? OK : FAIL; |
| 6908 | } |
| 6909 | |
| 6910 | /* |
| 6911 | * Send the current selection to the clipboard. Do nothing for X because we |
| 6912 | * will fill in the selection only when requested by another app. |
| 6913 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6914 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 6915 | clip_mch_set_selection(VimClipboard *cbd UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6916 | { |
| 6917 | } |
| 6918 | |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 6919 | int |
| 6920 | clip_gtk_owner_exists(VimClipboard *cbd) |
| 6921 | { |
| 6922 | return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL; |
| 6923 | } |
| 6924 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6925 | |
| 6926 | #if defined(FEAT_MENU) || defined(PROTO) |
| 6927 | /* |
| 6928 | * Make a menu item appear either active or not active (grey or not grey). |
| 6929 | */ |
| 6930 | void |
| 6931 | gui_mch_menu_grey(vimmenu_T *menu, int grey) |
| 6932 | { |
| 6933 | if (menu->id == NULL) |
| 6934 | return; |
| 6935 | |
| 6936 | if (menu_is_separator(menu->name)) |
| 6937 | grey = TRUE; |
| 6938 | |
| 6939 | gui_mch_menu_hidden(menu, FALSE); |
| 6940 | /* Be clever about bitfields versus true booleans here! */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6941 | # if GTK_CHECK_VERSION(3,0,0) |
| 6942 | if (!gtk_widget_get_sensitive(menu->id) == !grey) |
| 6943 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6944 | if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6945 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6946 | { |
| 6947 | gtk_widget_set_sensitive(menu->id, !grey); |
| 6948 | gui_mch_update(); |
| 6949 | } |
| 6950 | } |
| 6951 | |
| 6952 | /* |
| 6953 | * Make menu item hidden or not hidden. |
| 6954 | */ |
| 6955 | void |
| 6956 | gui_mch_menu_hidden(vimmenu_T *menu, int hidden) |
| 6957 | { |
| 6958 | if (menu->id == 0) |
| 6959 | return; |
| 6960 | |
| 6961 | if (hidden) |
| 6962 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6963 | # if GTK_CHECK_VERSION(3,0,0) |
| 6964 | if (gtk_widget_get_visible(menu->id)) |
| 6965 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6966 | if (GTK_WIDGET_VISIBLE(menu->id)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6967 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6968 | { |
| 6969 | gtk_widget_hide(menu->id); |
| 6970 | gui_mch_update(); |
| 6971 | } |
| 6972 | } |
| 6973 | else |
| 6974 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6975 | # if GTK_CHECK_VERSION(3,0,0) |
| 6976 | if (!gtk_widget_get_visible(menu->id)) |
| 6977 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6978 | if (!GTK_WIDGET_VISIBLE(menu->id)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6979 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6980 | { |
| 6981 | gtk_widget_show(menu->id); |
| 6982 | gui_mch_update(); |
| 6983 | } |
| 6984 | } |
| 6985 | } |
| 6986 | |
| 6987 | /* |
| 6988 | * This is called after setting all the menus to grey/hidden or not. |
| 6989 | */ |
| 6990 | void |
| 6991 | gui_mch_draw_menubar(void) |
| 6992 | { |
| 6993 | /* just make sure that the visual changes get effect immediately */ |
| 6994 | gui_mch_update(); |
| 6995 | } |
| 6996 | #endif /* FEAT_MENU */ |
| 6997 | |
| 6998 | /* |
| 6999 | * Scrollbar stuff. |
| 7000 | */ |
| 7001 | void |
| 7002 | gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) |
| 7003 | { |
| 7004 | if (sb->id == NULL) |
| 7005 | return; |
| 7006 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7007 | #if GTK_CHECK_VERSION(3,0,0) |
| 7008 | gtk_widget_set_visible(sb->id, flag); |
| 7009 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7010 | if (flag) |
| 7011 | gtk_widget_show(sb->id); |
| 7012 | else |
| 7013 | gtk_widget_hide(sb->id); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7014 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7015 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 7016 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7017 | } |
| 7018 | |
| 7019 | |
| 7020 | /* |
| 7021 | * Return the RGB value of a pixel as long. |
| 7022 | */ |
Bram Moolenaar | 1b58cdd | 2016-08-22 23:04:33 +0200 | [diff] [blame] | 7023 | guicolor_T |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7024 | gui_mch_get_rgb(guicolor_T pixel) |
| 7025 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7026 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 7027 | return (long_u)pixel; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7028 | #else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 7029 | GdkColor color; |
| 7030 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7031 | gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea), |
| 7032 | (unsigned long)pixel, &color); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7033 | |
Bram Moolenaar | 1b58cdd | 2016-08-22 23:04:33 +0200 | [diff] [blame] | 7034 | return (guicolor_T)( |
| 7035 | (((unsigned)color.red & 0xff00) << 8) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7036 | | ((unsigned)color.green & 0xff00) |
Bram Moolenaar | 1b58cdd | 2016-08-22 23:04:33 +0200 | [diff] [blame] | 7037 | | (((unsigned)color.blue & 0xff00) >> 8)); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 7038 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7039 | } |
| 7040 | |
| 7041 | /* |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 7042 | * Get current mouse coordinates in text window. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7043 | */ |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 7044 | void |
| 7045 | gui_mch_getmouse(int *x, int *y) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7046 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7047 | #if GTK_CHECK_VERSION(3,0,0) |
| 7048 | gui_gtk_get_pointer(gui.drawarea, x, y, NULL); |
| 7049 | #else |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 7050 | gdk_window_get_pointer(gui.drawarea->window, x, y, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7051 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7052 | } |
| 7053 | |
| 7054 | void |
| 7055 | gui_mch_setmouse(int x, int y) |
| 7056 | { |
| 7057 | /* Sorry for the Xlib call, but we can't avoid it, since there is no |
| 7058 | * internal GDK mechanism present to accomplish this. (and for good |
| 7059 | * reason...) */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7060 | #if GTK_CHECK_VERSION(3,0,0) |
| 7061 | XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)), |
| 7062 | (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)), |
| 7063 | 0, 0, 0U, 0U, x, y); |
| 7064 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7065 | XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window), |
| 7066 | (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window), |
| 7067 | 0, 0, 0U, 0U, x, y); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7068 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7069 | } |
| 7070 | |
| 7071 | |
| 7072 | #ifdef FEAT_MOUSESHAPE |
| 7073 | /* The last set mouse pointer shape is remembered, to be used when it goes |
| 7074 | * from hidden to not hidden. */ |
| 7075 | static int last_shape = 0; |
| 7076 | #endif |
| 7077 | |
| 7078 | /* |
| 7079 | * Use the blank mouse pointer or not. |
| 7080 | * |
| 7081 | * hide: TRUE = use blank ptr, FALSE = use parent ptr |
| 7082 | */ |
| 7083 | void |
| 7084 | gui_mch_mousehide(int hide) |
| 7085 | { |
| 7086 | if (gui.pointer_hidden != hide) |
| 7087 | { |
| 7088 | gui.pointer_hidden = hide; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7089 | #if GTK_CHECK_VERSION(3,0,0) |
| 7090 | if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL) |
| 7091 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7092 | if (gui.drawarea->window && gui.blank_pointer != NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7093 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7094 | { |
| 7095 | if (hide) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7096 | #if GTK_CHECK_VERSION(3,0,0) |
| 7097 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
| 7098 | gui.blank_pointer); |
| 7099 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7100 | gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7101 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7102 | else |
| 7103 | #ifdef FEAT_MOUSESHAPE |
| 7104 | mch_set_mouse_shape(last_shape); |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 7105 | #elif GTK_CHECK_VERSION(3,0,0) |
| 7106 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7107 | #else |
| 7108 | gdk_window_set_cursor(gui.drawarea->window, NULL); |
| 7109 | #endif |
| 7110 | } |
| 7111 | } |
| 7112 | } |
| 7113 | |
| 7114 | #if defined(FEAT_MOUSESHAPE) || defined(PROTO) |
| 7115 | |
| 7116 | /* Table for shape IDs. Keep in sync with the mshape_names[] table in |
| 7117 | * misc2.c! */ |
| 7118 | static const int mshape_ids[] = |
| 7119 | { |
| 7120 | GDK_LEFT_PTR, /* arrow */ |
| 7121 | GDK_CURSOR_IS_PIXMAP, /* blank */ |
| 7122 | GDK_XTERM, /* beam */ |
| 7123 | GDK_SB_V_DOUBLE_ARROW, /* updown */ |
| 7124 | GDK_SIZING, /* udsizing */ |
| 7125 | GDK_SB_H_DOUBLE_ARROW, /* leftright */ |
| 7126 | GDK_SIZING, /* lrsizing */ |
| 7127 | GDK_WATCH, /* busy */ |
| 7128 | GDK_X_CURSOR, /* no */ |
| 7129 | GDK_CROSSHAIR, /* crosshair */ |
| 7130 | GDK_HAND1, /* hand1 */ |
| 7131 | GDK_HAND2, /* hand2 */ |
| 7132 | GDK_PENCIL, /* pencil */ |
| 7133 | GDK_QUESTION_ARROW, /* question */ |
| 7134 | GDK_RIGHT_PTR, /* right-arrow */ |
| 7135 | GDK_CENTER_PTR, /* up-arrow */ |
| 7136 | GDK_LEFT_PTR /* last one */ |
| 7137 | }; |
| 7138 | |
| 7139 | void |
| 7140 | mch_set_mouse_shape(int shape) |
| 7141 | { |
| 7142 | int id; |
| 7143 | GdkCursor *c; |
| 7144 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7145 | # if GTK_CHECK_VERSION(3,0,0) |
| 7146 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
| 7147 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7148 | if (gui.drawarea->window == NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7149 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7150 | return; |
| 7151 | |
| 7152 | if (shape == MSHAPE_HIDE || gui.pointer_hidden) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7153 | # if GTK_CHECK_VERSION(3,0,0) |
| 7154 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
| 7155 | gui.blank_pointer); |
| 7156 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7157 | gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7158 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7159 | else |
| 7160 | { |
| 7161 | if (shape >= MSHAPE_NUMBERED) |
| 7162 | { |
| 7163 | id = shape - MSHAPE_NUMBERED; |
| 7164 | if (id >= GDK_LAST_CURSOR) |
| 7165 | id = GDK_LEFT_PTR; |
| 7166 | else |
| 7167 | id &= ~1; /* they are always even (why?) */ |
| 7168 | } |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 7169 | else if (shape < (int)(sizeof(mshape_ids) / sizeof(int))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7170 | id = mshape_ids[shape]; |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 7171 | else |
| 7172 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7173 | # ifdef HAVE_GTK_MULTIHEAD |
| 7174 | c = gdk_cursor_new_for_display( |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 7175 | gtk_widget_get_display(gui.drawarea), (GdkCursorType)id); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7176 | # else |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 7177 | c = gdk_cursor_new((GdkCursorType)id); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7178 | # endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7179 | # if GTK_CHECK_VERSION(3,0,0) |
| 7180 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c); |
| 7181 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7182 | gdk_window_set_cursor(gui.drawarea->window, c); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7183 | # endif |
| 7184 | # if GTK_CHECK_VERSION(3,0,0) |
| 7185 | g_object_unref(G_OBJECT(c)); |
| 7186 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7187 | gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7188 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7189 | } |
| 7190 | if (shape != MSHAPE_HIDE) |
| 7191 | last_shape = shape; |
| 7192 | } |
| 7193 | #endif /* FEAT_MOUSESHAPE */ |
| 7194 | |
| 7195 | |
| 7196 | #if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
| 7197 | /* |
| 7198 | * Signs are currently always 2 chars wide. With GTK+ 2, the image will be |
| 7199 | * scaled down if the current font is not big enough, or scaled up if the image |
| 7200 | * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap |
| 7201 | * will be cut off if the current font is not big enough, or centered if it's |
| 7202 | * too small. |
| 7203 | */ |
| 7204 | # define SIGN_WIDTH (2 * gui.char_width) |
| 7205 | # define SIGN_HEIGHT (gui.char_height) |
| 7206 | # define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH) |
| 7207 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7208 | void |
| 7209 | gui_mch_drawsign(int row, int col, int typenr) |
| 7210 | { |
| 7211 | GdkPixbuf *sign; |
| 7212 | |
| 7213 | sign = (GdkPixbuf *)sign_get_image(typenr); |
| 7214 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7215 | # if GTK_CHECK_VERSION(3,0,0) |
| 7216 | if (sign != NULL && gui.drawarea != NULL |
| 7217 | && gtk_widget_get_window(gui.drawarea) != NULL) |
| 7218 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7219 | if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7220 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7221 | { |
| 7222 | int width; |
| 7223 | int height; |
| 7224 | int xoffset; |
| 7225 | int yoffset; |
| 7226 | int need_scale; |
| 7227 | |
| 7228 | width = gdk_pixbuf_get_width(sign); |
| 7229 | height = gdk_pixbuf_get_height(sign); |
| 7230 | /* |
| 7231 | * Decide whether we need to scale. Allow one pixel of border |
| 7232 | * width to be cut off, in order to avoid excessive scaling for |
| 7233 | * tiny differences in font size. |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7234 | * Do scale to fit the height to avoid gaps because of linespacing. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7235 | */ |
| 7236 | need_scale = (width > SIGN_WIDTH + 2 |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7237 | || height != SIGN_HEIGHT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7238 | || (width < 3 * SIGN_WIDTH / 4 |
| 7239 | && height < 3 * SIGN_HEIGHT / 4)); |
| 7240 | if (need_scale) |
| 7241 | { |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7242 | double aspect; |
| 7243 | int w = width; |
| 7244 | int h = height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7245 | |
| 7246 | /* Keep the original aspect ratio */ |
| 7247 | aspect = (double)height / (double)width; |
| 7248 | width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect; |
| 7249 | width = MIN(width, SIGN_WIDTH); |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7250 | if (((double)(MAX(height, SIGN_HEIGHT)) / |
| 7251 | (double)(MIN(height, SIGN_HEIGHT))) < 1.15) |
| 7252 | { |
| 7253 | /* Change the aspect ratio by at most 15% to fill the |
| 7254 | * available space completly. */ |
| 7255 | height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect; |
| 7256 | height = MIN(height, SIGN_HEIGHT); |
| 7257 | } |
| 7258 | else |
| 7259 | height = (double)width * aspect; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7260 | |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7261 | if (w == width && h == height) |
| 7262 | { |
| 7263 | /* no change in dimensions; don't decrease reference counter |
| 7264 | * (below) */ |
| 7265 | need_scale = FALSE; |
| 7266 | } |
| 7267 | else |
| 7268 | { |
| 7269 | /* This doesn't seem to be worth caching, and doing so would |
| 7270 | * complicate the code quite a bit. */ |
| 7271 | sign = gdk_pixbuf_scale_simple(sign, width, height, |
| 7272 | GDK_INTERP_BILINEAR); |
| 7273 | if (sign == NULL) |
| 7274 | return; /* out of memory */ |
| 7275 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7276 | } |
| 7277 | |
| 7278 | /* The origin is the upper-left corner of the pixmap. Therefore |
| 7279 | * these offset may become negative if the pixmap is smaller than |
| 7280 | * the 2x1 cells reserved for the sign icon. */ |
| 7281 | xoffset = (width - SIGN_WIDTH) / 2; |
| 7282 | yoffset = (height - SIGN_HEIGHT) / 2; |
| 7283 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7284 | # if GTK_CHECK_VERSION(3,0,0) |
| 7285 | { |
| 7286 | cairo_t *cr; |
| 7287 | cairo_surface_t *bg_surf; |
| 7288 | cairo_t *bg_cr; |
| 7289 | cairo_surface_t *sign_surf; |
| 7290 | cairo_t *sign_cr; |
| 7291 | |
| 7292 | cr = cairo_create(gui.surface); |
| 7293 | |
| 7294 | bg_surf = cairo_surface_create_similar(gui.surface, |
| 7295 | cairo_surface_get_content(gui.surface), |
| 7296 | SIGN_WIDTH, SIGN_HEIGHT); |
| 7297 | bg_cr = cairo_create(bg_surf); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 7298 | cairo_set_source_rgba(bg_cr, |
| 7299 | gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue, |
| 7300 | gui.bgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7301 | cairo_paint(bg_cr); |
| 7302 | |
| 7303 | sign_surf = cairo_surface_create_similar(gui.surface, |
| 7304 | cairo_surface_get_content(gui.surface), |
| 7305 | SIGN_WIDTH, SIGN_HEIGHT); |
| 7306 | sign_cr = cairo_create(sign_surf); |
| 7307 | gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset); |
| 7308 | cairo_paint(sign_cr); |
| 7309 | |
| 7310 | cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER); |
| 7311 | cairo_set_source_surface(sign_cr, bg_surf, 0, 0); |
| 7312 | cairo_paint(sign_cr); |
| 7313 | |
| 7314 | cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row)); |
| 7315 | cairo_paint(cr); |
| 7316 | |
| 7317 | cairo_destroy(sign_cr); |
| 7318 | cairo_surface_destroy(sign_surf); |
| 7319 | cairo_destroy(bg_cr); |
| 7320 | cairo_surface_destroy(bg_surf); |
| 7321 | cairo_destroy(cr); |
| 7322 | |
| 7323 | if (!gui.by_signal) |
| 7324 | gtk_widget_queue_draw_area(gui.drawarea, |
| 7325 | FILL_X(col), FILL_Y(col), width, height); |
| 7326 | |
| 7327 | } |
| 7328 | # else /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7329 | gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
| 7330 | |
| 7331 | gdk_draw_rectangle(gui.drawarea->window, |
| 7332 | gui.text_gc, |
| 7333 | TRUE, |
| 7334 | FILL_X(col), |
| 7335 | FILL_Y(row), |
| 7336 | SIGN_WIDTH, |
| 7337 | SIGN_HEIGHT); |
| 7338 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7339 | gdk_pixbuf_render_to_drawable_alpha(sign, |
| 7340 | gui.drawarea->window, |
| 7341 | MAX(0, xoffset), |
| 7342 | MAX(0, yoffset), |
| 7343 | FILL_X(col) - MIN(0, xoffset), |
| 7344 | FILL_Y(row) - MIN(0, yoffset), |
| 7345 | MIN(width, SIGN_WIDTH), |
| 7346 | MIN(height, SIGN_HEIGHT), |
| 7347 | GDK_PIXBUF_ALPHA_BILEVEL, |
| 7348 | 127, |
| 7349 | GDK_RGB_DITHER_NORMAL, |
| 7350 | 0, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7351 | # endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7352 | if (need_scale) |
| 7353 | g_object_unref(sign); |
| 7354 | } |
| 7355 | } |
| 7356 | |
| 7357 | void * |
| 7358 | gui_mch_register_sign(char_u *signfile) |
| 7359 | { |
| 7360 | if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use) |
| 7361 | { |
| 7362 | GdkPixbuf *sign; |
| 7363 | GError *error = NULL; |
| 7364 | char_u *message; |
| 7365 | |
| 7366 | sign = gdk_pixbuf_new_from_file((const char *)signfile, &error); |
| 7367 | |
| 7368 | if (error == NULL) |
| 7369 | return sign; |
| 7370 | |
| 7371 | message = (char_u *)error->message; |
| 7372 | |
| 7373 | if (message != NULL && input_conv.vc_type != CONV_NONE) |
| 7374 | message = string_convert(&input_conv, message, NULL); |
| 7375 | |
| 7376 | if (message != NULL) |
| 7377 | { |
| 7378 | /* The error message is already translated and will be more |
| 7379 | * descriptive than anything we could possibly do ourselves. */ |
| 7380 | EMSG2("E255: %s", message); |
| 7381 | |
| 7382 | if (input_conv.vc_type != CONV_NONE) |
| 7383 | vim_free(message); |
| 7384 | } |
| 7385 | g_error_free(error); |
| 7386 | } |
| 7387 | |
| 7388 | return NULL; |
| 7389 | } |
| 7390 | |
| 7391 | void |
| 7392 | gui_mch_destroy_sign(void *sign) |
| 7393 | { |
| 7394 | if (sign != NULL) |
| 7395 | g_object_unref(sign); |
| 7396 | } |
| 7397 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7398 | #endif /* FEAT_SIGN_ICONS */ |