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> |
| 22 | */ |
| 23 | |
| 24 | #include "vim.h" |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 25 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 26 | #ifdef FEAT_GUI_GNOME |
| 27 | /* Gnome redefines _() and N_(). Grrr... */ |
| 28 | # ifdef _ |
| 29 | # undef _ |
| 30 | # endif |
| 31 | # ifdef N_ |
| 32 | # undef N_ |
| 33 | # endif |
| 34 | # ifdef textdomain |
| 35 | # undef textdomain |
| 36 | # endif |
| 37 | # ifdef bindtextdomain |
| 38 | # undef bindtextdomain |
| 39 | # endif |
Bram Moolenaar | a2dd900 | 2007-05-14 17:38:30 +0000 | [diff] [blame] | 40 | # ifdef bind_textdomain_codeset |
| 41 | # undef bind_textdomain_codeset |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 42 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 43 | # if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS) |
| 44 | # define ENABLE_NLS /* so the texts in the dialog boxes are translated */ |
| 45 | # endif |
| 46 | # include <gnome.h> |
| 47 | # include "version.h" |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 48 | /* missing prototype in bonobo-dock-item.h */ |
| 49 | extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 50 | #endif |
| 51 | |
| 52 | #if !defined(FEAT_GUI_GTK) && defined(PROTO) |
| 53 | /* When generating prototypes we don't want syntax errors. */ |
| 54 | # define GdkAtom int |
| 55 | # define GdkEventExpose int |
| 56 | # define GdkEventFocus int |
| 57 | # define GdkEventVisibility int |
| 58 | # define GdkEventProperty int |
| 59 | # define GtkContainer int |
| 60 | # define GtkTargetEntry int |
| 61 | # define GtkType int |
| 62 | # define GtkWidget int |
| 63 | # define gint int |
| 64 | # define gpointer int |
| 65 | # define guint int |
| 66 | # define GdkEventKey int |
| 67 | # define GdkEventSelection int |
| 68 | # define GtkSelectionData int |
| 69 | # define GdkEventMotion int |
| 70 | # define GdkEventButton int |
| 71 | # define GdkDragContext int |
| 72 | # define GdkEventConfigure int |
| 73 | # define GdkEventClient int |
| 74 | #else |
| 75 | # include <gdk/gdkkeysyms.h> |
| 76 | # include <gdk/gdk.h> |
| 77 | # ifdef WIN3264 |
| 78 | # include <gdk/gdkwin32.h> |
| 79 | # else |
| 80 | # include <gdk/gdkx.h> |
| 81 | # endif |
| 82 | |
| 83 | # include <gtk/gtk.h> |
| 84 | # include "gui_gtk_f.h" |
| 85 | #endif |
| 86 | |
| 87 | #ifdef HAVE_X11_SUNKEYSYM_H |
| 88 | # include <X11/Sunkeysym.h> |
| 89 | #endif |
| 90 | |
| 91 | /* |
| 92 | * Easy-to-use macro for multihead support. |
| 93 | */ |
| 94 | #ifdef HAVE_GTK_MULTIHEAD |
| 95 | # define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \ |
| 96 | gtk_widget_get_display(gui.mainwin), atom) |
| 97 | #else |
| 98 | # define GET_X_ATOM(atom) ((Atom)(atom)) |
| 99 | #endif |
| 100 | |
| 101 | /* Selection type distinguishers */ |
| 102 | enum |
| 103 | { |
| 104 | TARGET_TYPE_NONE, |
| 105 | TARGET_UTF8_STRING, |
| 106 | TARGET_STRING, |
| 107 | TARGET_COMPOUND_TEXT, |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 108 | TARGET_HTML, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 109 | TARGET_TEXT, |
| 110 | TARGET_TEXT_URI_LIST, |
| 111 | TARGET_TEXT_PLAIN, |
| 112 | TARGET_VIM, |
| 113 | TARGET_VIMENC |
| 114 | }; |
| 115 | |
| 116 | /* |
| 117 | * Table of selection targets supported by Vim. |
| 118 | * Note: Order matters, preferred types should come first. |
| 119 | */ |
| 120 | static const GtkTargetEntry selection_targets[] = |
| 121 | { |
| 122 | {VIMENC_ATOM_NAME, 0, TARGET_VIMENC}, |
| 123 | {VIM_ATOM_NAME, 0, TARGET_VIM}, |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 124 | {"text/html", 0, TARGET_HTML}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 125 | {"UTF8_STRING", 0, TARGET_UTF8_STRING}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 126 | {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT}, |
| 127 | {"TEXT", 0, TARGET_TEXT}, |
| 128 | {"STRING", 0, TARGET_STRING} |
| 129 | }; |
| 130 | #define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0])) |
| 131 | |
| 132 | #ifdef FEAT_DND |
| 133 | /* |
| 134 | * Table of DnD targets supported by Vim. |
| 135 | * Note: Order matters, preferred types should come first. |
| 136 | */ |
| 137 | static const GtkTargetEntry dnd_targets[] = |
| 138 | { |
| 139 | {"text/uri-list", 0, TARGET_TEXT_URI_LIST}, |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 140 | {"text/html", 0, TARGET_HTML}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 141 | {"UTF8_STRING", 0, TARGET_UTF8_STRING}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 142 | {"STRING", 0, TARGET_STRING}, |
| 143 | {"text/plain", 0, TARGET_TEXT_PLAIN} |
| 144 | }; |
| 145 | # define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0])) |
| 146 | #endif |
| 147 | |
| 148 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 149 | /* |
| 150 | * "Monospace" is a standard font alias that should be present |
| 151 | * on all proper Pango/fontconfig installations. |
| 152 | */ |
| 153 | # define DEFAULT_FONT "Monospace 10" |
| 154 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 155 | #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) |
| 156 | /* |
| 157 | * Atoms used to communicate save-yourself from the X11 session manager. There |
| 158 | * is no need to move them into the GUI struct, since they should be constant. |
| 159 | */ |
| 160 | static GdkAtom wm_protocols_atom = GDK_NONE; |
| 161 | static GdkAtom save_yourself_atom = GDK_NONE; |
| 162 | #endif |
| 163 | |
| 164 | /* |
| 165 | * Atoms used to control/reference X11 selections. |
| 166 | */ |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 167 | static GdkAtom html_atom = GDK_NONE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 168 | static GdkAtom utf8_string_atom = GDK_NONE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 169 | static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 170 | static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 171 | |
| 172 | /* |
| 173 | * Keycodes recognized by vim. |
| 174 | * NOTE: when changing this, the table in gui_x11.c probably needs the same |
| 175 | * change! |
| 176 | */ |
| 177 | static struct special_key |
| 178 | { |
| 179 | guint key_sym; |
| 180 | char_u code0; |
| 181 | char_u code1; |
| 182 | } |
| 183 | const special_keys[] = |
| 184 | { |
| 185 | {GDK_Up, 'k', 'u'}, |
| 186 | {GDK_Down, 'k', 'd'}, |
| 187 | {GDK_Left, 'k', 'l'}, |
| 188 | {GDK_Right, 'k', 'r'}, |
| 189 | {GDK_F1, 'k', '1'}, |
| 190 | {GDK_F2, 'k', '2'}, |
| 191 | {GDK_F3, 'k', '3'}, |
| 192 | {GDK_F4, 'k', '4'}, |
| 193 | {GDK_F5, 'k', '5'}, |
| 194 | {GDK_F6, 'k', '6'}, |
| 195 | {GDK_F7, 'k', '7'}, |
| 196 | {GDK_F8, 'k', '8'}, |
| 197 | {GDK_F9, 'k', '9'}, |
| 198 | {GDK_F10, 'k', ';'}, |
| 199 | {GDK_F11, 'F', '1'}, |
| 200 | {GDK_F12, 'F', '2'}, |
| 201 | {GDK_F13, 'F', '3'}, |
| 202 | {GDK_F14, 'F', '4'}, |
| 203 | {GDK_F15, 'F', '5'}, |
| 204 | {GDK_F16, 'F', '6'}, |
| 205 | {GDK_F17, 'F', '7'}, |
| 206 | {GDK_F18, 'F', '8'}, |
| 207 | {GDK_F19, 'F', '9'}, |
| 208 | {GDK_F20, 'F', 'A'}, |
| 209 | {GDK_F21, 'F', 'B'}, |
| 210 | {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */ |
| 211 | {GDK_F22, 'F', 'C'}, |
| 212 | {GDK_F23, 'F', 'D'}, |
| 213 | {GDK_F24, 'F', 'E'}, |
| 214 | {GDK_F25, 'F', 'F'}, |
| 215 | {GDK_F26, 'F', 'G'}, |
| 216 | {GDK_F27, 'F', 'H'}, |
| 217 | {GDK_F28, 'F', 'I'}, |
| 218 | {GDK_F29, 'F', 'J'}, |
| 219 | {GDK_F30, 'F', 'K'}, |
| 220 | {GDK_F31, 'F', 'L'}, |
| 221 | {GDK_F32, 'F', 'M'}, |
| 222 | {GDK_F33, 'F', 'N'}, |
| 223 | {GDK_F34, 'F', 'O'}, |
| 224 | {GDK_F35, 'F', 'P'}, |
| 225 | #ifdef SunXK_F36 |
| 226 | {SunXK_F36, 'F', 'Q'}, |
| 227 | {SunXK_F37, 'F', 'R'}, |
| 228 | #endif |
| 229 | {GDK_Help, '%', '1'}, |
| 230 | {GDK_Undo, '&', '8'}, |
| 231 | {GDK_BackSpace, 'k', 'b'}, |
| 232 | {GDK_Insert, 'k', 'I'}, |
| 233 | {GDK_Delete, 'k', 'D'}, |
| 234 | {GDK_3270_BackTab, 'k', 'B'}, |
| 235 | {GDK_Clear, 'k', 'C'}, |
| 236 | {GDK_Home, 'k', 'h'}, |
| 237 | {GDK_End, '@', '7'}, |
| 238 | {GDK_Prior, 'k', 'P'}, |
| 239 | {GDK_Next, 'k', 'N'}, |
| 240 | {GDK_Print, '%', '9'}, |
| 241 | /* Keypad keys: */ |
| 242 | {GDK_KP_Left, 'k', 'l'}, |
| 243 | {GDK_KP_Right, 'k', 'r'}, |
| 244 | {GDK_KP_Up, 'k', 'u'}, |
| 245 | {GDK_KP_Down, 'k', 'd'}, |
| 246 | {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS}, |
| 247 | {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL}, |
| 248 | {GDK_KP_Home, 'K', '1'}, |
| 249 | {GDK_KP_End, 'K', '4'}, |
| 250 | {GDK_KP_Prior, 'K', '3'}, /* page up */ |
| 251 | {GDK_KP_Next, 'K', '5'}, /* page down */ |
| 252 | |
| 253 | {GDK_KP_Add, 'K', '6'}, |
| 254 | {GDK_KP_Subtract, 'K', '7'}, |
| 255 | {GDK_KP_Divide, 'K', '8'}, |
| 256 | {GDK_KP_Multiply, 'K', '9'}, |
| 257 | {GDK_KP_Enter, 'K', 'A'}, |
| 258 | {GDK_KP_Decimal, 'K', 'B'}, |
| 259 | |
| 260 | {GDK_KP_0, 'K', 'C'}, |
| 261 | {GDK_KP_1, 'K', 'D'}, |
| 262 | {GDK_KP_2, 'K', 'E'}, |
| 263 | {GDK_KP_3, 'K', 'F'}, |
| 264 | {GDK_KP_4, 'K', 'G'}, |
| 265 | {GDK_KP_5, 'K', 'H'}, |
| 266 | {GDK_KP_6, 'K', 'I'}, |
| 267 | {GDK_KP_7, 'K', 'J'}, |
| 268 | {GDK_KP_8, 'K', 'K'}, |
| 269 | {GDK_KP_9, 'K', 'L'}, |
| 270 | |
| 271 | /* End of list marker: */ |
| 272 | {0, 0, 0} |
| 273 | }; |
| 274 | |
| 275 | /* |
| 276 | * Flags for command line options table below. |
| 277 | */ |
| 278 | #define ARG_FONT 1 |
| 279 | #define ARG_GEOMETRY 2 |
| 280 | #define ARG_REVERSE 3 |
| 281 | #define ARG_NOREVERSE 4 |
| 282 | #define ARG_BACKGROUND 5 |
| 283 | #define ARG_FOREGROUND 6 |
| 284 | #define ARG_ICONIC 7 |
| 285 | #define ARG_ROLE 8 |
| 286 | #define ARG_NETBEANS 9 |
| 287 | #define ARG_XRM 10 /* ignored */ |
| 288 | #define ARG_MENUFONT 11 /* ignored */ |
| 289 | #define ARG_INDEX_MASK 0x00ff |
| 290 | #define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */ |
| 291 | #define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */ |
| 292 | #define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */ |
| 293 | #define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */ |
| 294 | #define ARG_KEEP 0x1000 /* don't remove argument from argv[] */ |
| 295 | |
| 296 | /* |
| 297 | * This table holds all the X GUI command line options allowed. This includes |
| 298 | * the standard ones so that we can skip them when Vim is started without the |
| 299 | * GUI (but the GUI might start up later). |
| 300 | * |
| 301 | * When changing this, also update doc/gui_x11.txt and the usage message!!! |
| 302 | */ |
| 303 | typedef struct |
| 304 | { |
| 305 | const char *name; |
| 306 | unsigned int flags; |
| 307 | } |
| 308 | cmdline_option_T; |
| 309 | |
| 310 | static const cmdline_option_T cmdline_options[] = |
| 311 | { |
| 312 | /* We handle these options ourselves */ |
| 313 | {"-fn", ARG_FONT|ARG_HAS_VALUE}, |
| 314 | {"-font", ARG_FONT|ARG_HAS_VALUE}, |
| 315 | {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE}, |
| 316 | {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE}, |
| 317 | {"-rv", ARG_REVERSE}, |
| 318 | {"-reverse", ARG_REVERSE}, |
| 319 | {"+rv", ARG_NOREVERSE}, |
| 320 | {"+reverse", ARG_NOREVERSE}, |
| 321 | {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE}, |
| 322 | {"-background", ARG_BACKGROUND|ARG_HAS_VALUE}, |
| 323 | {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE}, |
| 324 | {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE}, |
| 325 | {"-iconic", ARG_ICONIC}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 326 | {"--role", ARG_ROLE|ARG_HAS_VALUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 327 | #ifdef FEAT_NETBEANS_INTG |
| 328 | {"-nb", ARG_NETBEANS}, /* non-standard value format */ |
| 329 | {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */ |
| 330 | {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */ |
| 331 | {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */ |
| 332 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 333 | /* Arguments handled by GTK (and GNOME) internally. */ |
| 334 | {"--g-fatal-warnings", ARG_FOR_GTK}, |
| 335 | {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 336 | {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 337 | {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 338 | {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 339 | {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 340 | {"--sync", ARG_FOR_GTK}, |
| 341 | {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, |
| 342 | {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, |
| 343 | {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 344 | {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 345 | {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 346 | {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 347 | #ifdef FEAT_GUI_GNOME |
| 348 | {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 349 | {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 350 | {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 351 | {"--sm-disable", ARG_FOR_GTK}, |
| 352 | {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 353 | {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 354 | {"--oaf-private", ARG_FOR_GTK}, |
| 355 | {"--enable-sound", ARG_FOR_GTK}, |
| 356 | {"--disable-sound", ARG_FOR_GTK}, |
| 357 | {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 358 | {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI}, |
| 359 | {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP}, |
| 360 | {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI}, |
| 361 | # if 0 /* conflicts with Vim's own --version argument */ |
| 362 | {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI}, |
| 363 | # endif |
| 364 | {"--disable-crash-dialog", ARG_FOR_GTK}, |
| 365 | #endif |
| 366 | {NULL, 0} |
| 367 | }; |
| 368 | |
| 369 | static int gui_argc = 0; |
| 370 | static char **gui_argv = NULL; |
| 371 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 372 | static const char *role_argument = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 373 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 374 | static const char *restart_command = NULL; |
Bram Moolenaar | 9085f80 | 2009-06-03 14:20:21 +0000 | [diff] [blame] | 375 | static char *abs_restart_command = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 376 | #endif |
| 377 | static int found_iconic_arg = FALSE; |
| 378 | |
| 379 | #ifdef FEAT_GUI_GNOME |
| 380 | /* |
| 381 | * Can't use Gnome if --socketid given |
| 382 | */ |
| 383 | static int using_gnome = 0; |
| 384 | #else |
| 385 | # define using_gnome 0 |
| 386 | #endif |
| 387 | |
| 388 | /* |
| 389 | * Parse the GUI related command-line arguments. Any arguments used are |
| 390 | * deleted from argv, and *argc is decremented accordingly. This is called |
| 391 | * when vim is started, whether or not the GUI has been started. |
| 392 | */ |
| 393 | void |
| 394 | gui_mch_prepare(int *argc, char **argv) |
| 395 | { |
| 396 | const cmdline_option_T *option; |
| 397 | int i = 0; |
| 398 | int len = 0; |
| 399 | |
| 400 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 401 | /* |
| 402 | * Determine the command used to invoke Vim, to be passed as restart |
| 403 | * command to the session manager. If argv[0] contains any directory |
| 404 | * components try building an absolute path, otherwise leave it as is. |
| 405 | */ |
| 406 | restart_command = argv[0]; |
| 407 | |
| 408 | if (strchr(argv[0], G_DIR_SEPARATOR) != NULL) |
| 409 | { |
| 410 | char_u buf[MAXPATHL]; |
| 411 | |
| 412 | 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] | 413 | { |
| 414 | abs_restart_command = (char *)vim_strsave(buf); |
| 415 | restart_command = abs_restart_command; |
| 416 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 417 | } |
| 418 | #endif |
| 419 | |
| 420 | /* |
| 421 | * Move all the entries in argv which are relevant to GTK+ and GNOME |
| 422 | * into gui_argv. Freed later in gui_mch_init(). |
| 423 | */ |
| 424 | gui_argc = 0; |
| 425 | gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *))); |
| 426 | |
| 427 | g_return_if_fail(gui_argv != NULL); |
| 428 | |
| 429 | gui_argv[gui_argc++] = argv[i++]; |
| 430 | |
| 431 | while (i < *argc) |
| 432 | { |
| 433 | /* Don't waste CPU cycles on non-option arguments. */ |
| 434 | if (argv[i][0] != '-' && argv[i][0] != '+') |
| 435 | { |
| 436 | ++i; |
| 437 | continue; |
| 438 | } |
| 439 | |
| 440 | /* Look for argv[i] in cmdline_options[] table. */ |
| 441 | for (option = &cmdline_options[0]; option->name != NULL; ++option) |
| 442 | { |
| 443 | len = strlen(option->name); |
| 444 | |
| 445 | if (strncmp(argv[i], option->name, len) == 0) |
| 446 | { |
| 447 | if (argv[i][len] == '\0') |
| 448 | break; |
| 449 | /* allow --foo=bar style */ |
| 450 | if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE)) |
| 451 | break; |
| 452 | #ifdef FEAT_NETBEANS_INTG |
| 453 | /* darn, -nb has non-standard syntax */ |
| 454 | if (vim_strchr((char_u *)":=", argv[i][len]) != NULL |
| 455 | && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS) |
| 456 | break; |
| 457 | #endif |
| 458 | } |
| 459 | else if ((option->flags & ARG_COMPAT_LONG) |
| 460 | && strcmp(argv[i], option->name + 1) == 0) |
| 461 | { |
| 462 | /* Replace the standard X arguments "-name" and "-display" |
| 463 | * with their GNU-style long option counterparts. */ |
| 464 | argv[i] = (char *)option->name; |
| 465 | break; |
| 466 | } |
| 467 | } |
| 468 | if (option->name == NULL) /* no match */ |
| 469 | { |
| 470 | ++i; |
| 471 | continue; |
| 472 | } |
| 473 | |
| 474 | if (option->flags & ARG_FOR_GTK) |
| 475 | { |
| 476 | /* Move the argument into gui_argv, which |
| 477 | * will later be passed to gtk_init_check() */ |
| 478 | gui_argv[gui_argc++] = argv[i]; |
| 479 | } |
| 480 | else |
| 481 | { |
| 482 | char *value = NULL; |
| 483 | |
| 484 | /* Extract the option's value if there is one. |
| 485 | * Accept both "--foo bar" and "--foo=bar" style. */ |
| 486 | if (option->flags & ARG_HAS_VALUE) |
| 487 | { |
| 488 | if (argv[i][len] == '=') |
| 489 | value = &argv[i][len + 1]; |
| 490 | else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0) |
| 491 | value = argv[i + 1]; |
| 492 | } |
| 493 | |
| 494 | /* Check for options handled by Vim itself */ |
| 495 | switch (option->flags & ARG_INDEX_MASK) |
| 496 | { |
| 497 | case ARG_REVERSE: |
| 498 | found_reverse_arg = TRUE; |
| 499 | break; |
| 500 | case ARG_NOREVERSE: |
| 501 | found_reverse_arg = FALSE; |
| 502 | break; |
| 503 | case ARG_FONT: |
| 504 | font_argument = value; |
| 505 | break; |
| 506 | case ARG_GEOMETRY: |
| 507 | if (value != NULL) |
| 508 | gui.geom = vim_strsave((char_u *)value); |
| 509 | break; |
| 510 | case ARG_BACKGROUND: |
| 511 | background_argument = value; |
| 512 | break; |
| 513 | case ARG_FOREGROUND: |
| 514 | foreground_argument = value; |
| 515 | break; |
| 516 | case ARG_ICONIC: |
| 517 | found_iconic_arg = TRUE; |
| 518 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 519 | case ARG_ROLE: |
| 520 | role_argument = value; /* used later in gui_mch_open() */ |
| 521 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 522 | #ifdef FEAT_NETBEANS_INTG |
| 523 | case ARG_NETBEANS: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 524 | gui.dofork = FALSE; /* don't fork() when starting GUI */ |
| 525 | netbeansArg = argv[i]; |
| 526 | break; |
| 527 | #endif |
| 528 | default: |
| 529 | break; |
| 530 | } |
| 531 | } |
| 532 | |
| 533 | /* These arguments make gnome_program_init() print a message and exit. |
| 534 | * Must start the GUI for this, otherwise ":gui" will exit later! */ |
| 535 | if (option->flags & ARG_NEEDS_GUI) |
| 536 | gui.starting = TRUE; |
| 537 | |
| 538 | if (option->flags & ARG_KEEP) |
| 539 | ++i; |
| 540 | else |
| 541 | { |
| 542 | /* Remove the flag from the argument vector. */ |
| 543 | if (--*argc > i) |
| 544 | { |
| 545 | int n_strip = 1; |
| 546 | |
| 547 | /* Move the argument's value as well, if there is one. */ |
| 548 | if ((option->flags & ARG_HAS_VALUE) |
| 549 | && argv[i][len] != '=' |
| 550 | && strcmp(argv[i + 1], "--") != 0) |
| 551 | { |
| 552 | ++n_strip; |
| 553 | --*argc; |
| 554 | if (option->flags & ARG_FOR_GTK) |
| 555 | gui_argv[gui_argc++] = argv[i + 1]; |
| 556 | } |
| 557 | |
| 558 | if (*argc > i) |
| 559 | mch_memmove(&argv[i], &argv[i + n_strip], |
| 560 | (*argc - i) * sizeof(char *)); |
| 561 | } |
| 562 | argv[*argc] = NULL; |
| 563 | } |
| 564 | } |
| 565 | |
| 566 | gui_argv[gui_argc] = NULL; |
| 567 | } |
| 568 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 569 | #if defined(EXITFREE) || defined(PROTO) |
| 570 | void |
| 571 | gui_mch_free_all() |
| 572 | { |
| 573 | vim_free(gui_argv); |
Bram Moolenaar | 9085f80 | 2009-06-03 14:20:21 +0000 | [diff] [blame] | 574 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 575 | vim_free(abs_restart_command); |
| 576 | #endif |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 577 | } |
| 578 | #endif |
| 579 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 580 | /* |
| 581 | * This should be maybe completely removed. |
| 582 | * Doesn't seem possible, since check_copy_area() relies on |
| 583 | * this information. --danielk |
| 584 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 585 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 586 | visibility_event(GtkWidget *widget UNUSED, |
| 587 | GdkEventVisibility *event, |
| 588 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 589 | { |
| 590 | gui.visibility = event->state; |
| 591 | /* |
| 592 | * When we do an gdk_window_copy_area(), and the window is partially |
| 593 | * obscured, we want to receive an event to tell us whether it worked |
| 594 | * or not. |
| 595 | */ |
| 596 | if (gui.text_gc != NULL) |
| 597 | gdk_gc_set_exposures(gui.text_gc, |
| 598 | gui.visibility != GDK_VISIBILITY_UNOBSCURED); |
| 599 | return FALSE; |
| 600 | } |
| 601 | |
| 602 | /* |
| 603 | * Redraw the corresponding portions of the screen. |
| 604 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 605 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 606 | expose_event(GtkWidget *widget UNUSED, |
| 607 | GdkEventExpose *event, |
| 608 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 609 | { |
| 610 | /* Skip this when the GUI isn't set up yet, will redraw later. */ |
| 611 | if (gui.starting) |
| 612 | return FALSE; |
| 613 | |
| 614 | out_flush(); /* make sure all output has been processed */ |
| 615 | gui_redraw(event->area.x, event->area.y, |
| 616 | event->area.width, event->area.height); |
| 617 | |
| 618 | /* Clear the border areas if needed */ |
| 619 | if (event->area.x < FILL_X(0)) |
| 620 | gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0); |
| 621 | if (event->area.y < FILL_Y(0)) |
| 622 | gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0)); |
| 623 | if (event->area.x > FILL_X(Columns)) |
| 624 | gdk_window_clear_area(gui.drawarea->window, |
| 625 | FILL_X((int)Columns), 0, 0, 0); |
| 626 | if (event->area.y > FILL_Y(Rows)) |
| 627 | gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0); |
| 628 | |
| 629 | return FALSE; |
| 630 | } |
| 631 | |
| 632 | #ifdef FEAT_CLIENTSERVER |
| 633 | /* |
| 634 | * Handle changes to the "Comm" property |
| 635 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 636 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 637 | property_event(GtkWidget *widget, |
| 638 | GdkEventProperty *event, |
| 639 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 640 | { |
| 641 | if (event->type == GDK_PROPERTY_NOTIFY |
| 642 | && event->state == (int)GDK_PROPERTY_NEW_VALUE |
| 643 | && GDK_WINDOW_XWINDOW(event->window) == commWindow |
| 644 | && GET_X_ATOM(event->atom) == commProperty) |
| 645 | { |
| 646 | XEvent xev; |
| 647 | |
| 648 | /* Translate to XLib */ |
| 649 | xev.xproperty.type = PropertyNotify; |
| 650 | xev.xproperty.atom = commProperty; |
| 651 | xev.xproperty.window = commWindow; |
| 652 | xev.xproperty.state = PropertyNewValue; |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 653 | serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 654 | } |
| 655 | return FALSE; |
| 656 | } |
| 657 | #endif |
| 658 | |
| 659 | |
| 660 | /**************************************************************************** |
| 661 | * Focus handlers: |
| 662 | */ |
| 663 | |
| 664 | |
| 665 | /* |
| 666 | * This is a simple state machine: |
| 667 | * BLINK_NONE not blinking at all |
| 668 | * BLINK_OFF blinking, cursor is not shown |
| 669 | * BLINK_ON blinking, cursor is shown |
| 670 | */ |
| 671 | |
| 672 | #define BLINK_NONE 0 |
| 673 | #define BLINK_OFF 1 |
| 674 | #define BLINK_ON 2 |
| 675 | |
| 676 | static int blink_state = BLINK_NONE; |
| 677 | static long_u blink_waittime = 700; |
| 678 | static long_u blink_ontime = 400; |
| 679 | static long_u blink_offtime = 250; |
| 680 | static guint blink_timer = 0; |
| 681 | |
| 682 | void |
| 683 | gui_mch_set_blinking(long waittime, long on, long off) |
| 684 | { |
| 685 | blink_waittime = waittime; |
| 686 | blink_ontime = on; |
| 687 | blink_offtime = off; |
| 688 | } |
| 689 | |
| 690 | /* |
| 691 | * Stop the cursor blinking. Show the cursor if it wasn't shown. |
| 692 | */ |
| 693 | void |
| 694 | gui_mch_stop_blink(void) |
| 695 | { |
| 696 | if (blink_timer) |
| 697 | { |
| 698 | gtk_timeout_remove(blink_timer); |
| 699 | blink_timer = 0; |
| 700 | } |
| 701 | if (blink_state == BLINK_OFF) |
| 702 | gui_update_cursor(TRUE, FALSE); |
| 703 | blink_state = BLINK_NONE; |
| 704 | } |
| 705 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 706 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 707 | blink_cb(gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 708 | { |
| 709 | if (blink_state == BLINK_ON) |
| 710 | { |
| 711 | gui_undraw_cursor(); |
| 712 | blink_state = BLINK_OFF; |
| 713 | blink_timer = gtk_timeout_add((guint32)blink_offtime, |
| 714 | (GtkFunction) blink_cb, NULL); |
| 715 | } |
| 716 | else |
| 717 | { |
| 718 | gui_update_cursor(TRUE, FALSE); |
| 719 | blink_state = BLINK_ON; |
| 720 | blink_timer = gtk_timeout_add((guint32)blink_ontime, |
| 721 | (GtkFunction) blink_cb, NULL); |
| 722 | } |
| 723 | |
| 724 | return FALSE; /* don't happen again */ |
| 725 | } |
| 726 | |
| 727 | /* |
| 728 | * Start the cursor blinking. If it was already blinking, this restarts the |
| 729 | * waiting time and shows the cursor. |
| 730 | */ |
| 731 | void |
| 732 | gui_mch_start_blink(void) |
| 733 | { |
| 734 | if (blink_timer) |
Bram Moolenaar | 7bcdb7d | 2014-04-06 21:08:45 +0200 | [diff] [blame] | 735 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 736 | gtk_timeout_remove(blink_timer); |
Bram Moolenaar | 7bcdb7d | 2014-04-06 21:08:45 +0200 | [diff] [blame] | 737 | blink_timer = 0; |
| 738 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 739 | /* Only switch blinking on if none of the times is zero */ |
| 740 | if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus) |
| 741 | { |
| 742 | blink_timer = gtk_timeout_add((guint32)blink_waittime, |
| 743 | (GtkFunction) blink_cb, NULL); |
| 744 | blink_state = BLINK_ON; |
| 745 | gui_update_cursor(TRUE, FALSE); |
| 746 | } |
| 747 | } |
| 748 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 749 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 750 | enter_notify_event(GtkWidget *widget UNUSED, |
| 751 | GdkEventCrossing *event UNUSED, |
| 752 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 753 | { |
| 754 | if (blink_state == BLINK_NONE) |
| 755 | gui_mch_start_blink(); |
| 756 | |
| 757 | /* make sure keyboard input goes there */ |
| 758 | if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea)) |
| 759 | gtk_widget_grab_focus(gui.drawarea); |
| 760 | |
| 761 | return FALSE; |
| 762 | } |
| 763 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 764 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 765 | leave_notify_event(GtkWidget *widget UNUSED, |
| 766 | GdkEventCrossing *event UNUSED, |
| 767 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 768 | { |
| 769 | if (blink_state != BLINK_NONE) |
| 770 | gui_mch_stop_blink(); |
| 771 | |
| 772 | return FALSE; |
| 773 | } |
| 774 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 775 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 776 | focus_in_event(GtkWidget *widget, |
| 777 | GdkEventFocus *event UNUSED, |
| 778 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 779 | { |
| 780 | gui_focus_change(TRUE); |
| 781 | |
| 782 | if (blink_state == BLINK_NONE) |
| 783 | gui_mch_start_blink(); |
| 784 | |
Bram Moolenaar | 9c8791f | 2007-09-05 19:47:23 +0000 | [diff] [blame] | 785 | /* make sure keyboard input goes to the draw area (if this is focus for a |
| 786 | * window) */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 787 | if (widget != gui.drawarea) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 788 | gtk_widget_grab_focus(gui.drawarea); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 789 | |
| 790 | return TRUE; |
| 791 | } |
| 792 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 793 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 794 | focus_out_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 795 | GdkEventFocus *event UNUSED, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 796 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 797 | { |
| 798 | gui_focus_change(FALSE); |
| 799 | |
| 800 | if (blink_state != BLINK_NONE) |
| 801 | gui_mch_stop_blink(); |
| 802 | |
| 803 | return TRUE; |
| 804 | } |
| 805 | |
| 806 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 807 | /* |
| 808 | * Translate a GDK key value to UTF-8 independently of the current locale. |
| 809 | * The output is written to string, which must have room for at least 6 bytes |
| 810 | * plus the NUL terminator. Returns the length in bytes. |
| 811 | * |
| 812 | * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use |
| 813 | * of GdkEventKey::string instead. But event->string is evil; see here why: |
| 814 | * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey |
| 815 | */ |
| 816 | static int |
| 817 | keyval_to_string(unsigned int keyval, unsigned int state, char_u *string) |
| 818 | { |
| 819 | int len; |
| 820 | guint32 uc; |
| 821 | |
| 822 | uc = gdk_keyval_to_unicode(keyval); |
| 823 | if (uc != 0) |
| 824 | { |
| 825 | /* Check for CTRL-foo */ |
| 826 | if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80) |
| 827 | { |
| 828 | /* These mappings look arbitrary at the first glance, but in fact |
| 829 | * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my |
| 830 | * machine. The only difference is BS vs. DEL for CTRL-8 (makes |
| 831 | * more sense and is consistent with usual terminal behaviour). */ |
| 832 | if (uc >= '@') |
| 833 | string[0] = uc & 0x1F; |
| 834 | else if (uc == '2') |
| 835 | string[0] = NUL; |
| 836 | else if (uc >= '3' && uc <= '7') |
| 837 | string[0] = uc ^ 0x28; |
| 838 | else if (uc == '8') |
| 839 | string[0] = BS; |
| 840 | else if (uc == '?') |
| 841 | string[0] = DEL; |
| 842 | else |
| 843 | string[0] = uc; |
| 844 | len = 1; |
| 845 | } |
| 846 | else |
| 847 | { |
| 848 | /* Translate a normal key to UTF-8. This doesn't work for dead |
| 849 | * keys of course, you _have_ to use an input method for that. */ |
| 850 | len = utf_char2bytes((int)uc, string); |
| 851 | } |
| 852 | } |
| 853 | else |
| 854 | { |
| 855 | /* Translate keys which are represented by ASCII control codes in Vim. |
| 856 | * There are only a few of those; most control keys are translated to |
| 857 | * special terminal-like control sequences. */ |
| 858 | len = 1; |
| 859 | switch (keyval) |
| 860 | { |
| 861 | case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab: |
| 862 | string[0] = TAB; |
| 863 | break; |
| 864 | case GDK_Linefeed: |
| 865 | string[0] = NL; |
| 866 | break; |
| 867 | case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter: |
| 868 | string[0] = CAR; |
| 869 | break; |
| 870 | case GDK_Escape: |
| 871 | string[0] = ESC; |
| 872 | break; |
| 873 | default: |
| 874 | len = 0; |
| 875 | break; |
| 876 | } |
| 877 | } |
| 878 | string[len] = NUL; |
| 879 | |
| 880 | return len; |
| 881 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 882 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 883 | static int |
| 884 | modifiers_gdk2vim(guint state) |
| 885 | { |
| 886 | int modifiers = 0; |
| 887 | |
| 888 | if (state & GDK_SHIFT_MASK) |
| 889 | modifiers |= MOD_MASK_SHIFT; |
| 890 | if (state & GDK_CONTROL_MASK) |
| 891 | modifiers |= MOD_MASK_CTRL; |
| 892 | if (state & GDK_MOD1_MASK) |
| 893 | modifiers |= MOD_MASK_ALT; |
Bram Moolenaar | 580061a | 2010-08-13 13:57:13 +0200 | [diff] [blame] | 894 | #if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 895 | if (state & GDK_SUPER_MASK) |
| 896 | modifiers |= MOD_MASK_META; |
| 897 | #endif |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 898 | if (state & GDK_MOD4_MASK) |
| 899 | modifiers |= MOD_MASK_META; |
| 900 | |
| 901 | return modifiers; |
| 902 | } |
| 903 | |
| 904 | static int |
| 905 | modifiers_gdk2mouse(guint state) |
| 906 | { |
| 907 | int modifiers = 0; |
| 908 | |
| 909 | if (state & GDK_SHIFT_MASK) |
| 910 | modifiers |= MOUSE_SHIFT; |
| 911 | if (state & GDK_CONTROL_MASK) |
| 912 | modifiers |= MOUSE_CTRL; |
| 913 | if (state & GDK_MOD1_MASK) |
| 914 | modifiers |= MOUSE_ALT; |
| 915 | |
| 916 | return modifiers; |
| 917 | } |
| 918 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 919 | /* |
| 920 | * Main keyboard handler: |
| 921 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 922 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 923 | key_press_event(GtkWidget *widget UNUSED, |
| 924 | GdkEventKey *event, |
| 925 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 926 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 927 | /* 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] | 928 | * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */ |
| 929 | char_u string[32], string2[32]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 930 | guint key_sym; |
| 931 | int len; |
| 932 | int i; |
| 933 | int modifiers; |
| 934 | int key; |
| 935 | guint state; |
| 936 | char_u *s, *d; |
| 937 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 938 | gui.event_time = event->time; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 939 | key_sym = event->keyval; |
| 940 | state = event->state; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 941 | |
| 942 | #ifdef FEAT_XIM |
| 943 | if (xim_queue_key_press_event(event, TRUE)) |
| 944 | return TRUE; |
| 945 | #endif |
| 946 | |
| 947 | #ifdef FEAT_HANGULIN |
| 948 | if (key_sym == GDK_space && (state & GDK_SHIFT_MASK)) |
| 949 | { |
| 950 | hangul_input_state_toggle(); |
| 951 | return TRUE; |
| 952 | } |
| 953 | #endif |
| 954 | |
| 955 | #ifdef SunXK_F36 |
| 956 | /* |
| 957 | * These keys have bogus lookup strings, and trapping them here is |
| 958 | * easier than trying to XRebindKeysym() on them with every possible |
| 959 | * combination of modifiers. |
| 960 | */ |
| 961 | if (key_sym == SunXK_F36 || key_sym == SunXK_F37) |
| 962 | len = 0; |
| 963 | else |
| 964 | #endif |
| 965 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 966 | len = keyval_to_string(key_sym, state, string2); |
| 967 | |
| 968 | /* Careful: convert_input() doesn't handle the NUL character. |
| 969 | * No need to convert pure ASCII anyway, thus the len > 1 check. */ |
| 970 | if (len > 1 && input_conv.vc_type != CONV_NONE) |
| 971 | len = convert_input(string2, len, sizeof(string2)); |
| 972 | |
| 973 | s = string2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 974 | d = string; |
| 975 | for (i = 0; i < len; ++i) |
| 976 | { |
| 977 | *d++ = s[i]; |
| 978 | if (d[-1] == CSI && d + 2 < string + sizeof(string)) |
| 979 | { |
| 980 | /* Turn CSI into K_CSI. */ |
| 981 | *d++ = KS_EXTRA; |
| 982 | *d++ = (int)KE_CSI; |
| 983 | } |
| 984 | } |
| 985 | len = d - string; |
| 986 | } |
| 987 | |
| 988 | /* Shift-Tab results in Left_Tab, but we want <S-Tab> */ |
| 989 | if (key_sym == GDK_ISO_Left_Tab) |
| 990 | { |
| 991 | key_sym = GDK_Tab; |
| 992 | state |= GDK_SHIFT_MASK; |
| 993 | } |
| 994 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 995 | #ifdef FEAT_MENU |
| 996 | /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key |
| 997 | * is a menu shortcut, we ignore everything with the ALT modifier. */ |
| 998 | if ((state & GDK_MOD1_MASK) |
| 999 | && gui.menu_is_active |
| 1000 | && (*p_wak == 'y' |
| 1001 | || (*p_wak == 'm' |
| 1002 | && len == 1 |
| 1003 | && gui_is_menu_shortcut(string[0])))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1004 | /* For GTK2 we return false to signify that we haven't handled the |
| 1005 | * keypress, so that gtk will handle the mnemonic or accelerator. */ |
| 1006 | return FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1007 | #endif |
| 1008 | |
| 1009 | /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character |
| 1010 | * that already has the 8th bit set. |
| 1011 | * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT. |
| 1012 | * Don't do this for double-byte encodings, it turns the char into a lead |
| 1013 | * byte. */ |
| 1014 | if (len == 1 |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1015 | && ((state & GDK_MOD1_MASK) |
Bram Moolenaar | 35f330c | 2010-08-15 13:53:58 +0200 | [diff] [blame] | 1016 | #if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1017 | || (state & GDK_SUPER_MASK) |
| 1018 | #endif |
| 1019 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1020 | && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete) |
| 1021 | && (string[0] & 0x80) == 0 |
| 1022 | && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1023 | && !enc_dbcs |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1024 | ) |
| 1025 | { |
| 1026 | string[0] |= 0x80; |
| 1027 | state &= ~GDK_MOD1_MASK; /* don't use it again */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1028 | if (enc_utf8) /* convert to utf-8 */ |
| 1029 | { |
| 1030 | string[1] = string[0] & 0xbf; |
| 1031 | string[0] = ((unsigned)string[0] >> 6) + 0xc0; |
| 1032 | if (string[1] == CSI) |
| 1033 | { |
| 1034 | string[2] = KS_EXTRA; |
| 1035 | string[3] = (int)KE_CSI; |
| 1036 | len = 4; |
| 1037 | } |
| 1038 | else |
| 1039 | len = 2; |
| 1040 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1041 | } |
| 1042 | |
| 1043 | /* Check for special keys. Also do this when len == 1 (key has an ASCII |
| 1044 | * value) to detect backspace, delete and keypad keys. */ |
| 1045 | if (len == 0 || len == 1) |
| 1046 | { |
| 1047 | for (i = 0; special_keys[i].key_sym != 0; i++) |
| 1048 | { |
| 1049 | if (special_keys[i].key_sym == key_sym) |
| 1050 | { |
| 1051 | string[0] = CSI; |
| 1052 | string[1] = special_keys[i].code0; |
| 1053 | string[2] = special_keys[i].code1; |
| 1054 | len = -3; |
| 1055 | break; |
| 1056 | } |
| 1057 | } |
| 1058 | } |
| 1059 | |
| 1060 | if (len == 0) /* Unrecognized key */ |
| 1061 | return TRUE; |
| 1062 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1063 | /* Special keys (and a few others) may have modifiers. Also when using a |
| 1064 | * double-byte encoding (can't set the 8th bit). */ |
| 1065 | if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab |
| 1066 | || key_sym == GDK_Return || key_sym == GDK_Linefeed |
| 1067 | || key_sym == GDK_Escape || key_sym == GDK_KP_Tab |
| 1068 | || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1069 | || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK) |
Bram Moolenaar | 35f330c | 2010-08-15 13:53:58 +0200 | [diff] [blame] | 1070 | #if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1071 | || (state & GDK_SUPER_MASK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1072 | #endif |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 1073 | ))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1074 | { |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1075 | modifiers = modifiers_gdk2vim(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1076 | |
| 1077 | /* |
| 1078 | * For some keys a shift modifier is translated into another key |
| 1079 | * code. |
| 1080 | */ |
| 1081 | if (len == -3) |
| 1082 | key = TO_SPECIAL(string[1], string[2]); |
| 1083 | else |
| 1084 | key = string[0]; |
| 1085 | |
| 1086 | key = simplify_key(key, &modifiers); |
| 1087 | if (key == CSI) |
| 1088 | key = K_CSI; |
| 1089 | if (IS_SPECIAL(key)) |
| 1090 | { |
| 1091 | string[0] = CSI; |
| 1092 | string[1] = K_SECOND(key); |
| 1093 | string[2] = K_THIRD(key); |
| 1094 | len = 3; |
| 1095 | } |
| 1096 | else |
| 1097 | { |
| 1098 | string[0] = key; |
| 1099 | len = 1; |
| 1100 | } |
| 1101 | |
| 1102 | if (modifiers != 0) |
| 1103 | { |
| 1104 | string2[0] = CSI; |
| 1105 | string2[1] = KS_MODIFIER; |
| 1106 | string2[2] = modifiers; |
| 1107 | add_to_input_buf(string2, 3); |
| 1108 | } |
| 1109 | } |
| 1110 | |
| 1111 | if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts) |
| 1112 | || (string[0] == intr_char && intr_char != Ctrl_C))) |
| 1113 | { |
| 1114 | trash_input_buf(); |
| 1115 | got_int = TRUE; |
| 1116 | } |
| 1117 | |
| 1118 | add_to_input_buf(string, len); |
| 1119 | |
| 1120 | /* blank out the pointer if necessary */ |
| 1121 | if (p_mh) |
| 1122 | gui_mch_mousehide(TRUE); |
| 1123 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1124 | return TRUE; |
| 1125 | } |
| 1126 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 1127 | #if defined(FEAT_XIM) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1128 | static gboolean |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1129 | key_release_event(GtkWidget *widget UNUSED, |
| 1130 | GdkEventKey *event, |
| 1131 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1132 | { |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1133 | gui.event_time = event->time; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1134 | /* |
| 1135 | * GTK+ 2 input methods may do fancy stuff on key release events too. |
| 1136 | * With the default IM for instance, you can enter any UCS code point |
| 1137 | * by holding down CTRL-SHIFT and typing hexadecimal digits. |
| 1138 | */ |
| 1139 | return xim_queue_key_press_event(event, FALSE); |
| 1140 | } |
| 1141 | #endif |
| 1142 | |
| 1143 | |
| 1144 | /**************************************************************************** |
| 1145 | * Selection handlers: |
| 1146 | */ |
| 1147 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1148 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1149 | selection_clear_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1150 | GdkEventSelection *event, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1151 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1152 | { |
| 1153 | if (event->selection == clip_plus.gtk_sel_atom) |
| 1154 | clip_lose_selection(&clip_plus); |
| 1155 | else |
| 1156 | clip_lose_selection(&clip_star); |
| 1157 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1158 | return TRUE; |
| 1159 | } |
| 1160 | |
| 1161 | #define RS_NONE 0 /* selection_received_cb() not called yet */ |
| 1162 | #define RS_OK 1 /* selection_received_cb() called and OK */ |
| 1163 | #define RS_FAIL 2 /* selection_received_cb() called and failed */ |
| 1164 | static int received_selection = RS_NONE; |
| 1165 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1166 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1167 | selection_received_cb(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1168 | GtkSelectionData *data, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1169 | guint time_ UNUSED, |
| 1170 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1171 | { |
| 1172 | VimClipboard *cbd; |
| 1173 | char_u *text; |
| 1174 | char_u *tmpbuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1175 | guchar *tmpbuf_utf8 = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1176 | int len; |
Bram Moolenaar | d44347f | 2011-06-19 01:14:29 +0200 | [diff] [blame] | 1177 | int motion_type = MAUTO; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1178 | |
| 1179 | if (data->selection == clip_plus.gtk_sel_atom) |
| 1180 | cbd = &clip_plus; |
| 1181 | else |
| 1182 | cbd = &clip_star; |
| 1183 | |
| 1184 | text = (char_u *)data->data; |
| 1185 | len = data->length; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1186 | |
| 1187 | if (text == NULL || len <= 0) |
| 1188 | { |
| 1189 | received_selection = RS_FAIL; |
| 1190 | /* clip_free_selection(cbd); ??? */ |
| 1191 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1192 | return; |
| 1193 | } |
| 1194 | |
| 1195 | if (data->type == vim_atom) |
| 1196 | { |
| 1197 | motion_type = *text++; |
| 1198 | --len; |
| 1199 | } |
| 1200 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1201 | else if (data->type == vimenc_atom) |
| 1202 | { |
| 1203 | char_u *enc; |
| 1204 | vimconv_T conv; |
| 1205 | |
| 1206 | motion_type = *text++; |
| 1207 | --len; |
| 1208 | |
| 1209 | enc = text; |
| 1210 | text += STRLEN(text) + 1; |
| 1211 | len -= text - enc; |
| 1212 | |
| 1213 | /* If the encoding of the text is different from 'encoding', attempt |
| 1214 | * converting it. */ |
| 1215 | conv.vc_type = CONV_NONE; |
| 1216 | convert_setup(&conv, enc, p_enc); |
| 1217 | if (conv.vc_type != CONV_NONE) |
| 1218 | { |
| 1219 | tmpbuf = string_convert(&conv, text, &len); |
| 1220 | if (tmpbuf != NULL) |
| 1221 | text = tmpbuf; |
| 1222 | convert_setup(&conv, NULL, NULL); |
| 1223 | } |
| 1224 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1225 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1226 | /* gtk_selection_data_get_text() handles all the nasty details |
| 1227 | * and targets and encodings etc. This rocks so hard. */ |
| 1228 | else |
| 1229 | { |
| 1230 | tmpbuf_utf8 = gtk_selection_data_get_text(data); |
| 1231 | if (tmpbuf_utf8 != NULL) |
| 1232 | { |
| 1233 | len = STRLEN(tmpbuf_utf8); |
| 1234 | if (input_conv.vc_type != CONV_NONE) |
| 1235 | { |
| 1236 | tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len); |
| 1237 | if (tmpbuf != NULL) |
| 1238 | text = tmpbuf; |
| 1239 | } |
| 1240 | else |
| 1241 | text = tmpbuf_utf8; |
| 1242 | } |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1243 | else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe) |
| 1244 | { |
| 1245 | vimconv_T conv; |
| 1246 | |
| 1247 | /* UTF-16, we get this for HTML */ |
| 1248 | conv.vc_type = CONV_NONE; |
| 1249 | convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE); |
| 1250 | |
| 1251 | if (conv.vc_type != CONV_NONE) |
| 1252 | { |
| 1253 | text += 2; |
| 1254 | len -= 2; |
| 1255 | tmpbuf = string_convert(&conv, text, &len); |
| 1256 | convert_setup(&conv, NULL, NULL); |
| 1257 | } |
| 1258 | if (tmpbuf != NULL) |
| 1259 | text = tmpbuf; |
| 1260 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1261 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1262 | |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 1263 | /* Chop off any trailing NUL bytes. OpenOffice sends these. */ |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 1264 | while (len > 0 && text[len - 1] == NUL) |
| 1265 | --len; |
| 1266 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1267 | clip_yank_selection(motion_type, text, (long)len, cbd); |
| 1268 | received_selection = RS_OK; |
| 1269 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1270 | g_free(tmpbuf_utf8); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1271 | } |
| 1272 | |
| 1273 | /* |
| 1274 | * Prepare our selection data for passing it to the external selection |
| 1275 | * client. |
| 1276 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1277 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1278 | selection_get_cb(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1279 | GtkSelectionData *selection_data, |
| 1280 | guint info, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1281 | guint time_ UNUSED, |
| 1282 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1283 | { |
| 1284 | char_u *string; |
| 1285 | char_u *tmpbuf; |
| 1286 | long_u tmplen; |
| 1287 | int length; |
| 1288 | int motion_type; |
| 1289 | GdkAtom type; |
| 1290 | VimClipboard *cbd; |
| 1291 | |
| 1292 | if (selection_data->selection == clip_plus.gtk_sel_atom) |
| 1293 | cbd = &clip_plus; |
| 1294 | else |
| 1295 | cbd = &clip_star; |
| 1296 | |
| 1297 | if (!cbd->owned) |
| 1298 | return; /* Shouldn't ever happen */ |
| 1299 | |
| 1300 | if (info != (guint)TARGET_STRING |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1301 | && (!clip_html || info != (guint)TARGET_HTML) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1302 | && info != (guint)TARGET_UTF8_STRING |
| 1303 | && info != (guint)TARGET_VIMENC |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1304 | && info != (guint)TARGET_VIM |
| 1305 | && info != (guint)TARGET_COMPOUND_TEXT |
| 1306 | && info != (guint)TARGET_TEXT) |
| 1307 | return; |
| 1308 | |
| 1309 | /* get the selection from the '*'/'+' register */ |
| 1310 | clip_get_selection(cbd); |
| 1311 | |
| 1312 | motion_type = clip_convert_selection(&string, &tmplen, cbd); |
| 1313 | if (motion_type < 0 || string == NULL) |
| 1314 | return; |
| 1315 | /* Due to int arguments we can't handle more than G_MAXINT. Also |
| 1316 | * reserve one extra byte for NUL or the motion type; just in case. |
| 1317 | * (Not that pasting 2G of text is ever going to work, but... ;-) */ |
| 1318 | length = MIN(tmplen, (long_u)(G_MAXINT - 1)); |
| 1319 | |
| 1320 | if (info == (guint)TARGET_VIM) |
| 1321 | { |
| 1322 | tmpbuf = alloc((unsigned)length + 1); |
| 1323 | if (tmpbuf != NULL) |
| 1324 | { |
| 1325 | tmpbuf[0] = motion_type; |
| 1326 | mch_memmove(tmpbuf + 1, string, (size_t)length); |
| 1327 | } |
| 1328 | /* For our own format, the first byte contains the motion type */ |
| 1329 | ++length; |
| 1330 | vim_free(string); |
| 1331 | string = tmpbuf; |
| 1332 | type = vim_atom; |
| 1333 | } |
| 1334 | |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1335 | else if (info == (guint)TARGET_HTML) |
| 1336 | { |
| 1337 | vimconv_T conv; |
| 1338 | |
| 1339 | /* Since we get utf-16, we probably should set it as well. */ |
| 1340 | conv.vc_type = CONV_NONE; |
| 1341 | convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE); |
| 1342 | if (conv.vc_type != CONV_NONE) |
| 1343 | { |
| 1344 | tmpbuf = string_convert(&conv, string, &length); |
| 1345 | convert_setup(&conv, NULL, NULL); |
| 1346 | vim_free(string); |
| 1347 | string = tmpbuf; |
| 1348 | } |
| 1349 | |
| 1350 | /* Prepend the BOM: "fffe" */ |
| 1351 | if (string != NULL) |
| 1352 | { |
| 1353 | tmpbuf = alloc(length + 2); |
| 1354 | tmpbuf[0] = 0xff; |
| 1355 | tmpbuf[1] = 0xfe; |
| 1356 | mch_memmove(tmpbuf + 2, string, (size_t)length); |
| 1357 | vim_free(string); |
| 1358 | string = tmpbuf; |
| 1359 | length += 2; |
| 1360 | |
| 1361 | selection_data->type = selection_data->target; |
| 1362 | selection_data->format = 16; /* 16 bits per char */ |
| 1363 | gtk_selection_data_set(selection_data, html_atom, 16, |
| 1364 | string, length); |
| 1365 | vim_free(string); |
| 1366 | } |
| 1367 | return; |
| 1368 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1369 | else if (info == (guint)TARGET_VIMENC) |
| 1370 | { |
| 1371 | int l = STRLEN(p_enc); |
| 1372 | |
| 1373 | /* contents: motion_type 'encoding' NUL text */ |
| 1374 | tmpbuf = alloc((unsigned)length + l + 2); |
| 1375 | if (tmpbuf != NULL) |
| 1376 | { |
| 1377 | tmpbuf[0] = motion_type; |
| 1378 | STRCPY(tmpbuf + 1, p_enc); |
| 1379 | mch_memmove(tmpbuf + l + 2, string, (size_t)length); |
| 1380 | } |
| 1381 | length += l + 2; |
| 1382 | vim_free(string); |
| 1383 | string = tmpbuf; |
| 1384 | type = vimenc_atom; |
| 1385 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1386 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1387 | /* gtk_selection_data_set_text() handles everything for us. This is |
| 1388 | * so easy and simple and cool, it'd be insane not to use it. */ |
| 1389 | else |
| 1390 | { |
| 1391 | if (output_conv.vc_type != CONV_NONE) |
| 1392 | { |
| 1393 | tmpbuf = string_convert(&output_conv, string, &length); |
| 1394 | vim_free(string); |
| 1395 | if (tmpbuf == NULL) |
| 1396 | return; |
| 1397 | string = tmpbuf; |
| 1398 | } |
| 1399 | /* Validate the string to avoid runtime warnings */ |
| 1400 | if (g_utf8_validate((const char *)string, (gssize)length, NULL)) |
| 1401 | { |
| 1402 | gtk_selection_data_set_text(selection_data, |
| 1403 | (const char *)string, length); |
| 1404 | } |
| 1405 | vim_free(string); |
| 1406 | return; |
| 1407 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1408 | |
| 1409 | if (string != NULL) |
| 1410 | { |
| 1411 | selection_data->type = selection_data->target; |
| 1412 | selection_data->format = 8; /* 8 bits per char */ |
| 1413 | |
| 1414 | gtk_selection_data_set(selection_data, type, 8, string, length); |
| 1415 | vim_free(string); |
| 1416 | } |
| 1417 | } |
| 1418 | |
| 1419 | /* |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 1420 | * Check if the GUI can be started. Called before gvimrc is sourced and |
| 1421 | * before fork(). |
| 1422 | * Return OK or FAIL. |
| 1423 | */ |
| 1424 | int |
| 1425 | gui_mch_early_init_check(void) |
| 1426 | { |
| 1427 | char_u *p; |
| 1428 | |
| 1429 | /* Guess that when $DISPLAY isn't set the GUI can't start. */ |
| 1430 | p = mch_getenv((char_u *)"DISPLAY"); |
| 1431 | if (p == NULL || *p == NUL) |
| 1432 | { |
| 1433 | gui.dying = TRUE; |
| 1434 | EMSG(_((char *)e_opendisp)); |
| 1435 | return FAIL; |
| 1436 | } |
| 1437 | return OK; |
| 1438 | } |
| 1439 | |
| 1440 | /* |
| 1441 | * Check if the GUI can be started. Called before gvimrc is sourced but after |
| 1442 | * fork(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1443 | * Return OK or FAIL. |
| 1444 | */ |
| 1445 | int |
| 1446 | gui_mch_init_check(void) |
| 1447 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1448 | #ifdef FEAT_GUI_GNOME |
| 1449 | if (gtk_socket_id == 0) |
| 1450 | using_gnome = 1; |
| 1451 | #endif |
| 1452 | |
Bram Moolenaar | 8dd7901 | 2013-05-21 12:52:04 +0200 | [diff] [blame] | 1453 | /* This defaults to argv[0], but we want it to match the name of the |
| 1454 | * shipped gvim.desktop so that Vim's windows can be associated with this |
| 1455 | * file. */ |
| 1456 | g_set_prgname("gvim"); |
| 1457 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1458 | /* Don't use gtk_init() or gnome_init(), it exits on failure. */ |
| 1459 | if (!gtk_init_check(&gui_argc, &gui_argv)) |
| 1460 | { |
| 1461 | gui.dying = TRUE; |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 1462 | EMSG(_((char *)e_opendisp)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1463 | return FAIL; |
| 1464 | } |
| 1465 | |
| 1466 | return OK; |
| 1467 | } |
| 1468 | |
| 1469 | |
| 1470 | /**************************************************************************** |
| 1471 | * Mouse handling callbacks |
| 1472 | */ |
| 1473 | |
| 1474 | |
| 1475 | static guint mouse_click_timer = 0; |
| 1476 | static int mouse_timed_out = TRUE; |
| 1477 | |
| 1478 | /* |
| 1479 | * Timer used to recognize multiple clicks of the mouse button |
| 1480 | */ |
| 1481 | static gint |
| 1482 | mouse_click_timer_cb(gpointer data) |
| 1483 | { |
| 1484 | /* we don't use this information currently */ |
| 1485 | int *timed_out = (int *) data; |
| 1486 | |
| 1487 | *timed_out = TRUE; |
| 1488 | return FALSE; /* don't happen again */ |
| 1489 | } |
| 1490 | |
| 1491 | static guint motion_repeat_timer = 0; |
| 1492 | static int motion_repeat_offset = FALSE; |
| 1493 | static gint motion_repeat_timer_cb(gpointer); |
| 1494 | |
| 1495 | static void |
| 1496 | process_motion_notify(int x, int y, GdkModifierType state) |
| 1497 | { |
| 1498 | int button; |
| 1499 | int_u vim_modifiers; |
| 1500 | |
| 1501 | button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | |
| 1502 | GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | |
| 1503 | GDK_BUTTON5_MASK)) |
| 1504 | ? MOUSE_DRAG : ' '; |
| 1505 | |
| 1506 | /* If our pointer is currently hidden, then we should show it. */ |
| 1507 | gui_mch_mousehide(FALSE); |
| 1508 | |
| 1509 | /* Just moving the rodent above the drawing area without any button |
| 1510 | * being pressed. */ |
| 1511 | if (button != MOUSE_DRAG) |
| 1512 | { |
| 1513 | gui_mouse_moved(x, y); |
| 1514 | return; |
| 1515 | } |
| 1516 | |
| 1517 | /* translate modifier coding between the main engine and GTK */ |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1518 | vim_modifiers = modifiers_gdk2mouse(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1519 | |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 1520 | /* inform the editor engine about the occurrence of this event */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1521 | gui_send_mouse_event(button, x, y, FALSE, vim_modifiers); |
| 1522 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1523 | /* |
| 1524 | * Auto repeat timer handling. |
| 1525 | */ |
| 1526 | if (x < 0 || y < 0 |
| 1527 | || x >= gui.drawarea->allocation.width |
| 1528 | || y >= gui.drawarea->allocation.height) |
| 1529 | { |
| 1530 | |
| 1531 | int dx; |
| 1532 | int dy; |
| 1533 | int offshoot; |
| 1534 | int delay = 10; |
| 1535 | |
| 1536 | /* Calculate the maximal distance of the cursor from the drawing area. |
| 1537 | * (offshoot can't become negative here!). |
| 1538 | */ |
| 1539 | dx = x < 0 ? -x : x - gui.drawarea->allocation.width; |
| 1540 | dy = y < 0 ? -y : y - gui.drawarea->allocation.height; |
| 1541 | |
| 1542 | offshoot = dx > dy ? dx : dy; |
| 1543 | |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1544 | /* 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] | 1545 | * distance of 127 pixels from the main window. |
| 1546 | * |
| 1547 | * One could think endlessly about the most ergonomic variant here. |
| 1548 | * For example it could make sense to calculate the distance from the |
| 1549 | * drags start instead... |
| 1550 | * |
| 1551 | * Maybe a parabolic interpolation would suite us better here too... |
| 1552 | */ |
| 1553 | if (offshoot > 127) |
| 1554 | { |
| 1555 | /* 5 appears to be somehow near to my perceptual limits :-). */ |
| 1556 | delay = 5; |
| 1557 | } |
| 1558 | else |
| 1559 | { |
| 1560 | delay = (130 * (127 - offshoot)) / 127 + 5; |
| 1561 | } |
| 1562 | |
| 1563 | /* shoot again */ |
| 1564 | if (!motion_repeat_timer) |
| 1565 | motion_repeat_timer = gtk_timeout_add((guint32)delay, |
| 1566 | motion_repeat_timer_cb, NULL); |
| 1567 | } |
| 1568 | } |
| 1569 | |
| 1570 | /* |
| 1571 | * Timer used to recognize multiple clicks of the mouse button. |
| 1572 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1573 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1574 | motion_repeat_timer_cb(gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1575 | { |
| 1576 | int x; |
| 1577 | int y; |
| 1578 | GdkModifierType state; |
| 1579 | |
| 1580 | gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state); |
| 1581 | |
| 1582 | if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | |
| 1583 | GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | |
| 1584 | GDK_BUTTON5_MASK))) |
| 1585 | { |
| 1586 | motion_repeat_timer = 0; |
| 1587 | return FALSE; |
| 1588 | } |
| 1589 | |
| 1590 | /* If there already is a mouse click in the input buffer, wait another |
| 1591 | * time (otherwise we would create a backlog of clicks) */ |
| 1592 | if (vim_used_in_input_buf() > 10) |
| 1593 | return TRUE; |
| 1594 | |
| 1595 | motion_repeat_timer = 0; |
| 1596 | |
| 1597 | /* |
| 1598 | * Fake a motion event. |
| 1599 | * Trick: Pretend the mouse moved to the next character on every other |
| 1600 | * event, otherwise drag events will be discarded, because they are still |
| 1601 | * in the same character. |
| 1602 | */ |
| 1603 | if (motion_repeat_offset) |
| 1604 | x += gui.char_width; |
| 1605 | |
| 1606 | motion_repeat_offset = !motion_repeat_offset; |
| 1607 | process_motion_notify(x, y, state); |
| 1608 | |
| 1609 | /* Don't happen again. We will get reinstalled in the synthetic event |
| 1610 | * if needed -- thus repeating should still work. */ |
| 1611 | return FALSE; |
| 1612 | } |
| 1613 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1614 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1615 | motion_notify_event(GtkWidget *widget, |
| 1616 | GdkEventMotion *event, |
| 1617 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1618 | { |
| 1619 | if (event->is_hint) |
| 1620 | { |
| 1621 | int x; |
| 1622 | int y; |
| 1623 | GdkModifierType state; |
| 1624 | |
| 1625 | gdk_window_get_pointer(widget->window, &x, &y, &state); |
| 1626 | process_motion_notify(x, y, state); |
| 1627 | } |
| 1628 | else |
| 1629 | { |
| 1630 | process_motion_notify((int)event->x, (int)event->y, |
| 1631 | (GdkModifierType)event->state); |
| 1632 | } |
| 1633 | |
| 1634 | return TRUE; /* handled */ |
| 1635 | } |
| 1636 | |
| 1637 | |
| 1638 | /* |
| 1639 | * Mouse button handling. Note please that we are capturing multiple click's |
| 1640 | * by our own timeout mechanism instead of the one provided by GTK+ itself. |
| 1641 | * This is due to the way the generic VIM code is recognizing multiple clicks. |
| 1642 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1643 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1644 | button_press_event(GtkWidget *widget, |
| 1645 | GdkEventButton *event, |
| 1646 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1647 | { |
| 1648 | int button; |
| 1649 | int repeated_click = FALSE; |
| 1650 | int x, y; |
| 1651 | int_u vim_modifiers; |
| 1652 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1653 | gui.event_time = event->time; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 1654 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1655 | /* Make sure we have focus now we've been selected */ |
| 1656 | if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget)) |
| 1657 | gtk_widget_grab_focus(widget); |
| 1658 | |
| 1659 | /* |
| 1660 | * Don't let additional events about multiple clicks send by GTK to us |
| 1661 | * after the initial button press event confuse us. |
| 1662 | */ |
| 1663 | if (event->type != GDK_BUTTON_PRESS) |
| 1664 | return FALSE; |
| 1665 | |
| 1666 | x = event->x; |
| 1667 | y = event->y; |
| 1668 | |
| 1669 | /* Handle multiple clicks */ |
| 1670 | if (!mouse_timed_out && mouse_click_timer) |
| 1671 | { |
| 1672 | gtk_timeout_remove(mouse_click_timer); |
| 1673 | mouse_click_timer = 0; |
| 1674 | repeated_click = TRUE; |
| 1675 | } |
| 1676 | |
| 1677 | mouse_timed_out = FALSE; |
| 1678 | mouse_click_timer = gtk_timeout_add((guint32)p_mouset, |
| 1679 | mouse_click_timer_cb, &mouse_timed_out); |
| 1680 | |
| 1681 | switch (event->button) |
| 1682 | { |
Bram Moolenaar | 88e484b | 2015-11-24 15:38:44 +0100 | [diff] [blame] | 1683 | /* Keep in sync with gui_x11.c. |
| 1684 | * Buttons 4-7 are handled in scroll_event() */ |
| 1685 | case 1: button = MOUSE_LEFT; break; |
| 1686 | case 2: button = MOUSE_MIDDLE; break; |
| 1687 | case 3: button = MOUSE_RIGHT; break; |
| 1688 | case 8: button = MOUSE_X1; break; |
| 1689 | case 9: button = MOUSE_X2; break; |
| 1690 | default: |
| 1691 | return FALSE; /* Unknown button */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1692 | } |
| 1693 | |
| 1694 | #ifdef FEAT_XIM |
| 1695 | /* cancel any preediting */ |
| 1696 | if (im_is_preediting()) |
| 1697 | xim_reset(); |
| 1698 | #endif |
| 1699 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1700 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1701 | |
| 1702 | gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1703 | |
| 1704 | return TRUE; |
| 1705 | } |
| 1706 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1707 | /* |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 1708 | * GTK+ 2 abstracts scrolling via the GdkEventScroll. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1709 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1710 | static gboolean |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1711 | scroll_event(GtkWidget *widget, |
| 1712 | GdkEventScroll *event, |
| 1713 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1714 | { |
| 1715 | int button; |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1716 | int_u vim_modifiers; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1717 | |
| 1718 | if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget)) |
| 1719 | gtk_widget_grab_focus(widget); |
| 1720 | |
| 1721 | switch (event->direction) |
| 1722 | { |
| 1723 | case GDK_SCROLL_UP: |
| 1724 | button = MOUSE_4; |
| 1725 | break; |
| 1726 | case GDK_SCROLL_DOWN: |
| 1727 | button = MOUSE_5; |
| 1728 | break; |
Bram Moolenaar | 8d9b40e | 2010-07-25 15:49:07 +0200 | [diff] [blame] | 1729 | case GDK_SCROLL_LEFT: |
| 1730 | button = MOUSE_7; |
| 1731 | break; |
| 1732 | case GDK_SCROLL_RIGHT: |
| 1733 | button = MOUSE_6; |
| 1734 | break; |
| 1735 | default: /* This shouldn't happen */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1736 | return FALSE; |
| 1737 | } |
| 1738 | |
| 1739 | # ifdef FEAT_XIM |
| 1740 | /* cancel any preediting */ |
| 1741 | if (im_is_preediting()) |
| 1742 | xim_reset(); |
| 1743 | # endif |
| 1744 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1745 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1746 | |
| 1747 | gui_send_mouse_event(button, (int)event->x, (int)event->y, |
| 1748 | FALSE, vim_modifiers); |
| 1749 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1750 | return TRUE; |
| 1751 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1752 | |
| 1753 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1754 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1755 | button_release_event(GtkWidget *widget UNUSED, |
| 1756 | GdkEventButton *event, |
| 1757 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1758 | { |
| 1759 | int x, y; |
| 1760 | int_u vim_modifiers; |
| 1761 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1762 | gui.event_time = event->time; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 1763 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1764 | /* Remove any motion "machine gun" timers used for automatic further |
| 1765 | extension of allocation areas if outside of the applications window |
| 1766 | area .*/ |
| 1767 | if (motion_repeat_timer) |
| 1768 | { |
| 1769 | gtk_timeout_remove(motion_repeat_timer); |
| 1770 | motion_repeat_timer = 0; |
| 1771 | } |
| 1772 | |
| 1773 | x = event->x; |
| 1774 | y = event->y; |
| 1775 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1776 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1777 | |
| 1778 | gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1779 | |
| 1780 | return TRUE; |
| 1781 | } |
| 1782 | |
| 1783 | |
| 1784 | #ifdef FEAT_DND |
| 1785 | /**************************************************************************** |
| 1786 | * Drag aNd Drop support handlers. |
| 1787 | */ |
| 1788 | |
| 1789 | /* |
| 1790 | * Count how many items there may be and separate them with a NUL. |
| 1791 | * Apparently the items are separated with \r\n. This is not documented, |
| 1792 | * thus be careful not to go past the end. Also allow separation with |
| 1793 | * NUL characters. |
| 1794 | */ |
| 1795 | static int |
| 1796 | count_and_decode_uri_list(char_u *out, char_u *raw, int len) |
| 1797 | { |
| 1798 | int i; |
| 1799 | char_u *p = out; |
| 1800 | int count = 0; |
| 1801 | |
| 1802 | for (i = 0; i < len; ++i) |
| 1803 | { |
| 1804 | if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r') |
| 1805 | { |
| 1806 | if (p > out && p[-1] != NUL) |
| 1807 | { |
| 1808 | ++count; |
| 1809 | *p++ = NUL; |
| 1810 | } |
| 1811 | } |
| 1812 | else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0) |
| 1813 | { |
| 1814 | *p++ = hexhex2nr(raw + i + 1); |
| 1815 | i += 2; |
| 1816 | } |
| 1817 | else |
| 1818 | *p++ = raw[i]; |
| 1819 | } |
| 1820 | if (p > out && p[-1] != NUL) |
| 1821 | { |
| 1822 | *p = NUL; /* last item didn't have \r or \n */ |
| 1823 | ++count; |
| 1824 | } |
| 1825 | return count; |
| 1826 | } |
| 1827 | |
| 1828 | /* |
| 1829 | * Parse NUL separated "src" strings. Make it an array "outlist" form. On |
| 1830 | * this process, URI which protocol is not "file:" are removed. Return |
| 1831 | * length of array (less than "max"). |
| 1832 | */ |
| 1833 | static int |
| 1834 | filter_uri_list(char_u **outlist, int max, char_u *src) |
| 1835 | { |
| 1836 | int i, j; |
| 1837 | |
| 1838 | for (i = j = 0; i < max; ++i) |
| 1839 | { |
| 1840 | outlist[i] = NULL; |
| 1841 | if (STRNCMP(src, "file:", 5) == 0) |
| 1842 | { |
| 1843 | src += 5; |
| 1844 | if (STRNCMP(src, "//localhost", 11) == 0) |
| 1845 | src += 11; |
| 1846 | while (src[0] == '/' && src[1] == '/') |
| 1847 | ++src; |
| 1848 | outlist[j++] = vim_strsave(src); |
| 1849 | } |
| 1850 | src += STRLEN(src) + 1; |
| 1851 | } |
| 1852 | return j; |
| 1853 | } |
| 1854 | |
| 1855 | static char_u ** |
| 1856 | parse_uri_list(int *count, char_u *data, int len) |
| 1857 | { |
| 1858 | int n = 0; |
| 1859 | char_u *tmp = NULL; |
| 1860 | char_u **array = NULL;; |
| 1861 | |
| 1862 | if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL) |
| 1863 | { |
| 1864 | n = count_and_decode_uri_list(tmp, data, len); |
| 1865 | if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL) |
| 1866 | n = filter_uri_list(array, n, tmp); |
| 1867 | } |
| 1868 | vim_free(tmp); |
| 1869 | *count = n; |
| 1870 | return array; |
| 1871 | } |
| 1872 | |
| 1873 | static void |
| 1874 | drag_handle_uri_list(GdkDragContext *context, |
| 1875 | GtkSelectionData *data, |
| 1876 | guint time_, |
| 1877 | GdkModifierType state, |
| 1878 | gint x, |
| 1879 | gint y) |
| 1880 | { |
| 1881 | char_u **fnames; |
| 1882 | int nfiles = 0; |
| 1883 | |
| 1884 | fnames = parse_uri_list(&nfiles, data->data, data->length); |
| 1885 | |
| 1886 | if (fnames != NULL && nfiles > 0) |
| 1887 | { |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1888 | int_u modifiers; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1889 | |
| 1890 | gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ |
| 1891 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1892 | modifiers = modifiers_gdk2mouse(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1893 | |
| 1894 | gui_handle_drop(x, y, modifiers, fnames, nfiles); |
| 1895 | } |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 1896 | else |
| 1897 | vim_free(fnames); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1898 | } |
| 1899 | |
| 1900 | static void |
| 1901 | drag_handle_text(GdkDragContext *context, |
| 1902 | GtkSelectionData *data, |
| 1903 | guint time_, |
| 1904 | GdkModifierType state) |
| 1905 | { |
| 1906 | char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP}; |
| 1907 | char_u *text; |
| 1908 | int len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1909 | char_u *tmpbuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1910 | |
| 1911 | text = data->data; |
| 1912 | len = data->length; |
| 1913 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1914 | if (data->type == utf8_string_atom) |
| 1915 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1916 | if (input_conv.vc_type != CONV_NONE) |
| 1917 | tmpbuf = string_convert(&input_conv, text, &len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1918 | if (tmpbuf != NULL) |
| 1919 | text = tmpbuf; |
| 1920 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1921 | |
| 1922 | dnd_yank_drag_data(text, (long)len); |
| 1923 | gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1924 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1925 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1926 | dropkey[2] = modifiers_gdk2vim(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1927 | |
| 1928 | if (dropkey[2] != 0) |
| 1929 | add_to_input_buf(dropkey, (int)sizeof(dropkey)); |
| 1930 | else |
| 1931 | add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1932 | } |
| 1933 | |
| 1934 | /* |
| 1935 | * DND receiver. |
| 1936 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1937 | static void |
| 1938 | drag_data_received_cb(GtkWidget *widget, |
| 1939 | GdkDragContext *context, |
| 1940 | gint x, |
| 1941 | gint y, |
| 1942 | GtkSelectionData *data, |
| 1943 | guint info, |
| 1944 | guint time_, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1945 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1946 | { |
| 1947 | GdkModifierType state; |
| 1948 | |
| 1949 | /* Guard against trash */ |
| 1950 | if (data->data == NULL |
| 1951 | || data->length <= 0 |
| 1952 | || data->format != 8 |
| 1953 | || data->data[data->length] != '\0') |
| 1954 | { |
| 1955 | gtk_drag_finish(context, FALSE, FALSE, time_); |
| 1956 | return; |
| 1957 | } |
| 1958 | |
| 1959 | /* Get the current modifier state for proper distinguishment between |
| 1960 | * different operations later. */ |
| 1961 | gdk_window_get_pointer(widget->window, NULL, NULL, &state); |
| 1962 | |
| 1963 | /* Not sure about the role of "text/plain" here... */ |
| 1964 | if (info == (guint)TARGET_TEXT_URI_LIST) |
| 1965 | drag_handle_uri_list(context, data, time_, state, x, y); |
| 1966 | else |
| 1967 | drag_handle_text(context, data, time_, state); |
| 1968 | |
| 1969 | } |
| 1970 | #endif /* FEAT_DND */ |
| 1971 | |
| 1972 | |
| 1973 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 1974 | /* |
| 1975 | * GnomeClient interact callback. Check for unsaved buffers that cannot |
| 1976 | * be abandoned and pop up a dialog asking the user for confirmation if |
| 1977 | * necessary. |
| 1978 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1979 | static void |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1980 | sm_client_check_changed_any(GnomeClient *client UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1981 | gint key, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1982 | GnomeDialogType type UNUSED, |
| 1983 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1984 | { |
| 1985 | cmdmod_T save_cmdmod; |
| 1986 | gboolean shutdown_cancelled; |
| 1987 | |
| 1988 | save_cmdmod = cmdmod; |
| 1989 | |
| 1990 | # ifdef FEAT_BROWSE |
| 1991 | cmdmod.browse = TRUE; |
| 1992 | # endif |
| 1993 | # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 1994 | cmdmod.confirm = TRUE; |
| 1995 | # endif |
| 1996 | /* |
| 1997 | * If there are changed buffers, present the user with |
| 1998 | * a dialog if possible, otherwise give an error message. |
| 1999 | */ |
| 2000 | shutdown_cancelled = check_changed_any(FALSE); |
| 2001 | |
| 2002 | exiting = FALSE; |
| 2003 | cmdmod = save_cmdmod; |
| 2004 | setcursor(); /* position the cursor */ |
| 2005 | out_flush(); |
| 2006 | /* |
| 2007 | * If the user hit the [Cancel] button the whole shutdown |
| 2008 | * will be cancelled. Wow, quite powerful feature (: |
| 2009 | */ |
| 2010 | gnome_interaction_key_return(key, shutdown_cancelled); |
| 2011 | } |
| 2012 | |
| 2013 | /* |
| 2014 | * Generate a script that can be used to restore the current editing session. |
| 2015 | * Save the value of v:this_session before running :mksession in order to make |
| 2016 | * automagic session save fully transparent. Return TRUE on success. |
| 2017 | */ |
| 2018 | static int |
| 2019 | write_session_file(char_u *filename) |
| 2020 | { |
| 2021 | char_u *escaped_filename; |
| 2022 | char *mksession_cmdline; |
| 2023 | unsigned int save_ssop_flags; |
| 2024 | int failed; |
| 2025 | |
| 2026 | /* |
| 2027 | * Build an ex command line to create a script that restores the current |
| 2028 | * session if executed. Escape the filename to avoid nasty surprises. |
| 2029 | */ |
| 2030 | escaped_filename = vim_strsave_escaped(filename, escape_chars); |
| 2031 | if (escaped_filename == NULL) |
| 2032 | return FALSE; |
Bram Moolenaar | dc3213d | 2007-06-19 16:03:50 +0000 | [diff] [blame] | 2033 | mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename, |
| 2034 | NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2035 | vim_free(escaped_filename); |
Bram Moolenaar | dc3213d | 2007-06-19 16:03:50 +0000 | [diff] [blame] | 2036 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2037 | /* |
| 2038 | * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid |
| 2039 | * unpredictable effects when the session is saved automatically. Also, |
| 2040 | * we definitely need SSOP_GLOBALS to be able to restore v:this_session. |
| 2041 | * Don't use SSOP_BUFFERS to prevent the buffer list from becoming |
| 2042 | * enormously large if the GNOME session feature is used regularly. |
| 2043 | */ |
| 2044 | save_ssop_flags = ssop_flags; |
| 2045 | ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS |
Bram Moolenaar | dc3213d | 2007-06-19 16:03:50 +0000 | [diff] [blame] | 2046 | |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2047 | |
| 2048 | do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session"); |
| 2049 | failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL); |
| 2050 | 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] | 2051 | do_unlet((char_u *)"Save_VV_this_session", TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2052 | |
| 2053 | ssop_flags = save_ssop_flags; |
| 2054 | g_free(mksession_cmdline); |
Bram Moolenaar | 24dc230 | 2014-05-13 20:19:58 +0200 | [diff] [blame] | 2055 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2056 | /* |
| 2057 | * Reopen the file and append a command to restore v:this_session, |
| 2058 | * as if this save never happened. This is to avoid conflicts with |
| 2059 | * the user's own sessions. FIXME: It's probably less hackish to add |
| 2060 | * a "stealth" flag to 'sessionoptions' -- gotta ask Bram. |
| 2061 | */ |
| 2062 | if (!failed) |
| 2063 | { |
| 2064 | FILE *fd; |
| 2065 | |
| 2066 | fd = open_exfile(filename, TRUE, APPENDBIN); |
| 2067 | |
| 2068 | failed = (fd == NULL |
| 2069 | || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL |
| 2070 | || put_line(fd, "unlet Save_VV_this_session") == FAIL); |
| 2071 | |
| 2072 | if (fd != NULL && fclose(fd) != 0) |
| 2073 | failed = TRUE; |
| 2074 | |
| 2075 | if (failed) |
| 2076 | mch_remove(filename); |
| 2077 | } |
| 2078 | |
| 2079 | return !failed; |
| 2080 | } |
| 2081 | |
| 2082 | /* |
| 2083 | * "save_yourself" signal handler. Initiate an interaction to ask the user |
| 2084 | * for confirmation if necessary. Save the current editing session and tell |
| 2085 | * the session manager how to restart Vim. |
| 2086 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2087 | static gboolean |
| 2088 | sm_client_save_yourself(GnomeClient *client, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2089 | gint phase UNUSED, |
| 2090 | GnomeSaveStyle save_style UNUSED, |
| 2091 | gboolean shutdown UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2092 | GnomeInteractStyle interact_style, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2093 | gboolean fast UNUSED, |
| 2094 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2095 | { |
| 2096 | static const char suffix[] = "-session.vim"; |
| 2097 | char *session_file; |
| 2098 | unsigned int len; |
| 2099 | gboolean success; |
| 2100 | |
| 2101 | /* Always request an interaction if possible. check_changed_any() |
| 2102 | * won't actually show a dialog unless any buffers have been modified. |
| 2103 | * There doesn't seem to be an obvious way to check that without |
| 2104 | * automatically firing the dialog. Anyway, it works just fine. */ |
| 2105 | if (interact_style == GNOME_INTERACT_ANY) |
| 2106 | gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL, |
| 2107 | &sm_client_check_changed_any, |
| 2108 | NULL); |
| 2109 | out_flush(); |
| 2110 | ml_sync_all(FALSE, FALSE); /* preserve all swap files */ |
| 2111 | |
| 2112 | /* The path is unique for each session save. We do neither know nor care |
| 2113 | * which session script will actually be used later. This decision is in |
| 2114 | * the domain of the session manager. */ |
| 2115 | session_file = gnome_config_get_real_path( |
| 2116 | gnome_client_get_config_prefix(client)); |
| 2117 | len = strlen(session_file); |
| 2118 | |
| 2119 | if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR) |
| 2120 | --len; /* get rid of the superfluous trailing '/' */ |
| 2121 | |
| 2122 | session_file = g_renew(char, session_file, len + sizeof(suffix)); |
| 2123 | memcpy(session_file + len, suffix, sizeof(suffix)); |
| 2124 | |
| 2125 | success = write_session_file((char_u *)session_file); |
| 2126 | |
| 2127 | if (success) |
| 2128 | { |
| 2129 | const char *argv[8]; |
| 2130 | int i; |
| 2131 | |
| 2132 | /* Tell the session manager how to wipe out the stored session data. |
| 2133 | * This isn't as dangerous as it looks, don't worry :) session_file |
| 2134 | * is a unique absolute filename. Usually it'll be something like |
| 2135 | * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */ |
| 2136 | i = 0; |
| 2137 | argv[i++] = "rm"; |
| 2138 | argv[i++] = session_file; |
| 2139 | argv[i] = NULL; |
| 2140 | |
| 2141 | gnome_client_set_discard_command(client, i, (char **)argv); |
| 2142 | |
| 2143 | /* Tell the session manager how to restore the just saved session. |
| 2144 | * This is easily done thanks to Vim's -S option. Pass the -f flag |
| 2145 | * since there's no need to fork -- it might even cause confusion. |
| 2146 | * Also pass the window role to give the WM something to match on. |
| 2147 | * The role is set in gui_mch_open(), thus should _never_ be NULL. */ |
| 2148 | i = 0; |
| 2149 | argv[i++] = restart_command; |
| 2150 | argv[i++] = "-f"; |
| 2151 | argv[i++] = "-g"; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2152 | argv[i++] = "--role"; |
| 2153 | argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2154 | argv[i++] = "-S"; |
| 2155 | argv[i++] = session_file; |
| 2156 | argv[i] = NULL; |
| 2157 | |
| 2158 | gnome_client_set_restart_command(client, i, (char **)argv); |
| 2159 | gnome_client_set_clone_command(client, 0, NULL); |
| 2160 | } |
| 2161 | |
| 2162 | g_free(session_file); |
| 2163 | |
| 2164 | return success; |
| 2165 | } |
| 2166 | |
| 2167 | /* |
| 2168 | * Called when the session manager wants us to die. There isn't much to save |
| 2169 | * here since "save_yourself" has been emitted before (unless serious trouble |
| 2170 | * is happening). |
| 2171 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2172 | static void |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2173 | sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2174 | { |
| 2175 | /* Don't write messages to the GUI anymore */ |
| 2176 | full_screen = FALSE; |
| 2177 | |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 2178 | vim_strncpy(IObuff, (char_u *) |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 2179 | _("Vim: Received \"die\" request from session manager\n"), |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 2180 | IOSIZE - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2181 | preserve_exit(); |
| 2182 | } |
| 2183 | |
| 2184 | /* |
| 2185 | * Connect our signal handlers to be notified on session save and shutdown. |
| 2186 | */ |
| 2187 | static void |
| 2188 | setup_save_yourself(void) |
| 2189 | { |
| 2190 | GnomeClient *client; |
| 2191 | |
| 2192 | client = gnome_master_client(); |
| 2193 | |
| 2194 | if (client != NULL) |
| 2195 | { |
| 2196 | /* Must use the deprecated gtk_signal_connect() for compatibility |
| 2197 | * with GNOME 1. Arrgh, zombies! */ |
| 2198 | gtk_signal_connect(GTK_OBJECT(client), "save_yourself", |
| 2199 | GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL); |
| 2200 | gtk_signal_connect(GTK_OBJECT(client), "die", |
| 2201 | GTK_SIGNAL_FUNC(&sm_client_die), NULL); |
| 2202 | } |
| 2203 | } |
| 2204 | |
| 2205 | #else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */ |
| 2206 | |
| 2207 | # ifdef USE_XSMP |
| 2208 | /* |
| 2209 | * GTK tells us that XSMP needs attention |
| 2210 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2211 | static gboolean |
| 2212 | local_xsmp_handle_requests(source, condition, data) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2213 | GIOChannel *source UNUSED; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2214 | GIOCondition condition; |
| 2215 | gpointer data; |
| 2216 | { |
| 2217 | if (condition == G_IO_IN) |
| 2218 | { |
| 2219 | /* Do stuff; maybe close connection */ |
| 2220 | if (xsmp_handle_requests() == FAIL) |
| 2221 | g_io_channel_unref((GIOChannel *)data); |
| 2222 | return TRUE; |
| 2223 | } |
| 2224 | /* Error */ |
| 2225 | g_io_channel_unref((GIOChannel *)data); |
| 2226 | xsmp_close(); |
| 2227 | return TRUE; |
| 2228 | } |
| 2229 | # endif /* USE_XSMP */ |
| 2230 | |
| 2231 | /* |
| 2232 | * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event. |
| 2233 | * This is an ugly use of X functions. GTK doesn't offer an alternative. |
| 2234 | */ |
| 2235 | static void |
| 2236 | setup_save_yourself(void) |
| 2237 | { |
| 2238 | Atom *existing_atoms = NULL; |
| 2239 | int count = 0; |
| 2240 | |
| 2241 | #ifdef USE_XSMP |
| 2242 | if (xsmp_icefd != -1) |
| 2243 | { |
| 2244 | /* |
| 2245 | * Use XSMP is preference to legacy WM_SAVE_YOURSELF; |
| 2246 | * set up GTK IO monitor |
| 2247 | */ |
| 2248 | GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd); |
| 2249 | |
| 2250 | g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP, |
| 2251 | local_xsmp_handle_requests, (gpointer)g_io); |
| 2252 | } |
| 2253 | else |
| 2254 | #endif |
| 2255 | { |
| 2256 | /* Fall back to old method */ |
| 2257 | |
| 2258 | /* first get the existing value */ |
| 2259 | if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2260 | GDK_WINDOW_XWINDOW(gui.mainwin->window), |
| 2261 | &existing_atoms, &count)) |
| 2262 | { |
| 2263 | Atom *new_atoms; |
| 2264 | Atom save_yourself_xatom; |
| 2265 | int i; |
| 2266 | |
| 2267 | save_yourself_xatom = GET_X_ATOM(save_yourself_atom); |
| 2268 | |
| 2269 | /* check if WM_SAVE_YOURSELF isn't there yet */ |
| 2270 | for (i = 0; i < count; ++i) |
| 2271 | if (existing_atoms[i] == save_yourself_xatom) |
| 2272 | break; |
| 2273 | |
| 2274 | if (i == count) |
| 2275 | { |
| 2276 | /* allocate an Atoms array which is one item longer */ |
| 2277 | new_atoms = (Atom *)alloc((unsigned)((count + 1) |
| 2278 | * sizeof(Atom))); |
| 2279 | if (new_atoms != NULL) |
| 2280 | { |
| 2281 | memcpy(new_atoms, existing_atoms, count * sizeof(Atom)); |
| 2282 | new_atoms[count] = save_yourself_xatom; |
| 2283 | XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2284 | GDK_WINDOW_XWINDOW(gui.mainwin->window), |
| 2285 | new_atoms, count + 1); |
| 2286 | vim_free(new_atoms); |
| 2287 | } |
| 2288 | } |
| 2289 | XFree(existing_atoms); |
| 2290 | } |
| 2291 | } |
| 2292 | } |
| 2293 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2294 | /* |
| 2295 | * Installing a global event filter seems to be the only way to catch |
| 2296 | * client messages of type WM_PROTOCOLS without overriding GDK's own |
| 2297 | * client message event filter. Well, that's still better than trying |
| 2298 | * 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] | 2299 | * |
| 2300 | * GTK2_FIXME: This doesn't seem to work. For some reason we never |
| 2301 | * receive WM_SAVE_YOURSELF even though everything is set up correctly. |
| 2302 | * I have the nasty feeling modern session managers just don't send this |
| 2303 | * deprecated message anymore. Addition: confirmed by several people. |
| 2304 | * |
| 2305 | * The GNOME session support is much cooler anyway. Unlike this ugly |
| 2306 | * WM_SAVE_YOURSELF hack it actually stores the session... And yes, |
| 2307 | * it should work with KDE as well. |
| 2308 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2309 | static GdkFilterReturn |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2310 | global_event_filter(GdkXEvent *xev, |
| 2311 | GdkEvent *event UNUSED, |
| 2312 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2313 | { |
| 2314 | XEvent *xevent = (XEvent *)xev; |
| 2315 | |
| 2316 | if (xevent != NULL |
| 2317 | && xevent->type == ClientMessage |
| 2318 | && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2319 | && (long_u)xevent->xclient.data.l[0] |
| 2320 | == GET_X_ATOM(save_yourself_atom)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2321 | { |
| 2322 | out_flush(); |
| 2323 | ml_sync_all(FALSE, FALSE); /* preserve all swap files */ |
| 2324 | /* |
| 2325 | * Set the window's WM_COMMAND property, to let the window manager |
| 2326 | * know we are done saving ourselves. We don't want to be |
| 2327 | * restarted, thus set argv to NULL. |
| 2328 | */ |
| 2329 | XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2330 | GDK_WINDOW_XWINDOW(gui.mainwin->window), |
| 2331 | NULL, 0); |
| 2332 | return GDK_FILTER_REMOVE; |
| 2333 | } |
| 2334 | |
| 2335 | return GDK_FILTER_CONTINUE; |
| 2336 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2337 | #endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */ |
| 2338 | |
| 2339 | |
| 2340 | /* |
| 2341 | * Setup the window icon & xcmdsrv comm after the main window has been realized. |
| 2342 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2343 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2344 | mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2345 | { |
| 2346 | /* If you get an error message here, you still need to unpack the runtime |
| 2347 | * archive! */ |
| 2348 | #ifdef magick |
| 2349 | # undef magick |
| 2350 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2351 | /* A bit hackish, but avoids casting later and allows optimization */ |
| 2352 | # define static static const |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2353 | #define magick vim32x32 |
| 2354 | #include "../runtime/vim32x32.xpm" |
| 2355 | #undef magick |
| 2356 | #define magick vim16x16 |
| 2357 | #include "../runtime/vim16x16.xpm" |
| 2358 | #undef magick |
| 2359 | #define magick vim48x48 |
| 2360 | #include "../runtime/vim48x48.xpm" |
| 2361 | #undef magick |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2362 | # undef static |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2363 | |
| 2364 | /* When started with "--echo-wid" argument, write window ID on stdout. */ |
| 2365 | if (echo_wid_arg) |
| 2366 | { |
| 2367 | printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window)); |
| 2368 | fflush(stdout); |
| 2369 | } |
| 2370 | |
| 2371 | if (vim_strchr(p_go, GO_ICON) != NULL) |
| 2372 | { |
| 2373 | /* |
| 2374 | * Add an icon to the main window. For fun and convenience of the user. |
| 2375 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2376 | GList *icons = NULL; |
| 2377 | |
| 2378 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16)); |
| 2379 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32)); |
| 2380 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48)); |
| 2381 | |
| 2382 | gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons); |
| 2383 | |
| 2384 | g_list_foreach(icons, (GFunc)&g_object_unref, NULL); |
| 2385 | g_list_free(icons); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2386 | } |
| 2387 | |
| 2388 | #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) |
| 2389 | /* 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] | 2390 | gdk_window_add_filter(NULL, &global_event_filter, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2391 | #endif |
| 2392 | /* Setup to indicate to the window manager that we want to catch the |
| 2393 | * WM_SAVE_YOURSELF event. For GNOME, this connects to the session |
| 2394 | * manager instead. */ |
| 2395 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 2396 | if (using_gnome) |
| 2397 | #endif |
| 2398 | setup_save_yourself(); |
| 2399 | |
| 2400 | #ifdef FEAT_CLIENTSERVER |
| 2401 | if (serverName == NULL && serverDelayedStartName != NULL) |
| 2402 | { |
| 2403 | /* This is a :gui command in a plain vim with no previous server */ |
| 2404 | commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window); |
| 2405 | |
| 2406 | (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2407 | serverDelayedStartName); |
| 2408 | } |
| 2409 | else |
| 2410 | { |
| 2411 | /* |
| 2412 | * Cannot handle "XLib-only" windows with gtk event routines, we'll |
| 2413 | * have to change the "server" registration to that of the main window |
| 2414 | * If we have not registered a name yet, remember the window |
| 2415 | */ |
| 2416 | serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window), |
| 2417 | GDK_WINDOW_XWINDOW(gui.mainwin->window)); |
| 2418 | } |
| 2419 | gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK); |
| 2420 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event", |
| 2421 | GTK_SIGNAL_FUNC(property_event), NULL); |
| 2422 | #endif |
| 2423 | } |
| 2424 | |
| 2425 | static GdkCursor * |
| 2426 | create_blank_pointer(void) |
| 2427 | { |
| 2428 | GdkWindow *root_window = NULL; |
| 2429 | GdkPixmap *blank_mask; |
| 2430 | GdkCursor *cursor; |
| 2431 | GdkColor color = { 0, 0, 0, 0 }; |
| 2432 | char blank_data[] = { 0x0 }; |
| 2433 | |
| 2434 | #ifdef HAVE_GTK_MULTIHEAD |
| 2435 | root_window = gtk_widget_get_root_window(gui.mainwin); |
| 2436 | #endif |
| 2437 | |
| 2438 | /* Create a pseudo blank pointer, which is in fact one pixel by one pixel |
| 2439 | * in size. */ |
| 2440 | blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1); |
| 2441 | cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask, |
| 2442 | &color, &color, 0, 0); |
| 2443 | gdk_bitmap_unref(blank_mask); |
| 2444 | |
| 2445 | return cursor; |
| 2446 | } |
| 2447 | |
| 2448 | #ifdef HAVE_GTK_MULTIHEAD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2449 | static void |
| 2450 | mainwin_screen_changed_cb(GtkWidget *widget, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2451 | GdkScreen *previous_screen UNUSED, |
| 2452 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2453 | { |
| 2454 | if (!gtk_widget_has_screen(widget)) |
| 2455 | return; |
| 2456 | |
| 2457 | /* |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 2458 | * Recreate the invisible mouse cursor. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2459 | */ |
| 2460 | if (gui.blank_pointer != NULL) |
| 2461 | gdk_cursor_unref(gui.blank_pointer); |
| 2462 | |
| 2463 | gui.blank_pointer = create_blank_pointer(); |
| 2464 | |
| 2465 | if (gui.pointer_hidden && gui.drawarea->window != NULL) |
| 2466 | gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer); |
| 2467 | |
| 2468 | /* |
| 2469 | * Create a new PangoContext for this screen, and initialize it |
| 2470 | * with the current font if necessary. |
| 2471 | */ |
| 2472 | if (gui.text_context != NULL) |
| 2473 | g_object_unref(gui.text_context); |
| 2474 | |
| 2475 | gui.text_context = gtk_widget_create_pango_context(widget); |
| 2476 | pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
| 2477 | |
| 2478 | if (gui.norm_font != NULL) |
| 2479 | { |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 2480 | gui_mch_init_font(p_guifont, FALSE); |
Bram Moolenaar | 04a9d45 | 2006-03-27 21:03:26 +0000 | [diff] [blame] | 2481 | gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2482 | } |
| 2483 | } |
| 2484 | #endif /* HAVE_GTK_MULTIHEAD */ |
| 2485 | |
| 2486 | /* |
| 2487 | * After the drawing area comes up, we calculate all colors and create the |
| 2488 | * dummy blank cursor. |
| 2489 | * |
| 2490 | * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the |
| 2491 | * fact that the main VIM engine doesn't take them into account anywhere. |
| 2492 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2493 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2494 | drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2495 | { |
| 2496 | GtkWidget *sbar; |
| 2497 | |
| 2498 | #ifdef FEAT_XIM |
| 2499 | xim_init(); |
| 2500 | #endif |
| 2501 | gui_mch_new_colors(); |
| 2502 | gui.text_gc = gdk_gc_new(gui.drawarea->window); |
| 2503 | |
| 2504 | gui.blank_pointer = create_blank_pointer(); |
| 2505 | if (gui.pointer_hidden) |
| 2506 | gdk_window_set_cursor(widget->window, gui.blank_pointer); |
| 2507 | |
| 2508 | /* get the actual size of the scrollbars, if they are realized */ |
| 2509 | sbar = firstwin->w_scrollbars[SBAR_LEFT].id; |
| 2510 | if (!sbar || (!gui.which_scrollbars[SBAR_LEFT] |
| 2511 | && firstwin->w_scrollbars[SBAR_RIGHT].id)) |
| 2512 | sbar = firstwin->w_scrollbars[SBAR_RIGHT].id; |
| 2513 | if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width) |
| 2514 | gui.scrollbar_width = sbar->allocation.width; |
| 2515 | |
| 2516 | sbar = gui.bottom_sbar.id; |
| 2517 | if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height) |
| 2518 | gui.scrollbar_height = sbar->allocation.height; |
| 2519 | } |
| 2520 | |
| 2521 | /* |
| 2522 | * Properly clean up on shutdown. |
| 2523 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2524 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2525 | drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2526 | { |
| 2527 | /* Don't write messages to the GUI anymore */ |
| 2528 | full_screen = FALSE; |
| 2529 | |
| 2530 | #ifdef FEAT_XIM |
| 2531 | im_shutdown(); |
| 2532 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2533 | if (gui.ascii_glyphs != NULL) |
| 2534 | { |
| 2535 | pango_glyph_string_free(gui.ascii_glyphs); |
| 2536 | gui.ascii_glyphs = NULL; |
| 2537 | } |
| 2538 | if (gui.ascii_font != NULL) |
| 2539 | { |
| 2540 | g_object_unref(gui.ascii_font); |
| 2541 | gui.ascii_font = NULL; |
| 2542 | } |
| 2543 | g_object_unref(gui.text_context); |
| 2544 | gui.text_context = NULL; |
| 2545 | |
| 2546 | g_object_unref(gui.text_gc); |
| 2547 | gui.text_gc = NULL; |
| 2548 | |
| 2549 | gdk_cursor_unref(gui.blank_pointer); |
| 2550 | gui.blank_pointer = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2551 | } |
| 2552 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2553 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2554 | drawarea_style_set_cb(GtkWidget *widget UNUSED, |
| 2555 | GtkStyle *previous_style UNUSED, |
| 2556 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2557 | { |
| 2558 | gui_mch_new_colors(); |
| 2559 | } |
| 2560 | |
| 2561 | /* |
| 2562 | * Callback routine for the "delete_event" signal on the toplevel window. |
| 2563 | * Tries to vim gracefully, or refuses to exit with changed buffers. |
| 2564 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2565 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2566 | delete_event_cb(GtkWidget *widget UNUSED, |
| 2567 | GdkEventAny *event UNUSED, |
| 2568 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2569 | { |
| 2570 | gui_shell_closed(); |
| 2571 | return TRUE; |
| 2572 | } |
| 2573 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2574 | #if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE) |
| 2575 | static int |
| 2576 | get_item_dimensions(GtkWidget *widget, GtkOrientation orientation) |
| 2577 | { |
| 2578 | GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL; |
| 2579 | |
| 2580 | #ifdef FEAT_GUI_GNOME |
| 2581 | if (using_gnome && widget != NULL) |
| 2582 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2583 | GtkWidget *parent; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2584 | BonoboDockItem *dockitem; |
| 2585 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2586 | parent = gtk_widget_get_parent(widget); |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2587 | if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM) |
| 2588 | { |
| 2589 | /* Only menu & toolbar are dock items. Could tabline be? |
| 2590 | * Seem to be only the 2 defined in GNOME */ |
| 2591 | widget = parent; |
| 2592 | dockitem = BONOBO_DOCK_ITEM(widget); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2593 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2594 | if (dockitem == NULL || dockitem->is_floating) |
| 2595 | return 0; |
| 2596 | item_orientation = bonobo_dock_item_get_orientation(dockitem); |
| 2597 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2598 | } |
| 2599 | #endif |
| 2600 | if (widget != NULL |
| 2601 | && item_orientation == orientation |
| 2602 | && GTK_WIDGET_REALIZED(widget) |
| 2603 | && GTK_WIDGET_VISIBLE(widget)) |
| 2604 | { |
| 2605 | if (orientation == GTK_ORIENTATION_HORIZONTAL) |
| 2606 | return widget->allocation.height; |
| 2607 | else |
| 2608 | return widget->allocation.width; |
| 2609 | } |
| 2610 | return 0; |
| 2611 | } |
| 2612 | #endif |
| 2613 | |
| 2614 | static int |
| 2615 | get_menu_tool_width(void) |
| 2616 | { |
| 2617 | int width = 0; |
| 2618 | |
| 2619 | #ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */ |
| 2620 | # ifdef FEAT_MENU |
| 2621 | width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL); |
| 2622 | # endif |
| 2623 | # ifdef FEAT_TOOLBAR |
| 2624 | width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL); |
| 2625 | # endif |
| 2626 | # ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 2627 | if (gui.tabline != NULL) |
| 2628 | width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2629 | # endif |
| 2630 | #endif |
| 2631 | |
| 2632 | return width; |
| 2633 | } |
| 2634 | |
| 2635 | static int |
| 2636 | get_menu_tool_height(void) |
| 2637 | { |
| 2638 | int height = 0; |
| 2639 | |
| 2640 | #ifdef FEAT_MENU |
| 2641 | height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL); |
| 2642 | #endif |
| 2643 | #ifdef FEAT_TOOLBAR |
| 2644 | height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL); |
| 2645 | #endif |
| 2646 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 2647 | if (gui.tabline != NULL) |
| 2648 | height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2649 | #endif |
| 2650 | |
| 2651 | return height; |
| 2652 | } |
| 2653 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2654 | /* This controls whether we can set the real window hints at |
| 2655 | * start-up when in a GtkPlug. |
| 2656 | * 0 = normal processing (default) |
| 2657 | * 1 = init. hints set, no-one's tried to reset since last check |
| 2658 | * 2 = init. hints set, attempt made to change hints |
| 2659 | */ |
| 2660 | static int init_window_hints_state = 0; |
| 2661 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2662 | static void |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2663 | update_window_manager_hints(int force_width, int force_height) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2664 | { |
| 2665 | static int old_width = 0; |
| 2666 | static int old_height = 0; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2667 | static int old_min_width = 0; |
| 2668 | static int old_min_height = 0; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2669 | static int old_char_width = 0; |
| 2670 | static int old_char_height = 0; |
| 2671 | |
| 2672 | int width; |
| 2673 | int height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2674 | int min_width; |
| 2675 | int min_height; |
| 2676 | |
| 2677 | /* At start-up, don't try to set the hints until the initial |
| 2678 | * values have been used (those that dictate our initial size) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2679 | * Let forced (i.e., correct) values through always. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2680 | */ |
| 2681 | if (!(force_width && force_height) && init_window_hints_state > 0) |
| 2682 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2683 | /* Don't do it! */ |
| 2684 | init_window_hints_state = 2; |
| 2685 | return; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2686 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2687 | |
| 2688 | /* This also needs to be done when the main window isn't there yet, |
| 2689 | * otherwise the hints don't work. */ |
| 2690 | width = gui_get_base_width(); |
| 2691 | height = gui_get_base_height(); |
| 2692 | # ifdef FEAT_MENU |
| 2693 | height += tabline_height() * gui.char_height; |
| 2694 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2695 | width += get_menu_tool_width(); |
| 2696 | height += get_menu_tool_height(); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2697 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2698 | /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 2699 | * their actual widget size. When we set our size ourselves (e.g., |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2700 | * 'set columns=' or init. -geom) we briefly set the min. to the size |
| 2701 | * we wish to be instead of the legitimate minimum so that we actually |
| 2702 | * resize correctly. |
| 2703 | */ |
| 2704 | if (force_width && force_height) |
| 2705 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2706 | min_width = force_width; |
| 2707 | min_height = force_height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2708 | } |
| 2709 | else |
| 2710 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2711 | min_width = width + MIN_COLUMNS * gui.char_width; |
| 2712 | min_height = height + MIN_LINES * gui.char_height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2713 | } |
| 2714 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2715 | /* Avoid an expose event when the size didn't change. */ |
| 2716 | if (width != old_width |
| 2717 | || height != old_height |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2718 | || min_width != old_min_width |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2719 | || min_height != old_min_height |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2720 | || gui.char_width != old_char_width |
| 2721 | || gui.char_height != old_char_height) |
| 2722 | { |
| 2723 | GdkGeometry geometry; |
| 2724 | GdkWindowHints geometry_mask; |
| 2725 | |
| 2726 | geometry.width_inc = gui.char_width; |
| 2727 | geometry.height_inc = gui.char_height; |
| 2728 | geometry.base_width = width; |
| 2729 | geometry.base_height = height; |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2730 | geometry.min_width = min_width; |
| 2731 | geometry.min_height = min_height; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2732 | geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC |
| 2733 | |GDK_HINT_MIN_SIZE; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2734 | /* Using gui.formwin as geometry widget doesn't work as expected |
| 2735 | * with GTK+ 2 -- dunno why. Presumably all the resizing hacks |
| 2736 | * in Vim confuse GTK+. */ |
| 2737 | gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin, |
| 2738 | &geometry, geometry_mask); |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2739 | old_width = width; |
| 2740 | old_height = height; |
| 2741 | old_min_width = min_width; |
| 2742 | old_min_height = min_height; |
| 2743 | old_char_width = gui.char_width; |
| 2744 | old_char_height = gui.char_height; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2745 | } |
| 2746 | } |
| 2747 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2748 | #ifdef FEAT_TOOLBAR |
| 2749 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2750 | /* |
| 2751 | * This extra effort wouldn't be necessary if we only used stock icons in the |
| 2752 | * toolbar, as we do for all builtin icons. But user-defined toolbar icons |
| 2753 | * shouldn't be treated differently, thus we do need this. |
| 2754 | */ |
| 2755 | static void |
| 2756 | icon_size_changed_foreach(GtkWidget *widget, gpointer user_data) |
| 2757 | { |
| 2758 | if (GTK_IS_IMAGE(widget)) |
| 2759 | { |
| 2760 | GtkImage *image = (GtkImage *)widget; |
| 2761 | |
| 2762 | /* User-defined icons are stored in a GtkIconSet */ |
| 2763 | if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET) |
| 2764 | { |
| 2765 | GtkIconSet *icon_set; |
| 2766 | GtkIconSize icon_size; |
| 2767 | |
| 2768 | gtk_image_get_icon_set(image, &icon_set, &icon_size); |
| 2769 | icon_size = (GtkIconSize)(long)user_data; |
| 2770 | |
| 2771 | gtk_icon_set_ref(icon_set); |
| 2772 | gtk_image_set_from_icon_set(image, icon_set, icon_size); |
| 2773 | gtk_icon_set_unref(icon_set); |
| 2774 | } |
| 2775 | } |
| 2776 | else if (GTK_IS_CONTAINER(widget)) |
| 2777 | { |
| 2778 | gtk_container_foreach((GtkContainer *)widget, |
| 2779 | &icon_size_changed_foreach, |
| 2780 | user_data); |
| 2781 | } |
| 2782 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2783 | |
| 2784 | static void |
| 2785 | set_toolbar_style(GtkToolbar *toolbar) |
| 2786 | { |
| 2787 | GtkToolbarStyle style; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2788 | GtkIconSize size; |
| 2789 | GtkIconSize oldsize; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2790 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2791 | if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
| 2792 | == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
| 2793 | style = GTK_TOOLBAR_BOTH_HORIZ; |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 2794 | else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2795 | == (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
| 2796 | style = GTK_TOOLBAR_BOTH; |
| 2797 | else if (toolbar_flags & TOOLBAR_TEXT) |
| 2798 | style = GTK_TOOLBAR_TEXT; |
| 2799 | else |
| 2800 | style = GTK_TOOLBAR_ICONS; |
| 2801 | |
| 2802 | gtk_toolbar_set_style(toolbar, style); |
| 2803 | gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0); |
| 2804 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2805 | switch (tbis_flags) |
| 2806 | { |
| 2807 | case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break; |
| 2808 | case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break; |
| 2809 | case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break; |
| 2810 | case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break; |
| 2811 | default: size = GTK_ICON_SIZE_INVALID; break; |
| 2812 | } |
| 2813 | oldsize = gtk_toolbar_get_icon_size(toolbar); |
| 2814 | |
| 2815 | if (size == GTK_ICON_SIZE_INVALID) |
| 2816 | { |
| 2817 | /* Let global user preferences decide the icon size. */ |
| 2818 | gtk_toolbar_unset_icon_size(toolbar); |
| 2819 | size = gtk_toolbar_get_icon_size(toolbar); |
| 2820 | } |
| 2821 | if (size != oldsize) |
| 2822 | { |
| 2823 | gtk_container_foreach(GTK_CONTAINER(toolbar), |
| 2824 | &icon_size_changed_foreach, |
| 2825 | GINT_TO_POINTER((int)size)); |
| 2826 | } |
| 2827 | gtk_toolbar_set_icon_size(toolbar, size); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2828 | } |
| 2829 | |
| 2830 | #endif /* FEAT_TOOLBAR */ |
| 2831 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2832 | #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
| 2833 | static int ignore_tabline_evt = FALSE; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2834 | static GtkWidget *tabline_menu; |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 2835 | static GtkTooltips *tabline_tooltip; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2836 | static int clicked_page; /* page clicked in tab line */ |
| 2837 | |
| 2838 | /* |
| 2839 | * Handle selecting an item in the tab line popup menu. |
| 2840 | */ |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2841 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2842 | tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data) |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2843 | { |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2844 | /* Add the string cmd into input buffer */ |
Bram Moolenaar | c6fe919 | 2006-04-09 21:54:49 +0000 | [diff] [blame] | 2845 | send_tabline_menu_event(clicked_page, (int)(long)user_data); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2846 | } |
| 2847 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 2848 | static void |
| 2849 | add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp) |
| 2850 | { |
| 2851 | GtkWidget *item; |
| 2852 | char_u *utf_text; |
| 2853 | |
| 2854 | utf_text = CONVERT_TO_UTF8(text); |
| 2855 | item = gtk_menu_item_new_with_label((const char *)utf_text); |
| 2856 | gtk_widget_show(item); |
| 2857 | CONVERT_TO_UTF8_FREE(utf_text); |
| 2858 | |
| 2859 | gtk_container_add(GTK_CONTAINER(menu), item); |
| 2860 | gtk_signal_connect(GTK_OBJECT(item), "activate", |
| 2861 | GTK_SIGNAL_FUNC(tabline_menu_handler), |
Bram Moolenaar | 47b46d7 | 2008-07-02 19:05:48 +0000 | [diff] [blame] | 2862 | (gpointer)(long)resp); |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 2863 | } |
| 2864 | |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2865 | /* |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2866 | * Create a menu for the tab line. |
| 2867 | */ |
| 2868 | static GtkWidget * |
| 2869 | create_tabline_menu(void) |
| 2870 | { |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 2871 | GtkWidget *menu; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2872 | |
| 2873 | menu = gtk_menu_new(); |
Bram Moolenaar | 7098ee5 | 2015-06-09 19:14:24 +0200 | [diff] [blame] | 2874 | if (first_tabpage->tp_next != NULL) |
| 2875 | add_tabline_menu_item(menu, (char_u *)_("Close tab"), |
| 2876 | TABLINE_MENU_CLOSE); |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 2877 | add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW); |
| 2878 | add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2879 | |
| 2880 | return menu; |
| 2881 | } |
| 2882 | |
| 2883 | static gboolean |
| 2884 | on_tabline_menu(GtkWidget *widget, GdkEvent *event) |
| 2885 | { |
| 2886 | /* Was this button press event ? */ |
| 2887 | if (event->type == GDK_BUTTON_PRESS) |
| 2888 | { |
| 2889 | GdkEventButton *bevent = (GdkEventButton *)event; |
| 2890 | int x = bevent->x; |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 2891 | int y = bevent->y; |
| 2892 | GtkWidget *tabwidget; |
| 2893 | GdkWindow *tabwin; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2894 | |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 2895 | /* When ignoring events return TRUE so that the selected page doesn't |
| 2896 | * change. */ |
| 2897 | if (hold_gui_events |
| 2898 | # ifdef FEAT_CMDWIN |
| 2899 | || cmdwin_type != 0 |
| 2900 | # endif |
| 2901 | ) |
| 2902 | return TRUE; |
| 2903 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 2904 | tabwin = gdk_window_at_pointer(&x, &y); |
| 2905 | gdk_window_get_user_data(tabwin, (gpointer)&tabwidget); |
| 2906 | clicked_page = (int)(long)gtk_object_get_user_data( |
| 2907 | GTK_OBJECT(tabwidget)); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2908 | |
| 2909 | /* If the event was generated for 3rd button popup the menu. */ |
| 2910 | if (bevent->button == 3) |
| 2911 | { |
| 2912 | gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL, |
| 2913 | bevent->button, bevent->time); |
| 2914 | /* We handled the event. */ |
| 2915 | return TRUE; |
| 2916 | } |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 2917 | else if (bevent->button == 1) |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 2918 | { |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 2919 | if (clicked_page == 0) |
| 2920 | { |
Bram Moolenaar | 0735454 | 2007-09-15 12:07:46 +0000 | [diff] [blame] | 2921 | /* Click after all tabs moves to next tab page. When "x" is |
| 2922 | * small guess it's the left button. */ |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 2923 | send_tabline_event(x < 50 ? -1 : 0); |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 2924 | } |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 2925 | } |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2926 | } |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 2927 | |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 2928 | /* We didn't handle the event. */ |
| 2929 | return FALSE; |
| 2930 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2931 | |
| 2932 | /* |
| 2933 | * Handle selecting one of the tabs. |
| 2934 | */ |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2935 | static void |
| 2936 | on_select_tab( |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2937 | GtkNotebook *notebook UNUSED, |
| 2938 | GtkNotebookPage *page UNUSED, |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 2939 | gint idx, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2940 | gpointer data UNUSED) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2941 | { |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2942 | if (!ignore_tabline_evt) |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 2943 | { |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 2944 | send_tabline_event(idx + 1); |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 2945 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2946 | } |
| 2947 | |
| 2948 | /* |
| 2949 | * Show or hide the tabline. |
| 2950 | */ |
| 2951 | void |
| 2952 | gui_mch_show_tabline(int showit) |
| 2953 | { |
| 2954 | if (gui.tabline == NULL) |
| 2955 | return; |
| 2956 | |
| 2957 | if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline))) |
| 2958 | { |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 2959 | /* Note: this may cause a resize event */ |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2960 | gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2961 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 2962 | if (showit) |
| 2963 | GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2964 | } |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 2965 | |
| 2966 | gui_mch_update(); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2967 | } |
| 2968 | |
| 2969 | /* |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 2970 | * Return TRUE when tabline is displayed. |
| 2971 | */ |
| 2972 | int |
| 2973 | gui_mch_showing_tabline(void) |
| 2974 | { |
| 2975 | return gui.tabline != NULL |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 2976 | && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)); |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 2977 | } |
| 2978 | |
| 2979 | /* |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2980 | * Update the labels of the tabline. |
| 2981 | */ |
| 2982 | void |
| 2983 | gui_mch_update_tabline(void) |
| 2984 | { |
| 2985 | GtkWidget *page; |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 2986 | GtkWidget *event_box; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2987 | GtkWidget *label; |
| 2988 | tabpage_T *tp; |
| 2989 | int nr = 0; |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 2990 | int tab_num; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2991 | int curtabidx = 0; |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 2992 | char_u *labeltext; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2993 | |
| 2994 | if (gui.tabline == NULL) |
| 2995 | return; |
| 2996 | |
| 2997 | ignore_tabline_evt = TRUE; |
| 2998 | |
| 2999 | /* Add a label for each tab page. They all contain the same text area. */ |
| 3000 | for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) |
| 3001 | { |
| 3002 | if (tp == curtab) |
| 3003 | curtabidx = nr; |
| 3004 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3005 | tab_num = nr + 1; |
| 3006 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3007 | page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr); |
| 3008 | if (page == NULL) |
| 3009 | { |
| 3010 | /* Add notebook page */ |
| 3011 | page = gtk_vbox_new(FALSE, 0); |
| 3012 | gtk_widget_show(page); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3013 | event_box = gtk_event_box_new(); |
| 3014 | gtk_widget_show(event_box); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3015 | label = gtk_label_new("-Empty-"); |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3016 | gtk_misc_set_padding(GTK_MISC(label), 2, 2); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3017 | gtk_container_add(GTK_CONTAINER(event_box), label); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3018 | gtk_widget_show(label); |
| 3019 | gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline), |
| 3020 | page, |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3021 | event_box, |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3022 | nr++); |
| 3023 | } |
| 3024 | |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3025 | event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page); |
Bram Moolenaar | 47b46d7 | 2008-07-02 19:05:48 +0000 | [diff] [blame] | 3026 | gtk_object_set_user_data(GTK_OBJECT(event_box), |
| 3027 | (gpointer)(long)tab_num); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3028 | label = GTK_BIN(event_box)->child; |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 3029 | get_tabline_label(tp, FALSE); |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3030 | labeltext = CONVERT_TO_UTF8(NameBuff); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3031 | gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext); |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3032 | CONVERT_TO_UTF8_FREE(labeltext); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3033 | |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3034 | get_tabline_label(tp, TRUE); |
| 3035 | labeltext = CONVERT_TO_UTF8(NameBuff); |
| 3036 | gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box, |
| 3037 | (const char *)labeltext, NULL); |
| 3038 | CONVERT_TO_UTF8_FREE(labeltext); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3039 | } |
| 3040 | |
| 3041 | /* Remove any old labels. */ |
| 3042 | while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL) |
| 3043 | gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr); |
| 3044 | |
| 3045 | if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3046 | gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3047 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3048 | /* Make sure everything is in place before drawing text. */ |
| 3049 | gui_mch_update(); |
| 3050 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3051 | ignore_tabline_evt = FALSE; |
| 3052 | } |
| 3053 | |
| 3054 | /* |
| 3055 | * Set the current tab to "nr". First tab is 1. |
| 3056 | */ |
| 3057 | void |
| 3058 | gui_mch_set_curtab(nr) |
| 3059 | int nr; |
| 3060 | { |
| 3061 | if (gui.tabline == NULL) |
| 3062 | return; |
| 3063 | |
| 3064 | ignore_tabline_evt = TRUE; |
| 3065 | if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3066 | gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3067 | ignore_tabline_evt = FALSE; |
| 3068 | } |
| 3069 | |
| 3070 | #endif /* FEAT_GUI_TABLINE */ |
| 3071 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3072 | /* |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3073 | * Add selection targets for PRIMARY and CLIPBOARD selections. |
| 3074 | */ |
| 3075 | void |
| 3076 | gui_gtk_set_selection_targets(void) |
| 3077 | { |
| 3078 | int i, j = 0; |
| 3079 | int n_targets = N_SELECTION_TARGETS; |
| 3080 | GtkTargetEntry targets[N_SELECTION_TARGETS]; |
| 3081 | |
| 3082 | for (i = 0; i < (int)N_SELECTION_TARGETS; ++i) |
| 3083 | { |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 3084 | /* OpenOffice tries to use TARGET_HTML and fails when we don't |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3085 | * return something, instead of trying another target. Therefore only |
| 3086 | * offer TARGET_HTML when it works. */ |
| 3087 | if (!clip_html && selection_targets[i].info == TARGET_HTML) |
| 3088 | n_targets--; |
| 3089 | else |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3090 | targets[j++] = selection_targets[i]; |
| 3091 | } |
| 3092 | |
| 3093 | gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY); |
| 3094 | gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom); |
| 3095 | gtk_selection_add_targets(gui.drawarea, |
| 3096 | (GdkAtom)GDK_SELECTION_PRIMARY, |
| 3097 | targets, n_targets); |
| 3098 | gtk_selection_add_targets(gui.drawarea, |
| 3099 | (GdkAtom)clip_plus.gtk_sel_atom, |
| 3100 | targets, n_targets); |
| 3101 | } |
| 3102 | |
| 3103 | /* |
| 3104 | * Set up for receiving DND items. |
| 3105 | */ |
| 3106 | void |
| 3107 | gui_gtk_set_dnd_targets(void) |
| 3108 | { |
| 3109 | int i, j = 0; |
| 3110 | int n_targets = N_DND_TARGETS; |
| 3111 | GtkTargetEntry targets[N_DND_TARGETS]; |
| 3112 | |
| 3113 | for (i = 0; i < (int)N_DND_TARGETS; ++i) |
| 3114 | { |
Bram Moolenaar | b931d74 | 2011-10-26 11:36:25 +0200 | [diff] [blame] | 3115 | if (!clip_html && dnd_targets[i].info == TARGET_HTML) |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3116 | n_targets--; |
| 3117 | else |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3118 | targets[j++] = dnd_targets[i]; |
| 3119 | } |
| 3120 | |
| 3121 | gtk_drag_dest_unset(gui.drawarea); |
| 3122 | gtk_drag_dest_set(gui.drawarea, |
| 3123 | GTK_DEST_DEFAULT_ALL, |
| 3124 | targets, n_targets, |
Bram Moolenaar | ba7cc9f | 2011-02-25 17:10:27 +0100 | [diff] [blame] | 3125 | GDK_ACTION_COPY | GDK_ACTION_MOVE); |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3126 | } |
| 3127 | |
| 3128 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3129 | * Initialize the GUI. Create all the windows, set up all the callbacks etc. |
| 3130 | * Returns OK for success, FAIL when the GUI can't be started. |
| 3131 | */ |
| 3132 | int |
| 3133 | gui_mch_init(void) |
| 3134 | { |
| 3135 | GtkWidget *vbox; |
| 3136 | |
| 3137 | #ifdef FEAT_GUI_GNOME |
| 3138 | /* Initialize the GNOME libraries. gnome_program_init()/gnome_init() |
| 3139 | * exits on failure, but that's a non-issue because we already called |
| 3140 | * gtk_init_check() in gui_mch_init_check(). */ |
| 3141 | if (using_gnome) |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3142 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3143 | gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT, |
| 3144 | LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL); |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3145 | # if defined(FEAT_FLOAT) && defined(LC_NUMERIC) |
Bram Moolenaar | 1ff32c5 | 2014-04-29 15:11:43 +0200 | [diff] [blame] | 3146 | { |
| 3147 | char *p = setlocale(LC_NUMERIC, NULL); |
| 3148 | |
| 3149 | /* Make sure strtod() uses a decimal point, not a comma. Gnome |
| 3150 | * init may change it. */ |
| 3151 | if (p == NULL || strcmp(p, "C") != 0) |
| 3152 | setlocale(LC_NUMERIC, "C"); |
| 3153 | } |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3154 | # endif |
| 3155 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3156 | #endif |
| 3157 | vim_free(gui_argv); |
| 3158 | gui_argv = NULL; |
| 3159 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3160 | #if GLIB_CHECK_VERSION(2,1,3) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3161 | /* Set the human-readable application name */ |
| 3162 | g_set_application_name("Vim"); |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3163 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3164 | /* |
| 3165 | * Force UTF-8 output no matter what the value of 'encoding' is. |
| 3166 | * did_set_string_option() in option.c prohibits changing 'termencoding' |
| 3167 | * to something else than UTF-8 if the GUI is in use. |
| 3168 | */ |
| 3169 | set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0); |
| 3170 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3171 | #ifdef FEAT_TOOLBAR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3172 | gui_gtk_register_stock_icons(); |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3173 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3174 | /* FIXME: Need to install the classic icons and a gtkrc.classic file. |
| 3175 | * The hard part is deciding install locations and the Makefile magic. */ |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3176 | #if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3177 | gtk_rc_parse("gtkrc"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3178 | #endif |
| 3179 | |
| 3180 | /* Initialize values */ |
| 3181 | gui.border_width = 2; |
| 3182 | gui.scrollbar_width = SB_DEFAULT_WIDTH; |
| 3183 | gui.scrollbar_height = SB_DEFAULT_WIDTH; |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 3184 | /* LINTED: avoid warning: conversion to 'unsigned long' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3185 | gui.fgcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 3186 | /* LINTED: avoid warning: conversion to 'unsigned long' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3187 | gui.bgcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 3188 | /* LINTED: avoid warning: conversion to 'unsigned long' */ |
| 3189 | gui.spcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3190 | |
| 3191 | /* Initialise atoms */ |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 3192 | html_atom = gdk_atom_intern("text/html", FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3193 | utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3194 | |
| 3195 | /* Set default foreground and background colors. */ |
| 3196 | gui.norm_pixel = gui.def_norm_pixel; |
| 3197 | gui.back_pixel = gui.def_back_pixel; |
| 3198 | |
| 3199 | if (gtk_socket_id != 0) |
| 3200 | { |
| 3201 | GtkWidget *plug; |
| 3202 | |
| 3203 | /* Use GtkSocket from another app. */ |
| 3204 | #ifdef HAVE_GTK_MULTIHEAD |
| 3205 | plug = gtk_plug_new_for_display(gdk_display_get_default(), |
| 3206 | gtk_socket_id); |
| 3207 | #else |
| 3208 | plug = gtk_plug_new(gtk_socket_id); |
| 3209 | #endif |
| 3210 | if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL) |
| 3211 | { |
| 3212 | gui.mainwin = plug; |
| 3213 | } |
| 3214 | else |
| 3215 | { |
| 3216 | g_warning("Connection to GTK+ socket (ID %u) failed", |
| 3217 | (unsigned int)gtk_socket_id); |
| 3218 | /* Pretend we never wanted it if it failed (get own window) */ |
| 3219 | gtk_socket_id = 0; |
| 3220 | } |
| 3221 | } |
| 3222 | |
| 3223 | if (gtk_socket_id == 0) |
| 3224 | { |
| 3225 | #ifdef FEAT_GUI_GNOME |
| 3226 | if (using_gnome) |
| 3227 | { |
| 3228 | gui.mainwin = gnome_app_new("Vim", NULL); |
| 3229 | # ifdef USE_XSMP |
| 3230 | /* Use the GNOME save-yourself functionality now. */ |
| 3231 | xsmp_close(); |
| 3232 | # endif |
| 3233 | } |
| 3234 | else |
| 3235 | #endif |
| 3236 | gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
| 3237 | } |
| 3238 | |
| 3239 | gtk_widget_set_name(gui.mainwin, "vim-main-window"); |
| 3240 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3241 | /* Create the PangoContext used for drawing all text. */ |
| 3242 | gui.text_context = gtk_widget_create_pango_context(gui.mainwin); |
| 3243 | pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3244 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3245 | gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0); |
| 3246 | gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK); |
| 3247 | |
| 3248 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event", |
| 3249 | GTK_SIGNAL_FUNC(&delete_event_cb), NULL); |
| 3250 | |
| 3251 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize", |
| 3252 | GTK_SIGNAL_FUNC(&mainwin_realize), NULL); |
| 3253 | #ifdef HAVE_GTK_MULTIHEAD |
| 3254 | g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed", |
| 3255 | G_CALLBACK(&mainwin_screen_changed_cb), NULL); |
| 3256 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3257 | gui.accel_group = gtk_accel_group_new(); |
| 3258 | gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3259 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3260 | /* A vertical box holds the menubar, toolbar and main text window. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3261 | vbox = gtk_vbox_new(FALSE, 0); |
| 3262 | |
| 3263 | #ifdef FEAT_GUI_GNOME |
| 3264 | if (using_gnome) |
| 3265 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3266 | # if defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3267 | /* automagically restore menubar/toolbar placement */ |
| 3268 | gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE); |
| 3269 | # endif |
| 3270 | gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox); |
| 3271 | } |
| 3272 | else |
| 3273 | #endif |
| 3274 | { |
| 3275 | gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox); |
| 3276 | gtk_widget_show(vbox); |
| 3277 | } |
| 3278 | |
| 3279 | #ifdef FEAT_MENU |
| 3280 | /* |
| 3281 | * Create the menubar and handle |
| 3282 | */ |
| 3283 | gui.menubar = gtk_menu_bar_new(); |
| 3284 | gtk_widget_set_name(gui.menubar, "vim-menubar"); |
| 3285 | |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3286 | /* Avoid that GTK takes <F10> away from us. */ |
| 3287 | { |
| 3288 | GtkSettings *gtk_settings; |
| 3289 | |
| 3290 | gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default()); |
| 3291 | g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL); |
| 3292 | } |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3293 | |
| 3294 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3295 | # ifdef FEAT_GUI_GNOME |
| 3296 | if (using_gnome) |
| 3297 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3298 | BonoboDockItem *dockitem; |
| 3299 | |
| 3300 | gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar)); |
| 3301 | dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), |
| 3302 | GNOME_APP_MENUBAR_NAME); |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 3303 | /* We don't want the menu to float. */ |
| 3304 | bonobo_dock_item_set_behavior(dockitem, |
| 3305 | bonobo_dock_item_get_behavior(dockitem) |
| 3306 | | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3307 | gui.menubar_h = GTK_WIDGET(dockitem); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3308 | } |
| 3309 | else |
| 3310 | # endif /* FEAT_GUI_GNOME */ |
| 3311 | { |
Bram Moolenaar | 18144c8 | 2006-04-12 21:52:12 +0000 | [diff] [blame] | 3312 | /* Always show the menubar, otherwise <F10> doesn't work. It may be |
| 3313 | * disabled in gui_init() later. */ |
| 3314 | gtk_widget_show(gui.menubar); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3315 | gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0); |
| 3316 | } |
| 3317 | #endif /* FEAT_MENU */ |
| 3318 | |
| 3319 | #ifdef FEAT_TOOLBAR |
| 3320 | /* |
| 3321 | * Create the toolbar and handle |
| 3322 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3323 | /* some aesthetics on the toolbar */ |
| 3324 | gtk_rc_parse_string( |
| 3325 | "style \"vim-toolbar-style\" {\n" |
| 3326 | " GtkToolbar::button_relief = GTK_RELIEF_NONE\n" |
| 3327 | "}\n" |
| 3328 | "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n"); |
| 3329 | gui.toolbar = gtk_toolbar_new(); |
| 3330 | gtk_widget_set_name(gui.toolbar, "vim-toolbar"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3331 | set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); |
| 3332 | |
| 3333 | # ifdef FEAT_GUI_GNOME |
| 3334 | if (using_gnome) |
| 3335 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3336 | BonoboDockItem *dockitem; |
| 3337 | |
| 3338 | gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar)); |
| 3339 | dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), |
| 3340 | GNOME_APP_TOOLBAR_NAME); |
| 3341 | gui.toolbar_h = GTK_WIDGET(dockitem); |
Bram Moolenaar | e580b0c | 2006-03-21 21:33:03 +0000 | [diff] [blame] | 3342 | /* 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] | 3343 | * fixed let's disallow floating. */ |
Bram Moolenaar | e580b0c | 2006-03-21 21:33:03 +0000 | [diff] [blame] | 3344 | bonobo_dock_item_set_behavior(dockitem, |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 3345 | bonobo_dock_item_get_behavior(dockitem) |
| 3346 | | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3347 | gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3348 | } |
| 3349 | else |
| 3350 | # endif /* FEAT_GUI_GNOME */ |
| 3351 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3352 | if (vim_strchr(p_go, GO_TOOLBAR) != NULL |
| 3353 | && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) |
| 3354 | gtk_widget_show(gui.toolbar); |
| 3355 | gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0); |
| 3356 | } |
| 3357 | #endif /* FEAT_TOOLBAR */ |
| 3358 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3359 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3360 | /* |
| 3361 | * Use a Notebook for the tab pages labels. The labels are hidden by |
| 3362 | * default. |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3363 | */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3364 | gui.tabline = gtk_notebook_new(); |
| 3365 | gtk_widget_show(gui.tabline); |
| 3366 | gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0); |
| 3367 | gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE); |
| 3368 | gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE); |
Bram Moolenaar | 4a85b41 | 2006-04-23 22:40:29 +0000 | [diff] [blame] | 3369 | gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE); |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3370 | gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3371 | |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3372 | tabline_tooltip = gtk_tooltips_new(); |
| 3373 | gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip)); |
| 3374 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3375 | { |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3376 | GtkWidget *page, *label, *event_box; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3377 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3378 | /* Add the first tab. */ |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3379 | page = gtk_vbox_new(FALSE, 0); |
| 3380 | gtk_widget_show(page); |
| 3381 | gtk_container_add(GTK_CONTAINER(gui.tabline), page); |
| 3382 | label = gtk_label_new("-Empty-"); |
| 3383 | gtk_widget_show(label); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3384 | event_box = gtk_event_box_new(); |
| 3385 | gtk_widget_show(event_box); |
Bram Moolenaar | 47b46d7 | 2008-07-02 19:05:48 +0000 | [diff] [blame] | 3386 | gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L); |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3387 | gtk_misc_set_padding(GTK_MISC(label), 2, 2); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3388 | gtk_container_add(GTK_CONTAINER(event_box), label); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3389 | gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box); |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3390 | } |
Bram Moolenaar | 54a709e | 2006-05-04 21:57:11 +0000 | [diff] [blame] | 3391 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3392 | gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page", |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3393 | GTK_SIGNAL_FUNC(on_select_tab), NULL); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3394 | |
| 3395 | /* Create a popup menu for the tab line and connect it. */ |
| 3396 | tabline_menu = create_tabline_menu(); |
| 3397 | gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event", |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3398 | GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu)); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3399 | #endif |
| 3400 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3401 | gui.formwin = gtk_form_new(); |
| 3402 | gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0); |
| 3403 | gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK); |
| 3404 | |
| 3405 | gui.drawarea = gtk_drawing_area_new(); |
| 3406 | |
| 3407 | /* Determine which events we will filter. */ |
| 3408 | gtk_widget_set_events(gui.drawarea, |
| 3409 | GDK_EXPOSURE_MASK | |
| 3410 | GDK_ENTER_NOTIFY_MASK | |
| 3411 | GDK_LEAVE_NOTIFY_MASK | |
| 3412 | GDK_BUTTON_PRESS_MASK | |
| 3413 | GDK_BUTTON_RELEASE_MASK | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3414 | GDK_SCROLL_MASK | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3415 | GDK_KEY_PRESS_MASK | |
| 3416 | GDK_KEY_RELEASE_MASK | |
| 3417 | GDK_POINTER_MOTION_MASK | |
| 3418 | GDK_POINTER_MOTION_HINT_MASK); |
| 3419 | |
| 3420 | gtk_widget_show(gui.drawarea); |
| 3421 | gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0); |
| 3422 | gtk_widget_show(gui.formwin); |
| 3423 | gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0); |
| 3424 | |
| 3425 | /* For GtkSockets, key-presses must go to the focus widget (drawarea) |
| 3426 | * and not the window. */ |
| 3427 | gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin) |
| 3428 | : GTK_OBJECT(gui.drawarea), |
| 3429 | "key_press_event", |
| 3430 | GTK_SIGNAL_FUNC(key_press_event), NULL); |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3431 | #if defined(FEAT_XIM) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3432 | /* Also forward key release events for the benefit of GTK+ 2 input |
| 3433 | * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */ |
| 3434 | g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) |
| 3435 | : G_OBJECT(gui.drawarea), |
| 3436 | "key_release_event", |
| 3437 | G_CALLBACK(&key_release_event), NULL); |
| 3438 | #endif |
| 3439 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize", |
| 3440 | GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL); |
| 3441 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize", |
| 3442 | GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL); |
| 3443 | |
| 3444 | gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set", |
| 3445 | GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL); |
| 3446 | |
| 3447 | gui.visibility = GDK_VISIBILITY_UNOBSCURED; |
| 3448 | |
| 3449 | #if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) |
| 3450 | wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE); |
| 3451 | save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE); |
| 3452 | #endif |
| 3453 | |
| 3454 | if (gtk_socket_id != 0) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3455 | /* make sure keyboard input can go to the drawarea */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3456 | GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS); |
| 3457 | |
| 3458 | /* |
| 3459 | * Set clipboard specific atoms |
| 3460 | */ |
| 3461 | vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3462 | vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3463 | clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY; |
| 3464 | clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE); |
| 3465 | |
| 3466 | /* |
| 3467 | * Start out by adding the configured border width into the border offset. |
| 3468 | */ |
| 3469 | gui.border_offset = gui.border_width; |
| 3470 | |
| 3471 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event", |
| 3472 | GTK_SIGNAL_FUNC(visibility_event), NULL); |
| 3473 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event", |
| 3474 | GTK_SIGNAL_FUNC(expose_event), NULL); |
| 3475 | |
| 3476 | /* |
| 3477 | * Only install these enter/leave callbacks when 'p' in 'guioptions'. |
| 3478 | * Only needed for some window managers. |
| 3479 | */ |
| 3480 | if (vim_strchr(p_go, GO_POINTER) != NULL) |
| 3481 | { |
| 3482 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event", |
| 3483 | GTK_SIGNAL_FUNC(leave_notify_event), NULL); |
| 3484 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event", |
| 3485 | GTK_SIGNAL_FUNC(enter_notify_event), NULL); |
| 3486 | } |
| 3487 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3488 | /* Real windows can get focus ... GtkPlug, being a mere container can't, |
| 3489 | * only its widgets. Arguably, this could be common code and we not use |
| 3490 | * the window focus at all, but let's be safe. |
| 3491 | */ |
| 3492 | if (gtk_socket_id == 0) |
| 3493 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3494 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event", |
| 3495 | GTK_SIGNAL_FUNC(focus_out_event), NULL); |
| 3496 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event", |
| 3497 | GTK_SIGNAL_FUNC(focus_in_event), NULL); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3498 | } |
| 3499 | else |
| 3500 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3501 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event", |
| 3502 | GTK_SIGNAL_FUNC(focus_out_event), NULL); |
| 3503 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event", |
| 3504 | GTK_SIGNAL_FUNC(focus_in_event), NULL); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3505 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3506 | gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event", |
| 3507 | GTK_SIGNAL_FUNC(focus_out_event), NULL); |
| 3508 | gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event", |
| 3509 | GTK_SIGNAL_FUNC(focus_in_event), NULL); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3510 | #endif /* FEAT_GUI_TABLINE */ |
| 3511 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3512 | |
| 3513 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event", |
| 3514 | GTK_SIGNAL_FUNC(motion_notify_event), NULL); |
| 3515 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event", |
| 3516 | GTK_SIGNAL_FUNC(button_press_event), NULL); |
| 3517 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event", |
| 3518 | GTK_SIGNAL_FUNC(button_release_event), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3519 | g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event", |
| 3520 | G_CALLBACK(&scroll_event), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3521 | |
| 3522 | /* |
| 3523 | * Add selection handler functions. |
| 3524 | */ |
| 3525 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event", |
| 3526 | GTK_SIGNAL_FUNC(selection_clear_event), NULL); |
| 3527 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received", |
| 3528 | GTK_SIGNAL_FUNC(selection_received_cb), NULL); |
| 3529 | |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3530 | gui_gtk_set_selection_targets(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3531 | |
| 3532 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get", |
| 3533 | GTK_SIGNAL_FUNC(selection_get_cb), NULL); |
| 3534 | |
| 3535 | /* Pretend we don't have input focus, we will get an event if we do. */ |
| 3536 | gui.in_focus = FALSE; |
| 3537 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3538 | return OK; |
| 3539 | } |
| 3540 | |
| 3541 | #if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO) |
| 3542 | /* |
| 3543 | * This is called from gui_start() after a fork() has been done. |
| 3544 | * We have to tell the session manager our new PID. |
| 3545 | */ |
| 3546 | void |
| 3547 | gui_mch_forked(void) |
| 3548 | { |
| 3549 | if (using_gnome) |
| 3550 | { |
| 3551 | GnomeClient *client; |
| 3552 | |
| 3553 | client = gnome_master_client(); |
| 3554 | |
| 3555 | if (client != NULL) |
| 3556 | gnome_client_set_process_id(client, getpid()); |
| 3557 | } |
| 3558 | } |
| 3559 | #endif /* FEAT_GUI_GNOME && FEAT_SESSION */ |
| 3560 | |
| 3561 | /* |
| 3562 | * Called when the foreground or background color has been changed. |
| 3563 | * This used to change the graphics contexts directly but we are |
| 3564 | * currently manipulating them where desired. |
| 3565 | */ |
| 3566 | void |
| 3567 | gui_mch_new_colors(void) |
| 3568 | { |
| 3569 | if (gui.drawarea != NULL && gui.drawarea->window != NULL) |
| 3570 | { |
| 3571 | GdkColor color = { 0, 0, 0, 0 }; |
| 3572 | |
| 3573 | color.pixel = gui.back_pixel; |
| 3574 | gdk_window_set_background(gui.drawarea->window, &color); |
| 3575 | } |
| 3576 | } |
| 3577 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3578 | /* |
| 3579 | * This signal informs us about the need to rearrange our sub-widgets. |
| 3580 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3581 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3582 | form_configure_event(GtkWidget *widget UNUSED, |
| 3583 | GdkEventConfigure *event, |
| 3584 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3585 | { |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3586 | int usable_height = event->height; |
| 3587 | |
| 3588 | /* When in a GtkPlug, we can't guarantee valid heights (as a round |
| 3589 | * no. of char-heights), so we have to manually sanitise them. |
| 3590 | * Widths seem to sort themselves out, don't ask me why. |
| 3591 | */ |
| 3592 | if (gtk_socket_id != 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3593 | usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3594 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3595 | gtk_form_freeze(GTK_FORM(gui.formwin)); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3596 | gui_resize_shell(event->width, usable_height); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3597 | gtk_form_thaw(GTK_FORM(gui.formwin)); |
| 3598 | |
| 3599 | return TRUE; |
| 3600 | } |
| 3601 | |
| 3602 | /* |
| 3603 | * Function called when window already closed. |
| 3604 | * We can't do much more here than to trying to preserve what had been done, |
| 3605 | * since the window is already inevitably going away. |
| 3606 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3607 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3608 | mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3609 | { |
| 3610 | /* Don't write messages to the GUI anymore */ |
| 3611 | full_screen = FALSE; |
| 3612 | |
| 3613 | gui.mainwin = NULL; |
| 3614 | gui.drawarea = NULL; |
| 3615 | |
| 3616 | if (!exiting) /* only do anything if the destroy was unexpected */ |
| 3617 | { |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 3618 | vim_strncpy(IObuff, |
| 3619 | (char_u *)_("Vim: Main window unexpectedly destroyed\n"), |
| 3620 | IOSIZE - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3621 | preserve_exit(); |
| 3622 | } |
| 3623 | } |
| 3624 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3625 | |
| 3626 | /* |
| 3627 | * Bit of a hack to ensure we start GtkPlug windows with the correct window |
| 3628 | * hints (and thus the required size from -geom), but that after that we |
| 3629 | * put the hints back to normal (the actual minimum size) so we may |
| 3630 | * subsequently be resized smaller. GtkSocket (the parent end) uses the |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 3631 | * 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] | 3632 | * only way we have of making ourselves bigger (by set lines/columns). |
| 3633 | * Thus set hints at start-up to ensure correct init. size, then a |
| 3634 | * second after the final attempt to reset the real minimum hinst (done by |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 3635 | * scrollbar init.), actually do the standard hinst and stop the timer. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3636 | * We'll not let the default hints be set while this timer's active. |
| 3637 | */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3638 | static gboolean |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3639 | check_startup_plug_hints(gpointer data UNUSED) |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3640 | { |
| 3641 | if (init_window_hints_state == 1) |
| 3642 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3643 | /* Safe to use normal hints now */ |
| 3644 | init_window_hints_state = 0; |
| 3645 | update_window_manager_hints(0, 0); |
| 3646 | return FALSE; /* stop timer */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3647 | } |
| 3648 | |
| 3649 | /* Keep on trying */ |
| 3650 | init_window_hints_state = 1; |
| 3651 | return TRUE; |
| 3652 | } |
| 3653 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3654 | /* |
| 3655 | * Open the GUI window which was created by a call to gui_mch_init(). |
| 3656 | */ |
| 3657 | int |
| 3658 | gui_mch_open(void) |
| 3659 | { |
| 3660 | guicolor_T fg_pixel = INVALCOLOR; |
| 3661 | guicolor_T bg_pixel = INVALCOLOR; |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 3662 | guint pixel_width; |
| 3663 | guint pixel_height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3664 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3665 | /* |
| 3666 | * Allow setting a window role on the command line, or invent one |
| 3667 | * if none was specified. This is mainly useful for GNOME session |
| 3668 | * support; allowing the WM to restore window placement. |
| 3669 | */ |
| 3670 | if (role_argument != NULL) |
| 3671 | { |
| 3672 | gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument); |
| 3673 | } |
| 3674 | else |
| 3675 | { |
| 3676 | char *role; |
| 3677 | |
| 3678 | /* Invent a unique-enough ID string for the role */ |
| 3679 | role = g_strdup_printf("vim-%u-%u-%u", |
| 3680 | (unsigned)mch_get_pid(), |
| 3681 | (unsigned)g_random_int(), |
| 3682 | (unsigned)time(NULL)); |
| 3683 | |
| 3684 | gtk_window_set_role(GTK_WINDOW(gui.mainwin), role); |
| 3685 | g_free(role); |
| 3686 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3687 | |
| 3688 | if (gui_win_x != -1 && gui_win_y != -1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3689 | 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] | 3690 | |
| 3691 | /* Determine user specified geometry, if present. */ |
| 3692 | if (gui.geom != NULL) |
| 3693 | { |
| 3694 | int mask; |
| 3695 | unsigned int w, h; |
| 3696 | int x = 0; |
| 3697 | int y = 0; |
| 3698 | |
| 3699 | mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h); |
| 3700 | |
| 3701 | if (mask & WidthValue) |
| 3702 | Columns = w; |
| 3703 | if (mask & HeightValue) |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 3704 | { |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3705 | if (p_window > (long)h - 1 || !option_was_set((char_u *)"window")) |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 3706 | p_window = h - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3707 | Rows = h; |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 3708 | } |
Bram Moolenaar | e057d40 | 2013-06-30 17:51:51 +0200 | [diff] [blame] | 3709 | limit_screen_size(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 3710 | |
| 3711 | pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
| 3712 | pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); |
| 3713 | |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 3714 | pixel_width += get_menu_tool_width(); |
| 3715 | pixel_height += get_menu_tool_height(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 3716 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3717 | if (mask & (XValue | YValue)) |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 3718 | { |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 3719 | int ww, hh; |
| 3720 | gui_mch_get_screen_dimensions(&ww, &hh); |
| 3721 | hh += p_ghr + get_menu_tool_height(); |
| 3722 | ww += get_menu_tool_width(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 3723 | if (mask & XNegative) |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 3724 | x += ww - pixel_width; |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 3725 | if (mask & YNegative) |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 3726 | y += hh - pixel_height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3727 | gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 3728 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3729 | vim_free(gui.geom); |
| 3730 | gui.geom = NULL; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3731 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3732 | /* From now until everyone's stopped trying to set the window hints |
| 3733 | * to their correct minimum values, stop them being set as we need |
| 3734 | * them to remain at our required size for the parent GtkSocket to |
| 3735 | * give us the right initial size. |
| 3736 | */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3737 | if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue)) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3738 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3739 | update_window_manager_hints(pixel_width, pixel_height); |
| 3740 | init_window_hints_state = 1; |
| 3741 | g_timeout_add(1000, check_startup_plug_hints, NULL); |
| 3742 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3743 | } |
| 3744 | |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 3745 | pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
| 3746 | pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 3747 | /* For GTK2 changing the size of the form widget doesn't cause window |
| 3748 | * resizing. */ |
Bram Moolenaar | debe25a | 2010-06-06 17:41:24 +0200 | [diff] [blame] | 3749 | if (gtk_socket_id == 0) |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 3750 | gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3751 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3752 | |
| 3753 | if (foreground_argument != NULL) |
| 3754 | fg_pixel = gui_get_color((char_u *)foreground_argument); |
| 3755 | if (fg_pixel == INVALCOLOR) |
| 3756 | fg_pixel = gui_get_color((char_u *)"Black"); |
| 3757 | |
| 3758 | if (background_argument != NULL) |
| 3759 | bg_pixel = gui_get_color((char_u *)background_argument); |
| 3760 | if (bg_pixel == INVALCOLOR) |
| 3761 | bg_pixel = gui_get_color((char_u *)"White"); |
| 3762 | |
| 3763 | if (found_reverse_arg) |
| 3764 | { |
| 3765 | gui.def_norm_pixel = bg_pixel; |
| 3766 | gui.def_back_pixel = fg_pixel; |
| 3767 | } |
| 3768 | else |
| 3769 | { |
| 3770 | gui.def_norm_pixel = fg_pixel; |
| 3771 | gui.def_back_pixel = bg_pixel; |
| 3772 | } |
| 3773 | |
| 3774 | /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or |
| 3775 | * in a vimrc file) */ |
| 3776 | set_normal_colors(); |
| 3777 | |
| 3778 | /* Check that none of the colors are the same as the background color */ |
| 3779 | gui_check_colors(); |
| 3780 | |
| 3781 | /* Get the colors for the highlight groups (gui_check_colors() might have |
| 3782 | * changed them). */ |
| 3783 | highlight_gui_started(); /* re-init colors and fonts */ |
| 3784 | |
| 3785 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy", |
| 3786 | GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL); |
| 3787 | |
| 3788 | #ifdef FEAT_HANGULIN |
| 3789 | hangul_keyboard_set(); |
| 3790 | #endif |
| 3791 | |
| 3792 | /* |
| 3793 | * Notify the fixed area about the need to resize the contents of the |
| 3794 | * gui.formwin, which we use for random positioning of the included |
| 3795 | * components. |
| 3796 | * |
| 3797 | * We connect this signal deferred finally after anything is in place, |
| 3798 | * since this is intended to handle resizements coming from the window |
| 3799 | * manager upon us and should not interfere with what VIM is requesting |
| 3800 | * upon startup. |
| 3801 | */ |
| 3802 | gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event", |
| 3803 | GTK_SIGNAL_FUNC(form_configure_event), NULL); |
| 3804 | |
| 3805 | #ifdef FEAT_DND |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3806 | /* Set up for receiving DND items. */ |
| 3807 | gui_gtk_set_dnd_targets(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3808 | |
| 3809 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received", |
| 3810 | GTK_SIGNAL_FUNC(drag_data_received_cb), NULL); |
| 3811 | #endif |
| 3812 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3813 | /* With GTK+ 2, we need to iconify the window before calling show() |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3814 | * to avoid mapping the window for a short time. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3815 | if (found_iconic_arg && gtk_socket_id == 0) |
| 3816 | gui_mch_iconify(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3817 | |
| 3818 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3819 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3820 | unsigned long menu_handler = 0; |
| 3821 | # ifdef FEAT_TOOLBAR |
| 3822 | unsigned long tool_handler = 0; |
| 3823 | # endif |
| 3824 | /* |
| 3825 | * Urgh hackish :/ For some reason BonoboDockLayout always forces a |
| 3826 | * show when restoring the saved layout configuration. We can't just |
| 3827 | * hide the widgets again after gtk_widget_show(gui.mainwin) since it's |
| 3828 | * a toplevel window and thus will be realized immediately. Instead, |
| 3829 | * connect signal handlers to hide the widgets just after they've been |
| 3830 | * marked visible, but before the main window is realized. |
| 3831 | */ |
| 3832 | if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL) |
| 3833 | menu_handler = g_signal_connect_after(gui.menubar_h, "show", |
| 3834 | G_CALLBACK(>k_widget_hide), |
| 3835 | NULL); |
| 3836 | # ifdef FEAT_TOOLBAR |
| 3837 | if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL |
| 3838 | && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) |
| 3839 | tool_handler = g_signal_connect_after(gui.toolbar_h, "show", |
| 3840 | G_CALLBACK(>k_widget_hide), |
| 3841 | NULL); |
| 3842 | # endif |
| 3843 | #endif |
| 3844 | gtk_widget_show(gui.mainwin); |
| 3845 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3846 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3847 | if (menu_handler != 0) |
| 3848 | g_signal_handler_disconnect(gui.menubar_h, menu_handler); |
| 3849 | # ifdef FEAT_TOOLBAR |
| 3850 | if (tool_handler != 0) |
| 3851 | g_signal_handler_disconnect(gui.toolbar_h, tool_handler); |
| 3852 | # endif |
| 3853 | #endif |
| 3854 | } |
| 3855 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3856 | return OK; |
| 3857 | } |
| 3858 | |
| 3859 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3860 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3861 | gui_mch_exit(int rc UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3862 | { |
| 3863 | if (gui.mainwin != NULL) |
| 3864 | gtk_widget_destroy(gui.mainwin); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3865 | } |
| 3866 | |
| 3867 | /* |
| 3868 | * Get the position of the top left corner of the window. |
| 3869 | */ |
| 3870 | int |
| 3871 | gui_mch_get_winpos(int *x, int *y) |
| 3872 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3873 | gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3874 | return OK; |
| 3875 | } |
| 3876 | |
| 3877 | /* |
| 3878 | * Set the position of the top left corner of the window to the given |
| 3879 | * coordinates. |
| 3880 | */ |
| 3881 | void |
| 3882 | gui_mch_set_winpos(int x, int y) |
| 3883 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3884 | gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3885 | } |
| 3886 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3887 | #if 0 |
| 3888 | static int resize_idle_installed = FALSE; |
| 3889 | /* |
| 3890 | * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure |
| 3891 | * the shell size doesn't exceed the window size, i.e. if the window manager |
| 3892 | * ignored our size request. Usually this happens if the window is maximized. |
| 3893 | * |
| 3894 | * FIXME: It'd be nice if we could find a little more orthodox solution. |
| 3895 | * See also the remark below in gui_mch_set_shellsize(). |
| 3896 | * |
| 3897 | * DISABLED: When doing ":set lines+=1" this function would first invoke |
| 3898 | * gui_resize_shell() with the old size, then the normal callback would |
| 3899 | * report the new size through form_configure_event(). That caused the window |
| 3900 | * layout to be messed up. |
| 3901 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3902 | static gboolean |
| 3903 | force_shell_resize_idle(gpointer data) |
| 3904 | { |
| 3905 | if (gui.mainwin != NULL |
| 3906 | && GTK_WIDGET_REALIZED(gui.mainwin) |
| 3907 | && GTK_WIDGET_VISIBLE(gui.mainwin)) |
| 3908 | { |
| 3909 | int width; |
| 3910 | int height; |
| 3911 | |
| 3912 | gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height); |
| 3913 | |
| 3914 | width -= get_menu_tool_width(); |
| 3915 | height -= get_menu_tool_height(); |
| 3916 | |
| 3917 | gui_resize_shell(width, height); |
| 3918 | } |
| 3919 | |
| 3920 | resize_idle_installed = FALSE; |
| 3921 | return FALSE; /* don't call me again */ |
| 3922 | } |
| 3923 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3924 | |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 3925 | /* |
| 3926 | * Return TRUE if the main window is maximized. |
| 3927 | */ |
| 3928 | int |
| 3929 | gui_mch_maximized() |
| 3930 | { |
| 3931 | return (gui.mainwin != NULL && gui.mainwin->window != NULL |
| 3932 | && (gdk_window_get_state(gui.mainwin->window) |
| 3933 | & GDK_WINDOW_STATE_MAXIMIZED)); |
| 3934 | } |
| 3935 | |
| 3936 | /* |
| 3937 | * Unmaximize the main window |
| 3938 | */ |
| 3939 | void |
| 3940 | gui_mch_unmaximize() |
| 3941 | { |
| 3942 | if (gui.mainwin != NULL) |
| 3943 | gtk_window_unmaximize(GTK_WINDOW(gui.mainwin)); |
| 3944 | } |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 3945 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3946 | /* |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 3947 | * Called when the font changed while the window is maximized. Compute the |
| 3948 | * new Rows and Columns. This is like resizing the window. |
| 3949 | */ |
| 3950 | void |
| 3951 | gui_mch_newfont() |
| 3952 | { |
| 3953 | int w, h; |
| 3954 | |
| 3955 | gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h); |
| 3956 | w -= get_menu_tool_width(); |
| 3957 | h -= get_menu_tool_height(); |
| 3958 | gui_resize_shell(w, h); |
| 3959 | } |
| 3960 | |
| 3961 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3962 | * Set the windows size. |
| 3963 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3964 | void |
| 3965 | gui_mch_set_shellsize(int width, int height, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3966 | int min_width UNUSED, int min_height UNUSED, |
| 3967 | int base_width UNUSED, int base_height UNUSED, |
| 3968 | int direction UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3969 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3970 | /* give GTK+ a chance to put all widget's into place */ |
| 3971 | gui_mch_update(); |
| 3972 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3973 | /* this will cause the proper resizement to happen too */ |
| 3974 | if (gtk_socket_id == 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3975 | update_window_manager_hints(0, 0); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3976 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3977 | /* 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] | 3978 | * 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] | 3979 | * main window instead. */ |
| 3980 | width += get_menu_tool_width(); |
| 3981 | height += get_menu_tool_height(); |
| 3982 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3983 | if (gtk_socket_id == 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3984 | gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3985 | else |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3986 | update_window_manager_hints(width, height); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3987 | |
Bram Moolenaar | fff2bee | 2010-05-15 13:56:02 +0200 | [diff] [blame] | 3988 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3989 | if (!resize_idle_installed) |
| 3990 | { |
| 3991 | g_idle_add_full(GDK_PRIORITY_EVENTS + 10, |
| 3992 | &force_shell_resize_idle, NULL, NULL); |
| 3993 | resize_idle_installed = TRUE; |
| 3994 | } |
Bram Moolenaar | fff2bee | 2010-05-15 13:56:02 +0200 | [diff] [blame] | 3995 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3996 | /* |
| 3997 | * Wait until all events are processed to prevent a crash because the |
| 3998 | * real size of the drawing area doesn't reflect Vim's internal ideas. |
| 3999 | * |
| 4000 | * This is a bit of a hack, since Vim is a terminal application with a GUI |
| 4001 | * on top, while the GUI expects to be the boss. |
| 4002 | */ |
| 4003 | gui_mch_update(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4004 | } |
| 4005 | |
| 4006 | |
| 4007 | /* |
| 4008 | * The screen size is used to make sure the initial window doesn't get bigger |
| 4009 | * than the screen. This subtracts some room for menubar, toolbar and window |
| 4010 | * decorations. |
| 4011 | */ |
| 4012 | void |
| 4013 | gui_mch_get_screen_dimensions(int *screen_w, int *screen_h) |
| 4014 | { |
| 4015 | #ifdef HAVE_GTK_MULTIHEAD |
| 4016 | GdkScreen* screen; |
| 4017 | |
| 4018 | if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin)) |
| 4019 | screen = gtk_widget_get_screen(gui.mainwin); |
| 4020 | else |
| 4021 | screen = gdk_screen_get_default(); |
| 4022 | |
| 4023 | *screen_w = gdk_screen_get_width(screen); |
| 4024 | *screen_h = gdk_screen_get_height(screen) - p_ghr; |
| 4025 | #else |
| 4026 | *screen_w = gdk_screen_width(); |
| 4027 | /* Subtract 'guiheadroom' from the height to allow some room for the |
| 4028 | * window manager (task list and window title bar). */ |
| 4029 | *screen_h = gdk_screen_height() - p_ghr; |
| 4030 | #endif |
| 4031 | |
| 4032 | /* |
| 4033 | * FIXME: dirty trick: Because the gui_get_base_height() doesn't include |
| 4034 | * the toolbar and menubar for GTK, we subtract them from the screen |
Bram Moolenaar | 6440447 | 2010-06-26 06:24:45 +0200 | [diff] [blame] | 4035 | * 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] | 4036 | * This should be completely changed later. |
| 4037 | */ |
| 4038 | *screen_w -= get_menu_tool_width(); |
| 4039 | *screen_h -= get_menu_tool_height(); |
| 4040 | } |
| 4041 | |
| 4042 | #if defined(FEAT_TITLE) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4043 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4044 | gui_mch_settitle(char_u *title, char_u *icon UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4045 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4046 | if (title != NULL && output_conv.vc_type != CONV_NONE) |
| 4047 | title = string_convert(&output_conv, title, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4048 | |
| 4049 | gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title); |
| 4050 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4051 | if (output_conv.vc_type != CONV_NONE) |
| 4052 | vim_free(title); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4053 | } |
| 4054 | #endif /* FEAT_TITLE */ |
| 4055 | |
| 4056 | #if defined(FEAT_MENU) || defined(PROTO) |
| 4057 | void |
| 4058 | gui_mch_enable_menu(int showit) |
| 4059 | { |
| 4060 | GtkWidget *widget; |
| 4061 | |
| 4062 | # ifdef FEAT_GUI_GNOME |
| 4063 | if (using_gnome) |
| 4064 | widget = gui.menubar_h; |
| 4065 | else |
| 4066 | # endif |
| 4067 | widget = gui.menubar; |
| 4068 | |
Bram Moolenaar | 18144c8 | 2006-04-12 21:52:12 +0000 | [diff] [blame] | 4069 | /* Do not disable the menu while starting up, otherwise F10 doesn't work. */ |
| 4070 | if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4071 | { |
| 4072 | if (showit) |
| 4073 | gtk_widget_show(widget); |
| 4074 | else |
| 4075 | gtk_widget_hide(widget); |
| 4076 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4077 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4078 | } |
| 4079 | } |
| 4080 | #endif /* FEAT_MENU */ |
| 4081 | |
| 4082 | #if defined(FEAT_TOOLBAR) || defined(PROTO) |
| 4083 | void |
| 4084 | gui_mch_show_toolbar(int showit) |
| 4085 | { |
| 4086 | GtkWidget *widget; |
| 4087 | |
| 4088 | if (gui.toolbar == NULL) |
| 4089 | return; |
| 4090 | |
| 4091 | # ifdef FEAT_GUI_GNOME |
| 4092 | if (using_gnome) |
| 4093 | widget = gui.toolbar_h; |
| 4094 | else |
| 4095 | # endif |
| 4096 | widget = gui.toolbar; |
| 4097 | |
| 4098 | if (showit) |
| 4099 | set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); |
| 4100 | |
| 4101 | if (!showit != !GTK_WIDGET_VISIBLE(widget)) |
| 4102 | { |
| 4103 | if (showit) |
| 4104 | gtk_widget_show(widget); |
| 4105 | else |
| 4106 | gtk_widget_hide(widget); |
| 4107 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4108 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4109 | } |
| 4110 | } |
| 4111 | #endif /* FEAT_TOOLBAR */ |
| 4112 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4113 | /* |
| 4114 | * Check if a given font is a CJK font. This is done in a very crude manner. It |
| 4115 | * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given |
| 4116 | * font. Consequently, this function cannot be used as a general purpose check |
| 4117 | * for CJK-ness for which fontconfig APIs should be used. This is only used by |
| 4118 | * gui_mch_init_font() to deal with 'CJK fixed width fonts'. |
| 4119 | */ |
| 4120 | static int |
| 4121 | is_cjk_font(PangoFontDescription *font_desc) |
| 4122 | { |
| 4123 | static const char * const cjk_langs[] = |
| 4124 | {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"}; |
| 4125 | |
| 4126 | PangoFont *font; |
| 4127 | unsigned i; |
| 4128 | int is_cjk = FALSE; |
| 4129 | |
| 4130 | font = pango_context_load_font(gui.text_context, font_desc); |
| 4131 | |
| 4132 | if (font == NULL) |
| 4133 | return FALSE; |
| 4134 | |
| 4135 | for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i) |
| 4136 | { |
| 4137 | PangoCoverage *coverage; |
| 4138 | gunichar uc; |
| 4139 | |
| 4140 | coverage = pango_font_get_coverage( |
| 4141 | font, pango_language_from_string(cjk_langs[i])); |
| 4142 | |
| 4143 | if (coverage != NULL) |
| 4144 | { |
| 4145 | uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00; |
| 4146 | is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT); |
| 4147 | pango_coverage_unref(coverage); |
| 4148 | } |
| 4149 | } |
| 4150 | |
| 4151 | g_object_unref(font); |
| 4152 | |
| 4153 | return is_cjk; |
| 4154 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4155 | |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 4156 | /* |
| 4157 | * Adjust gui.char_height (after 'linespace' was changed). |
| 4158 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4159 | int |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 4160 | gui_mch_adjust_charheight(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4161 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4162 | PangoFontMetrics *metrics; |
| 4163 | int ascent; |
| 4164 | int descent; |
| 4165 | |
| 4166 | metrics = pango_context_get_metrics(gui.text_context, gui.norm_font, |
| 4167 | pango_context_get_language(gui.text_context)); |
| 4168 | ascent = pango_font_metrics_get_ascent(metrics); |
| 4169 | descent = pango_font_metrics_get_descent(metrics); |
| 4170 | |
| 4171 | pango_font_metrics_unref(metrics); |
| 4172 | |
| 4173 | gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 4174 | + p_linespace; |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 4175 | /* LINTED: avoid warning: bitwise operation on signed value */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4176 | gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2); |
| 4177 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4178 | /* A not-positive value of char_height may crash Vim. Only happens |
| 4179 | * if 'linespace' is negative (which does make sense sometimes). */ |
| 4180 | gui.char_ascent = MAX(gui.char_ascent, 0); |
| 4181 | gui.char_height = MAX(gui.char_height, gui.char_ascent + 1); |
| 4182 | |
| 4183 | return OK; |
| 4184 | } |
| 4185 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4186 | /* |
| 4187 | * Put up a font dialog and return the selected font name in allocated memory. |
| 4188 | * "oldval" is the previous value. Return NULL when cancelled. |
| 4189 | * This should probably go into gui_gtk.c. Hmm. |
| 4190 | * FIXME: |
| 4191 | * The GTK2 font selection dialog has no filtering API. So we could either |
| 4192 | * a) implement our own (possibly copying the code from somewhere else) or |
| 4193 | * b) just live with it. |
| 4194 | */ |
| 4195 | char_u * |
| 4196 | gui_mch_font_dialog(char_u *oldval) |
| 4197 | { |
| 4198 | GtkWidget *dialog; |
| 4199 | int response; |
| 4200 | char_u *fontname = NULL; |
| 4201 | char_u *oldname; |
| 4202 | |
| 4203 | dialog = gtk_font_selection_dialog_new(NULL); |
| 4204 | |
| 4205 | gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin)); |
| 4206 | gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE); |
| 4207 | |
| 4208 | if (oldval != NULL && oldval[0] != NUL) |
| 4209 | { |
| 4210 | if (output_conv.vc_type != CONV_NONE) |
| 4211 | oldname = string_convert(&output_conv, oldval, NULL); |
| 4212 | else |
| 4213 | oldname = oldval; |
| 4214 | |
| 4215 | /* Annoying bug in GTK (or Pango): if the font name does not include a |
| 4216 | * size, zero is used. Use default point size ten. */ |
| 4217 | if (!vim_isdigit(oldname[STRLEN(oldname) - 1])) |
| 4218 | { |
| 4219 | char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3); |
| 4220 | |
| 4221 | if (p != NULL) |
| 4222 | { |
| 4223 | STRCPY(p + STRLEN(p), " 10"); |
| 4224 | if (oldname != oldval) |
| 4225 | vim_free(oldname); |
| 4226 | oldname = p; |
| 4227 | } |
| 4228 | } |
| 4229 | |
| 4230 | gtk_font_selection_dialog_set_font_name( |
| 4231 | GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname); |
| 4232 | |
| 4233 | if (oldname != oldval) |
Bram Moolenaar | 8c71145 | 2005-01-14 21:53:12 +0000 | [diff] [blame] | 4234 | vim_free(oldname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4235 | } |
Bram Moolenaar | bef9d83 | 2009-09-11 13:46:41 +0000 | [diff] [blame] | 4236 | else |
| 4237 | gtk_font_selection_dialog_set_font_name( |
| 4238 | GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4239 | |
| 4240 | response = gtk_dialog_run(GTK_DIALOG(dialog)); |
| 4241 | |
| 4242 | if (response == GTK_RESPONSE_OK) |
| 4243 | { |
| 4244 | char *name; |
| 4245 | |
| 4246 | name = gtk_font_selection_dialog_get_font_name( |
| 4247 | GTK_FONT_SELECTION_DIALOG(dialog)); |
| 4248 | if (name != NULL) |
| 4249 | { |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4250 | char_u *p; |
| 4251 | |
| 4252 | /* Apparently some font names include a comma, need to escape |
| 4253 | * that, because in 'guifont' it separates names. */ |
| 4254 | p = vim_strsave_escaped((char_u *)name, (char_u *)","); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4255 | g_free(name); |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 4256 | if (p != NULL && input_conv.vc_type != CONV_NONE) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4257 | { |
| 4258 | fontname = string_convert(&input_conv, p, NULL); |
| 4259 | vim_free(p); |
| 4260 | } |
| 4261 | else |
| 4262 | fontname = p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4263 | } |
| 4264 | } |
| 4265 | |
| 4266 | if (response != GTK_RESPONSE_NONE) |
| 4267 | gtk_widget_destroy(dialog); |
| 4268 | |
| 4269 | return fontname; |
| 4270 | } |
| 4271 | |
| 4272 | /* |
| 4273 | * Some monospace fonts don't support a bold weight, and fall back |
| 4274 | * silently to the regular weight. But this is no good since our text |
| 4275 | * drawing function can emulate bold by overstriking. So let's try |
| 4276 | * to detect whether bold weight is actually available and emulate it |
| 4277 | * otherwise. |
| 4278 | * |
| 4279 | * Note that we don't need to check for italic style since Xft can |
| 4280 | * emulate italic on its own, provided you have a proper fontconfig |
| 4281 | * setup. We wouldn't be able to emulate it in Vim anyway. |
| 4282 | */ |
| 4283 | static void |
| 4284 | get_styled_font_variants(void) |
| 4285 | { |
| 4286 | PangoFontDescription *bold_font_desc; |
| 4287 | PangoFont *plain_font; |
| 4288 | PangoFont *bold_font; |
| 4289 | |
| 4290 | gui.font_can_bold = FALSE; |
| 4291 | |
| 4292 | plain_font = pango_context_load_font(gui.text_context, gui.norm_font); |
| 4293 | |
| 4294 | if (plain_font == NULL) |
| 4295 | return; |
| 4296 | |
| 4297 | bold_font_desc = pango_font_description_copy_static(gui.norm_font); |
| 4298 | pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD); |
| 4299 | |
| 4300 | bold_font = pango_context_load_font(gui.text_context, bold_font_desc); |
| 4301 | /* |
| 4302 | * The comparison relies on the unique handle nature of a PangoFont*, |
| 4303 | * i.e. it's assumed that a different PangoFont* won't refer to the |
| 4304 | * same font. Seems to work, and failing here isn't critical anyway. |
| 4305 | */ |
| 4306 | if (bold_font != NULL) |
| 4307 | { |
| 4308 | gui.font_can_bold = (bold_font != plain_font); |
| 4309 | g_object_unref(bold_font); |
| 4310 | } |
| 4311 | |
| 4312 | pango_font_description_free(bold_font_desc); |
| 4313 | g_object_unref(plain_font); |
| 4314 | } |
| 4315 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4316 | static PangoEngineShape *default_shape_engine = NULL; |
| 4317 | |
| 4318 | /* |
| 4319 | * Create a map from ASCII characters in the range [32,126] to glyphs |
| 4320 | * of the current font. This is used by gui_gtk2_draw_string() to skip |
| 4321 | * the itemize and shaping process for the most common case. |
| 4322 | */ |
| 4323 | static void |
| 4324 | ascii_glyph_table_init(void) |
| 4325 | { |
| 4326 | char_u ascii_chars[128]; |
| 4327 | PangoAttrList *attr_list; |
| 4328 | GList *item_list; |
| 4329 | int i; |
| 4330 | |
| 4331 | if (gui.ascii_glyphs != NULL) |
| 4332 | pango_glyph_string_free(gui.ascii_glyphs); |
| 4333 | if (gui.ascii_font != NULL) |
| 4334 | g_object_unref(gui.ascii_font); |
| 4335 | |
| 4336 | gui.ascii_glyphs = NULL; |
| 4337 | gui.ascii_font = NULL; |
| 4338 | |
| 4339 | /* For safety, fill in question marks for the control characters. */ |
| 4340 | for (i = 0; i < 32; ++i) |
| 4341 | ascii_chars[i] = '?'; |
| 4342 | for (; i < 127; ++i) |
| 4343 | ascii_chars[i] = i; |
| 4344 | ascii_chars[i] = '?'; |
| 4345 | |
| 4346 | attr_list = pango_attr_list_new(); |
| 4347 | item_list = pango_itemize(gui.text_context, (const char *)ascii_chars, |
| 4348 | 0, sizeof(ascii_chars), attr_list, NULL); |
| 4349 | |
| 4350 | if (item_list != NULL && item_list->next == NULL) /* play safe */ |
| 4351 | { |
| 4352 | PangoItem *item; |
| 4353 | int width; |
| 4354 | |
| 4355 | item = (PangoItem *)item_list->data; |
| 4356 | width = gui.char_width * PANGO_SCALE; |
| 4357 | |
| 4358 | /* Remember the shape engine used for ASCII. */ |
| 4359 | default_shape_engine = item->analysis.shape_engine; |
| 4360 | |
| 4361 | gui.ascii_font = item->analysis.font; |
| 4362 | g_object_ref(gui.ascii_font); |
| 4363 | |
| 4364 | gui.ascii_glyphs = pango_glyph_string_new(); |
| 4365 | |
| 4366 | pango_shape((const char *)ascii_chars, sizeof(ascii_chars), |
| 4367 | &item->analysis, gui.ascii_glyphs); |
| 4368 | |
| 4369 | g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars)); |
| 4370 | |
| 4371 | for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i) |
| 4372 | { |
| 4373 | PangoGlyphGeometry *geom; |
| 4374 | |
| 4375 | geom = &gui.ascii_glyphs->glyphs[i].geometry; |
| 4376 | geom->x_offset += MAX(0, width - geom->width) / 2; |
| 4377 | geom->width = width; |
| 4378 | } |
| 4379 | } |
| 4380 | |
| 4381 | g_list_foreach(item_list, (GFunc)&pango_item_free, NULL); |
| 4382 | g_list_free(item_list); |
| 4383 | pango_attr_list_unref(attr_list); |
| 4384 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4385 | |
| 4386 | /* |
| 4387 | * Initialize Vim to use the font or fontset with the given name. |
| 4388 | * Return FAIL if the font could not be loaded, OK otherwise. |
| 4389 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4390 | int |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4391 | gui_mch_init_font(char_u *font_name, int fontset UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4392 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4393 | PangoFontDescription *font_desc; |
| 4394 | PangoLayout *layout; |
| 4395 | int width; |
| 4396 | |
| 4397 | /* If font_name is NULL, this means to use the default, which should |
| 4398 | * be present on all proper Pango/fontconfig installations. */ |
| 4399 | if (font_name == NULL) |
| 4400 | font_name = (char_u *)DEFAULT_FONT; |
| 4401 | |
| 4402 | font_desc = gui_mch_get_font(font_name, FALSE); |
| 4403 | |
| 4404 | if (font_desc == NULL) |
| 4405 | return FAIL; |
| 4406 | |
| 4407 | gui_mch_free_font(gui.norm_font); |
| 4408 | gui.norm_font = font_desc; |
| 4409 | |
| 4410 | pango_context_set_font_description(gui.text_context, font_desc); |
| 4411 | |
| 4412 | layout = pango_layout_new(gui.text_context); |
| 4413 | pango_layout_set_text(layout, "MW", 2); |
| 4414 | pango_layout_get_size(layout, &width, NULL); |
| 4415 | /* |
| 4416 | * Set char_width to half the width obtained from pango_layout_get_size() |
| 4417 | * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads |
| 4418 | * Pango to use the same width for both non-CJK characters (e.g. Latin |
| 4419 | * letters and numbers) and CJK characters. This results in 's p a c e d |
| 4420 | * o u t' rendering when a CJK 'fixed width' font is used. To work around |
| 4421 | * that, divide the width returned by Pango by 2 if cjk_width is equal to |
| 4422 | * width for CJK fonts. |
| 4423 | * |
| 4424 | * For related bugs, see: |
| 4425 | * http://bugzilla.gnome.org/show_bug.cgi?id=106618 |
| 4426 | * http://bugzilla.gnome.org/show_bug.cgi?id=106624 |
| 4427 | * |
| 4428 | * With this, for all four of the following cases, Vim works fine: |
| 4429 | * guifont=CJK_fixed_width_font |
| 4430 | * guifont=Non_CJK_fixed_font |
| 4431 | * guifont=Non_CJK_fixed_font,CJK_Fixed_font |
| 4432 | * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font |
| 4433 | */ |
| 4434 | if (is_cjk_font(gui.norm_font)) |
| 4435 | { |
| 4436 | int cjk_width; |
| 4437 | |
| 4438 | /* Measure the text extent of U+4E00 and U+4E8C */ |
| 4439 | pango_layout_set_text(layout, "\344\270\200\344\272\214", -1); |
| 4440 | pango_layout_get_size(layout, &cjk_width, NULL); |
| 4441 | |
| 4442 | if (width == cjk_width) /* Xft not patched */ |
| 4443 | width /= 2; |
| 4444 | } |
| 4445 | g_object_unref(layout); |
| 4446 | |
| 4447 | gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE; |
| 4448 | |
| 4449 | /* A zero width may cause a crash. Happens for semi-invalid fontsets. */ |
| 4450 | if (gui.char_width <= 0) |
| 4451 | gui.char_width = 8; |
| 4452 | |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 4453 | gui_mch_adjust_charheight(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4454 | |
| 4455 | /* Set the fontname, which will be used for information purposes */ |
| 4456 | hl_set_font_name(font_name); |
| 4457 | |
| 4458 | get_styled_font_variants(); |
| 4459 | ascii_glyph_table_init(); |
| 4460 | |
| 4461 | /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */ |
| 4462 | if (gui.wide_font != NULL |
| 4463 | && pango_font_description_equal(gui.norm_font, gui.wide_font)) |
| 4464 | { |
| 4465 | pango_font_description_free(gui.wide_font); |
| 4466 | gui.wide_font = NULL; |
| 4467 | } |
| 4468 | |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 4469 | if (gui_mch_maximized()) |
| 4470 | { |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 4471 | /* Update lines and columns in accordance with the new font, keep the |
| 4472 | * window maximized. */ |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 4473 | gui_mch_newfont(); |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 4474 | } |
| 4475 | else |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 4476 | { |
| 4477 | /* Preserve the logical dimensions of the screen. */ |
| 4478 | update_window_manager_hints(0, 0); |
| 4479 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4480 | |
| 4481 | return OK; |
| 4482 | } |
| 4483 | |
| 4484 | /* |
| 4485 | * Get a reference to the font "name". |
| 4486 | * Return zero for failure. |
| 4487 | */ |
| 4488 | GuiFont |
| 4489 | gui_mch_get_font(char_u *name, int report_error) |
| 4490 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4491 | PangoFontDescription *font; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4492 | |
| 4493 | /* can't do this when GUI is not running */ |
| 4494 | if (!gui.in_use || name == NULL) |
| 4495 | return NULL; |
| 4496 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4497 | if (output_conv.vc_type != CONV_NONE) |
| 4498 | { |
| 4499 | char_u *buf; |
| 4500 | |
| 4501 | buf = string_convert(&output_conv, name, NULL); |
| 4502 | if (buf != NULL) |
| 4503 | { |
| 4504 | font = pango_font_description_from_string((const char *)buf); |
| 4505 | vim_free(buf); |
| 4506 | } |
| 4507 | else |
| 4508 | font = NULL; |
| 4509 | } |
| 4510 | else |
| 4511 | font = pango_font_description_from_string((const char *)name); |
| 4512 | |
| 4513 | if (font != NULL) |
| 4514 | { |
| 4515 | PangoFont *real_font; |
| 4516 | |
| 4517 | /* pango_context_load_font() bails out if no font size is set */ |
| 4518 | if (pango_font_description_get_size(font) <= 0) |
| 4519 | pango_font_description_set_size(font, 10 * PANGO_SCALE); |
| 4520 | |
| 4521 | real_font = pango_context_load_font(gui.text_context, font); |
| 4522 | |
| 4523 | if (real_font == NULL) |
| 4524 | { |
| 4525 | pango_font_description_free(font); |
| 4526 | font = NULL; |
| 4527 | } |
| 4528 | else |
| 4529 | g_object_unref(real_font); |
| 4530 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4531 | |
| 4532 | if (font == NULL) |
| 4533 | { |
| 4534 | if (report_error) |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 4535 | EMSG2(_((char *)e_font), name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4536 | return NULL; |
| 4537 | } |
| 4538 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4539 | return font; |
| 4540 | } |
| 4541 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4542 | #if defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 4543 | /* |
| 4544 | * Return the name of font "font" in allocated memory. |
| 4545 | */ |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 4546 | char_u * |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4547 | gui_mch_get_fontname(GuiFont font, char_u *name UNUSED) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 4548 | { |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 4549 | if (font != NOFONT) |
| 4550 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 4551 | char *pangoname = pango_font_description_to_string(font); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 4552 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 4553 | if (pangoname != NULL) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 4554 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 4555 | char_u *s = vim_strsave((char_u *)pangoname); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 4556 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 4557 | g_free(pangoname); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 4558 | return s; |
| 4559 | } |
| 4560 | } |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 4561 | return NULL; |
| 4562 | } |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4563 | #endif |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 4564 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4565 | /* |
| 4566 | * If a font is not going to be used, free its structure. |
| 4567 | */ |
| 4568 | void |
| 4569 | gui_mch_free_font(GuiFont font) |
| 4570 | { |
| 4571 | if (font != NOFONT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4572 | pango_font_description_free(font); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4573 | } |
| 4574 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4575 | /* |
| 4576 | * Return the Pixel value (color) for the given color name. This routine was |
| 4577 | * pretty much taken from example code in the Silicon Graphics OSF/Motif |
| 4578 | * Programmer's Guide. |
| 4579 | * Return INVALCOLOR for error. |
| 4580 | */ |
| 4581 | guicolor_T |
| 4582 | gui_mch_get_color(char_u *name) |
| 4583 | { |
| 4584 | /* A number of colors that some X11 systems don't have */ |
| 4585 | static const char *const vimnames[][2] = |
| 4586 | { |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 4587 | {"LightRed", "#FFBBBB"}, |
| 4588 | {"LightGreen", "#88FF88"}, |
| 4589 | {"LightMagenta","#FFBBFF"}, |
| 4590 | {"DarkCyan", "#008888"}, |
| 4591 | {"DarkBlue", "#0000BB"}, |
| 4592 | {"DarkRed", "#BB0000"}, |
| 4593 | {"DarkMagenta", "#BB00BB"}, |
| 4594 | {"DarkGrey", "#BBBBBB"}, |
| 4595 | {"DarkYellow", "#BBBB00"}, |
| 4596 | {"Gray10", "#1A1A1A"}, |
| 4597 | {"Grey10", "#1A1A1A"}, |
| 4598 | {"Gray20", "#333333"}, |
| 4599 | {"Grey20", "#333333"}, |
| 4600 | {"Gray30", "#4D4D4D"}, |
| 4601 | {"Grey30", "#4D4D4D"}, |
| 4602 | {"Gray40", "#666666"}, |
| 4603 | {"Grey40", "#666666"}, |
| 4604 | {"Gray50", "#7F7F7F"}, |
| 4605 | {"Grey50", "#7F7F7F"}, |
| 4606 | {"Gray60", "#999999"}, |
| 4607 | {"Grey60", "#999999"}, |
| 4608 | {"Gray70", "#B3B3B3"}, |
| 4609 | {"Grey70", "#B3B3B3"}, |
| 4610 | {"Gray80", "#CCCCCC"}, |
| 4611 | {"Grey80", "#CCCCCC"}, |
| 4612 | {"Gray90", "#E5E5E5"}, |
| 4613 | {"Grey90", "#E5E5E5"}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4614 | {NULL, NULL} |
| 4615 | }; |
| 4616 | |
| 4617 | if (!gui.in_use) /* can't do this when GUI not running */ |
| 4618 | return INVALCOLOR; |
| 4619 | |
| 4620 | while (name != NULL) |
| 4621 | { |
| 4622 | GdkColor color; |
| 4623 | int parsed; |
| 4624 | int i; |
| 4625 | |
| 4626 | parsed = gdk_color_parse((const char *)name, &color); |
| 4627 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4628 | if (parsed) |
| 4629 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4630 | gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea), |
| 4631 | &color, FALSE, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4632 | return (guicolor_T)color.pixel; |
| 4633 | } |
| 4634 | /* add a few builtin names and try again */ |
| 4635 | for (i = 0; ; ++i) |
| 4636 | { |
| 4637 | if (vimnames[i][0] == NULL) |
| 4638 | { |
| 4639 | name = NULL; |
| 4640 | break; |
| 4641 | } |
| 4642 | if (STRICMP(name, vimnames[i][0]) == 0) |
| 4643 | { |
| 4644 | name = (char_u *)vimnames[i][1]; |
| 4645 | break; |
| 4646 | } |
| 4647 | } |
| 4648 | } |
| 4649 | |
| 4650 | return INVALCOLOR; |
| 4651 | } |
| 4652 | |
| 4653 | /* |
| 4654 | * Set the current text foreground color. |
| 4655 | */ |
| 4656 | void |
| 4657 | gui_mch_set_fg_color(guicolor_T color) |
| 4658 | { |
| 4659 | gui.fgcolor->pixel = (unsigned long)color; |
| 4660 | } |
| 4661 | |
| 4662 | /* |
| 4663 | * Set the current text background color. |
| 4664 | */ |
| 4665 | void |
| 4666 | gui_mch_set_bg_color(guicolor_T color) |
| 4667 | { |
| 4668 | gui.bgcolor->pixel = (unsigned long)color; |
| 4669 | } |
| 4670 | |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 4671 | /* |
| 4672 | * Set the current text special color. |
| 4673 | */ |
| 4674 | void |
| 4675 | gui_mch_set_sp_color(guicolor_T color) |
| 4676 | { |
| 4677 | gui.spcolor->pixel = (unsigned long)color; |
| 4678 | } |
| 4679 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4680 | /* |
| 4681 | * Function-like convenience macro for the sake of efficiency. |
| 4682 | */ |
| 4683 | #define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \ |
| 4684 | G_STMT_START{ \ |
| 4685 | PangoAttribute *tmp_attr_; \ |
| 4686 | tmp_attr_ = (Attribute); \ |
| 4687 | tmp_attr_->start_index = (Start); \ |
| 4688 | tmp_attr_->end_index = (End); \ |
| 4689 | pango_attr_list_insert((AttrList), tmp_attr_); \ |
| 4690 | }G_STMT_END |
| 4691 | |
| 4692 | static void |
| 4693 | apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list) |
| 4694 | { |
| 4695 | char_u *start = NULL; |
| 4696 | char_u *p; |
| 4697 | int uc; |
| 4698 | |
| 4699 | for (p = s; p < s + len; p += utf_byte2len(*p)) |
| 4700 | { |
| 4701 | uc = utf_ptr2char(p); |
| 4702 | |
| 4703 | if (start == NULL) |
| 4704 | { |
| 4705 | if (uc >= 0x80 && utf_char2cells(uc) == 2) |
| 4706 | start = p; |
| 4707 | } |
| 4708 | else if (uc < 0x80 /* optimization shortcut */ |
| 4709 | || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc))) |
| 4710 | { |
| 4711 | INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), |
| 4712 | attr_list, start - s, p - s); |
| 4713 | start = NULL; |
| 4714 | } |
| 4715 | } |
| 4716 | |
| 4717 | if (start != NULL) |
| 4718 | INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), |
| 4719 | attr_list, start - s, len); |
| 4720 | } |
| 4721 | |
| 4722 | static int |
| 4723 | count_cluster_cells(char_u *s, PangoItem *item, |
| 4724 | PangoGlyphString* glyphs, int i, |
| 4725 | int *cluster_width, |
| 4726 | int *last_glyph_rbearing) |
| 4727 | { |
| 4728 | char_u *p; |
| 4729 | int next; /* glyph start index of next cluster */ |
| 4730 | int start, end; /* string segment of current cluster */ |
| 4731 | int width; /* real cluster width in Pango units */ |
| 4732 | int uc; |
| 4733 | int cellcount = 0; |
| 4734 | |
| 4735 | width = glyphs->glyphs[i].geometry.width; |
| 4736 | |
| 4737 | for (next = i + 1; next < glyphs->num_glyphs; ++next) |
| 4738 | { |
| 4739 | if (glyphs->glyphs[next].attr.is_cluster_start) |
| 4740 | break; |
| 4741 | else if (glyphs->glyphs[next].geometry.width > width) |
| 4742 | width = glyphs->glyphs[next].geometry.width; |
| 4743 | } |
| 4744 | |
| 4745 | start = item->offset + glyphs->log_clusters[i]; |
| 4746 | end = item->offset + ((next < glyphs->num_glyphs) ? |
| 4747 | glyphs->log_clusters[next] : item->length); |
| 4748 | |
| 4749 | for (p = s + start; p < s + end; p += utf_byte2len(*p)) |
| 4750 | { |
| 4751 | uc = utf_ptr2char(p); |
| 4752 | if (uc < 0x80) |
| 4753 | ++cellcount; |
| 4754 | else if (!utf_iscomposing(uc)) |
| 4755 | cellcount += utf_char2cells(uc); |
| 4756 | } |
| 4757 | |
| 4758 | if (last_glyph_rbearing != NULL |
| 4759 | && cellcount > 0 && next == glyphs->num_glyphs) |
| 4760 | { |
| 4761 | PangoRectangle ink_rect; |
| 4762 | /* |
| 4763 | * If a certain combining mark had to be taken from a non-monospace |
| 4764 | * font, we have to compensate manually by adapting x_offset according |
| 4765 | * to the ink extents of the previous glyph. |
| 4766 | */ |
| 4767 | pango_font_get_glyph_extents(item->analysis.font, |
| 4768 | glyphs->glyphs[i].glyph, |
| 4769 | &ink_rect, NULL); |
| 4770 | |
| 4771 | if (PANGO_RBEARING(ink_rect) > 0) |
| 4772 | *last_glyph_rbearing = PANGO_RBEARING(ink_rect); |
| 4773 | } |
| 4774 | |
| 4775 | if (cellcount > 0) |
| 4776 | *cluster_width = width; |
| 4777 | |
| 4778 | return cellcount; |
| 4779 | } |
| 4780 | |
| 4781 | /* |
| 4782 | * If there are only combining characters in the cluster, we cannot just |
| 4783 | * change the width of the previous glyph since there is none. Therefore |
| 4784 | * some guesswork is needed. |
| 4785 | * |
| 4786 | * If ink_rect.x is negative Pango apparently has taken care of the composing |
| 4787 | * by itself. Actually setting x_offset = 0 should be sufficient then, but due |
| 4788 | * 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] | 4789 | * x_offset to avoid ugliness. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4790 | * |
| 4791 | * If ink_rect.x is not negative, force overstriking by pointing x_offset to |
| 4792 | * the position of the previous glyph. Apparently this happens only with old |
| 4793 | * X fonts which don't provide the special combining information needed by |
| 4794 | * Pango. |
| 4795 | */ |
| 4796 | static void |
| 4797 | setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph, |
| 4798 | int last_cellcount, int last_cluster_width, |
| 4799 | int last_glyph_rbearing) |
| 4800 | { |
| 4801 | PangoRectangle ink_rect; |
| 4802 | PangoRectangle logical_rect; |
| 4803 | int width; |
| 4804 | |
| 4805 | width = last_cellcount * gui.char_width * PANGO_SCALE; |
| 4806 | glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2; |
| 4807 | glyph->geometry.width = 0; |
| 4808 | |
| 4809 | pango_font_get_glyph_extents(item->analysis.font, |
| 4810 | glyph->glyph, |
| 4811 | &ink_rect, &logical_rect); |
| 4812 | if (ink_rect.x < 0) |
| 4813 | { |
| 4814 | glyph->geometry.x_offset += last_glyph_rbearing; |
| 4815 | glyph->geometry.y_offset = logical_rect.height |
| 4816 | - (gui.char_height - p_linespace) * PANGO_SCALE; |
| 4817 | } |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 4818 | else |
| 4819 | /* If the accent width is smaller than the cluster width, position it |
| 4820 | * in the middle. */ |
| 4821 | glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4822 | } |
| 4823 | |
| 4824 | static void |
| 4825 | draw_glyph_string(int row, int col, int num_cells, int flags, |
| 4826 | PangoFont *font, PangoGlyphString *glyphs) |
| 4827 | { |
| 4828 | if (!(flags & DRAW_TRANSP)) |
| 4829 | { |
| 4830 | gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
| 4831 | |
| 4832 | gdk_draw_rectangle(gui.drawarea->window, |
| 4833 | gui.text_gc, |
| 4834 | TRUE, |
| 4835 | FILL_X(col), |
| 4836 | FILL_Y(row), |
| 4837 | num_cells * gui.char_width, |
| 4838 | gui.char_height); |
| 4839 | } |
| 4840 | |
| 4841 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 4842 | |
| 4843 | gdk_draw_glyphs(gui.drawarea->window, |
| 4844 | gui.text_gc, |
| 4845 | font, |
| 4846 | TEXT_X(col), |
| 4847 | TEXT_Y(row), |
| 4848 | glyphs); |
| 4849 | |
| 4850 | /* redraw the contents with an offset of 1 to emulate bold */ |
| 4851 | if ((flags & DRAW_BOLD) && !gui.font_can_bold) |
| 4852 | gdk_draw_glyphs(gui.drawarea->window, |
| 4853 | gui.text_gc, |
| 4854 | font, |
| 4855 | TEXT_X(col) + 1, |
| 4856 | TEXT_Y(row), |
| 4857 | glyphs); |
| 4858 | } |
| 4859 | |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 4860 | /* |
| 4861 | * Draw underline and undercurl at the bottom of the character cell. |
| 4862 | */ |
| 4863 | static void |
| 4864 | draw_under(int flags, int row, int col, int cells) |
| 4865 | { |
| 4866 | int i; |
| 4867 | int offset; |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4868 | 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] | 4869 | int y = FILL_Y(row + 1) - 1; |
| 4870 | |
| 4871 | /* Undercurl: draw curl at the bottom of the character cell. */ |
| 4872 | if (flags & DRAW_UNDERC) |
| 4873 | { |
| 4874 | gdk_gc_set_foreground(gui.text_gc, gui.spcolor); |
| 4875 | for (i = FILL_X(col); i < FILL_X(col + cells); ++i) |
| 4876 | { |
| 4877 | offset = val[i % 8]; |
| 4878 | gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset); |
| 4879 | } |
| 4880 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 4881 | } |
| 4882 | |
| 4883 | /* Underline: draw a line at the bottom of the character cell. */ |
| 4884 | if (flags & DRAW_UNDERL) |
| 4885 | { |
| 4886 | /* When p_linespace is 0, overwrite the bottom row of pixels. |
| 4887 | * Otherwise put the line just below the character. */ |
| 4888 | if (p_linespace > 1) |
| 4889 | y -= p_linespace - 1; |
| 4890 | gdk_draw_line(gui.drawarea->window, gui.text_gc, |
| 4891 | FILL_X(col), y, |
| 4892 | FILL_X(col + cells) - 1, y); |
| 4893 | } |
| 4894 | } |
| 4895 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4896 | int |
| 4897 | gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags) |
| 4898 | { |
| 4899 | GdkRectangle area; /* area for clip mask */ |
| 4900 | PangoGlyphString *glyphs; /* glyphs of current item */ |
| 4901 | int column_offset = 0; /* column offset in cells */ |
| 4902 | int i; |
| 4903 | char_u *conv_buf = NULL; /* result of UTF-8 conversion */ |
| 4904 | char_u *new_conv_buf; |
| 4905 | int convlen; |
| 4906 | char_u *sp, *bp; |
| 4907 | int plen; |
| 4908 | |
| 4909 | if (gui.text_context == NULL || gui.drawarea->window == NULL) |
| 4910 | return len; |
| 4911 | |
| 4912 | if (output_conv.vc_type != CONV_NONE) |
| 4913 | { |
| 4914 | /* |
| 4915 | * Convert characters from 'encoding' to 'termencoding', which is set |
| 4916 | * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c |
| 4917 | * prohibits changing this to something else than UTF-8 if the GUI is |
| 4918 | * in use. |
| 4919 | */ |
| 4920 | convlen = len; |
| 4921 | conv_buf = string_convert(&output_conv, s, &convlen); |
| 4922 | g_return_val_if_fail(conv_buf != NULL, len); |
| 4923 | |
| 4924 | /* Correct for differences in char width: some chars are |
| 4925 | * double-wide in 'encoding' but single-wide in utf-8. Add a space to |
| 4926 | * compensate for that. */ |
| 4927 | for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; ) |
| 4928 | { |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 4929 | plen = utf_ptr2len(bp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4930 | if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1) |
| 4931 | { |
| 4932 | new_conv_buf = alloc(convlen + 2); |
| 4933 | if (new_conv_buf == NULL) |
| 4934 | return len; |
| 4935 | plen += bp - conv_buf; |
| 4936 | mch_memmove(new_conv_buf, conv_buf, plen); |
| 4937 | new_conv_buf[plen] = ' '; |
| 4938 | mch_memmove(new_conv_buf + plen + 1, conv_buf + plen, |
| 4939 | convlen - plen + 1); |
| 4940 | vim_free(conv_buf); |
| 4941 | conv_buf = new_conv_buf; |
| 4942 | ++convlen; |
| 4943 | bp = conv_buf + plen; |
| 4944 | plen = 1; |
| 4945 | } |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 4946 | sp += (*mb_ptr2len)(sp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4947 | bp += plen; |
| 4948 | } |
| 4949 | s = conv_buf; |
| 4950 | len = convlen; |
| 4951 | } |
| 4952 | |
| 4953 | /* |
| 4954 | * Restrict all drawing to the current screen line in order to prevent |
| 4955 | * fuzzy font lookups from messing up the screen. |
| 4956 | */ |
| 4957 | area.x = gui.border_offset; |
| 4958 | area.y = FILL_Y(row); |
| 4959 | area.width = gui.num_cols * gui.char_width; |
| 4960 | area.height = gui.char_height; |
| 4961 | |
| 4962 | gdk_gc_set_clip_origin(gui.text_gc, 0, 0); |
| 4963 | gdk_gc_set_clip_rectangle(gui.text_gc, &area); |
| 4964 | |
| 4965 | glyphs = pango_glyph_string_new(); |
| 4966 | |
| 4967 | /* |
| 4968 | * Optimization hack: If possible, skip the itemize and shaping process |
| 4969 | * for pure ASCII strings. This optimization is particularly effective |
| 4970 | * because Vim draws space characters to clear parts of the screen. |
| 4971 | */ |
| 4972 | if (!(flags & DRAW_ITALIC) |
| 4973 | && !((flags & DRAW_BOLD) && gui.font_can_bold) |
| 4974 | && gui.ascii_glyphs != NULL) |
| 4975 | { |
| 4976 | char_u *p; |
| 4977 | |
| 4978 | for (p = s; p < s + len; ++p) |
| 4979 | if (*p & 0x80) |
| 4980 | goto not_ascii; |
| 4981 | |
| 4982 | pango_glyph_string_set_size(glyphs, len); |
| 4983 | |
| 4984 | for (i = 0; i < len; ++i) |
| 4985 | { |
| 4986 | glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[s[i]]; |
| 4987 | glyphs->log_clusters[i] = i; |
| 4988 | } |
| 4989 | |
| 4990 | draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs); |
| 4991 | |
| 4992 | column_offset = len; |
| 4993 | } |
| 4994 | else |
| 4995 | not_ascii: |
| 4996 | { |
| 4997 | PangoAttrList *attr_list; |
| 4998 | GList *item_list; |
| 4999 | int cluster_width; |
| 5000 | int last_glyph_rbearing; |
| 5001 | int cells = 0; /* cells occupied by current cluster */ |
| 5002 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5003 | /* Safety check: pango crashes when invoked with invalid utf-8 |
| 5004 | * characters. */ |
| 5005 | if (!utf_valid_string(s, s + len)) |
| 5006 | { |
| 5007 | column_offset = len; |
| 5008 | goto skipitall; |
| 5009 | } |
| 5010 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5011 | /* original width of the current cluster */ |
| 5012 | cluster_width = PANGO_SCALE * gui.char_width; |
| 5013 | |
| 5014 | /* right bearing of the last non-composing glyph */ |
| 5015 | last_glyph_rbearing = PANGO_SCALE * gui.char_width; |
| 5016 | |
| 5017 | attr_list = pango_attr_list_new(); |
| 5018 | |
| 5019 | /* If 'guifontwide' is set then use that for double-width characters. |
| 5020 | * Otherwise just go with 'guifont' and let Pango do its thing. */ |
| 5021 | if (gui.wide_font != NULL) |
| 5022 | apply_wide_font_attr(s, len, attr_list); |
| 5023 | |
| 5024 | if ((flags & DRAW_BOLD) && gui.font_can_bold) |
| 5025 | INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD), |
| 5026 | attr_list, 0, len); |
| 5027 | if (flags & DRAW_ITALIC) |
| 5028 | INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC), |
| 5029 | attr_list, 0, len); |
| 5030 | /* |
| 5031 | * Break the text into segments with consistent directional level |
| 5032 | * and shaping engine. Pure Latin text needs only a single segment, |
| 5033 | * so there's no need to worry about the loop's efficiency. Better |
| 5034 | * try to optimize elsewhere, e.g. reducing exposes and stuff :) |
| 5035 | */ |
| 5036 | item_list = pango_itemize(gui.text_context, |
| 5037 | (const char *)s, 0, len, attr_list, NULL); |
| 5038 | |
| 5039 | while (item_list != NULL) |
| 5040 | { |
| 5041 | PangoItem *item; |
| 5042 | int item_cells = 0; /* item length in cells */ |
| 5043 | |
| 5044 | item = (PangoItem *)item_list->data; |
| 5045 | item_list = g_list_delete_link(item_list, item_list); |
| 5046 | /* |
| 5047 | * Increment the bidirectional embedding level by 1 if it is not |
| 5048 | * even. An odd number means the output will be RTL, but we don't |
| 5049 | * want that since Vim handles right-to-left text on its own. It |
| 5050 | * would probably be sufficient to just set level = 0, but you can |
| 5051 | * never know :) |
| 5052 | * |
| 5053 | * Unfortunately we can't take advantage of Pango's ability to |
| 5054 | * render both LTR and RTL at the same time. In order to support |
| 5055 | * that, Vim's main screen engine would have to make use of Pango |
| 5056 | * functionality. |
| 5057 | */ |
| 5058 | item->analysis.level = (item->analysis.level + 1) & (~1U); |
| 5059 | |
| 5060 | /* HACK: Overrule the shape engine, we don't want shaping to be |
| 5061 | * done, because drawing the cursor would change the display. */ |
| 5062 | item->analysis.shape_engine = default_shape_engine; |
| 5063 | |
Bram Moolenaar | 3cbe0c0 | 2015-09-08 20:00:22 +0200 | [diff] [blame] | 5064 | #ifdef HAVE_PANGO_SHAPE_FULL |
Bram Moolenaar | 7e2ec00 | 2015-09-08 16:31:06 +0200 | [diff] [blame] | 5065 | pango_shape_full((const char *)s + item->offset, item->length, |
| 5066 | (const char *)s, len, &item->analysis, glyphs); |
Bram Moolenaar | 3cbe0c0 | 2015-09-08 20:00:22 +0200 | [diff] [blame] | 5067 | #else |
| 5068 | pango_shape((const char *)s + item->offset, item->length, |
| 5069 | &item->analysis, glyphs); |
| 5070 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5071 | /* |
| 5072 | * Fixed-width hack: iterate over the array and assign a fixed |
| 5073 | * width to each glyph, thus overriding the choice made by the |
| 5074 | * shaping engine. We use utf_char2cells() to determine the |
| 5075 | * number of cells needed. |
| 5076 | * |
| 5077 | * Also perform all kind of dark magic to get composing |
| 5078 | * characters right (and pretty too of course). |
| 5079 | */ |
| 5080 | for (i = 0; i < glyphs->num_glyphs; ++i) |
| 5081 | { |
| 5082 | PangoGlyphInfo *glyph; |
| 5083 | |
| 5084 | glyph = &glyphs->glyphs[i]; |
| 5085 | |
| 5086 | if (glyph->attr.is_cluster_start) |
| 5087 | { |
| 5088 | int cellcount; |
| 5089 | |
| 5090 | cellcount = count_cluster_cells( |
| 5091 | s, item, glyphs, i, &cluster_width, |
| 5092 | (item_list != NULL) ? &last_glyph_rbearing : NULL); |
| 5093 | |
| 5094 | if (cellcount > 0) |
| 5095 | { |
| 5096 | int width; |
| 5097 | |
| 5098 | width = cellcount * gui.char_width * PANGO_SCALE; |
| 5099 | glyph->geometry.x_offset += |
| 5100 | MAX(0, width - cluster_width) / 2; |
| 5101 | glyph->geometry.width = width; |
| 5102 | } |
| 5103 | else |
| 5104 | { |
| 5105 | /* If there are only combining characters in the |
| 5106 | * cluster, we cannot just change the width of the |
| 5107 | * previous glyph since there is none. Therefore |
| 5108 | * some guesswork is needed. */ |
| 5109 | setup_zero_width_cluster(item, glyph, cells, |
| 5110 | cluster_width, |
| 5111 | last_glyph_rbearing); |
| 5112 | } |
| 5113 | |
| 5114 | item_cells += cellcount; |
| 5115 | cells = cellcount; |
| 5116 | } |
| 5117 | else if (i > 0) |
| 5118 | { |
| 5119 | int width; |
| 5120 | |
| 5121 | /* There is a previous glyph, so we deal with combining |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5122 | * characters the canonical way. |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 5123 | * In some circumstances Pango uses a positive x_offset, |
| 5124 | * then use the width of the previous glyph for this one |
| 5125 | * and set the previous width to zero. |
| 5126 | * Otherwise we get a negative x_offset, Pango has already |
| 5127 | * positioned the combining char, keep the widths as they |
| 5128 | * are. |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5129 | * For both adjust the x_offset to position the glyph in |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 5130 | * the middle. */ |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5131 | if (glyph->geometry.x_offset >= 0) |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 5132 | { |
| 5133 | glyphs->glyphs[i].geometry.width = |
| 5134 | glyphs->glyphs[i - 1].geometry.width; |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5135 | glyphs->glyphs[i - 1].geometry.width = 0; |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 5136 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5137 | width = cells * gui.char_width * PANGO_SCALE; |
| 5138 | glyph->geometry.x_offset += |
| 5139 | MAX(0, width - cluster_width) / 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5140 | } |
| 5141 | else /* i == 0 "cannot happen" */ |
| 5142 | { |
| 5143 | glyph->geometry.width = 0; |
| 5144 | } |
| 5145 | } |
| 5146 | |
| 5147 | /*** Aaaaand action! ***/ |
| 5148 | draw_glyph_string(row, col + column_offset, item_cells, |
| 5149 | flags, item->analysis.font, glyphs); |
| 5150 | |
| 5151 | pango_item_free(item); |
| 5152 | |
| 5153 | column_offset += item_cells; |
| 5154 | } |
| 5155 | |
| 5156 | pango_attr_list_unref(attr_list); |
| 5157 | } |
| 5158 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5159 | skipitall: |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5160 | /* Draw underline and undercurl. */ |
| 5161 | draw_under(flags, row, col, column_offset); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5162 | |
| 5163 | pango_glyph_string_free(glyphs); |
| 5164 | vim_free(conv_buf); |
| 5165 | |
| 5166 | gdk_gc_set_clip_rectangle(gui.text_gc, NULL); |
| 5167 | |
| 5168 | return column_offset; |
| 5169 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5170 | |
| 5171 | /* |
| 5172 | * Return OK if the key with the termcap name "name" is supported. |
| 5173 | */ |
| 5174 | int |
| 5175 | gui_mch_haskey(char_u *name) |
| 5176 | { |
| 5177 | int i; |
| 5178 | |
| 5179 | for (i = 0; special_keys[i].key_sym != 0; i++) |
| 5180 | if (name[0] == special_keys[i].code0 |
| 5181 | && name[1] == special_keys[i].code1) |
| 5182 | return OK; |
| 5183 | return FAIL; |
| 5184 | } |
| 5185 | |
Bram Moolenaar | b2c5a5a | 2013-02-14 22:11:39 +0100 | [diff] [blame] | 5186 | #if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5187 | /* |
| 5188 | * Return the text window-id and display. Only required for X-based GUI's |
| 5189 | */ |
| 5190 | int |
| 5191 | gui_get_x11_windis(Window *win, Display **dis) |
| 5192 | { |
| 5193 | if (gui.mainwin != NULL && gui.mainwin->window != NULL) |
| 5194 | { |
| 5195 | *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window); |
| 5196 | *win = GDK_WINDOW_XWINDOW(gui.mainwin->window); |
| 5197 | return OK; |
| 5198 | } |
| 5199 | |
| 5200 | *dis = NULL; |
| 5201 | *win = 0; |
| 5202 | return FAIL; |
| 5203 | } |
| 5204 | #endif |
| 5205 | |
| 5206 | #if defined(FEAT_CLIENTSERVER) \ |
| 5207 | || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO) |
| 5208 | |
| 5209 | Display * |
| 5210 | gui_mch_get_display(void) |
| 5211 | { |
| 5212 | if (gui.mainwin != NULL && gui.mainwin->window != NULL) |
| 5213 | return GDK_WINDOW_XDISPLAY(gui.mainwin->window); |
| 5214 | else |
| 5215 | return NULL; |
| 5216 | } |
| 5217 | #endif |
| 5218 | |
| 5219 | void |
| 5220 | gui_mch_beep(void) |
| 5221 | { |
| 5222 | #ifdef HAVE_GTK_MULTIHEAD |
| 5223 | GdkDisplay *display; |
| 5224 | |
| 5225 | if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin)) |
| 5226 | display = gtk_widget_get_display(gui.mainwin); |
| 5227 | else |
| 5228 | display = gdk_display_get_default(); |
| 5229 | |
| 5230 | if (display != NULL) |
| 5231 | gdk_display_beep(display); |
| 5232 | #else |
| 5233 | gdk_beep(); |
| 5234 | #endif |
| 5235 | } |
| 5236 | |
| 5237 | void |
| 5238 | gui_mch_flash(int msec) |
| 5239 | { |
| 5240 | GdkGCValues values; |
| 5241 | GdkGC *invert_gc; |
| 5242 | |
| 5243 | if (gui.drawarea->window == NULL) |
| 5244 | return; |
| 5245 | |
| 5246 | values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 5247 | values.background.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 5248 | values.function = GDK_XOR; |
| 5249 | invert_gc = gdk_gc_new_with_values(gui.drawarea->window, |
| 5250 | &values, |
| 5251 | GDK_GC_FOREGROUND | |
| 5252 | GDK_GC_BACKGROUND | |
| 5253 | GDK_GC_FUNCTION); |
| 5254 | gdk_gc_set_exposures(invert_gc, |
| 5255 | gui.visibility != GDK_VISIBILITY_UNOBSCURED); |
| 5256 | /* |
| 5257 | * Do a visual beep by changing back and forth in some undetermined way, |
| 5258 | * the foreground and background colors. This is due to the fact that |
| 5259 | * there can't be really any prediction about the effects of XOR on |
| 5260 | * arbitrary X11 servers. However this seems to be enough for what we |
| 5261 | * intend it to do. |
| 5262 | */ |
| 5263 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 5264 | TRUE, |
| 5265 | 0, 0, |
| 5266 | FILL_X((int)Columns) + gui.border_offset, |
| 5267 | FILL_Y((int)Rows) + gui.border_offset); |
| 5268 | |
| 5269 | gui_mch_flush(); |
| 5270 | ui_delay((long)msec, TRUE); /* wait so many msec */ |
| 5271 | |
| 5272 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 5273 | TRUE, |
| 5274 | 0, 0, |
| 5275 | FILL_X((int)Columns) + gui.border_offset, |
| 5276 | FILL_Y((int)Rows) + gui.border_offset); |
| 5277 | |
| 5278 | gdk_gc_destroy(invert_gc); |
| 5279 | } |
| 5280 | |
| 5281 | /* |
| 5282 | * Invert a rectangle from row r, column c, for nr rows and nc columns. |
| 5283 | */ |
| 5284 | void |
| 5285 | gui_mch_invert_rectangle(int r, int c, int nr, int nc) |
| 5286 | { |
| 5287 | GdkGCValues values; |
| 5288 | GdkGC *invert_gc; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5289 | |
| 5290 | if (gui.drawarea->window == NULL) |
| 5291 | return; |
| 5292 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5293 | values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 5294 | values.background.pixel = gui.norm_pixel ^ gui.back_pixel; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5295 | values.function = GDK_XOR; |
| 5296 | invert_gc = gdk_gc_new_with_values(gui.drawarea->window, |
| 5297 | &values, |
| 5298 | GDK_GC_FOREGROUND | |
| 5299 | GDK_GC_BACKGROUND | |
| 5300 | GDK_GC_FUNCTION); |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5301 | gdk_gc_set_exposures(invert_gc, gui.visibility != |
| 5302 | GDK_VISIBILITY_UNOBSCURED); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5303 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 5304 | TRUE, |
| 5305 | FILL_X(c), FILL_Y(r), |
| 5306 | (nc) * gui.char_width, (nr) * gui.char_height); |
| 5307 | gdk_gc_destroy(invert_gc); |
| 5308 | } |
| 5309 | |
| 5310 | /* |
| 5311 | * Iconify the GUI window. |
| 5312 | */ |
| 5313 | void |
| 5314 | gui_mch_iconify(void) |
| 5315 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5316 | gtk_window_iconify(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5317 | } |
| 5318 | |
| 5319 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 5320 | /* |
| 5321 | * Bring the Vim window to the foreground. |
| 5322 | */ |
| 5323 | void |
| 5324 | gui_mch_set_foreground(void) |
| 5325 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5326 | gtk_window_present(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5327 | } |
| 5328 | #endif |
| 5329 | |
| 5330 | /* |
| 5331 | * Draw a cursor without focus. |
| 5332 | */ |
| 5333 | void |
| 5334 | gui_mch_draw_hollow_cursor(guicolor_T color) |
| 5335 | { |
| 5336 | int i = 1; |
| 5337 | |
| 5338 | if (gui.drawarea->window == NULL) |
| 5339 | return; |
| 5340 | |
| 5341 | gui_mch_set_fg_color(color); |
| 5342 | |
| 5343 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5344 | if (mb_lefthalve(gui.row, gui.col)) |
| 5345 | i = 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5346 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
| 5347 | FALSE, |
| 5348 | FILL_X(gui.col), FILL_Y(gui.row), |
| 5349 | i * gui.char_width - 1, gui.char_height - 1); |
| 5350 | } |
| 5351 | |
| 5352 | /* |
| 5353 | * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using |
| 5354 | * color "color". |
| 5355 | */ |
| 5356 | void |
| 5357 | gui_mch_draw_part_cursor(int w, int h, guicolor_T color) |
| 5358 | { |
| 5359 | if (gui.drawarea->window == NULL) |
| 5360 | return; |
| 5361 | |
| 5362 | gui_mch_set_fg_color(color); |
| 5363 | |
| 5364 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 5365 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
| 5366 | TRUE, |
| 5367 | #ifdef FEAT_RIGHTLEFT |
| 5368 | /* vertical line should be on the right of current point */ |
| 5369 | CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : |
| 5370 | #endif |
| 5371 | FILL_X(gui.col), |
| 5372 | FILL_Y(gui.row) + gui.char_height - h, |
| 5373 | w, h); |
| 5374 | } |
| 5375 | |
| 5376 | |
| 5377 | /* |
| 5378 | * Catch up with any queued X11 events. This may put keyboard input into the |
| 5379 | * input buffer, call resize call-backs, trigger timers etc. If there is |
| 5380 | * nothing in the X11 event queue (& no timers pending), then we return |
| 5381 | * immediately. |
| 5382 | */ |
| 5383 | void |
| 5384 | gui_mch_update(void) |
| 5385 | { |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 5386 | while (g_main_context_pending(NULL) && !vim_is_input_buf_full()) |
| 5387 | g_main_context_iteration(NULL, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5388 | } |
| 5389 | |
| 5390 | static gint |
| 5391 | input_timer_cb(gpointer data) |
| 5392 | { |
| 5393 | int *timed_out = (int *) data; |
| 5394 | |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 5395 | /* Just inform the caller about the occurrence of it */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5396 | *timed_out = TRUE; |
| 5397 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5398 | return FALSE; /* don't happen again */ |
| 5399 | } |
| 5400 | |
| 5401 | #ifdef FEAT_SNIFF |
| 5402 | /* |
| 5403 | * Callback function, used when data is available on the SNiFF connection. |
| 5404 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5405 | static void |
| 5406 | sniff_request_cb( |
| 5407 | gpointer data, |
| 5408 | gint source_fd, |
| 5409 | GdkInputCondition condition) |
| 5410 | { |
| 5411 | static char_u bytes[3] = {CSI, (int)KS_EXTRA, (int)KE_SNIFF}; |
| 5412 | |
| 5413 | add_to_input_buf(bytes, 3); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5414 | } |
| 5415 | #endif |
| 5416 | |
| 5417 | /* |
| 5418 | * GUI input routine called by gui_wait_for_chars(). Waits for a character |
| 5419 | * from the keyboard. |
| 5420 | * wtime == -1 Wait forever. |
| 5421 | * wtime == 0 This should never happen. |
| 5422 | * wtime > 0 Wait wtime milliseconds for a character. |
| 5423 | * Returns OK if a character was found to be available within the given time, |
| 5424 | * or FAIL otherwise. |
| 5425 | */ |
| 5426 | int |
| 5427 | gui_mch_wait_for_chars(long wtime) |
| 5428 | { |
| 5429 | int focus; |
| 5430 | guint timer; |
| 5431 | static int timed_out; |
| 5432 | #ifdef FEAT_SNIFF |
| 5433 | static int sniff_on = 0; |
| 5434 | static gint sniff_input_id = 0; |
| 5435 | #endif |
| 5436 | |
| 5437 | #ifdef FEAT_SNIFF |
| 5438 | if (sniff_on && !want_sniff_request) |
| 5439 | { |
| 5440 | if (sniff_input_id) |
| 5441 | gdk_input_remove(sniff_input_id); |
| 5442 | sniff_on = 0; |
| 5443 | } |
| 5444 | else if (!sniff_on && want_sniff_request) |
| 5445 | { |
| 5446 | /* Add fd_from_sniff to watch for available data in main loop. */ |
| 5447 | sniff_input_id = gdk_input_add(fd_from_sniff, |
| 5448 | GDK_INPUT_READ, sniff_request_cb, NULL); |
| 5449 | sniff_on = 1; |
| 5450 | } |
| 5451 | #endif |
| 5452 | |
| 5453 | timed_out = FALSE; |
| 5454 | |
| 5455 | /* this timeout makes sure that we will return if no characters arrived in |
| 5456 | * time */ |
| 5457 | |
| 5458 | if (wtime > 0) |
| 5459 | timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out); |
| 5460 | else |
| 5461 | timer = 0; |
| 5462 | |
| 5463 | focus = gui.in_focus; |
| 5464 | |
| 5465 | do |
| 5466 | { |
| 5467 | /* Stop or start blinking when focus changes */ |
| 5468 | if (gui.in_focus != focus) |
| 5469 | { |
| 5470 | if (gui.in_focus) |
| 5471 | gui_mch_start_blink(); |
| 5472 | else |
| 5473 | gui_mch_stop_blink(); |
| 5474 | focus = gui.in_focus; |
| 5475 | } |
| 5476 | |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 5477 | #ifdef MESSAGE_QUEUE |
| 5478 | parse_queued_messages(); |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 5479 | #endif |
| 5480 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5481 | /* |
| 5482 | * Loop in GTK+ processing until a timeout or input occurs. |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 5483 | * Skip this if input is available anyway (can happen in rare |
| 5484 | * situations, sort of race condition). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5485 | */ |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 5486 | if (!input_available()) |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 5487 | g_main_context_iteration(NULL, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5488 | |
| 5489 | /* Got char, return immediately */ |
| 5490 | if (input_available()) |
| 5491 | { |
| 5492 | if (timer != 0 && !timed_out) |
| 5493 | gtk_timeout_remove(timer); |
| 5494 | return OK; |
| 5495 | } |
| 5496 | } while (wtime < 0 || !timed_out); |
| 5497 | |
| 5498 | /* |
| 5499 | * Flush all eventually pending (drawing) events. |
| 5500 | */ |
| 5501 | gui_mch_update(); |
| 5502 | |
| 5503 | return FAIL; |
| 5504 | } |
| 5505 | |
| 5506 | |
| 5507 | /**************************************************************************** |
| 5508 | * Output drawing routines. |
| 5509 | ****************************************************************************/ |
| 5510 | |
| 5511 | |
| 5512 | /* Flush any output to the screen */ |
| 5513 | void |
| 5514 | gui_mch_flush(void) |
| 5515 | { |
| 5516 | #ifdef HAVE_GTK_MULTIHEAD |
| 5517 | if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin)) |
| 5518 | gdk_display_sync(gtk_widget_get_display(gui.mainwin)); |
| 5519 | #else |
| 5520 | gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */ |
| 5521 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5522 | /* This happens to actually do what gui_mch_flush() is supposed to do, |
| 5523 | * according to the comment above. */ |
| 5524 | if (gui.drawarea != NULL && gui.drawarea->window != NULL) |
| 5525 | gdk_window_process_updates(gui.drawarea->window, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5526 | } |
| 5527 | |
| 5528 | /* |
| 5529 | * Clear a rectangular region of the screen from text pos (row1, col1) to |
| 5530 | * (row2, col2) inclusive. |
| 5531 | */ |
| 5532 | void |
| 5533 | gui_mch_clear_block(int row1, int col1, int row2, int col2) |
| 5534 | { |
| 5535 | GdkColor color; |
| 5536 | |
| 5537 | if (gui.drawarea->window == NULL) |
| 5538 | return; |
| 5539 | |
| 5540 | color.pixel = gui.back_pixel; |
| 5541 | |
| 5542 | gdk_gc_set_foreground(gui.text_gc, &color); |
| 5543 | |
| 5544 | /* Clear one extra pixel at the far right, for when bold characters have |
| 5545 | * spilled over to the window border. */ |
| 5546 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE, |
| 5547 | FILL_X(col1), FILL_Y(row1), |
| 5548 | (col2 - col1 + 1) * gui.char_width |
| 5549 | + (col2 == Columns - 1), |
| 5550 | (row2 - row1 + 1) * gui.char_height); |
| 5551 | } |
| 5552 | |
| 5553 | void |
| 5554 | gui_mch_clear_all(void) |
| 5555 | { |
| 5556 | if (gui.drawarea->window != NULL) |
| 5557 | gdk_window_clear(gui.drawarea->window); |
| 5558 | } |
| 5559 | |
| 5560 | /* |
| 5561 | * Redraw any text revealed by scrolling up/down. |
| 5562 | */ |
| 5563 | static void |
| 5564 | check_copy_area(void) |
| 5565 | { |
| 5566 | GdkEvent *event; |
| 5567 | int expose_count; |
| 5568 | |
| 5569 | if (gui.visibility != GDK_VISIBILITY_PARTIAL) |
| 5570 | return; |
| 5571 | |
| 5572 | /* Avoid redrawing the cursor while scrolling or it'll end up where |
| 5573 | * we don't want it to be. I'm not sure if it's correct to call |
| 5574 | * gui_dont_update_cursor() at this point but it works as a quick |
| 5575 | * fix for now. */ |
| 5576 | gui_dont_update_cursor(); |
| 5577 | |
| 5578 | do |
| 5579 | { |
| 5580 | /* Wait to check whether the scroll worked or not. */ |
| 5581 | event = gdk_event_get_graphics_expose(gui.drawarea->window); |
| 5582 | |
| 5583 | if (event == NULL) |
| 5584 | break; /* received NoExpose event */ |
| 5585 | |
| 5586 | gui_redraw(event->expose.area.x, event->expose.area.y, |
| 5587 | event->expose.area.width, event->expose.area.height); |
| 5588 | |
| 5589 | expose_count = event->expose.count; |
| 5590 | gdk_event_free(event); |
| 5591 | } |
| 5592 | while (expose_count > 0); /* more events follow */ |
| 5593 | |
| 5594 | gui_can_update_cursor(); |
| 5595 | } |
| 5596 | |
| 5597 | /* |
| 5598 | * Delete the given number of lines from the given row, scrolling up any |
| 5599 | * text further down within the scroll region. |
| 5600 | */ |
| 5601 | void |
| 5602 | gui_mch_delete_lines(int row, int num_lines) |
| 5603 | { |
| 5604 | if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
| 5605 | return; /* Can't see the window */ |
| 5606 | |
| 5607 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 5608 | gdk_gc_set_background(gui.text_gc, gui.bgcolor); |
| 5609 | |
| 5610 | /* copy one extra pixel, for when bold has spilled over */ |
| 5611 | gdk_window_copy_area(gui.drawarea->window, gui.text_gc, |
| 5612 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 5613 | gui.drawarea->window, |
| 5614 | FILL_X(gui.scroll_region_left), |
| 5615 | FILL_Y(row + num_lines), |
| 5616 | gui.char_width * (gui.scroll_region_right |
| 5617 | - gui.scroll_region_left + 1) + 1, |
| 5618 | gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); |
| 5619 | |
| 5620 | gui_clear_block(gui.scroll_region_bot - num_lines + 1, |
| 5621 | gui.scroll_region_left, |
| 5622 | gui.scroll_region_bot, gui.scroll_region_right); |
| 5623 | check_copy_area(); |
| 5624 | } |
| 5625 | |
| 5626 | /* |
| 5627 | * Insert the given number of lines before the given row, scrolling down any |
| 5628 | * following text within the scroll region. |
| 5629 | */ |
| 5630 | void |
| 5631 | gui_mch_insert_lines(int row, int num_lines) |
| 5632 | { |
| 5633 | if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
| 5634 | return; /* Can't see the window */ |
| 5635 | |
| 5636 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 5637 | gdk_gc_set_background(gui.text_gc, gui.bgcolor); |
| 5638 | |
| 5639 | /* copy one extra pixel, for when bold has spilled over */ |
| 5640 | gdk_window_copy_area(gui.drawarea->window, gui.text_gc, |
| 5641 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 5642 | gui.drawarea->window, |
| 5643 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 5644 | gui.char_width * (gui.scroll_region_right |
| 5645 | - gui.scroll_region_left + 1) + 1, |
| 5646 | gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); |
| 5647 | |
| 5648 | gui_clear_block(row, gui.scroll_region_left, |
| 5649 | row + num_lines - 1, gui.scroll_region_right); |
| 5650 | check_copy_area(); |
| 5651 | } |
| 5652 | |
| 5653 | /* |
| 5654 | * X Selection stuff, for cutting and pasting text to other windows. |
| 5655 | */ |
| 5656 | void |
| 5657 | clip_mch_request_selection(VimClipboard *cbd) |
| 5658 | { |
| 5659 | GdkAtom target; |
| 5660 | unsigned i; |
Bram Moolenaar | 51b5ab9 | 2008-01-06 14:17:07 +0000 | [diff] [blame] | 5661 | time_t start; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5662 | |
| 5663 | for (i = 0; i < N_SELECTION_TARGETS; ++i) |
| 5664 | { |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 5665 | if (!clip_html && selection_targets[i].info == TARGET_HTML) |
| 5666 | continue; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5667 | received_selection = RS_NONE; |
| 5668 | target = gdk_atom_intern(selection_targets[i].target, FALSE); |
| 5669 | |
| 5670 | gtk_selection_convert(gui.drawarea, |
| 5671 | cbd->gtk_sel_atom, target, |
| 5672 | (guint32)GDK_CURRENT_TIME); |
| 5673 | |
Bram Moolenaar | 51b5ab9 | 2008-01-06 14:17:07 +0000 | [diff] [blame] | 5674 | /* Hack: Wait up to three seconds for the selection. A hang was |
| 5675 | * noticed here when using the netrw plugin combined with ":gui" |
| 5676 | * during the FocusGained event. */ |
| 5677 | start = time(NULL); |
| 5678 | while (received_selection == RS_NONE && time(NULL) < start + 3) |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 5679 | g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5680 | |
| 5681 | if (received_selection != RS_FAIL) |
| 5682 | return; |
| 5683 | } |
| 5684 | |
| 5685 | /* Final fallback position - use the X CUT_BUFFER0 store */ |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 5686 | yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5687 | } |
| 5688 | |
| 5689 | /* |
| 5690 | * Disown the selection. |
| 5691 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5692 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5693 | clip_mch_lose_selection(VimClipboard *cbd UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5694 | { |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 5695 | gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5696 | gui_mch_update(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5697 | } |
| 5698 | |
| 5699 | /* |
| 5700 | * Own the selection and return OK if it worked. |
| 5701 | */ |
| 5702 | int |
| 5703 | clip_mch_own_selection(VimClipboard *cbd) |
| 5704 | { |
| 5705 | int success; |
| 5706 | |
| 5707 | success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom, |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 5708 | gui.event_time); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5709 | gui_mch_update(); |
| 5710 | return (success) ? OK : FAIL; |
| 5711 | } |
| 5712 | |
| 5713 | /* |
| 5714 | * Send the current selection to the clipboard. Do nothing for X because we |
| 5715 | * will fill in the selection only when requested by another app. |
| 5716 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5717 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5718 | clip_mch_set_selection(VimClipboard *cbd UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5719 | { |
| 5720 | } |
| 5721 | |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 5722 | int |
| 5723 | clip_gtk_owner_exists(VimClipboard *cbd) |
| 5724 | { |
| 5725 | return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL; |
| 5726 | } |
| 5727 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5728 | |
| 5729 | #if defined(FEAT_MENU) || defined(PROTO) |
| 5730 | /* |
| 5731 | * Make a menu item appear either active or not active (grey or not grey). |
| 5732 | */ |
| 5733 | void |
| 5734 | gui_mch_menu_grey(vimmenu_T *menu, int grey) |
| 5735 | { |
| 5736 | if (menu->id == NULL) |
| 5737 | return; |
| 5738 | |
| 5739 | if (menu_is_separator(menu->name)) |
| 5740 | grey = TRUE; |
| 5741 | |
| 5742 | gui_mch_menu_hidden(menu, FALSE); |
| 5743 | /* Be clever about bitfields versus true booleans here! */ |
| 5744 | if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey) |
| 5745 | { |
| 5746 | gtk_widget_set_sensitive(menu->id, !grey); |
| 5747 | gui_mch_update(); |
| 5748 | } |
| 5749 | } |
| 5750 | |
| 5751 | /* |
| 5752 | * Make menu item hidden or not hidden. |
| 5753 | */ |
| 5754 | void |
| 5755 | gui_mch_menu_hidden(vimmenu_T *menu, int hidden) |
| 5756 | { |
| 5757 | if (menu->id == 0) |
| 5758 | return; |
| 5759 | |
| 5760 | if (hidden) |
| 5761 | { |
| 5762 | if (GTK_WIDGET_VISIBLE(menu->id)) |
| 5763 | { |
| 5764 | gtk_widget_hide(menu->id); |
| 5765 | gui_mch_update(); |
| 5766 | } |
| 5767 | } |
| 5768 | else |
| 5769 | { |
| 5770 | if (!GTK_WIDGET_VISIBLE(menu->id)) |
| 5771 | { |
| 5772 | gtk_widget_show(menu->id); |
| 5773 | gui_mch_update(); |
| 5774 | } |
| 5775 | } |
| 5776 | } |
| 5777 | |
| 5778 | /* |
| 5779 | * This is called after setting all the menus to grey/hidden or not. |
| 5780 | */ |
| 5781 | void |
| 5782 | gui_mch_draw_menubar(void) |
| 5783 | { |
| 5784 | /* just make sure that the visual changes get effect immediately */ |
| 5785 | gui_mch_update(); |
| 5786 | } |
| 5787 | #endif /* FEAT_MENU */ |
| 5788 | |
| 5789 | /* |
| 5790 | * Scrollbar stuff. |
| 5791 | */ |
| 5792 | void |
| 5793 | gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) |
| 5794 | { |
| 5795 | if (sb->id == NULL) |
| 5796 | return; |
| 5797 | |
| 5798 | if (flag) |
| 5799 | gtk_widget_show(sb->id); |
| 5800 | else |
| 5801 | gtk_widget_hide(sb->id); |
| 5802 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 5803 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5804 | } |
| 5805 | |
| 5806 | |
| 5807 | /* |
| 5808 | * Return the RGB value of a pixel as long. |
| 5809 | */ |
| 5810 | long_u |
| 5811 | gui_mch_get_rgb(guicolor_T pixel) |
| 5812 | { |
| 5813 | GdkColor color; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5814 | gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea), |
| 5815 | (unsigned long)pixel, &color); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5816 | |
| 5817 | return (((unsigned)color.red & 0xff00) << 8) |
| 5818 | | ((unsigned)color.green & 0xff00) |
| 5819 | | (((unsigned)color.blue & 0xff00) >> 8); |
| 5820 | } |
| 5821 | |
| 5822 | /* |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 5823 | * Get current mouse coordinates in text window. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5824 | */ |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 5825 | void |
| 5826 | gui_mch_getmouse(int *x, int *y) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5827 | { |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 5828 | gdk_window_get_pointer(gui.drawarea->window, x, y, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5829 | } |
| 5830 | |
| 5831 | void |
| 5832 | gui_mch_setmouse(int x, int y) |
| 5833 | { |
| 5834 | /* Sorry for the Xlib call, but we can't avoid it, since there is no |
| 5835 | * internal GDK mechanism present to accomplish this. (and for good |
| 5836 | * reason...) */ |
| 5837 | XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window), |
| 5838 | (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window), |
| 5839 | 0, 0, 0U, 0U, x, y); |
| 5840 | } |
| 5841 | |
| 5842 | |
| 5843 | #ifdef FEAT_MOUSESHAPE |
| 5844 | /* The last set mouse pointer shape is remembered, to be used when it goes |
| 5845 | * from hidden to not hidden. */ |
| 5846 | static int last_shape = 0; |
| 5847 | #endif |
| 5848 | |
| 5849 | /* |
| 5850 | * Use the blank mouse pointer or not. |
| 5851 | * |
| 5852 | * hide: TRUE = use blank ptr, FALSE = use parent ptr |
| 5853 | */ |
| 5854 | void |
| 5855 | gui_mch_mousehide(int hide) |
| 5856 | { |
| 5857 | if (gui.pointer_hidden != hide) |
| 5858 | { |
| 5859 | gui.pointer_hidden = hide; |
| 5860 | if (gui.drawarea->window && gui.blank_pointer != NULL) |
| 5861 | { |
| 5862 | if (hide) |
| 5863 | gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer); |
| 5864 | else |
| 5865 | #ifdef FEAT_MOUSESHAPE |
| 5866 | mch_set_mouse_shape(last_shape); |
| 5867 | #else |
| 5868 | gdk_window_set_cursor(gui.drawarea->window, NULL); |
| 5869 | #endif |
| 5870 | } |
| 5871 | } |
| 5872 | } |
| 5873 | |
| 5874 | #if defined(FEAT_MOUSESHAPE) || defined(PROTO) |
| 5875 | |
| 5876 | /* Table for shape IDs. Keep in sync with the mshape_names[] table in |
| 5877 | * misc2.c! */ |
| 5878 | static const int mshape_ids[] = |
| 5879 | { |
| 5880 | GDK_LEFT_PTR, /* arrow */ |
| 5881 | GDK_CURSOR_IS_PIXMAP, /* blank */ |
| 5882 | GDK_XTERM, /* beam */ |
| 5883 | GDK_SB_V_DOUBLE_ARROW, /* updown */ |
| 5884 | GDK_SIZING, /* udsizing */ |
| 5885 | GDK_SB_H_DOUBLE_ARROW, /* leftright */ |
| 5886 | GDK_SIZING, /* lrsizing */ |
| 5887 | GDK_WATCH, /* busy */ |
| 5888 | GDK_X_CURSOR, /* no */ |
| 5889 | GDK_CROSSHAIR, /* crosshair */ |
| 5890 | GDK_HAND1, /* hand1 */ |
| 5891 | GDK_HAND2, /* hand2 */ |
| 5892 | GDK_PENCIL, /* pencil */ |
| 5893 | GDK_QUESTION_ARROW, /* question */ |
| 5894 | GDK_RIGHT_PTR, /* right-arrow */ |
| 5895 | GDK_CENTER_PTR, /* up-arrow */ |
| 5896 | GDK_LEFT_PTR /* last one */ |
| 5897 | }; |
| 5898 | |
| 5899 | void |
| 5900 | mch_set_mouse_shape(int shape) |
| 5901 | { |
| 5902 | int id; |
| 5903 | GdkCursor *c; |
| 5904 | |
| 5905 | if (gui.drawarea->window == NULL) |
| 5906 | return; |
| 5907 | |
| 5908 | if (shape == MSHAPE_HIDE || gui.pointer_hidden) |
| 5909 | gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer); |
| 5910 | else |
| 5911 | { |
| 5912 | if (shape >= MSHAPE_NUMBERED) |
| 5913 | { |
| 5914 | id = shape - MSHAPE_NUMBERED; |
| 5915 | if (id >= GDK_LAST_CURSOR) |
| 5916 | id = GDK_LEFT_PTR; |
| 5917 | else |
| 5918 | id &= ~1; /* they are always even (why?) */ |
| 5919 | } |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5920 | else if (shape < (int)(sizeof(mshape_ids) / sizeof(int))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5921 | id = mshape_ids[shape]; |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 5922 | else |
| 5923 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5924 | # ifdef HAVE_GTK_MULTIHEAD |
| 5925 | c = gdk_cursor_new_for_display( |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 5926 | gtk_widget_get_display(gui.drawarea), (GdkCursorType)id); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5927 | # else |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 5928 | c = gdk_cursor_new((GdkCursorType)id); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5929 | # endif |
| 5930 | gdk_window_set_cursor(gui.drawarea->window, c); |
| 5931 | gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */ |
| 5932 | } |
| 5933 | if (shape != MSHAPE_HIDE) |
| 5934 | last_shape = shape; |
| 5935 | } |
| 5936 | #endif /* FEAT_MOUSESHAPE */ |
| 5937 | |
| 5938 | |
| 5939 | #if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
| 5940 | /* |
| 5941 | * Signs are currently always 2 chars wide. With GTK+ 2, the image will be |
| 5942 | * scaled down if the current font is not big enough, or scaled up if the image |
| 5943 | * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap |
| 5944 | * will be cut off if the current font is not big enough, or centered if it's |
| 5945 | * too small. |
| 5946 | */ |
| 5947 | # define SIGN_WIDTH (2 * gui.char_width) |
| 5948 | # define SIGN_HEIGHT (gui.char_height) |
| 5949 | # define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH) |
| 5950 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5951 | void |
| 5952 | gui_mch_drawsign(int row, int col, int typenr) |
| 5953 | { |
| 5954 | GdkPixbuf *sign; |
| 5955 | |
| 5956 | sign = (GdkPixbuf *)sign_get_image(typenr); |
| 5957 | |
| 5958 | if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL) |
| 5959 | { |
| 5960 | int width; |
| 5961 | int height; |
| 5962 | int xoffset; |
| 5963 | int yoffset; |
| 5964 | int need_scale; |
| 5965 | |
| 5966 | width = gdk_pixbuf_get_width(sign); |
| 5967 | height = gdk_pixbuf_get_height(sign); |
| 5968 | /* |
| 5969 | * Decide whether we need to scale. Allow one pixel of border |
| 5970 | * width to be cut off, in order to avoid excessive scaling for |
| 5971 | * tiny differences in font size. |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 5972 | * Do scale to fit the height to avoid gaps because of linespacing. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5973 | */ |
| 5974 | need_scale = (width > SIGN_WIDTH + 2 |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 5975 | || height != SIGN_HEIGHT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5976 | || (width < 3 * SIGN_WIDTH / 4 |
| 5977 | && height < 3 * SIGN_HEIGHT / 4)); |
| 5978 | if (need_scale) |
| 5979 | { |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 5980 | double aspect; |
| 5981 | int w = width; |
| 5982 | int h = height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5983 | |
| 5984 | /* Keep the original aspect ratio */ |
| 5985 | aspect = (double)height / (double)width; |
| 5986 | width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect; |
| 5987 | width = MIN(width, SIGN_WIDTH); |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 5988 | if (((double)(MAX(height, SIGN_HEIGHT)) / |
| 5989 | (double)(MIN(height, SIGN_HEIGHT))) < 1.15) |
| 5990 | { |
| 5991 | /* Change the aspect ratio by at most 15% to fill the |
| 5992 | * available space completly. */ |
| 5993 | height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect; |
| 5994 | height = MIN(height, SIGN_HEIGHT); |
| 5995 | } |
| 5996 | else |
| 5997 | height = (double)width * aspect; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5998 | |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 5999 | if (w == width && h == height) |
| 6000 | { |
| 6001 | /* no change in dimensions; don't decrease reference counter |
| 6002 | * (below) */ |
| 6003 | need_scale = FALSE; |
| 6004 | } |
| 6005 | else |
| 6006 | { |
| 6007 | /* This doesn't seem to be worth caching, and doing so would |
| 6008 | * complicate the code quite a bit. */ |
| 6009 | sign = gdk_pixbuf_scale_simple(sign, width, height, |
| 6010 | GDK_INTERP_BILINEAR); |
| 6011 | if (sign == NULL) |
| 6012 | return; /* out of memory */ |
| 6013 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6014 | } |
| 6015 | |
| 6016 | /* The origin is the upper-left corner of the pixmap. Therefore |
| 6017 | * these offset may become negative if the pixmap is smaller than |
| 6018 | * the 2x1 cells reserved for the sign icon. */ |
| 6019 | xoffset = (width - SIGN_WIDTH) / 2; |
| 6020 | yoffset = (height - SIGN_HEIGHT) / 2; |
| 6021 | |
| 6022 | gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
| 6023 | |
| 6024 | gdk_draw_rectangle(gui.drawarea->window, |
| 6025 | gui.text_gc, |
| 6026 | TRUE, |
| 6027 | FILL_X(col), |
| 6028 | FILL_Y(row), |
| 6029 | SIGN_WIDTH, |
| 6030 | SIGN_HEIGHT); |
| 6031 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6032 | gdk_pixbuf_render_to_drawable_alpha(sign, |
| 6033 | gui.drawarea->window, |
| 6034 | MAX(0, xoffset), |
| 6035 | MAX(0, yoffset), |
| 6036 | FILL_X(col) - MIN(0, xoffset), |
| 6037 | FILL_Y(row) - MIN(0, yoffset), |
| 6038 | MIN(width, SIGN_WIDTH), |
| 6039 | MIN(height, SIGN_HEIGHT), |
| 6040 | GDK_PIXBUF_ALPHA_BILEVEL, |
| 6041 | 127, |
| 6042 | GDK_RGB_DITHER_NORMAL, |
| 6043 | 0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6044 | if (need_scale) |
| 6045 | g_object_unref(sign); |
| 6046 | } |
| 6047 | } |
| 6048 | |
| 6049 | void * |
| 6050 | gui_mch_register_sign(char_u *signfile) |
| 6051 | { |
| 6052 | if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use) |
| 6053 | { |
| 6054 | GdkPixbuf *sign; |
| 6055 | GError *error = NULL; |
| 6056 | char_u *message; |
| 6057 | |
| 6058 | sign = gdk_pixbuf_new_from_file((const char *)signfile, &error); |
| 6059 | |
| 6060 | if (error == NULL) |
| 6061 | return sign; |
| 6062 | |
| 6063 | message = (char_u *)error->message; |
| 6064 | |
| 6065 | if (message != NULL && input_conv.vc_type != CONV_NONE) |
| 6066 | message = string_convert(&input_conv, message, NULL); |
| 6067 | |
| 6068 | if (message != NULL) |
| 6069 | { |
| 6070 | /* The error message is already translated and will be more |
| 6071 | * descriptive than anything we could possibly do ourselves. */ |
| 6072 | EMSG2("E255: %s", message); |
| 6073 | |
| 6074 | if (input_conv.vc_type != CONV_NONE) |
| 6075 | vim_free(message); |
| 6076 | } |
| 6077 | g_error_free(error); |
| 6078 | } |
| 6079 | |
| 6080 | return NULL; |
| 6081 | } |
| 6082 | |
| 6083 | void |
| 6084 | gui_mch_destroy_sign(void *sign) |
| 6085 | { |
| 6086 | if (sign != NULL) |
| 6087 | g_object_unref(sign); |
| 6088 | } |
| 6089 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6090 | #endif /* FEAT_SIGN_ICONS */ |