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. |
| 545 | * Must start the GUI for this, otherwise ":gui" will exit later! */ |
| 546 | if (option->flags & ARG_NEEDS_GUI) |
| 547 | gui.starting = TRUE; |
| 548 | |
| 549 | if (option->flags & ARG_KEEP) |
| 550 | ++i; |
| 551 | else |
| 552 | { |
| 553 | /* Remove the flag from the argument vector. */ |
| 554 | if (--*argc > i) |
| 555 | { |
| 556 | int n_strip = 1; |
| 557 | |
| 558 | /* Move the argument's value as well, if there is one. */ |
| 559 | if ((option->flags & ARG_HAS_VALUE) |
| 560 | && argv[i][len] != '=' |
| 561 | && strcmp(argv[i + 1], "--") != 0) |
| 562 | { |
| 563 | ++n_strip; |
| 564 | --*argc; |
| 565 | if (option->flags & ARG_FOR_GTK) |
| 566 | gui_argv[gui_argc++] = argv[i + 1]; |
| 567 | } |
| 568 | |
| 569 | if (*argc > i) |
| 570 | mch_memmove(&argv[i], &argv[i + n_strip], |
| 571 | (*argc - i) * sizeof(char *)); |
| 572 | } |
| 573 | argv[*argc] = NULL; |
| 574 | } |
| 575 | } |
| 576 | |
| 577 | gui_argv[gui_argc] = NULL; |
| 578 | } |
| 579 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 580 | #if defined(EXITFREE) || defined(PROTO) |
| 581 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 582 | gui_mch_free_all(void) |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 583 | { |
| 584 | vim_free(gui_argv); |
Bram Moolenaar | 9085f80 | 2009-06-03 14:20:21 +0000 | [diff] [blame] | 585 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 586 | vim_free(abs_restart_command); |
| 587 | #endif |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 588 | } |
| 589 | #endif |
| 590 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 591 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 592 | /* |
| 593 | * This should be maybe completely removed. |
| 594 | * Doesn't seem possible, since check_copy_area() relies on |
| 595 | * this information. --danielk |
| 596 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 597 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 598 | visibility_event(GtkWidget *widget UNUSED, |
| 599 | GdkEventVisibility *event, |
| 600 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 601 | { |
| 602 | gui.visibility = event->state; |
| 603 | /* |
| 604 | * When we do an gdk_window_copy_area(), and the window is partially |
| 605 | * obscured, we want to receive an event to tell us whether it worked |
| 606 | * or not. |
| 607 | */ |
| 608 | if (gui.text_gc != NULL) |
| 609 | gdk_gc_set_exposures(gui.text_gc, |
| 610 | gui.visibility != GDK_VISIBILITY_UNOBSCURED); |
| 611 | return FALSE; |
| 612 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 613 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 614 | |
| 615 | /* |
| 616 | * Redraw the corresponding portions of the screen. |
| 617 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 618 | #if GTK_CHECK_VERSION(3,0,0) |
| 619 | static gboolean is_key_pressed = FALSE; |
Bram Moolenaar | 0ecbe33 | 2016-03-05 22:40:52 +0100 | [diff] [blame] | 620 | static gboolean blink_mode = TRUE; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 621 | |
| 622 | static gboolean gui_gtk_is_blink_on(void); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 623 | static void gui_gtk_window_clear(GdkWindow *win); |
| 624 | |
| 625 | static void |
| 626 | gui_gtk3_redraw(int x, int y, int width, int height) |
| 627 | { |
| 628 | gui_redraw_block(Y_2_ROW(y), X_2_COL(x), |
| 629 | Y_2_ROW(y + height - 1), X_2_COL(x + width - 1), |
| 630 | GUI_MON_NOCLEAR); |
| 631 | } |
| 632 | |
| 633 | static void |
| 634 | gui_gtk3_update_cursor(cairo_t *cr) |
| 635 | { |
| 636 | if (gui.row == gui.cursor_row) |
| 637 | { |
| 638 | gui.by_signal = TRUE; |
Bram Moolenaar | 4fc563b | 2016-03-12 12:40:58 +0100 | [diff] [blame] | 639 | if (State & CMDLINE) |
| 640 | gui_update_cursor(TRUE, FALSE); |
| 641 | else |
| 642 | gui_update_cursor(TRUE, TRUE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 643 | gui.by_signal = FALSE; |
| 644 | cairo_paint(cr); |
| 645 | } |
| 646 | } |
| 647 | |
| 648 | static gboolean |
| 649 | gui_gtk3_should_draw_cursor(void) |
| 650 | { |
| 651 | unsigned int cond = 0; |
| 652 | cond |= gui_gtk_is_blink_on(); |
Bram Moolenaar | b4ebf9a | 2016-03-12 16:28:18 +0100 | [diff] [blame] | 653 | if (gui.cursor_col >= gui.col) |
| 654 | cond |= is_key_pressed; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 655 | cond |= gui.in_focus == FALSE; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 656 | return cond; |
| 657 | } |
| 658 | |
| 659 | static gboolean |
| 660 | draw_event(GtkWidget *widget, |
| 661 | cairo_t *cr, |
| 662 | gpointer user_data UNUSED) |
| 663 | { |
| 664 | /* Skip this when the GUI isn't set up yet, will redraw later. */ |
| 665 | if (gui.starting) |
| 666 | return FALSE; |
| 667 | |
| 668 | out_flush(); /* make sure all output has been processed */ |
| 669 | /* for GTK+ 3, may induce other draw events. */ |
| 670 | |
| 671 | cairo_set_source_surface(cr, gui.surface, 0, 0); |
| 672 | |
| 673 | /* Draw the window without the cursor. */ |
| 674 | gui.by_signal = TRUE; |
| 675 | { |
| 676 | cairo_rectangle_list_t *list = NULL; |
| 677 | |
| 678 | gui_gtk_window_clear(gtk_widget_get_window(widget)); |
| 679 | |
| 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 | 0ecbe33 | 2016-03-05 22:40:52 +0100 | [diff] [blame] | 687 | if (blink_mode) |
| 688 | gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height); |
| 689 | else |
Bram Moolenaar | b4ebf9a | 2016-03-12 16:28:18 +0100 | [diff] [blame] | 690 | { |
| 691 | if (get_real_state() & VISUAL) |
| 692 | gui_gtk3_redraw(rect.x, rect.y, |
| 693 | rect.width, rect.height); |
| 694 | else |
| 695 | gui_redraw(rect.x, rect.y, rect.width, rect.height); |
| 696 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 697 | } |
| 698 | } |
| 699 | cairo_rectangle_list_destroy(list); |
| 700 | |
Bram Moolenaar | b4ebf9a | 2016-03-12 16:28:18 +0100 | [diff] [blame] | 701 | if (get_real_state() & VISUAL) |
| 702 | { |
| 703 | if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col) |
| 704 | gui_update_cursor(TRUE, TRUE); |
| 705 | } |
| 706 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 707 | cairo_paint(cr); |
| 708 | } |
| 709 | gui.by_signal = FALSE; |
| 710 | |
| 711 | /* Add the cursor to the window if necessary.*/ |
Bram Moolenaar | b4ebf9a | 2016-03-12 16:28:18 +0100 | [diff] [blame] | 712 | if (gui_gtk3_should_draw_cursor() && blink_mode) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 713 | gui_gtk3_update_cursor(cr); |
| 714 | |
| 715 | return FALSE; |
| 716 | } |
| 717 | #else /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 718 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 719 | expose_event(GtkWidget *widget UNUSED, |
| 720 | GdkEventExpose *event, |
| 721 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 722 | { |
| 723 | /* Skip this when the GUI isn't set up yet, will redraw later. */ |
| 724 | if (gui.starting) |
| 725 | return FALSE; |
| 726 | |
| 727 | out_flush(); /* make sure all output has been processed */ |
| 728 | gui_redraw(event->area.x, event->area.y, |
| 729 | event->area.width, event->area.height); |
| 730 | |
| 731 | /* Clear the border areas if needed */ |
| 732 | if (event->area.x < FILL_X(0)) |
| 733 | gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0); |
| 734 | if (event->area.y < FILL_Y(0)) |
| 735 | gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0)); |
| 736 | if (event->area.x > FILL_X(Columns)) |
| 737 | gdk_window_clear_area(gui.drawarea->window, |
| 738 | FILL_X((int)Columns), 0, 0, 0); |
| 739 | if (event->area.y > FILL_Y(Rows)) |
| 740 | gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0); |
| 741 | |
| 742 | return FALSE; |
| 743 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 744 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 745 | |
| 746 | #ifdef FEAT_CLIENTSERVER |
| 747 | /* |
| 748 | * Handle changes to the "Comm" property |
| 749 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 750 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 751 | property_event(GtkWidget *widget, |
| 752 | GdkEventProperty *event, |
| 753 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 754 | { |
| 755 | if (event->type == GDK_PROPERTY_NOTIFY |
| 756 | && event->state == (int)GDK_PROPERTY_NEW_VALUE |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 757 | # if GTK_CHECK_VERSION(3,0,0) |
| 758 | && GDK_WINDOW_XID(event->window) == commWindow |
| 759 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 760 | && GDK_WINDOW_XWINDOW(event->window) == commWindow |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 761 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 762 | && GET_X_ATOM(event->atom) == commProperty) |
| 763 | { |
| 764 | XEvent xev; |
| 765 | |
| 766 | /* Translate to XLib */ |
| 767 | xev.xproperty.type = PropertyNotify; |
| 768 | xev.xproperty.atom = commProperty; |
| 769 | xev.xproperty.window = commWindow; |
| 770 | xev.xproperty.state = PropertyNewValue; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 771 | # if GTK_CHECK_VERSION(3,0,0) |
| 772 | serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)), |
| 773 | &xev, 0); |
| 774 | # else |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 775 | serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 776 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 777 | } |
| 778 | return FALSE; |
| 779 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 780 | #endif /* defined(FEAT_CLIENTSERVER) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 781 | |
| 782 | |
| 783 | /**************************************************************************** |
| 784 | * Focus handlers: |
| 785 | */ |
| 786 | |
| 787 | |
| 788 | /* |
| 789 | * This is a simple state machine: |
| 790 | * BLINK_NONE not blinking at all |
| 791 | * BLINK_OFF blinking, cursor is not shown |
| 792 | * BLINK_ON blinking, cursor is shown |
| 793 | */ |
| 794 | |
| 795 | #define BLINK_NONE 0 |
| 796 | #define BLINK_OFF 1 |
| 797 | #define BLINK_ON 2 |
| 798 | |
| 799 | static int blink_state = BLINK_NONE; |
| 800 | static long_u blink_waittime = 700; |
| 801 | static long_u blink_ontime = 400; |
| 802 | static long_u blink_offtime = 250; |
| 803 | static guint blink_timer = 0; |
| 804 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 805 | #if GTK_CHECK_VERSION(3,0,0) |
| 806 | static gboolean |
| 807 | gui_gtk_is_blink_on(void) |
| 808 | { |
| 809 | return blink_state == BLINK_ON; |
| 810 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 811 | #endif |
| 812 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 813 | void |
| 814 | gui_mch_set_blinking(long waittime, long on, long off) |
| 815 | { |
Bram Moolenaar | 0ecbe33 | 2016-03-05 22:40:52 +0100 | [diff] [blame] | 816 | #if GTK_CHECK_VERSION(3,0,0) |
| 817 | if (waittime == 0 || on == 0 || off == 0) |
| 818 | { |
| 819 | blink_mode = FALSE; |
| 820 | |
| 821 | blink_waittime = 700; |
| 822 | blink_ontime = 400; |
| 823 | blink_offtime = 250; |
| 824 | } |
| 825 | else |
| 826 | { |
| 827 | blink_mode = TRUE; |
| 828 | |
| 829 | blink_waittime = waittime; |
| 830 | blink_ontime = on; |
| 831 | blink_offtime = off; |
| 832 | } |
| 833 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 834 | blink_waittime = waittime; |
| 835 | blink_ontime = on; |
| 836 | blink_offtime = off; |
Bram Moolenaar | 0ecbe33 | 2016-03-05 22:40:52 +0100 | [diff] [blame] | 837 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 838 | } |
| 839 | |
| 840 | /* |
| 841 | * Stop the cursor blinking. Show the cursor if it wasn't shown. |
| 842 | */ |
| 843 | void |
| 844 | gui_mch_stop_blink(void) |
| 845 | { |
| 846 | if (blink_timer) |
| 847 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 848 | #if GTK_CHECK_VERSION(3,0,0) |
| 849 | g_source_remove(blink_timer); |
| 850 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 851 | gtk_timeout_remove(blink_timer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 852 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 853 | blink_timer = 0; |
| 854 | } |
| 855 | if (blink_state == BLINK_OFF) |
| 856 | gui_update_cursor(TRUE, FALSE); |
| 857 | blink_state = BLINK_NONE; |
| 858 | } |
| 859 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 860 | #if GTK_CHECK_VERSION(3,0,0) |
| 861 | static gboolean |
| 862 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 863 | static gint |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 864 | #endif |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 865 | blink_cb(gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 866 | { |
| 867 | if (blink_state == BLINK_ON) |
| 868 | { |
| 869 | gui_undraw_cursor(); |
| 870 | blink_state = BLINK_OFF; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 871 | #if GTK_CHECK_VERSION(3,0,0) |
| 872 | blink_timer = g_timeout_add((guint)blink_offtime, |
| 873 | (GSourceFunc) blink_cb, NULL); |
| 874 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 875 | blink_timer = gtk_timeout_add((guint32)blink_offtime, |
| 876 | (GtkFunction) blink_cb, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 877 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 878 | } |
| 879 | else |
| 880 | { |
| 881 | gui_update_cursor(TRUE, FALSE); |
| 882 | blink_state = BLINK_ON; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 883 | #if GTK_CHECK_VERSION(3,0,0) |
| 884 | blink_timer = g_timeout_add((guint)blink_ontime, |
| 885 | (GSourceFunc) blink_cb, NULL); |
| 886 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 887 | blink_timer = gtk_timeout_add((guint32)blink_ontime, |
| 888 | (GtkFunction) blink_cb, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 889 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 890 | } |
| 891 | |
| 892 | return FALSE; /* don't happen again */ |
| 893 | } |
| 894 | |
| 895 | /* |
| 896 | * Start the cursor blinking. If it was already blinking, this restarts the |
| 897 | * waiting time and shows the cursor. |
| 898 | */ |
| 899 | void |
| 900 | gui_mch_start_blink(void) |
| 901 | { |
| 902 | if (blink_timer) |
Bram Moolenaar | 7bcdb7d | 2014-04-06 21:08:45 +0200 | [diff] [blame] | 903 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 904 | #if GTK_CHECK_VERSION(3,0,0) |
| 905 | g_source_remove(blink_timer); |
| 906 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 907 | gtk_timeout_remove(blink_timer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 908 | #endif |
Bram Moolenaar | 7bcdb7d | 2014-04-06 21:08:45 +0200 | [diff] [blame] | 909 | blink_timer = 0; |
| 910 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 911 | /* Only switch blinking on if none of the times is zero */ |
| 912 | if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus) |
| 913 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 914 | #if GTK_CHECK_VERSION(3,0,0) |
| 915 | blink_timer = g_timeout_add((guint)blink_waittime, |
| 916 | (GSourceFunc) blink_cb, NULL); |
| 917 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 918 | blink_timer = gtk_timeout_add((guint32)blink_waittime, |
| 919 | (GtkFunction) blink_cb, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 920 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 921 | blink_state = BLINK_ON; |
| 922 | gui_update_cursor(TRUE, FALSE); |
| 923 | } |
| 924 | } |
| 925 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 926 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 927 | enter_notify_event(GtkWidget *widget UNUSED, |
| 928 | GdkEventCrossing *event UNUSED, |
| 929 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 930 | { |
| 931 | if (blink_state == BLINK_NONE) |
| 932 | gui_mch_start_blink(); |
| 933 | |
| 934 | /* make sure keyboard input goes there */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 935 | #if GTK_CHECK_VERSION(3,0,0) |
| 936 | if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea)) |
| 937 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 938 | if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 939 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 940 | gtk_widget_grab_focus(gui.drawarea); |
| 941 | |
| 942 | return FALSE; |
| 943 | } |
| 944 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 945 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 946 | leave_notify_event(GtkWidget *widget UNUSED, |
| 947 | GdkEventCrossing *event UNUSED, |
| 948 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 949 | { |
| 950 | if (blink_state != BLINK_NONE) |
| 951 | gui_mch_stop_blink(); |
| 952 | |
| 953 | return FALSE; |
| 954 | } |
| 955 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 956 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 957 | focus_in_event(GtkWidget *widget, |
| 958 | GdkEventFocus *event UNUSED, |
| 959 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 960 | { |
| 961 | gui_focus_change(TRUE); |
| 962 | |
| 963 | if (blink_state == BLINK_NONE) |
| 964 | gui_mch_start_blink(); |
| 965 | |
Bram Moolenaar | 9c8791f | 2007-09-05 19:47:23 +0000 | [diff] [blame] | 966 | /* make sure keyboard input goes to the draw area (if this is focus for a |
| 967 | * window) */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 968 | if (widget != gui.drawarea) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 969 | gtk_widget_grab_focus(gui.drawarea); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 970 | |
| 971 | return TRUE; |
| 972 | } |
| 973 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 974 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 975 | focus_out_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 976 | GdkEventFocus *event UNUSED, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 977 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 978 | { |
| 979 | gui_focus_change(FALSE); |
| 980 | |
| 981 | if (blink_state != BLINK_NONE) |
| 982 | gui_mch_stop_blink(); |
| 983 | |
| 984 | return TRUE; |
| 985 | } |
| 986 | |
| 987 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 988 | /* |
| 989 | * Translate a GDK key value to UTF-8 independently of the current locale. |
| 990 | * The output is written to string, which must have room for at least 6 bytes |
| 991 | * plus the NUL terminator. Returns the length in bytes. |
| 992 | * |
| 993 | * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use |
| 994 | * of GdkEventKey::string instead. But event->string is evil; see here why: |
| 995 | * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey |
| 996 | */ |
| 997 | static int |
| 998 | keyval_to_string(unsigned int keyval, unsigned int state, char_u *string) |
| 999 | { |
| 1000 | int len; |
| 1001 | guint32 uc; |
| 1002 | |
| 1003 | uc = gdk_keyval_to_unicode(keyval); |
| 1004 | if (uc != 0) |
| 1005 | { |
| 1006 | /* Check for CTRL-foo */ |
| 1007 | if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80) |
| 1008 | { |
| 1009 | /* These mappings look arbitrary at the first glance, but in fact |
| 1010 | * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my |
| 1011 | * machine. The only difference is BS vs. DEL for CTRL-8 (makes |
| 1012 | * more sense and is consistent with usual terminal behaviour). */ |
| 1013 | if (uc >= '@') |
| 1014 | string[0] = uc & 0x1F; |
| 1015 | else if (uc == '2') |
| 1016 | string[0] = NUL; |
| 1017 | else if (uc >= '3' && uc <= '7') |
| 1018 | string[0] = uc ^ 0x28; |
| 1019 | else if (uc == '8') |
| 1020 | string[0] = BS; |
| 1021 | else if (uc == '?') |
| 1022 | string[0] = DEL; |
| 1023 | else |
| 1024 | string[0] = uc; |
| 1025 | len = 1; |
| 1026 | } |
| 1027 | else |
| 1028 | { |
| 1029 | /* Translate a normal key to UTF-8. This doesn't work for dead |
| 1030 | * keys of course, you _have_ to use an input method for that. */ |
| 1031 | len = utf_char2bytes((int)uc, string); |
| 1032 | } |
| 1033 | } |
| 1034 | else |
| 1035 | { |
| 1036 | /* Translate keys which are represented by ASCII control codes in Vim. |
| 1037 | * There are only a few of those; most control keys are translated to |
| 1038 | * special terminal-like control sequences. */ |
| 1039 | len = 1; |
| 1040 | switch (keyval) |
| 1041 | { |
| 1042 | case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab: |
| 1043 | string[0] = TAB; |
| 1044 | break; |
| 1045 | case GDK_Linefeed: |
| 1046 | string[0] = NL; |
| 1047 | break; |
| 1048 | case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter: |
| 1049 | string[0] = CAR; |
| 1050 | break; |
| 1051 | case GDK_Escape: |
| 1052 | string[0] = ESC; |
| 1053 | break; |
| 1054 | default: |
| 1055 | len = 0; |
| 1056 | break; |
| 1057 | } |
| 1058 | } |
| 1059 | string[len] = NUL; |
| 1060 | |
| 1061 | return len; |
| 1062 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1063 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1064 | static int |
| 1065 | modifiers_gdk2vim(guint state) |
| 1066 | { |
| 1067 | int modifiers = 0; |
| 1068 | |
| 1069 | if (state & GDK_SHIFT_MASK) |
| 1070 | modifiers |= MOD_MASK_SHIFT; |
| 1071 | if (state & GDK_CONTROL_MASK) |
| 1072 | modifiers |= MOD_MASK_CTRL; |
| 1073 | if (state & GDK_MOD1_MASK) |
| 1074 | modifiers |= MOD_MASK_ALT; |
Bram Moolenaar | 580061a | 2010-08-13 13:57:13 +0200 | [diff] [blame] | 1075 | #if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1076 | if (state & GDK_SUPER_MASK) |
| 1077 | modifiers |= MOD_MASK_META; |
| 1078 | #endif |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1079 | if (state & GDK_MOD4_MASK) |
| 1080 | modifiers |= MOD_MASK_META; |
| 1081 | |
| 1082 | return modifiers; |
| 1083 | } |
| 1084 | |
| 1085 | static int |
| 1086 | modifiers_gdk2mouse(guint state) |
| 1087 | { |
| 1088 | int modifiers = 0; |
| 1089 | |
| 1090 | if (state & GDK_SHIFT_MASK) |
| 1091 | modifiers |= MOUSE_SHIFT; |
| 1092 | if (state & GDK_CONTROL_MASK) |
| 1093 | modifiers |= MOUSE_CTRL; |
| 1094 | if (state & GDK_MOD1_MASK) |
| 1095 | modifiers |= MOUSE_ALT; |
| 1096 | |
| 1097 | return modifiers; |
| 1098 | } |
| 1099 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1100 | /* |
| 1101 | * Main keyboard handler: |
| 1102 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1103 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1104 | key_press_event(GtkWidget *widget UNUSED, |
| 1105 | GdkEventKey *event, |
| 1106 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1107 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 1108 | /* 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] | 1109 | * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */ |
| 1110 | char_u string[32], string2[32]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1111 | guint key_sym; |
| 1112 | int len; |
| 1113 | int i; |
| 1114 | int modifiers; |
| 1115 | int key; |
| 1116 | guint state; |
| 1117 | char_u *s, *d; |
| 1118 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1119 | #if GTK_CHECK_VERSION(3,0,0) |
| 1120 | is_key_pressed = TRUE; |
| 1121 | gui_mch_stop_blink(); |
| 1122 | #endif |
| 1123 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1124 | gui.event_time = event->time; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1125 | key_sym = event->keyval; |
| 1126 | state = event->state; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1127 | |
| 1128 | #ifdef FEAT_XIM |
| 1129 | if (xim_queue_key_press_event(event, TRUE)) |
| 1130 | return TRUE; |
| 1131 | #endif |
| 1132 | |
| 1133 | #ifdef FEAT_HANGULIN |
| 1134 | if (key_sym == GDK_space && (state & GDK_SHIFT_MASK)) |
| 1135 | { |
| 1136 | hangul_input_state_toggle(); |
| 1137 | return TRUE; |
| 1138 | } |
| 1139 | #endif |
| 1140 | |
| 1141 | #ifdef SunXK_F36 |
| 1142 | /* |
| 1143 | * These keys have bogus lookup strings, and trapping them here is |
| 1144 | * easier than trying to XRebindKeysym() on them with every possible |
| 1145 | * combination of modifiers. |
| 1146 | */ |
| 1147 | if (key_sym == SunXK_F36 || key_sym == SunXK_F37) |
| 1148 | len = 0; |
| 1149 | else |
| 1150 | #endif |
| 1151 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1152 | len = keyval_to_string(key_sym, state, string2); |
| 1153 | |
| 1154 | /* Careful: convert_input() doesn't handle the NUL character. |
| 1155 | * No need to convert pure ASCII anyway, thus the len > 1 check. */ |
| 1156 | if (len > 1 && input_conv.vc_type != CONV_NONE) |
| 1157 | len = convert_input(string2, len, sizeof(string2)); |
| 1158 | |
| 1159 | s = string2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1160 | d = string; |
| 1161 | for (i = 0; i < len; ++i) |
| 1162 | { |
| 1163 | *d++ = s[i]; |
| 1164 | if (d[-1] == CSI && d + 2 < string + sizeof(string)) |
| 1165 | { |
| 1166 | /* Turn CSI into K_CSI. */ |
| 1167 | *d++ = KS_EXTRA; |
| 1168 | *d++ = (int)KE_CSI; |
| 1169 | } |
| 1170 | } |
| 1171 | len = d - string; |
| 1172 | } |
| 1173 | |
| 1174 | /* Shift-Tab results in Left_Tab, but we want <S-Tab> */ |
| 1175 | if (key_sym == GDK_ISO_Left_Tab) |
| 1176 | { |
| 1177 | key_sym = GDK_Tab; |
| 1178 | state |= GDK_SHIFT_MASK; |
| 1179 | } |
| 1180 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1181 | #ifdef FEAT_MENU |
| 1182 | /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key |
| 1183 | * is a menu shortcut, we ignore everything with the ALT modifier. */ |
| 1184 | if ((state & GDK_MOD1_MASK) |
| 1185 | && gui.menu_is_active |
| 1186 | && (*p_wak == 'y' |
| 1187 | || (*p_wak == 'm' |
| 1188 | && len == 1 |
| 1189 | && gui_is_menu_shortcut(string[0])))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1190 | /* For GTK2 we return false to signify that we haven't handled the |
| 1191 | * keypress, so that gtk will handle the mnemonic or accelerator. */ |
| 1192 | return FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1193 | #endif |
| 1194 | |
| 1195 | /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character |
| 1196 | * that already has the 8th bit set. |
| 1197 | * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT. |
| 1198 | * Don't do this for double-byte encodings, it turns the char into a lead |
| 1199 | * byte. */ |
| 1200 | if (len == 1 |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1201 | && ((state & GDK_MOD1_MASK) |
Bram Moolenaar | 35f330c | 2010-08-15 13:53:58 +0200 | [diff] [blame] | 1202 | #if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1203 | || (state & GDK_SUPER_MASK) |
| 1204 | #endif |
| 1205 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1206 | && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete) |
| 1207 | && (string[0] & 0x80) == 0 |
| 1208 | && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1209 | && !enc_dbcs |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1210 | ) |
| 1211 | { |
| 1212 | string[0] |= 0x80; |
| 1213 | state &= ~GDK_MOD1_MASK; /* don't use it again */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1214 | if (enc_utf8) /* convert to utf-8 */ |
| 1215 | { |
| 1216 | string[1] = string[0] & 0xbf; |
| 1217 | string[0] = ((unsigned)string[0] >> 6) + 0xc0; |
| 1218 | if (string[1] == CSI) |
| 1219 | { |
| 1220 | string[2] = KS_EXTRA; |
| 1221 | string[3] = (int)KE_CSI; |
| 1222 | len = 4; |
| 1223 | } |
| 1224 | else |
| 1225 | len = 2; |
| 1226 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1227 | } |
| 1228 | |
| 1229 | /* Check for special keys. Also do this when len == 1 (key has an ASCII |
| 1230 | * value) to detect backspace, delete and keypad keys. */ |
| 1231 | if (len == 0 || len == 1) |
| 1232 | { |
| 1233 | for (i = 0; special_keys[i].key_sym != 0; i++) |
| 1234 | { |
| 1235 | if (special_keys[i].key_sym == key_sym) |
| 1236 | { |
| 1237 | string[0] = CSI; |
| 1238 | string[1] = special_keys[i].code0; |
| 1239 | string[2] = special_keys[i].code1; |
| 1240 | len = -3; |
| 1241 | break; |
| 1242 | } |
| 1243 | } |
| 1244 | } |
| 1245 | |
| 1246 | if (len == 0) /* Unrecognized key */ |
| 1247 | return TRUE; |
| 1248 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1249 | /* Special keys (and a few others) may have modifiers. Also when using a |
| 1250 | * double-byte encoding (can't set the 8th bit). */ |
| 1251 | if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab |
| 1252 | || key_sym == GDK_Return || key_sym == GDK_Linefeed |
| 1253 | || key_sym == GDK_Escape || key_sym == GDK_KP_Tab |
| 1254 | || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1255 | || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK) |
Bram Moolenaar | 35f330c | 2010-08-15 13:53:58 +0200 | [diff] [blame] | 1256 | #if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1257 | || (state & GDK_SUPER_MASK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1258 | #endif |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 1259 | ))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1260 | { |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1261 | modifiers = modifiers_gdk2vim(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1262 | |
| 1263 | /* |
| 1264 | * For some keys a shift modifier is translated into another key |
| 1265 | * code. |
| 1266 | */ |
| 1267 | if (len == -3) |
| 1268 | key = TO_SPECIAL(string[1], string[2]); |
| 1269 | else |
| 1270 | key = string[0]; |
| 1271 | |
| 1272 | key = simplify_key(key, &modifiers); |
| 1273 | if (key == CSI) |
| 1274 | key = K_CSI; |
| 1275 | if (IS_SPECIAL(key)) |
| 1276 | { |
| 1277 | string[0] = CSI; |
| 1278 | string[1] = K_SECOND(key); |
| 1279 | string[2] = K_THIRD(key); |
| 1280 | len = 3; |
| 1281 | } |
| 1282 | else |
| 1283 | { |
| 1284 | string[0] = key; |
| 1285 | len = 1; |
| 1286 | } |
| 1287 | |
| 1288 | if (modifiers != 0) |
| 1289 | { |
| 1290 | string2[0] = CSI; |
| 1291 | string2[1] = KS_MODIFIER; |
| 1292 | string2[2] = modifiers; |
| 1293 | add_to_input_buf(string2, 3); |
| 1294 | } |
| 1295 | } |
| 1296 | |
| 1297 | if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts) |
| 1298 | || (string[0] == intr_char && intr_char != Ctrl_C))) |
| 1299 | { |
| 1300 | trash_input_buf(); |
| 1301 | got_int = TRUE; |
| 1302 | } |
| 1303 | |
| 1304 | add_to_input_buf(string, len); |
| 1305 | |
| 1306 | /* blank out the pointer if necessary */ |
| 1307 | if (p_mh) |
| 1308 | gui_mch_mousehide(TRUE); |
| 1309 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1310 | return TRUE; |
| 1311 | } |
| 1312 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1313 | #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1314 | static gboolean |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1315 | key_release_event(GtkWidget *widget UNUSED, |
| 1316 | GdkEventKey *event, |
| 1317 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1318 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1319 | # if GTK_CHECK_VERSION(3,0,0) |
| 1320 | is_key_pressed = FALSE; |
| 1321 | gui_mch_start_blink(); |
| 1322 | # endif |
| 1323 | # if defined(FEAT_XIM) |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1324 | gui.event_time = event->time; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1325 | /* |
| 1326 | * GTK+ 2 input methods may do fancy stuff on key release events too. |
| 1327 | * With the default IM for instance, you can enter any UCS code point |
| 1328 | * by holding down CTRL-SHIFT and typing hexadecimal digits. |
| 1329 | */ |
| 1330 | return xim_queue_key_press_event(event, FALSE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1331 | # else |
| 1332 | return TRUE; |
| 1333 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1334 | } |
| 1335 | #endif |
| 1336 | |
| 1337 | |
| 1338 | /**************************************************************************** |
| 1339 | * Selection handlers: |
| 1340 | */ |
| 1341 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1342 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1343 | selection_clear_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1344 | GdkEventSelection *event, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1345 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1346 | { |
| 1347 | if (event->selection == clip_plus.gtk_sel_atom) |
| 1348 | clip_lose_selection(&clip_plus); |
| 1349 | else |
| 1350 | clip_lose_selection(&clip_star); |
| 1351 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1352 | return TRUE; |
| 1353 | } |
| 1354 | |
| 1355 | #define RS_NONE 0 /* selection_received_cb() not called yet */ |
| 1356 | #define RS_OK 1 /* selection_received_cb() called and OK */ |
| 1357 | #define RS_FAIL 2 /* selection_received_cb() called and failed */ |
| 1358 | static int received_selection = RS_NONE; |
| 1359 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1360 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1361 | selection_received_cb(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1362 | GtkSelectionData *data, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1363 | guint time_ UNUSED, |
| 1364 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1365 | { |
| 1366 | VimClipboard *cbd; |
| 1367 | char_u *text; |
| 1368 | char_u *tmpbuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1369 | guchar *tmpbuf_utf8 = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1370 | int len; |
Bram Moolenaar | d44347f | 2011-06-19 01:14:29 +0200 | [diff] [blame] | 1371 | int motion_type = MAUTO; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1372 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1373 | #if GTK_CHECK_VERSION(3,0,0) |
| 1374 | if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom) |
| 1375 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1376 | if (data->selection == clip_plus.gtk_sel_atom) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1377 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1378 | cbd = &clip_plus; |
| 1379 | else |
| 1380 | cbd = &clip_star; |
| 1381 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1382 | #if GTK_CHECK_VERSION(3,0,0) |
| 1383 | text = (char_u *)gtk_selection_data_get_data(data); |
| 1384 | len = gtk_selection_data_get_length(data); |
| 1385 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1386 | text = (char_u *)data->data; |
| 1387 | len = data->length; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1388 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1389 | |
| 1390 | if (text == NULL || len <= 0) |
| 1391 | { |
| 1392 | received_selection = RS_FAIL; |
| 1393 | /* clip_free_selection(cbd); ??? */ |
| 1394 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1395 | return; |
| 1396 | } |
| 1397 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1398 | #if GTK_CHECK_VERSION(3,0,0) |
| 1399 | if (gtk_selection_data_get_data_type(data) == vim_atom) |
| 1400 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1401 | if (data->type == vim_atom) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1402 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1403 | { |
| 1404 | motion_type = *text++; |
| 1405 | --len; |
| 1406 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1407 | #if GTK_CHECK_VERSION(3,0,0) |
| 1408 | else if (gtk_selection_data_get_data_type(data) == vimenc_atom) |
| 1409 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1410 | else if (data->type == vimenc_atom) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1411 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1412 | { |
| 1413 | char_u *enc; |
| 1414 | vimconv_T conv; |
| 1415 | |
| 1416 | motion_type = *text++; |
| 1417 | --len; |
| 1418 | |
| 1419 | enc = text; |
| 1420 | text += STRLEN(text) + 1; |
| 1421 | len -= text - enc; |
| 1422 | |
| 1423 | /* If the encoding of the text is different from 'encoding', attempt |
| 1424 | * converting it. */ |
| 1425 | conv.vc_type = CONV_NONE; |
| 1426 | convert_setup(&conv, enc, p_enc); |
| 1427 | if (conv.vc_type != CONV_NONE) |
| 1428 | { |
| 1429 | tmpbuf = string_convert(&conv, text, &len); |
| 1430 | if (tmpbuf != NULL) |
| 1431 | text = tmpbuf; |
| 1432 | convert_setup(&conv, NULL, NULL); |
| 1433 | } |
| 1434 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1435 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1436 | /* gtk_selection_data_get_text() handles all the nasty details |
| 1437 | * and targets and encodings etc. This rocks so hard. */ |
| 1438 | else |
| 1439 | { |
| 1440 | tmpbuf_utf8 = gtk_selection_data_get_text(data); |
| 1441 | if (tmpbuf_utf8 != NULL) |
| 1442 | { |
| 1443 | len = STRLEN(tmpbuf_utf8); |
| 1444 | if (input_conv.vc_type != CONV_NONE) |
| 1445 | { |
| 1446 | tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len); |
| 1447 | if (tmpbuf != NULL) |
| 1448 | text = tmpbuf; |
| 1449 | } |
| 1450 | else |
| 1451 | text = tmpbuf_utf8; |
| 1452 | } |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1453 | else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe) |
| 1454 | { |
| 1455 | vimconv_T conv; |
| 1456 | |
| 1457 | /* UTF-16, we get this for HTML */ |
| 1458 | conv.vc_type = CONV_NONE; |
| 1459 | convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE); |
| 1460 | |
| 1461 | if (conv.vc_type != CONV_NONE) |
| 1462 | { |
| 1463 | text += 2; |
| 1464 | len -= 2; |
| 1465 | tmpbuf = string_convert(&conv, text, &len); |
| 1466 | convert_setup(&conv, NULL, NULL); |
| 1467 | } |
| 1468 | if (tmpbuf != NULL) |
| 1469 | text = tmpbuf; |
| 1470 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1471 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1472 | |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 1473 | /* Chop off any trailing NUL bytes. OpenOffice sends these. */ |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 1474 | while (len > 0 && text[len - 1] == NUL) |
| 1475 | --len; |
| 1476 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1477 | clip_yank_selection(motion_type, text, (long)len, cbd); |
| 1478 | received_selection = RS_OK; |
| 1479 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1480 | g_free(tmpbuf_utf8); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1481 | } |
| 1482 | |
| 1483 | /* |
| 1484 | * Prepare our selection data for passing it to the external selection |
| 1485 | * client. |
| 1486 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1487 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1488 | selection_get_cb(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1489 | GtkSelectionData *selection_data, |
| 1490 | guint info, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1491 | guint time_ UNUSED, |
| 1492 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1493 | { |
| 1494 | char_u *string; |
| 1495 | char_u *tmpbuf; |
| 1496 | long_u tmplen; |
| 1497 | int length; |
| 1498 | int motion_type; |
| 1499 | GdkAtom type; |
| 1500 | VimClipboard *cbd; |
| 1501 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1502 | #if GTK_CHECK_VERSION(3,0,0) |
| 1503 | if (gtk_selection_data_get_selection(selection_data) |
| 1504 | == clip_plus.gtk_sel_atom) |
| 1505 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1506 | if (selection_data->selection == clip_plus.gtk_sel_atom) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1507 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1508 | cbd = &clip_plus; |
| 1509 | else |
| 1510 | cbd = &clip_star; |
| 1511 | |
| 1512 | if (!cbd->owned) |
| 1513 | return; /* Shouldn't ever happen */ |
| 1514 | |
| 1515 | if (info != (guint)TARGET_STRING |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1516 | && (!clip_html || info != (guint)TARGET_HTML) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1517 | && info != (guint)TARGET_UTF8_STRING |
| 1518 | && info != (guint)TARGET_VIMENC |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1519 | && info != (guint)TARGET_VIM |
| 1520 | && info != (guint)TARGET_COMPOUND_TEXT |
| 1521 | && info != (guint)TARGET_TEXT) |
| 1522 | return; |
| 1523 | |
| 1524 | /* get the selection from the '*'/'+' register */ |
| 1525 | clip_get_selection(cbd); |
| 1526 | |
| 1527 | motion_type = clip_convert_selection(&string, &tmplen, cbd); |
| 1528 | if (motion_type < 0 || string == NULL) |
| 1529 | return; |
| 1530 | /* Due to int arguments we can't handle more than G_MAXINT. Also |
| 1531 | * reserve one extra byte for NUL or the motion type; just in case. |
| 1532 | * (Not that pasting 2G of text is ever going to work, but... ;-) */ |
| 1533 | length = MIN(tmplen, (long_u)(G_MAXINT - 1)); |
| 1534 | |
| 1535 | if (info == (guint)TARGET_VIM) |
| 1536 | { |
| 1537 | tmpbuf = alloc((unsigned)length + 1); |
| 1538 | if (tmpbuf != NULL) |
| 1539 | { |
| 1540 | tmpbuf[0] = motion_type; |
| 1541 | mch_memmove(tmpbuf + 1, string, (size_t)length); |
| 1542 | } |
| 1543 | /* For our own format, the first byte contains the motion type */ |
| 1544 | ++length; |
| 1545 | vim_free(string); |
| 1546 | string = tmpbuf; |
| 1547 | type = vim_atom; |
| 1548 | } |
| 1549 | |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1550 | else if (info == (guint)TARGET_HTML) |
| 1551 | { |
| 1552 | vimconv_T conv; |
| 1553 | |
| 1554 | /* Since we get utf-16, we probably should set it as well. */ |
| 1555 | conv.vc_type = CONV_NONE; |
| 1556 | convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE); |
| 1557 | if (conv.vc_type != CONV_NONE) |
| 1558 | { |
| 1559 | tmpbuf = string_convert(&conv, string, &length); |
| 1560 | convert_setup(&conv, NULL, NULL); |
| 1561 | vim_free(string); |
| 1562 | string = tmpbuf; |
| 1563 | } |
| 1564 | |
| 1565 | /* Prepend the BOM: "fffe" */ |
| 1566 | if (string != NULL) |
| 1567 | { |
| 1568 | tmpbuf = alloc(length + 2); |
| 1569 | tmpbuf[0] = 0xff; |
| 1570 | tmpbuf[1] = 0xfe; |
| 1571 | mch_memmove(tmpbuf + 2, string, (size_t)length); |
| 1572 | vim_free(string); |
| 1573 | string = tmpbuf; |
| 1574 | length += 2; |
| 1575 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1576 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 1577 | /* Looks redundant even for GTK2 because these values are |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1578 | * overwritten by gtk_selection_data_set() that follows. */ |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1579 | selection_data->type = selection_data->target; |
| 1580 | selection_data->format = 16; /* 16 bits per char */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1581 | #endif |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1582 | gtk_selection_data_set(selection_data, html_atom, 16, |
| 1583 | string, length); |
| 1584 | vim_free(string); |
| 1585 | } |
| 1586 | return; |
| 1587 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1588 | else if (info == (guint)TARGET_VIMENC) |
| 1589 | { |
| 1590 | int l = STRLEN(p_enc); |
| 1591 | |
| 1592 | /* contents: motion_type 'encoding' NUL text */ |
| 1593 | tmpbuf = alloc((unsigned)length + l + 2); |
| 1594 | if (tmpbuf != NULL) |
| 1595 | { |
| 1596 | tmpbuf[0] = motion_type; |
| 1597 | STRCPY(tmpbuf + 1, p_enc); |
| 1598 | mch_memmove(tmpbuf + l + 2, string, (size_t)length); |
| 1599 | } |
| 1600 | length += l + 2; |
| 1601 | vim_free(string); |
| 1602 | string = tmpbuf; |
| 1603 | type = vimenc_atom; |
| 1604 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1605 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1606 | /* gtk_selection_data_set_text() handles everything for us. This is |
| 1607 | * so easy and simple and cool, it'd be insane not to use it. */ |
| 1608 | else |
| 1609 | { |
| 1610 | if (output_conv.vc_type != CONV_NONE) |
| 1611 | { |
| 1612 | tmpbuf = string_convert(&output_conv, string, &length); |
| 1613 | vim_free(string); |
| 1614 | if (tmpbuf == NULL) |
| 1615 | return; |
| 1616 | string = tmpbuf; |
| 1617 | } |
| 1618 | /* Validate the string to avoid runtime warnings */ |
| 1619 | if (g_utf8_validate((const char *)string, (gssize)length, NULL)) |
| 1620 | { |
| 1621 | gtk_selection_data_set_text(selection_data, |
| 1622 | (const char *)string, length); |
| 1623 | } |
| 1624 | vim_free(string); |
| 1625 | return; |
| 1626 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1627 | |
| 1628 | if (string != NULL) |
| 1629 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1630 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 1631 | /* Looks redundant even for GTK2 because these values are |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1632 | * overwritten by gtk_selection_data_set() that follows. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1633 | selection_data->type = selection_data->target; |
| 1634 | selection_data->format = 8; /* 8 bits per char */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1635 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1636 | gtk_selection_data_set(selection_data, type, 8, string, length); |
| 1637 | vim_free(string); |
| 1638 | } |
| 1639 | } |
| 1640 | |
| 1641 | /* |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 1642 | * Check if the GUI can be started. Called before gvimrc is sourced and |
| 1643 | * before fork(). |
| 1644 | * Return OK or FAIL. |
| 1645 | */ |
| 1646 | int |
| 1647 | gui_mch_early_init_check(void) |
| 1648 | { |
| 1649 | char_u *p; |
| 1650 | |
| 1651 | /* Guess that when $DISPLAY isn't set the GUI can't start. */ |
| 1652 | p = mch_getenv((char_u *)"DISPLAY"); |
| 1653 | if (p == NULL || *p == NUL) |
| 1654 | { |
| 1655 | gui.dying = TRUE; |
| 1656 | EMSG(_((char *)e_opendisp)); |
| 1657 | return FAIL; |
| 1658 | } |
| 1659 | return OK; |
| 1660 | } |
| 1661 | |
| 1662 | /* |
| 1663 | * Check if the GUI can be started. Called before gvimrc is sourced but after |
| 1664 | * fork(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1665 | * Return OK or FAIL. |
| 1666 | */ |
| 1667 | int |
| 1668 | gui_mch_init_check(void) |
| 1669 | { |
Bram Moolenaar | 3a466a8 | 2016-01-19 17:47:25 +0100 | [diff] [blame] | 1670 | #ifdef USE_GRESOURCE |
| 1671 | static int res_registered = FALSE; |
| 1672 | |
| 1673 | if (!res_registered) |
| 1674 | { |
| 1675 | /* Call this function in the GUI process; otherwise, the resources |
| 1676 | * won't be available. Don't call it twice. */ |
| 1677 | res_registered = TRUE; |
| 1678 | gui_gtk_register_resource(); |
| 1679 | } |
| 1680 | #endif |
| 1681 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1682 | #ifdef FEAT_GUI_GNOME |
| 1683 | if (gtk_socket_id == 0) |
| 1684 | using_gnome = 1; |
| 1685 | #endif |
| 1686 | |
Bram Moolenaar | 8dd7901 | 2013-05-21 12:52:04 +0200 | [diff] [blame] | 1687 | /* This defaults to argv[0], but we want it to match the name of the |
| 1688 | * shipped gvim.desktop so that Vim's windows can be associated with this |
| 1689 | * file. */ |
| 1690 | g_set_prgname("gvim"); |
| 1691 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1692 | /* Don't use gtk_init() or gnome_init(), it exits on failure. */ |
| 1693 | if (!gtk_init_check(&gui_argc, &gui_argv)) |
| 1694 | { |
| 1695 | gui.dying = TRUE; |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 1696 | EMSG(_((char *)e_opendisp)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1697 | return FAIL; |
| 1698 | } |
| 1699 | |
| 1700 | return OK; |
| 1701 | } |
| 1702 | |
| 1703 | |
| 1704 | /**************************************************************************** |
| 1705 | * Mouse handling callbacks |
| 1706 | */ |
| 1707 | |
| 1708 | |
| 1709 | static guint mouse_click_timer = 0; |
| 1710 | static int mouse_timed_out = TRUE; |
| 1711 | |
| 1712 | /* |
| 1713 | * Timer used to recognize multiple clicks of the mouse button |
| 1714 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1715 | #if GTK_CHECK_VERSION(3,0,0) |
| 1716 | static gboolean |
| 1717 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1718 | static gint |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1719 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1720 | mouse_click_timer_cb(gpointer data) |
| 1721 | { |
| 1722 | /* we don't use this information currently */ |
| 1723 | int *timed_out = (int *) data; |
| 1724 | |
| 1725 | *timed_out = TRUE; |
| 1726 | return FALSE; /* don't happen again */ |
| 1727 | } |
| 1728 | |
| 1729 | static guint motion_repeat_timer = 0; |
| 1730 | static int motion_repeat_offset = FALSE; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1731 | #ifdef GTK_DEST_DEFAULT_ALL |
| 1732 | static gboolean motion_repeat_timer_cb(gpointer); |
| 1733 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1734 | static gint motion_repeat_timer_cb(gpointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1735 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1736 | |
| 1737 | static void |
| 1738 | process_motion_notify(int x, int y, GdkModifierType state) |
| 1739 | { |
| 1740 | int button; |
| 1741 | int_u vim_modifiers; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1742 | #if GTK_CHECK_VERSION(3,0,0) |
| 1743 | GtkAllocation allocation; |
| 1744 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1745 | |
| 1746 | button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | |
| 1747 | GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | |
| 1748 | GDK_BUTTON5_MASK)) |
| 1749 | ? MOUSE_DRAG : ' '; |
| 1750 | |
| 1751 | /* If our pointer is currently hidden, then we should show it. */ |
| 1752 | gui_mch_mousehide(FALSE); |
| 1753 | |
| 1754 | /* Just moving the rodent above the drawing area without any button |
| 1755 | * being pressed. */ |
| 1756 | if (button != MOUSE_DRAG) |
| 1757 | { |
| 1758 | gui_mouse_moved(x, y); |
| 1759 | return; |
| 1760 | } |
| 1761 | |
| 1762 | /* translate modifier coding between the main engine and GTK */ |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1763 | vim_modifiers = modifiers_gdk2mouse(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1764 | |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 1765 | /* inform the editor engine about the occurrence of this event */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1766 | gui_send_mouse_event(button, x, y, FALSE, vim_modifiers); |
| 1767 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1768 | /* |
| 1769 | * Auto repeat timer handling. |
| 1770 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1771 | #if GTK_CHECK_VERSION(3,0,0) |
| 1772 | gtk_widget_get_allocation(gui.drawarea, &allocation); |
| 1773 | |
| 1774 | if (x < 0 || y < 0 |
| 1775 | || x >= allocation.width |
| 1776 | || y >= allocation.height) |
| 1777 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1778 | if (x < 0 || y < 0 |
| 1779 | || x >= gui.drawarea->allocation.width |
| 1780 | || y >= gui.drawarea->allocation.height) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1781 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1782 | { |
| 1783 | |
| 1784 | int dx; |
| 1785 | int dy; |
| 1786 | int offshoot; |
| 1787 | int delay = 10; |
| 1788 | |
| 1789 | /* Calculate the maximal distance of the cursor from the drawing area. |
| 1790 | * (offshoot can't become negative here!). |
| 1791 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1792 | #if GTK_CHECK_VERSION(3,0,0) |
| 1793 | dx = x < 0 ? -x : x - allocation.width; |
| 1794 | dy = y < 0 ? -y : y - allocation.height; |
| 1795 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1796 | dx = x < 0 ? -x : x - gui.drawarea->allocation.width; |
| 1797 | dy = y < 0 ? -y : y - gui.drawarea->allocation.height; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1798 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1799 | |
| 1800 | offshoot = dx > dy ? dx : dy; |
| 1801 | |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1802 | /* 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] | 1803 | * distance of 127 pixels from the main window. |
| 1804 | * |
| 1805 | * One could think endlessly about the most ergonomic variant here. |
| 1806 | * For example it could make sense to calculate the distance from the |
| 1807 | * drags start instead... |
| 1808 | * |
| 1809 | * Maybe a parabolic interpolation would suite us better here too... |
| 1810 | */ |
| 1811 | if (offshoot > 127) |
| 1812 | { |
| 1813 | /* 5 appears to be somehow near to my perceptual limits :-). */ |
| 1814 | delay = 5; |
| 1815 | } |
| 1816 | else |
| 1817 | { |
| 1818 | delay = (130 * (127 - offshoot)) / 127 + 5; |
| 1819 | } |
| 1820 | |
| 1821 | /* shoot again */ |
| 1822 | if (!motion_repeat_timer) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1823 | #if GTK_CHECK_VERSION(3,0,0) |
| 1824 | motion_repeat_timer = g_timeout_add((guint)delay, |
| 1825 | motion_repeat_timer_cb, NULL); |
| 1826 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1827 | motion_repeat_timer = gtk_timeout_add((guint32)delay, |
| 1828 | motion_repeat_timer_cb, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1829 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1830 | } |
| 1831 | } |
| 1832 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1833 | #if GTK_CHECK_VERSION(3,0,0) |
| 1834 | static GdkDevice * |
| 1835 | gui_gtk_get_pointer_device(GtkWidget *widget) |
| 1836 | { |
| 1837 | GdkWindow * const win = gtk_widget_get_window(widget); |
| 1838 | GdkDisplay * const dpy = gdk_window_get_display(win); |
| 1839 | GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy); |
| 1840 | return gdk_device_manager_get_client_pointer(mngr); |
| 1841 | } |
| 1842 | |
| 1843 | static GdkWindow * |
| 1844 | gui_gtk_get_pointer(GtkWidget *widget, |
| 1845 | gint *x, |
| 1846 | gint *y, |
| 1847 | GdkModifierType *state) |
| 1848 | { |
| 1849 | GdkWindow * const win = gtk_widget_get_window(widget); |
| 1850 | GdkDevice * const dev = gui_gtk_get_pointer_device(widget); |
| 1851 | return gdk_window_get_device_position(win, dev , x, y, state); |
| 1852 | } |
| 1853 | |
Bram Moolenaar | 2369c15 | 2016-03-04 23:08:25 +0100 | [diff] [blame] | 1854 | # if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1855 | static GdkWindow * |
| 1856 | gui_gtk_window_at_position(GtkWidget *widget, |
| 1857 | gint *x, |
| 1858 | gint *y) |
| 1859 | { |
| 1860 | GdkDevice * const dev = gui_gtk_get_pointer_device(widget); |
| 1861 | return gdk_device_get_window_at_position(dev, x, y); |
| 1862 | } |
Bram Moolenaar | 2369c15 | 2016-03-04 23:08:25 +0100 | [diff] [blame] | 1863 | # endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1864 | #endif |
| 1865 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1866 | /* |
| 1867 | * Timer used to recognize multiple clicks of the mouse button. |
| 1868 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1869 | #if GTK_CHECK_VERSION(3,0,0) |
| 1870 | static gboolean |
| 1871 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1872 | static gint |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1873 | #endif |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1874 | motion_repeat_timer_cb(gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1875 | { |
| 1876 | int x; |
| 1877 | int y; |
| 1878 | GdkModifierType state; |
| 1879 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1880 | #if GTK_CHECK_VERSION(3,0,0) |
| 1881 | gui_gtk_get_pointer(gui.drawarea, &x, &y, &state); |
| 1882 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1883 | gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1884 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1885 | |
| 1886 | if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | |
| 1887 | GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | |
| 1888 | GDK_BUTTON5_MASK))) |
| 1889 | { |
| 1890 | motion_repeat_timer = 0; |
| 1891 | return FALSE; |
| 1892 | } |
| 1893 | |
| 1894 | /* If there already is a mouse click in the input buffer, wait another |
| 1895 | * time (otherwise we would create a backlog of clicks) */ |
| 1896 | if (vim_used_in_input_buf() > 10) |
| 1897 | return TRUE; |
| 1898 | |
| 1899 | motion_repeat_timer = 0; |
| 1900 | |
| 1901 | /* |
| 1902 | * Fake a motion event. |
| 1903 | * Trick: Pretend the mouse moved to the next character on every other |
| 1904 | * event, otherwise drag events will be discarded, because they are still |
| 1905 | * in the same character. |
| 1906 | */ |
| 1907 | if (motion_repeat_offset) |
| 1908 | x += gui.char_width; |
| 1909 | |
| 1910 | motion_repeat_offset = !motion_repeat_offset; |
| 1911 | process_motion_notify(x, y, state); |
| 1912 | |
| 1913 | /* Don't happen again. We will get reinstalled in the synthetic event |
| 1914 | * if needed -- thus repeating should still work. */ |
| 1915 | return FALSE; |
| 1916 | } |
| 1917 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1918 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1919 | motion_notify_event(GtkWidget *widget, |
| 1920 | GdkEventMotion *event, |
| 1921 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1922 | { |
| 1923 | if (event->is_hint) |
| 1924 | { |
| 1925 | int x; |
| 1926 | int y; |
| 1927 | GdkModifierType state; |
| 1928 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1929 | #if GTK_CHECK_VERSION(3,0,0) |
| 1930 | gui_gtk_get_pointer(widget, &x, &y, &state); |
| 1931 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1932 | gdk_window_get_pointer(widget->window, &x, &y, &state); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1933 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1934 | process_motion_notify(x, y, state); |
| 1935 | } |
| 1936 | else |
| 1937 | { |
| 1938 | process_motion_notify((int)event->x, (int)event->y, |
| 1939 | (GdkModifierType)event->state); |
| 1940 | } |
| 1941 | |
| 1942 | return TRUE; /* handled */ |
| 1943 | } |
| 1944 | |
| 1945 | |
| 1946 | /* |
| 1947 | * Mouse button handling. Note please that we are capturing multiple click's |
| 1948 | * by our own timeout mechanism instead of the one provided by GTK+ itself. |
| 1949 | * This is due to the way the generic VIM code is recognizing multiple clicks. |
| 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 | button_press_event(GtkWidget *widget, |
| 1953 | GdkEventButton *event, |
| 1954 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1955 | { |
| 1956 | int button; |
| 1957 | int repeated_click = FALSE; |
| 1958 | int x, y; |
| 1959 | int_u vim_modifiers; |
| 1960 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1961 | gui.event_time = event->time; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 1962 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1963 | /* Make sure we have focus now we've been selected */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1964 | #if GTK_CHECK_VERSION(3,0,0) |
| 1965 | if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
| 1966 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1967 | if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1968 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1969 | gtk_widget_grab_focus(widget); |
| 1970 | |
| 1971 | /* |
| 1972 | * Don't let additional events about multiple clicks send by GTK to us |
| 1973 | * after the initial button press event confuse us. |
| 1974 | */ |
| 1975 | if (event->type != GDK_BUTTON_PRESS) |
| 1976 | return FALSE; |
| 1977 | |
| 1978 | x = event->x; |
| 1979 | y = event->y; |
| 1980 | |
| 1981 | /* Handle multiple clicks */ |
| 1982 | if (!mouse_timed_out && mouse_click_timer) |
| 1983 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1984 | #if GTK_CHECK_VERSION(3,0,0) |
| 1985 | g_source_remove(mouse_click_timer); |
| 1986 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1987 | gtk_timeout_remove(mouse_click_timer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1988 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1989 | mouse_click_timer = 0; |
| 1990 | repeated_click = TRUE; |
| 1991 | } |
| 1992 | |
| 1993 | mouse_timed_out = FALSE; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1994 | #if GTK_CHECK_VERSION(3,0,0) |
| 1995 | mouse_click_timer = g_timeout_add((guint)p_mouset, |
| 1996 | mouse_click_timer_cb, &mouse_timed_out); |
| 1997 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1998 | mouse_click_timer = gtk_timeout_add((guint32)p_mouset, |
| 1999 | mouse_click_timer_cb, &mouse_timed_out); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2000 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2001 | |
| 2002 | switch (event->button) |
| 2003 | { |
Bram Moolenaar | 88e484b | 2015-11-24 15:38:44 +0100 | [diff] [blame] | 2004 | /* Keep in sync with gui_x11.c. |
| 2005 | * Buttons 4-7 are handled in scroll_event() */ |
| 2006 | case 1: button = MOUSE_LEFT; break; |
| 2007 | case 2: button = MOUSE_MIDDLE; break; |
| 2008 | case 3: button = MOUSE_RIGHT; break; |
| 2009 | case 8: button = MOUSE_X1; break; |
| 2010 | case 9: button = MOUSE_X2; break; |
| 2011 | default: |
| 2012 | return FALSE; /* Unknown button */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2013 | } |
| 2014 | |
| 2015 | #ifdef FEAT_XIM |
| 2016 | /* cancel any preediting */ |
| 2017 | if (im_is_preediting()) |
| 2018 | xim_reset(); |
| 2019 | #endif |
| 2020 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2021 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2022 | |
| 2023 | gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2024 | |
| 2025 | return TRUE; |
| 2026 | } |
| 2027 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2028 | /* |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 2029 | * GTK+ 2 abstracts scrolling via the GdkEventScroll. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2030 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2031 | static gboolean |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2032 | scroll_event(GtkWidget *widget, |
| 2033 | GdkEventScroll *event, |
| 2034 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2035 | { |
| 2036 | int button; |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2037 | int_u vim_modifiers; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2038 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2039 | #if GTK_CHECK_VERSION(3,0,0) |
| 2040 | if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
| 2041 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2042 | if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2043 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2044 | gtk_widget_grab_focus(widget); |
| 2045 | |
| 2046 | switch (event->direction) |
| 2047 | { |
| 2048 | case GDK_SCROLL_UP: |
| 2049 | button = MOUSE_4; |
| 2050 | break; |
| 2051 | case GDK_SCROLL_DOWN: |
| 2052 | button = MOUSE_5; |
| 2053 | break; |
Bram Moolenaar | 8d9b40e | 2010-07-25 15:49:07 +0200 | [diff] [blame] | 2054 | case GDK_SCROLL_LEFT: |
| 2055 | button = MOUSE_7; |
| 2056 | break; |
| 2057 | case GDK_SCROLL_RIGHT: |
| 2058 | button = MOUSE_6; |
| 2059 | break; |
| 2060 | default: /* This shouldn't happen */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2061 | return FALSE; |
| 2062 | } |
| 2063 | |
| 2064 | # ifdef FEAT_XIM |
| 2065 | /* cancel any preediting */ |
| 2066 | if (im_is_preediting()) |
| 2067 | xim_reset(); |
| 2068 | # endif |
| 2069 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2070 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2071 | |
| 2072 | gui_send_mouse_event(button, (int)event->x, (int)event->y, |
| 2073 | FALSE, vim_modifiers); |
| 2074 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2075 | return TRUE; |
| 2076 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2077 | |
| 2078 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2079 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2080 | button_release_event(GtkWidget *widget UNUSED, |
| 2081 | GdkEventButton *event, |
| 2082 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2083 | { |
| 2084 | int x, y; |
| 2085 | int_u vim_modifiers; |
| 2086 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 2087 | gui.event_time = event->time; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2088 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2089 | /* Remove any motion "machine gun" timers used for automatic further |
| 2090 | extension of allocation areas if outside of the applications window |
| 2091 | area .*/ |
| 2092 | if (motion_repeat_timer) |
| 2093 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2094 | #if GTK_CHECK_VERSION(3,0,0) |
| 2095 | g_source_remove(motion_repeat_timer); |
| 2096 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2097 | gtk_timeout_remove(motion_repeat_timer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2098 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2099 | motion_repeat_timer = 0; |
| 2100 | } |
| 2101 | |
| 2102 | x = event->x; |
| 2103 | y = event->y; |
| 2104 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2105 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2106 | |
| 2107 | gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2108 | |
| 2109 | return TRUE; |
| 2110 | } |
| 2111 | |
| 2112 | |
| 2113 | #ifdef FEAT_DND |
| 2114 | /**************************************************************************** |
| 2115 | * Drag aNd Drop support handlers. |
| 2116 | */ |
| 2117 | |
| 2118 | /* |
| 2119 | * Count how many items there may be and separate them with a NUL. |
| 2120 | * Apparently the items are separated with \r\n. This is not documented, |
| 2121 | * thus be careful not to go past the end. Also allow separation with |
| 2122 | * NUL characters. |
| 2123 | */ |
| 2124 | static int |
| 2125 | count_and_decode_uri_list(char_u *out, char_u *raw, int len) |
| 2126 | { |
| 2127 | int i; |
| 2128 | char_u *p = out; |
| 2129 | int count = 0; |
| 2130 | |
| 2131 | for (i = 0; i < len; ++i) |
| 2132 | { |
| 2133 | if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r') |
| 2134 | { |
| 2135 | if (p > out && p[-1] != NUL) |
| 2136 | { |
| 2137 | ++count; |
| 2138 | *p++ = NUL; |
| 2139 | } |
| 2140 | } |
| 2141 | else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0) |
| 2142 | { |
| 2143 | *p++ = hexhex2nr(raw + i + 1); |
| 2144 | i += 2; |
| 2145 | } |
| 2146 | else |
| 2147 | *p++ = raw[i]; |
| 2148 | } |
| 2149 | if (p > out && p[-1] != NUL) |
| 2150 | { |
| 2151 | *p = NUL; /* last item didn't have \r or \n */ |
| 2152 | ++count; |
| 2153 | } |
| 2154 | return count; |
| 2155 | } |
| 2156 | |
| 2157 | /* |
| 2158 | * Parse NUL separated "src" strings. Make it an array "outlist" form. On |
| 2159 | * this process, URI which protocol is not "file:" are removed. Return |
| 2160 | * length of array (less than "max"). |
| 2161 | */ |
| 2162 | static int |
| 2163 | filter_uri_list(char_u **outlist, int max, char_u *src) |
| 2164 | { |
| 2165 | int i, j; |
| 2166 | |
| 2167 | for (i = j = 0; i < max; ++i) |
| 2168 | { |
| 2169 | outlist[i] = NULL; |
| 2170 | if (STRNCMP(src, "file:", 5) == 0) |
| 2171 | { |
| 2172 | src += 5; |
| 2173 | if (STRNCMP(src, "//localhost", 11) == 0) |
| 2174 | src += 11; |
| 2175 | while (src[0] == '/' && src[1] == '/') |
| 2176 | ++src; |
| 2177 | outlist[j++] = vim_strsave(src); |
| 2178 | } |
| 2179 | src += STRLEN(src) + 1; |
| 2180 | } |
| 2181 | return j; |
| 2182 | } |
| 2183 | |
| 2184 | static char_u ** |
| 2185 | parse_uri_list(int *count, char_u *data, int len) |
| 2186 | { |
| 2187 | int n = 0; |
| 2188 | char_u *tmp = NULL; |
| 2189 | char_u **array = NULL;; |
| 2190 | |
| 2191 | if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL) |
| 2192 | { |
| 2193 | n = count_and_decode_uri_list(tmp, data, len); |
| 2194 | if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL) |
| 2195 | n = filter_uri_list(array, n, tmp); |
| 2196 | } |
| 2197 | vim_free(tmp); |
| 2198 | *count = n; |
| 2199 | return array; |
| 2200 | } |
| 2201 | |
| 2202 | static void |
| 2203 | drag_handle_uri_list(GdkDragContext *context, |
| 2204 | GtkSelectionData *data, |
| 2205 | guint time_, |
| 2206 | GdkModifierType state, |
| 2207 | gint x, |
| 2208 | gint y) |
| 2209 | { |
| 2210 | char_u **fnames; |
| 2211 | int nfiles = 0; |
| 2212 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2213 | # if GTK_CHECK_VERSION(3,0,0) |
| 2214 | fnames = parse_uri_list(&nfiles, |
| 2215 | (char_u *)gtk_selection_data_get_data(data), |
| 2216 | gtk_selection_data_get_length(data)); |
| 2217 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2218 | fnames = parse_uri_list(&nfiles, data->data, data->length); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2219 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2220 | |
| 2221 | if (fnames != NULL && nfiles > 0) |
| 2222 | { |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2223 | int_u modifiers; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2224 | |
| 2225 | gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ |
| 2226 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2227 | modifiers = modifiers_gdk2mouse(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2228 | |
| 2229 | gui_handle_drop(x, y, modifiers, fnames, nfiles); |
| 2230 | } |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 2231 | else |
| 2232 | vim_free(fnames); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2233 | } |
| 2234 | |
| 2235 | static void |
| 2236 | drag_handle_text(GdkDragContext *context, |
| 2237 | GtkSelectionData *data, |
| 2238 | guint time_, |
| 2239 | GdkModifierType state) |
| 2240 | { |
| 2241 | char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP}; |
| 2242 | char_u *text; |
| 2243 | int len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2244 | char_u *tmpbuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2245 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2246 | # if GTK_CHECK_VERSION(3,0,0) |
| 2247 | text = (char_u *)gtk_selection_data_get_data(data); |
| 2248 | len = gtk_selection_data_get_length(data); |
| 2249 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2250 | text = data->data; |
| 2251 | len = 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 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2254 | # if GTK_CHECK_VERSION(3,0,0) |
| 2255 | if (gtk_selection_data_get_data_type(data) == utf8_string_atom) |
| 2256 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2257 | if (data->type == utf8_string_atom) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2258 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2259 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2260 | if (input_conv.vc_type != CONV_NONE) |
| 2261 | tmpbuf = string_convert(&input_conv, text, &len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2262 | if (tmpbuf != NULL) |
| 2263 | text = tmpbuf; |
| 2264 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2265 | |
| 2266 | dnd_yank_drag_data(text, (long)len); |
| 2267 | gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2268 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2269 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2270 | dropkey[2] = modifiers_gdk2vim(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2271 | |
| 2272 | if (dropkey[2] != 0) |
| 2273 | add_to_input_buf(dropkey, (int)sizeof(dropkey)); |
| 2274 | else |
| 2275 | add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2276 | } |
| 2277 | |
| 2278 | /* |
| 2279 | * DND receiver. |
| 2280 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2281 | static void |
| 2282 | drag_data_received_cb(GtkWidget *widget, |
| 2283 | GdkDragContext *context, |
| 2284 | gint x, |
| 2285 | gint y, |
| 2286 | GtkSelectionData *data, |
| 2287 | guint info, |
| 2288 | guint time_, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2289 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2290 | { |
| 2291 | GdkModifierType state; |
| 2292 | |
| 2293 | /* Guard against trash */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2294 | # if GTK_CHECK_VERSION(3,0,0) |
| 2295 | const guchar * const data_data = gtk_selection_data_get_data(data); |
| 2296 | const gint data_length = gtk_selection_data_get_length(data); |
| 2297 | const gint data_format = gtk_selection_data_get_format(data); |
| 2298 | |
| 2299 | if (data_data == NULL |
| 2300 | || data_length <= 0 |
| 2301 | || data_format != 8 |
| 2302 | || data_data[data_length] != '\0') |
| 2303 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2304 | if (data->data == NULL |
| 2305 | || data->length <= 0 |
| 2306 | || data->format != 8 |
| 2307 | || data->data[data->length] != '\0') |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2308 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2309 | { |
| 2310 | gtk_drag_finish(context, FALSE, FALSE, time_); |
| 2311 | return; |
| 2312 | } |
| 2313 | |
| 2314 | /* Get the current modifier state for proper distinguishment between |
| 2315 | * different operations later. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2316 | #if GTK_CHECK_VERSION(3,0,0) |
| 2317 | gui_gtk_get_pointer(widget, NULL, NULL, &state); |
| 2318 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2319 | gdk_window_get_pointer(widget->window, NULL, NULL, &state); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2320 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2321 | |
| 2322 | /* Not sure about the role of "text/plain" here... */ |
| 2323 | if (info == (guint)TARGET_TEXT_URI_LIST) |
| 2324 | drag_handle_uri_list(context, data, time_, state, x, y); |
| 2325 | else |
| 2326 | drag_handle_text(context, data, time_, state); |
| 2327 | |
| 2328 | } |
| 2329 | #endif /* FEAT_DND */ |
| 2330 | |
| 2331 | |
| 2332 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 2333 | /* |
| 2334 | * GnomeClient interact callback. Check for unsaved buffers that cannot |
| 2335 | * be abandoned and pop up a dialog asking the user for confirmation if |
| 2336 | * necessary. |
| 2337 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2338 | static void |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2339 | sm_client_check_changed_any(GnomeClient *client UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2340 | gint key, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2341 | GnomeDialogType type UNUSED, |
| 2342 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2343 | { |
| 2344 | cmdmod_T save_cmdmod; |
| 2345 | gboolean shutdown_cancelled; |
| 2346 | |
| 2347 | save_cmdmod = cmdmod; |
| 2348 | |
| 2349 | # ifdef FEAT_BROWSE |
| 2350 | cmdmod.browse = TRUE; |
| 2351 | # endif |
| 2352 | # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2353 | cmdmod.confirm = TRUE; |
| 2354 | # endif |
| 2355 | /* |
| 2356 | * If there are changed buffers, present the user with |
| 2357 | * a dialog if possible, otherwise give an error message. |
| 2358 | */ |
Bram Moolenaar | 027387f | 2016-01-02 22:25:52 +0100 | [diff] [blame] | 2359 | shutdown_cancelled = check_changed_any(FALSE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2360 | |
| 2361 | exiting = FALSE; |
| 2362 | cmdmod = save_cmdmod; |
| 2363 | setcursor(); /* position the cursor */ |
| 2364 | out_flush(); |
| 2365 | /* |
| 2366 | * If the user hit the [Cancel] button the whole shutdown |
| 2367 | * will be cancelled. Wow, quite powerful feature (: |
| 2368 | */ |
| 2369 | gnome_interaction_key_return(key, shutdown_cancelled); |
| 2370 | } |
| 2371 | |
| 2372 | /* |
| 2373 | * Generate a script that can be used to restore the current editing session. |
| 2374 | * Save the value of v:this_session before running :mksession in order to make |
| 2375 | * automagic session save fully transparent. Return TRUE on success. |
| 2376 | */ |
| 2377 | static int |
| 2378 | write_session_file(char_u *filename) |
| 2379 | { |
| 2380 | char_u *escaped_filename; |
| 2381 | char *mksession_cmdline; |
| 2382 | unsigned int save_ssop_flags; |
| 2383 | int failed; |
| 2384 | |
| 2385 | /* |
| 2386 | * Build an ex command line to create a script that restores the current |
| 2387 | * session if executed. Escape the filename to avoid nasty surprises. |
| 2388 | */ |
| 2389 | escaped_filename = vim_strsave_escaped(filename, escape_chars); |
| 2390 | if (escaped_filename == NULL) |
| 2391 | return FALSE; |
Bram Moolenaar | dc3213d | 2007-06-19 16:03:50 +0000 | [diff] [blame] | 2392 | mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename, |
| 2393 | NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2394 | vim_free(escaped_filename); |
Bram Moolenaar | dc3213d | 2007-06-19 16:03:50 +0000 | [diff] [blame] | 2395 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2396 | /* |
| 2397 | * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid |
| 2398 | * unpredictable effects when the session is saved automatically. Also, |
| 2399 | * we definitely need SSOP_GLOBALS to be able to restore v:this_session. |
| 2400 | * Don't use SSOP_BUFFERS to prevent the buffer list from becoming |
| 2401 | * enormously large if the GNOME session feature is used regularly. |
| 2402 | */ |
| 2403 | save_ssop_flags = ssop_flags; |
| 2404 | ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS |
Bram Moolenaar | dc3213d | 2007-06-19 16:03:50 +0000 | [diff] [blame] | 2405 | |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2406 | |
| 2407 | do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session"); |
| 2408 | failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL); |
| 2409 | 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] | 2410 | do_unlet((char_u *)"Save_VV_this_session", TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2411 | |
| 2412 | ssop_flags = save_ssop_flags; |
| 2413 | g_free(mksession_cmdline); |
Bram Moolenaar | 24dc230 | 2014-05-13 20:19:58 +0200 | [diff] [blame] | 2414 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2415 | /* |
| 2416 | * Reopen the file and append a command to restore v:this_session, |
| 2417 | * as if this save never happened. This is to avoid conflicts with |
| 2418 | * the user's own sessions. FIXME: It's probably less hackish to add |
| 2419 | * a "stealth" flag to 'sessionoptions' -- gotta ask Bram. |
| 2420 | */ |
| 2421 | if (!failed) |
| 2422 | { |
| 2423 | FILE *fd; |
| 2424 | |
| 2425 | fd = open_exfile(filename, TRUE, APPENDBIN); |
| 2426 | |
| 2427 | failed = (fd == NULL |
| 2428 | || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL |
| 2429 | || put_line(fd, "unlet Save_VV_this_session") == FAIL); |
| 2430 | |
| 2431 | if (fd != NULL && fclose(fd) != 0) |
| 2432 | failed = TRUE; |
| 2433 | |
| 2434 | if (failed) |
| 2435 | mch_remove(filename); |
| 2436 | } |
| 2437 | |
| 2438 | return !failed; |
| 2439 | } |
| 2440 | |
| 2441 | /* |
| 2442 | * "save_yourself" signal handler. Initiate an interaction to ask the user |
| 2443 | * for confirmation if necessary. Save the current editing session and tell |
| 2444 | * the session manager how to restart Vim. |
| 2445 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2446 | static gboolean |
| 2447 | sm_client_save_yourself(GnomeClient *client, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2448 | gint phase UNUSED, |
| 2449 | GnomeSaveStyle save_style UNUSED, |
| 2450 | gboolean shutdown UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2451 | GnomeInteractStyle interact_style, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2452 | gboolean fast UNUSED, |
| 2453 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2454 | { |
| 2455 | static const char suffix[] = "-session.vim"; |
| 2456 | char *session_file; |
| 2457 | unsigned int len; |
| 2458 | gboolean success; |
| 2459 | |
| 2460 | /* Always request an interaction if possible. check_changed_any() |
| 2461 | * won't actually show a dialog unless any buffers have been modified. |
| 2462 | * There doesn't seem to be an obvious way to check that without |
| 2463 | * automatically firing the dialog. Anyway, it works just fine. */ |
| 2464 | if (interact_style == GNOME_INTERACT_ANY) |
| 2465 | gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL, |
| 2466 | &sm_client_check_changed_any, |
| 2467 | NULL); |
| 2468 | out_flush(); |
| 2469 | ml_sync_all(FALSE, FALSE); /* preserve all swap files */ |
| 2470 | |
| 2471 | /* The path is unique for each session save. We do neither know nor care |
| 2472 | * which session script will actually be used later. This decision is in |
| 2473 | * the domain of the session manager. */ |
| 2474 | session_file = gnome_config_get_real_path( |
| 2475 | gnome_client_get_config_prefix(client)); |
| 2476 | len = strlen(session_file); |
| 2477 | |
| 2478 | if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR) |
| 2479 | --len; /* get rid of the superfluous trailing '/' */ |
| 2480 | |
| 2481 | session_file = g_renew(char, session_file, len + sizeof(suffix)); |
| 2482 | memcpy(session_file + len, suffix, sizeof(suffix)); |
| 2483 | |
| 2484 | success = write_session_file((char_u *)session_file); |
| 2485 | |
| 2486 | if (success) |
| 2487 | { |
| 2488 | const char *argv[8]; |
| 2489 | int i; |
| 2490 | |
| 2491 | /* Tell the session manager how to wipe out the stored session data. |
| 2492 | * This isn't as dangerous as it looks, don't worry :) session_file |
| 2493 | * is a unique absolute filename. Usually it'll be something like |
| 2494 | * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */ |
| 2495 | i = 0; |
| 2496 | argv[i++] = "rm"; |
| 2497 | argv[i++] = session_file; |
| 2498 | argv[i] = NULL; |
| 2499 | |
| 2500 | gnome_client_set_discard_command(client, i, (char **)argv); |
| 2501 | |
| 2502 | /* Tell the session manager how to restore the just saved session. |
| 2503 | * This is easily done thanks to Vim's -S option. Pass the -f flag |
| 2504 | * since there's no need to fork -- it might even cause confusion. |
| 2505 | * Also pass the window role to give the WM something to match on. |
| 2506 | * The role is set in gui_mch_open(), thus should _never_ be NULL. */ |
| 2507 | i = 0; |
| 2508 | argv[i++] = restart_command; |
| 2509 | argv[i++] = "-f"; |
| 2510 | argv[i++] = "-g"; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2511 | argv[i++] = "--role"; |
| 2512 | argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2513 | argv[i++] = "-S"; |
| 2514 | argv[i++] = session_file; |
| 2515 | argv[i] = NULL; |
| 2516 | |
| 2517 | gnome_client_set_restart_command(client, i, (char **)argv); |
| 2518 | gnome_client_set_clone_command(client, 0, NULL); |
| 2519 | } |
| 2520 | |
| 2521 | g_free(session_file); |
| 2522 | |
| 2523 | return success; |
| 2524 | } |
| 2525 | |
| 2526 | /* |
| 2527 | * Called when the session manager wants us to die. There isn't much to save |
| 2528 | * here since "save_yourself" has been emitted before (unless serious trouble |
| 2529 | * is happening). |
| 2530 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2531 | static void |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2532 | sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2533 | { |
| 2534 | /* Don't write messages to the GUI anymore */ |
| 2535 | full_screen = FALSE; |
| 2536 | |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 2537 | vim_strncpy(IObuff, (char_u *) |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 2538 | _("Vim: Received \"die\" request from session manager\n"), |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 2539 | IOSIZE - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2540 | preserve_exit(); |
| 2541 | } |
| 2542 | |
| 2543 | /* |
| 2544 | * Connect our signal handlers to be notified on session save and shutdown. |
| 2545 | */ |
| 2546 | static void |
| 2547 | setup_save_yourself(void) |
| 2548 | { |
| 2549 | GnomeClient *client; |
| 2550 | |
| 2551 | client = gnome_master_client(); |
| 2552 | |
| 2553 | if (client != NULL) |
| 2554 | { |
| 2555 | /* Must use the deprecated gtk_signal_connect() for compatibility |
| 2556 | * with GNOME 1. Arrgh, zombies! */ |
| 2557 | gtk_signal_connect(GTK_OBJECT(client), "save_yourself", |
| 2558 | GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL); |
| 2559 | gtk_signal_connect(GTK_OBJECT(client), "die", |
| 2560 | GTK_SIGNAL_FUNC(&sm_client_die), NULL); |
| 2561 | } |
| 2562 | } |
| 2563 | |
| 2564 | #else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */ |
| 2565 | |
| 2566 | # ifdef USE_XSMP |
| 2567 | /* |
| 2568 | * GTK tells us that XSMP needs attention |
| 2569 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2570 | static gboolean |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 2571 | local_xsmp_handle_requests( |
| 2572 | GIOChannel *source UNUSED, |
| 2573 | GIOCondition condition, |
| 2574 | gpointer data) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2575 | { |
| 2576 | if (condition == G_IO_IN) |
| 2577 | { |
| 2578 | /* Do stuff; maybe close connection */ |
| 2579 | if (xsmp_handle_requests() == FAIL) |
| 2580 | g_io_channel_unref((GIOChannel *)data); |
| 2581 | return TRUE; |
| 2582 | } |
| 2583 | /* Error */ |
| 2584 | g_io_channel_unref((GIOChannel *)data); |
| 2585 | xsmp_close(); |
| 2586 | return TRUE; |
| 2587 | } |
| 2588 | # endif /* USE_XSMP */ |
| 2589 | |
| 2590 | /* |
| 2591 | * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event. |
| 2592 | * This is an ugly use of X functions. GTK doesn't offer an alternative. |
| 2593 | */ |
| 2594 | static void |
| 2595 | setup_save_yourself(void) |
| 2596 | { |
| 2597 | Atom *existing_atoms = NULL; |
| 2598 | int count = 0; |
| 2599 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2600 | # ifdef USE_XSMP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2601 | if (xsmp_icefd != -1) |
| 2602 | { |
| 2603 | /* |
| 2604 | * Use XSMP is preference to legacy WM_SAVE_YOURSELF; |
| 2605 | * set up GTK IO monitor |
| 2606 | */ |
| 2607 | GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd); |
| 2608 | |
| 2609 | g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP, |
| 2610 | local_xsmp_handle_requests, (gpointer)g_io); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2611 | g_io_channel_unref(g_io); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2612 | } |
| 2613 | else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2614 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2615 | { |
| 2616 | /* Fall back to old method */ |
| 2617 | |
| 2618 | /* first get the existing value */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2619 | # if GTK_CHECK_VERSION(3,0,0) |
| 2620 | GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin); |
| 2621 | |
| 2622 | if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2623 | GDK_WINDOW_XID(mainwin_win), |
| 2624 | &existing_atoms, &count)) |
| 2625 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2626 | if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2627 | GDK_WINDOW_XWINDOW(gui.mainwin->window), |
| 2628 | &existing_atoms, &count)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2629 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2630 | { |
| 2631 | Atom *new_atoms; |
| 2632 | Atom save_yourself_xatom; |
| 2633 | int i; |
| 2634 | |
| 2635 | save_yourself_xatom = GET_X_ATOM(save_yourself_atom); |
| 2636 | |
| 2637 | /* check if WM_SAVE_YOURSELF isn't there yet */ |
| 2638 | for (i = 0; i < count; ++i) |
| 2639 | if (existing_atoms[i] == save_yourself_xatom) |
| 2640 | break; |
| 2641 | |
| 2642 | if (i == count) |
| 2643 | { |
| 2644 | /* allocate an Atoms array which is one item longer */ |
| 2645 | new_atoms = (Atom *)alloc((unsigned)((count + 1) |
| 2646 | * sizeof(Atom))); |
| 2647 | if (new_atoms != NULL) |
| 2648 | { |
| 2649 | memcpy(new_atoms, existing_atoms, count * sizeof(Atom)); |
| 2650 | new_atoms[count] = save_yourself_xatom; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2651 | # if GTK_CHECK_VERSION(3,0,0) |
| 2652 | XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2653 | GDK_WINDOW_XID(mainwin_win), |
| 2654 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2655 | XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2656 | GDK_WINDOW_XWINDOW(gui.mainwin->window), |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2657 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2658 | new_atoms, count + 1); |
| 2659 | vim_free(new_atoms); |
| 2660 | } |
| 2661 | } |
| 2662 | XFree(existing_atoms); |
| 2663 | } |
| 2664 | } |
| 2665 | } |
| 2666 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2667 | /* |
| 2668 | * Installing a global event filter seems to be the only way to catch |
| 2669 | * client messages of type WM_PROTOCOLS without overriding GDK's own |
| 2670 | * client message event filter. Well, that's still better than trying |
| 2671 | * 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] | 2672 | * |
| 2673 | * GTK2_FIXME: This doesn't seem to work. For some reason we never |
| 2674 | * receive WM_SAVE_YOURSELF even though everything is set up correctly. |
| 2675 | * I have the nasty feeling modern session managers just don't send this |
| 2676 | * deprecated message anymore. Addition: confirmed by several people. |
| 2677 | * |
| 2678 | * The GNOME session support is much cooler anyway. Unlike this ugly |
| 2679 | * WM_SAVE_YOURSELF hack it actually stores the session... And yes, |
| 2680 | * it should work with KDE as well. |
| 2681 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2682 | static GdkFilterReturn |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2683 | global_event_filter(GdkXEvent *xev, |
| 2684 | GdkEvent *event UNUSED, |
| 2685 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2686 | { |
| 2687 | XEvent *xevent = (XEvent *)xev; |
| 2688 | |
| 2689 | if (xevent != NULL |
| 2690 | && xevent->type == ClientMessage |
| 2691 | && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2692 | && (long_u)xevent->xclient.data.l[0] |
| 2693 | == GET_X_ATOM(save_yourself_atom)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2694 | { |
| 2695 | out_flush(); |
| 2696 | ml_sync_all(FALSE, FALSE); /* preserve all swap files */ |
| 2697 | /* |
| 2698 | * Set the window's WM_COMMAND property, to let the window manager |
| 2699 | * know we are done saving ourselves. We don't want to be |
| 2700 | * restarted, thus set argv to NULL. |
| 2701 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2702 | # if GTK_CHECK_VERSION(3,0,0) |
| 2703 | XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)), |
| 2704 | GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)), |
| 2705 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2706 | XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2707 | GDK_WINDOW_XWINDOW(gui.mainwin->window), |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2708 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2709 | NULL, 0); |
| 2710 | return GDK_FILTER_REMOVE; |
| 2711 | } |
| 2712 | |
| 2713 | return GDK_FILTER_CONTINUE; |
| 2714 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2715 | #endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */ |
| 2716 | |
| 2717 | |
| 2718 | /* |
| 2719 | * Setup the window icon & xcmdsrv comm after the main window has been realized. |
| 2720 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2721 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2722 | mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2723 | { |
| 2724 | /* If you get an error message here, you still need to unpack the runtime |
| 2725 | * archive! */ |
| 2726 | #ifdef magick |
| 2727 | # undef magick |
| 2728 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2729 | /* A bit hackish, but avoids casting later and allows optimization */ |
| 2730 | # define static static const |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2731 | #define magick vim32x32 |
| 2732 | #include "../runtime/vim32x32.xpm" |
| 2733 | #undef magick |
| 2734 | #define magick vim16x16 |
| 2735 | #include "../runtime/vim16x16.xpm" |
| 2736 | #undef magick |
| 2737 | #define magick vim48x48 |
| 2738 | #include "../runtime/vim48x48.xpm" |
| 2739 | #undef magick |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2740 | # undef static |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2741 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2742 | #if GTK_CHECK_VERSION(3,0,0) |
| 2743 | GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin); |
| 2744 | #endif |
| 2745 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2746 | /* When started with "--echo-wid" argument, write window ID on stdout. */ |
| 2747 | if (echo_wid_arg) |
| 2748 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2749 | #if GTK_CHECK_VERSION(3,0,0) |
| 2750 | printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win)); |
| 2751 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2752 | printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2753 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2754 | fflush(stdout); |
| 2755 | } |
| 2756 | |
| 2757 | if (vim_strchr(p_go, GO_ICON) != NULL) |
| 2758 | { |
| 2759 | /* |
| 2760 | * Add an icon to the main window. For fun and convenience of the user. |
| 2761 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2762 | GList *icons = NULL; |
| 2763 | |
| 2764 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16)); |
| 2765 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32)); |
| 2766 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48)); |
| 2767 | |
| 2768 | gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons); |
| 2769 | |
| 2770 | g_list_foreach(icons, (GFunc)&g_object_unref, NULL); |
| 2771 | g_list_free(icons); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2772 | } |
| 2773 | |
| 2774 | #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) |
| 2775 | /* 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] | 2776 | gdk_window_add_filter(NULL, &global_event_filter, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2777 | #endif |
| 2778 | /* Setup to indicate to the window manager that we want to catch the |
| 2779 | * WM_SAVE_YOURSELF event. For GNOME, this connects to the session |
| 2780 | * manager instead. */ |
| 2781 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 2782 | if (using_gnome) |
| 2783 | #endif |
| 2784 | setup_save_yourself(); |
| 2785 | |
| 2786 | #ifdef FEAT_CLIENTSERVER |
| 2787 | if (serverName == NULL && serverDelayedStartName != NULL) |
| 2788 | { |
| 2789 | /* 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] | 2790 | # if GTK_CHECK_VERSION(3,0,0) |
| 2791 | commWindow = GDK_WINDOW_XID(mainwin_win); |
| 2792 | |
| 2793 | (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2794 | serverDelayedStartName); |
| 2795 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2796 | commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window); |
| 2797 | |
| 2798 | (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2799 | serverDelayedStartName); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2800 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2801 | } |
| 2802 | else |
| 2803 | { |
| 2804 | /* |
| 2805 | * Cannot handle "XLib-only" windows with gtk event routines, we'll |
| 2806 | * have to change the "server" registration to that of the main window |
| 2807 | * If we have not registered a name yet, remember the window |
| 2808 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2809 | # if GTK_CHECK_VERSION(3,0,0) |
| 2810 | serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2811 | GDK_WINDOW_XID(mainwin_win)); |
| 2812 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2813 | serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2814 | GDK_WINDOW_XWINDOW(gui.mainwin->window)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2815 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2816 | } |
| 2817 | gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2818 | # if GTK_CHECK_VERSION(3,0,0) |
| 2819 | g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event", |
| 2820 | G_CALLBACK(property_event), NULL); |
| 2821 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2822 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event", |
| 2823 | GTK_SIGNAL_FUNC(property_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2824 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2825 | #endif |
| 2826 | } |
| 2827 | |
| 2828 | static GdkCursor * |
| 2829 | create_blank_pointer(void) |
| 2830 | { |
| 2831 | GdkWindow *root_window = NULL; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2832 | #if GTK_CHECK_VERSION(3,0,0) |
| 2833 | GdkPixbuf *blank_mask; |
| 2834 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2835 | GdkPixmap *blank_mask; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2836 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2837 | GdkCursor *cursor; |
| 2838 | GdkColor color = { 0, 0, 0, 0 }; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2839 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2840 | char blank_data[] = { 0x0 }; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2841 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2842 | |
| 2843 | #ifdef HAVE_GTK_MULTIHEAD |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2844 | # if GTK_CHECK_VERSION(3,12,0) |
| 2845 | { |
| 2846 | GdkWindow * const win = gtk_widget_get_window(gui.mainwin); |
| 2847 | GdkScreen * const scrn = gdk_window_get_screen(win); |
| 2848 | root_window = gdk_screen_get_root_window(scrn); |
| 2849 | } |
| 2850 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2851 | root_window = gtk_widget_get_root_window(gui.mainwin); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2852 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2853 | #endif |
| 2854 | |
| 2855 | /* Create a pseudo blank pointer, which is in fact one pixel by one pixel |
| 2856 | * in size. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2857 | #if GTK_CHECK_VERSION(3,0,0) |
| 2858 | { |
| 2859 | cairo_surface_t *surf; |
| 2860 | cairo_t *cr; |
| 2861 | |
| 2862 | surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1); |
| 2863 | cr = cairo_create(surf); |
| 2864 | |
| 2865 | cairo_set_source_rgb(cr, |
| 2866 | color.red / 65535.0, |
| 2867 | color.green / 65535.0, |
| 2868 | color.blue / 65535.0); |
| 2869 | cairo_rectangle(cr, 0, 0, 1, 1); |
| 2870 | cairo_fill(cr); |
| 2871 | cairo_destroy(cr); |
| 2872 | |
| 2873 | blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1); |
| 2874 | cairo_surface_destroy(surf); |
| 2875 | |
| 2876 | cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window), |
| 2877 | blank_mask, 0, 0); |
| 2878 | g_object_unref(blank_mask); |
| 2879 | } |
| 2880 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2881 | blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1); |
| 2882 | cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask, |
| 2883 | &color, &color, 0, 0); |
| 2884 | gdk_bitmap_unref(blank_mask); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2885 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2886 | |
| 2887 | return cursor; |
| 2888 | } |
| 2889 | |
| 2890 | #ifdef HAVE_GTK_MULTIHEAD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2891 | static void |
| 2892 | mainwin_screen_changed_cb(GtkWidget *widget, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2893 | GdkScreen *previous_screen UNUSED, |
| 2894 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2895 | { |
| 2896 | if (!gtk_widget_has_screen(widget)) |
| 2897 | return; |
| 2898 | |
| 2899 | /* |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 2900 | * Recreate the invisible mouse cursor. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2901 | */ |
| 2902 | if (gui.blank_pointer != NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2903 | # if GTK_CHECK_VERSION(3,0,0) |
| 2904 | g_object_unref(G_OBJECT(gui.blank_pointer)); |
| 2905 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2906 | gdk_cursor_unref(gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2907 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2908 | |
| 2909 | gui.blank_pointer = create_blank_pointer(); |
| 2910 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2911 | # if GTK_CHECK_VERSION(3,0,0) |
| 2912 | if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL) |
| 2913 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
| 2914 | gui.blank_pointer); |
| 2915 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2916 | if (gui.pointer_hidden && gui.drawarea->window != NULL) |
| 2917 | gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2918 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2919 | |
| 2920 | /* |
| 2921 | * Create a new PangoContext for this screen, and initialize it |
| 2922 | * with the current font if necessary. |
| 2923 | */ |
| 2924 | if (gui.text_context != NULL) |
| 2925 | g_object_unref(gui.text_context); |
| 2926 | |
| 2927 | gui.text_context = gtk_widget_create_pango_context(widget); |
| 2928 | pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
| 2929 | |
| 2930 | if (gui.norm_font != NULL) |
| 2931 | { |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 2932 | gui_mch_init_font(p_guifont, FALSE); |
Bram Moolenaar | 04a9d45 | 2006-03-27 21:03:26 +0000 | [diff] [blame] | 2933 | gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2934 | } |
| 2935 | } |
| 2936 | #endif /* HAVE_GTK_MULTIHEAD */ |
| 2937 | |
| 2938 | /* |
| 2939 | * After the drawing area comes up, we calculate all colors and create the |
| 2940 | * dummy blank cursor. |
| 2941 | * |
| 2942 | * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the |
| 2943 | * fact that the main VIM engine doesn't take them into account anywhere. |
| 2944 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2945 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2946 | drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2947 | { |
| 2948 | GtkWidget *sbar; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2949 | #if GTK_CHECK_VERSION(3,0,0) |
| 2950 | GtkAllocation allocation; |
| 2951 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2952 | |
| 2953 | #ifdef FEAT_XIM |
| 2954 | xim_init(); |
| 2955 | #endif |
| 2956 | gui_mch_new_colors(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2957 | #if GTK_CHECK_VERSION(3,0,0) |
| 2958 | gui.surface = gdk_window_create_similar_surface( |
| 2959 | gtk_widget_get_window(widget), |
| 2960 | CAIRO_CONTENT_COLOR_ALPHA, |
| 2961 | gtk_widget_get_allocated_width(widget), |
| 2962 | gtk_widget_get_allocated_height(widget)); |
| 2963 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2964 | gui.text_gc = gdk_gc_new(gui.drawarea->window); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2965 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2966 | |
| 2967 | gui.blank_pointer = create_blank_pointer(); |
| 2968 | if (gui.pointer_hidden) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2969 | #if GTK_CHECK_VERSION(3,0,0) |
| 2970 | gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer); |
| 2971 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2972 | gdk_window_set_cursor(widget->window, gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2973 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2974 | |
| 2975 | /* get the actual size of the scrollbars, if they are realized */ |
| 2976 | sbar = firstwin->w_scrollbars[SBAR_LEFT].id; |
| 2977 | if (!sbar || (!gui.which_scrollbars[SBAR_LEFT] |
| 2978 | && firstwin->w_scrollbars[SBAR_RIGHT].id)) |
| 2979 | sbar = firstwin->w_scrollbars[SBAR_RIGHT].id; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2980 | #if GTK_CHECK_VERSION(3,0,0) |
| 2981 | gtk_widget_get_allocation(sbar, &allocation); |
| 2982 | if (sbar && gtk_widget_get_realized(sbar) && allocation.width) |
| 2983 | gui.scrollbar_width = allocation.width; |
| 2984 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2985 | if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width) |
| 2986 | gui.scrollbar_width = sbar->allocation.width; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2987 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2988 | |
| 2989 | sbar = gui.bottom_sbar.id; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2990 | #if GTK_CHECK_VERSION(3,0,0) |
| 2991 | if (sbar && gtk_widget_get_realized(sbar) && allocation.height) |
| 2992 | gui.scrollbar_height = allocation.height; |
| 2993 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2994 | if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height) |
| 2995 | gui.scrollbar_height = sbar->allocation.height; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2996 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2997 | } |
| 2998 | |
| 2999 | /* |
| 3000 | * Properly clean up on shutdown. |
| 3001 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3002 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3003 | drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3004 | { |
| 3005 | /* Don't write messages to the GUI anymore */ |
| 3006 | full_screen = FALSE; |
| 3007 | |
| 3008 | #ifdef FEAT_XIM |
| 3009 | im_shutdown(); |
| 3010 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3011 | if (gui.ascii_glyphs != NULL) |
| 3012 | { |
| 3013 | pango_glyph_string_free(gui.ascii_glyphs); |
| 3014 | gui.ascii_glyphs = NULL; |
| 3015 | } |
| 3016 | if (gui.ascii_font != NULL) |
| 3017 | { |
| 3018 | g_object_unref(gui.ascii_font); |
| 3019 | gui.ascii_font = NULL; |
| 3020 | } |
| 3021 | g_object_unref(gui.text_context); |
| 3022 | gui.text_context = NULL; |
| 3023 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3024 | #if GTK_CHECK_VERSION(3,0,0) |
| 3025 | if (gui.surface != NULL) |
| 3026 | { |
| 3027 | cairo_surface_destroy(gui.surface); |
| 3028 | gui.surface = NULL; |
| 3029 | } |
| 3030 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3031 | g_object_unref(gui.text_gc); |
| 3032 | gui.text_gc = NULL; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3033 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3034 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3035 | #if GTK_CHECK_VERSION(3,0,0) |
| 3036 | g_object_unref(G_OBJECT(gui.blank_pointer)); |
| 3037 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3038 | gdk_cursor_unref(gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3039 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3040 | gui.blank_pointer = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3041 | } |
| 3042 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3043 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3044 | drawarea_style_set_cb(GtkWidget *widget UNUSED, |
| 3045 | GtkStyle *previous_style UNUSED, |
| 3046 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3047 | { |
| 3048 | gui_mch_new_colors(); |
| 3049 | } |
| 3050 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3051 | #if GTK_CHECK_VERSION(3,0,0) |
| 3052 | static gboolean |
| 3053 | drawarea_configure_event_cb(GtkWidget *widget, |
| 3054 | GdkEventConfigure *event, |
| 3055 | gpointer data UNUSED) |
| 3056 | { |
| 3057 | static int cur_width = 0; |
| 3058 | static int cur_height = 0; |
| 3059 | |
| 3060 | g_return_val_if_fail(event |
| 3061 | && event->width >= 1 && event->height >= 1, TRUE); |
| 3062 | |
| 3063 | if (event->width == cur_width && event->height == cur_height) |
| 3064 | return TRUE; |
| 3065 | |
| 3066 | cur_width = event->width; |
| 3067 | cur_height = event->height; |
| 3068 | |
| 3069 | if (gui.surface != NULL) |
| 3070 | cairo_surface_destroy(gui.surface); |
| 3071 | |
| 3072 | gui.surface = gdk_window_create_similar_surface( |
| 3073 | gtk_widget_get_window(widget), |
| 3074 | CAIRO_CONTENT_COLOR_ALPHA, |
| 3075 | event->width, event->height); |
| 3076 | |
| 3077 | gtk_widget_queue_draw(widget); |
| 3078 | |
| 3079 | return TRUE; |
| 3080 | } |
| 3081 | #endif |
| 3082 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3083 | /* |
| 3084 | * Callback routine for the "delete_event" signal on the toplevel window. |
| 3085 | * Tries to vim gracefully, or refuses to exit with changed buffers. |
| 3086 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3087 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3088 | delete_event_cb(GtkWidget *widget UNUSED, |
| 3089 | GdkEventAny *event UNUSED, |
| 3090 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3091 | { |
| 3092 | gui_shell_closed(); |
| 3093 | return TRUE; |
| 3094 | } |
| 3095 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3096 | #if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE) |
| 3097 | static int |
| 3098 | get_item_dimensions(GtkWidget *widget, GtkOrientation orientation) |
| 3099 | { |
| 3100 | GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL; |
| 3101 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3102 | # ifdef FEAT_GUI_GNOME |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3103 | if (using_gnome && widget != NULL) |
| 3104 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3105 | GtkWidget *parent; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3106 | BonoboDockItem *dockitem; |
| 3107 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3108 | parent = gtk_widget_get_parent(widget); |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3109 | if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM) |
| 3110 | { |
| 3111 | /* Only menu & toolbar are dock items. Could tabline be? |
| 3112 | * Seem to be only the 2 defined in GNOME */ |
| 3113 | widget = parent; |
| 3114 | dockitem = BONOBO_DOCK_ITEM(widget); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3115 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3116 | if (dockitem == NULL || dockitem->is_floating) |
| 3117 | return 0; |
| 3118 | item_orientation = bonobo_dock_item_get_orientation(dockitem); |
| 3119 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3120 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3121 | # endif |
| 3122 | # if GTK_CHECK_VERSION(3,0,0) |
| 3123 | if (widget != NULL |
| 3124 | && item_orientation == orientation |
| 3125 | && gtk_widget_get_realized(widget) |
| 3126 | && gtk_widget_get_visible(widget)) |
| 3127 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3128 | if (widget != NULL |
| 3129 | && item_orientation == orientation |
| 3130 | && GTK_WIDGET_REALIZED(widget) |
| 3131 | && GTK_WIDGET_VISIBLE(widget)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3132 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3133 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3134 | # if GTK_CHECK_VERSION(3,0,0) |
| 3135 | GtkAllocation allocation; |
| 3136 | |
| 3137 | gtk_widget_get_allocation(widget, &allocation); |
| 3138 | |
| 3139 | if (orientation == GTK_ORIENTATION_HORIZONTAL) |
| 3140 | return allocation.height; |
| 3141 | else |
| 3142 | return allocation.width; |
| 3143 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3144 | if (orientation == GTK_ORIENTATION_HORIZONTAL) |
| 3145 | return widget->allocation.height; |
| 3146 | else |
| 3147 | return widget->allocation.width; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3148 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3149 | } |
| 3150 | return 0; |
| 3151 | } |
| 3152 | #endif |
| 3153 | |
| 3154 | static int |
| 3155 | get_menu_tool_width(void) |
| 3156 | { |
| 3157 | int width = 0; |
| 3158 | |
| 3159 | #ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */ |
| 3160 | # ifdef FEAT_MENU |
| 3161 | width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL); |
| 3162 | # endif |
| 3163 | # ifdef FEAT_TOOLBAR |
| 3164 | width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL); |
| 3165 | # endif |
| 3166 | # ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3167 | if (gui.tabline != NULL) |
| 3168 | width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3169 | # endif |
| 3170 | #endif |
| 3171 | |
| 3172 | return width; |
| 3173 | } |
| 3174 | |
| 3175 | static int |
| 3176 | get_menu_tool_height(void) |
| 3177 | { |
| 3178 | int height = 0; |
| 3179 | |
| 3180 | #ifdef FEAT_MENU |
| 3181 | height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL); |
| 3182 | #endif |
| 3183 | #ifdef FEAT_TOOLBAR |
| 3184 | height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL); |
| 3185 | #endif |
| 3186 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3187 | if (gui.tabline != NULL) |
| 3188 | height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3189 | #endif |
| 3190 | |
| 3191 | return height; |
| 3192 | } |
| 3193 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3194 | /* This controls whether we can set the real window hints at |
| 3195 | * start-up when in a GtkPlug. |
| 3196 | * 0 = normal processing (default) |
| 3197 | * 1 = init. hints set, no-one's tried to reset since last check |
| 3198 | * 2 = init. hints set, attempt made to change hints |
| 3199 | */ |
| 3200 | static int init_window_hints_state = 0; |
| 3201 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3202 | static void |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3203 | update_window_manager_hints(int force_width, int force_height) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3204 | { |
| 3205 | static int old_width = 0; |
| 3206 | static int old_height = 0; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3207 | static int old_min_width = 0; |
| 3208 | static int old_min_height = 0; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3209 | static int old_char_width = 0; |
| 3210 | static int old_char_height = 0; |
| 3211 | |
| 3212 | int width; |
| 3213 | int height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3214 | int min_width; |
| 3215 | int min_height; |
| 3216 | |
| 3217 | /* At start-up, don't try to set the hints until the initial |
| 3218 | * values have been used (those that dictate our initial size) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3219 | * Let forced (i.e., correct) values through always. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3220 | */ |
| 3221 | if (!(force_width && force_height) && init_window_hints_state > 0) |
| 3222 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3223 | /* Don't do it! */ |
| 3224 | init_window_hints_state = 2; |
| 3225 | return; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3226 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3227 | |
| 3228 | /* This also needs to be done when the main window isn't there yet, |
| 3229 | * otherwise the hints don't work. */ |
| 3230 | width = gui_get_base_width(); |
| 3231 | height = gui_get_base_height(); |
| 3232 | # ifdef FEAT_MENU |
| 3233 | height += tabline_height() * gui.char_height; |
| 3234 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3235 | width += get_menu_tool_width(); |
| 3236 | height += get_menu_tool_height(); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3237 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3238 | /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 3239 | * their actual widget size. When we set our size ourselves (e.g., |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3240 | * 'set columns=' or init. -geom) we briefly set the min. to the size |
| 3241 | * we wish to be instead of the legitimate minimum so that we actually |
| 3242 | * resize correctly. |
| 3243 | */ |
| 3244 | if (force_width && force_height) |
| 3245 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3246 | min_width = force_width; |
| 3247 | min_height = force_height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3248 | } |
| 3249 | else |
| 3250 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3251 | min_width = width + MIN_COLUMNS * gui.char_width; |
| 3252 | min_height = height + MIN_LINES * gui.char_height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3253 | } |
| 3254 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3255 | /* Avoid an expose event when the size didn't change. */ |
| 3256 | if (width != old_width |
| 3257 | || height != old_height |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3258 | || min_width != old_min_width |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3259 | || min_height != old_min_height |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3260 | || gui.char_width != old_char_width |
| 3261 | || gui.char_height != old_char_height) |
| 3262 | { |
| 3263 | GdkGeometry geometry; |
| 3264 | GdkWindowHints geometry_mask; |
| 3265 | |
| 3266 | geometry.width_inc = gui.char_width; |
| 3267 | geometry.height_inc = gui.char_height; |
| 3268 | geometry.base_width = width; |
| 3269 | geometry.base_height = height; |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3270 | geometry.min_width = min_width; |
| 3271 | geometry.min_height = min_height; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3272 | geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC |
| 3273 | |GDK_HINT_MIN_SIZE; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3274 | /* Using gui.formwin as geometry widget doesn't work as expected |
| 3275 | * with GTK+ 2 -- dunno why. Presumably all the resizing hacks |
| 3276 | * in Vim confuse GTK+. */ |
| 3277 | gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin, |
| 3278 | &geometry, geometry_mask); |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3279 | old_width = width; |
| 3280 | old_height = height; |
| 3281 | old_min_width = min_width; |
| 3282 | old_min_height = min_height; |
| 3283 | old_char_width = gui.char_width; |
| 3284 | old_char_height = gui.char_height; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3285 | } |
| 3286 | } |
| 3287 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3288 | #ifdef FEAT_TOOLBAR |
| 3289 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3290 | /* |
| 3291 | * This extra effort wouldn't be necessary if we only used stock icons in the |
| 3292 | * toolbar, as we do for all builtin icons. But user-defined toolbar icons |
| 3293 | * shouldn't be treated differently, thus we do need this. |
| 3294 | */ |
| 3295 | static void |
| 3296 | icon_size_changed_foreach(GtkWidget *widget, gpointer user_data) |
| 3297 | { |
| 3298 | if (GTK_IS_IMAGE(widget)) |
| 3299 | { |
| 3300 | GtkImage *image = (GtkImage *)widget; |
| 3301 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3302 | # if GTK_CHECK_VERSION(3,10,0) |
| 3303 | if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME) |
| 3304 | { |
| 3305 | const GtkIconSize icon_size = GPOINTER_TO_INT(user_data); |
| 3306 | const gchar *icon_name; |
| 3307 | |
| 3308 | gtk_image_get_icon_name(image, &icon_name, NULL); |
| 3309 | |
| 3310 | gtk_image_set_from_icon_name(image, icon_name, icon_size); |
| 3311 | } |
| 3312 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3313 | /* User-defined icons are stored in a GtkIconSet */ |
| 3314 | if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET) |
| 3315 | { |
| 3316 | GtkIconSet *icon_set; |
| 3317 | GtkIconSize icon_size; |
| 3318 | |
| 3319 | gtk_image_get_icon_set(image, &icon_set, &icon_size); |
| 3320 | icon_size = (GtkIconSize)(long)user_data; |
| 3321 | |
| 3322 | gtk_icon_set_ref(icon_set); |
| 3323 | gtk_image_set_from_icon_set(image, icon_set, icon_size); |
| 3324 | gtk_icon_set_unref(icon_set); |
| 3325 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3326 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3327 | } |
| 3328 | else if (GTK_IS_CONTAINER(widget)) |
| 3329 | { |
| 3330 | gtk_container_foreach((GtkContainer *)widget, |
| 3331 | &icon_size_changed_foreach, |
| 3332 | user_data); |
| 3333 | } |
| 3334 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3335 | |
| 3336 | static void |
| 3337 | set_toolbar_style(GtkToolbar *toolbar) |
| 3338 | { |
| 3339 | GtkToolbarStyle style; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3340 | GtkIconSize size; |
| 3341 | GtkIconSize oldsize; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3342 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3343 | if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
| 3344 | == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
| 3345 | style = GTK_TOOLBAR_BOTH_HORIZ; |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3346 | else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3347 | == (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
| 3348 | style = GTK_TOOLBAR_BOTH; |
| 3349 | else if (toolbar_flags & TOOLBAR_TEXT) |
| 3350 | style = GTK_TOOLBAR_TEXT; |
| 3351 | else |
| 3352 | style = GTK_TOOLBAR_ICONS; |
| 3353 | |
| 3354 | gtk_toolbar_set_style(toolbar, style); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3355 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3356 | gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3357 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3358 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3359 | switch (tbis_flags) |
| 3360 | { |
| 3361 | case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break; |
| 3362 | case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break; |
| 3363 | case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break; |
| 3364 | case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break; |
Bram Moolenaar | beb003b | 2016-03-08 22:47:17 +0100 | [diff] [blame] | 3365 | case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break; |
| 3366 | case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3367 | default: size = GTK_ICON_SIZE_INVALID; break; |
| 3368 | } |
| 3369 | oldsize = gtk_toolbar_get_icon_size(toolbar); |
| 3370 | |
| 3371 | if (size == GTK_ICON_SIZE_INVALID) |
| 3372 | { |
| 3373 | /* Let global user preferences decide the icon size. */ |
| 3374 | gtk_toolbar_unset_icon_size(toolbar); |
| 3375 | size = gtk_toolbar_get_icon_size(toolbar); |
| 3376 | } |
| 3377 | if (size != oldsize) |
| 3378 | { |
| 3379 | gtk_container_foreach(GTK_CONTAINER(toolbar), |
| 3380 | &icon_size_changed_foreach, |
| 3381 | GINT_TO_POINTER((int)size)); |
| 3382 | } |
| 3383 | gtk_toolbar_set_icon_size(toolbar, size); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3384 | } |
| 3385 | |
| 3386 | #endif /* FEAT_TOOLBAR */ |
| 3387 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3388 | #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
| 3389 | static int ignore_tabline_evt = FALSE; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3390 | static GtkWidget *tabline_menu; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3391 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3392 | static GtkTooltips *tabline_tooltip; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3393 | # endif |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3394 | static int clicked_page; /* page clicked in tab line */ |
| 3395 | |
| 3396 | /* |
| 3397 | * Handle selecting an item in the tab line popup menu. |
| 3398 | */ |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3399 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3400 | tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data) |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3401 | { |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3402 | /* Add the string cmd into input buffer */ |
Bram Moolenaar | c6fe919 | 2006-04-09 21:54:49 +0000 | [diff] [blame] | 3403 | send_tabline_menu_event(clicked_page, (int)(long)user_data); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3404 | } |
| 3405 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3406 | static void |
| 3407 | add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp) |
| 3408 | { |
| 3409 | GtkWidget *item; |
| 3410 | char_u *utf_text; |
| 3411 | |
| 3412 | utf_text = CONVERT_TO_UTF8(text); |
| 3413 | item = gtk_menu_item_new_with_label((const char *)utf_text); |
| 3414 | gtk_widget_show(item); |
| 3415 | CONVERT_TO_UTF8_FREE(utf_text); |
| 3416 | |
| 3417 | gtk_container_add(GTK_CONTAINER(menu), item); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3418 | # if GTK_CHECK_VERSION(3,0,0) |
| 3419 | g_signal_connect(G_OBJECT(item), "activate", |
| 3420 | G_CALLBACK(tabline_menu_handler), |
| 3421 | GINT_TO_POINTER(resp)); |
| 3422 | # else |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3423 | gtk_signal_connect(GTK_OBJECT(item), "activate", |
| 3424 | GTK_SIGNAL_FUNC(tabline_menu_handler), |
Bram Moolenaar | 47b46d7 | 2008-07-02 19:05:48 +0000 | [diff] [blame] | 3425 | (gpointer)(long)resp); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3426 | # endif |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3427 | } |
| 3428 | |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3429 | /* |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3430 | * Create a menu for the tab line. |
| 3431 | */ |
| 3432 | static GtkWidget * |
| 3433 | create_tabline_menu(void) |
| 3434 | { |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3435 | GtkWidget *menu; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3436 | |
| 3437 | menu = gtk_menu_new(); |
Bram Moolenaar | 7098ee5 | 2015-06-09 19:14:24 +0200 | [diff] [blame] | 3438 | if (first_tabpage->tp_next != NULL) |
| 3439 | add_tabline_menu_item(menu, (char_u *)_("Close tab"), |
| 3440 | TABLINE_MENU_CLOSE); |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3441 | add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW); |
| 3442 | add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3443 | |
| 3444 | return menu; |
| 3445 | } |
| 3446 | |
| 3447 | static gboolean |
| 3448 | on_tabline_menu(GtkWidget *widget, GdkEvent *event) |
| 3449 | { |
| 3450 | /* Was this button press event ? */ |
| 3451 | if (event->type == GDK_BUTTON_PRESS) |
| 3452 | { |
| 3453 | GdkEventButton *bevent = (GdkEventButton *)event; |
| 3454 | int x = bevent->x; |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3455 | int y = bevent->y; |
| 3456 | GtkWidget *tabwidget; |
| 3457 | GdkWindow *tabwin; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3458 | |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 3459 | /* When ignoring events return TRUE so that the selected page doesn't |
| 3460 | * change. */ |
| 3461 | if (hold_gui_events |
| 3462 | # ifdef FEAT_CMDWIN |
| 3463 | || cmdwin_type != 0 |
| 3464 | # endif |
| 3465 | ) |
| 3466 | return TRUE; |
| 3467 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3468 | # if GTK_CHECK_VERSION(3,0,0) |
| 3469 | tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y); |
| 3470 | # else |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3471 | tabwin = gdk_window_at_pointer(&x, &y); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3472 | # endif |
| 3473 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3474 | gdk_window_get_user_data(tabwin, (gpointer)&tabwidget); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3475 | # if GTK_CHECK_VERSION(3,0,0) |
| 3476 | clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget), |
| 3477 | "tab_num")); |
| 3478 | # else |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3479 | clicked_page = (int)(long)gtk_object_get_user_data( |
| 3480 | GTK_OBJECT(tabwidget)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3481 | # endif |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3482 | |
| 3483 | /* If the event was generated for 3rd button popup the menu. */ |
| 3484 | if (bevent->button == 3) |
| 3485 | { |
| 3486 | gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL, |
| 3487 | bevent->button, bevent->time); |
| 3488 | /* We handled the event. */ |
| 3489 | return TRUE; |
| 3490 | } |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3491 | else if (bevent->button == 1) |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3492 | { |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3493 | if (clicked_page == 0) |
| 3494 | { |
Bram Moolenaar | 0735454 | 2007-09-15 12:07:46 +0000 | [diff] [blame] | 3495 | /* Click after all tabs moves to next tab page. When "x" is |
| 3496 | * small guess it's the left button. */ |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 3497 | send_tabline_event(x < 50 ? -1 : 0); |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3498 | } |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3499 | } |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3500 | } |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 3501 | |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3502 | /* We didn't handle the event. */ |
| 3503 | return FALSE; |
| 3504 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3505 | |
| 3506 | /* |
| 3507 | * Handle selecting one of the tabs. |
| 3508 | */ |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3509 | static void |
| 3510 | on_select_tab( |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3511 | GtkNotebook *notebook UNUSED, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3512 | # if GTK_CHECK_VERSION(3,0,0) |
| 3513 | gpointer *page UNUSED, |
| 3514 | # else |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3515 | GtkNotebookPage *page UNUSED, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3516 | # endif |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 3517 | gint idx, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3518 | gpointer data UNUSED) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3519 | { |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3520 | if (!ignore_tabline_evt) |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3521 | { |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 3522 | send_tabline_event(idx + 1); |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3523 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3524 | } |
| 3525 | |
| 3526 | /* |
| 3527 | * Show or hide the tabline. |
| 3528 | */ |
| 3529 | void |
| 3530 | gui_mch_show_tabline(int showit) |
| 3531 | { |
| 3532 | if (gui.tabline == NULL) |
| 3533 | return; |
| 3534 | |
| 3535 | if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline))) |
| 3536 | { |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 3537 | /* Note: this may cause a resize event */ |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3538 | gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3539 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3540 | if (showit) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3541 | # if GTK_CHECK_VERSION(3,0,0) |
| 3542 | gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE); |
| 3543 | # else |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3544 | GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3545 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3546 | } |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3547 | |
| 3548 | gui_mch_update(); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3549 | } |
| 3550 | |
| 3551 | /* |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 3552 | * Return TRUE when tabline is displayed. |
| 3553 | */ |
| 3554 | int |
| 3555 | gui_mch_showing_tabline(void) |
| 3556 | { |
| 3557 | return gui.tabline != NULL |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3558 | && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)); |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 3559 | } |
| 3560 | |
| 3561 | /* |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3562 | * Update the labels of the tabline. |
| 3563 | */ |
| 3564 | void |
| 3565 | gui_mch_update_tabline(void) |
| 3566 | { |
| 3567 | GtkWidget *page; |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3568 | GtkWidget *event_box; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3569 | GtkWidget *label; |
| 3570 | tabpage_T *tp; |
| 3571 | int nr = 0; |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3572 | int tab_num; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3573 | int curtabidx = 0; |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3574 | char_u *labeltext; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3575 | |
| 3576 | if (gui.tabline == NULL) |
| 3577 | return; |
| 3578 | |
| 3579 | ignore_tabline_evt = TRUE; |
| 3580 | |
| 3581 | /* Add a label for each tab page. They all contain the same text area. */ |
| 3582 | for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) |
| 3583 | { |
| 3584 | if (tp == curtab) |
| 3585 | curtabidx = nr; |
| 3586 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3587 | tab_num = nr + 1; |
| 3588 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3589 | page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr); |
| 3590 | if (page == NULL) |
| 3591 | { |
| 3592 | /* Add notebook page */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3593 | # if GTK_CHECK_VERSION(3,2,0) |
| 3594 | page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
| 3595 | gtk_box_set_homogeneous(GTK_BOX(page), FALSE); |
| 3596 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3597 | page = gtk_vbox_new(FALSE, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3598 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3599 | gtk_widget_show(page); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3600 | event_box = gtk_event_box_new(); |
| 3601 | gtk_widget_show(event_box); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3602 | label = gtk_label_new("-Empty-"); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3603 | # if !GTK_CHECK_VERSION(3,14,0) |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3604 | gtk_misc_set_padding(GTK_MISC(label), 2, 2); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3605 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3606 | gtk_container_add(GTK_CONTAINER(event_box), label); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3607 | gtk_widget_show(label); |
| 3608 | gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline), |
| 3609 | page, |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3610 | event_box, |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3611 | nr++); |
| 3612 | } |
| 3613 | |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3614 | event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3615 | # if GTK_CHECK_VERSION(3,0,0) |
| 3616 | g_object_set_data(G_OBJECT(event_box), "tab_num", |
| 3617 | GINT_TO_POINTER(tab_num)); |
| 3618 | # else |
Bram Moolenaar | 47b46d7 | 2008-07-02 19:05:48 +0000 | [diff] [blame] | 3619 | gtk_object_set_user_data(GTK_OBJECT(event_box), |
| 3620 | (gpointer)(long)tab_num); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3621 | # endif |
| 3622 | # if GTK_CHECK_VERSION(3,0,0) |
| 3623 | label = gtk_bin_get_child(GTK_BIN(event_box)); |
| 3624 | # else |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3625 | label = GTK_BIN(event_box)->child; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3626 | # endif |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 3627 | get_tabline_label(tp, FALSE); |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3628 | labeltext = CONVERT_TO_UTF8(NameBuff); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3629 | gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext); |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3630 | CONVERT_TO_UTF8_FREE(labeltext); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3631 | |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3632 | get_tabline_label(tp, TRUE); |
| 3633 | labeltext = CONVERT_TO_UTF8(NameBuff); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3634 | # if GTK_CHECK_VERSION(3,0,0) |
| 3635 | gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext); |
| 3636 | # else |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3637 | gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box, |
| 3638 | (const char *)labeltext, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3639 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3640 | CONVERT_TO_UTF8_FREE(labeltext); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3641 | } |
| 3642 | |
| 3643 | /* Remove any old labels. */ |
| 3644 | while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL) |
| 3645 | gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr); |
| 3646 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3647 | # if GTK_CHECK_VERSION(3,0,0) |
| 3648 | if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx) |
| 3649 | gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx); |
| 3650 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3651 | if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3652 | gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3653 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3654 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3655 | /* Make sure everything is in place before drawing text. */ |
| 3656 | gui_mch_update(); |
| 3657 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3658 | ignore_tabline_evt = FALSE; |
| 3659 | } |
| 3660 | |
| 3661 | /* |
| 3662 | * Set the current tab to "nr". First tab is 1. |
| 3663 | */ |
| 3664 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 3665 | gui_mch_set_curtab(int nr) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3666 | { |
| 3667 | if (gui.tabline == NULL) |
| 3668 | return; |
| 3669 | |
| 3670 | ignore_tabline_evt = TRUE; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3671 | # if GTK_CHECK_VERSION(3,0,0) |
| 3672 | if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1) |
| 3673 | gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1); |
| 3674 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3675 | if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3676 | gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3677 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3678 | ignore_tabline_evt = FALSE; |
| 3679 | } |
| 3680 | |
| 3681 | #endif /* FEAT_GUI_TABLINE */ |
| 3682 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3683 | /* |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3684 | * Add selection targets for PRIMARY and CLIPBOARD selections. |
| 3685 | */ |
| 3686 | void |
| 3687 | gui_gtk_set_selection_targets(void) |
| 3688 | { |
| 3689 | int i, j = 0; |
| 3690 | int n_targets = N_SELECTION_TARGETS; |
| 3691 | GtkTargetEntry targets[N_SELECTION_TARGETS]; |
| 3692 | |
| 3693 | for (i = 0; i < (int)N_SELECTION_TARGETS; ++i) |
| 3694 | { |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 3695 | /* OpenOffice tries to use TARGET_HTML and fails when we don't |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3696 | * return something, instead of trying another target. Therefore only |
| 3697 | * offer TARGET_HTML when it works. */ |
| 3698 | if (!clip_html && selection_targets[i].info == TARGET_HTML) |
| 3699 | n_targets--; |
| 3700 | else |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3701 | targets[j++] = selection_targets[i]; |
| 3702 | } |
| 3703 | |
| 3704 | gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY); |
| 3705 | gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom); |
| 3706 | gtk_selection_add_targets(gui.drawarea, |
| 3707 | (GdkAtom)GDK_SELECTION_PRIMARY, |
| 3708 | targets, n_targets); |
| 3709 | gtk_selection_add_targets(gui.drawarea, |
| 3710 | (GdkAtom)clip_plus.gtk_sel_atom, |
| 3711 | targets, n_targets); |
| 3712 | } |
| 3713 | |
| 3714 | /* |
| 3715 | * Set up for receiving DND items. |
| 3716 | */ |
| 3717 | void |
| 3718 | gui_gtk_set_dnd_targets(void) |
| 3719 | { |
| 3720 | int i, j = 0; |
| 3721 | int n_targets = N_DND_TARGETS; |
| 3722 | GtkTargetEntry targets[N_DND_TARGETS]; |
| 3723 | |
| 3724 | for (i = 0; i < (int)N_DND_TARGETS; ++i) |
| 3725 | { |
Bram Moolenaar | b931d74 | 2011-10-26 11:36:25 +0200 | [diff] [blame] | 3726 | if (!clip_html && dnd_targets[i].info == TARGET_HTML) |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3727 | n_targets--; |
| 3728 | else |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3729 | targets[j++] = dnd_targets[i]; |
| 3730 | } |
| 3731 | |
| 3732 | gtk_drag_dest_unset(gui.drawarea); |
| 3733 | gtk_drag_dest_set(gui.drawarea, |
| 3734 | GTK_DEST_DEFAULT_ALL, |
| 3735 | targets, n_targets, |
Bram Moolenaar | ba7cc9f | 2011-02-25 17:10:27 +0100 | [diff] [blame] | 3736 | GDK_ACTION_COPY | GDK_ACTION_MOVE); |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3737 | } |
| 3738 | |
| 3739 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3740 | * Initialize the GUI. Create all the windows, set up all the callbacks etc. |
| 3741 | * Returns OK for success, FAIL when the GUI can't be started. |
| 3742 | */ |
| 3743 | int |
| 3744 | gui_mch_init(void) |
| 3745 | { |
| 3746 | GtkWidget *vbox; |
| 3747 | |
| 3748 | #ifdef FEAT_GUI_GNOME |
| 3749 | /* Initialize the GNOME libraries. gnome_program_init()/gnome_init() |
| 3750 | * exits on failure, but that's a non-issue because we already called |
| 3751 | * gtk_init_check() in gui_mch_init_check(). */ |
| 3752 | if (using_gnome) |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3753 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3754 | gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT, |
| 3755 | LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL); |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3756 | # if defined(FEAT_FLOAT) && defined(LC_NUMERIC) |
Bram Moolenaar | 1ff32c5 | 2014-04-29 15:11:43 +0200 | [diff] [blame] | 3757 | { |
| 3758 | char *p = setlocale(LC_NUMERIC, NULL); |
| 3759 | |
| 3760 | /* Make sure strtod() uses a decimal point, not a comma. Gnome |
| 3761 | * init may change it. */ |
| 3762 | if (p == NULL || strcmp(p, "C") != 0) |
| 3763 | setlocale(LC_NUMERIC, "C"); |
| 3764 | } |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3765 | # endif |
| 3766 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3767 | #endif |
| 3768 | vim_free(gui_argv); |
| 3769 | gui_argv = NULL; |
| 3770 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3771 | #if GLIB_CHECK_VERSION(2,1,3) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3772 | /* Set the human-readable application name */ |
| 3773 | g_set_application_name("Vim"); |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3774 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3775 | /* |
| 3776 | * Force UTF-8 output no matter what the value of 'encoding' is. |
| 3777 | * did_set_string_option() in option.c prohibits changing 'termencoding' |
| 3778 | * to something else than UTF-8 if the GUI is in use. |
| 3779 | */ |
| 3780 | set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0); |
| 3781 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3782 | #ifdef FEAT_TOOLBAR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3783 | gui_gtk_register_stock_icons(); |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3784 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3785 | /* FIXME: Need to install the classic icons and a gtkrc.classic file. |
| 3786 | * The hard part is deciding install locations and the Makefile magic. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3787 | #if !GTK_CHECK_VERSION(3,0,0) |
| 3788 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3789 | gtk_rc_parse("gtkrc"); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3790 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3791 | #endif |
| 3792 | |
| 3793 | /* Initialize values */ |
| 3794 | gui.border_width = 2; |
| 3795 | gui.scrollbar_width = SB_DEFAULT_WIDTH; |
| 3796 | gui.scrollbar_height = SB_DEFAULT_WIDTH; |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 3797 | /* LINTED: avoid warning: conversion to 'unsigned long' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3798 | gui.fgcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 3799 | /* LINTED: avoid warning: conversion to 'unsigned long' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3800 | gui.bgcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 3801 | /* LINTED: avoid warning: conversion to 'unsigned long' */ |
| 3802 | gui.spcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3803 | |
| 3804 | /* Initialise atoms */ |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 3805 | html_atom = gdk_atom_intern("text/html", FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3806 | utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3807 | |
| 3808 | /* Set default foreground and background colors. */ |
| 3809 | gui.norm_pixel = gui.def_norm_pixel; |
| 3810 | gui.back_pixel = gui.def_back_pixel; |
| 3811 | |
| 3812 | if (gtk_socket_id != 0) |
| 3813 | { |
| 3814 | GtkWidget *plug; |
| 3815 | |
| 3816 | /* Use GtkSocket from another app. */ |
| 3817 | #ifdef HAVE_GTK_MULTIHEAD |
| 3818 | plug = gtk_plug_new_for_display(gdk_display_get_default(), |
| 3819 | gtk_socket_id); |
| 3820 | #else |
| 3821 | plug = gtk_plug_new(gtk_socket_id); |
| 3822 | #endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3823 | #if GTK_CHECK_VERSION(3,0,0) |
| 3824 | if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL) |
| 3825 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3826 | if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3827 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3828 | { |
| 3829 | gui.mainwin = plug; |
| 3830 | } |
| 3831 | else |
| 3832 | { |
| 3833 | g_warning("Connection to GTK+ socket (ID %u) failed", |
| 3834 | (unsigned int)gtk_socket_id); |
| 3835 | /* Pretend we never wanted it if it failed (get own window) */ |
| 3836 | gtk_socket_id = 0; |
| 3837 | } |
| 3838 | } |
| 3839 | |
| 3840 | if (gtk_socket_id == 0) |
| 3841 | { |
| 3842 | #ifdef FEAT_GUI_GNOME |
| 3843 | if (using_gnome) |
| 3844 | { |
| 3845 | gui.mainwin = gnome_app_new("Vim", NULL); |
| 3846 | # ifdef USE_XSMP |
| 3847 | /* Use the GNOME save-yourself functionality now. */ |
| 3848 | xsmp_close(); |
| 3849 | # endif |
| 3850 | } |
| 3851 | else |
| 3852 | #endif |
| 3853 | gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
| 3854 | } |
| 3855 | |
| 3856 | gtk_widget_set_name(gui.mainwin, "vim-main-window"); |
| 3857 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3858 | /* Create the PangoContext used for drawing all text. */ |
| 3859 | gui.text_context = gtk_widget_create_pango_context(gui.mainwin); |
| 3860 | pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3861 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3862 | #if GTK_CHECK_VERSION(3,0,0) |
| 3863 | gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0); |
| 3864 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3865 | gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3866 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3867 | gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK); |
| 3868 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3869 | #if GTK_CHECK_VERSION(3,0,0) |
| 3870 | g_signal_connect(G_OBJECT(gui.mainwin), "delete-event", |
| 3871 | G_CALLBACK(&delete_event_cb), NULL); |
| 3872 | |
| 3873 | g_signal_connect(G_OBJECT(gui.mainwin), "realize", |
| 3874 | G_CALLBACK(&mainwin_realize), NULL); |
| 3875 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3876 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event", |
| 3877 | GTK_SIGNAL_FUNC(&delete_event_cb), NULL); |
| 3878 | |
| 3879 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize", |
| 3880 | GTK_SIGNAL_FUNC(&mainwin_realize), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3881 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3882 | #ifdef HAVE_GTK_MULTIHEAD |
| 3883 | g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed", |
| 3884 | G_CALLBACK(&mainwin_screen_changed_cb), NULL); |
| 3885 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3886 | gui.accel_group = gtk_accel_group_new(); |
| 3887 | gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3888 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3889 | /* A vertical box holds the menubar, toolbar and main text window. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3890 | #if GTK_CHECK_VERSION(3,2,0) |
| 3891 | vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
| 3892 | gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE); |
| 3893 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3894 | vbox = gtk_vbox_new(FALSE, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3895 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3896 | |
| 3897 | #ifdef FEAT_GUI_GNOME |
| 3898 | if (using_gnome) |
| 3899 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3900 | # if defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3901 | /* automagically restore menubar/toolbar placement */ |
| 3902 | gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE); |
| 3903 | # endif |
| 3904 | gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox); |
| 3905 | } |
| 3906 | else |
| 3907 | #endif |
| 3908 | { |
| 3909 | gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox); |
| 3910 | gtk_widget_show(vbox); |
| 3911 | } |
| 3912 | |
| 3913 | #ifdef FEAT_MENU |
| 3914 | /* |
| 3915 | * Create the menubar and handle |
| 3916 | */ |
| 3917 | gui.menubar = gtk_menu_bar_new(); |
| 3918 | gtk_widget_set_name(gui.menubar, "vim-menubar"); |
| 3919 | |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3920 | /* Avoid that GTK takes <F10> away from us. */ |
| 3921 | { |
| 3922 | GtkSettings *gtk_settings; |
| 3923 | |
| 3924 | gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default()); |
| 3925 | g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL); |
| 3926 | } |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3927 | |
| 3928 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3929 | # ifdef FEAT_GUI_GNOME |
| 3930 | if (using_gnome) |
| 3931 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3932 | BonoboDockItem *dockitem; |
| 3933 | |
| 3934 | gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar)); |
| 3935 | dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), |
| 3936 | GNOME_APP_MENUBAR_NAME); |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 3937 | /* We don't want the menu to float. */ |
| 3938 | bonobo_dock_item_set_behavior(dockitem, |
| 3939 | bonobo_dock_item_get_behavior(dockitem) |
| 3940 | | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3941 | gui.menubar_h = GTK_WIDGET(dockitem); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3942 | } |
| 3943 | else |
| 3944 | # endif /* FEAT_GUI_GNOME */ |
| 3945 | { |
Bram Moolenaar | 18144c8 | 2006-04-12 21:52:12 +0000 | [diff] [blame] | 3946 | /* Always show the menubar, otherwise <F10> doesn't work. It may be |
| 3947 | * disabled in gui_init() later. */ |
| 3948 | gtk_widget_show(gui.menubar); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3949 | gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0); |
| 3950 | } |
| 3951 | #endif /* FEAT_MENU */ |
| 3952 | |
| 3953 | #ifdef FEAT_TOOLBAR |
| 3954 | /* |
| 3955 | * Create the toolbar and handle |
| 3956 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3957 | /* some aesthetics on the toolbar */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3958 | # ifdef USE_GTK3 |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 3959 | /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3960 | /* N.B. Since the default value of GtkToolbar::button-relief is |
| 3961 | * GTK_RELIEF_NONE, there's no need to specify that, probably. */ |
| 3962 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3963 | gtk_rc_parse_string( |
| 3964 | "style \"vim-toolbar-style\" {\n" |
| 3965 | " GtkToolbar::button_relief = GTK_RELIEF_NONE\n" |
| 3966 | "}\n" |
| 3967 | "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n"); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3968 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3969 | gui.toolbar = gtk_toolbar_new(); |
| 3970 | gtk_widget_set_name(gui.toolbar, "vim-toolbar"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3971 | set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); |
| 3972 | |
| 3973 | # ifdef FEAT_GUI_GNOME |
| 3974 | if (using_gnome) |
| 3975 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3976 | BonoboDockItem *dockitem; |
| 3977 | |
| 3978 | gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar)); |
| 3979 | dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), |
| 3980 | GNOME_APP_TOOLBAR_NAME); |
| 3981 | gui.toolbar_h = GTK_WIDGET(dockitem); |
Bram Moolenaar | e580b0c | 2006-03-21 21:33:03 +0000 | [diff] [blame] | 3982 | /* 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] | 3983 | * fixed let's disallow floating. */ |
Bram Moolenaar | e580b0c | 2006-03-21 21:33:03 +0000 | [diff] [blame] | 3984 | bonobo_dock_item_set_behavior(dockitem, |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 3985 | bonobo_dock_item_get_behavior(dockitem) |
| 3986 | | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3987 | gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3988 | } |
| 3989 | else |
| 3990 | # endif /* FEAT_GUI_GNOME */ |
| 3991 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3992 | if (vim_strchr(p_go, GO_TOOLBAR) != NULL |
| 3993 | && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) |
| 3994 | gtk_widget_show(gui.toolbar); |
| 3995 | gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0); |
| 3996 | } |
| 3997 | #endif /* FEAT_TOOLBAR */ |
| 3998 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3999 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 4000 | /* |
| 4001 | * Use a Notebook for the tab pages labels. The labels are hidden by |
| 4002 | * default. |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 4003 | */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4004 | gui.tabline = gtk_notebook_new(); |
| 4005 | gtk_widget_show(gui.tabline); |
| 4006 | gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0); |
| 4007 | gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE); |
| 4008 | gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE); |
Bram Moolenaar | 4a85b41 | 2006-04-23 22:40:29 +0000 | [diff] [blame] | 4009 | gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4010 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 4011 | gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4012 | # endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4013 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4014 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4015 | tabline_tooltip = gtk_tooltips_new(); |
| 4016 | gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4017 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4018 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 4019 | { |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4020 | GtkWidget *page, *label, *event_box; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 4021 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4022 | /* Add the first tab. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4023 | # if GTK_CHECK_VERSION(3,2,0) |
| 4024 | page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
| 4025 | gtk_box_set_homogeneous(GTK_BOX(page), FALSE); |
| 4026 | # else |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4027 | page = gtk_vbox_new(FALSE, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4028 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4029 | gtk_widget_show(page); |
| 4030 | gtk_container_add(GTK_CONTAINER(gui.tabline), page); |
| 4031 | label = gtk_label_new("-Empty-"); |
| 4032 | gtk_widget_show(label); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4033 | event_box = gtk_event_box_new(); |
| 4034 | gtk_widget_show(event_box); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4035 | # if GTK_CHECK_VERSION(3,0,0) |
| 4036 | g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L)); |
| 4037 | # else |
Bram Moolenaar | 47b46d7 | 2008-07-02 19:05:48 +0000 | [diff] [blame] | 4038 | gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4039 | # endif |
| 4040 | # if !GTK_CHECK_VERSION(3,14,0) |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 4041 | gtk_misc_set_padding(GTK_MISC(label), 2, 2); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4042 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4043 | gtk_container_add(GTK_CONTAINER(event_box), label); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 4044 | gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box); |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 4045 | } |
Bram Moolenaar | 54a709e | 2006-05-04 21:57:11 +0000 | [diff] [blame] | 4046 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4047 | # if GTK_CHECK_VERSION(3,0,0) |
| 4048 | g_signal_connect(G_OBJECT(gui.tabline), "switch-page", |
| 4049 | G_CALLBACK(on_select_tab), NULL); |
| 4050 | # else |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4051 | gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page", |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4052 | GTK_SIGNAL_FUNC(on_select_tab), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4053 | # endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4054 | |
| 4055 | /* Create a popup menu for the tab line and connect it. */ |
| 4056 | tabline_menu = create_tabline_menu(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4057 | # if GTK_CHECK_VERSION(3,0,0) |
| 4058 | g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event", |
| 4059 | G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu)); |
| 4060 | # else |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4061 | gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event", |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4062 | GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4063 | # endif |
| 4064 | #endif /* FEAT_GUI_TABLINE */ |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 4065 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4066 | gui.formwin = gtk_form_new(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4067 | #if GTK_CHECK_VERSION(3,0,0) |
| 4068 | gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0); |
| 4069 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4070 | gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4071 | #endif |
| 4072 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4073 | gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4074 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4075 | |
| 4076 | gui.drawarea = gtk_drawing_area_new(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4077 | #if GTK_CHECK_VERSION(3,0,0) |
| 4078 | gui.surface = NULL; |
| 4079 | gui.by_signal = FALSE; |
| 4080 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4081 | |
| 4082 | /* Determine which events we will filter. */ |
| 4083 | gtk_widget_set_events(gui.drawarea, |
| 4084 | GDK_EXPOSURE_MASK | |
| 4085 | GDK_ENTER_NOTIFY_MASK | |
| 4086 | GDK_LEAVE_NOTIFY_MASK | |
| 4087 | GDK_BUTTON_PRESS_MASK | |
| 4088 | GDK_BUTTON_RELEASE_MASK | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4089 | GDK_SCROLL_MASK | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4090 | GDK_KEY_PRESS_MASK | |
| 4091 | GDK_KEY_RELEASE_MASK | |
| 4092 | GDK_POINTER_MOTION_MASK | |
| 4093 | GDK_POINTER_MOTION_HINT_MASK); |
| 4094 | |
| 4095 | gtk_widget_show(gui.drawarea); |
| 4096 | gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0); |
| 4097 | gtk_widget_show(gui.formwin); |
| 4098 | gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0); |
| 4099 | |
| 4100 | /* For GtkSockets, key-presses must go to the focus widget (drawarea) |
| 4101 | * and not the window. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4102 | #if GTK_CHECK_VERSION(3,0,0) |
| 4103 | g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) |
| 4104 | : G_OBJECT(gui.drawarea), |
| 4105 | "key-press-event", |
| 4106 | G_CALLBACK(key_press_event), NULL); |
| 4107 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4108 | gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin) |
| 4109 | : GTK_OBJECT(gui.drawarea), |
| 4110 | "key_press_event", |
| 4111 | GTK_SIGNAL_FUNC(key_press_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4112 | #endif |
| 4113 | #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4114 | /* Also forward key release events for the benefit of GTK+ 2 input |
| 4115 | * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */ |
| 4116 | g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) |
| 4117 | : G_OBJECT(gui.drawarea), |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4118 | "key-release-event", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4119 | G_CALLBACK(&key_release_event), NULL); |
| 4120 | #endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4121 | #if GTK_CHECK_VERSION(3,0,0) |
| 4122 | g_signal_connect(G_OBJECT(gui.drawarea), "realize", |
| 4123 | G_CALLBACK(drawarea_realize_cb), NULL); |
| 4124 | g_signal_connect(G_OBJECT(gui.drawarea), "unrealize", |
| 4125 | G_CALLBACK(drawarea_unrealize_cb), NULL); |
| 4126 | g_signal_connect(G_OBJECT(gui.drawarea), "configure-event", |
| 4127 | G_CALLBACK(drawarea_configure_event_cb), NULL); |
| 4128 | g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set", |
| 4129 | G_CALLBACK(&drawarea_style_set_cb), NULL); |
| 4130 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4131 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize", |
| 4132 | GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL); |
| 4133 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize", |
| 4134 | GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL); |
| 4135 | |
| 4136 | gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set", |
| 4137 | GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4138 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4139 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4140 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4141 | gui.visibility = GDK_VISIBILITY_UNOBSCURED; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4142 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4143 | |
| 4144 | #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) |
| 4145 | wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE); |
| 4146 | save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE); |
| 4147 | #endif |
| 4148 | |
| 4149 | if (gtk_socket_id != 0) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4150 | /* make sure keyboard input can go to the drawarea */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4151 | #if GTK_CHECK_VERSION(3,0,0) |
| 4152 | gtk_widget_set_can_focus(gui.drawarea, TRUE); |
| 4153 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4154 | GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4155 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4156 | |
| 4157 | /* |
| 4158 | * Set clipboard specific atoms |
| 4159 | */ |
| 4160 | vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4161 | vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4162 | clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY; |
| 4163 | clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE); |
| 4164 | |
| 4165 | /* |
| 4166 | * Start out by adding the configured border width into the border offset. |
| 4167 | */ |
| 4168 | gui.border_offset = gui.border_width; |
| 4169 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4170 | #if GTK_CHECK_VERSION(3,0,0) |
| 4171 | g_signal_connect(G_OBJECT(gui.drawarea), "draw", |
| 4172 | G_CALLBACK(draw_event), NULL); |
| 4173 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4174 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event", |
| 4175 | GTK_SIGNAL_FUNC(visibility_event), NULL); |
| 4176 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event", |
| 4177 | GTK_SIGNAL_FUNC(expose_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4178 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4179 | |
| 4180 | /* |
| 4181 | * Only install these enter/leave callbacks when 'p' in 'guioptions'. |
| 4182 | * Only needed for some window managers. |
| 4183 | */ |
| 4184 | if (vim_strchr(p_go, GO_POINTER) != NULL) |
| 4185 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4186 | #if GTK_CHECK_VERSION(3,0,0) |
| 4187 | g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event", |
| 4188 | G_CALLBACK(leave_notify_event), NULL); |
| 4189 | g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event", |
| 4190 | G_CALLBACK(enter_notify_event), NULL); |
| 4191 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4192 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event", |
| 4193 | GTK_SIGNAL_FUNC(leave_notify_event), NULL); |
| 4194 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event", |
| 4195 | GTK_SIGNAL_FUNC(enter_notify_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4196 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4197 | } |
| 4198 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4199 | /* Real windows can get focus ... GtkPlug, being a mere container can't, |
| 4200 | * only its widgets. Arguably, this could be common code and we not use |
| 4201 | * the window focus at all, but let's be safe. |
| 4202 | */ |
| 4203 | if (gtk_socket_id == 0) |
| 4204 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4205 | #if GTK_CHECK_VERSION(3,0,0) |
| 4206 | g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event", |
| 4207 | G_CALLBACK(focus_out_event), NULL); |
| 4208 | g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event", |
| 4209 | G_CALLBACK(focus_in_event), NULL); |
| 4210 | #else |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4211 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event", |
| 4212 | GTK_SIGNAL_FUNC(focus_out_event), NULL); |
| 4213 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event", |
| 4214 | GTK_SIGNAL_FUNC(focus_in_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4215 | #endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4216 | } |
| 4217 | else |
| 4218 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4219 | #if GTK_CHECK_VERSION(3,0,0) |
| 4220 | g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event", |
| 4221 | G_CALLBACK(focus_out_event), NULL); |
| 4222 | g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event", |
| 4223 | G_CALLBACK(focus_in_event), NULL); |
| 4224 | #else |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4225 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event", |
| 4226 | GTK_SIGNAL_FUNC(focus_out_event), NULL); |
| 4227 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event", |
| 4228 | GTK_SIGNAL_FUNC(focus_in_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4229 | #endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4230 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4231 | # if GTK_CHECK_VERSION(3,0,0) |
| 4232 | g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event", |
| 4233 | G_CALLBACK(focus_out_event), NULL); |
| 4234 | g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event", |
| 4235 | G_CALLBACK(focus_in_event), NULL); |
| 4236 | # else |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4237 | gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event", |
| 4238 | GTK_SIGNAL_FUNC(focus_out_event), NULL); |
| 4239 | gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event", |
| 4240 | GTK_SIGNAL_FUNC(focus_in_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4241 | # endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4242 | #endif /* FEAT_GUI_TABLINE */ |
| 4243 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4244 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4245 | #if GTK_CHECK_VERSION(3,0,0) |
| 4246 | g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event", |
| 4247 | G_CALLBACK(motion_notify_event), NULL); |
| 4248 | g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event", |
| 4249 | G_CALLBACK(button_press_event), NULL); |
| 4250 | g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event", |
| 4251 | G_CALLBACK(button_release_event), NULL); |
| 4252 | g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event", |
| 4253 | G_CALLBACK(&scroll_event), NULL); |
| 4254 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4255 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event", |
| 4256 | GTK_SIGNAL_FUNC(motion_notify_event), NULL); |
| 4257 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event", |
| 4258 | GTK_SIGNAL_FUNC(button_press_event), NULL); |
| 4259 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event", |
| 4260 | GTK_SIGNAL_FUNC(button_release_event), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4261 | g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event", |
| 4262 | G_CALLBACK(&scroll_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4263 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4264 | |
| 4265 | /* |
| 4266 | * Add selection handler functions. |
| 4267 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4268 | #if GTK_CHECK_VERSION(3,0,0) |
| 4269 | g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event", |
| 4270 | G_CALLBACK(selection_clear_event), NULL); |
| 4271 | g_signal_connect(G_OBJECT(gui.drawarea), "selection-received", |
| 4272 | G_CALLBACK(selection_received_cb), NULL); |
| 4273 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4274 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event", |
| 4275 | GTK_SIGNAL_FUNC(selection_clear_event), NULL); |
| 4276 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received", |
| 4277 | GTK_SIGNAL_FUNC(selection_received_cb), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4278 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4279 | |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 4280 | gui_gtk_set_selection_targets(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4281 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4282 | #if GTK_CHECK_VERSION(3,0,0) |
| 4283 | g_signal_connect(G_OBJECT(gui.drawarea), "selection-get", |
| 4284 | G_CALLBACK(selection_get_cb), NULL); |
| 4285 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4286 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get", |
| 4287 | GTK_SIGNAL_FUNC(selection_get_cb), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4288 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4289 | |
| 4290 | /* Pretend we don't have input focus, we will get an event if we do. */ |
| 4291 | gui.in_focus = FALSE; |
| 4292 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4293 | return OK; |
| 4294 | } |
| 4295 | |
| 4296 | #if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO) |
| 4297 | /* |
| 4298 | * This is called from gui_start() after a fork() has been done. |
| 4299 | * We have to tell the session manager our new PID. |
| 4300 | */ |
| 4301 | void |
| 4302 | gui_mch_forked(void) |
| 4303 | { |
| 4304 | if (using_gnome) |
| 4305 | { |
| 4306 | GnomeClient *client; |
| 4307 | |
| 4308 | client = gnome_master_client(); |
| 4309 | |
| 4310 | if (client != NULL) |
| 4311 | gnome_client_set_process_id(client, getpid()); |
| 4312 | } |
| 4313 | } |
| 4314 | #endif /* FEAT_GUI_GNOME && FEAT_SESSION */ |
| 4315 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4316 | #if GTK_CHECK_VERSION(3,0,0) |
| 4317 | static void |
| 4318 | gui_gtk_get_rgb_from_pixel(guint32 pixel, GdkRGBA *result) |
| 4319 | { |
| 4320 | GdkVisual * const visual = gtk_widget_get_visual(gui.drawarea); |
| 4321 | guint32 r_mask, g_mask, b_mask; |
| 4322 | gint r_shift, g_shift, b_shift; |
| 4323 | |
| 4324 | if (visual == NULL) |
| 4325 | { |
| 4326 | result->red = 0.0; |
| 4327 | result->green = 0.0; |
| 4328 | result->blue = 0.0; |
| 4329 | result->alpha = 0.0; |
| 4330 | return; |
| 4331 | } |
| 4332 | |
| 4333 | gdk_visual_get_red_pixel_details(visual, &r_mask, &r_shift, NULL); |
| 4334 | gdk_visual_get_green_pixel_details(visual, &g_mask, &g_shift, NULL); |
| 4335 | gdk_visual_get_blue_pixel_details(visual, &b_mask, &b_shift, NULL); |
| 4336 | |
| 4337 | result->red = ((pixel & r_mask) >> r_shift) / 255.0; |
| 4338 | result->green = ((pixel & g_mask) >> g_shift) / 255.0; |
| 4339 | result->blue = ((pixel & b_mask) >> b_shift) / 255.0; |
| 4340 | result->alpha = 1.0; |
| 4341 | } |
| 4342 | |
| 4343 | /* Convert a GdRGBA into a pixel value using drawarea's visual */ |
| 4344 | static guint32 |
| 4345 | gui_gtk_get_pixel_from_rgb(const GdkRGBA *rgba) |
| 4346 | { |
| 4347 | GdkVisual * const visual = gtk_widget_get_visual(gui.drawarea); |
| 4348 | guint32 r_mask, g_mask, b_mask; |
| 4349 | gint r_shift, g_shift, b_shift; |
| 4350 | guint32 r, g, b; |
| 4351 | |
| 4352 | if (visual == NULL) |
| 4353 | return 0; |
| 4354 | |
| 4355 | gdk_visual_get_red_pixel_details(visual, &r_mask, &r_shift, NULL); |
| 4356 | gdk_visual_get_green_pixel_details(visual, &g_mask, &g_shift, NULL); |
| 4357 | gdk_visual_get_blue_pixel_details(visual, &b_mask, &b_shift, NULL); |
| 4358 | |
| 4359 | r = rgba->red * 65535; |
| 4360 | g = rgba->green * 65535; |
| 4361 | b = rgba->blue * 65535; |
| 4362 | |
| 4363 | return ((r << r_shift) & r_mask) | |
| 4364 | ((g << g_shift) & g_mask) | |
| 4365 | ((b << b_shift) & b_mask); |
| 4366 | } |
| 4367 | |
| 4368 | static void |
| 4369 | set_cairo_source_rgb_from_pixel(cairo_t *cr, guint32 pixel) |
| 4370 | { |
| 4371 | GdkRGBA result; |
| 4372 | gui_gtk_get_rgb_from_pixel(pixel, &result); |
| 4373 | cairo_set_source_rgb(cr, result.red, result.green, result.blue); |
| 4374 | } |
| 4375 | #endif /* GTK_CHECK_VERSION(3,0,0) */ |
| 4376 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4377 | /* |
| 4378 | * Called when the foreground or background color has been changed. |
| 4379 | * This used to change the graphics contexts directly but we are |
| 4380 | * currently manipulating them where desired. |
| 4381 | */ |
| 4382 | void |
| 4383 | gui_mch_new_colors(void) |
| 4384 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4385 | #if GTK_CHECK_VERSION(3,0,0) |
| 4386 | GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea); |
| 4387 | |
| 4388 | if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL) |
| 4389 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4390 | if (gui.drawarea != NULL && gui.drawarea->window != NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4391 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4392 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4393 | #if GTK_CHECK_VERSION(3,4,0) |
| 4394 | GdkRGBA color; |
| 4395 | |
| 4396 | gui_gtk_get_rgb_from_pixel(gui.back_pixel, &color); |
| 4397 | { |
| 4398 | cairo_pattern_t * const pat = cairo_pattern_create_rgba( |
| 4399 | color.red, color.green, color.blue, color.alpha); |
| 4400 | if (pat != NULL) |
| 4401 | { |
| 4402 | gdk_window_set_background_pattern(da_win, pat); |
| 4403 | cairo_pattern_destroy(pat); |
| 4404 | } |
| 4405 | else |
| 4406 | gdk_window_set_background_rgba(da_win, &color); |
| 4407 | } |
| 4408 | #else /* !GTK_CHECK_VERSION(3,4,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4409 | GdkColor color = { 0, 0, 0, 0 }; |
| 4410 | |
| 4411 | color.pixel = gui.back_pixel; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4412 | # if GTK_CHECK_VERSION(3,0,0) |
| 4413 | gdk_window_set_background(da_win, &color); |
| 4414 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4415 | gdk_window_set_background(gui.drawarea->window, &color); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4416 | # endif |
| 4417 | #endif /* !GTK_CHECK_VERSION(3,4,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4418 | } |
| 4419 | } |
| 4420 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4421 | /* |
| 4422 | * This signal informs us about the need to rearrange our sub-widgets. |
| 4423 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4424 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4425 | form_configure_event(GtkWidget *widget UNUSED, |
| 4426 | GdkEventConfigure *event, |
| 4427 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4428 | { |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4429 | int usable_height = event->height; |
| 4430 | |
| 4431 | /* When in a GtkPlug, we can't guarantee valid heights (as a round |
| 4432 | * no. of char-heights), so we have to manually sanitise them. |
| 4433 | * Widths seem to sort themselves out, don't ask me why. |
| 4434 | */ |
| 4435 | if (gtk_socket_id != 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4436 | usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4437 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4438 | gtk_form_freeze(GTK_FORM(gui.formwin)); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4439 | gui_resize_shell(event->width, usable_height); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4440 | gtk_form_thaw(GTK_FORM(gui.formwin)); |
| 4441 | |
| 4442 | return TRUE; |
| 4443 | } |
| 4444 | |
| 4445 | /* |
| 4446 | * Function called when window already closed. |
| 4447 | * We can't do much more here than to trying to preserve what had been done, |
| 4448 | * since the window is already inevitably going away. |
| 4449 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4450 | #if GTK_CHECK_VERSION(3,0,0) |
| 4451 | static void |
| 4452 | mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED) |
| 4453 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4454 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4455 | mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4456 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4457 | { |
| 4458 | /* Don't write messages to the GUI anymore */ |
| 4459 | full_screen = FALSE; |
| 4460 | |
| 4461 | gui.mainwin = NULL; |
| 4462 | gui.drawarea = NULL; |
| 4463 | |
| 4464 | if (!exiting) /* only do anything if the destroy was unexpected */ |
| 4465 | { |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 4466 | vim_strncpy(IObuff, |
| 4467 | (char_u *)_("Vim: Main window unexpectedly destroyed\n"), |
| 4468 | IOSIZE - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4469 | preserve_exit(); |
| 4470 | } |
Bram Moolenaar | 36e294c | 2015-12-29 18:55:46 +0100 | [diff] [blame] | 4471 | #ifdef USE_GRESOURCE |
| 4472 | gui_gtk_unregister_resource(); |
| 4473 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4474 | } |
| 4475 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4476 | |
| 4477 | /* |
| 4478 | * Bit of a hack to ensure we start GtkPlug windows with the correct window |
| 4479 | * hints (and thus the required size from -geom), but that after that we |
| 4480 | * put the hints back to normal (the actual minimum size) so we may |
| 4481 | * subsequently be resized smaller. GtkSocket (the parent end) uses the |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 4482 | * 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] | 4483 | * only way we have of making ourselves bigger (by set lines/columns). |
| 4484 | * 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] | 4485 | * second after the final attempt to reset the real minimum hints (done by |
| 4486 | * scrollbar init.), actually do the standard hints and stop the timer. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4487 | * We'll not let the default hints be set while this timer's active. |
| 4488 | */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4489 | static gboolean |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4490 | check_startup_plug_hints(gpointer data UNUSED) |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4491 | { |
| 4492 | if (init_window_hints_state == 1) |
| 4493 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4494 | /* Safe to use normal hints now */ |
| 4495 | init_window_hints_state = 0; |
| 4496 | update_window_manager_hints(0, 0); |
| 4497 | return FALSE; /* stop timer */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4498 | } |
| 4499 | |
| 4500 | /* Keep on trying */ |
| 4501 | init_window_hints_state = 1; |
| 4502 | return TRUE; |
| 4503 | } |
| 4504 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4505 | /* |
| 4506 | * Open the GUI window which was created by a call to gui_mch_init(). |
| 4507 | */ |
| 4508 | int |
| 4509 | gui_mch_open(void) |
| 4510 | { |
| 4511 | guicolor_T fg_pixel = INVALCOLOR; |
| 4512 | guicolor_T bg_pixel = INVALCOLOR; |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4513 | guint pixel_width; |
| 4514 | guint pixel_height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4515 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4516 | /* |
| 4517 | * Allow setting a window role on the command line, or invent one |
| 4518 | * if none was specified. This is mainly useful for GNOME session |
| 4519 | * support; allowing the WM to restore window placement. |
| 4520 | */ |
| 4521 | if (role_argument != NULL) |
| 4522 | { |
| 4523 | gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument); |
| 4524 | } |
| 4525 | else |
| 4526 | { |
| 4527 | char *role; |
| 4528 | |
| 4529 | /* Invent a unique-enough ID string for the role */ |
| 4530 | role = g_strdup_printf("vim-%u-%u-%u", |
| 4531 | (unsigned)mch_get_pid(), |
| 4532 | (unsigned)g_random_int(), |
| 4533 | (unsigned)time(NULL)); |
| 4534 | |
| 4535 | gtk_window_set_role(GTK_WINDOW(gui.mainwin), role); |
| 4536 | g_free(role); |
| 4537 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4538 | |
| 4539 | if (gui_win_x != -1 && gui_win_y != -1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4540 | 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] | 4541 | |
| 4542 | /* Determine user specified geometry, if present. */ |
| 4543 | if (gui.geom != NULL) |
| 4544 | { |
| 4545 | int mask; |
| 4546 | unsigned int w, h; |
| 4547 | int x = 0; |
| 4548 | int y = 0; |
| 4549 | |
| 4550 | mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h); |
| 4551 | |
| 4552 | if (mask & WidthValue) |
| 4553 | Columns = w; |
| 4554 | if (mask & HeightValue) |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 4555 | { |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4556 | if (p_window > (long)h - 1 || !option_was_set((char_u *)"window")) |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 4557 | p_window = h - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4558 | Rows = h; |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 4559 | } |
Bram Moolenaar | e057d40 | 2013-06-30 17:51:51 +0200 | [diff] [blame] | 4560 | limit_screen_size(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4561 | |
| 4562 | pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
| 4563 | pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); |
| 4564 | |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4565 | pixel_width += get_menu_tool_width(); |
| 4566 | pixel_height += get_menu_tool_height(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4567 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4568 | if (mask & (XValue | YValue)) |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4569 | { |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4570 | int ww, hh; |
| 4571 | gui_mch_get_screen_dimensions(&ww, &hh); |
| 4572 | hh += p_ghr + get_menu_tool_height(); |
| 4573 | ww += get_menu_tool_width(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4574 | if (mask & XNegative) |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4575 | x += ww - pixel_width; |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4576 | if (mask & YNegative) |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4577 | y += hh - pixel_height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4578 | gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4579 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4580 | vim_free(gui.geom); |
| 4581 | gui.geom = NULL; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4582 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4583 | /* From now until everyone's stopped trying to set the window hints |
| 4584 | * to their correct minimum values, stop them being set as we need |
| 4585 | * them to remain at our required size for the parent GtkSocket to |
| 4586 | * give us the right initial size. |
| 4587 | */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4588 | if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue)) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4589 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4590 | update_window_manager_hints(pixel_width, pixel_height); |
| 4591 | init_window_hints_state = 1; |
| 4592 | g_timeout_add(1000, check_startup_plug_hints, NULL); |
| 4593 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4594 | } |
| 4595 | |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4596 | pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
| 4597 | pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4598 | /* For GTK2 changing the size of the form widget doesn't cause window |
| 4599 | * resizing. */ |
Bram Moolenaar | debe25a | 2010-06-06 17:41:24 +0200 | [diff] [blame] | 4600 | if (gtk_socket_id == 0) |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4601 | gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4602 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4603 | |
| 4604 | if (foreground_argument != NULL) |
| 4605 | fg_pixel = gui_get_color((char_u *)foreground_argument); |
| 4606 | if (fg_pixel == INVALCOLOR) |
| 4607 | fg_pixel = gui_get_color((char_u *)"Black"); |
| 4608 | |
| 4609 | if (background_argument != NULL) |
| 4610 | bg_pixel = gui_get_color((char_u *)background_argument); |
| 4611 | if (bg_pixel == INVALCOLOR) |
| 4612 | bg_pixel = gui_get_color((char_u *)"White"); |
| 4613 | |
| 4614 | if (found_reverse_arg) |
| 4615 | { |
| 4616 | gui.def_norm_pixel = bg_pixel; |
| 4617 | gui.def_back_pixel = fg_pixel; |
| 4618 | } |
| 4619 | else |
| 4620 | { |
| 4621 | gui.def_norm_pixel = fg_pixel; |
| 4622 | gui.def_back_pixel = bg_pixel; |
| 4623 | } |
| 4624 | |
| 4625 | /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or |
| 4626 | * in a vimrc file) */ |
| 4627 | set_normal_colors(); |
| 4628 | |
| 4629 | /* Check that none of the colors are the same as the background color */ |
| 4630 | gui_check_colors(); |
| 4631 | |
| 4632 | /* Get the colors for the highlight groups (gui_check_colors() might have |
| 4633 | * changed them). */ |
| 4634 | highlight_gui_started(); /* re-init colors and fonts */ |
| 4635 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4636 | #if GTK_CHECK_VERSION(3,0,0) |
| 4637 | g_signal_connect(G_OBJECT(gui.mainwin), "destroy", |
| 4638 | G_CALLBACK(mainwin_destroy_cb), NULL); |
| 4639 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4640 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy", |
| 4641 | GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4642 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4643 | |
| 4644 | #ifdef FEAT_HANGULIN |
| 4645 | hangul_keyboard_set(); |
| 4646 | #endif |
| 4647 | |
| 4648 | /* |
| 4649 | * Notify the fixed area about the need to resize the contents of the |
| 4650 | * gui.formwin, which we use for random positioning of the included |
| 4651 | * components. |
| 4652 | * |
| 4653 | * We connect this signal deferred finally after anything is in place, |
| 4654 | * since this is intended to handle resizements coming from the window |
| 4655 | * manager upon us and should not interfere with what VIM is requesting |
| 4656 | * upon startup. |
| 4657 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4658 | #if GTK_CHECK_VERSION(3,0,0) |
| 4659 | g_signal_connect(G_OBJECT(gui.formwin), "configure-event", |
| 4660 | G_CALLBACK(form_configure_event), NULL); |
| 4661 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4662 | gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event", |
| 4663 | GTK_SIGNAL_FUNC(form_configure_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4664 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4665 | |
| 4666 | #ifdef FEAT_DND |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 4667 | /* Set up for receiving DND items. */ |
| 4668 | gui_gtk_set_dnd_targets(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4669 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4670 | # if GTK_CHECK_VERSION(3,0,0) |
| 4671 | g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received", |
| 4672 | G_CALLBACK(drag_data_received_cb), NULL); |
| 4673 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4674 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received", |
| 4675 | GTK_SIGNAL_FUNC(drag_data_received_cb), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4676 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4677 | #endif |
| 4678 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4679 | /* With GTK+ 2, we need to iconify the window before calling show() |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 4680 | * to avoid mapping the window for a short time. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4681 | if (found_iconic_arg && gtk_socket_id == 0) |
| 4682 | gui_mch_iconify(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4683 | |
| 4684 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 4685 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4686 | unsigned long menu_handler = 0; |
| 4687 | # ifdef FEAT_TOOLBAR |
| 4688 | unsigned long tool_handler = 0; |
| 4689 | # endif |
| 4690 | /* |
| 4691 | * Urgh hackish :/ For some reason BonoboDockLayout always forces a |
| 4692 | * show when restoring the saved layout configuration. We can't just |
| 4693 | * hide the widgets again after gtk_widget_show(gui.mainwin) since it's |
| 4694 | * a toplevel window and thus will be realized immediately. Instead, |
| 4695 | * connect signal handlers to hide the widgets just after they've been |
| 4696 | * marked visible, but before the main window is realized. |
| 4697 | */ |
| 4698 | if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL) |
| 4699 | menu_handler = g_signal_connect_after(gui.menubar_h, "show", |
| 4700 | G_CALLBACK(>k_widget_hide), |
| 4701 | NULL); |
| 4702 | # ifdef FEAT_TOOLBAR |
| 4703 | if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL |
| 4704 | && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) |
| 4705 | tool_handler = g_signal_connect_after(gui.toolbar_h, "show", |
| 4706 | G_CALLBACK(>k_widget_hide), |
| 4707 | NULL); |
| 4708 | # endif |
| 4709 | #endif |
| 4710 | gtk_widget_show(gui.mainwin); |
| 4711 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 4712 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4713 | if (menu_handler != 0) |
| 4714 | g_signal_handler_disconnect(gui.menubar_h, menu_handler); |
| 4715 | # ifdef FEAT_TOOLBAR |
| 4716 | if (tool_handler != 0) |
| 4717 | g_signal_handler_disconnect(gui.toolbar_h, tool_handler); |
| 4718 | # endif |
| 4719 | #endif |
| 4720 | } |
| 4721 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4722 | return OK; |
| 4723 | } |
| 4724 | |
| 4725 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4726 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4727 | gui_mch_exit(int rc UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4728 | { |
| 4729 | if (gui.mainwin != NULL) |
| 4730 | gtk_widget_destroy(gui.mainwin); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4731 | } |
| 4732 | |
| 4733 | /* |
| 4734 | * Get the position of the top left corner of the window. |
| 4735 | */ |
| 4736 | int |
| 4737 | gui_mch_get_winpos(int *x, int *y) |
| 4738 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4739 | gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4740 | return OK; |
| 4741 | } |
| 4742 | |
| 4743 | /* |
| 4744 | * Set the position of the top left corner of the window to the given |
| 4745 | * coordinates. |
| 4746 | */ |
| 4747 | void |
| 4748 | gui_mch_set_winpos(int x, int y) |
| 4749 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4750 | gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4751 | } |
| 4752 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4753 | #if !GTK_CHECK_VERSION(3,0,0) |
| 4754 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4755 | static int resize_idle_installed = FALSE; |
| 4756 | /* |
| 4757 | * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure |
| 4758 | * the shell size doesn't exceed the window size, i.e. if the window manager |
| 4759 | * ignored our size request. Usually this happens if the window is maximized. |
| 4760 | * |
| 4761 | * FIXME: It'd be nice if we could find a little more orthodox solution. |
| 4762 | * See also the remark below in gui_mch_set_shellsize(). |
| 4763 | * |
| 4764 | * DISABLED: When doing ":set lines+=1" this function would first invoke |
| 4765 | * gui_resize_shell() with the old size, then the normal callback would |
| 4766 | * report the new size through form_configure_event(). That caused the window |
| 4767 | * layout to be messed up. |
| 4768 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4769 | static gboolean |
| 4770 | force_shell_resize_idle(gpointer data) |
| 4771 | { |
| 4772 | if (gui.mainwin != NULL |
| 4773 | && GTK_WIDGET_REALIZED(gui.mainwin) |
| 4774 | && GTK_WIDGET_VISIBLE(gui.mainwin)) |
| 4775 | { |
| 4776 | int width; |
| 4777 | int height; |
| 4778 | |
| 4779 | gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height); |
| 4780 | |
| 4781 | width -= get_menu_tool_width(); |
| 4782 | height -= get_menu_tool_height(); |
| 4783 | |
| 4784 | gui_resize_shell(width, height); |
| 4785 | } |
| 4786 | |
| 4787 | resize_idle_installed = FALSE; |
| 4788 | return FALSE; /* don't call me again */ |
| 4789 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4790 | # endif |
| 4791 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4792 | |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4793 | /* |
| 4794 | * Return TRUE if the main window is maximized. |
| 4795 | */ |
| 4796 | int |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 4797 | gui_mch_maximized(void) |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4798 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4799 | #if GTK_CHECK_VERSION(3,0,0) |
| 4800 | return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL |
| 4801 | && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin)) |
| 4802 | & GDK_WINDOW_STATE_MAXIMIZED)); |
| 4803 | #else |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4804 | return (gui.mainwin != NULL && gui.mainwin->window != NULL |
| 4805 | && (gdk_window_get_state(gui.mainwin->window) |
| 4806 | & GDK_WINDOW_STATE_MAXIMIZED)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4807 | #endif |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4808 | } |
| 4809 | |
| 4810 | /* |
| 4811 | * Unmaximize the main window |
| 4812 | */ |
| 4813 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 4814 | gui_mch_unmaximize(void) |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4815 | { |
| 4816 | if (gui.mainwin != NULL) |
| 4817 | gtk_window_unmaximize(GTK_WINDOW(gui.mainwin)); |
| 4818 | } |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4819 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4820 | /* |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 4821 | * Called when the font changed while the window is maximized. Compute the |
| 4822 | * new Rows and Columns. This is like resizing the window. |
| 4823 | */ |
| 4824 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 4825 | gui_mch_newfont(void) |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 4826 | { |
| 4827 | int w, h; |
| 4828 | |
| 4829 | gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h); |
| 4830 | w -= get_menu_tool_width(); |
| 4831 | h -= get_menu_tool_height(); |
| 4832 | gui_resize_shell(w, h); |
| 4833 | } |
| 4834 | |
| 4835 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4836 | * Set the windows size. |
| 4837 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4838 | void |
| 4839 | gui_mch_set_shellsize(int width, int height, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4840 | int min_width UNUSED, int min_height UNUSED, |
| 4841 | int base_width UNUSED, int base_height UNUSED, |
| 4842 | int direction UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4843 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4844 | /* give GTK+ a chance to put all widget's into place */ |
| 4845 | gui_mch_update(); |
| 4846 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4847 | /* this will cause the proper resizement to happen too */ |
| 4848 | if (gtk_socket_id == 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4849 | update_window_manager_hints(0, 0); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4850 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4851 | /* 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] | 4852 | * 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] | 4853 | * main window instead. */ |
| 4854 | width += get_menu_tool_width(); |
| 4855 | height += get_menu_tool_height(); |
| 4856 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4857 | if (gtk_socket_id == 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4858 | gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4859 | else |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4860 | update_window_manager_hints(width, height); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4861 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4862 | # if !GTK_CHECK_VERSION(3,0,0) |
| 4863 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4864 | if (!resize_idle_installed) |
| 4865 | { |
| 4866 | g_idle_add_full(GDK_PRIORITY_EVENTS + 10, |
| 4867 | &force_shell_resize_idle, NULL, NULL); |
| 4868 | resize_idle_installed = TRUE; |
| 4869 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4870 | # endif |
| 4871 | # endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4872 | /* |
| 4873 | * Wait until all events are processed to prevent a crash because the |
| 4874 | * real size of the drawing area doesn't reflect Vim's internal ideas. |
| 4875 | * |
| 4876 | * This is a bit of a hack, since Vim is a terminal application with a GUI |
| 4877 | * on top, while the GUI expects to be the boss. |
| 4878 | */ |
| 4879 | gui_mch_update(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4880 | } |
| 4881 | |
| 4882 | |
| 4883 | /* |
| 4884 | * The screen size is used to make sure the initial window doesn't get bigger |
| 4885 | * than the screen. This subtracts some room for menubar, toolbar and window |
| 4886 | * decorations. |
| 4887 | */ |
| 4888 | void |
| 4889 | gui_mch_get_screen_dimensions(int *screen_w, int *screen_h) |
| 4890 | { |
| 4891 | #ifdef HAVE_GTK_MULTIHEAD |
| 4892 | GdkScreen* screen; |
| 4893 | |
| 4894 | if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin)) |
| 4895 | screen = gtk_widget_get_screen(gui.mainwin); |
| 4896 | else |
| 4897 | screen = gdk_screen_get_default(); |
| 4898 | |
| 4899 | *screen_w = gdk_screen_get_width(screen); |
| 4900 | *screen_h = gdk_screen_get_height(screen) - p_ghr; |
| 4901 | #else |
| 4902 | *screen_w = gdk_screen_width(); |
| 4903 | /* Subtract 'guiheadroom' from the height to allow some room for the |
| 4904 | * window manager (task list and window title bar). */ |
| 4905 | *screen_h = gdk_screen_height() - p_ghr; |
| 4906 | #endif |
| 4907 | |
| 4908 | /* |
| 4909 | * FIXME: dirty trick: Because the gui_get_base_height() doesn't include |
| 4910 | * the toolbar and menubar for GTK, we subtract them from the screen |
Bram Moolenaar | 6440447 | 2010-06-26 06:24:45 +0200 | [diff] [blame] | 4911 | * 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] | 4912 | * This should be completely changed later. |
| 4913 | */ |
| 4914 | *screen_w -= get_menu_tool_width(); |
| 4915 | *screen_h -= get_menu_tool_height(); |
| 4916 | } |
| 4917 | |
| 4918 | #if defined(FEAT_TITLE) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4919 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4920 | gui_mch_settitle(char_u *title, char_u *icon UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4921 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4922 | if (title != NULL && output_conv.vc_type != CONV_NONE) |
| 4923 | title = string_convert(&output_conv, title, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4924 | |
| 4925 | gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title); |
| 4926 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4927 | if (output_conv.vc_type != CONV_NONE) |
| 4928 | vim_free(title); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4929 | } |
| 4930 | #endif /* FEAT_TITLE */ |
| 4931 | |
| 4932 | #if defined(FEAT_MENU) || defined(PROTO) |
| 4933 | void |
| 4934 | gui_mch_enable_menu(int showit) |
| 4935 | { |
| 4936 | GtkWidget *widget; |
| 4937 | |
| 4938 | # ifdef FEAT_GUI_GNOME |
| 4939 | if (using_gnome) |
| 4940 | widget = gui.menubar_h; |
| 4941 | else |
| 4942 | # endif |
| 4943 | widget = gui.menubar; |
| 4944 | |
Bram Moolenaar | 18144c8 | 2006-04-12 21:52:12 +0000 | [diff] [blame] | 4945 | /* 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] | 4946 | # if GTK_CHECK_VERSION(3,0,0) |
| 4947 | if (!showit != !gtk_widget_get_visible(widget) && !gui.starting) |
| 4948 | # else |
Bram Moolenaar | 18144c8 | 2006-04-12 21:52:12 +0000 | [diff] [blame] | 4949 | if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4950 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4951 | { |
| 4952 | if (showit) |
| 4953 | gtk_widget_show(widget); |
| 4954 | else |
| 4955 | gtk_widget_hide(widget); |
| 4956 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4957 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4958 | } |
| 4959 | } |
| 4960 | #endif /* FEAT_MENU */ |
| 4961 | |
| 4962 | #if defined(FEAT_TOOLBAR) || defined(PROTO) |
| 4963 | void |
| 4964 | gui_mch_show_toolbar(int showit) |
| 4965 | { |
| 4966 | GtkWidget *widget; |
| 4967 | |
| 4968 | if (gui.toolbar == NULL) |
| 4969 | return; |
| 4970 | |
| 4971 | # ifdef FEAT_GUI_GNOME |
| 4972 | if (using_gnome) |
| 4973 | widget = gui.toolbar_h; |
| 4974 | else |
| 4975 | # endif |
| 4976 | widget = gui.toolbar; |
| 4977 | |
| 4978 | if (showit) |
| 4979 | set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); |
| 4980 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4981 | # if GTK_CHECK_VERSION(3,0,0) |
| 4982 | if (!showit != !gtk_widget_get_visible(widget)) |
| 4983 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4984 | if (!showit != !GTK_WIDGET_VISIBLE(widget)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4985 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4986 | { |
| 4987 | if (showit) |
| 4988 | gtk_widget_show(widget); |
| 4989 | else |
| 4990 | gtk_widget_hide(widget); |
| 4991 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4992 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4993 | } |
| 4994 | } |
| 4995 | #endif /* FEAT_TOOLBAR */ |
| 4996 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4997 | /* |
| 4998 | * Check if a given font is a CJK font. This is done in a very crude manner. It |
| 4999 | * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given |
| 5000 | * font. Consequently, this function cannot be used as a general purpose check |
| 5001 | * for CJK-ness for which fontconfig APIs should be used. This is only used by |
| 5002 | * gui_mch_init_font() to deal with 'CJK fixed width fonts'. |
| 5003 | */ |
| 5004 | static int |
| 5005 | is_cjk_font(PangoFontDescription *font_desc) |
| 5006 | { |
| 5007 | static const char * const cjk_langs[] = |
| 5008 | {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"}; |
| 5009 | |
| 5010 | PangoFont *font; |
| 5011 | unsigned i; |
| 5012 | int is_cjk = FALSE; |
| 5013 | |
| 5014 | font = pango_context_load_font(gui.text_context, font_desc); |
| 5015 | |
| 5016 | if (font == NULL) |
| 5017 | return FALSE; |
| 5018 | |
| 5019 | for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i) |
| 5020 | { |
| 5021 | PangoCoverage *coverage; |
| 5022 | gunichar uc; |
| 5023 | |
| 5024 | coverage = pango_font_get_coverage( |
| 5025 | font, pango_language_from_string(cjk_langs[i])); |
| 5026 | |
| 5027 | if (coverage != NULL) |
| 5028 | { |
| 5029 | uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00; |
| 5030 | is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT); |
| 5031 | pango_coverage_unref(coverage); |
| 5032 | } |
| 5033 | } |
| 5034 | |
| 5035 | g_object_unref(font); |
| 5036 | |
| 5037 | return is_cjk; |
| 5038 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5039 | |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5040 | /* |
| 5041 | * Adjust gui.char_height (after 'linespace' was changed). |
| 5042 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5043 | int |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5044 | gui_mch_adjust_charheight(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5045 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5046 | PangoFontMetrics *metrics; |
| 5047 | int ascent; |
| 5048 | int descent; |
| 5049 | |
| 5050 | metrics = pango_context_get_metrics(gui.text_context, gui.norm_font, |
| 5051 | pango_context_get_language(gui.text_context)); |
| 5052 | ascent = pango_font_metrics_get_ascent(metrics); |
| 5053 | descent = pango_font_metrics_get_descent(metrics); |
| 5054 | |
| 5055 | pango_font_metrics_unref(metrics); |
| 5056 | |
| 5057 | gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5058 | + p_linespace; |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 5059 | /* LINTED: avoid warning: bitwise operation on signed value */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5060 | gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2); |
| 5061 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5062 | /* A not-positive value of char_height may crash Vim. Only happens |
| 5063 | * if 'linespace' is negative (which does make sense sometimes). */ |
| 5064 | gui.char_ascent = MAX(gui.char_ascent, 0); |
| 5065 | gui.char_height = MAX(gui.char_height, gui.char_ascent + 1); |
| 5066 | |
| 5067 | return OK; |
| 5068 | } |
| 5069 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5070 | #if GTK_CHECK_VERSION(3,0,0) |
| 5071 | /* Callback function used in gui_mch_font_dialog() */ |
| 5072 | static gboolean |
| 5073 | font_filter(const PangoFontFamily *family, |
| 5074 | const PangoFontFace *face UNUSED, |
| 5075 | gpointer data UNUSED) |
| 5076 | { |
| 5077 | return pango_font_family_is_monospace((PangoFontFamily *)family); |
| 5078 | } |
| 5079 | #endif |
| 5080 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5081 | /* |
| 5082 | * Put up a font dialog and return the selected font name in allocated memory. |
| 5083 | * "oldval" is the previous value. Return NULL when cancelled. |
| 5084 | * This should probably go into gui_gtk.c. Hmm. |
| 5085 | * FIXME: |
| 5086 | * The GTK2 font selection dialog has no filtering API. So we could either |
| 5087 | * a) implement our own (possibly copying the code from somewhere else) or |
| 5088 | * b) just live with it. |
| 5089 | */ |
| 5090 | char_u * |
| 5091 | gui_mch_font_dialog(char_u *oldval) |
| 5092 | { |
| 5093 | GtkWidget *dialog; |
| 5094 | int response; |
| 5095 | char_u *fontname = NULL; |
| 5096 | char_u *oldname; |
| 5097 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5098 | #if GTK_CHECK_VERSION(3,2,0) |
| 5099 | dialog = gtk_font_chooser_dialog_new(NULL, NULL); |
| 5100 | gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter, |
| 5101 | NULL, NULL); |
| 5102 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5103 | dialog = gtk_font_selection_dialog_new(NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5104 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5105 | |
| 5106 | gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin)); |
| 5107 | gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE); |
| 5108 | |
| 5109 | if (oldval != NULL && oldval[0] != NUL) |
| 5110 | { |
| 5111 | if (output_conv.vc_type != CONV_NONE) |
| 5112 | oldname = string_convert(&output_conv, oldval, NULL); |
| 5113 | else |
| 5114 | oldname = oldval; |
| 5115 | |
| 5116 | /* Annoying bug in GTK (or Pango): if the font name does not include a |
| 5117 | * size, zero is used. Use default point size ten. */ |
| 5118 | if (!vim_isdigit(oldname[STRLEN(oldname) - 1])) |
| 5119 | { |
| 5120 | char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3); |
| 5121 | |
| 5122 | if (p != NULL) |
| 5123 | { |
| 5124 | STRCPY(p + STRLEN(p), " 10"); |
| 5125 | if (oldname != oldval) |
| 5126 | vim_free(oldname); |
| 5127 | oldname = p; |
| 5128 | } |
| 5129 | } |
| 5130 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5131 | #if GTK_CHECK_VERSION(3,2,0) |
| 5132 | gtk_font_chooser_set_font( |
| 5133 | GTK_FONT_CHOOSER(dialog), (const gchar *)oldname); |
| 5134 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5135 | gtk_font_selection_dialog_set_font_name( |
| 5136 | GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5137 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5138 | |
| 5139 | if (oldname != oldval) |
Bram Moolenaar | 8c71145 | 2005-01-14 21:53:12 +0000 | [diff] [blame] | 5140 | vim_free(oldname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5141 | } |
Bram Moolenaar | bef9d83 | 2009-09-11 13:46:41 +0000 | [diff] [blame] | 5142 | else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5143 | #if GTK_CHECK_VERSION(3,2,0) |
| 5144 | gtk_font_chooser_set_font( |
| 5145 | GTK_FONT_CHOOSER(dialog), DEFAULT_FONT); |
| 5146 | #else |
Bram Moolenaar | bef9d83 | 2009-09-11 13:46:41 +0000 | [diff] [blame] | 5147 | gtk_font_selection_dialog_set_font_name( |
| 5148 | GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5149 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5150 | |
| 5151 | response = gtk_dialog_run(GTK_DIALOG(dialog)); |
| 5152 | |
| 5153 | if (response == GTK_RESPONSE_OK) |
| 5154 | { |
| 5155 | char *name; |
| 5156 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5157 | #if GTK_CHECK_VERSION(3,2,0) |
| 5158 | name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog)); |
| 5159 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5160 | name = gtk_font_selection_dialog_get_font_name( |
| 5161 | GTK_FONT_SELECTION_DIALOG(dialog)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5162 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5163 | if (name != NULL) |
| 5164 | { |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 5165 | char_u *p; |
| 5166 | |
| 5167 | /* Apparently some font names include a comma, need to escape |
| 5168 | * that, because in 'guifont' it separates names. */ |
| 5169 | p = vim_strsave_escaped((char_u *)name, (char_u *)","); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5170 | g_free(name); |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 5171 | if (p != NULL && input_conv.vc_type != CONV_NONE) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 5172 | { |
| 5173 | fontname = string_convert(&input_conv, p, NULL); |
| 5174 | vim_free(p); |
| 5175 | } |
| 5176 | else |
| 5177 | fontname = p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5178 | } |
| 5179 | } |
| 5180 | |
| 5181 | if (response != GTK_RESPONSE_NONE) |
| 5182 | gtk_widget_destroy(dialog); |
| 5183 | |
| 5184 | return fontname; |
| 5185 | } |
| 5186 | |
| 5187 | /* |
| 5188 | * Some monospace fonts don't support a bold weight, and fall back |
| 5189 | * silently to the regular weight. But this is no good since our text |
| 5190 | * drawing function can emulate bold by overstriking. So let's try |
| 5191 | * to detect whether bold weight is actually available and emulate it |
| 5192 | * otherwise. |
| 5193 | * |
| 5194 | * Note that we don't need to check for italic style since Xft can |
| 5195 | * emulate italic on its own, provided you have a proper fontconfig |
| 5196 | * setup. We wouldn't be able to emulate it in Vim anyway. |
| 5197 | */ |
| 5198 | static void |
| 5199 | get_styled_font_variants(void) |
| 5200 | { |
| 5201 | PangoFontDescription *bold_font_desc; |
| 5202 | PangoFont *plain_font; |
| 5203 | PangoFont *bold_font; |
| 5204 | |
| 5205 | gui.font_can_bold = FALSE; |
| 5206 | |
| 5207 | plain_font = pango_context_load_font(gui.text_context, gui.norm_font); |
| 5208 | |
| 5209 | if (plain_font == NULL) |
| 5210 | return; |
| 5211 | |
| 5212 | bold_font_desc = pango_font_description_copy_static(gui.norm_font); |
| 5213 | pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD); |
| 5214 | |
| 5215 | bold_font = pango_context_load_font(gui.text_context, bold_font_desc); |
| 5216 | /* |
| 5217 | * The comparison relies on the unique handle nature of a PangoFont*, |
| 5218 | * i.e. it's assumed that a different PangoFont* won't refer to the |
| 5219 | * same font. Seems to work, and failing here isn't critical anyway. |
| 5220 | */ |
| 5221 | if (bold_font != NULL) |
| 5222 | { |
| 5223 | gui.font_can_bold = (bold_font != plain_font); |
| 5224 | g_object_unref(bold_font); |
| 5225 | } |
| 5226 | |
| 5227 | pango_font_description_free(bold_font_desc); |
| 5228 | g_object_unref(plain_font); |
| 5229 | } |
| 5230 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5231 | static PangoEngineShape *default_shape_engine = NULL; |
| 5232 | |
| 5233 | /* |
| 5234 | * Create a map from ASCII characters in the range [32,126] to glyphs |
| 5235 | * of the current font. This is used by gui_gtk2_draw_string() to skip |
| 5236 | * the itemize and shaping process for the most common case. |
| 5237 | */ |
| 5238 | static void |
| 5239 | ascii_glyph_table_init(void) |
| 5240 | { |
| 5241 | char_u ascii_chars[128]; |
| 5242 | PangoAttrList *attr_list; |
| 5243 | GList *item_list; |
| 5244 | int i; |
| 5245 | |
| 5246 | if (gui.ascii_glyphs != NULL) |
| 5247 | pango_glyph_string_free(gui.ascii_glyphs); |
| 5248 | if (gui.ascii_font != NULL) |
| 5249 | g_object_unref(gui.ascii_font); |
| 5250 | |
| 5251 | gui.ascii_glyphs = NULL; |
| 5252 | gui.ascii_font = NULL; |
| 5253 | |
| 5254 | /* For safety, fill in question marks for the control characters. */ |
| 5255 | for (i = 0; i < 32; ++i) |
| 5256 | ascii_chars[i] = '?'; |
| 5257 | for (; i < 127; ++i) |
| 5258 | ascii_chars[i] = i; |
| 5259 | ascii_chars[i] = '?'; |
| 5260 | |
| 5261 | attr_list = pango_attr_list_new(); |
| 5262 | item_list = pango_itemize(gui.text_context, (const char *)ascii_chars, |
| 5263 | 0, sizeof(ascii_chars), attr_list, NULL); |
| 5264 | |
| 5265 | if (item_list != NULL && item_list->next == NULL) /* play safe */ |
| 5266 | { |
| 5267 | PangoItem *item; |
| 5268 | int width; |
| 5269 | |
| 5270 | item = (PangoItem *)item_list->data; |
| 5271 | width = gui.char_width * PANGO_SCALE; |
| 5272 | |
| 5273 | /* Remember the shape engine used for ASCII. */ |
| 5274 | default_shape_engine = item->analysis.shape_engine; |
| 5275 | |
| 5276 | gui.ascii_font = item->analysis.font; |
| 5277 | g_object_ref(gui.ascii_font); |
| 5278 | |
| 5279 | gui.ascii_glyphs = pango_glyph_string_new(); |
| 5280 | |
| 5281 | pango_shape((const char *)ascii_chars, sizeof(ascii_chars), |
| 5282 | &item->analysis, gui.ascii_glyphs); |
| 5283 | |
| 5284 | g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars)); |
| 5285 | |
| 5286 | for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i) |
| 5287 | { |
| 5288 | PangoGlyphGeometry *geom; |
| 5289 | |
| 5290 | geom = &gui.ascii_glyphs->glyphs[i].geometry; |
| 5291 | geom->x_offset += MAX(0, width - geom->width) / 2; |
| 5292 | geom->width = width; |
| 5293 | } |
| 5294 | } |
| 5295 | |
| 5296 | g_list_foreach(item_list, (GFunc)&pango_item_free, NULL); |
| 5297 | g_list_free(item_list); |
| 5298 | pango_attr_list_unref(attr_list); |
| 5299 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5300 | |
| 5301 | /* |
| 5302 | * Initialize Vim to use the font or fontset with the given name. |
| 5303 | * Return FAIL if the font could not be loaded, OK otherwise. |
| 5304 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5305 | int |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5306 | gui_mch_init_font(char_u *font_name, int fontset UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5307 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5308 | PangoFontDescription *font_desc; |
| 5309 | PangoLayout *layout; |
| 5310 | int width; |
| 5311 | |
| 5312 | /* If font_name is NULL, this means to use the default, which should |
| 5313 | * be present on all proper Pango/fontconfig installations. */ |
| 5314 | if (font_name == NULL) |
| 5315 | font_name = (char_u *)DEFAULT_FONT; |
| 5316 | |
| 5317 | font_desc = gui_mch_get_font(font_name, FALSE); |
| 5318 | |
| 5319 | if (font_desc == NULL) |
| 5320 | return FAIL; |
| 5321 | |
| 5322 | gui_mch_free_font(gui.norm_font); |
| 5323 | gui.norm_font = font_desc; |
| 5324 | |
| 5325 | pango_context_set_font_description(gui.text_context, font_desc); |
| 5326 | |
| 5327 | layout = pango_layout_new(gui.text_context); |
| 5328 | pango_layout_set_text(layout, "MW", 2); |
| 5329 | pango_layout_get_size(layout, &width, NULL); |
| 5330 | /* |
| 5331 | * Set char_width to half the width obtained from pango_layout_get_size() |
| 5332 | * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads |
| 5333 | * Pango to use the same width for both non-CJK characters (e.g. Latin |
| 5334 | * letters and numbers) and CJK characters. This results in 's p a c e d |
| 5335 | * o u t' rendering when a CJK 'fixed width' font is used. To work around |
| 5336 | * that, divide the width returned by Pango by 2 if cjk_width is equal to |
| 5337 | * width for CJK fonts. |
| 5338 | * |
| 5339 | * For related bugs, see: |
| 5340 | * http://bugzilla.gnome.org/show_bug.cgi?id=106618 |
| 5341 | * http://bugzilla.gnome.org/show_bug.cgi?id=106624 |
| 5342 | * |
| 5343 | * With this, for all four of the following cases, Vim works fine: |
| 5344 | * guifont=CJK_fixed_width_font |
| 5345 | * guifont=Non_CJK_fixed_font |
| 5346 | * guifont=Non_CJK_fixed_font,CJK_Fixed_font |
| 5347 | * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font |
| 5348 | */ |
| 5349 | if (is_cjk_font(gui.norm_font)) |
| 5350 | { |
| 5351 | int cjk_width; |
| 5352 | |
| 5353 | /* Measure the text extent of U+4E00 and U+4E8C */ |
| 5354 | pango_layout_set_text(layout, "\344\270\200\344\272\214", -1); |
| 5355 | pango_layout_get_size(layout, &cjk_width, NULL); |
| 5356 | |
| 5357 | if (width == cjk_width) /* Xft not patched */ |
| 5358 | width /= 2; |
| 5359 | } |
| 5360 | g_object_unref(layout); |
| 5361 | |
| 5362 | gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE; |
| 5363 | |
| 5364 | /* A zero width may cause a crash. Happens for semi-invalid fontsets. */ |
| 5365 | if (gui.char_width <= 0) |
| 5366 | gui.char_width = 8; |
| 5367 | |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5368 | gui_mch_adjust_charheight(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5369 | |
| 5370 | /* Set the fontname, which will be used for information purposes */ |
| 5371 | hl_set_font_name(font_name); |
| 5372 | |
| 5373 | get_styled_font_variants(); |
| 5374 | ascii_glyph_table_init(); |
| 5375 | |
| 5376 | /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */ |
| 5377 | if (gui.wide_font != NULL |
| 5378 | && pango_font_description_equal(gui.norm_font, gui.wide_font)) |
| 5379 | { |
| 5380 | pango_font_description_free(gui.wide_font); |
| 5381 | gui.wide_font = NULL; |
| 5382 | } |
| 5383 | |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5384 | if (gui_mch_maximized()) |
| 5385 | { |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5386 | /* Update lines and columns in accordance with the new font, keep the |
| 5387 | * window maximized. */ |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 5388 | gui_mch_newfont(); |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5389 | } |
| 5390 | else |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5391 | { |
| 5392 | /* Preserve the logical dimensions of the screen. */ |
| 5393 | update_window_manager_hints(0, 0); |
| 5394 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5395 | |
| 5396 | return OK; |
| 5397 | } |
| 5398 | |
| 5399 | /* |
| 5400 | * Get a reference to the font "name". |
| 5401 | * Return zero for failure. |
| 5402 | */ |
| 5403 | GuiFont |
| 5404 | gui_mch_get_font(char_u *name, int report_error) |
| 5405 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5406 | PangoFontDescription *font; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5407 | |
| 5408 | /* can't do this when GUI is not running */ |
| 5409 | if (!gui.in_use || name == NULL) |
| 5410 | return NULL; |
| 5411 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5412 | if (output_conv.vc_type != CONV_NONE) |
| 5413 | { |
| 5414 | char_u *buf; |
| 5415 | |
| 5416 | buf = string_convert(&output_conv, name, NULL); |
| 5417 | if (buf != NULL) |
| 5418 | { |
| 5419 | font = pango_font_description_from_string((const char *)buf); |
| 5420 | vim_free(buf); |
| 5421 | } |
| 5422 | else |
| 5423 | font = NULL; |
| 5424 | } |
| 5425 | else |
| 5426 | font = pango_font_description_from_string((const char *)name); |
| 5427 | |
| 5428 | if (font != NULL) |
| 5429 | { |
| 5430 | PangoFont *real_font; |
| 5431 | |
| 5432 | /* pango_context_load_font() bails out if no font size is set */ |
| 5433 | if (pango_font_description_get_size(font) <= 0) |
| 5434 | pango_font_description_set_size(font, 10 * PANGO_SCALE); |
| 5435 | |
| 5436 | real_font = pango_context_load_font(gui.text_context, font); |
| 5437 | |
| 5438 | if (real_font == NULL) |
| 5439 | { |
| 5440 | pango_font_description_free(font); |
| 5441 | font = NULL; |
| 5442 | } |
| 5443 | else |
| 5444 | g_object_unref(real_font); |
| 5445 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5446 | |
| 5447 | if (font == NULL) |
| 5448 | { |
| 5449 | if (report_error) |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 5450 | EMSG2(_((char *)e_font), name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5451 | return NULL; |
| 5452 | } |
| 5453 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5454 | return font; |
| 5455 | } |
| 5456 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5457 | #if defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5458 | /* |
| 5459 | * Return the name of font "font" in allocated memory. |
| 5460 | */ |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5461 | char_u * |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5462 | gui_mch_get_fontname(GuiFont font, char_u *name UNUSED) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5463 | { |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5464 | if (font != NOFONT) |
| 5465 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5466 | char *pangoname = pango_font_description_to_string(font); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5467 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5468 | if (pangoname != NULL) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5469 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5470 | char_u *s = vim_strsave((char_u *)pangoname); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5471 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5472 | g_free(pangoname); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5473 | return s; |
| 5474 | } |
| 5475 | } |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5476 | return NULL; |
| 5477 | } |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5478 | #endif |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5479 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5480 | /* |
| 5481 | * If a font is not going to be used, free its structure. |
| 5482 | */ |
| 5483 | void |
| 5484 | gui_mch_free_font(GuiFont font) |
| 5485 | { |
| 5486 | if (font != NOFONT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5487 | pango_font_description_free(font); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5488 | } |
| 5489 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5490 | /* |
| 5491 | * Return the Pixel value (color) for the given color name. This routine was |
| 5492 | * pretty much taken from example code in the Silicon Graphics OSF/Motif |
| 5493 | * Programmer's Guide. |
| 5494 | * Return INVALCOLOR for error. |
| 5495 | */ |
| 5496 | guicolor_T |
| 5497 | gui_mch_get_color(char_u *name) |
| 5498 | { |
| 5499 | /* A number of colors that some X11 systems don't have */ |
| 5500 | static const char *const vimnames[][2] = |
| 5501 | { |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 5502 | {"LightRed", "#FFBBBB"}, |
| 5503 | {"LightGreen", "#88FF88"}, |
| 5504 | {"LightMagenta","#FFBBFF"}, |
| 5505 | {"DarkCyan", "#008888"}, |
| 5506 | {"DarkBlue", "#0000BB"}, |
| 5507 | {"DarkRed", "#BB0000"}, |
| 5508 | {"DarkMagenta", "#BB00BB"}, |
| 5509 | {"DarkGrey", "#BBBBBB"}, |
| 5510 | {"DarkYellow", "#BBBB00"}, |
| 5511 | {"Gray10", "#1A1A1A"}, |
| 5512 | {"Grey10", "#1A1A1A"}, |
| 5513 | {"Gray20", "#333333"}, |
| 5514 | {"Grey20", "#333333"}, |
| 5515 | {"Gray30", "#4D4D4D"}, |
| 5516 | {"Grey30", "#4D4D4D"}, |
| 5517 | {"Gray40", "#666666"}, |
| 5518 | {"Grey40", "#666666"}, |
| 5519 | {"Gray50", "#7F7F7F"}, |
| 5520 | {"Grey50", "#7F7F7F"}, |
| 5521 | {"Gray60", "#999999"}, |
| 5522 | {"Grey60", "#999999"}, |
| 5523 | {"Gray70", "#B3B3B3"}, |
| 5524 | {"Grey70", "#B3B3B3"}, |
| 5525 | {"Gray80", "#CCCCCC"}, |
| 5526 | {"Grey80", "#CCCCCC"}, |
| 5527 | {"Gray90", "#E5E5E5"}, |
| 5528 | {"Grey90", "#E5E5E5"}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5529 | {NULL, NULL} |
| 5530 | }; |
| 5531 | |
| 5532 | if (!gui.in_use) /* can't do this when GUI not running */ |
| 5533 | return INVALCOLOR; |
| 5534 | |
| 5535 | while (name != NULL) |
| 5536 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5537 | #if GTK_CHECK_VERSION(3,0,0) |
| 5538 | GdkRGBA color; |
| 5539 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5540 | GdkColor color; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5541 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5542 | int parsed; |
| 5543 | int i; |
| 5544 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5545 | #if GTK_CHECK_VERSION(3,0,0) |
| 5546 | parsed = gdk_rgba_parse(&color, (const gchar *)name); |
| 5547 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5548 | parsed = gdk_color_parse((const char *)name, &color); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5549 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5550 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5551 | if (parsed) |
| 5552 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5553 | #if GTK_CHECK_VERSION(3,0,0) |
| 5554 | return (guicolor_T)gui_gtk_get_pixel_from_rgb(&color); |
| 5555 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5556 | gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea), |
| 5557 | &color, FALSE, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5558 | return (guicolor_T)color.pixel; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5559 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5560 | } |
| 5561 | /* add a few builtin names and try again */ |
| 5562 | for (i = 0; ; ++i) |
| 5563 | { |
| 5564 | if (vimnames[i][0] == NULL) |
| 5565 | { |
| 5566 | name = NULL; |
| 5567 | break; |
| 5568 | } |
| 5569 | if (STRICMP(name, vimnames[i][0]) == 0) |
| 5570 | { |
| 5571 | name = (char_u *)vimnames[i][1]; |
| 5572 | break; |
| 5573 | } |
| 5574 | } |
| 5575 | } |
| 5576 | |
| 5577 | return INVALCOLOR; |
| 5578 | } |
| 5579 | |
| 5580 | /* |
| 5581 | * Set the current text foreground color. |
| 5582 | */ |
| 5583 | void |
| 5584 | gui_mch_set_fg_color(guicolor_T color) |
| 5585 | { |
| 5586 | gui.fgcolor->pixel = (unsigned long)color; |
| 5587 | } |
| 5588 | |
| 5589 | /* |
| 5590 | * Set the current text background color. |
| 5591 | */ |
| 5592 | void |
| 5593 | gui_mch_set_bg_color(guicolor_T color) |
| 5594 | { |
| 5595 | gui.bgcolor->pixel = (unsigned long)color; |
| 5596 | } |
| 5597 | |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5598 | /* |
| 5599 | * Set the current text special color. |
| 5600 | */ |
| 5601 | void |
| 5602 | gui_mch_set_sp_color(guicolor_T color) |
| 5603 | { |
| 5604 | gui.spcolor->pixel = (unsigned long)color; |
| 5605 | } |
| 5606 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5607 | /* |
| 5608 | * Function-like convenience macro for the sake of efficiency. |
| 5609 | */ |
| 5610 | #define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \ |
| 5611 | G_STMT_START{ \ |
| 5612 | PangoAttribute *tmp_attr_; \ |
| 5613 | tmp_attr_ = (Attribute); \ |
| 5614 | tmp_attr_->start_index = (Start); \ |
| 5615 | tmp_attr_->end_index = (End); \ |
| 5616 | pango_attr_list_insert((AttrList), tmp_attr_); \ |
| 5617 | }G_STMT_END |
| 5618 | |
| 5619 | static void |
| 5620 | apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list) |
| 5621 | { |
| 5622 | char_u *start = NULL; |
| 5623 | char_u *p; |
| 5624 | int uc; |
| 5625 | |
| 5626 | for (p = s; p < s + len; p += utf_byte2len(*p)) |
| 5627 | { |
| 5628 | uc = utf_ptr2char(p); |
| 5629 | |
| 5630 | if (start == NULL) |
| 5631 | { |
| 5632 | if (uc >= 0x80 && utf_char2cells(uc) == 2) |
| 5633 | start = p; |
| 5634 | } |
| 5635 | else if (uc < 0x80 /* optimization shortcut */ |
| 5636 | || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc))) |
| 5637 | { |
| 5638 | INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), |
| 5639 | attr_list, start - s, p - s); |
| 5640 | start = NULL; |
| 5641 | } |
| 5642 | } |
| 5643 | |
| 5644 | if (start != NULL) |
| 5645 | INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), |
| 5646 | attr_list, start - s, len); |
| 5647 | } |
| 5648 | |
| 5649 | static int |
| 5650 | count_cluster_cells(char_u *s, PangoItem *item, |
| 5651 | PangoGlyphString* glyphs, int i, |
| 5652 | int *cluster_width, |
| 5653 | int *last_glyph_rbearing) |
| 5654 | { |
| 5655 | char_u *p; |
| 5656 | int next; /* glyph start index of next cluster */ |
| 5657 | int start, end; /* string segment of current cluster */ |
| 5658 | int width; /* real cluster width in Pango units */ |
| 5659 | int uc; |
| 5660 | int cellcount = 0; |
| 5661 | |
| 5662 | width = glyphs->glyphs[i].geometry.width; |
| 5663 | |
| 5664 | for (next = i + 1; next < glyphs->num_glyphs; ++next) |
| 5665 | { |
| 5666 | if (glyphs->glyphs[next].attr.is_cluster_start) |
| 5667 | break; |
| 5668 | else if (glyphs->glyphs[next].geometry.width > width) |
| 5669 | width = glyphs->glyphs[next].geometry.width; |
| 5670 | } |
| 5671 | |
| 5672 | start = item->offset + glyphs->log_clusters[i]; |
| 5673 | end = item->offset + ((next < glyphs->num_glyphs) ? |
| 5674 | glyphs->log_clusters[next] : item->length); |
| 5675 | |
| 5676 | for (p = s + start; p < s + end; p += utf_byte2len(*p)) |
| 5677 | { |
| 5678 | uc = utf_ptr2char(p); |
| 5679 | if (uc < 0x80) |
| 5680 | ++cellcount; |
| 5681 | else if (!utf_iscomposing(uc)) |
| 5682 | cellcount += utf_char2cells(uc); |
| 5683 | } |
| 5684 | |
| 5685 | if (last_glyph_rbearing != NULL |
| 5686 | && cellcount > 0 && next == glyphs->num_glyphs) |
| 5687 | { |
| 5688 | PangoRectangle ink_rect; |
| 5689 | /* |
| 5690 | * If a certain combining mark had to be taken from a non-monospace |
| 5691 | * font, we have to compensate manually by adapting x_offset according |
| 5692 | * to the ink extents of the previous glyph. |
| 5693 | */ |
| 5694 | pango_font_get_glyph_extents(item->analysis.font, |
| 5695 | glyphs->glyphs[i].glyph, |
| 5696 | &ink_rect, NULL); |
| 5697 | |
| 5698 | if (PANGO_RBEARING(ink_rect) > 0) |
| 5699 | *last_glyph_rbearing = PANGO_RBEARING(ink_rect); |
| 5700 | } |
| 5701 | |
| 5702 | if (cellcount > 0) |
| 5703 | *cluster_width = width; |
| 5704 | |
| 5705 | return cellcount; |
| 5706 | } |
| 5707 | |
| 5708 | /* |
| 5709 | * If there are only combining characters in the cluster, we cannot just |
| 5710 | * change the width of the previous glyph since there is none. Therefore |
| 5711 | * some guesswork is needed. |
| 5712 | * |
| 5713 | * If ink_rect.x is negative Pango apparently has taken care of the composing |
| 5714 | * by itself. Actually setting x_offset = 0 should be sufficient then, but due |
| 5715 | * 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] | 5716 | * x_offset to avoid ugliness. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5717 | * |
| 5718 | * If ink_rect.x is not negative, force overstriking by pointing x_offset to |
| 5719 | * the position of the previous glyph. Apparently this happens only with old |
| 5720 | * X fonts which don't provide the special combining information needed by |
| 5721 | * Pango. |
| 5722 | */ |
| 5723 | static void |
| 5724 | setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph, |
| 5725 | int last_cellcount, int last_cluster_width, |
| 5726 | int last_glyph_rbearing) |
| 5727 | { |
| 5728 | PangoRectangle ink_rect; |
| 5729 | PangoRectangle logical_rect; |
| 5730 | int width; |
| 5731 | |
| 5732 | width = last_cellcount * gui.char_width * PANGO_SCALE; |
| 5733 | glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2; |
| 5734 | glyph->geometry.width = 0; |
| 5735 | |
| 5736 | pango_font_get_glyph_extents(item->analysis.font, |
| 5737 | glyph->glyph, |
| 5738 | &ink_rect, &logical_rect); |
| 5739 | if (ink_rect.x < 0) |
| 5740 | { |
| 5741 | glyph->geometry.x_offset += last_glyph_rbearing; |
| 5742 | glyph->geometry.y_offset = logical_rect.height |
| 5743 | - (gui.char_height - p_linespace) * PANGO_SCALE; |
| 5744 | } |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5745 | else |
| 5746 | /* If the accent width is smaller than the cluster width, position it |
| 5747 | * in the middle. */ |
| 5748 | glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5749 | } |
| 5750 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5751 | #if GTK_CHECK_VERSION(3,0,0) |
| 5752 | static void |
| 5753 | draw_glyph_string(int row, int col, int num_cells, int flags, |
| 5754 | PangoFont *font, PangoGlyphString *glyphs, |
| 5755 | cairo_t *cr) |
| 5756 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5757 | static void |
| 5758 | draw_glyph_string(int row, int col, int num_cells, int flags, |
| 5759 | PangoFont *font, PangoGlyphString *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 | if (!(flags & DRAW_TRANSP)) |
| 5763 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5764 | #if GTK_CHECK_VERSION(3,0,0) |
| 5765 | set_cairo_source_rgb_from_pixel(cr, gui.bgcolor->pixel); |
| 5766 | cairo_rectangle(cr, |
| 5767 | FILL_X(col), FILL_Y(row), |
| 5768 | num_cells * gui.char_width, gui.char_height); |
| 5769 | cairo_fill(cr); |
| 5770 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5771 | gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
| 5772 | |
| 5773 | gdk_draw_rectangle(gui.drawarea->window, |
| 5774 | gui.text_gc, |
| 5775 | TRUE, |
| 5776 | FILL_X(col), |
| 5777 | FILL_Y(row), |
| 5778 | num_cells * gui.char_width, |
| 5779 | gui.char_height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5780 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5781 | } |
| 5782 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5783 | #if GTK_CHECK_VERSION(3,0,0) |
| 5784 | set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel); |
| 5785 | cairo_move_to(cr, TEXT_X(col), TEXT_Y(row)); |
| 5786 | pango_cairo_show_glyph_string(cr, font, glyphs); |
| 5787 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5788 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 5789 | |
| 5790 | gdk_draw_glyphs(gui.drawarea->window, |
| 5791 | gui.text_gc, |
| 5792 | font, |
| 5793 | TEXT_X(col), |
| 5794 | TEXT_Y(row), |
| 5795 | glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5796 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5797 | |
| 5798 | /* redraw the contents with an offset of 1 to emulate bold */ |
| 5799 | if ((flags & DRAW_BOLD) && !gui.font_can_bold) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5800 | #if GTK_CHECK_VERSION(3,0,0) |
| 5801 | { |
| 5802 | set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel); |
| 5803 | cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row)); |
| 5804 | pango_cairo_show_glyph_string(cr, font, glyphs); |
| 5805 | } |
| 5806 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5807 | gdk_draw_glyphs(gui.drawarea->window, |
| 5808 | gui.text_gc, |
| 5809 | font, |
| 5810 | TEXT_X(col) + 1, |
| 5811 | TEXT_Y(row), |
| 5812 | glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5813 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5814 | } |
| 5815 | |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5816 | /* |
| 5817 | * Draw underline and undercurl at the bottom of the character cell. |
| 5818 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5819 | #if GTK_CHECK_VERSION(3,0,0) |
| 5820 | static void |
| 5821 | draw_under(int flags, int row, int col, int cells, cairo_t *cr) |
| 5822 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5823 | static void |
| 5824 | draw_under(int flags, int row, int col, int cells) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5825 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5826 | { |
| 5827 | int i; |
| 5828 | int offset; |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5829 | 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] | 5830 | int y = FILL_Y(row + 1) - 1; |
| 5831 | |
| 5832 | /* Undercurl: draw curl at the bottom of the character cell. */ |
| 5833 | if (flags & DRAW_UNDERC) |
| 5834 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5835 | #if GTK_CHECK_VERSION(3,0,0) |
| 5836 | cairo_set_line_width(cr, 1.0); |
| 5837 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
| 5838 | set_cairo_source_rgb_from_pixel(cr, gui.spcolor->pixel); |
| 5839 | for (i = FILL_X(col); i < FILL_X(col + cells); ++i) |
| 5840 | { |
| 5841 | offset = val[i % 8]; |
| 5842 | cairo_line_to(cr, i, y - offset + 0.5); |
| 5843 | } |
| 5844 | cairo_stroke(cr); |
| 5845 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5846 | gdk_gc_set_foreground(gui.text_gc, gui.spcolor); |
| 5847 | for (i = FILL_X(col); i < FILL_X(col + cells); ++i) |
| 5848 | { |
| 5849 | offset = val[i % 8]; |
| 5850 | gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset); |
| 5851 | } |
| 5852 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5853 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5854 | } |
| 5855 | |
| 5856 | /* Underline: draw a line at the bottom of the character cell. */ |
| 5857 | if (flags & DRAW_UNDERL) |
| 5858 | { |
| 5859 | /* When p_linespace is 0, overwrite the bottom row of pixels. |
| 5860 | * Otherwise put the line just below the character. */ |
| 5861 | if (p_linespace > 1) |
| 5862 | y -= p_linespace - 1; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5863 | #if GTK_CHECK_VERSION(3,0,0) |
| 5864 | { |
| 5865 | cairo_set_line_width(cr, 1.0); |
| 5866 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
| 5867 | set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel); |
| 5868 | cairo_move_to(cr, FILL_X(col), y + 0.5); |
| 5869 | cairo_line_to(cr, FILL_X(col + cells), y + 0.5); |
| 5870 | cairo_stroke(cr); |
| 5871 | } |
| 5872 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5873 | gdk_draw_line(gui.drawarea->window, gui.text_gc, |
| 5874 | FILL_X(col), y, |
| 5875 | FILL_X(col + cells) - 1, y); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5876 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5877 | } |
| 5878 | } |
| 5879 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5880 | int |
| 5881 | gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags) |
| 5882 | { |
| 5883 | GdkRectangle area; /* area for clip mask */ |
| 5884 | PangoGlyphString *glyphs; /* glyphs of current item */ |
| 5885 | int column_offset = 0; /* column offset in cells */ |
| 5886 | int i; |
| 5887 | char_u *conv_buf = NULL; /* result of UTF-8 conversion */ |
| 5888 | char_u *new_conv_buf; |
| 5889 | int convlen; |
| 5890 | char_u *sp, *bp; |
| 5891 | int plen; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5892 | #if GTK_CHECK_VERSION(3,0,0) |
| 5893 | cairo_t *cr; |
| 5894 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5895 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5896 | #if GTK_CHECK_VERSION(3,0,0) |
| 5897 | if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL) |
| 5898 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5899 | if (gui.text_context == NULL || gui.drawarea->window == NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5900 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5901 | return len; |
| 5902 | |
| 5903 | if (output_conv.vc_type != CONV_NONE) |
| 5904 | { |
| 5905 | /* |
| 5906 | * Convert characters from 'encoding' to 'termencoding', which is set |
| 5907 | * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c |
| 5908 | * prohibits changing this to something else than UTF-8 if the GUI is |
| 5909 | * in use. |
| 5910 | */ |
| 5911 | convlen = len; |
| 5912 | conv_buf = string_convert(&output_conv, s, &convlen); |
| 5913 | g_return_val_if_fail(conv_buf != NULL, len); |
| 5914 | |
| 5915 | /* Correct for differences in char width: some chars are |
| 5916 | * double-wide in 'encoding' but single-wide in utf-8. Add a space to |
| 5917 | * compensate for that. */ |
| 5918 | for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; ) |
| 5919 | { |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 5920 | plen = utf_ptr2len(bp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5921 | if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1) |
| 5922 | { |
| 5923 | new_conv_buf = alloc(convlen + 2); |
| 5924 | if (new_conv_buf == NULL) |
| 5925 | return len; |
| 5926 | plen += bp - conv_buf; |
| 5927 | mch_memmove(new_conv_buf, conv_buf, plen); |
| 5928 | new_conv_buf[plen] = ' '; |
| 5929 | mch_memmove(new_conv_buf + plen + 1, conv_buf + plen, |
| 5930 | convlen - plen + 1); |
| 5931 | vim_free(conv_buf); |
| 5932 | conv_buf = new_conv_buf; |
| 5933 | ++convlen; |
| 5934 | bp = conv_buf + plen; |
| 5935 | plen = 1; |
| 5936 | } |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 5937 | sp += (*mb_ptr2len)(sp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5938 | bp += plen; |
| 5939 | } |
| 5940 | s = conv_buf; |
| 5941 | len = convlen; |
| 5942 | } |
| 5943 | |
| 5944 | /* |
| 5945 | * Restrict all drawing to the current screen line in order to prevent |
| 5946 | * fuzzy font lookups from messing up the screen. |
| 5947 | */ |
| 5948 | area.x = gui.border_offset; |
| 5949 | area.y = FILL_Y(row); |
| 5950 | area.width = gui.num_cols * gui.char_width; |
| 5951 | area.height = gui.char_height; |
| 5952 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5953 | #if GTK_CHECK_VERSION(3,0,0) |
| 5954 | cr = cairo_create(gui.surface); |
| 5955 | cairo_rectangle(cr, area.x, area.y, area.width, area.height); |
| 5956 | cairo_clip(cr); |
| 5957 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5958 | gdk_gc_set_clip_origin(gui.text_gc, 0, 0); |
| 5959 | gdk_gc_set_clip_rectangle(gui.text_gc, &area); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5960 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5961 | |
| 5962 | glyphs = pango_glyph_string_new(); |
| 5963 | |
| 5964 | /* |
| 5965 | * Optimization hack: If possible, skip the itemize and shaping process |
| 5966 | * for pure ASCII strings. This optimization is particularly effective |
| 5967 | * because Vim draws space characters to clear parts of the screen. |
| 5968 | */ |
| 5969 | if (!(flags & DRAW_ITALIC) |
| 5970 | && !((flags & DRAW_BOLD) && gui.font_can_bold) |
| 5971 | && gui.ascii_glyphs != NULL) |
| 5972 | { |
| 5973 | char_u *p; |
| 5974 | |
| 5975 | for (p = s; p < s + len; ++p) |
| 5976 | if (*p & 0x80) |
| 5977 | goto not_ascii; |
| 5978 | |
| 5979 | pango_glyph_string_set_size(glyphs, len); |
| 5980 | |
| 5981 | for (i = 0; i < len; ++i) |
| 5982 | { |
| 5983 | glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[s[i]]; |
| 5984 | glyphs->log_clusters[i] = i; |
| 5985 | } |
| 5986 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5987 | #if GTK_CHECK_VERSION(3,0,0) |
| 5988 | draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr); |
| 5989 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5990 | draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5991 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5992 | |
| 5993 | column_offset = len; |
| 5994 | } |
| 5995 | else |
| 5996 | not_ascii: |
| 5997 | { |
| 5998 | PangoAttrList *attr_list; |
| 5999 | GList *item_list; |
| 6000 | int cluster_width; |
| 6001 | int last_glyph_rbearing; |
| 6002 | int cells = 0; /* cells occupied by current cluster */ |
| 6003 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6004 | /* Safety check: pango crashes when invoked with invalid utf-8 |
| 6005 | * characters. */ |
| 6006 | if (!utf_valid_string(s, s + len)) |
| 6007 | { |
| 6008 | column_offset = len; |
| 6009 | goto skipitall; |
| 6010 | } |
| 6011 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6012 | /* original width of the current cluster */ |
| 6013 | cluster_width = PANGO_SCALE * gui.char_width; |
| 6014 | |
| 6015 | /* right bearing of the last non-composing glyph */ |
| 6016 | last_glyph_rbearing = PANGO_SCALE * gui.char_width; |
| 6017 | |
| 6018 | attr_list = pango_attr_list_new(); |
| 6019 | |
| 6020 | /* If 'guifontwide' is set then use that for double-width characters. |
| 6021 | * Otherwise just go with 'guifont' and let Pango do its thing. */ |
| 6022 | if (gui.wide_font != NULL) |
| 6023 | apply_wide_font_attr(s, len, attr_list); |
| 6024 | |
| 6025 | if ((flags & DRAW_BOLD) && gui.font_can_bold) |
| 6026 | INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD), |
| 6027 | attr_list, 0, len); |
| 6028 | if (flags & DRAW_ITALIC) |
| 6029 | INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC), |
| 6030 | attr_list, 0, len); |
| 6031 | /* |
| 6032 | * Break the text into segments with consistent directional level |
| 6033 | * and shaping engine. Pure Latin text needs only a single segment, |
| 6034 | * so there's no need to worry about the loop's efficiency. Better |
| 6035 | * try to optimize elsewhere, e.g. reducing exposes and stuff :) |
| 6036 | */ |
| 6037 | item_list = pango_itemize(gui.text_context, |
| 6038 | (const char *)s, 0, len, attr_list, NULL); |
| 6039 | |
| 6040 | while (item_list != NULL) |
| 6041 | { |
| 6042 | PangoItem *item; |
| 6043 | int item_cells = 0; /* item length in cells */ |
| 6044 | |
| 6045 | item = (PangoItem *)item_list->data; |
| 6046 | item_list = g_list_delete_link(item_list, item_list); |
| 6047 | /* |
| 6048 | * Increment the bidirectional embedding level by 1 if it is not |
| 6049 | * even. An odd number means the output will be RTL, but we don't |
| 6050 | * want that since Vim handles right-to-left text on its own. It |
| 6051 | * would probably be sufficient to just set level = 0, but you can |
| 6052 | * never know :) |
| 6053 | * |
| 6054 | * Unfortunately we can't take advantage of Pango's ability to |
| 6055 | * render both LTR and RTL at the same time. In order to support |
| 6056 | * that, Vim's main screen engine would have to make use of Pango |
| 6057 | * functionality. |
| 6058 | */ |
| 6059 | item->analysis.level = (item->analysis.level + 1) & (~1U); |
| 6060 | |
| 6061 | /* HACK: Overrule the shape engine, we don't want shaping to be |
| 6062 | * done, because drawing the cursor would change the display. */ |
| 6063 | item->analysis.shape_engine = default_shape_engine; |
| 6064 | |
Bram Moolenaar | 3cbe0c0 | 2015-09-08 20:00:22 +0200 | [diff] [blame] | 6065 | #ifdef HAVE_PANGO_SHAPE_FULL |
Bram Moolenaar | 7e2ec00 | 2015-09-08 16:31:06 +0200 | [diff] [blame] | 6066 | pango_shape_full((const char *)s + item->offset, item->length, |
| 6067 | (const char *)s, len, &item->analysis, glyphs); |
Bram Moolenaar | 3cbe0c0 | 2015-09-08 20:00:22 +0200 | [diff] [blame] | 6068 | #else |
| 6069 | pango_shape((const char *)s + item->offset, item->length, |
| 6070 | &item->analysis, glyphs); |
| 6071 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6072 | /* |
| 6073 | * Fixed-width hack: iterate over the array and assign a fixed |
| 6074 | * width to each glyph, thus overriding the choice made by the |
| 6075 | * shaping engine. We use utf_char2cells() to determine the |
| 6076 | * number of cells needed. |
| 6077 | * |
| 6078 | * Also perform all kind of dark magic to get composing |
| 6079 | * characters right (and pretty too of course). |
| 6080 | */ |
| 6081 | for (i = 0; i < glyphs->num_glyphs; ++i) |
| 6082 | { |
| 6083 | PangoGlyphInfo *glyph; |
| 6084 | |
| 6085 | glyph = &glyphs->glyphs[i]; |
| 6086 | |
| 6087 | if (glyph->attr.is_cluster_start) |
| 6088 | { |
| 6089 | int cellcount; |
| 6090 | |
| 6091 | cellcount = count_cluster_cells( |
| 6092 | s, item, glyphs, i, &cluster_width, |
| 6093 | (item_list != NULL) ? &last_glyph_rbearing : NULL); |
| 6094 | |
| 6095 | if (cellcount > 0) |
| 6096 | { |
| 6097 | int width; |
| 6098 | |
| 6099 | width = cellcount * gui.char_width * PANGO_SCALE; |
| 6100 | glyph->geometry.x_offset += |
| 6101 | MAX(0, width - cluster_width) / 2; |
| 6102 | glyph->geometry.width = width; |
| 6103 | } |
| 6104 | else |
| 6105 | { |
| 6106 | /* If there are only combining characters in the |
| 6107 | * cluster, we cannot just change the width of the |
| 6108 | * previous glyph since there is none. Therefore |
| 6109 | * some guesswork is needed. */ |
| 6110 | setup_zero_width_cluster(item, glyph, cells, |
| 6111 | cluster_width, |
| 6112 | last_glyph_rbearing); |
| 6113 | } |
| 6114 | |
| 6115 | item_cells += cellcount; |
| 6116 | cells = cellcount; |
| 6117 | } |
| 6118 | else if (i > 0) |
| 6119 | { |
| 6120 | int width; |
| 6121 | |
| 6122 | /* There is a previous glyph, so we deal with combining |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 6123 | * characters the canonical way. |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 6124 | * In some circumstances Pango uses a positive x_offset, |
| 6125 | * then use the width of the previous glyph for this one |
| 6126 | * and set the previous width to zero. |
| 6127 | * Otherwise we get a negative x_offset, Pango has already |
| 6128 | * positioned the combining char, keep the widths as they |
| 6129 | * are. |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 6130 | * For both adjust the x_offset to position the glyph in |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 6131 | * the middle. */ |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 6132 | if (glyph->geometry.x_offset >= 0) |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 6133 | { |
| 6134 | glyphs->glyphs[i].geometry.width = |
| 6135 | glyphs->glyphs[i - 1].geometry.width; |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 6136 | glyphs->glyphs[i - 1].geometry.width = 0; |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 6137 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6138 | width = cells * gui.char_width * PANGO_SCALE; |
| 6139 | glyph->geometry.x_offset += |
| 6140 | MAX(0, width - cluster_width) / 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6141 | } |
| 6142 | else /* i == 0 "cannot happen" */ |
| 6143 | { |
| 6144 | glyph->geometry.width = 0; |
| 6145 | } |
| 6146 | } |
| 6147 | |
| 6148 | /*** Aaaaand action! ***/ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6149 | #if GTK_CHECK_VERSION(3,0,0) |
| 6150 | draw_glyph_string(row, col + column_offset, item_cells, |
| 6151 | flags, item->analysis.font, glyphs, |
| 6152 | cr); |
| 6153 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6154 | draw_glyph_string(row, col + column_offset, item_cells, |
| 6155 | flags, item->analysis.font, glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6156 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6157 | |
| 6158 | pango_item_free(item); |
| 6159 | |
| 6160 | column_offset += item_cells; |
| 6161 | } |
| 6162 | |
| 6163 | pango_attr_list_unref(attr_list); |
| 6164 | } |
| 6165 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6166 | skipitall: |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 6167 | /* Draw underline and undercurl. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6168 | #if GTK_CHECK_VERSION(3,0,0) |
| 6169 | draw_under(flags, row, col, column_offset, cr); |
| 6170 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 6171 | draw_under(flags, row, col, column_offset); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6172 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6173 | |
| 6174 | pango_glyph_string_free(glyphs); |
| 6175 | vim_free(conv_buf); |
| 6176 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6177 | #if GTK_CHECK_VERSION(3,0,0) |
| 6178 | cairo_destroy(cr); |
| 6179 | if (!gui.by_signal) |
| 6180 | gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea), |
| 6181 | &area, FALSE); |
| 6182 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6183 | gdk_gc_set_clip_rectangle(gui.text_gc, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6184 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6185 | |
| 6186 | return column_offset; |
| 6187 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6188 | |
| 6189 | /* |
| 6190 | * Return OK if the key with the termcap name "name" is supported. |
| 6191 | */ |
| 6192 | int |
| 6193 | gui_mch_haskey(char_u *name) |
| 6194 | { |
| 6195 | int i; |
| 6196 | |
| 6197 | for (i = 0; special_keys[i].key_sym != 0; i++) |
| 6198 | if (name[0] == special_keys[i].code0 |
| 6199 | && name[1] == special_keys[i].code1) |
| 6200 | return OK; |
| 6201 | return FAIL; |
| 6202 | } |
| 6203 | |
Bram Moolenaar | b2c5a5a | 2013-02-14 22:11:39 +0100 | [diff] [blame] | 6204 | #if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6205 | /* |
| 6206 | * Return the text window-id and display. Only required for X-based GUI's |
| 6207 | */ |
| 6208 | int |
| 6209 | gui_get_x11_windis(Window *win, Display **dis) |
| 6210 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6211 | #if GTK_CHECK_VERSION(3,0,0) |
| 6212 | if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL) |
| 6213 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6214 | if (gui.mainwin != NULL && gui.mainwin->window != NULL) |
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 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6217 | #if GTK_CHECK_VERSION(3,0,0) |
| 6218 | *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
| 6219 | *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)); |
| 6220 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6221 | *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window); |
| 6222 | *win = GDK_WINDOW_XWINDOW(gui.mainwin->window); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6223 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6224 | return OK; |
| 6225 | } |
| 6226 | |
| 6227 | *dis = NULL; |
| 6228 | *win = 0; |
| 6229 | return FAIL; |
| 6230 | } |
| 6231 | #endif |
| 6232 | |
| 6233 | #if defined(FEAT_CLIENTSERVER) \ |
| 6234 | || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO) |
| 6235 | |
| 6236 | Display * |
| 6237 | gui_mch_get_display(void) |
| 6238 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6239 | #if GTK_CHECK_VERSION(3,0,0) |
| 6240 | if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL) |
| 6241 | return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
| 6242 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6243 | if (gui.mainwin != NULL && gui.mainwin->window != NULL) |
| 6244 | return GDK_WINDOW_XDISPLAY(gui.mainwin->window); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6245 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6246 | else |
| 6247 | return NULL; |
| 6248 | } |
| 6249 | #endif |
| 6250 | |
| 6251 | void |
| 6252 | gui_mch_beep(void) |
| 6253 | { |
| 6254 | #ifdef HAVE_GTK_MULTIHEAD |
| 6255 | GdkDisplay *display; |
| 6256 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6257 | # if GTK_CHECK_VERSION(3,0,0) |
| 6258 | if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
| 6259 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6260 | if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6261 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6262 | display = gtk_widget_get_display(gui.mainwin); |
| 6263 | else |
| 6264 | display = gdk_display_get_default(); |
| 6265 | |
| 6266 | if (display != NULL) |
| 6267 | gdk_display_beep(display); |
| 6268 | #else |
| 6269 | gdk_beep(); |
| 6270 | #endif |
| 6271 | } |
| 6272 | |
| 6273 | void |
| 6274 | gui_mch_flash(int msec) |
| 6275 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6276 | #if GTK_CHECK_VERSION(3,0,0) |
| 6277 | /* TODO Replace GdkGC with Cairo */ |
| 6278 | (void)msec; |
| 6279 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6280 | GdkGCValues values; |
| 6281 | GdkGC *invert_gc; |
| 6282 | |
| 6283 | if (gui.drawarea->window == NULL) |
| 6284 | return; |
| 6285 | |
| 6286 | values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 6287 | values.background.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 6288 | values.function = GDK_XOR; |
| 6289 | invert_gc = gdk_gc_new_with_values(gui.drawarea->window, |
| 6290 | &values, |
| 6291 | GDK_GC_FOREGROUND | |
| 6292 | GDK_GC_BACKGROUND | |
| 6293 | GDK_GC_FUNCTION); |
| 6294 | gdk_gc_set_exposures(invert_gc, |
| 6295 | gui.visibility != GDK_VISIBILITY_UNOBSCURED); |
| 6296 | /* |
| 6297 | * Do a visual beep by changing back and forth in some undetermined way, |
| 6298 | * the foreground and background colors. This is due to the fact that |
| 6299 | * there can't be really any prediction about the effects of XOR on |
| 6300 | * arbitrary X11 servers. However this seems to be enough for what we |
| 6301 | * intend it to do. |
| 6302 | */ |
| 6303 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 6304 | TRUE, |
| 6305 | 0, 0, |
| 6306 | FILL_X((int)Columns) + gui.border_offset, |
| 6307 | FILL_Y((int)Rows) + gui.border_offset); |
| 6308 | |
| 6309 | gui_mch_flush(); |
| 6310 | ui_delay((long)msec, TRUE); /* wait so many msec */ |
| 6311 | |
| 6312 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 6313 | TRUE, |
| 6314 | 0, 0, |
| 6315 | FILL_X((int)Columns) + gui.border_offset, |
| 6316 | FILL_Y((int)Rows) + gui.border_offset); |
| 6317 | |
| 6318 | gdk_gc_destroy(invert_gc); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6319 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6320 | } |
| 6321 | |
| 6322 | /* |
| 6323 | * Invert a rectangle from row r, column c, for nr rows and nc columns. |
| 6324 | */ |
| 6325 | void |
| 6326 | gui_mch_invert_rectangle(int r, int c, int nr, int nc) |
| 6327 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6328 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 4fc563b | 2016-03-12 12:40:58 +0100 | [diff] [blame] | 6329 | const GdkRectangle rect = { |
| 6330 | FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height |
| 6331 | }; |
| 6332 | cairo_t * const cr = cairo_create(gui.surface); |
| 6333 | |
| 6334 | set_cairo_source_rgb_from_pixel(cr, gui.norm_pixel ^ gui.back_pixel); |
| 6335 | # if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2) |
| 6336 | cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE); |
| 6337 | # else |
| 6338 | /* Give an implementation for older cairo versions if necessary. */ |
| 6339 | # endif |
| 6340 | gdk_cairo_rectangle(cr, &rect); |
| 6341 | cairo_fill(cr); |
| 6342 | |
| 6343 | cairo_destroy(cr); |
| 6344 | |
| 6345 | if (!gui.by_signal) |
| 6346 | gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y, |
| 6347 | rect.width, rect.height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6348 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6349 | GdkGCValues values; |
| 6350 | GdkGC *invert_gc; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6351 | |
| 6352 | if (gui.drawarea->window == NULL) |
| 6353 | return; |
| 6354 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 6355 | values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 6356 | values.background.pixel = gui.norm_pixel ^ gui.back_pixel; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6357 | values.function = GDK_XOR; |
| 6358 | invert_gc = gdk_gc_new_with_values(gui.drawarea->window, |
| 6359 | &values, |
| 6360 | GDK_GC_FOREGROUND | |
| 6361 | GDK_GC_BACKGROUND | |
| 6362 | GDK_GC_FUNCTION); |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 6363 | gdk_gc_set_exposures(invert_gc, gui.visibility != |
| 6364 | GDK_VISIBILITY_UNOBSCURED); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6365 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 6366 | TRUE, |
| 6367 | FILL_X(c), FILL_Y(r), |
| 6368 | (nc) * gui.char_width, (nr) * gui.char_height); |
| 6369 | gdk_gc_destroy(invert_gc); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6370 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6371 | } |
| 6372 | |
| 6373 | /* |
| 6374 | * Iconify the GUI window. |
| 6375 | */ |
| 6376 | void |
| 6377 | gui_mch_iconify(void) |
| 6378 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6379 | gtk_window_iconify(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6380 | } |
| 6381 | |
| 6382 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 6383 | /* |
| 6384 | * Bring the Vim window to the foreground. |
| 6385 | */ |
| 6386 | void |
| 6387 | gui_mch_set_foreground(void) |
| 6388 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6389 | gtk_window_present(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6390 | } |
| 6391 | #endif |
| 6392 | |
| 6393 | /* |
| 6394 | * Draw a cursor without focus. |
| 6395 | */ |
| 6396 | void |
| 6397 | gui_mch_draw_hollow_cursor(guicolor_T color) |
| 6398 | { |
| 6399 | int i = 1; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6400 | #if GTK_CHECK_VERSION(3,0,0) |
| 6401 | cairo_t *cr; |
| 6402 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6403 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6404 | #if GTK_CHECK_VERSION(3,0,0) |
| 6405 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
| 6406 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6407 | if (gui.drawarea->window == NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6408 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6409 | return; |
| 6410 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6411 | #if GTK_CHECK_VERSION(3,0,0) |
| 6412 | cr = cairo_create(gui.surface); |
| 6413 | #endif |
| 6414 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6415 | gui_mch_set_fg_color(color); |
| 6416 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6417 | #if GTK_CHECK_VERSION(3,0,0) |
| 6418 | set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel); |
| 6419 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6420 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6421 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6422 | if (mb_lefthalve(gui.row, gui.col)) |
| 6423 | i = 2; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6424 | #if GTK_CHECK_VERSION(3,0,0) |
| 6425 | cairo_set_line_width(cr, 1.0); |
| 6426 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
| 6427 | cairo_rectangle(cr, |
| 6428 | FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5, |
| 6429 | i * gui.char_width - 1, gui.char_height - 1); |
| 6430 | cairo_stroke(cr); |
| 6431 | cairo_destroy(cr); |
| 6432 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6433 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
| 6434 | FALSE, |
| 6435 | FILL_X(gui.col), FILL_Y(gui.row), |
| 6436 | i * gui.char_width - 1, gui.char_height - 1); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6437 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6438 | } |
| 6439 | |
| 6440 | /* |
| 6441 | * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using |
| 6442 | * color "color". |
| 6443 | */ |
| 6444 | void |
| 6445 | gui_mch_draw_part_cursor(int w, int h, guicolor_T color) |
| 6446 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6447 | #if GTK_CHECK_VERSION(3,0,0) |
| 6448 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
| 6449 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6450 | if (gui.drawarea->window == NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6451 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6452 | return; |
| 6453 | |
| 6454 | gui_mch_set_fg_color(color); |
| 6455 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6456 | #if GTK_CHECK_VERSION(3,0,0) |
| 6457 | { |
| 6458 | cairo_t *cr; |
| 6459 | |
| 6460 | cr = cairo_create(gui.surface); |
| 6461 | set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel); |
| 6462 | cairo_rectangle(cr, |
| 6463 | # ifdef FEAT_RIGHTLEFT |
| 6464 | /* vertical line should be on the right of current point */ |
| 6465 | CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : |
| 6466 | # endif |
| 6467 | FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h, |
| 6468 | w, h); |
| 6469 | cairo_fill(cr); |
| 6470 | cairo_destroy(cr); |
| 6471 | } |
| 6472 | #else /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6473 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 6474 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
| 6475 | TRUE, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6476 | # ifdef FEAT_RIGHTLEFT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6477 | /* vertical line should be on the right of current point */ |
| 6478 | CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6479 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6480 | FILL_X(gui.col), |
| 6481 | FILL_Y(gui.row) + gui.char_height - h, |
| 6482 | w, h); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6483 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6484 | } |
| 6485 | |
| 6486 | |
| 6487 | /* |
| 6488 | * Catch up with any queued X11 events. This may put keyboard input into the |
| 6489 | * input buffer, call resize call-backs, trigger timers etc. If there is |
| 6490 | * nothing in the X11 event queue (& no timers pending), then we return |
| 6491 | * immediately. |
| 6492 | */ |
| 6493 | void |
| 6494 | gui_mch_update(void) |
| 6495 | { |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 6496 | while (g_main_context_pending(NULL) && !vim_is_input_buf_full()) |
| 6497 | g_main_context_iteration(NULL, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6498 | } |
| 6499 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6500 | #if GTK_CHECK_VERSION(3,0,0) |
| 6501 | static gboolean |
| 6502 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6503 | static gint |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6504 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6505 | input_timer_cb(gpointer data) |
| 6506 | { |
| 6507 | int *timed_out = (int *) data; |
| 6508 | |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 6509 | /* Just inform the caller about the occurrence of it */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6510 | *timed_out = TRUE; |
| 6511 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6512 | return FALSE; /* don't happen again */ |
| 6513 | } |
| 6514 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6515 | /* |
| 6516 | * GUI input routine called by gui_wait_for_chars(). Waits for a character |
| 6517 | * from the keyboard. |
| 6518 | * wtime == -1 Wait forever. |
| 6519 | * wtime == 0 This should never happen. |
| 6520 | * wtime > 0 Wait wtime milliseconds for a character. |
| 6521 | * Returns OK if a character was found to be available within the given time, |
| 6522 | * or FAIL otherwise. |
| 6523 | */ |
| 6524 | int |
| 6525 | gui_mch_wait_for_chars(long wtime) |
| 6526 | { |
| 6527 | int focus; |
| 6528 | guint timer; |
| 6529 | static int timed_out; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6530 | |
| 6531 | timed_out = FALSE; |
| 6532 | |
| 6533 | /* this timeout makes sure that we will return if no characters arrived in |
| 6534 | * time */ |
| 6535 | |
| 6536 | if (wtime > 0) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6537 | #if GTK_CHECK_VERSION(3,0,0) |
| 6538 | timer = g_timeout_add((guint)wtime, input_timer_cb, &timed_out); |
| 6539 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6540 | timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6541 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6542 | else |
| 6543 | timer = 0; |
| 6544 | |
| 6545 | focus = gui.in_focus; |
| 6546 | |
| 6547 | do |
| 6548 | { |
| 6549 | /* Stop or start blinking when focus changes */ |
| 6550 | if (gui.in_focus != focus) |
| 6551 | { |
| 6552 | if (gui.in_focus) |
| 6553 | gui_mch_start_blink(); |
| 6554 | else |
| 6555 | gui_mch_stop_blink(); |
| 6556 | focus = gui.in_focus; |
| 6557 | } |
| 6558 | |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 6559 | #ifdef MESSAGE_QUEUE |
| 6560 | parse_queued_messages(); |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 6561 | #endif |
| 6562 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6563 | /* |
| 6564 | * Loop in GTK+ processing until a timeout or input occurs. |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 6565 | * Skip this if input is available anyway (can happen in rare |
| 6566 | * situations, sort of race condition). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6567 | */ |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 6568 | if (!input_available()) |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 6569 | g_main_context_iteration(NULL, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6570 | |
| 6571 | /* Got char, return immediately */ |
| 6572 | if (input_available()) |
| 6573 | { |
| 6574 | if (timer != 0 && !timed_out) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6575 | #if GTK_CHECK_VERSION(3,0,0) |
| 6576 | g_source_remove(timer); |
| 6577 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6578 | gtk_timeout_remove(timer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6579 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6580 | return OK; |
| 6581 | } |
| 6582 | } while (wtime < 0 || !timed_out); |
| 6583 | |
| 6584 | /* |
| 6585 | * Flush all eventually pending (drawing) events. |
| 6586 | */ |
| 6587 | gui_mch_update(); |
| 6588 | |
| 6589 | return FAIL; |
| 6590 | } |
| 6591 | |
| 6592 | |
| 6593 | /**************************************************************************** |
| 6594 | * Output drawing routines. |
| 6595 | ****************************************************************************/ |
| 6596 | |
| 6597 | |
| 6598 | /* Flush any output to the screen */ |
| 6599 | void |
| 6600 | gui_mch_flush(void) |
| 6601 | { |
| 6602 | #ifdef HAVE_GTK_MULTIHEAD |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6603 | # if GTK_CHECK_VERSION(3,0,0) |
| 6604 | if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
| 6605 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6606 | if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6607 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6608 | gdk_display_sync(gtk_widget_get_display(gui.mainwin)); |
| 6609 | #else |
| 6610 | gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */ |
| 6611 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6612 | /* This happens to actually do what gui_mch_flush() is supposed to do, |
| 6613 | * according to the comment above. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6614 | #if GTK_CHECK_VERSION(3,0,0) |
| 6615 | if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL) |
| 6616 | gdk_window_process_updates(gtk_widget_get_window(gui.drawarea), FALSE); |
| 6617 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6618 | if (gui.drawarea != NULL && gui.drawarea->window != NULL) |
| 6619 | gdk_window_process_updates(gui.drawarea->window, FALSE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6620 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6621 | } |
| 6622 | |
| 6623 | /* |
| 6624 | * Clear a rectangular region of the screen from text pos (row1, col1) to |
| 6625 | * (row2, col2) inclusive. |
| 6626 | */ |
| 6627 | void |
| 6628 | gui_mch_clear_block(int row1, int col1, int row2, int col2) |
| 6629 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6630 | #if GTK_CHECK_VERSION(3,0,0) |
| 6631 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
| 6632 | return; |
| 6633 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6634 | GdkColor color; |
| 6635 | |
| 6636 | if (gui.drawarea->window == NULL) |
| 6637 | return; |
| 6638 | |
| 6639 | color.pixel = gui.back_pixel; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6640 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6641 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6642 | #if GTK_CHECK_VERSION(3,0,0) |
| 6643 | { |
| 6644 | /* Add one pixel to the far right column in case a double-stroked |
| 6645 | * bold glyph may sit there. */ |
| 6646 | const GdkRectangle rect = { |
| 6647 | FILL_X(col1), FILL_Y(row1), |
| 6648 | (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1), |
| 6649 | (row2 - row1 + 1) * gui.char_height |
| 6650 | }; |
| 6651 | GdkWindow * const win = gtk_widget_get_window(gui.drawarea); |
| 6652 | cairo_t * const cr = cairo_create(gui.surface); |
| 6653 | cairo_pattern_t * const pat = gdk_window_get_background_pattern(win); |
| 6654 | if (pat != NULL) |
| 6655 | cairo_set_source(cr, pat); |
| 6656 | else |
| 6657 | set_cairo_source_rgb_from_pixel(cr, gui.back_pixel); |
| 6658 | gdk_cairo_rectangle(cr, &rect); |
| 6659 | cairo_fill(cr); |
| 6660 | cairo_destroy(cr); |
| 6661 | |
| 6662 | if (!gui.by_signal) |
| 6663 | gdk_window_invalidate_rect(win, &rect, FALSE); |
| 6664 | } |
| 6665 | #else /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6666 | gdk_gc_set_foreground(gui.text_gc, &color); |
| 6667 | |
| 6668 | /* Clear one extra pixel at the far right, for when bold characters have |
| 6669 | * spilled over to the window border. */ |
| 6670 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE, |
| 6671 | FILL_X(col1), FILL_Y(row1), |
| 6672 | (col2 - col1 + 1) * gui.char_width |
| 6673 | + (col2 == Columns - 1), |
| 6674 | (row2 - row1 + 1) * gui.char_height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6675 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6676 | } |
| 6677 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6678 | #if GTK_CHECK_VERSION(3,0,0) |
| 6679 | static void |
| 6680 | gui_gtk_window_clear(GdkWindow *win) |
| 6681 | { |
| 6682 | const GdkRectangle rect = { |
| 6683 | 0, 0, gdk_window_get_width(win), gdk_window_get_height(win) |
| 6684 | }; |
| 6685 | cairo_t * const cr = cairo_create(gui.surface); |
| 6686 | cairo_pattern_t * const pat = gdk_window_get_background_pattern(win); |
| 6687 | if (pat != NULL) |
| 6688 | cairo_set_source(cr, pat); |
| 6689 | else |
| 6690 | set_cairo_source_rgb_from_pixel(cr, gui.back_pixel); |
| 6691 | gdk_cairo_rectangle(cr, &rect); |
| 6692 | cairo_fill(cr); |
| 6693 | cairo_destroy(cr); |
| 6694 | |
| 6695 | if (!gui.by_signal) |
| 6696 | gdk_window_invalidate_rect(win, &rect, FALSE); |
| 6697 | } |
| 6698 | #endif |
| 6699 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6700 | void |
| 6701 | gui_mch_clear_all(void) |
| 6702 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6703 | #if GTK_CHECK_VERSION(3,0,0) |
| 6704 | if (gtk_widget_get_window(gui.drawarea) != NULL) |
| 6705 | gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea)); |
| 6706 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6707 | if (gui.drawarea->window != NULL) |
| 6708 | gdk_window_clear(gui.drawarea->window); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6709 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6710 | } |
| 6711 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6712 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6713 | /* |
| 6714 | * Redraw any text revealed by scrolling up/down. |
| 6715 | */ |
| 6716 | static void |
| 6717 | check_copy_area(void) |
| 6718 | { |
| 6719 | GdkEvent *event; |
| 6720 | int expose_count; |
| 6721 | |
| 6722 | if (gui.visibility != GDK_VISIBILITY_PARTIAL) |
| 6723 | return; |
| 6724 | |
| 6725 | /* Avoid redrawing the cursor while scrolling or it'll end up where |
| 6726 | * we don't want it to be. I'm not sure if it's correct to call |
| 6727 | * gui_dont_update_cursor() at this point but it works as a quick |
| 6728 | * fix for now. */ |
| 6729 | gui_dont_update_cursor(); |
| 6730 | |
| 6731 | do |
| 6732 | { |
| 6733 | /* Wait to check whether the scroll worked or not. */ |
| 6734 | event = gdk_event_get_graphics_expose(gui.drawarea->window); |
| 6735 | |
| 6736 | if (event == NULL) |
| 6737 | break; /* received NoExpose event */ |
| 6738 | |
| 6739 | gui_redraw(event->expose.area.x, event->expose.area.y, |
| 6740 | event->expose.area.width, event->expose.area.height); |
| 6741 | |
| 6742 | expose_count = event->expose.count; |
| 6743 | gdk_event_free(event); |
| 6744 | } |
| 6745 | while (expose_count > 0); /* more events follow */ |
| 6746 | |
| 6747 | gui_can_update_cursor(); |
| 6748 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6749 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
| 6750 | |
| 6751 | #if GTK_CHECK_VERSION(3,0,0) |
| 6752 | static void |
| 6753 | gui_gtk_surface_copy_rect(int dest_x, int dest_y, |
| 6754 | int src_x, int src_y, |
| 6755 | int width, int height) |
| 6756 | { |
| 6757 | cairo_t * const cr = cairo_create(gui.surface); |
| 6758 | |
| 6759 | cairo_rectangle(cr, dest_x, dest_y, width, height); |
| 6760 | cairo_clip(cr); |
| 6761 | cairo_push_group(cr); |
| 6762 | cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y); |
| 6763 | cairo_paint(cr); |
| 6764 | cairo_pop_group_to_source(cr); |
| 6765 | cairo_paint(cr); |
| 6766 | |
| 6767 | cairo_destroy(cr); |
| 6768 | } |
| 6769 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6770 | |
| 6771 | /* |
| 6772 | * Delete the given number of lines from the given row, scrolling up any |
| 6773 | * text further down within the scroll region. |
| 6774 | */ |
| 6775 | void |
| 6776 | gui_mch_delete_lines(int row, int num_lines) |
| 6777 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6778 | #if GTK_CHECK_VERSION(3,0,0) |
| 6779 | const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1; |
| 6780 | const int nrows = gui.scroll_region_bot - row + 1; |
| 6781 | const int src_nrows = nrows - num_lines; |
| 6782 | |
| 6783 | gui_gtk_surface_copy_rect( |
| 6784 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6785 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 6786 | gui.char_width * ncols + 1, gui.char_height * src_nrows); |
| 6787 | gui_clear_block( |
| 6788 | gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left, |
| 6789 | gui.scroll_region_bot, gui.scroll_region_right); |
| 6790 | gui_gtk3_redraw( |
| 6791 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6792 | gui.char_width * ncols + 1, gui.char_height * nrows); |
| 6793 | if (!gui.by_signal) |
| 6794 | gtk_widget_queue_draw_area(gui.drawarea, |
| 6795 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6796 | gui.char_width * ncols + 1, gui.char_height * nrows); |
| 6797 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6798 | if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
| 6799 | return; /* Can't see the window */ |
| 6800 | |
| 6801 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 6802 | gdk_gc_set_background(gui.text_gc, gui.bgcolor); |
| 6803 | |
| 6804 | /* copy one extra pixel, for when bold has spilled over */ |
| 6805 | gdk_window_copy_area(gui.drawarea->window, gui.text_gc, |
| 6806 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6807 | gui.drawarea->window, |
| 6808 | FILL_X(gui.scroll_region_left), |
| 6809 | FILL_Y(row + num_lines), |
| 6810 | gui.char_width * (gui.scroll_region_right |
| 6811 | - gui.scroll_region_left + 1) + 1, |
| 6812 | gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); |
| 6813 | |
| 6814 | gui_clear_block(gui.scroll_region_bot - num_lines + 1, |
| 6815 | gui.scroll_region_left, |
| 6816 | gui.scroll_region_bot, gui.scroll_region_right); |
| 6817 | check_copy_area(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6818 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6819 | } |
| 6820 | |
| 6821 | /* |
| 6822 | * Insert the given number of lines before the given row, scrolling down any |
| 6823 | * following text within the scroll region. |
| 6824 | */ |
| 6825 | void |
| 6826 | gui_mch_insert_lines(int row, int num_lines) |
| 6827 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6828 | #if GTK_CHECK_VERSION(3,0,0) |
| 6829 | const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1; |
| 6830 | const int nrows = gui.scroll_region_bot - row + 1; |
| 6831 | const int src_nrows = nrows - num_lines; |
| 6832 | |
| 6833 | gui_gtk_surface_copy_rect( |
| 6834 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 6835 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6836 | gui.char_width * ncols + 1, gui.char_height * src_nrows); |
| 6837 | gui_mch_clear_block( |
| 6838 | row, gui.scroll_region_left, |
| 6839 | row + num_lines - 1, gui.scroll_region_right); |
| 6840 | gui_gtk3_redraw( |
| 6841 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6842 | gui.char_width * ncols + 1, gui.char_height * nrows); |
| 6843 | if (!gui.by_signal) |
| 6844 | gtk_widget_queue_draw_area(gui.drawarea, |
| 6845 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6846 | gui.char_width * ncols + 1, gui.char_height * nrows); |
| 6847 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6848 | if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
| 6849 | return; /* Can't see the window */ |
| 6850 | |
| 6851 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 6852 | gdk_gc_set_background(gui.text_gc, gui.bgcolor); |
| 6853 | |
| 6854 | /* copy one extra pixel, for when bold has spilled over */ |
| 6855 | gdk_window_copy_area(gui.drawarea->window, gui.text_gc, |
| 6856 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 6857 | gui.drawarea->window, |
| 6858 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6859 | gui.char_width * (gui.scroll_region_right |
| 6860 | - gui.scroll_region_left + 1) + 1, |
| 6861 | gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); |
| 6862 | |
| 6863 | gui_clear_block(row, gui.scroll_region_left, |
| 6864 | row + num_lines - 1, gui.scroll_region_right); |
| 6865 | check_copy_area(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6866 | #endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6867 | } |
| 6868 | |
| 6869 | /* |
| 6870 | * X Selection stuff, for cutting and pasting text to other windows. |
| 6871 | */ |
| 6872 | void |
| 6873 | clip_mch_request_selection(VimClipboard *cbd) |
| 6874 | { |
| 6875 | GdkAtom target; |
| 6876 | unsigned i; |
Bram Moolenaar | 51b5ab9 | 2008-01-06 14:17:07 +0000 | [diff] [blame] | 6877 | time_t start; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6878 | |
| 6879 | for (i = 0; i < N_SELECTION_TARGETS; ++i) |
| 6880 | { |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 6881 | if (!clip_html && selection_targets[i].info == TARGET_HTML) |
| 6882 | continue; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6883 | received_selection = RS_NONE; |
| 6884 | target = gdk_atom_intern(selection_targets[i].target, FALSE); |
| 6885 | |
| 6886 | gtk_selection_convert(gui.drawarea, |
| 6887 | cbd->gtk_sel_atom, target, |
| 6888 | (guint32)GDK_CURRENT_TIME); |
| 6889 | |
Bram Moolenaar | 51b5ab9 | 2008-01-06 14:17:07 +0000 | [diff] [blame] | 6890 | /* Hack: Wait up to three seconds for the selection. A hang was |
| 6891 | * noticed here when using the netrw plugin combined with ":gui" |
| 6892 | * during the FocusGained event. */ |
| 6893 | start = time(NULL); |
| 6894 | while (received_selection == RS_NONE && time(NULL) < start + 3) |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 6895 | g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6896 | |
| 6897 | if (received_selection != RS_FAIL) |
| 6898 | return; |
| 6899 | } |
| 6900 | |
| 6901 | /* Final fallback position - use the X CUT_BUFFER0 store */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6902 | #if GTK_CHECK_VERSION(3,0,0) |
| 6903 | yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)), |
| 6904 | cbd); |
| 6905 | #else |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 6906 | yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6907 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6908 | } |
| 6909 | |
| 6910 | /* |
| 6911 | * Disown the selection. |
| 6912 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6913 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 6914 | clip_mch_lose_selection(VimClipboard *cbd UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6915 | { |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 6916 | gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6917 | gui_mch_update(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6918 | } |
| 6919 | |
| 6920 | /* |
| 6921 | * Own the selection and return OK if it worked. |
| 6922 | */ |
| 6923 | int |
| 6924 | clip_mch_own_selection(VimClipboard *cbd) |
| 6925 | { |
| 6926 | int success; |
| 6927 | |
| 6928 | success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom, |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 6929 | gui.event_time); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6930 | gui_mch_update(); |
| 6931 | return (success) ? OK : FAIL; |
| 6932 | } |
| 6933 | |
| 6934 | /* |
| 6935 | * Send the current selection to the clipboard. Do nothing for X because we |
| 6936 | * will fill in the selection only when requested by another app. |
| 6937 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6938 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 6939 | clip_mch_set_selection(VimClipboard *cbd UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6940 | { |
| 6941 | } |
| 6942 | |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 6943 | int |
| 6944 | clip_gtk_owner_exists(VimClipboard *cbd) |
| 6945 | { |
| 6946 | return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL; |
| 6947 | } |
| 6948 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6949 | |
| 6950 | #if defined(FEAT_MENU) || defined(PROTO) |
| 6951 | /* |
| 6952 | * Make a menu item appear either active or not active (grey or not grey). |
| 6953 | */ |
| 6954 | void |
| 6955 | gui_mch_menu_grey(vimmenu_T *menu, int grey) |
| 6956 | { |
| 6957 | if (menu->id == NULL) |
| 6958 | return; |
| 6959 | |
| 6960 | if (menu_is_separator(menu->name)) |
| 6961 | grey = TRUE; |
| 6962 | |
| 6963 | gui_mch_menu_hidden(menu, FALSE); |
| 6964 | /* Be clever about bitfields versus true booleans here! */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6965 | # if GTK_CHECK_VERSION(3,0,0) |
| 6966 | if (!gtk_widget_get_sensitive(menu->id) == !grey) |
| 6967 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6968 | if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6969 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6970 | { |
| 6971 | gtk_widget_set_sensitive(menu->id, !grey); |
| 6972 | gui_mch_update(); |
| 6973 | } |
| 6974 | } |
| 6975 | |
| 6976 | /* |
| 6977 | * Make menu item hidden or not hidden. |
| 6978 | */ |
| 6979 | void |
| 6980 | gui_mch_menu_hidden(vimmenu_T *menu, int hidden) |
| 6981 | { |
| 6982 | if (menu->id == 0) |
| 6983 | return; |
| 6984 | |
| 6985 | if (hidden) |
| 6986 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6987 | # if GTK_CHECK_VERSION(3,0,0) |
| 6988 | if (gtk_widget_get_visible(menu->id)) |
| 6989 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6990 | if (GTK_WIDGET_VISIBLE(menu->id)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6991 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6992 | { |
| 6993 | gtk_widget_hide(menu->id); |
| 6994 | gui_mch_update(); |
| 6995 | } |
| 6996 | } |
| 6997 | else |
| 6998 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6999 | # if GTK_CHECK_VERSION(3,0,0) |
| 7000 | if (!gtk_widget_get_visible(menu->id)) |
| 7001 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7002 | if (!GTK_WIDGET_VISIBLE(menu->id)) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7003 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7004 | { |
| 7005 | gtk_widget_show(menu->id); |
| 7006 | gui_mch_update(); |
| 7007 | } |
| 7008 | } |
| 7009 | } |
| 7010 | |
| 7011 | /* |
| 7012 | * This is called after setting all the menus to grey/hidden or not. |
| 7013 | */ |
| 7014 | void |
| 7015 | gui_mch_draw_menubar(void) |
| 7016 | { |
| 7017 | /* just make sure that the visual changes get effect immediately */ |
| 7018 | gui_mch_update(); |
| 7019 | } |
| 7020 | #endif /* FEAT_MENU */ |
| 7021 | |
| 7022 | /* |
| 7023 | * Scrollbar stuff. |
| 7024 | */ |
| 7025 | void |
| 7026 | gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) |
| 7027 | { |
| 7028 | if (sb->id == NULL) |
| 7029 | return; |
| 7030 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7031 | #if GTK_CHECK_VERSION(3,0,0) |
| 7032 | gtk_widget_set_visible(sb->id, flag); |
| 7033 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7034 | if (flag) |
| 7035 | gtk_widget_show(sb->id); |
| 7036 | else |
| 7037 | gtk_widget_hide(sb->id); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7038 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7039 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 7040 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7041 | } |
| 7042 | |
| 7043 | |
| 7044 | /* |
| 7045 | * Return the RGB value of a pixel as long. |
| 7046 | */ |
| 7047 | long_u |
| 7048 | gui_mch_get_rgb(guicolor_T pixel) |
| 7049 | { |
| 7050 | GdkColor color; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7051 | #if GTK_CHECK_VERSION(3,0,0) |
| 7052 | GdkRGBA rgba; |
| 7053 | |
| 7054 | gui_gtk_get_rgb_from_pixel(pixel, &rgba); |
| 7055 | |
| 7056 | color.red = rgba.red * 65535; |
| 7057 | color.green = rgba.green * 65535; |
| 7058 | color.blue = rgba.blue * 65535; |
| 7059 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7060 | gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea), |
| 7061 | (unsigned long)pixel, &color); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7062 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7063 | |
| 7064 | return (((unsigned)color.red & 0xff00) << 8) |
| 7065 | | ((unsigned)color.green & 0xff00) |
| 7066 | | (((unsigned)color.blue & 0xff00) >> 8); |
| 7067 | } |
| 7068 | |
| 7069 | /* |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 7070 | * Get current mouse coordinates in text window. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7071 | */ |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 7072 | void |
| 7073 | gui_mch_getmouse(int *x, int *y) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7074 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7075 | #if GTK_CHECK_VERSION(3,0,0) |
| 7076 | gui_gtk_get_pointer(gui.drawarea, x, y, NULL); |
| 7077 | #else |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 7078 | gdk_window_get_pointer(gui.drawarea->window, x, y, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7079 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7080 | } |
| 7081 | |
| 7082 | void |
| 7083 | gui_mch_setmouse(int x, int y) |
| 7084 | { |
| 7085 | /* Sorry for the Xlib call, but we can't avoid it, since there is no |
| 7086 | * internal GDK mechanism present to accomplish this. (and for good |
| 7087 | * reason...) */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7088 | #if GTK_CHECK_VERSION(3,0,0) |
| 7089 | XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)), |
| 7090 | (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)), |
| 7091 | 0, 0, 0U, 0U, x, y); |
| 7092 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7093 | XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window), |
| 7094 | (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window), |
| 7095 | 0, 0, 0U, 0U, x, y); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7096 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7097 | } |
| 7098 | |
| 7099 | |
| 7100 | #ifdef FEAT_MOUSESHAPE |
| 7101 | /* The last set mouse pointer shape is remembered, to be used when it goes |
| 7102 | * from hidden to not hidden. */ |
| 7103 | static int last_shape = 0; |
| 7104 | #endif |
| 7105 | |
| 7106 | /* |
| 7107 | * Use the blank mouse pointer or not. |
| 7108 | * |
| 7109 | * hide: TRUE = use blank ptr, FALSE = use parent ptr |
| 7110 | */ |
| 7111 | void |
| 7112 | gui_mch_mousehide(int hide) |
| 7113 | { |
| 7114 | if (gui.pointer_hidden != hide) |
| 7115 | { |
| 7116 | gui.pointer_hidden = hide; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7117 | #if GTK_CHECK_VERSION(3,0,0) |
| 7118 | if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL) |
| 7119 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7120 | if (gui.drawarea->window && gui.blank_pointer != NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7121 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7122 | { |
| 7123 | if (hide) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7124 | #if GTK_CHECK_VERSION(3,0,0) |
| 7125 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
| 7126 | gui.blank_pointer); |
| 7127 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7128 | gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7129 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7130 | else |
| 7131 | #ifdef FEAT_MOUSESHAPE |
| 7132 | mch_set_mouse_shape(last_shape); |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 7133 | #elif GTK_CHECK_VERSION(3,0,0) |
| 7134 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7135 | #else |
| 7136 | gdk_window_set_cursor(gui.drawarea->window, NULL); |
| 7137 | #endif |
| 7138 | } |
| 7139 | } |
| 7140 | } |
| 7141 | |
| 7142 | #if defined(FEAT_MOUSESHAPE) || defined(PROTO) |
| 7143 | |
| 7144 | /* Table for shape IDs. Keep in sync with the mshape_names[] table in |
| 7145 | * misc2.c! */ |
| 7146 | static const int mshape_ids[] = |
| 7147 | { |
| 7148 | GDK_LEFT_PTR, /* arrow */ |
| 7149 | GDK_CURSOR_IS_PIXMAP, /* blank */ |
| 7150 | GDK_XTERM, /* beam */ |
| 7151 | GDK_SB_V_DOUBLE_ARROW, /* updown */ |
| 7152 | GDK_SIZING, /* udsizing */ |
| 7153 | GDK_SB_H_DOUBLE_ARROW, /* leftright */ |
| 7154 | GDK_SIZING, /* lrsizing */ |
| 7155 | GDK_WATCH, /* busy */ |
| 7156 | GDK_X_CURSOR, /* no */ |
| 7157 | GDK_CROSSHAIR, /* crosshair */ |
| 7158 | GDK_HAND1, /* hand1 */ |
| 7159 | GDK_HAND2, /* hand2 */ |
| 7160 | GDK_PENCIL, /* pencil */ |
| 7161 | GDK_QUESTION_ARROW, /* question */ |
| 7162 | GDK_RIGHT_PTR, /* right-arrow */ |
| 7163 | GDK_CENTER_PTR, /* up-arrow */ |
| 7164 | GDK_LEFT_PTR /* last one */ |
| 7165 | }; |
| 7166 | |
| 7167 | void |
| 7168 | mch_set_mouse_shape(int shape) |
| 7169 | { |
| 7170 | int id; |
| 7171 | GdkCursor *c; |
| 7172 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7173 | # if GTK_CHECK_VERSION(3,0,0) |
| 7174 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
| 7175 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7176 | if (gui.drawarea->window == NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7177 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7178 | return; |
| 7179 | |
| 7180 | if (shape == MSHAPE_HIDE || gui.pointer_hidden) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7181 | # if GTK_CHECK_VERSION(3,0,0) |
| 7182 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
| 7183 | gui.blank_pointer); |
| 7184 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7185 | gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7186 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7187 | else |
| 7188 | { |
| 7189 | if (shape >= MSHAPE_NUMBERED) |
| 7190 | { |
| 7191 | id = shape - MSHAPE_NUMBERED; |
| 7192 | if (id >= GDK_LAST_CURSOR) |
| 7193 | id = GDK_LEFT_PTR; |
| 7194 | else |
| 7195 | id &= ~1; /* they are always even (why?) */ |
| 7196 | } |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 7197 | else if (shape < (int)(sizeof(mshape_ids) / sizeof(int))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7198 | id = mshape_ids[shape]; |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 7199 | else |
| 7200 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7201 | # ifdef HAVE_GTK_MULTIHEAD |
| 7202 | c = gdk_cursor_new_for_display( |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 7203 | gtk_widget_get_display(gui.drawarea), (GdkCursorType)id); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7204 | # else |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 7205 | c = gdk_cursor_new((GdkCursorType)id); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7206 | # endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7207 | # if GTK_CHECK_VERSION(3,0,0) |
| 7208 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c); |
| 7209 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7210 | gdk_window_set_cursor(gui.drawarea->window, c); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7211 | # endif |
| 7212 | # if GTK_CHECK_VERSION(3,0,0) |
| 7213 | g_object_unref(G_OBJECT(c)); |
| 7214 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7215 | gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7216 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7217 | } |
| 7218 | if (shape != MSHAPE_HIDE) |
| 7219 | last_shape = shape; |
| 7220 | } |
| 7221 | #endif /* FEAT_MOUSESHAPE */ |
| 7222 | |
| 7223 | |
| 7224 | #if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
| 7225 | /* |
| 7226 | * Signs are currently always 2 chars wide. With GTK+ 2, the image will be |
| 7227 | * scaled down if the current font is not big enough, or scaled up if the image |
| 7228 | * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap |
| 7229 | * will be cut off if the current font is not big enough, or centered if it's |
| 7230 | * too small. |
| 7231 | */ |
| 7232 | # define SIGN_WIDTH (2 * gui.char_width) |
| 7233 | # define SIGN_HEIGHT (gui.char_height) |
| 7234 | # define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH) |
| 7235 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7236 | void |
| 7237 | gui_mch_drawsign(int row, int col, int typenr) |
| 7238 | { |
| 7239 | GdkPixbuf *sign; |
| 7240 | |
| 7241 | sign = (GdkPixbuf *)sign_get_image(typenr); |
| 7242 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7243 | # if GTK_CHECK_VERSION(3,0,0) |
| 7244 | if (sign != NULL && gui.drawarea != NULL |
| 7245 | && gtk_widget_get_window(gui.drawarea) != NULL) |
| 7246 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7247 | if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7248 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7249 | { |
| 7250 | int width; |
| 7251 | int height; |
| 7252 | int xoffset; |
| 7253 | int yoffset; |
| 7254 | int need_scale; |
| 7255 | |
| 7256 | width = gdk_pixbuf_get_width(sign); |
| 7257 | height = gdk_pixbuf_get_height(sign); |
| 7258 | /* |
| 7259 | * Decide whether we need to scale. Allow one pixel of border |
| 7260 | * width to be cut off, in order to avoid excessive scaling for |
| 7261 | * tiny differences in font size. |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7262 | * Do scale to fit the height to avoid gaps because of linespacing. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7263 | */ |
| 7264 | need_scale = (width > SIGN_WIDTH + 2 |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7265 | || height != SIGN_HEIGHT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7266 | || (width < 3 * SIGN_WIDTH / 4 |
| 7267 | && height < 3 * SIGN_HEIGHT / 4)); |
| 7268 | if (need_scale) |
| 7269 | { |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7270 | double aspect; |
| 7271 | int w = width; |
| 7272 | int h = height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7273 | |
| 7274 | /* Keep the original aspect ratio */ |
| 7275 | aspect = (double)height / (double)width; |
| 7276 | width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect; |
| 7277 | width = MIN(width, SIGN_WIDTH); |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7278 | if (((double)(MAX(height, SIGN_HEIGHT)) / |
| 7279 | (double)(MIN(height, SIGN_HEIGHT))) < 1.15) |
| 7280 | { |
| 7281 | /* Change the aspect ratio by at most 15% to fill the |
| 7282 | * available space completly. */ |
| 7283 | height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect; |
| 7284 | height = MIN(height, SIGN_HEIGHT); |
| 7285 | } |
| 7286 | else |
| 7287 | height = (double)width * aspect; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7288 | |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7289 | if (w == width && h == height) |
| 7290 | { |
| 7291 | /* no change in dimensions; don't decrease reference counter |
| 7292 | * (below) */ |
| 7293 | need_scale = FALSE; |
| 7294 | } |
| 7295 | else |
| 7296 | { |
| 7297 | /* This doesn't seem to be worth caching, and doing so would |
| 7298 | * complicate the code quite a bit. */ |
| 7299 | sign = gdk_pixbuf_scale_simple(sign, width, height, |
| 7300 | GDK_INTERP_BILINEAR); |
| 7301 | if (sign == NULL) |
| 7302 | return; /* out of memory */ |
| 7303 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7304 | } |
| 7305 | |
| 7306 | /* The origin is the upper-left corner of the pixmap. Therefore |
| 7307 | * these offset may become negative if the pixmap is smaller than |
| 7308 | * the 2x1 cells reserved for the sign icon. */ |
| 7309 | xoffset = (width - SIGN_WIDTH) / 2; |
| 7310 | yoffset = (height - SIGN_HEIGHT) / 2; |
| 7311 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7312 | # if GTK_CHECK_VERSION(3,0,0) |
| 7313 | { |
| 7314 | cairo_t *cr; |
| 7315 | cairo_surface_t *bg_surf; |
| 7316 | cairo_t *bg_cr; |
| 7317 | cairo_surface_t *sign_surf; |
| 7318 | cairo_t *sign_cr; |
| 7319 | |
| 7320 | cr = cairo_create(gui.surface); |
| 7321 | |
| 7322 | bg_surf = cairo_surface_create_similar(gui.surface, |
| 7323 | cairo_surface_get_content(gui.surface), |
| 7324 | SIGN_WIDTH, SIGN_HEIGHT); |
| 7325 | bg_cr = cairo_create(bg_surf); |
| 7326 | set_cairo_source_rgb_from_pixel(bg_cr, gui.bgcolor->pixel); |
| 7327 | cairo_paint(bg_cr); |
| 7328 | |
| 7329 | sign_surf = cairo_surface_create_similar(gui.surface, |
| 7330 | cairo_surface_get_content(gui.surface), |
| 7331 | SIGN_WIDTH, SIGN_HEIGHT); |
| 7332 | sign_cr = cairo_create(sign_surf); |
| 7333 | gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset); |
| 7334 | cairo_paint(sign_cr); |
| 7335 | |
| 7336 | cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER); |
| 7337 | cairo_set_source_surface(sign_cr, bg_surf, 0, 0); |
| 7338 | cairo_paint(sign_cr); |
| 7339 | |
| 7340 | cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row)); |
| 7341 | cairo_paint(cr); |
| 7342 | |
| 7343 | cairo_destroy(sign_cr); |
| 7344 | cairo_surface_destroy(sign_surf); |
| 7345 | cairo_destroy(bg_cr); |
| 7346 | cairo_surface_destroy(bg_surf); |
| 7347 | cairo_destroy(cr); |
| 7348 | |
| 7349 | if (!gui.by_signal) |
| 7350 | gtk_widget_queue_draw_area(gui.drawarea, |
| 7351 | FILL_X(col), FILL_Y(col), width, height); |
| 7352 | |
| 7353 | } |
| 7354 | # else /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7355 | gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
| 7356 | |
| 7357 | gdk_draw_rectangle(gui.drawarea->window, |
| 7358 | gui.text_gc, |
| 7359 | TRUE, |
| 7360 | FILL_X(col), |
| 7361 | FILL_Y(row), |
| 7362 | SIGN_WIDTH, |
| 7363 | SIGN_HEIGHT); |
| 7364 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7365 | gdk_pixbuf_render_to_drawable_alpha(sign, |
| 7366 | gui.drawarea->window, |
| 7367 | MAX(0, xoffset), |
| 7368 | MAX(0, yoffset), |
| 7369 | FILL_X(col) - MIN(0, xoffset), |
| 7370 | FILL_Y(row) - MIN(0, yoffset), |
| 7371 | MIN(width, SIGN_WIDTH), |
| 7372 | MIN(height, SIGN_HEIGHT), |
| 7373 | GDK_PIXBUF_ALPHA_BILEVEL, |
| 7374 | 127, |
| 7375 | GDK_RGB_DITHER_NORMAL, |
| 7376 | 0, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7377 | # endif /* !GTK_CHECK_VERSION(3,0,0) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7378 | if (need_scale) |
| 7379 | g_object_unref(sign); |
| 7380 | } |
| 7381 | } |
| 7382 | |
| 7383 | void * |
| 7384 | gui_mch_register_sign(char_u *signfile) |
| 7385 | { |
| 7386 | if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use) |
| 7387 | { |
| 7388 | GdkPixbuf *sign; |
| 7389 | GError *error = NULL; |
| 7390 | char_u *message; |
| 7391 | |
| 7392 | sign = gdk_pixbuf_new_from_file((const char *)signfile, &error); |
| 7393 | |
| 7394 | if (error == NULL) |
| 7395 | return sign; |
| 7396 | |
| 7397 | message = (char_u *)error->message; |
| 7398 | |
| 7399 | if (message != NULL && input_conv.vc_type != CONV_NONE) |
| 7400 | message = string_convert(&input_conv, message, NULL); |
| 7401 | |
| 7402 | if (message != NULL) |
| 7403 | { |
| 7404 | /* The error message is already translated and will be more |
| 7405 | * descriptive than anything we could possibly do ourselves. */ |
| 7406 | EMSG2("E255: %s", message); |
| 7407 | |
| 7408 | if (input_conv.vc_type != CONV_NONE) |
| 7409 | vim_free(message); |
| 7410 | } |
| 7411 | g_error_free(error); |
| 7412 | } |
| 7413 | |
| 7414 | return NULL; |
| 7415 | } |
| 7416 | |
| 7417 | void |
| 7418 | gui_mch_destroy_sign(void *sign) |
| 7419 | { |
| 7420 | if (sign != NULL) |
| 7421 | g_object_unref(sign); |
| 7422 | } |
| 7423 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7424 | #endif /* FEAT_SIGN_ICONS */ |