Bram Moolenaar | edf3f97 | 2016-08-29 22:49:24 +0200 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4 noet: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | * |
| 3 | * VIM - Vi IMproved by Bram Moolenaar |
| 4 | * |
| 5 | * Do ":help uganda" in Vim to read copying and usage conditions. |
| 6 | * Do ":help credits" in Vim to see a list of people who contributed. |
| 7 | * See README.txt for an overview of the Vim source code. |
| 8 | */ |
| 9 | |
| 10 | /* |
| 11 | * Porting to GTK+ was done by: |
| 12 | * |
Bram Moolenaar | 0a56cb8 | 2005-01-04 21:45:14 +0000 | [diff] [blame] | 13 | * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 14 | * |
| 15 | * With GREAT support and continuous encouragements by Andy Kahn and of |
| 16 | * course Bram Moolenaar! |
| 17 | * |
| 18 | * Support for GTK+ 2 was added by: |
| 19 | * |
| 20 | * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca> |
| 21 | * Daniel Elstner <daniel.elstner@gmx.net> |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 22 | * |
| 23 | * Support for GTK+ 3 was added by: |
| 24 | * |
| 25 | * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 26 | */ |
| 27 | |
| 28 | #include "vim.h" |
Bram Moolenaar | 36e294c | 2015-12-29 18:55:46 +0100 | [diff] [blame] | 29 | #ifdef USE_GRESOURCE |
| 30 | #include "auto/gui_gtk_gresources.h" |
| 31 | #endif |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 32 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 33 | #ifdef FEAT_GUI_GNOME |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 34 | // Gnome redefines _() and N_(). Grrr... |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 35 | # ifdef _ |
| 36 | # undef _ |
| 37 | # endif |
| 38 | # ifdef N_ |
| 39 | # undef N_ |
| 40 | # endif |
| 41 | # ifdef textdomain |
| 42 | # undef textdomain |
| 43 | # endif |
| 44 | # ifdef bindtextdomain |
| 45 | # undef bindtextdomain |
| 46 | # endif |
Bram Moolenaar | a2dd900 | 2007-05-14 17:38:30 +0000 | [diff] [blame] | 47 | # ifdef bind_textdomain_codeset |
| 48 | # undef bind_textdomain_codeset |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 49 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 50 | # if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 51 | # define ENABLE_NLS // so the texts in the dialog boxes are translated |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 52 | # endif |
| 53 | # include <gnome.h> |
| 54 | # include "version.h" |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 55 | // missing prototype in bonobo-dock-item.h |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 56 | extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 57 | #endif |
| 58 | |
| 59 | #if !defined(FEAT_GUI_GTK) && defined(PROTO) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 60 | // When generating prototypes we don't want syntax errors. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 61 | # define GdkAtom int |
| 62 | # define GdkEventExpose int |
| 63 | # define GdkEventFocus int |
| 64 | # define GdkEventVisibility int |
| 65 | # define GdkEventProperty int |
| 66 | # define GtkContainer int |
| 67 | # define GtkTargetEntry int |
| 68 | # define GtkType int |
| 69 | # define GtkWidget int |
| 70 | # define gint int |
| 71 | # define gpointer int |
| 72 | # define guint int |
| 73 | # define GdkEventKey int |
| 74 | # define GdkEventSelection int |
| 75 | # define GtkSelectionData int |
| 76 | # define GdkEventMotion int |
| 77 | # define GdkEventButton int |
| 78 | # define GdkDragContext int |
| 79 | # define GdkEventConfigure int |
| 80 | # define GdkEventClient int |
| 81 | #else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 82 | # if GTK_CHECK_VERSION(3,0,0) |
| 83 | # include <gdk/gdkkeysyms-compat.h> |
| 84 | # include <gtk/gtkx.h> |
| 85 | # else |
| 86 | # include <gdk/gdkkeysyms.h> |
| 87 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 88 | # include <gdk/gdk.h> |
Bram Moolenaar | 4f97475 | 2019-02-17 17:44:42 +0100 | [diff] [blame] | 89 | # ifdef MSWIN |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 90 | # include <gdk/gdkwin32.h> |
| 91 | # else |
| 92 | # include <gdk/gdkx.h> |
| 93 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 94 | # include <gtk/gtk.h> |
| 95 | # include "gui_gtk_f.h" |
| 96 | #endif |
| 97 | |
| 98 | #ifdef HAVE_X11_SUNKEYSYM_H |
| 99 | # include <X11/Sunkeysym.h> |
| 100 | #endif |
| 101 | |
| 102 | /* |
| 103 | * Easy-to-use macro for multihead support. |
| 104 | */ |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 105 | #define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 106 | gtk_widget_get_display(gui.mainwin), atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 107 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 108 | // Selection type distinguishers |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 109 | enum |
| 110 | { |
| 111 | TARGET_TYPE_NONE, |
| 112 | TARGET_UTF8_STRING, |
| 113 | TARGET_STRING, |
| 114 | TARGET_COMPOUND_TEXT, |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 115 | TARGET_HTML, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 116 | TARGET_TEXT, |
| 117 | TARGET_TEXT_URI_LIST, |
| 118 | TARGET_TEXT_PLAIN, |
| 119 | TARGET_VIM, |
| 120 | TARGET_VIMENC |
| 121 | }; |
| 122 | |
| 123 | /* |
| 124 | * Table of selection targets supported by Vim. |
| 125 | * Note: Order matters, preferred types should come first. |
| 126 | */ |
| 127 | static const GtkTargetEntry selection_targets[] = |
| 128 | { |
| 129 | {VIMENC_ATOM_NAME, 0, TARGET_VIMENC}, |
| 130 | {VIM_ATOM_NAME, 0, TARGET_VIM}, |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 131 | {"text/html", 0, TARGET_HTML}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 132 | {"UTF8_STRING", 0, TARGET_UTF8_STRING}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 133 | {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT}, |
| 134 | {"TEXT", 0, TARGET_TEXT}, |
| 135 | {"STRING", 0, TARGET_STRING} |
| 136 | }; |
K.Takata | eeec254 | 2021-06-02 13:28:16 +0200 | [diff] [blame] | 137 | #define N_SELECTION_TARGETS ARRAY_LENGTH(selection_targets) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 138 | |
| 139 | #ifdef FEAT_DND |
| 140 | /* |
| 141 | * Table of DnD targets supported by Vim. |
| 142 | * Note: Order matters, preferred types should come first. |
| 143 | */ |
| 144 | static const GtkTargetEntry dnd_targets[] = |
| 145 | { |
| 146 | {"text/uri-list", 0, TARGET_TEXT_URI_LIST}, |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 147 | {"text/html", 0, TARGET_HTML}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 148 | {"UTF8_STRING", 0, TARGET_UTF8_STRING}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 149 | {"STRING", 0, TARGET_STRING}, |
| 150 | {"text/plain", 0, TARGET_TEXT_PLAIN} |
| 151 | }; |
K.Takata | eeec254 | 2021-06-02 13:28:16 +0200 | [diff] [blame] | 152 | # define N_DND_TARGETS ARRAY_LENGTH(dnd_targets) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 153 | #endif |
| 154 | |
| 155 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 156 | /* |
| 157 | * "Monospace" is a standard font alias that should be present |
| 158 | * on all proper Pango/fontconfig installations. |
| 159 | */ |
| 160 | # define DEFAULT_FONT "Monospace 10" |
| 161 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 162 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) |
| 163 | # define USE_GNOME_SESSION |
| 164 | #endif |
| 165 | |
| 166 | #if !defined(FEAT_GUI_GNOME) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 167 | /* |
| 168 | * Atoms used to communicate save-yourself from the X11 session manager. There |
| 169 | * is no need to move them into the GUI struct, since they should be constant. |
| 170 | */ |
| 171 | static GdkAtom wm_protocols_atom = GDK_NONE; |
| 172 | static GdkAtom save_yourself_atom = GDK_NONE; |
| 173 | #endif |
| 174 | |
| 175 | /* |
| 176 | * Atoms used to control/reference X11 selections. |
| 177 | */ |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 178 | static GdkAtom html_atom = GDK_NONE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 179 | static GdkAtom utf8_string_atom = GDK_NONE; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 180 | static GdkAtom vim_atom = GDK_NONE; // Vim's own special selection format |
| 181 | static GdkAtom vimenc_atom = GDK_NONE; // Vim's extended selection format |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 182 | |
| 183 | /* |
| 184 | * Keycodes recognized by vim. |
| 185 | * NOTE: when changing this, the table in gui_x11.c probably needs the same |
| 186 | * change! |
| 187 | */ |
| 188 | static struct special_key |
| 189 | { |
| 190 | guint key_sym; |
| 191 | char_u code0; |
| 192 | char_u code1; |
| 193 | } |
| 194 | const special_keys[] = |
| 195 | { |
| 196 | {GDK_Up, 'k', 'u'}, |
| 197 | {GDK_Down, 'k', 'd'}, |
| 198 | {GDK_Left, 'k', 'l'}, |
| 199 | {GDK_Right, 'k', 'r'}, |
| 200 | {GDK_F1, 'k', '1'}, |
| 201 | {GDK_F2, 'k', '2'}, |
| 202 | {GDK_F3, 'k', '3'}, |
| 203 | {GDK_F4, 'k', '4'}, |
| 204 | {GDK_F5, 'k', '5'}, |
| 205 | {GDK_F6, 'k', '6'}, |
| 206 | {GDK_F7, 'k', '7'}, |
| 207 | {GDK_F8, 'k', '8'}, |
| 208 | {GDK_F9, 'k', '9'}, |
| 209 | {GDK_F10, 'k', ';'}, |
| 210 | {GDK_F11, 'F', '1'}, |
| 211 | {GDK_F12, 'F', '2'}, |
| 212 | {GDK_F13, 'F', '3'}, |
| 213 | {GDK_F14, 'F', '4'}, |
| 214 | {GDK_F15, 'F', '5'}, |
| 215 | {GDK_F16, 'F', '6'}, |
| 216 | {GDK_F17, 'F', '7'}, |
| 217 | {GDK_F18, 'F', '8'}, |
| 218 | {GDK_F19, 'F', '9'}, |
| 219 | {GDK_F20, 'F', 'A'}, |
| 220 | {GDK_F21, 'F', 'B'}, |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 221 | {GDK_Pause, 'F', 'B'}, // Pause == F21 according to netbeans.txt |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 222 | {GDK_F22, 'F', 'C'}, |
| 223 | {GDK_F23, 'F', 'D'}, |
| 224 | {GDK_F24, 'F', 'E'}, |
| 225 | {GDK_F25, 'F', 'F'}, |
| 226 | {GDK_F26, 'F', 'G'}, |
| 227 | {GDK_F27, 'F', 'H'}, |
| 228 | {GDK_F28, 'F', 'I'}, |
| 229 | {GDK_F29, 'F', 'J'}, |
| 230 | {GDK_F30, 'F', 'K'}, |
| 231 | {GDK_F31, 'F', 'L'}, |
| 232 | {GDK_F32, 'F', 'M'}, |
| 233 | {GDK_F33, 'F', 'N'}, |
| 234 | {GDK_F34, 'F', 'O'}, |
| 235 | {GDK_F35, 'F', 'P'}, |
| 236 | #ifdef SunXK_F36 |
| 237 | {SunXK_F36, 'F', 'Q'}, |
| 238 | {SunXK_F37, 'F', 'R'}, |
| 239 | #endif |
| 240 | {GDK_Help, '%', '1'}, |
| 241 | {GDK_Undo, '&', '8'}, |
| 242 | {GDK_BackSpace, 'k', 'b'}, |
| 243 | {GDK_Insert, 'k', 'I'}, |
| 244 | {GDK_Delete, 'k', 'D'}, |
| 245 | {GDK_3270_BackTab, 'k', 'B'}, |
| 246 | {GDK_Clear, 'k', 'C'}, |
| 247 | {GDK_Home, 'k', 'h'}, |
| 248 | {GDK_End, '@', '7'}, |
| 249 | {GDK_Prior, 'k', 'P'}, |
| 250 | {GDK_Next, 'k', 'N'}, |
| 251 | {GDK_Print, '%', '9'}, |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 252 | // Keypad keys: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 253 | {GDK_KP_Left, 'k', 'l'}, |
| 254 | {GDK_KP_Right, 'k', 'r'}, |
| 255 | {GDK_KP_Up, 'k', 'u'}, |
| 256 | {GDK_KP_Down, 'k', 'd'}, |
| 257 | {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS}, |
| 258 | {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL}, |
| 259 | {GDK_KP_Home, 'K', '1'}, |
| 260 | {GDK_KP_End, 'K', '4'}, |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 261 | {GDK_KP_Prior, 'K', '3'}, // page up |
| 262 | {GDK_KP_Next, 'K', '5'}, // page down |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 263 | |
| 264 | {GDK_KP_Add, 'K', '6'}, |
| 265 | {GDK_KP_Subtract, 'K', '7'}, |
| 266 | {GDK_KP_Divide, 'K', '8'}, |
| 267 | {GDK_KP_Multiply, 'K', '9'}, |
| 268 | {GDK_KP_Enter, 'K', 'A'}, |
| 269 | {GDK_KP_Decimal, 'K', 'B'}, |
| 270 | |
| 271 | {GDK_KP_0, 'K', 'C'}, |
| 272 | {GDK_KP_1, 'K', 'D'}, |
| 273 | {GDK_KP_2, 'K', 'E'}, |
| 274 | {GDK_KP_3, 'K', 'F'}, |
| 275 | {GDK_KP_4, 'K', 'G'}, |
| 276 | {GDK_KP_5, 'K', 'H'}, |
| 277 | {GDK_KP_6, 'K', 'I'}, |
| 278 | {GDK_KP_7, 'K', 'J'}, |
| 279 | {GDK_KP_8, 'K', 'K'}, |
| 280 | {GDK_KP_9, 'K', 'L'}, |
| 281 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 282 | // End of list marker: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 283 | {0, 0, 0} |
| 284 | }; |
| 285 | |
| 286 | /* |
| 287 | * Flags for command line options table below. |
| 288 | */ |
| 289 | #define ARG_FONT 1 |
| 290 | #define ARG_GEOMETRY 2 |
| 291 | #define ARG_REVERSE 3 |
| 292 | #define ARG_NOREVERSE 4 |
| 293 | #define ARG_BACKGROUND 5 |
| 294 | #define ARG_FOREGROUND 6 |
| 295 | #define ARG_ICONIC 7 |
| 296 | #define ARG_ROLE 8 |
| 297 | #define ARG_NETBEANS 9 |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 298 | #define ARG_XRM 10 // ignored |
| 299 | #define ARG_MENUFONT 11 // ignored |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 300 | #define ARG_INDEX_MASK 0x00ff |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 301 | #define ARG_HAS_VALUE 0x0100 // a value is expected after the argument |
| 302 | #define ARG_NEEDS_GUI 0x0200 // need to initialize the GUI for this |
| 303 | #define ARG_FOR_GTK 0x0400 // argument is handled by GTK+ or GNOME |
| 304 | #define ARG_COMPAT_LONG 0x0800 // accept -foo but substitute with --foo |
| 305 | #define ARG_KEEP 0x1000 // don't remove argument from argv[] |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 306 | |
| 307 | /* |
| 308 | * This table holds all the X GUI command line options allowed. This includes |
| 309 | * the standard ones so that we can skip them when Vim is started without the |
| 310 | * GUI (but the GUI might start up later). |
| 311 | * |
| 312 | * When changing this, also update doc/gui_x11.txt and the usage message!!! |
| 313 | */ |
| 314 | typedef struct |
| 315 | { |
| 316 | const char *name; |
| 317 | unsigned int flags; |
| 318 | } |
| 319 | cmdline_option_T; |
| 320 | |
| 321 | static const cmdline_option_T cmdline_options[] = |
| 322 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 323 | // We handle these options ourselves |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 324 | {"-fn", ARG_FONT|ARG_HAS_VALUE}, |
| 325 | {"-font", ARG_FONT|ARG_HAS_VALUE}, |
| 326 | {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE}, |
| 327 | {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE}, |
| 328 | {"-rv", ARG_REVERSE}, |
| 329 | {"-reverse", ARG_REVERSE}, |
| 330 | {"+rv", ARG_NOREVERSE}, |
| 331 | {"+reverse", ARG_NOREVERSE}, |
| 332 | {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE}, |
| 333 | {"-background", ARG_BACKGROUND|ARG_HAS_VALUE}, |
| 334 | {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE}, |
| 335 | {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE}, |
| 336 | {"-iconic", ARG_ICONIC}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 337 | {"--role", ARG_ROLE|ARG_HAS_VALUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 338 | #ifdef FEAT_NETBEANS_INTG |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 339 | {"-nb", ARG_NETBEANS}, // non-standard value format |
| 340 | {"-xrm", ARG_XRM|ARG_HAS_VALUE}, // not implemented |
| 341 | {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, // not implemented |
| 342 | {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, // not implemented |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 343 | #endif |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 344 | // Arguments handled by GTK (and GNOME) internally. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 345 | {"--g-fatal-warnings", ARG_FOR_GTK}, |
| 346 | {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 347 | {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 348 | {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 349 | {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 350 | {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 351 | {"--sync", ARG_FOR_GTK}, |
| 352 | {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, |
| 353 | {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, |
| 354 | {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 355 | {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 356 | {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 357 | {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 358 | #ifdef FEAT_GUI_GNOME |
| 359 | {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 360 | {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 361 | {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 362 | {"--sm-disable", ARG_FOR_GTK}, |
| 363 | {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 364 | {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 365 | {"--oaf-private", ARG_FOR_GTK}, |
| 366 | {"--enable-sound", ARG_FOR_GTK}, |
| 367 | {"--disable-sound", ARG_FOR_GTK}, |
| 368 | {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE}, |
| 369 | {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI}, |
| 370 | {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP}, |
| 371 | {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI}, |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 372 | # if 0 // conflicts with Vim's own --version argument |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 373 | {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI}, |
| 374 | # endif |
| 375 | {"--disable-crash-dialog", ARG_FOR_GTK}, |
| 376 | #endif |
| 377 | {NULL, 0} |
| 378 | }; |
| 379 | |
| 380 | static int gui_argc = 0; |
| 381 | static char **gui_argv = NULL; |
| 382 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 383 | static const char *role_argument = NULL; |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 384 | #if defined(USE_GNOME_SESSION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 385 | static const char *restart_command = NULL; |
Bram Moolenaar | 9085f80 | 2009-06-03 14:20:21 +0000 | [diff] [blame] | 386 | static char *abs_restart_command = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 387 | #endif |
| 388 | static int found_iconic_arg = FALSE; |
| 389 | |
| 390 | #ifdef FEAT_GUI_GNOME |
| 391 | /* |
| 392 | * Can't use Gnome if --socketid given |
| 393 | */ |
| 394 | static int using_gnome = 0; |
| 395 | #else |
| 396 | # define using_gnome 0 |
| 397 | #endif |
| 398 | |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 399 | // Comment out the following line to ignore code for resize history tracking. |
| 400 | #define TRACK_RESIZE_HISTORY |
| 401 | #ifdef TRACK_RESIZE_HISTORY |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 402 | /* |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 403 | * Keep a short term resize history so that stale gtk responses can be |
| 404 | * discarded. |
| 405 | * When a gtk_window_resize() request is sent to gtk, the width/height of |
| 406 | * the request is saved. Recent stale requests are kept around in a list. |
| 407 | * See https://github.com/vim/vim/issues/10123 |
| 408 | */ |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 409 | # if 0 // Change to 1 to enable ch_log() calls for debugging. |
| 410 | # ifdef FEAT_JOB_CHANNEL |
| 411 | # define ENABLE_RESIZE_HISTORY_LOG |
| 412 | # endif |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 413 | # endif |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 414 | |
| 415 | /* |
| 416 | * History item of a resize request. |
| 417 | * Width and height are of gui.mainwin. |
| 418 | */ |
| 419 | typedef struct resize_history { |
| 420 | int used; // If true, can't match for discard. Only matches once. |
| 421 | int width; |
| 422 | int height; |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 423 | # ifdef ENABLE_RESIZE_HISTORY_LOG |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 424 | int seq; // for ch_log messages |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 425 | # endif |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 426 | struct resize_history *next; |
| 427 | } resize_hist_T; |
| 428 | |
| 429 | // never NULL during execution |
| 430 | static resize_hist_T *latest_resize_hist; |
| 431 | // list of stale resize requests |
| 432 | static resize_hist_T *old_resize_hists; |
| 433 | |
| 434 | /* |
| 435 | * Used when calling gtk_window_resize(). |
| 436 | * Create a resize request history item, put previous request on stale list. |
| 437 | * Width/height are the size of the request for the gui.mainwin. |
| 438 | */ |
| 439 | static void |
| 440 | alloc_resize_hist(int width, int height) |
| 441 | { |
| 442 | // alloc a new resize hist, save current in list of old history |
| 443 | resize_hist_T *prev_hist = latest_resize_hist; |
| 444 | resize_hist_T *new_hist = ALLOC_CLEAR_ONE(resize_hist_T); |
| 445 | |
| 446 | new_hist->width = width; |
| 447 | new_hist->height = height; |
| 448 | latest_resize_hist = new_hist; |
| 449 | |
| 450 | // previous hist item becomes head of list |
| 451 | prev_hist->next = old_resize_hists; |
| 452 | old_resize_hists = prev_hist; |
| 453 | |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 454 | # ifdef ENABLE_RESIZE_HISTORY_LOG |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 455 | new_hist->seq = prev_hist->seq + 1; |
| 456 | ch_log(NULL, "gui_gtk: New resize seq %d (%d, %d) [%d, %d]", |
| 457 | new_hist->seq, width, height, (int)Columns, (int)Rows); |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 458 | # endif |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | /* |
| 462 | * Free everything on the stale resize history list. |
| 463 | * This list is empty when there are no outstanding resize requests. |
| 464 | */ |
| 465 | static void |
| 466 | clear_resize_hists() |
| 467 | { |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 468 | # ifdef ENABLE_RESIZE_HISTORY_LOG |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 469 | int i = 0; |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 470 | # endif |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 471 | |
| 472 | if (latest_resize_hist) |
| 473 | latest_resize_hist->used = TRUE; |
| 474 | while (old_resize_hists != NULL) |
| 475 | { |
| 476 | resize_hist_T *next_hist = old_resize_hists->next; |
| 477 | |
| 478 | vim_free(old_resize_hists); |
| 479 | old_resize_hists = next_hist; |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 480 | # ifdef ENABLE_RESIZE_HISTORY_LOG |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 481 | i++; |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 482 | # endif |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 483 | } |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 484 | # ifdef ENABLE_RESIZE_HISTORY_LOG |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 485 | ch_log(NULL, "gui_gtk: free %d hists", i); |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 486 | # endif |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | // true if hist item is unused and matches w,h |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 490 | # define MATCH_WIDTH_HEIGHT(hist, w, h) \ |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 491 | (!hist->used && hist->width == w && hist->height == h) |
| 492 | |
| 493 | /* |
| 494 | * Search the resize hist list. |
| 495 | * Return true if the specified width,height match an item in the list that |
| 496 | * has never matched before. Mark the matching item as used so it will |
| 497 | * not match again. |
| 498 | */ |
| 499 | static int |
| 500 | match_stale_width_height(int width, int height) |
| 501 | { |
| 502 | resize_hist_T *hist = old_resize_hists; |
| 503 | |
| 504 | for (hist = old_resize_hists; hist != NULL; hist = hist->next) |
| 505 | if (MATCH_WIDTH_HEIGHT(hist, width, height)) |
| 506 | { |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 507 | # ifdef ENABLE_RESIZE_HISTORY_LOG |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 508 | ch_log(NULL, "gui_gtk: discard seq %d, cur seq %d", |
| 509 | hist->seq, latest_resize_hist->seq); |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 510 | # endif |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 511 | hist->used = TRUE; |
| 512 | return TRUE; |
| 513 | } |
| 514 | return FALSE; |
| 515 | } |
| 516 | |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 517 | # if defined(EXITFREE) |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 518 | static void |
| 519 | free_all_resize_hist() |
| 520 | { |
| 521 | clear_resize_hists(); |
| 522 | vim_free(latest_resize_hist); |
| 523 | } |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 524 | # endif |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 525 | #endif |
| 526 | |
| 527 | /* |
Chris Dalton | ee93e32 | 2021-11-23 12:27:48 +0000 | [diff] [blame] | 528 | * GTK doesn't set the GDK_BUTTON1_MASK state when dragging a touch. Add this |
| 529 | * state when dragging. |
| 530 | */ |
| 531 | static guint dragging_button_state = 0; |
| 532 | |
| 533 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 534 | * Parse the GUI related command-line arguments. Any arguments used are |
| 535 | * deleted from argv, and *argc is decremented accordingly. This is called |
| 536 | * when vim is started, whether or not the GUI has been started. |
| 537 | */ |
| 538 | void |
| 539 | gui_mch_prepare(int *argc, char **argv) |
| 540 | { |
| 541 | const cmdline_option_T *option; |
| 542 | int i = 0; |
| 543 | int len = 0; |
| 544 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 545 | #if defined(USE_GNOME_SESSION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 546 | /* |
| 547 | * Determine the command used to invoke Vim, to be passed as restart |
| 548 | * command to the session manager. If argv[0] contains any directory |
| 549 | * components try building an absolute path, otherwise leave it as is. |
| 550 | */ |
| 551 | restart_command = argv[0]; |
| 552 | |
| 553 | if (strchr(argv[0], G_DIR_SEPARATOR) != NULL) |
| 554 | { |
| 555 | char_u buf[MAXPATHL]; |
| 556 | |
| 557 | 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] | 558 | { |
| 559 | abs_restart_command = (char *)vim_strsave(buf); |
| 560 | restart_command = abs_restart_command; |
| 561 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 562 | } |
| 563 | #endif |
| 564 | |
| 565 | /* |
| 566 | * Move all the entries in argv which are relevant to GTK+ and GNOME |
| 567 | * into gui_argv. Freed later in gui_mch_init(). |
| 568 | */ |
| 569 | gui_argc = 0; |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 570 | gui_argv = ALLOC_MULT(char *, *argc + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 571 | |
| 572 | g_return_if_fail(gui_argv != NULL); |
| 573 | |
| 574 | gui_argv[gui_argc++] = argv[i++]; |
| 575 | |
| 576 | while (i < *argc) |
| 577 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 578 | // Don't waste CPU cycles on non-option arguments. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 579 | if (argv[i][0] != '-' && argv[i][0] != '+') |
| 580 | { |
| 581 | ++i; |
| 582 | continue; |
| 583 | } |
| 584 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 585 | // Look for argv[i] in cmdline_options[] table. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 586 | for (option = &cmdline_options[0]; option->name != NULL; ++option) |
| 587 | { |
| 588 | len = strlen(option->name); |
| 589 | |
| 590 | if (strncmp(argv[i], option->name, len) == 0) |
| 591 | { |
| 592 | if (argv[i][len] == '\0') |
| 593 | break; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 594 | // allow --foo=bar style |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 595 | if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE)) |
| 596 | break; |
| 597 | #ifdef FEAT_NETBEANS_INTG |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 598 | // darn, -nb has non-standard syntax |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 599 | if (vim_strchr((char_u *)":=", argv[i][len]) != NULL |
| 600 | && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS) |
| 601 | break; |
| 602 | #endif |
| 603 | } |
| 604 | else if ((option->flags & ARG_COMPAT_LONG) |
| 605 | && strcmp(argv[i], option->name + 1) == 0) |
| 606 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 607 | // Replace the standard X arguments "-name" and "-display" |
| 608 | // with their GNU-style long option counterparts. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 609 | argv[i] = (char *)option->name; |
| 610 | break; |
| 611 | } |
| 612 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 613 | if (option->name == NULL) // no match |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 614 | { |
| 615 | ++i; |
| 616 | continue; |
| 617 | } |
| 618 | |
| 619 | if (option->flags & ARG_FOR_GTK) |
| 620 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 621 | // Move the argument into gui_argv, which |
| 622 | // will later be passed to gtk_init_check() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 623 | gui_argv[gui_argc++] = argv[i]; |
| 624 | } |
| 625 | else |
| 626 | { |
| 627 | char *value = NULL; |
| 628 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 629 | // Extract the option's value if there is one. |
| 630 | // Accept both "--foo bar" and "--foo=bar" style. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 631 | if (option->flags & ARG_HAS_VALUE) |
| 632 | { |
| 633 | if (argv[i][len] == '=') |
| 634 | value = &argv[i][len + 1]; |
| 635 | else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0) |
| 636 | value = argv[i + 1]; |
| 637 | } |
| 638 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 639 | // Check for options handled by Vim itself |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 640 | switch (option->flags & ARG_INDEX_MASK) |
| 641 | { |
| 642 | case ARG_REVERSE: |
| 643 | found_reverse_arg = TRUE; |
| 644 | break; |
| 645 | case ARG_NOREVERSE: |
| 646 | found_reverse_arg = FALSE; |
| 647 | break; |
| 648 | case ARG_FONT: |
| 649 | font_argument = value; |
| 650 | break; |
| 651 | case ARG_GEOMETRY: |
| 652 | if (value != NULL) |
| 653 | gui.geom = vim_strsave((char_u *)value); |
| 654 | break; |
| 655 | case ARG_BACKGROUND: |
| 656 | background_argument = value; |
| 657 | break; |
| 658 | case ARG_FOREGROUND: |
| 659 | foreground_argument = value; |
| 660 | break; |
| 661 | case ARG_ICONIC: |
| 662 | found_iconic_arg = TRUE; |
| 663 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 664 | case ARG_ROLE: |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 665 | role_argument = value; // used later in gui_mch_open() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 666 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 667 | #ifdef FEAT_NETBEANS_INTG |
| 668 | case ARG_NETBEANS: |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 669 | gui.dofork = FALSE; // don't fork() when starting GUI |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 670 | netbeansArg = argv[i]; |
| 671 | break; |
| 672 | #endif |
| 673 | default: |
| 674 | break; |
| 675 | } |
| 676 | } |
| 677 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 678 | // These arguments make gnome_program_init() print a message and exit. |
| 679 | // Must start the GUI for this, otherwise ":gui" will exit later! |
| 680 | // Only when the GUI can start. |
Bram Moolenaar | 717e196 | 2016-08-10 21:28:44 +0200 | [diff] [blame] | 681 | if ((option->flags & ARG_NEEDS_GUI) |
| 682 | && gui_mch_early_init_check(FALSE) == OK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 683 | gui.starting = TRUE; |
| 684 | |
| 685 | if (option->flags & ARG_KEEP) |
| 686 | ++i; |
| 687 | else |
| 688 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 689 | // Remove the flag from the argument vector. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 690 | if (--*argc > i) |
| 691 | { |
| 692 | int n_strip = 1; |
| 693 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 694 | // Move the argument's value as well, if there is one. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 695 | if ((option->flags & ARG_HAS_VALUE) |
| 696 | && argv[i][len] != '=' |
| 697 | && strcmp(argv[i + 1], "--") != 0) |
| 698 | { |
| 699 | ++n_strip; |
| 700 | --*argc; |
| 701 | if (option->flags & ARG_FOR_GTK) |
| 702 | gui_argv[gui_argc++] = argv[i + 1]; |
| 703 | } |
| 704 | |
| 705 | if (*argc > i) |
| 706 | mch_memmove(&argv[i], &argv[i + n_strip], |
| 707 | (*argc - i) * sizeof(char *)); |
| 708 | } |
| 709 | argv[*argc] = NULL; |
| 710 | } |
| 711 | } |
| 712 | |
| 713 | gui_argv[gui_argc] = NULL; |
| 714 | } |
| 715 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 716 | #if defined(EXITFREE) || defined(PROTO) |
| 717 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 718 | gui_mch_free_all(void) |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 719 | { |
| 720 | vim_free(gui_argv); |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 721 | #if defined(USE_GNOME_SESSION) |
Bram Moolenaar | 9085f80 | 2009-06-03 14:20:21 +0000 | [diff] [blame] | 722 | vim_free(abs_restart_command); |
| 723 | #endif |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 724 | #ifdef TRACK_RESIZE_HISTORY |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 725 | free_all_resize_hist(); |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 726 | #endif |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 727 | } |
| 728 | #endif |
| 729 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 730 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 731 | /* |
| 732 | * This should be maybe completely removed. |
| 733 | * Doesn't seem possible, since check_copy_area() relies on |
| 734 | * this information. --danielk |
| 735 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 736 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 737 | visibility_event(GtkWidget *widget UNUSED, |
| 738 | GdkEventVisibility *event, |
| 739 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 740 | { |
| 741 | gui.visibility = event->state; |
| 742 | /* |
| 743 | * When we do an gdk_window_copy_area(), and the window is partially |
| 744 | * obscured, we want to receive an event to tell us whether it worked |
| 745 | * or not. |
| 746 | */ |
| 747 | if (gui.text_gc != NULL) |
| 748 | gdk_gc_set_exposures(gui.text_gc, |
| 749 | gui.visibility != GDK_VISIBILITY_UNOBSCURED); |
| 750 | return FALSE; |
| 751 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 752 | #endif // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 753 | |
| 754 | /* |
| 755 | * Redraw the corresponding portions of the screen. |
| 756 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 757 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 758 | static gboolean |
Bram Moolenaar | 8e31fd5 | 2016-06-04 22:18:13 +0200 | [diff] [blame] | 759 | draw_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 760 | cairo_t *cr, |
| 761 | gpointer user_data UNUSED) |
| 762 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 763 | // Skip this when the GUI isn't set up yet, will redraw later. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 764 | if (gui.starting) |
| 765 | return FALSE; |
| 766 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 767 | out_flush(); // make sure all output has been processed |
| 768 | // for GTK+ 3, may induce other draw events. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 769 | |
| 770 | cairo_set_source_surface(cr, gui.surface, 0, 0); |
| 771 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 772 | { |
| 773 | cairo_rectangle_list_t *list = NULL; |
| 774 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 775 | list = cairo_copy_clip_rectangle_list(cr); |
| 776 | if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE) |
| 777 | { |
| 778 | int i; |
Bram Moolenaar | fe344a9 | 2017-02-23 12:20:35 +0100 | [diff] [blame] | 779 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 780 | for (i = 0; i < list->num_rectangles; i++) |
| 781 | { |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 782 | const cairo_rectangle_t *rect = &list->rectangles[i]; |
| 783 | cairo_rectangle(cr, rect->x, rect->y, rect->width, rect->height); |
| 784 | cairo_fill(cr); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 785 | } |
| 786 | } |
| 787 | cairo_rectangle_list_destroy(list); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 788 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 789 | |
| 790 | return FALSE; |
| 791 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 792 | #else // !GTK_CHECK_VERSION(3,0,0) |
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 | expose_event(GtkWidget *widget UNUSED, |
| 795 | GdkEventExpose *event, |
| 796 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 797 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 798 | // Skip this when the GUI isn't set up yet, will redraw later. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 799 | if (gui.starting) |
| 800 | return FALSE; |
| 801 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 802 | out_flush(); // make sure all output has been processed |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 803 | gui_redraw(event->area.x, event->area.y, |
| 804 | event->area.width, event->area.height); |
| 805 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 806 | // Clear the border areas if needed |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 807 | if (event->area.x < FILL_X(0)) |
| 808 | gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0); |
| 809 | if (event->area.y < FILL_Y(0)) |
| 810 | gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0)); |
| 811 | if (event->area.x > FILL_X(Columns)) |
| 812 | gdk_window_clear_area(gui.drawarea->window, |
| 813 | FILL_X((int)Columns), 0, 0, 0); |
| 814 | if (event->area.y > FILL_Y(Rows)) |
| 815 | gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0); |
| 816 | |
| 817 | return FALSE; |
| 818 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 819 | #endif // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 820 | |
| 821 | #ifdef FEAT_CLIENTSERVER |
| 822 | /* |
| 823 | * Handle changes to the "Comm" property |
| 824 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 825 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 826 | property_event(GtkWidget *widget, |
| 827 | GdkEventProperty *event, |
| 828 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 829 | { |
| 830 | if (event->type == GDK_PROPERTY_NOTIFY |
| 831 | && event->state == (int)GDK_PROPERTY_NEW_VALUE |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 832 | && GDK_WINDOW_XID(event->window) == commWindow |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 833 | && GET_X_ATOM(event->atom) == commProperty) |
| 834 | { |
| 835 | XEvent xev; |
| 836 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 837 | // Translate to XLib |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 838 | xev.xproperty.type = PropertyNotify; |
| 839 | xev.xproperty.atom = commProperty; |
| 840 | xev.xproperty.window = commWindow; |
| 841 | xev.xproperty.state = PropertyNewValue; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 842 | serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)), |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 843 | &xev, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 844 | } |
| 845 | return FALSE; |
| 846 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 847 | #endif // defined(FEAT_CLIENTSERVER) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 848 | |
Bram Moolenaar | 7ebf4e1 | 2018-08-07 20:01:40 +0200 | [diff] [blame] | 849 | /* |
| 850 | * Handle changes to the "Xft/DPI" setting |
| 851 | */ |
| 852 | static void |
| 853 | gtk_settings_xft_dpi_changed_cb(GtkSettings *gtk_settings UNUSED, |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 854 | GParamSpec *pspec UNUSED, |
| 855 | gpointer data UNUSED) |
Bram Moolenaar | 7ebf4e1 | 2018-08-07 20:01:40 +0200 | [diff] [blame] | 856 | { |
| 857 | // Create a new PangoContext for this screen, and initialize it |
| 858 | // with the current font if necessary. |
| 859 | if (gui.text_context != NULL) |
| 860 | g_object_unref(gui.text_context); |
| 861 | |
| 862 | gui.text_context = gtk_widget_create_pango_context(gui.mainwin); |
| 863 | pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
| 864 | |
| 865 | if (gui.norm_font != NULL) |
| 866 | { |
| 867 | // force default font |
| 868 | gui_mch_init_font(*p_guifont == NUL ? NULL : p_guifont, FALSE); |
| 869 | gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH); |
| 870 | } |
| 871 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 872 | |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 873 | typedef gboolean timeout_cb_type; |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 874 | |
| 875 | /* |
| 876 | * Start a timer that will invoke the specified callback. |
| 877 | * Returns the ID of the timer. |
| 878 | */ |
| 879 | static guint |
| 880 | timeout_add(int time, timeout_cb_type (*callback)(gpointer), int *flagp) |
| 881 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 882 | return g_timeout_add((guint)time, (GSourceFunc)callback, flagp); |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 883 | } |
| 884 | |
| 885 | static void |
| 886 | timeout_remove(guint timer) |
| 887 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 888 | g_source_remove(timer); |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 889 | } |
| 890 | |
| 891 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 892 | ///////////////////////////////////////////////////////////////////////////// |
| 893 | // Focus handlers: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 894 | |
| 895 | |
| 896 | /* |
| 897 | * This is a simple state machine: |
| 898 | * BLINK_NONE not blinking at all |
| 899 | * BLINK_OFF blinking, cursor is not shown |
| 900 | * BLINK_ON blinking, cursor is shown |
| 901 | */ |
| 902 | |
| 903 | #define BLINK_NONE 0 |
| 904 | #define BLINK_OFF 1 |
| 905 | #define BLINK_ON 2 |
| 906 | |
| 907 | static int blink_state = BLINK_NONE; |
| 908 | static long_u blink_waittime = 700; |
| 909 | static long_u blink_ontime = 400; |
| 910 | static long_u blink_offtime = 250; |
| 911 | static guint blink_timer = 0; |
| 912 | |
Bram Moolenaar | 703a804 | 2016-06-04 16:24:32 +0200 | [diff] [blame] | 913 | int |
| 914 | gui_mch_is_blinking(void) |
| 915 | { |
| 916 | return blink_state != BLINK_NONE; |
| 917 | } |
| 918 | |
Bram Moolenaar | 9d5d3c9 | 2016-07-07 16:43:02 +0200 | [diff] [blame] | 919 | int |
| 920 | gui_mch_is_blink_off(void) |
| 921 | { |
| 922 | return blink_state == BLINK_OFF; |
| 923 | } |
| 924 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 925 | void |
| 926 | gui_mch_set_blinking(long waittime, long on, long off) |
| 927 | { |
| 928 | blink_waittime = waittime; |
| 929 | blink_ontime = on; |
| 930 | blink_offtime = off; |
| 931 | } |
| 932 | |
| 933 | /* |
| 934 | * Stop the cursor blinking. Show the cursor if it wasn't shown. |
| 935 | */ |
| 936 | void |
Bram Moolenaar | 1dd45fb | 2018-01-31 21:10:01 +0100 | [diff] [blame] | 937 | gui_mch_stop_blink(int may_call_gui_update_cursor) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 938 | { |
| 939 | if (blink_timer) |
| 940 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 941 | timeout_remove(blink_timer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 942 | blink_timer = 0; |
| 943 | } |
Bram Moolenaar | 1dd45fb | 2018-01-31 21:10:01 +0100 | [diff] [blame] | 944 | if (blink_state == BLINK_OFF && may_call_gui_update_cursor) |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 945 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 946 | gui_update_cursor(TRUE, FALSE); |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 947 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 948 | gui_mch_flush(); |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 949 | #endif |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 950 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 951 | blink_state = BLINK_NONE; |
| 952 | } |
| 953 | |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 954 | static timeout_cb_type |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 955 | blink_cb(gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 956 | { |
| 957 | if (blink_state == BLINK_ON) |
| 958 | { |
| 959 | gui_undraw_cursor(); |
| 960 | blink_state = BLINK_OFF; |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 961 | blink_timer = timeout_add(blink_offtime, blink_cb, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 962 | } |
| 963 | else |
| 964 | { |
| 965 | gui_update_cursor(TRUE, FALSE); |
| 966 | blink_state = BLINK_ON; |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 967 | blink_timer = timeout_add(blink_ontime, blink_cb, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 968 | } |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 969 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 970 | gui_mch_flush(); |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 971 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 972 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 973 | return FALSE; // don't happen again |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 974 | } |
| 975 | |
| 976 | /* |
| 977 | * Start the cursor blinking. If it was already blinking, this restarts the |
| 978 | * waiting time and shows the cursor. |
| 979 | */ |
| 980 | void |
| 981 | gui_mch_start_blink(void) |
| 982 | { |
| 983 | if (blink_timer) |
Bram Moolenaar | 7bcdb7d | 2014-04-06 21:08:45 +0200 | [diff] [blame] | 984 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 985 | timeout_remove(blink_timer); |
Bram Moolenaar | 7bcdb7d | 2014-04-06 21:08:45 +0200 | [diff] [blame] | 986 | blink_timer = 0; |
| 987 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 988 | // Only switch blinking on if none of the times is zero |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 989 | if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus) |
| 990 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 991 | blink_timer = timeout_add(blink_waittime, blink_cb, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 992 | blink_state = BLINK_ON; |
| 993 | gui_update_cursor(TRUE, FALSE); |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 994 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | da3a77d | 2016-07-10 23:16:09 +0200 | [diff] [blame] | 995 | gui_mch_flush(); |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 996 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 997 | } |
| 998 | } |
| 999 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1000 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1001 | enter_notify_event(GtkWidget *widget UNUSED, |
| 1002 | GdkEventCrossing *event UNUSED, |
| 1003 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1004 | { |
| 1005 | if (blink_state == BLINK_NONE) |
| 1006 | gui_mch_start_blink(); |
| 1007 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1008 | // make sure keyboard input goes there |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1009 | if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1010 | gtk_widget_grab_focus(gui.drawarea); |
| 1011 | |
| 1012 | return FALSE; |
| 1013 | } |
| 1014 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1015 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1016 | leave_notify_event(GtkWidget *widget UNUSED, |
| 1017 | GdkEventCrossing *event UNUSED, |
| 1018 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1019 | { |
| 1020 | if (blink_state != BLINK_NONE) |
Bram Moolenaar | 1dd45fb | 2018-01-31 21:10:01 +0100 | [diff] [blame] | 1021 | gui_mch_stop_blink(TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1022 | |
| 1023 | return FALSE; |
| 1024 | } |
| 1025 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1026 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1027 | focus_in_event(GtkWidget *widget, |
| 1028 | GdkEventFocus *event UNUSED, |
| 1029 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1030 | { |
| 1031 | gui_focus_change(TRUE); |
| 1032 | |
| 1033 | if (blink_state == BLINK_NONE) |
| 1034 | gui_mch_start_blink(); |
| 1035 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1036 | // make sure keyboard input goes to the draw area (if this is focus for a |
| 1037 | // window) |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 1038 | if (widget != gui.drawarea) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 1039 | gtk_widget_grab_focus(gui.drawarea); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1040 | |
| 1041 | return TRUE; |
| 1042 | } |
| 1043 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1044 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1045 | focus_out_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 1046 | GdkEventFocus *event UNUSED, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1047 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1048 | { |
| 1049 | gui_focus_change(FALSE); |
| 1050 | |
| 1051 | if (blink_state != BLINK_NONE) |
Bram Moolenaar | 1dd45fb | 2018-01-31 21:10:01 +0100 | [diff] [blame] | 1052 | gui_mch_stop_blink(TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1053 | |
| 1054 | return TRUE; |
| 1055 | } |
| 1056 | |
| 1057 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1058 | /* |
| 1059 | * Translate a GDK key value to UTF-8 independently of the current locale. |
| 1060 | * The output is written to string, which must have room for at least 6 bytes |
| 1061 | * plus the NUL terminator. Returns the length in bytes. |
| 1062 | * |
Bram Moolenaar | f4ae6b2 | 2020-05-30 19:52:46 +0200 | [diff] [blame] | 1063 | * event->string is evil; see here why: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1064 | * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey |
| 1065 | */ |
| 1066 | static int |
Bram Moolenaar | f4ae6b2 | 2020-05-30 19:52:46 +0200 | [diff] [blame] | 1067 | keyval_to_string(unsigned int keyval, char_u *string) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1068 | { |
| 1069 | int len; |
| 1070 | guint32 uc; |
| 1071 | |
| 1072 | uc = gdk_keyval_to_unicode(keyval); |
| 1073 | if (uc != 0) |
| 1074 | { |
Bram Moolenaar | f4ae6b2 | 2020-05-30 19:52:46 +0200 | [diff] [blame] | 1075 | // Translate a normal key to UTF-8. This doesn't work for dead |
| 1076 | // keys of course, you _have_ to use an input method for that. |
| 1077 | len = utf_char2bytes((int)uc, string); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1078 | } |
| 1079 | else |
| 1080 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1081 | // Translate keys which are represented by ASCII control codes in Vim. |
| 1082 | // There are only a few of those; most control keys are translated to |
| 1083 | // special terminal-like control sequences. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1084 | len = 1; |
| 1085 | switch (keyval) |
| 1086 | { |
| 1087 | case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab: |
| 1088 | string[0] = TAB; |
| 1089 | break; |
| 1090 | case GDK_Linefeed: |
| 1091 | string[0] = NL; |
| 1092 | break; |
| 1093 | case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter: |
| 1094 | string[0] = CAR; |
| 1095 | break; |
| 1096 | case GDK_Escape: |
| 1097 | string[0] = ESC; |
| 1098 | break; |
| 1099 | default: |
| 1100 | len = 0; |
| 1101 | break; |
| 1102 | } |
| 1103 | } |
| 1104 | string[len] = NUL; |
| 1105 | |
| 1106 | return len; |
| 1107 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1108 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1109 | static int |
| 1110 | modifiers_gdk2vim(guint state) |
| 1111 | { |
| 1112 | int modifiers = 0; |
| 1113 | |
| 1114 | if (state & GDK_SHIFT_MASK) |
| 1115 | modifiers |= MOD_MASK_SHIFT; |
| 1116 | if (state & GDK_CONTROL_MASK) |
| 1117 | modifiers |= MOD_MASK_CTRL; |
| 1118 | if (state & GDK_MOD1_MASK) |
| 1119 | modifiers |= MOD_MASK_ALT; |
Bram Moolenaar | 580061a | 2010-08-13 13:57:13 +0200 | [diff] [blame] | 1120 | #if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 1121 | if (state & GDK_SUPER_MASK) |
| 1122 | modifiers |= MOD_MASK_META; |
| 1123 | #endif |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1124 | if (state & GDK_MOD4_MASK) |
| 1125 | modifiers |= MOD_MASK_META; |
| 1126 | |
| 1127 | return modifiers; |
| 1128 | } |
| 1129 | |
| 1130 | static int |
| 1131 | modifiers_gdk2mouse(guint state) |
| 1132 | { |
| 1133 | int modifiers = 0; |
| 1134 | |
| 1135 | if (state & GDK_SHIFT_MASK) |
| 1136 | modifiers |= MOUSE_SHIFT; |
| 1137 | if (state & GDK_CONTROL_MASK) |
| 1138 | modifiers |= MOUSE_CTRL; |
| 1139 | if (state & GDK_MOD1_MASK) |
| 1140 | modifiers |= MOUSE_ALT; |
| 1141 | |
| 1142 | return modifiers; |
| 1143 | } |
| 1144 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1145 | /* |
| 1146 | * Main keyboard handler: |
| 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 | key_press_event(GtkWidget *widget UNUSED, |
| 1150 | GdkEventKey *event, |
| 1151 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1152 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1153 | // For GTK+ 2 we know for sure how large the string might get. |
| 1154 | // (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1155 | char_u string[32], string2[32]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1156 | guint key_sym; |
| 1157 | int len; |
| 1158 | int i; |
| 1159 | int modifiers; |
| 1160 | int key; |
| 1161 | guint state; |
| 1162 | char_u *s, *d; |
Anton Sharonov | 4dd9252 | 2022-07-04 10:47:31 +0100 | [diff] [blame] | 1163 | int ctrl_prefix_added = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1164 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1165 | gui.event_time = event->time; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1166 | key_sym = event->keyval; |
| 1167 | state = event->state; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1168 | |
| 1169 | #ifdef FEAT_XIM |
| 1170 | if (xim_queue_key_press_event(event, TRUE)) |
| 1171 | return TRUE; |
| 1172 | #endif |
| 1173 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1174 | #ifdef SunXK_F36 |
| 1175 | /* |
| 1176 | * These keys have bogus lookup strings, and trapping them here is |
| 1177 | * easier than trying to XRebindKeysym() on them with every possible |
| 1178 | * combination of modifiers. |
| 1179 | */ |
| 1180 | if (key_sym == SunXK_F36 || key_sym == SunXK_F37) |
| 1181 | len = 0; |
| 1182 | else |
| 1183 | #endif |
| 1184 | { |
Bram Moolenaar | f4ae6b2 | 2020-05-30 19:52:46 +0200 | [diff] [blame] | 1185 | len = keyval_to_string(key_sym, string2); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1186 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1187 | // Careful: convert_input() doesn't handle the NUL character. |
| 1188 | // No need to convert pure ASCII anyway, thus the len > 1 check. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1189 | if (len > 1 && input_conv.vc_type != CONV_NONE) |
| 1190 | len = convert_input(string2, len, sizeof(string2)); |
| 1191 | |
| 1192 | s = string2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1193 | d = string; |
| 1194 | for (i = 0; i < len; ++i) |
| 1195 | { |
| 1196 | *d++ = s[i]; |
| 1197 | if (d[-1] == CSI && d + 2 < string + sizeof(string)) |
| 1198 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1199 | // Turn CSI into K_CSI. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1200 | *d++ = KS_EXTRA; |
| 1201 | *d++ = (int)KE_CSI; |
| 1202 | } |
| 1203 | } |
| 1204 | len = d - string; |
| 1205 | } |
| 1206 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1207 | // Shift-Tab results in Left_Tab, but we want <S-Tab> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1208 | if (key_sym == GDK_ISO_Left_Tab) |
| 1209 | { |
| 1210 | key_sym = GDK_Tab; |
| 1211 | state |= GDK_SHIFT_MASK; |
| 1212 | } |
| 1213 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1214 | #ifdef FEAT_MENU |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1215 | // If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key |
| 1216 | // is a menu shortcut, we ignore everything with the ALT modifier. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1217 | if ((state & GDK_MOD1_MASK) |
| 1218 | && gui.menu_is_active |
| 1219 | && (*p_wak == 'y' |
| 1220 | || (*p_wak == 'm' |
| 1221 | && len == 1 |
| 1222 | && gui_is_menu_shortcut(string[0])))) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1223 | // For GTK2 we return false to signify that we haven't handled the |
| 1224 | // keypress, so that gtk will handle the mnemonic or accelerator. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1225 | return FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1226 | #endif |
| 1227 | |
Bram Moolenaar | fd615a3 | 2020-05-16 14:01:51 +0200 | [diff] [blame] | 1228 | // We used to apply Alt/Meta to the key here (Mod1Mask), but that is now |
| 1229 | // done later, the same as it happens for the terminal. Hopefully that |
| 1230 | // works for everybody... |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1231 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1232 | // Check for special keys. Also do this when len == 1 (key has an ASCII |
| 1233 | // value) to detect backspace, delete and keypad keys. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1234 | if (len == 0 || len == 1) |
| 1235 | { |
| 1236 | for (i = 0; special_keys[i].key_sym != 0; i++) |
| 1237 | { |
| 1238 | if (special_keys[i].key_sym == key_sym) |
| 1239 | { |
| 1240 | string[0] = CSI; |
| 1241 | string[1] = special_keys[i].code0; |
| 1242 | string[2] = special_keys[i].code1; |
| 1243 | len = -3; |
| 1244 | break; |
| 1245 | } |
| 1246 | } |
| 1247 | } |
| 1248 | |
Bram Moolenaar | 4c99e62 | 2022-07-04 19:58:17 +0100 | [diff] [blame] | 1249 | #ifdef GDK_KEY_dead_circumflex |
Anton Sharonov | 4dd9252 | 2022-07-04 10:47:31 +0100 | [diff] [blame] | 1250 | // Belgian Ctrl+[ workaround |
| 1251 | if (len == 0 && key_sym == GDK_KEY_dead_circumflex) |
| 1252 | { |
| 1253 | string[0] = CSI; |
| 1254 | string[1] = KS_MODIFIER; |
| 1255 | string[2] = MOD_MASK_CTRL; |
| 1256 | string[3] = '['; |
| 1257 | len = 4; |
| 1258 | add_to_input_buf(string, len); |
| 1259 | // workaround has to return here, otherwise our fake string[] entries |
| 1260 | // are confusing code downstream |
| 1261 | return TRUE; |
| 1262 | } |
Bram Moolenaar | 4c99e62 | 2022-07-04 19:58:17 +0100 | [diff] [blame] | 1263 | #endif |
Anton Sharonov | 4dd9252 | 2022-07-04 10:47:31 +0100 | [diff] [blame] | 1264 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1265 | if (len == 0) // Unrecognized key |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1266 | return TRUE; |
| 1267 | |
Bram Moolenaar | fd615a3 | 2020-05-16 14:01:51 +0200 | [diff] [blame] | 1268 | // For some keys a shift modifier is translated into another key code. |
| 1269 | if (len == -3) |
| 1270 | key = TO_SPECIAL(string[1], string[2]); |
| 1271 | else |
Bram Moolenaar | 820ffa5 | 2020-06-21 15:09:14 +0200 | [diff] [blame] | 1272 | { |
| 1273 | string[len] = NUL; |
| 1274 | key = mb_ptr2char(string); |
| 1275 | } |
Bram Moolenaar | fd615a3 | 2020-05-16 14:01:51 +0200 | [diff] [blame] | 1276 | |
Bram Moolenaar | ef6746f | 2020-06-20 14:43:23 +0200 | [diff] [blame] | 1277 | // Handle modifiers. |
| 1278 | modifiers = modifiers_gdk2vim(state); |
| 1279 | |
| 1280 | // Recognize special keys. |
Bram Moolenaar | fd615a3 | 2020-05-16 14:01:51 +0200 | [diff] [blame] | 1281 | key = simplify_key(key, &modifiers); |
| 1282 | if (key == CSI) |
| 1283 | key = K_CSI; |
| 1284 | if (IS_SPECIAL(key)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1285 | { |
Bram Moolenaar | fd615a3 | 2020-05-16 14:01:51 +0200 | [diff] [blame] | 1286 | string[0] = CSI; |
| 1287 | string[1] = K_SECOND(key); |
| 1288 | string[2] = K_THIRD(key); |
| 1289 | len = 3; |
| 1290 | } |
| 1291 | else |
| 1292 | { |
Bram Moolenaar | 4e2114e | 2020-10-07 16:12:37 +0200 | [diff] [blame] | 1293 | // Some keys need adjustment when the Ctrl modifier is used. |
| 1294 | key = may_adjust_key_for_ctrl(modifiers, key); |
Bram Moolenaar | ef6746f | 2020-06-20 14:43:23 +0200 | [diff] [blame] | 1295 | |
Bram Moolenaar | 4e2114e | 2020-10-07 16:12:37 +0200 | [diff] [blame] | 1296 | // May remove the Shift modifier if it's included in the key. |
Bram Moolenaar | ef6746f | 2020-06-20 14:43:23 +0200 | [diff] [blame] | 1297 | modifiers = may_remove_shift_modifier(modifiers, key); |
| 1298 | |
Bram Moolenaar | 820ffa5 | 2020-06-21 15:09:14 +0200 | [diff] [blame] | 1299 | len = mb_char2bytes(key, string); |
Bram Moolenaar | fd615a3 | 2020-05-16 14:01:51 +0200 | [diff] [blame] | 1300 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1301 | |
Bram Moolenaar | fd615a3 | 2020-05-16 14:01:51 +0200 | [diff] [blame] | 1302 | if (modifiers != 0) |
| 1303 | { |
| 1304 | string2[0] = CSI; |
| 1305 | string2[1] = KS_MODIFIER; |
| 1306 | string2[2] = modifiers; |
| 1307 | add_to_input_buf(string2, 3); |
Anton Sharonov | 4dd9252 | 2022-07-04 10:47:31 +0100 | [diff] [blame] | 1308 | if (modifiers == 0x4) |
| 1309 | ctrl_prefix_added = 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1310 | } |
| 1311 | |
Bram Moolenaar | 4e1d8bd | 2020-08-01 13:10:14 +0200 | [diff] [blame] | 1312 | // Check if the key interrupts. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1313 | { |
Bram Moolenaar | 4e1d8bd | 2020-08-01 13:10:14 +0200 | [diff] [blame] | 1314 | int int_ch = check_for_interrupt(key, modifiers); |
| 1315 | |
| 1316 | if (int_ch != NUL) |
| 1317 | { |
| 1318 | trash_input_buf(); |
| 1319 | string[0] = int_ch; |
| 1320 | len = 1; |
| 1321 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1322 | } |
| 1323 | |
Anton Sharonov | 4dd9252 | 2022-07-04 10:47:31 +0100 | [diff] [blame] | 1324 | // workaround for German keyboard, where instead of '[' char we have code |
| 1325 | // sequence of bytes 195, 188 (UTF-8 for "u-umlaut") |
| 1326 | if (ctrl_prefix_added && len == 2 |
| 1327 | && ((int)string[0]) == 195 |
| 1328 | && ((int)string[1]) == 188) |
| 1329 | { |
| 1330 | string[0] = 91; // ASCII('[') |
| 1331 | len = 1; |
| 1332 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1333 | add_to_input_buf(string, len); |
| 1334 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1335 | // blank out the pointer if necessary |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1336 | if (p_mh) |
| 1337 | gui_mch_mousehide(TRUE); |
| 1338 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1339 | return TRUE; |
| 1340 | } |
| 1341 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1342 | #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1343 | static gboolean |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1344 | key_release_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | 0a748d9 | 2022-04-28 15:39:08 +0100 | [diff] [blame] | 1345 | GdkEventKey *event UNUSED, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1346 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1347 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1348 | # if defined(FEAT_XIM) |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1349 | gui.event_time = event->time; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1350 | /* |
| 1351 | * GTK+ 2 input methods may do fancy stuff on key release events too. |
| 1352 | * With the default IM for instance, you can enter any UCS code point |
| 1353 | * by holding down CTRL-SHIFT and typing hexadecimal digits. |
| 1354 | */ |
| 1355 | return xim_queue_key_press_event(event, FALSE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1356 | # else |
| 1357 | return TRUE; |
| 1358 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1359 | } |
| 1360 | #endif |
| 1361 | |
| 1362 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1363 | ///////////////////////////////////////////////////////////////////////////// |
| 1364 | // Selection handlers: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1365 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1366 | // Remember when clip_lose_selection was called from here, we must not call |
| 1367 | // gtk_selection_owner_set() then. |
Bram Moolenaar | 29dfa5a | 2018-03-20 21:24:45 +0100 | [diff] [blame] | 1368 | static int in_selection_clear_event = FALSE; |
| 1369 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1370 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1371 | selection_clear_event(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1372 | GdkEventSelection *event, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1373 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1374 | { |
Bram Moolenaar | 29dfa5a | 2018-03-20 21:24:45 +0100 | [diff] [blame] | 1375 | in_selection_clear_event = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1376 | if (event->selection == clip_plus.gtk_sel_atom) |
| 1377 | clip_lose_selection(&clip_plus); |
| 1378 | else |
| 1379 | clip_lose_selection(&clip_star); |
Bram Moolenaar | 29dfa5a | 2018-03-20 21:24:45 +0100 | [diff] [blame] | 1380 | in_selection_clear_event = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1381 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1382 | return TRUE; |
| 1383 | } |
| 1384 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1385 | #define RS_NONE 0 // selection_received_cb() not called yet |
| 1386 | #define RS_OK 1 // selection_received_cb() called and OK |
| 1387 | #define RS_FAIL 2 // selection_received_cb() called and failed |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1388 | static int received_selection = RS_NONE; |
| 1389 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1390 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1391 | selection_received_cb(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1392 | GtkSelectionData *data, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1393 | guint time_ UNUSED, |
| 1394 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1395 | { |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1396 | Clipboard_T *cbd; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1397 | char_u *text; |
| 1398 | char_u *tmpbuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1399 | guchar *tmpbuf_utf8 = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1400 | int len; |
Bram Moolenaar | d44347f | 2011-06-19 01:14:29 +0200 | [diff] [blame] | 1401 | int motion_type = MAUTO; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1402 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1403 | if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1404 | cbd = &clip_plus; |
| 1405 | else |
| 1406 | cbd = &clip_star; |
| 1407 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1408 | text = (char_u *)gtk_selection_data_get_data(data); |
| 1409 | len = gtk_selection_data_get_length(data); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1410 | |
| 1411 | if (text == NULL || len <= 0) |
| 1412 | { |
| 1413 | received_selection = RS_FAIL; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1414 | // clip_free_selection(cbd); ??? |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1415 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1416 | return; |
| 1417 | } |
| 1418 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1419 | if (gtk_selection_data_get_data_type(data) == vim_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1420 | { |
| 1421 | motion_type = *text++; |
| 1422 | --len; |
| 1423 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1424 | else if (gtk_selection_data_get_data_type(data) == vimenc_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1425 | { |
| 1426 | char_u *enc; |
| 1427 | vimconv_T conv; |
| 1428 | |
| 1429 | motion_type = *text++; |
| 1430 | --len; |
| 1431 | |
| 1432 | enc = text; |
| 1433 | text += STRLEN(text) + 1; |
| 1434 | len -= text - enc; |
| 1435 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1436 | // If the encoding of the text is different from 'encoding', attempt |
| 1437 | // converting it. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1438 | conv.vc_type = CONV_NONE; |
| 1439 | convert_setup(&conv, enc, p_enc); |
| 1440 | if (conv.vc_type != CONV_NONE) |
| 1441 | { |
| 1442 | tmpbuf = string_convert(&conv, text, &len); |
| 1443 | if (tmpbuf != NULL) |
| 1444 | text = tmpbuf; |
| 1445 | convert_setup(&conv, NULL, NULL); |
| 1446 | } |
| 1447 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1448 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1449 | // gtk_selection_data_get_text() handles all the nasty details |
| 1450 | // and targets and encodings etc. This rocks so hard. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1451 | else |
| 1452 | { |
| 1453 | tmpbuf_utf8 = gtk_selection_data_get_text(data); |
| 1454 | if (tmpbuf_utf8 != NULL) |
| 1455 | { |
| 1456 | len = STRLEN(tmpbuf_utf8); |
| 1457 | if (input_conv.vc_type != CONV_NONE) |
| 1458 | { |
| 1459 | tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len); |
| 1460 | if (tmpbuf != NULL) |
| 1461 | text = tmpbuf; |
| 1462 | } |
| 1463 | else |
| 1464 | text = tmpbuf_utf8; |
| 1465 | } |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1466 | else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe) |
| 1467 | { |
| 1468 | vimconv_T conv; |
| 1469 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1470 | // UTF-16, we get this for HTML |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1471 | conv.vc_type = CONV_NONE; |
| 1472 | convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE); |
| 1473 | |
| 1474 | if (conv.vc_type != CONV_NONE) |
| 1475 | { |
| 1476 | text += 2; |
| 1477 | len -= 2; |
| 1478 | tmpbuf = string_convert(&conv, text, &len); |
| 1479 | convert_setup(&conv, NULL, NULL); |
| 1480 | } |
| 1481 | if (tmpbuf != NULL) |
| 1482 | text = tmpbuf; |
| 1483 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1484 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1485 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1486 | // Chop off any trailing NUL bytes. OpenOffice sends these. |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 1487 | while (len > 0 && text[len - 1] == NUL) |
| 1488 | --len; |
| 1489 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1490 | clip_yank_selection(motion_type, text, (long)len, cbd); |
| 1491 | received_selection = RS_OK; |
| 1492 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1493 | g_free(tmpbuf_utf8); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1494 | } |
| 1495 | |
| 1496 | /* |
| 1497 | * Prepare our selection data for passing it to the external selection |
| 1498 | * client. |
| 1499 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1500 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1501 | selection_get_cb(GtkWidget *widget UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1502 | GtkSelectionData *selection_data, |
| 1503 | guint info, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1504 | guint time_ UNUSED, |
| 1505 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1506 | { |
| 1507 | char_u *string; |
| 1508 | char_u *tmpbuf; |
| 1509 | long_u tmplen; |
| 1510 | int length; |
| 1511 | int motion_type; |
| 1512 | GdkAtom type; |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1513 | Clipboard_T *cbd; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1514 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1515 | if (gtk_selection_data_get_selection(selection_data) |
| 1516 | == clip_plus.gtk_sel_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1517 | cbd = &clip_plus; |
| 1518 | else |
| 1519 | cbd = &clip_star; |
| 1520 | |
| 1521 | if (!cbd->owned) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1522 | return; // Shouldn't ever happen |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1523 | |
| 1524 | if (info != (guint)TARGET_STRING |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1525 | && (!clip_html || info != (guint)TARGET_HTML) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1526 | && info != (guint)TARGET_UTF8_STRING |
| 1527 | && info != (guint)TARGET_VIMENC |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1528 | && info != (guint)TARGET_VIM |
| 1529 | && info != (guint)TARGET_COMPOUND_TEXT |
| 1530 | && info != (guint)TARGET_TEXT) |
| 1531 | return; |
| 1532 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1533 | // get the selection from the '*'/'+' register |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1534 | clip_get_selection(cbd); |
| 1535 | |
| 1536 | motion_type = clip_convert_selection(&string, &tmplen, cbd); |
| 1537 | if (motion_type < 0 || string == NULL) |
| 1538 | return; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1539 | // Due to int arguments we can't handle more than G_MAXINT. Also |
| 1540 | // reserve one extra byte for NUL or the motion type; just in case. |
| 1541 | // (Not that pasting 2G of text is ever going to work, but... ;-) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1542 | length = MIN(tmplen, (long_u)(G_MAXINT - 1)); |
| 1543 | |
| 1544 | if (info == (guint)TARGET_VIM) |
| 1545 | { |
Bram Moolenaar | 964b374 | 2019-05-24 18:54:09 +0200 | [diff] [blame] | 1546 | tmpbuf = alloc(length + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1547 | if (tmpbuf != NULL) |
| 1548 | { |
| 1549 | tmpbuf[0] = motion_type; |
| 1550 | mch_memmove(tmpbuf + 1, string, (size_t)length); |
| 1551 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1552 | // For our own format, the first byte contains the motion type |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1553 | ++length; |
| 1554 | vim_free(string); |
| 1555 | string = tmpbuf; |
| 1556 | type = vim_atom; |
| 1557 | } |
| 1558 | |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1559 | else if (info == (guint)TARGET_HTML) |
| 1560 | { |
| 1561 | vimconv_T conv; |
| 1562 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1563 | // Since we get utf-16, we probably should set it as well. |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1564 | conv.vc_type = CONV_NONE; |
| 1565 | convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE); |
| 1566 | if (conv.vc_type != CONV_NONE) |
| 1567 | { |
| 1568 | tmpbuf = string_convert(&conv, string, &length); |
| 1569 | convert_setup(&conv, NULL, NULL); |
| 1570 | vim_free(string); |
| 1571 | string = tmpbuf; |
| 1572 | } |
| 1573 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1574 | // Prepend the BOM: "fffe" |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1575 | if (string != NULL) |
| 1576 | { |
| 1577 | tmpbuf = alloc(length + 2); |
Bram Moolenaar | 6ee9658 | 2019-04-27 22:06:37 +0200 | [diff] [blame] | 1578 | if (tmpbuf != NULL) |
| 1579 | { |
| 1580 | tmpbuf[0] = 0xff; |
| 1581 | tmpbuf[1] = 0xfe; |
| 1582 | mch_memmove(tmpbuf + 2, string, (size_t)length); |
| 1583 | vim_free(string); |
| 1584 | string = tmpbuf; |
| 1585 | length += 2; |
| 1586 | } |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1587 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1588 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1589 | // Looks redundant even for GTK2 because these values are |
| 1590 | // overwritten by gtk_selection_data_set() that follows. |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1591 | selection_data->type = selection_data->target; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1592 | selection_data->format = 16; // 16 bits per char |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1593 | #endif |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 1594 | gtk_selection_data_set(selection_data, html_atom, 16, |
| 1595 | string, length); |
| 1596 | vim_free(string); |
| 1597 | } |
| 1598 | return; |
| 1599 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1600 | else if (info == (guint)TARGET_VIMENC) |
| 1601 | { |
| 1602 | int l = STRLEN(p_enc); |
| 1603 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1604 | // contents: motion_type 'encoding' NUL text |
Bram Moolenaar | 964b374 | 2019-05-24 18:54:09 +0200 | [diff] [blame] | 1605 | tmpbuf = alloc(length + l + 2); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1606 | if (tmpbuf != NULL) |
| 1607 | { |
| 1608 | tmpbuf[0] = motion_type; |
| 1609 | STRCPY(tmpbuf + 1, p_enc); |
| 1610 | mch_memmove(tmpbuf + l + 2, string, (size_t)length); |
Bram Moolenaar | 6ee9658 | 2019-04-27 22:06:37 +0200 | [diff] [blame] | 1611 | length += l + 2; |
| 1612 | vim_free(string); |
| 1613 | string = tmpbuf; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1614 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1615 | type = vimenc_atom; |
| 1616 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1617 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1618 | // gtk_selection_data_set_text() handles everything for us. This is |
| 1619 | // so easy and simple and cool, it'd be insane not to use it. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1620 | else |
| 1621 | { |
| 1622 | if (output_conv.vc_type != CONV_NONE) |
| 1623 | { |
| 1624 | tmpbuf = string_convert(&output_conv, string, &length); |
| 1625 | vim_free(string); |
| 1626 | if (tmpbuf == NULL) |
| 1627 | return; |
| 1628 | string = tmpbuf; |
| 1629 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1630 | // Validate the string to avoid runtime warnings |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1631 | if (g_utf8_validate((const char *)string, (gssize)length, NULL)) |
| 1632 | { |
| 1633 | gtk_selection_data_set_text(selection_data, |
| 1634 | (const char *)string, length); |
| 1635 | } |
| 1636 | vim_free(string); |
| 1637 | return; |
| 1638 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1639 | |
| 1640 | if (string != NULL) |
| 1641 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1642 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1643 | // Looks redundant even for GTK2 because these values are |
| 1644 | // overwritten by gtk_selection_data_set() that follows. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1645 | selection_data->type = selection_data->target; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1646 | selection_data->format = 8; // 8 bits per char |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1647 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1648 | gtk_selection_data_set(selection_data, type, 8, string, length); |
| 1649 | vim_free(string); |
| 1650 | } |
| 1651 | } |
| 1652 | |
| 1653 | /* |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 1654 | * Check if the GUI can be started. Called before gvimrc is sourced and |
| 1655 | * before fork(). |
| 1656 | * Return OK or FAIL. |
| 1657 | */ |
| 1658 | int |
Bram Moolenaar | 717e196 | 2016-08-10 21:28:44 +0200 | [diff] [blame] | 1659 | gui_mch_early_init_check(int give_message) |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 1660 | { |
| 1661 | char_u *p; |
| 1662 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1663 | // Guess that when $DISPLAY isn't set the GUI can't start. |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 1664 | p = mch_getenv((char_u *)"DISPLAY"); |
| 1665 | if (p == NULL || *p == NUL) |
| 1666 | { |
| 1667 | gui.dying = TRUE; |
Bram Moolenaar | 717e196 | 2016-08-10 21:28:44 +0200 | [diff] [blame] | 1668 | if (give_message) |
Bram Moolenaar | 460ae5d | 2022-01-01 14:19:49 +0000 | [diff] [blame] | 1669 | emsg(_((char *)e_cannot_open_display)); |
Bram Moolenaar | 2969570 | 2012-05-18 17:03:18 +0200 | [diff] [blame] | 1670 | return FAIL; |
| 1671 | } |
| 1672 | return OK; |
| 1673 | } |
| 1674 | |
| 1675 | /* |
| 1676 | * Check if the GUI can be started. Called before gvimrc is sourced but after |
| 1677 | * fork(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1678 | * Return OK or FAIL. |
| 1679 | */ |
| 1680 | int |
| 1681 | gui_mch_init_check(void) |
| 1682 | { |
Bram Moolenaar | 3a466a8 | 2016-01-19 17:47:25 +0100 | [diff] [blame] | 1683 | #ifdef USE_GRESOURCE |
| 1684 | static int res_registered = FALSE; |
| 1685 | |
| 1686 | if (!res_registered) |
| 1687 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1688 | // Call this function in the GUI process; otherwise, the resources |
| 1689 | // won't be available. Don't call it twice. |
Bram Moolenaar | 3a466a8 | 2016-01-19 17:47:25 +0100 | [diff] [blame] | 1690 | res_registered = TRUE; |
| 1691 | gui_gtk_register_resource(); |
| 1692 | } |
| 1693 | #endif |
| 1694 | |
Bram Moolenaar | f80663f | 2016-04-05 21:56:06 +0200 | [diff] [blame] | 1695 | #if GTK_CHECK_VERSION(3,10,0) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1696 | // Vim currently assumes that Gtk means X11, so it cannot use native Gtk |
| 1697 | // support for other backends such as Wayland. |
Bram Moolenaar | f80663f | 2016-04-05 21:56:06 +0200 | [diff] [blame] | 1698 | gdk_set_allowed_backends ("x11"); |
| 1699 | #endif |
| 1700 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1701 | #ifdef FEAT_GUI_GNOME |
| 1702 | if (gtk_socket_id == 0) |
| 1703 | using_gnome = 1; |
| 1704 | #endif |
| 1705 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1706 | // This defaults to argv[0], but we want it to match the name of the |
| 1707 | // shipped gvim.desktop so that Vim's windows can be associated with this |
| 1708 | // file. |
Bram Moolenaar | 8dd7901 | 2013-05-21 12:52:04 +0200 | [diff] [blame] | 1709 | g_set_prgname("gvim"); |
| 1710 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1711 | // Don't use gtk_init() or gnome_init(), it exits on failure. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1712 | if (!gtk_init_check(&gui_argc, &gui_argv)) |
| 1713 | { |
| 1714 | gui.dying = TRUE; |
Bram Moolenaar | 460ae5d | 2022-01-01 14:19:49 +0000 | [diff] [blame] | 1715 | emsg(_((char *)e_cannot_open_display)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1716 | return FAIL; |
| 1717 | } |
| 1718 | |
| 1719 | return OK; |
| 1720 | } |
| 1721 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1722 | ///////////////////////////////////////////////////////////////////////////// |
| 1723 | // Mouse handling callbacks |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1724 | |
| 1725 | |
| 1726 | static guint mouse_click_timer = 0; |
| 1727 | static int mouse_timed_out = TRUE; |
| 1728 | |
| 1729 | /* |
| 1730 | * Timer used to recognize multiple clicks of the mouse button |
| 1731 | */ |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 1732 | static timeout_cb_type |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1733 | mouse_click_timer_cb(gpointer data) |
| 1734 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1735 | // we don't use this information currently |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1736 | int *timed_out = (int *) data; |
| 1737 | |
| 1738 | *timed_out = TRUE; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1739 | return FALSE; // don't happen again |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1740 | } |
| 1741 | |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 1742 | static guint motion_repeat_timer = 0; |
| 1743 | static int motion_repeat_offset = FALSE; |
| 1744 | static timeout_cb_type motion_repeat_timer_cb(gpointer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1745 | |
| 1746 | static void |
| 1747 | process_motion_notify(int x, int y, GdkModifierType state) |
| 1748 | { |
| 1749 | int button; |
| 1750 | int_u vim_modifiers; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1751 | GtkAllocation allocation; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1752 | |
Chris Dalton | ee93e32 | 2021-11-23 12:27:48 +0000 | [diff] [blame] | 1753 | // Need to add GDK_BUTTON1_MASK state when dragging a touch. |
| 1754 | state |= dragging_button_state; |
| 1755 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1756 | button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | |
| 1757 | GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | |
| 1758 | GDK_BUTTON5_MASK)) |
| 1759 | ? MOUSE_DRAG : ' '; |
| 1760 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1761 | // If our pointer is currently hidden, then we should show it. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1762 | gui_mch_mousehide(FALSE); |
| 1763 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1764 | // Just moving the rodent above the drawing area without any button |
| 1765 | // being pressed. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1766 | if (button != MOUSE_DRAG) |
| 1767 | { |
| 1768 | gui_mouse_moved(x, y); |
| 1769 | return; |
| 1770 | } |
| 1771 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1772 | // translate modifier coding between the main engine and GTK |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1773 | vim_modifiers = modifiers_gdk2mouse(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1774 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1775 | // inform the editor engine about the occurrence of this event |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1776 | gui_send_mouse_event(button, x, y, FALSE, vim_modifiers); |
| 1777 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1778 | /* |
| 1779 | * Auto repeat timer handling. |
| 1780 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1781 | gtk_widget_get_allocation(gui.drawarea, &allocation); |
| 1782 | |
| 1783 | if (x < 0 || y < 0 |
| 1784 | || x >= allocation.width |
| 1785 | || y >= allocation.height) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1786 | { |
| 1787 | |
| 1788 | int dx; |
| 1789 | int dy; |
| 1790 | int offshoot; |
| 1791 | int delay = 10; |
| 1792 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1793 | // Calculate the maximal distance of the cursor from the drawing area. |
| 1794 | // (offshoot can't become negative here!). |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1795 | dx = x < 0 ? -x : x - allocation.width; |
| 1796 | dy = y < 0 ? -y : y - allocation.height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1797 | |
| 1798 | offshoot = dx > dy ? dx : dy; |
| 1799 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1800 | // Make a linearly decaying timer delay with a threshold of 5 at a |
| 1801 | // distance of 127 pixels from the main window. |
| 1802 | // |
| 1803 | // One could think endlessly about the most ergonomic variant here. |
| 1804 | // For example it could make sense to calculate the distance from the |
| 1805 | // drags start instead... |
| 1806 | // |
| 1807 | // Maybe a parabolic interpolation would suite us better here too... |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1808 | if (offshoot > 127) |
| 1809 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1810 | // 5 appears to be somehow near to my perceptual limits :-). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1811 | delay = 5; |
| 1812 | } |
| 1813 | else |
| 1814 | { |
| 1815 | delay = (130 * (127 - offshoot)) / 127 + 5; |
| 1816 | } |
| 1817 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1818 | // shoot again |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1819 | if (!motion_repeat_timer) |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 1820 | motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb, |
| 1821 | NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1822 | } |
| 1823 | } |
| 1824 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1825 | #if GTK_CHECK_VERSION(3,0,0) |
| 1826 | static GdkDevice * |
| 1827 | gui_gtk_get_pointer_device(GtkWidget *widget) |
| 1828 | { |
| 1829 | GdkWindow * const win = gtk_widget_get_window(widget); |
| 1830 | GdkDisplay * const dpy = gdk_window_get_display(win); |
Bram Moolenaar | 30e12d2 | 2016-04-17 20:49:53 +0200 | [diff] [blame] | 1831 | # if GTK_CHECK_VERSION(3,20,0) |
| 1832 | GdkSeat * const seat = gdk_display_get_default_seat(dpy); |
| 1833 | return gdk_seat_get_pointer(seat); |
| 1834 | # else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1835 | GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy); |
| 1836 | return gdk_device_manager_get_client_pointer(mngr); |
Bram Moolenaar | 30e12d2 | 2016-04-17 20:49:53 +0200 | [diff] [blame] | 1837 | # endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1838 | } |
| 1839 | |
| 1840 | static GdkWindow * |
| 1841 | gui_gtk_get_pointer(GtkWidget *widget, |
| 1842 | gint *x, |
| 1843 | gint *y, |
| 1844 | GdkModifierType *state) |
| 1845 | { |
| 1846 | GdkWindow * const win = gtk_widget_get_window(widget); |
| 1847 | GdkDevice * const dev = gui_gtk_get_pointer_device(widget); |
| 1848 | return gdk_window_get_device_position(win, dev , x, y, state); |
| 1849 | } |
| 1850 | |
Bram Moolenaar | 2369c15 | 2016-03-04 23:08:25 +0100 | [diff] [blame] | 1851 | # if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1852 | static GdkWindow * |
| 1853 | gui_gtk_window_at_position(GtkWidget *widget, |
| 1854 | gint *x, |
| 1855 | gint *y) |
| 1856 | { |
| 1857 | GdkDevice * const dev = gui_gtk_get_pointer_device(widget); |
| 1858 | return gdk_device_get_window_at_position(dev, x, y); |
| 1859 | } |
Bram Moolenaar | 2369c15 | 2016-03-04 23:08:25 +0100 | [diff] [blame] | 1860 | # endif |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1861 | #else // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 1862 | # define gui_gtk_get_pointer(wid, x, y, s) \ |
| 1863 | gdk_window_get_pointer((wid)->window, x, y, s) |
| 1864 | # define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1865 | #endif |
| 1866 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1867 | /* |
| 1868 | * Timer used to recognize multiple clicks of the mouse button. |
| 1869 | */ |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 1870 | static timeout_cb_type |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1871 | motion_repeat_timer_cb(gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1872 | { |
| 1873 | int x; |
| 1874 | int y; |
| 1875 | GdkModifierType state; |
| 1876 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1877 | gui_gtk_get_pointer(gui.drawarea, &x, &y, &state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1878 | |
| 1879 | if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | |
| 1880 | GDK_BUTTON3_MASK | GDK_BUTTON4_MASK | |
| 1881 | GDK_BUTTON5_MASK))) |
| 1882 | { |
| 1883 | motion_repeat_timer = 0; |
| 1884 | return FALSE; |
| 1885 | } |
| 1886 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1887 | // If there already is a mouse click in the input buffer, wait another |
| 1888 | // time (otherwise we would create a backlog of clicks) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1889 | if (vim_used_in_input_buf() > 10) |
| 1890 | return TRUE; |
| 1891 | |
| 1892 | motion_repeat_timer = 0; |
| 1893 | |
| 1894 | /* |
| 1895 | * Fake a motion event. |
| 1896 | * Trick: Pretend the mouse moved to the next character on every other |
| 1897 | * event, otherwise drag events will be discarded, because they are still |
| 1898 | * in the same character. |
| 1899 | */ |
| 1900 | if (motion_repeat_offset) |
| 1901 | x += gui.char_width; |
| 1902 | |
| 1903 | motion_repeat_offset = !motion_repeat_offset; |
| 1904 | process_motion_notify(x, y, state); |
| 1905 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1906 | // Don't happen again. We will get reinstalled in the synthetic event |
| 1907 | // if needed -- thus repeating should still work. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1908 | return FALSE; |
| 1909 | } |
| 1910 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1911 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1912 | motion_notify_event(GtkWidget *widget, |
| 1913 | GdkEventMotion *event, |
| 1914 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1915 | { |
| 1916 | if (event->is_hint) |
| 1917 | { |
| 1918 | int x; |
| 1919 | int y; |
| 1920 | GdkModifierType state; |
| 1921 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1922 | gui_gtk_get_pointer(widget, &x, &y, &state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1923 | process_motion_notify(x, y, state); |
| 1924 | } |
| 1925 | else |
| 1926 | { |
| 1927 | process_motion_notify((int)event->x, (int)event->y, |
| 1928 | (GdkModifierType)event->state); |
| 1929 | } |
| 1930 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1931 | return TRUE; // handled |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1932 | } |
| 1933 | |
| 1934 | |
| 1935 | /* |
| 1936 | * Mouse button handling. Note please that we are capturing multiple click's |
| 1937 | * by our own timeout mechanism instead of the one provided by GTK+ itself. |
| 1938 | * This is due to the way the generic VIM code is recognizing multiple clicks. |
| 1939 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1940 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 1941 | button_press_event(GtkWidget *widget, |
| 1942 | GdkEventButton *event, |
| 1943 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1944 | { |
| 1945 | int button; |
| 1946 | int repeated_click = FALSE; |
| 1947 | int x, y; |
| 1948 | int_u vim_modifiers; |
| 1949 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 1950 | gui.event_time = event->time; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 1951 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1952 | // Make sure we have focus now we've been selected |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 1953 | if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1954 | gtk_widget_grab_focus(widget); |
| 1955 | |
| 1956 | /* |
| 1957 | * Don't let additional events about multiple clicks send by GTK to us |
| 1958 | * after the initial button press event confuse us. |
| 1959 | */ |
| 1960 | if (event->type != GDK_BUTTON_PRESS) |
| 1961 | return FALSE; |
| 1962 | |
| 1963 | x = event->x; |
| 1964 | y = event->y; |
| 1965 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1966 | // Handle multiple clicks |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1967 | if (!mouse_timed_out && mouse_click_timer) |
| 1968 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 1969 | timeout_remove(mouse_click_timer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1970 | mouse_click_timer = 0; |
| 1971 | repeated_click = TRUE; |
| 1972 | } |
| 1973 | |
| 1974 | mouse_timed_out = FALSE; |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 1975 | mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb, |
| 1976 | &mouse_timed_out); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1977 | |
| 1978 | switch (event->button) |
| 1979 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1980 | // Keep in sync with gui_x11.c. |
| 1981 | // Buttons 4-7 are handled in scroll_event() |
Chris Dalton | ee93e32 | 2021-11-23 12:27:48 +0000 | [diff] [blame] | 1982 | case 1: |
| 1983 | button = MOUSE_LEFT; |
| 1984 | // needed for touch-drag |
| 1985 | dragging_button_state |= GDK_BUTTON1_MASK; |
| 1986 | break; |
Bram Moolenaar | 88e484b | 2015-11-24 15:38:44 +0100 | [diff] [blame] | 1987 | case 2: button = MOUSE_MIDDLE; break; |
| 1988 | case 3: button = MOUSE_RIGHT; break; |
| 1989 | case 8: button = MOUSE_X1; break; |
| 1990 | case 9: button = MOUSE_X2; break; |
| 1991 | default: |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1992 | return FALSE; // Unknown button |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1993 | } |
| 1994 | |
| 1995 | #ifdef FEAT_XIM |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 1996 | // cancel any preediting |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1997 | if (im_is_preediting()) |
| 1998 | xim_reset(); |
| 1999 | #endif |
| 2000 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2001 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2002 | |
| 2003 | gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2004 | |
| 2005 | return TRUE; |
| 2006 | } |
| 2007 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2008 | /* |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 2009 | * GTK+ 2 abstracts scrolling via the GdkEventScroll. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2010 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2011 | static gboolean |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2012 | scroll_event(GtkWidget *widget, |
| 2013 | GdkEventScroll *event, |
| 2014 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2015 | { |
| 2016 | int button; |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2017 | int_u vim_modifiers; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2018 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2019 | if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2020 | gtk_widget_grab_focus(widget); |
| 2021 | |
| 2022 | switch (event->direction) |
| 2023 | { |
| 2024 | case GDK_SCROLL_UP: |
| 2025 | button = MOUSE_4; |
| 2026 | break; |
| 2027 | case GDK_SCROLL_DOWN: |
| 2028 | button = MOUSE_5; |
| 2029 | break; |
Bram Moolenaar | 8d9b40e | 2010-07-25 15:49:07 +0200 | [diff] [blame] | 2030 | case GDK_SCROLL_LEFT: |
| 2031 | button = MOUSE_7; |
| 2032 | break; |
| 2033 | case GDK_SCROLL_RIGHT: |
| 2034 | button = MOUSE_6; |
| 2035 | break; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2036 | default: // This shouldn't happen |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2037 | return FALSE; |
| 2038 | } |
| 2039 | |
| 2040 | # ifdef FEAT_XIM |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2041 | // cancel any preediting |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2042 | if (im_is_preediting()) |
| 2043 | xim_reset(); |
| 2044 | # endif |
| 2045 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2046 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2047 | |
| 2048 | gui_send_mouse_event(button, (int)event->x, (int)event->y, |
| 2049 | FALSE, vim_modifiers); |
| 2050 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2051 | return TRUE; |
| 2052 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2053 | |
| 2054 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2055 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2056 | button_release_event(GtkWidget *widget UNUSED, |
| 2057 | GdkEventButton *event, |
| 2058 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2059 | { |
| 2060 | int x, y; |
| 2061 | int_u vim_modifiers; |
| 2062 | |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 2063 | gui.event_time = event->time; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2064 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2065 | // Remove any motion "machine gun" timers used for automatic further |
| 2066 | // extension of allocation areas if outside of the applications window |
| 2067 | // area . |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2068 | if (motion_repeat_timer) |
| 2069 | { |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 2070 | timeout_remove(motion_repeat_timer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2071 | motion_repeat_timer = 0; |
| 2072 | } |
| 2073 | |
| 2074 | x = event->x; |
| 2075 | y = event->y; |
| 2076 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2077 | vim_modifiers = modifiers_gdk2mouse(event->state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2078 | |
| 2079 | gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2080 | |
Chris Dalton | ee93e32 | 2021-11-23 12:27:48 +0000 | [diff] [blame] | 2081 | switch (event->button) |
| 2082 | { |
| 2083 | case 1: // MOUSE_LEFT |
| 2084 | dragging_button_state = 0; |
| 2085 | break; |
| 2086 | } |
| 2087 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2088 | return TRUE; |
| 2089 | } |
| 2090 | |
| 2091 | |
| 2092 | #ifdef FEAT_DND |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2093 | ///////////////////////////////////////////////////////////////////////////// |
| 2094 | // Drag aNd Drop support handlers. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2095 | |
| 2096 | /* |
| 2097 | * Count how many items there may be and separate them with a NUL. |
| 2098 | * Apparently the items are separated with \r\n. This is not documented, |
| 2099 | * thus be careful not to go past the end. Also allow separation with |
| 2100 | * NUL characters. |
| 2101 | */ |
| 2102 | static int |
| 2103 | count_and_decode_uri_list(char_u *out, char_u *raw, int len) |
| 2104 | { |
| 2105 | int i; |
| 2106 | char_u *p = out; |
| 2107 | int count = 0; |
| 2108 | |
| 2109 | for (i = 0; i < len; ++i) |
| 2110 | { |
| 2111 | if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r') |
| 2112 | { |
| 2113 | if (p > out && p[-1] != NUL) |
| 2114 | { |
| 2115 | ++count; |
| 2116 | *p++ = NUL; |
| 2117 | } |
| 2118 | } |
| 2119 | else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0) |
| 2120 | { |
| 2121 | *p++ = hexhex2nr(raw + i + 1); |
| 2122 | i += 2; |
| 2123 | } |
| 2124 | else |
| 2125 | *p++ = raw[i]; |
| 2126 | } |
| 2127 | if (p > out && p[-1] != NUL) |
| 2128 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2129 | *p = NUL; // last item didn't have \r or \n |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2130 | ++count; |
| 2131 | } |
| 2132 | return count; |
| 2133 | } |
| 2134 | |
| 2135 | /* |
| 2136 | * Parse NUL separated "src" strings. Make it an array "outlist" form. On |
| 2137 | * this process, URI which protocol is not "file:" are removed. Return |
| 2138 | * length of array (less than "max"). |
| 2139 | */ |
| 2140 | static int |
| 2141 | filter_uri_list(char_u **outlist, int max, char_u *src) |
| 2142 | { |
| 2143 | int i, j; |
| 2144 | |
| 2145 | for (i = j = 0; i < max; ++i) |
| 2146 | { |
| 2147 | outlist[i] = NULL; |
| 2148 | if (STRNCMP(src, "file:", 5) == 0) |
| 2149 | { |
| 2150 | src += 5; |
| 2151 | if (STRNCMP(src, "//localhost", 11) == 0) |
| 2152 | src += 11; |
| 2153 | while (src[0] == '/' && src[1] == '/') |
| 2154 | ++src; |
| 2155 | outlist[j++] = vim_strsave(src); |
| 2156 | } |
| 2157 | src += STRLEN(src) + 1; |
| 2158 | } |
| 2159 | return j; |
| 2160 | } |
| 2161 | |
| 2162 | static char_u ** |
| 2163 | parse_uri_list(int *count, char_u *data, int len) |
| 2164 | { |
| 2165 | int n = 0; |
| 2166 | char_u *tmp = NULL; |
Bram Moolenaar | 945ec09 | 2016-06-08 21:17:43 +0200 | [diff] [blame] | 2167 | char_u **array = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2168 | |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 2169 | if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2170 | { |
| 2171 | n = count_and_decode_uri_list(tmp, data, len); |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 2172 | if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2173 | n = filter_uri_list(array, n, tmp); |
| 2174 | } |
| 2175 | vim_free(tmp); |
| 2176 | *count = n; |
| 2177 | return array; |
| 2178 | } |
| 2179 | |
| 2180 | static void |
| 2181 | drag_handle_uri_list(GdkDragContext *context, |
| 2182 | GtkSelectionData *data, |
| 2183 | guint time_, |
| 2184 | GdkModifierType state, |
| 2185 | gint x, |
| 2186 | gint y) |
| 2187 | { |
| 2188 | char_u **fnames; |
| 2189 | int nfiles = 0; |
| 2190 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2191 | fnames = parse_uri_list(&nfiles, |
| 2192 | (char_u *)gtk_selection_data_get_data(data), |
| 2193 | gtk_selection_data_get_length(data)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2194 | |
| 2195 | if (fnames != NULL && nfiles > 0) |
| 2196 | { |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2197 | int_u modifiers; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2198 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2199 | gtk_drag_finish(context, TRUE, FALSE, time_); // accept |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2200 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2201 | modifiers = modifiers_gdk2mouse(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2202 | |
| 2203 | gui_handle_drop(x, y, modifiers, fnames, nfiles); |
| 2204 | } |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 2205 | else |
| 2206 | vim_free(fnames); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2207 | } |
| 2208 | |
| 2209 | static void |
| 2210 | drag_handle_text(GdkDragContext *context, |
| 2211 | GtkSelectionData *data, |
| 2212 | guint time_, |
| 2213 | GdkModifierType state) |
| 2214 | { |
| 2215 | char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP}; |
| 2216 | char_u *text; |
| 2217 | int len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2218 | char_u *tmpbuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2219 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2220 | text = (char_u *)gtk_selection_data_get_data(data); |
| 2221 | len = gtk_selection_data_get_length(data); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2222 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2223 | if (gtk_selection_data_get_data_type(data) == utf8_string_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2224 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2225 | if (input_conv.vc_type != CONV_NONE) |
| 2226 | tmpbuf = string_convert(&input_conv, text, &len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2227 | if (tmpbuf != NULL) |
| 2228 | text = tmpbuf; |
| 2229 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2230 | |
| 2231 | dnd_yank_drag_data(text, (long)len); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2232 | gtk_drag_finish(context, TRUE, FALSE, time_); // accept |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2233 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2234 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2235 | dropkey[2] = modifiers_gdk2vim(state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2236 | |
| 2237 | if (dropkey[2] != 0) |
| 2238 | add_to_input_buf(dropkey, (int)sizeof(dropkey)); |
| 2239 | else |
| 2240 | add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2241 | } |
| 2242 | |
| 2243 | /* |
| 2244 | * DND receiver. |
| 2245 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2246 | static void |
| 2247 | drag_data_received_cb(GtkWidget *widget, |
| 2248 | GdkDragContext *context, |
| 2249 | gint x, |
| 2250 | gint y, |
| 2251 | GtkSelectionData *data, |
| 2252 | guint info, |
| 2253 | guint time_, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2254 | gpointer user_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2255 | { |
| 2256 | GdkModifierType state; |
| 2257 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2258 | // Guard against trash |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2259 | const guchar * const data_data = gtk_selection_data_get_data(data); |
| 2260 | const gint data_length = gtk_selection_data_get_length(data); |
| 2261 | const gint data_format = gtk_selection_data_get_format(data); |
| 2262 | |
| 2263 | if (data_data == NULL |
| 2264 | || data_length <= 0 |
| 2265 | || data_format != 8 |
| 2266 | || data_data[data_length] != '\0') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2267 | { |
| 2268 | gtk_drag_finish(context, FALSE, FALSE, time_); |
| 2269 | return; |
| 2270 | } |
| 2271 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2272 | // Get the current modifier state for proper distinguishment between |
| 2273 | // different operations later. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2274 | gui_gtk_get_pointer(widget, NULL, NULL, &state); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2275 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2276 | // Not sure about the role of "text/plain" here... |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2277 | if (info == (guint)TARGET_TEXT_URI_LIST) |
| 2278 | drag_handle_uri_list(context, data, time_, state, x, y); |
| 2279 | else |
| 2280 | drag_handle_text(context, data, time_, state); |
| 2281 | |
| 2282 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2283 | #endif // FEAT_DND |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2284 | |
| 2285 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 2286 | #if defined(USE_GNOME_SESSION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2287 | /* |
| 2288 | * GnomeClient interact callback. Check for unsaved buffers that cannot |
| 2289 | * be abandoned and pop up a dialog asking the user for confirmation if |
| 2290 | * necessary. |
| 2291 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2292 | static void |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2293 | sm_client_check_changed_any(GnomeClient *client UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2294 | gint key, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2295 | GnomeDialogType type UNUSED, |
| 2296 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2297 | { |
| 2298 | cmdmod_T save_cmdmod; |
| 2299 | gboolean shutdown_cancelled; |
| 2300 | |
| 2301 | save_cmdmod = cmdmod; |
| 2302 | |
| 2303 | # ifdef FEAT_BROWSE |
Bram Moolenaar | e100440 | 2020-10-24 20:49:43 +0200 | [diff] [blame] | 2304 | cmdmod.cmod_flags |= CMOD_BROWSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2305 | # endif |
| 2306 | # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
Bram Moolenaar | e100440 | 2020-10-24 20:49:43 +0200 | [diff] [blame] | 2307 | cmdmod.cmod_flags |= CMOD_CONFIRM; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2308 | # endif |
| 2309 | /* |
| 2310 | * If there are changed buffers, present the user with |
| 2311 | * a dialog if possible, otherwise give an error message. |
| 2312 | */ |
Bram Moolenaar | 027387f | 2016-01-02 22:25:52 +0100 | [diff] [blame] | 2313 | shutdown_cancelled = check_changed_any(FALSE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2314 | |
| 2315 | exiting = FALSE; |
| 2316 | cmdmod = save_cmdmod; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2317 | setcursor(); // position the cursor |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2318 | out_flush(); |
| 2319 | /* |
| 2320 | * If the user hit the [Cancel] button the whole shutdown |
| 2321 | * will be cancelled. Wow, quite powerful feature (: |
| 2322 | */ |
| 2323 | gnome_interaction_key_return(key, shutdown_cancelled); |
| 2324 | } |
| 2325 | |
| 2326 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2327 | * "save_yourself" signal handler. Initiate an interaction to ask the user |
| 2328 | * for confirmation if necessary. Save the current editing session and tell |
| 2329 | * the session manager how to restart Vim. |
| 2330 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2331 | static gboolean |
| 2332 | sm_client_save_yourself(GnomeClient *client, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2333 | gint phase UNUSED, |
| 2334 | GnomeSaveStyle save_style UNUSED, |
| 2335 | gboolean shutdown UNUSED, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2336 | GnomeInteractStyle interact_style, |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2337 | gboolean fast UNUSED, |
| 2338 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2339 | { |
| 2340 | static const char suffix[] = "-session.vim"; |
| 2341 | char *session_file; |
| 2342 | unsigned int len; |
| 2343 | gboolean success; |
| 2344 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2345 | // Always request an interaction if possible. check_changed_any() |
| 2346 | // won't actually show a dialog unless any buffers have been modified. |
| 2347 | // There doesn't seem to be an obvious way to check that without |
| 2348 | // automatically firing the dialog. Anyway, it works just fine. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2349 | if (interact_style == GNOME_INTERACT_ANY) |
| 2350 | gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL, |
| 2351 | &sm_client_check_changed_any, |
| 2352 | NULL); |
| 2353 | out_flush(); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2354 | ml_sync_all(FALSE, FALSE); // preserve all swap files |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2355 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2356 | // The path is unique for each session save. We do neither know nor care |
| 2357 | // which session script will actually be used later. This decision is in |
| 2358 | // the domain of the session manager. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2359 | session_file = gnome_config_get_real_path( |
| 2360 | gnome_client_get_config_prefix(client)); |
| 2361 | len = strlen(session_file); |
| 2362 | |
| 2363 | if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2364 | --len; // get rid of the superfluous trailing '/' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2365 | |
| 2366 | session_file = g_renew(char, session_file, len + sizeof(suffix)); |
| 2367 | memcpy(session_file + len, suffix, sizeof(suffix)); |
| 2368 | |
| 2369 | success = write_session_file((char_u *)session_file); |
| 2370 | |
| 2371 | if (success) |
| 2372 | { |
| 2373 | const char *argv[8]; |
| 2374 | int i; |
| 2375 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2376 | // Tell the session manager how to wipe out the stored session data. |
| 2377 | // This isn't as dangerous as it looks, don't worry :) session_file |
| 2378 | // is a unique absolute filename. Usually it'll be something like |
| 2379 | // `/home/user/.gnome2/vim-XXXXXX-session.vim'. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2380 | i = 0; |
| 2381 | argv[i++] = "rm"; |
| 2382 | argv[i++] = session_file; |
| 2383 | argv[i] = NULL; |
| 2384 | |
| 2385 | gnome_client_set_discard_command(client, i, (char **)argv); |
| 2386 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2387 | // Tell the session manager how to restore the just saved session. |
| 2388 | // This is easily done thanks to Vim's -S option. Pass the -f flag |
| 2389 | // since there's no need to fork -- it might even cause confusion. |
| 2390 | // Also pass the window role to give the WM something to match on. |
| 2391 | // The role is set in gui_mch_open(), thus should _never_ be NULL. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2392 | i = 0; |
| 2393 | argv[i++] = restart_command; |
| 2394 | argv[i++] = "-f"; |
| 2395 | argv[i++] = "-g"; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2396 | argv[i++] = "--role"; |
| 2397 | argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2398 | argv[i++] = "-S"; |
| 2399 | argv[i++] = session_file; |
| 2400 | argv[i] = NULL; |
| 2401 | |
| 2402 | gnome_client_set_restart_command(client, i, (char **)argv); |
| 2403 | gnome_client_set_clone_command(client, 0, NULL); |
| 2404 | } |
| 2405 | |
| 2406 | g_free(session_file); |
| 2407 | |
| 2408 | return success; |
| 2409 | } |
| 2410 | |
| 2411 | /* |
| 2412 | * Called when the session manager wants us to die. There isn't much to save |
| 2413 | * here since "save_yourself" has been emitted before (unless serious trouble |
| 2414 | * is happening). |
| 2415 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2416 | static void |
Bram Moolenaar | 30bb414 | 2010-05-17 22:07:15 +0200 | [diff] [blame] | 2417 | sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2418 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2419 | // Don't write messages to the GUI anymore |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2420 | full_screen = FALSE; |
| 2421 | |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 2422 | vim_strncpy(IObuff, (char_u *) |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 2423 | _("Vim: Received \"die\" request from session manager\n"), |
Bram Moolenaar | c93e791 | 2008-07-08 10:46:08 +0000 | [diff] [blame] | 2424 | IOSIZE - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2425 | preserve_exit(); |
| 2426 | } |
| 2427 | |
| 2428 | /* |
| 2429 | * Connect our signal handlers to be notified on session save and shutdown. |
| 2430 | */ |
| 2431 | static void |
| 2432 | setup_save_yourself(void) |
| 2433 | { |
| 2434 | GnomeClient *client; |
| 2435 | |
| 2436 | client = gnome_master_client(); |
| 2437 | |
| 2438 | if (client != NULL) |
| 2439 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2440 | // Must use the deprecated gtk_signal_connect() for compatibility |
| 2441 | // with GNOME 1. Arrgh, zombies! |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2442 | gtk_signal_connect(GTK_OBJECT(client), "save_yourself", |
| 2443 | GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL); |
| 2444 | gtk_signal_connect(GTK_OBJECT(client), "die", |
| 2445 | GTK_SIGNAL_FUNC(&sm_client_die), NULL); |
| 2446 | } |
| 2447 | } |
| 2448 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 2449 | #else // !USE_GNOME_SESSION |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2450 | |
| 2451 | # ifdef USE_XSMP |
| 2452 | /* |
| 2453 | * GTK tells us that XSMP needs attention |
| 2454 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2455 | static gboolean |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 2456 | local_xsmp_handle_requests( |
| 2457 | GIOChannel *source UNUSED, |
| 2458 | GIOCondition condition, |
| 2459 | gpointer data) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2460 | { |
| 2461 | if (condition == G_IO_IN) |
| 2462 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2463 | // Do stuff; maybe close connection |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2464 | if (xsmp_handle_requests() == FAIL) |
| 2465 | g_io_channel_unref((GIOChannel *)data); |
| 2466 | return TRUE; |
| 2467 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2468 | // Error |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2469 | g_io_channel_unref((GIOChannel *)data); |
| 2470 | xsmp_close(); |
| 2471 | return TRUE; |
| 2472 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2473 | # endif // USE_XSMP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2474 | |
| 2475 | /* |
| 2476 | * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event. |
| 2477 | * This is an ugly use of X functions. GTK doesn't offer an alternative. |
| 2478 | */ |
| 2479 | static void |
| 2480 | setup_save_yourself(void) |
| 2481 | { |
| 2482 | Atom *existing_atoms = NULL; |
| 2483 | int count = 0; |
| 2484 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2485 | # ifdef USE_XSMP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2486 | if (xsmp_icefd != -1) |
| 2487 | { |
| 2488 | /* |
| 2489 | * Use XSMP is preference to legacy WM_SAVE_YOURSELF; |
| 2490 | * set up GTK IO monitor |
| 2491 | */ |
| 2492 | GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd); |
| 2493 | |
| 2494 | g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP, |
| 2495 | local_xsmp_handle_requests, (gpointer)g_io); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2496 | g_io_channel_unref(g_io); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2497 | } |
| 2498 | else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2499 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2500 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2501 | // Fall back to old method |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2502 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2503 | // first get the existing value |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2504 | GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin); |
| 2505 | |
| 2506 | if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2507 | GDK_WINDOW_XID(mainwin_win), |
| 2508 | &existing_atoms, &count)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2509 | { |
| 2510 | Atom *new_atoms; |
| 2511 | Atom save_yourself_xatom; |
| 2512 | int i; |
| 2513 | |
| 2514 | save_yourself_xatom = GET_X_ATOM(save_yourself_atom); |
| 2515 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2516 | // check if WM_SAVE_YOURSELF isn't there yet |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2517 | for (i = 0; i < count; ++i) |
| 2518 | if (existing_atoms[i] == save_yourself_xatom) |
| 2519 | break; |
| 2520 | |
| 2521 | if (i == count) |
| 2522 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2523 | // allocate an Atoms array which is one item longer |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 2524 | new_atoms = ALLOC_MULT(Atom, count + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2525 | if (new_atoms != NULL) |
| 2526 | { |
| 2527 | memcpy(new_atoms, existing_atoms, count * sizeof(Atom)); |
| 2528 | new_atoms[count] = save_yourself_xatom; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2529 | XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2530 | GDK_WINDOW_XID(mainwin_win), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2531 | new_atoms, count + 1); |
| 2532 | vim_free(new_atoms); |
| 2533 | } |
| 2534 | } |
| 2535 | XFree(existing_atoms); |
| 2536 | } |
| 2537 | } |
| 2538 | } |
| 2539 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2540 | /* |
| 2541 | * Installing a global event filter seems to be the only way to catch |
| 2542 | * client messages of type WM_PROTOCOLS without overriding GDK's own |
| 2543 | * client message event filter. Well, that's still better than trying |
| 2544 | * 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] | 2545 | * |
| 2546 | * GTK2_FIXME: This doesn't seem to work. For some reason we never |
| 2547 | * receive WM_SAVE_YOURSELF even though everything is set up correctly. |
| 2548 | * I have the nasty feeling modern session managers just don't send this |
| 2549 | * deprecated message anymore. Addition: confirmed by several people. |
| 2550 | * |
| 2551 | * The GNOME session support is much cooler anyway. Unlike this ugly |
| 2552 | * WM_SAVE_YOURSELF hack it actually stores the session... And yes, |
| 2553 | * it should work with KDE as well. |
| 2554 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2555 | static GdkFilterReturn |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2556 | global_event_filter(GdkXEvent *xev, |
| 2557 | GdkEvent *event UNUSED, |
| 2558 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2559 | { |
| 2560 | XEvent *xevent = (XEvent *)xev; |
| 2561 | |
| 2562 | if (xevent != NULL |
| 2563 | && xevent->type == ClientMessage |
| 2564 | && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom) |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2565 | && (long_u)xevent->xclient.data.l[0] |
| 2566 | == GET_X_ATOM(save_yourself_atom)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2567 | { |
| 2568 | out_flush(); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2569 | ml_sync_all(FALSE, FALSE); // preserve all swap files |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2570 | /* |
| 2571 | * Set the window's WM_COMMAND property, to let the window manager |
| 2572 | * know we are done saving ourselves. We don't want to be |
| 2573 | * restarted, thus set argv to NULL. |
| 2574 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2575 | XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)), |
| 2576 | GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2577 | NULL, 0); |
| 2578 | return GDK_FILTER_REMOVE; |
| 2579 | } |
| 2580 | |
| 2581 | return GDK_FILTER_CONTINUE; |
| 2582 | } |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 2583 | #endif // !USE_GNOME_SESSION |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2584 | |
| 2585 | |
| 2586 | /* |
| 2587 | * Setup the window icon & xcmdsrv comm after the main window has been realized. |
| 2588 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2589 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2590 | mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2591 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2592 | // If you get an error message here, you still need to unpack the runtime |
| 2593 | // archive! |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2594 | #ifdef magick |
| 2595 | # undef magick |
| 2596 | #endif |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2597 | // A bit hackish, but avoids casting later and allows optimization |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2598 | # define static static const |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2599 | #define magick vim32x32 |
| 2600 | #include "../runtime/vim32x32.xpm" |
| 2601 | #undef magick |
| 2602 | #define magick vim16x16 |
| 2603 | #include "../runtime/vim16x16.xpm" |
| 2604 | #undef magick |
| 2605 | #define magick vim48x48 |
| 2606 | #include "../runtime/vim48x48.xpm" |
| 2607 | #undef magick |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2608 | # undef static |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2609 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2610 | GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2611 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2612 | // When started with "--echo-wid" argument, write window ID on stdout. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2613 | if (echo_wid_arg) |
| 2614 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2615 | printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2616 | fflush(stdout); |
| 2617 | } |
| 2618 | |
| 2619 | if (vim_strchr(p_go, GO_ICON) != NULL) |
| 2620 | { |
| 2621 | /* |
| 2622 | * Add an icon to the main window. For fun and convenience of the user. |
| 2623 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2624 | GList *icons = NULL; |
| 2625 | |
| 2626 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16)); |
| 2627 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32)); |
| 2628 | icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48)); |
| 2629 | |
| 2630 | gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons); |
| 2631 | |
Bram Moolenaar | 81a4cf4 | 2020-09-09 19:05:13 +0200 | [diff] [blame] | 2632 | // TODO: is this type cast OK? |
| 2633 | g_list_foreach(icons, (GFunc)(void *)&g_object_unref, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2634 | g_list_free(icons); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2635 | } |
| 2636 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 2637 | #if !defined(USE_GNOME_SESSION) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2638 | // 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] | 2639 | gdk_window_add_filter(NULL, &global_event_filter, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2640 | #endif |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2641 | // Setup to indicate to the window manager that we want to catch the |
| 2642 | // WM_SAVE_YOURSELF event. For GNOME, this connects to the session |
| 2643 | // manager instead. |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 2644 | #if defined(USE_GNOME_SESSION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2645 | if (using_gnome) |
| 2646 | #endif |
| 2647 | setup_save_yourself(); |
| 2648 | |
| 2649 | #ifdef FEAT_CLIENTSERVER |
| 2650 | if (serverName == NULL && serverDelayedStartName != NULL) |
| 2651 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2652 | // This is a :gui command in a plain vim with no previous server |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2653 | commWindow = GDK_WINDOW_XID(mainwin_win); |
| 2654 | |
| 2655 | (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2656 | serverDelayedStartName); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2657 | } |
| 2658 | else |
| 2659 | { |
| 2660 | /* |
| 2661 | * Cannot handle "XLib-only" windows with gtk event routines, we'll |
| 2662 | * have to change the "server" registration to that of the main window |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 2663 | * If we have not registered a name yet, remember the window. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2664 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2665 | serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win), |
| 2666 | GDK_WINDOW_XID(mainwin_win)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2667 | } |
| 2668 | gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2669 | g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event", |
| 2670 | G_CALLBACK(property_event), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2671 | #endif |
| 2672 | } |
| 2673 | |
| 2674 | static GdkCursor * |
| 2675 | create_blank_pointer(void) |
| 2676 | { |
| 2677 | GdkWindow *root_window = NULL; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2678 | #if GTK_CHECK_VERSION(3,0,0) |
| 2679 | GdkPixbuf *blank_mask; |
| 2680 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2681 | GdkPixmap *blank_mask; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2682 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2683 | GdkCursor *cursor; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 2684 | #if GTK_CHECK_VERSION(3,0,0) |
| 2685 | GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 }; |
| 2686 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2687 | GdkColor color = { 0, 0, 0, 0 }; |
| 2688 | char blank_data[] = { 0x0 }; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2689 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2690 | |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 2691 | #if GTK_CHECK_VERSION(3,12,0) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2692 | { |
| 2693 | GdkWindow * const win = gtk_widget_get_window(gui.mainwin); |
| 2694 | GdkScreen * const scrn = gdk_window_get_screen(win); |
| 2695 | root_window = gdk_screen_get_root_window(scrn); |
| 2696 | } |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 2697 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2698 | root_window = gtk_widget_get_root_window(gui.mainwin); |
| 2699 | #endif |
| 2700 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2701 | // Create a pseudo blank pointer, which is in fact one pixel by one pixel |
| 2702 | // in size. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2703 | #if GTK_CHECK_VERSION(3,0,0) |
| 2704 | { |
| 2705 | cairo_surface_t *surf; |
| 2706 | cairo_t *cr; |
| 2707 | |
| 2708 | surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1); |
| 2709 | cr = cairo_create(surf); |
| 2710 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 2711 | cairo_set_source_rgba(cr, |
| 2712 | color.red, |
| 2713 | color.green, |
| 2714 | color.blue, |
| 2715 | color.alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2716 | cairo_rectangle(cr, 0, 0, 1, 1); |
| 2717 | cairo_fill(cr); |
| 2718 | cairo_destroy(cr); |
| 2719 | |
| 2720 | blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1); |
| 2721 | cairo_surface_destroy(surf); |
| 2722 | |
| 2723 | cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window), |
| 2724 | blank_mask, 0, 0); |
| 2725 | g_object_unref(blank_mask); |
| 2726 | } |
| 2727 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2728 | blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1); |
| 2729 | cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask, |
| 2730 | &color, &color, 0, 0); |
| 2731 | gdk_bitmap_unref(blank_mask); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2732 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2733 | |
| 2734 | return cursor; |
| 2735 | } |
| 2736 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2737 | static void |
| 2738 | mainwin_screen_changed_cb(GtkWidget *widget, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2739 | GdkScreen *previous_screen UNUSED, |
| 2740 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2741 | { |
| 2742 | if (!gtk_widget_has_screen(widget)) |
| 2743 | return; |
| 2744 | |
| 2745 | /* |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 2746 | * Recreate the invisible mouse cursor. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2747 | */ |
| 2748 | if (gui.blank_pointer != NULL) |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 2749 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2750 | g_object_unref(G_OBJECT(gui.blank_pointer)); |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 2751 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2752 | gdk_cursor_unref(gui.blank_pointer); |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 2753 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2754 | |
| 2755 | gui.blank_pointer = create_blank_pointer(); |
| 2756 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2757 | if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL) |
| 2758 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
| 2759 | gui.blank_pointer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2760 | |
| 2761 | /* |
| 2762 | * Create a new PangoContext for this screen, and initialize it |
| 2763 | * with the current font if necessary. |
| 2764 | */ |
| 2765 | if (gui.text_context != NULL) |
| 2766 | g_object_unref(gui.text_context); |
| 2767 | |
| 2768 | gui.text_context = gtk_widget_create_pango_context(widget); |
| 2769 | pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
| 2770 | |
| 2771 | if (gui.norm_font != NULL) |
| 2772 | { |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 2773 | gui_mch_init_font(p_guifont, FALSE); |
Bram Moolenaar | 8ac4415 | 2017-11-09 18:33:29 +0100 | [diff] [blame] | 2774 | gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2775 | } |
| 2776 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2777 | |
| 2778 | /* |
| 2779 | * After the drawing area comes up, we calculate all colors and create the |
| 2780 | * dummy blank cursor. |
| 2781 | * |
| 2782 | * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the |
| 2783 | * fact that the main VIM engine doesn't take them into account anywhere. |
| 2784 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2785 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2786 | drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2787 | { |
| 2788 | GtkWidget *sbar; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2789 | GtkAllocation allocation; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2790 | |
| 2791 | #ifdef FEAT_XIM |
| 2792 | xim_init(); |
| 2793 | #endif |
| 2794 | gui_mch_new_colors(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2795 | #if GTK_CHECK_VERSION(3,0,0) |
| 2796 | gui.surface = gdk_window_create_similar_surface( |
| 2797 | gtk_widget_get_window(widget), |
| 2798 | CAIRO_CONTENT_COLOR_ALPHA, |
| 2799 | gtk_widget_get_allocated_width(widget), |
| 2800 | gtk_widget_get_allocated_height(widget)); |
| 2801 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2802 | gui.text_gc = gdk_gc_new(gui.drawarea->window); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2803 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2804 | |
| 2805 | gui.blank_pointer = create_blank_pointer(); |
| 2806 | if (gui.pointer_hidden) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2807 | gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2808 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2809 | // get the actual size of the scrollbars, if they are realized |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2810 | sbar = firstwin->w_scrollbars[SBAR_LEFT].id; |
| 2811 | if (!sbar || (!gui.which_scrollbars[SBAR_LEFT] |
| 2812 | && firstwin->w_scrollbars[SBAR_RIGHT].id)) |
| 2813 | sbar = firstwin->w_scrollbars[SBAR_RIGHT].id; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2814 | gtk_widget_get_allocation(sbar, &allocation); |
| 2815 | if (sbar && gtk_widget_get_realized(sbar) && allocation.width) |
| 2816 | gui.scrollbar_width = allocation.width; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2817 | |
| 2818 | sbar = gui.bottom_sbar.id; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2819 | if (sbar && gtk_widget_get_realized(sbar) && allocation.height) |
| 2820 | gui.scrollbar_height = allocation.height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2821 | } |
| 2822 | |
| 2823 | /* |
| 2824 | * Properly clean up on shutdown. |
| 2825 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2826 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2827 | drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2828 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2829 | // Don't write messages to the GUI anymore |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2830 | full_screen = FALSE; |
| 2831 | |
| 2832 | #ifdef FEAT_XIM |
| 2833 | im_shutdown(); |
| 2834 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2835 | if (gui.ascii_glyphs != NULL) |
| 2836 | { |
| 2837 | pango_glyph_string_free(gui.ascii_glyphs); |
| 2838 | gui.ascii_glyphs = NULL; |
| 2839 | } |
| 2840 | if (gui.ascii_font != NULL) |
| 2841 | { |
| 2842 | g_object_unref(gui.ascii_font); |
| 2843 | gui.ascii_font = NULL; |
| 2844 | } |
| 2845 | g_object_unref(gui.text_context); |
| 2846 | gui.text_context = NULL; |
| 2847 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2848 | #if GTK_CHECK_VERSION(3,0,0) |
| 2849 | if (gui.surface != NULL) |
| 2850 | { |
| 2851 | cairo_surface_destroy(gui.surface); |
| 2852 | gui.surface = NULL; |
| 2853 | } |
| 2854 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2855 | g_object_unref(gui.text_gc); |
| 2856 | gui.text_gc = NULL; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2857 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2858 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2859 | #if GTK_CHECK_VERSION(3,0,0) |
| 2860 | g_object_unref(G_OBJECT(gui.blank_pointer)); |
| 2861 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2862 | gdk_cursor_unref(gui.blank_pointer); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2863 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2864 | gui.blank_pointer = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2865 | } |
| 2866 | |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 2867 | #if GTK_CHECK_VERSION(3,22,2) |
| 2868 | static void |
| 2869 | drawarea_style_updated_cb(GtkWidget *widget UNUSED, |
| 2870 | gpointer data UNUSED) |
| 2871 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2872 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2873 | drawarea_style_set_cb(GtkWidget *widget UNUSED, |
| 2874 | GtkStyle *previous_style UNUSED, |
| 2875 | gpointer data UNUSED) |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 2876 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2877 | { |
| 2878 | gui_mch_new_colors(); |
| 2879 | } |
| 2880 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2881 | #if GTK_CHECK_VERSION(3,0,0) |
| 2882 | static gboolean |
| 2883 | drawarea_configure_event_cb(GtkWidget *widget, |
| 2884 | GdkEventConfigure *event, |
| 2885 | gpointer data UNUSED) |
| 2886 | { |
| 2887 | static int cur_width = 0; |
| 2888 | static int cur_height = 0; |
| 2889 | |
| 2890 | g_return_val_if_fail(event |
| 2891 | && event->width >= 1 && event->height >= 1, TRUE); |
| 2892 | |
Bram Moolenaar | 182707a | 2016-11-21 20:55:58 +0100 | [diff] [blame] | 2893 | # if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2894 | // As of 3.22.2, GdkWindows have started distributing configure events to |
| 2895 | // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0). |
| 2896 | // |
| 2897 | // As can be seen from the implementation of move_native_children() and |
| 2898 | // configure_native_child() in gdkwindow.c, those functions actually |
| 2899 | // propagate configure events to every child, failing to distinguish |
| 2900 | // "native" one from non-native one. |
| 2901 | // |
| 2902 | // Naturally, configure events propagated to here like that are fallacious |
| 2903 | // and, as a matter of fact, they trigger a geometric collapse of |
| 2904 | // gui.drawarea in fullscreen and maximized modes. |
| 2905 | // |
| 2906 | // To filter out such nuisance events, we are making use of the fact that |
| 2907 | // the field send_event of such GdkEventConfigures is set to FALSE in |
| 2908 | // configure_native_child(). |
| 2909 | // |
| 2910 | // Obviously, this is a terrible hack making GVim depend on GTK's |
| 2911 | // implementation details. Therefore, watch out any relevant internal |
| 2912 | // changes happening in GTK in the feature (sigh). |
| 2913 | // |
| 2914 | // Follow-up |
| 2915 | // After a few weeks later, the GdkWindow change mentioned above was |
| 2916 | // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155). |
| 2917 | // The corresponding official release is 3.22.4. |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 2918 | if (event->send_event == FALSE) |
| 2919 | return TRUE; |
| 2920 | # endif |
| 2921 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2922 | if (event->width == cur_width && event->height == cur_height) |
| 2923 | return TRUE; |
| 2924 | |
| 2925 | cur_width = event->width; |
| 2926 | cur_height = event->height; |
| 2927 | |
| 2928 | if (gui.surface != NULL) |
| 2929 | cairo_surface_destroy(gui.surface); |
| 2930 | |
| 2931 | gui.surface = gdk_window_create_similar_surface( |
| 2932 | gtk_widget_get_window(widget), |
| 2933 | CAIRO_CONTENT_COLOR_ALPHA, |
| 2934 | event->width, event->height); |
| 2935 | |
| 2936 | gtk_widget_queue_draw(widget); |
| 2937 | |
| 2938 | return TRUE; |
| 2939 | } |
| 2940 | #endif |
| 2941 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2942 | /* |
| 2943 | * Callback routine for the "delete_event" signal on the toplevel window. |
| 2944 | * Tries to vim gracefully, or refuses to exit with changed buffers. |
| 2945 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2946 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 2947 | delete_event_cb(GtkWidget *widget UNUSED, |
| 2948 | GdkEventAny *event UNUSED, |
| 2949 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2950 | { |
| 2951 | gui_shell_closed(); |
| 2952 | return TRUE; |
| 2953 | } |
| 2954 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2955 | #if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE) |
| 2956 | static int |
| 2957 | get_item_dimensions(GtkWidget *widget, GtkOrientation orientation) |
| 2958 | { |
Bram Moolenaar | c4a249a | 2017-01-30 22:56:48 +0100 | [diff] [blame] | 2959 | # ifdef FEAT_GUI_GNOME |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2960 | GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL; |
| 2961 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2962 | if (using_gnome && widget != NULL) |
| 2963 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2964 | GtkWidget *parent; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2965 | BonoboDockItem *dockitem; |
| 2966 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 2967 | parent = gtk_widget_get_parent(widget); |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2968 | if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM) |
| 2969 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 2970 | // Only menu & toolbar are dock items. Could tabline be? |
| 2971 | // Seem to be only the 2 defined in GNOME |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2972 | widget = parent; |
| 2973 | dockitem = BONOBO_DOCK_ITEM(widget); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2974 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 2975 | if (dockitem == NULL || dockitem->is_floating) |
| 2976 | return 0; |
| 2977 | item_orientation = bonobo_dock_item_get_orientation(dockitem); |
| 2978 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2979 | } |
Bram Moolenaar | c4a249a | 2017-01-30 22:56:48 +0100 | [diff] [blame] | 2980 | # else |
| 2981 | # define item_orientation GTK_ORIENTATION_HORIZONTAL |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2982 | # endif |
Bram Moolenaar | c4a249a | 2017-01-30 22:56:48 +0100 | [diff] [blame] | 2983 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2984 | if (widget != NULL |
| 2985 | && item_orientation == orientation |
| 2986 | && gtk_widget_get_realized(widget) |
| 2987 | && gtk_widget_get_visible(widget)) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2988 | { |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 2989 | # if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2990 | GtkAllocation allocation; |
| 2991 | |
| 2992 | gtk_widget_get_allocation(widget, &allocation); |
Bram Moolenaar | c4a249a | 2017-01-30 22:56:48 +0100 | [diff] [blame] | 2993 | return allocation.height; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2994 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2995 | if (orientation == GTK_ORIENTATION_HORIZONTAL) |
| 2996 | return widget->allocation.height; |
| 2997 | else |
| 2998 | return widget->allocation.width; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 2999 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3000 | } |
| 3001 | return 0; |
| 3002 | } |
| 3003 | #endif |
| 3004 | |
| 3005 | static int |
| 3006 | get_menu_tool_width(void) |
| 3007 | { |
| 3008 | int width = 0; |
| 3009 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3010 | #ifdef FEAT_GUI_GNOME // these are never vertical without GNOME |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3011 | # ifdef FEAT_MENU |
| 3012 | width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL); |
| 3013 | # endif |
| 3014 | # ifdef FEAT_TOOLBAR |
| 3015 | width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL); |
| 3016 | # endif |
| 3017 | # ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3018 | if (gui.tabline != NULL) |
| 3019 | width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3020 | # endif |
| 3021 | #endif |
| 3022 | |
| 3023 | return width; |
| 3024 | } |
| 3025 | |
| 3026 | static int |
| 3027 | get_menu_tool_height(void) |
| 3028 | { |
| 3029 | int height = 0; |
| 3030 | |
| 3031 | #ifdef FEAT_MENU |
| 3032 | height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL); |
| 3033 | #endif |
| 3034 | #ifdef FEAT_TOOLBAR |
| 3035 | height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL); |
| 3036 | #endif |
| 3037 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3038 | if (gui.tabline != NULL) |
| 3039 | height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3040 | #endif |
| 3041 | |
| 3042 | return height; |
| 3043 | } |
| 3044 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3045 | // This controls whether we can set the real window hints at |
| 3046 | // start-up when in a GtkPlug. |
| 3047 | // 0 = normal processing (default) |
| 3048 | // 1 = init. hints set, no-one's tried to reset since last check |
| 3049 | // 2 = init. hints set, attempt made to change hints |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3050 | static int init_window_hints_state = 0; |
| 3051 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3052 | static void |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3053 | update_window_manager_hints(int force_width, int force_height) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3054 | { |
| 3055 | static int old_width = 0; |
| 3056 | static int old_height = 0; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3057 | static int old_min_width = 0; |
| 3058 | static int old_min_height = 0; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3059 | static int old_char_width = 0; |
| 3060 | static int old_char_height = 0; |
| 3061 | |
| 3062 | int width; |
| 3063 | int height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3064 | int min_width; |
| 3065 | int min_height; |
| 3066 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3067 | // At start-up, don't try to set the hints until the initial |
| 3068 | // values have been used (those that dictate our initial size) |
| 3069 | // Let forced (i.e., correct) values through always. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3070 | if (!(force_width && force_height) && init_window_hints_state > 0) |
| 3071 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3072 | // Don't do it! |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3073 | init_window_hints_state = 2; |
| 3074 | return; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3075 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3076 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3077 | // This also needs to be done when the main window isn't there yet, |
| 3078 | // otherwise the hints don't work. |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3079 | width = gui_get_base_width(); |
| 3080 | height = gui_get_base_height(); |
| 3081 | # ifdef FEAT_MENU |
| 3082 | height += tabline_height() * gui.char_height; |
| 3083 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3084 | width += get_menu_tool_width(); |
| 3085 | height += get_menu_tool_height(); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3086 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3087 | // GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine |
| 3088 | // their actual widget size. When we set our size ourselves (e.g., |
| 3089 | // 'set columns=' or init. -geom) we briefly set the min. to the size |
| 3090 | // we wish to be instead of the legitimate minimum so that we actually |
| 3091 | // resize correctly. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3092 | if (force_width && force_height) |
| 3093 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3094 | min_width = force_width; |
| 3095 | min_height = force_height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3096 | } |
| 3097 | else |
| 3098 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3099 | min_width = width + MIN_COLUMNS * gui.char_width; |
| 3100 | min_height = height + MIN_LINES * gui.char_height; |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3101 | } |
| 3102 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3103 | // Avoid an expose event when the size didn't change. |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3104 | if (width != old_width |
| 3105 | || height != old_height |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3106 | || min_width != old_min_width |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3107 | || min_height != old_min_height |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3108 | || gui.char_width != old_char_width |
| 3109 | || gui.char_height != old_char_height) |
| 3110 | { |
| 3111 | GdkGeometry geometry; |
| 3112 | GdkWindowHints geometry_mask; |
| 3113 | |
| 3114 | geometry.width_inc = gui.char_width; |
| 3115 | geometry.height_inc = gui.char_height; |
| 3116 | geometry.base_width = width; |
| 3117 | geometry.base_height = height; |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3118 | geometry.min_width = min_width; |
| 3119 | geometry.min_height = min_height; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3120 | geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC |
| 3121 | |GDK_HINT_MIN_SIZE; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3122 | // Using gui.formwin as geometry widget doesn't work as expected |
| 3123 | // with GTK+ 2 -- dunno why. Presumably all the resizing hacks |
| 3124 | // in Vim confuse GTK+. |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3125 | gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin, |
| 3126 | &geometry, geometry_mask); |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3127 | old_width = width; |
| 3128 | old_height = height; |
| 3129 | old_min_width = min_width; |
| 3130 | old_min_height = min_height; |
| 3131 | old_char_width = gui.char_width; |
| 3132 | old_char_height = gui.char_height; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3133 | } |
| 3134 | } |
| 3135 | |
Bram Moolenaar | 50bf7ce | 2019-09-15 13:17:00 +0200 | [diff] [blame] | 3136 | #if defined(FEAT_GUI_DARKTHEME) || defined(PROTO) |
| 3137 | void |
| 3138 | gui_mch_set_dark_theme(int dark) |
| 3139 | { |
| 3140 | # if GTK_CHECK_VERSION(3,0,0) |
| 3141 | GtkSettings *gtk_settings; |
| 3142 | |
| 3143 | gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default()); |
| 3144 | g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL); |
| 3145 | # endif |
| 3146 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3147 | #endif // FEAT_GUI_DARKTHEME |
Bram Moolenaar | 50bf7ce | 2019-09-15 13:17:00 +0200 | [diff] [blame] | 3148 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3149 | #ifdef FEAT_TOOLBAR |
| 3150 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3151 | /* |
| 3152 | * This extra effort wouldn't be necessary if we only used stock icons in the |
| 3153 | * toolbar, as we do for all builtin icons. But user-defined toolbar icons |
| 3154 | * shouldn't be treated differently, thus we do need this. |
| 3155 | */ |
| 3156 | static void |
| 3157 | icon_size_changed_foreach(GtkWidget *widget, gpointer user_data) |
| 3158 | { |
| 3159 | if (GTK_IS_IMAGE(widget)) |
| 3160 | { |
| 3161 | GtkImage *image = (GtkImage *)widget; |
| 3162 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3163 | # if GTK_CHECK_VERSION(3,10,0) |
| 3164 | if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME) |
| 3165 | { |
| 3166 | const GtkIconSize icon_size = GPOINTER_TO_INT(user_data); |
| 3167 | const gchar *icon_name; |
| 3168 | |
| 3169 | gtk_image_get_icon_name(image, &icon_name, NULL); |
Bram Moolenaar | 81a4cf4 | 2020-09-09 19:05:13 +0200 | [diff] [blame] | 3170 | image = (GtkImage *)gtk_image_new_from_icon_name( |
| 3171 | icon_name, icon_size); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3172 | } |
| 3173 | # else |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3174 | // User-defined icons are stored in a GtkIconSet |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3175 | if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET) |
| 3176 | { |
| 3177 | GtkIconSet *icon_set; |
| 3178 | GtkIconSize icon_size; |
| 3179 | |
| 3180 | gtk_image_get_icon_set(image, &icon_set, &icon_size); |
| 3181 | icon_size = (GtkIconSize)(long)user_data; |
| 3182 | |
| 3183 | gtk_icon_set_ref(icon_set); |
| 3184 | gtk_image_set_from_icon_set(image, icon_set, icon_size); |
| 3185 | gtk_icon_set_unref(icon_set); |
| 3186 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3187 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3188 | } |
| 3189 | else if (GTK_IS_CONTAINER(widget)) |
| 3190 | { |
| 3191 | gtk_container_foreach((GtkContainer *)widget, |
| 3192 | &icon_size_changed_foreach, |
| 3193 | user_data); |
| 3194 | } |
| 3195 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3196 | |
| 3197 | static void |
| 3198 | set_toolbar_style(GtkToolbar *toolbar) |
| 3199 | { |
| 3200 | GtkToolbarStyle style; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3201 | GtkIconSize size; |
| 3202 | GtkIconSize oldsize; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3203 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3204 | if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
| 3205 | == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ)) |
| 3206 | style = GTK_TOOLBAR_BOTH_HORIZ; |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3207 | else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3208 | == (TOOLBAR_TEXT | TOOLBAR_ICONS)) |
| 3209 | style = GTK_TOOLBAR_BOTH; |
| 3210 | else if (toolbar_flags & TOOLBAR_TEXT) |
| 3211 | style = GTK_TOOLBAR_TEXT; |
| 3212 | else |
| 3213 | style = GTK_TOOLBAR_ICONS; |
| 3214 | |
| 3215 | gtk_toolbar_set_style(toolbar, style); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3216 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3217 | gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3218 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3219 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3220 | switch (tbis_flags) |
| 3221 | { |
| 3222 | case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break; |
| 3223 | case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break; |
| 3224 | case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break; |
| 3225 | case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break; |
Bram Moolenaar | beb003b | 2016-03-08 22:47:17 +0100 | [diff] [blame] | 3226 | case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break; |
| 3227 | case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3228 | default: size = GTK_ICON_SIZE_INVALID; break; |
| 3229 | } |
| 3230 | oldsize = gtk_toolbar_get_icon_size(toolbar); |
| 3231 | |
| 3232 | if (size == GTK_ICON_SIZE_INVALID) |
| 3233 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3234 | // Let global user preferences decide the icon size. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3235 | gtk_toolbar_unset_icon_size(toolbar); |
| 3236 | size = gtk_toolbar_get_icon_size(toolbar); |
| 3237 | } |
| 3238 | if (size != oldsize) |
| 3239 | { |
| 3240 | gtk_container_foreach(GTK_CONTAINER(toolbar), |
| 3241 | &icon_size_changed_foreach, |
| 3242 | GINT_TO_POINTER((int)size)); |
| 3243 | } |
| 3244 | gtk_toolbar_set_icon_size(toolbar, size); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3245 | } |
| 3246 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3247 | #endif // FEAT_TOOLBAR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3248 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3249 | #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
| 3250 | static int ignore_tabline_evt = FALSE; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3251 | static GtkWidget *tabline_menu; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3252 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3253 | static GtkTooltips *tabline_tooltip; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3254 | # endif |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3255 | static int clicked_page; // page clicked in tab line |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3256 | |
| 3257 | /* |
| 3258 | * Handle selecting an item in the tab line popup menu. |
| 3259 | */ |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3260 | static void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3261 | tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data) |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3262 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3263 | // Add the string cmd into input buffer |
Bram Moolenaar | c6fe919 | 2006-04-09 21:54:49 +0000 | [diff] [blame] | 3264 | send_tabline_menu_event(clicked_page, (int)(long)user_data); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3265 | } |
| 3266 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3267 | static void |
| 3268 | add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp) |
| 3269 | { |
| 3270 | GtkWidget *item; |
| 3271 | char_u *utf_text; |
| 3272 | |
| 3273 | utf_text = CONVERT_TO_UTF8(text); |
| 3274 | item = gtk_menu_item_new_with_label((const char *)utf_text); |
| 3275 | gtk_widget_show(item); |
| 3276 | CONVERT_TO_UTF8_FREE(utf_text); |
| 3277 | |
| 3278 | gtk_container_add(GTK_CONTAINER(menu), item); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3279 | g_signal_connect(G_OBJECT(item), "activate", |
| 3280 | G_CALLBACK(tabline_menu_handler), |
| 3281 | GINT_TO_POINTER(resp)); |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3282 | } |
| 3283 | |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3284 | /* |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3285 | * Create a menu for the tab line. |
| 3286 | */ |
| 3287 | static GtkWidget * |
| 3288 | create_tabline_menu(void) |
| 3289 | { |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3290 | GtkWidget *menu; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3291 | |
| 3292 | menu = gtk_menu_new(); |
Bram Moolenaar | 2954719 | 2018-12-11 20:39:19 +0100 | [diff] [blame] | 3293 | add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE); |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3294 | add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW); |
| 3295 | add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3296 | |
| 3297 | return menu; |
| 3298 | } |
| 3299 | |
| 3300 | static gboolean |
| 3301 | on_tabline_menu(GtkWidget *widget, GdkEvent *event) |
| 3302 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3303 | // Was this button press event ? |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3304 | if (event->type == GDK_BUTTON_PRESS) |
| 3305 | { |
| 3306 | GdkEventButton *bevent = (GdkEventButton *)event; |
| 3307 | int x = bevent->x; |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3308 | int y = bevent->y; |
| 3309 | GtkWidget *tabwidget; |
| 3310 | GdkWindow *tabwin; |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3311 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3312 | // When ignoring events return TRUE so that the selected page doesn't |
| 3313 | // change. |
Martin Tournoij | 7904fa4 | 2022-10-04 16:28:45 +0100 | [diff] [blame] | 3314 | if (hold_gui_events || cmdwin_type != 0) |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 3315 | return TRUE; |
| 3316 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3317 | tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3318 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3319 | gdk_window_get_user_data(tabwin, (gpointer)&tabwidget); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3320 | clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget), |
| 3321 | "tab_num")); |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3322 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3323 | // If the event was generated for 3rd button popup the menu. |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3324 | if (bevent->button == 3) |
| 3325 | { |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 3326 | # if GTK_CHECK_VERSION(3,22,2) |
| 3327 | gtk_menu_popup_at_pointer(GTK_MENU(widget), event); |
| 3328 | # else |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3329 | gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL, |
| 3330 | bevent->button, bevent->time); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 3331 | # endif |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3332 | // We handled the event. |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3333 | return TRUE; |
| 3334 | } |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3335 | else if (bevent->button == 1) |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3336 | { |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3337 | if (clicked_page == 0) |
| 3338 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3339 | // Click after all tabs moves to next tab page. When "x" is |
| 3340 | // small guess it's the left button. |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 3341 | send_tabline_event(x < 50 ? -1 : 0); |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3342 | } |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3343 | } |
regomne | 3bdef10 | 2022-09-26 20:48:32 +0100 | [diff] [blame] | 3344 | else if (bevent->button == 2) |
| 3345 | { |
| 3346 | if (clicked_page != 0) |
| 3347 | // Middle mouse click on tabpage label closes that tab. |
| 3348 | send_tabline_menu_event(clicked_page, TABLINE_MENU_CLOSE); |
| 3349 | } |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3350 | } |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 3351 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3352 | // We didn't handle the event. |
Bram Moolenaar | a562149 | 2006-02-25 21:55:24 +0000 | [diff] [blame] | 3353 | return FALSE; |
| 3354 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3355 | |
| 3356 | /* |
| 3357 | * Handle selecting one of the tabs. |
| 3358 | */ |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3359 | static void |
| 3360 | on_select_tab( |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3361 | GtkNotebook *notebook UNUSED, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3362 | gpointer *page UNUSED, |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 3363 | gint idx, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 3364 | gpointer data UNUSED) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3365 | { |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3366 | if (!ignore_tabline_evt) |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 3367 | send_tabline_event(idx + 1); |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3368 | } |
| 3369 | |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3370 | # if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3371 | /* |
| 3372 | * Handle reordering the tabs (using D&D). |
| 3373 | */ |
| 3374 | static void |
| 3375 | on_tab_reordered( |
| 3376 | GtkNotebook *notebook UNUSED, |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3377 | gpointer *page UNUSED, |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3378 | gint idx, |
| 3379 | gpointer data UNUSED) |
| 3380 | { |
| 3381 | if (!ignore_tabline_evt) |
| 3382 | { |
| 3383 | if ((tabpage_index(curtab) - 1) < idx) |
| 3384 | tabpage_move(idx + 1); |
| 3385 | else |
| 3386 | tabpage_move(idx); |
Bram Moolenaar | eddf53b | 2006-02-27 00:11:10 +0000 | [diff] [blame] | 3387 | } |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3388 | } |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3389 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3390 | |
| 3391 | /* |
| 3392 | * Show or hide the tabline. |
| 3393 | */ |
| 3394 | void |
| 3395 | gui_mch_show_tabline(int showit) |
| 3396 | { |
| 3397 | if (gui.tabline == NULL) |
| 3398 | return; |
| 3399 | |
| 3400 | if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline))) |
| 3401 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3402 | // Note: this may cause a resize event |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3403 | gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3404 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3405 | if (showit) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3406 | gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3407 | } |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3408 | |
| 3409 | gui_mch_update(); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3410 | } |
| 3411 | |
| 3412 | /* |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 3413 | * Return TRUE when tabline is displayed. |
| 3414 | */ |
| 3415 | int |
| 3416 | gui_mch_showing_tabline(void) |
| 3417 | { |
| 3418 | return gui.tabline != NULL |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3419 | && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)); |
Bram Moolenaar | 3517bb1 | 2006-03-03 22:58:45 +0000 | [diff] [blame] | 3420 | } |
| 3421 | |
| 3422 | /* |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3423 | * Update the labels of the tabline. |
| 3424 | */ |
| 3425 | void |
| 3426 | gui_mch_update_tabline(void) |
| 3427 | { |
| 3428 | GtkWidget *page; |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3429 | GtkWidget *event_box; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3430 | GtkWidget *label; |
| 3431 | tabpage_T *tp; |
| 3432 | int nr = 0; |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3433 | int tab_num; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3434 | int curtabidx = 0; |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3435 | char_u *labeltext; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3436 | |
| 3437 | if (gui.tabline == NULL) |
| 3438 | return; |
| 3439 | |
| 3440 | ignore_tabline_evt = TRUE; |
| 3441 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3442 | // Add a label for each tab page. They all contain the same text area. |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3443 | for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) |
| 3444 | { |
| 3445 | if (tp == curtab) |
| 3446 | curtabidx = nr; |
| 3447 | |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3448 | tab_num = nr + 1; |
| 3449 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3450 | page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr); |
| 3451 | if (page == NULL) |
| 3452 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3453 | // Add notebook page |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3454 | # if GTK_CHECK_VERSION(3,2,0) |
| 3455 | page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
| 3456 | gtk_box_set_homogeneous(GTK_BOX(page), FALSE); |
| 3457 | # else |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3458 | page = gtk_vbox_new(FALSE, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3459 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3460 | gtk_widget_show(page); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3461 | event_box = gtk_event_box_new(); |
| 3462 | gtk_widget_show(event_box); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3463 | label = gtk_label_new("-Empty-"); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3464 | # if !GTK_CHECK_VERSION(3,14,0) |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3465 | gtk_misc_set_padding(GTK_MISC(label), 2, 2); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3466 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3467 | gtk_container_add(GTK_CONTAINER(event_box), label); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3468 | gtk_widget_show(label); |
| 3469 | gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline), |
| 3470 | page, |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3471 | event_box, |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3472 | nr++); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3473 | # if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3474 | gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), |
| 3475 | page, |
| 3476 | TRUE); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3477 | # endif |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3478 | } |
| 3479 | |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3480 | event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3481 | g_object_set_data(G_OBJECT(event_box), "tab_num", |
| 3482 | GINT_TO_POINTER(tab_num)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3483 | label = gtk_bin_get_child(GTK_BIN(event_box)); |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 3484 | get_tabline_label(tp, FALSE); |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3485 | labeltext = CONVERT_TO_UTF8(NameBuff); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3486 | gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext); |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 3487 | CONVERT_TO_UTF8_FREE(labeltext); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3488 | |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3489 | get_tabline_label(tp, TRUE); |
| 3490 | labeltext = CONVERT_TO_UTF8(NameBuff); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3491 | # if GTK_CHECK_VERSION(3,0,0) |
| 3492 | gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext); |
| 3493 | # else |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3494 | gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box, |
| 3495 | (const char *)labeltext, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3496 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3497 | CONVERT_TO_UTF8_FREE(labeltext); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3498 | } |
| 3499 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3500 | // Remove any old labels. |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3501 | while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL) |
| 3502 | gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr); |
| 3503 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3504 | if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx) |
| 3505 | gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3506 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3507 | // Make sure everything is in place before drawing text. |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3508 | gui_mch_update(); |
| 3509 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3510 | ignore_tabline_evt = FALSE; |
| 3511 | } |
| 3512 | |
| 3513 | /* |
| 3514 | * Set the current tab to "nr". First tab is 1. |
| 3515 | */ |
| 3516 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 3517 | gui_mch_set_curtab(int nr) |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3518 | { |
| 3519 | if (gui.tabline == NULL) |
| 3520 | return; |
| 3521 | |
| 3522 | ignore_tabline_evt = TRUE; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3523 | if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1) |
| 3524 | gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1); |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3525 | ignore_tabline_evt = FALSE; |
| 3526 | } |
| 3527 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3528 | #endif // FEAT_GUI_TABLINE |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3529 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3530 | /* |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3531 | * Add selection targets for PRIMARY and CLIPBOARD selections. |
| 3532 | */ |
| 3533 | void |
| 3534 | gui_gtk_set_selection_targets(void) |
| 3535 | { |
| 3536 | int i, j = 0; |
| 3537 | int n_targets = N_SELECTION_TARGETS; |
| 3538 | GtkTargetEntry targets[N_SELECTION_TARGETS]; |
| 3539 | |
| 3540 | for (i = 0; i < (int)N_SELECTION_TARGETS; ++i) |
| 3541 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3542 | // OpenOffice tries to use TARGET_HTML and fails when we don't |
| 3543 | // return something, instead of trying another target. Therefore only |
| 3544 | // offer TARGET_HTML when it works. |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3545 | if (!clip_html && selection_targets[i].info == TARGET_HTML) |
| 3546 | n_targets--; |
| 3547 | else |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3548 | targets[j++] = selection_targets[i]; |
| 3549 | } |
| 3550 | |
| 3551 | gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY); |
| 3552 | gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom); |
| 3553 | gtk_selection_add_targets(gui.drawarea, |
| 3554 | (GdkAtom)GDK_SELECTION_PRIMARY, |
| 3555 | targets, n_targets); |
| 3556 | gtk_selection_add_targets(gui.drawarea, |
| 3557 | (GdkAtom)clip_plus.gtk_sel_atom, |
| 3558 | targets, n_targets); |
| 3559 | } |
| 3560 | |
| 3561 | /* |
| 3562 | * Set up for receiving DND items. |
| 3563 | */ |
| 3564 | void |
| 3565 | gui_gtk_set_dnd_targets(void) |
| 3566 | { |
| 3567 | int i, j = 0; |
| 3568 | int n_targets = N_DND_TARGETS; |
| 3569 | GtkTargetEntry targets[N_DND_TARGETS]; |
| 3570 | |
| 3571 | for (i = 0; i < (int)N_DND_TARGETS; ++i) |
| 3572 | { |
Bram Moolenaar | b931d74 | 2011-10-26 11:36:25 +0200 | [diff] [blame] | 3573 | if (!clip_html && dnd_targets[i].info == TARGET_HTML) |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3574 | n_targets--; |
| 3575 | else |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3576 | targets[j++] = dnd_targets[i]; |
| 3577 | } |
| 3578 | |
| 3579 | gtk_drag_dest_unset(gui.drawarea); |
| 3580 | gtk_drag_dest_set(gui.drawarea, |
| 3581 | GTK_DEST_DEFAULT_ALL, |
| 3582 | targets, n_targets, |
Bram Moolenaar | ba7cc9f | 2011-02-25 17:10:27 +0100 | [diff] [blame] | 3583 | GDK_ACTION_COPY | GDK_ACTION_MOVE); |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 3584 | } |
| 3585 | |
| 3586 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3587 | * Initialize the GUI. Create all the windows, set up all the callbacks etc. |
| 3588 | * Returns OK for success, FAIL when the GUI can't be started. |
| 3589 | */ |
| 3590 | int |
| 3591 | gui_mch_init(void) |
| 3592 | { |
| 3593 | GtkWidget *vbox; |
| 3594 | |
| 3595 | #ifdef FEAT_GUI_GNOME |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3596 | // Initialize the GNOME libraries. gnome_program_init()/gnome_init() |
| 3597 | // exits on failure, but that's a non-issue because we already called |
| 3598 | // gtk_init_check() in gui_mch_init_check(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3599 | if (using_gnome) |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3600 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3601 | gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT, |
| 3602 | LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL); |
Bram Moolenaar | 73e28dc | 2022-09-17 21:08:33 +0100 | [diff] [blame] | 3603 | # if defined(LC_NUMERIC) |
Bram Moolenaar | 1ff32c5 | 2014-04-29 15:11:43 +0200 | [diff] [blame] | 3604 | { |
| 3605 | char *p = setlocale(LC_NUMERIC, NULL); |
| 3606 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3607 | // Make sure strtod() uses a decimal point, not a comma. Gnome |
| 3608 | // init may change it. |
Bram Moolenaar | 1ff32c5 | 2014-04-29 15:11:43 +0200 | [diff] [blame] | 3609 | if (p == NULL || strcmp(p, "C") != 0) |
| 3610 | setlocale(LC_NUMERIC, "C"); |
| 3611 | } |
Bram Moolenaar | 3be71ce | 2013-01-23 16:00:11 +0100 | [diff] [blame] | 3612 | # endif |
| 3613 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3614 | #endif |
Bram Moolenaar | d23a823 | 2018-02-10 18:45:26 +0100 | [diff] [blame] | 3615 | VIM_CLEAR(gui_argv); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3616 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3617 | #if GLIB_CHECK_VERSION(2,1,3) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3618 | // Set the human-readable application name |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3619 | g_set_application_name("Vim"); |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3620 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3621 | /* |
| 3622 | * Force UTF-8 output no matter what the value of 'encoding' is. |
| 3623 | * did_set_string_option() in option.c prohibits changing 'termencoding' |
| 3624 | * to something else than UTF-8 if the GUI is in use. |
| 3625 | */ |
Bram Moolenaar | 31e5c60 | 2022-04-15 13:53:33 +0100 | [diff] [blame] | 3626 | set_option_value_give_err((char_u *)"termencoding", |
| 3627 | 0L, (char_u *)"utf-8", 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3628 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3629 | #ifdef FEAT_TOOLBAR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3630 | gui_gtk_register_stock_icons(); |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3631 | #endif |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3632 | // FIXME: Need to install the classic icons and a gtkrc.classic file. |
| 3633 | // The hard part is deciding install locations and the Makefile magic. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3634 | #if !GTK_CHECK_VERSION(3,0,0) |
| 3635 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3636 | gtk_rc_parse("gtkrc"); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3637 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3638 | #endif |
| 3639 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3640 | // Initialize values |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3641 | gui.border_width = 2; |
| 3642 | gui.scrollbar_width = SB_DEFAULT_WIDTH; |
| 3643 | gui.scrollbar_height = SB_DEFAULT_WIDTH; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 3644 | #if GTK_CHECK_VERSION(3,0,0) |
| 3645 | gui.fgcolor = g_new(GdkRGBA, 1); |
| 3646 | gui.bgcolor = g_new(GdkRGBA, 1); |
| 3647 | gui.spcolor = g_new(GdkRGBA, 1); |
| 3648 | #else |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3649 | // LINTED: avoid warning: conversion to 'unsigned long' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3650 | gui.fgcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3651 | // LINTED: avoid warning: conversion to 'unsigned long' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3652 | gui.bgcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3653 | // LINTED: avoid warning: conversion to 'unsigned long' |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 3654 | gui.spcolor = g_new0(GdkColor, 1); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 3655 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3656 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3657 | // Initialise atoms |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 3658 | html_atom = gdk_atom_intern("text/html", FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3659 | utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3660 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3661 | // Set default foreground and background colors. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3662 | gui.norm_pixel = gui.def_norm_pixel; |
| 3663 | gui.back_pixel = gui.def_back_pixel; |
| 3664 | |
| 3665 | if (gtk_socket_id != 0) |
| 3666 | { |
| 3667 | GtkWidget *plug; |
| 3668 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3669 | // Use GtkSocket from another app. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3670 | plug = gtk_plug_new_for_display(gdk_display_get_default(), |
| 3671 | gtk_socket_id); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3672 | if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3673 | { |
| 3674 | gui.mainwin = plug; |
| 3675 | } |
| 3676 | else |
| 3677 | { |
| 3678 | g_warning("Connection to GTK+ socket (ID %u) failed", |
| 3679 | (unsigned int)gtk_socket_id); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3680 | // Pretend we never wanted it if it failed (get own window) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3681 | gtk_socket_id = 0; |
| 3682 | } |
| 3683 | } |
| 3684 | |
| 3685 | if (gtk_socket_id == 0) |
| 3686 | { |
| 3687 | #ifdef FEAT_GUI_GNOME |
| 3688 | if (using_gnome) |
| 3689 | { |
| 3690 | gui.mainwin = gnome_app_new("Vim", NULL); |
| 3691 | # ifdef USE_XSMP |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3692 | // Use the GNOME save-yourself functionality now. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3693 | xsmp_close(); |
| 3694 | # endif |
| 3695 | } |
| 3696 | else |
| 3697 | #endif |
| 3698 | gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
| 3699 | } |
| 3700 | |
| 3701 | gtk_widget_set_name(gui.mainwin, "vim-main-window"); |
| 3702 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3703 | // Create the PangoContext used for drawing all text. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3704 | gui.text_context = gtk_widget_create_pango_context(gui.mainwin); |
| 3705 | pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3706 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3707 | gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3708 | gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK); |
| 3709 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3710 | g_signal_connect(G_OBJECT(gui.mainwin), "delete-event", |
| 3711 | G_CALLBACK(&delete_event_cb), NULL); |
| 3712 | |
| 3713 | g_signal_connect(G_OBJECT(gui.mainwin), "realize", |
| 3714 | G_CALLBACK(&mainwin_realize), NULL); |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 3715 | |
| 3716 | g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3717 | G_CALLBACK(&mainwin_screen_changed_cb), NULL); |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 3718 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3719 | gui.accel_group = gtk_accel_group_new(); |
| 3720 | gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3721 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3722 | // A vertical box holds the menubar, toolbar and main text window. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3723 | #if GTK_CHECK_VERSION(3,2,0) |
| 3724 | vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
| 3725 | gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE); |
| 3726 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3727 | vbox = gtk_vbox_new(FALSE, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3728 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3729 | |
| 3730 | #ifdef FEAT_GUI_GNOME |
| 3731 | if (using_gnome) |
| 3732 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 3733 | # if defined(FEAT_MENU) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3734 | // automagically restore menubar/toolbar placement |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3735 | gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE); |
| 3736 | # endif |
| 3737 | gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox); |
| 3738 | } |
| 3739 | else |
| 3740 | #endif |
| 3741 | { |
| 3742 | gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox); |
| 3743 | gtk_widget_show(vbox); |
| 3744 | } |
| 3745 | |
| 3746 | #ifdef FEAT_MENU |
| 3747 | /* |
| 3748 | * Create the menubar and handle |
| 3749 | */ |
| 3750 | gui.menubar = gtk_menu_bar_new(); |
| 3751 | gtk_widget_set_name(gui.menubar, "vim-menubar"); |
| 3752 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3753 | // Avoid that GTK takes <F10> away from us. |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3754 | { |
| 3755 | GtkSettings *gtk_settings; |
| 3756 | |
| 3757 | gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default()); |
| 3758 | g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL); |
| 3759 | } |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3760 | |
| 3761 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3762 | # ifdef FEAT_GUI_GNOME |
| 3763 | if (using_gnome) |
| 3764 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3765 | BonoboDockItem *dockitem; |
| 3766 | |
| 3767 | gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar)); |
| 3768 | dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), |
| 3769 | GNOME_APP_MENUBAR_NAME); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3770 | // We don't want the menu to float. |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 3771 | bonobo_dock_item_set_behavior(dockitem, |
| 3772 | bonobo_dock_item_get_behavior(dockitem) |
| 3773 | | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3774 | gui.menubar_h = GTK_WIDGET(dockitem); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3775 | } |
| 3776 | else |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3777 | # endif // FEAT_GUI_GNOME |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3778 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3779 | // Always show the menubar, otherwise <F10> doesn't work. It may be |
| 3780 | // disabled in gui_init() later. |
Bram Moolenaar | 18144c8 | 2006-04-12 21:52:12 +0000 | [diff] [blame] | 3781 | gtk_widget_show(gui.menubar); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3782 | gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0); |
| 3783 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3784 | #endif // FEAT_MENU |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3785 | |
| 3786 | #ifdef FEAT_TOOLBAR |
| 3787 | /* |
| 3788 | * Create the toolbar and handle |
| 3789 | */ |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3790 | // some aesthetics on the toolbar |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3791 | # ifdef USE_GTK3 |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3792 | // TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. |
| 3793 | // N.B. Since the default value of GtkToolbar::button-relief is |
| 3794 | // GTK_RELIEF_NONE, there's no need to specify that, probably. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3795 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3796 | gtk_rc_parse_string( |
| 3797 | "style \"vim-toolbar-style\" {\n" |
| 3798 | " GtkToolbar::button_relief = GTK_RELIEF_NONE\n" |
| 3799 | "}\n" |
| 3800 | "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n"); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3801 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3802 | gui.toolbar = gtk_toolbar_new(); |
| 3803 | gtk_widget_set_name(gui.toolbar, "vim-toolbar"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3804 | set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); |
| 3805 | |
| 3806 | # ifdef FEAT_GUI_GNOME |
| 3807 | if (using_gnome) |
| 3808 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3809 | BonoboDockItem *dockitem; |
| 3810 | |
| 3811 | gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar)); |
| 3812 | dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin), |
| 3813 | GNOME_APP_TOOLBAR_NAME); |
| 3814 | gui.toolbar_h = GTK_WIDGET(dockitem); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3815 | // When the toolbar is floating it gets stuck. So long as that isn't |
| 3816 | // fixed let's disallow floating. |
Bram Moolenaar | e580b0c | 2006-03-21 21:33:03 +0000 | [diff] [blame] | 3817 | bonobo_dock_item_set_behavior(dockitem, |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 3818 | bonobo_dock_item_get_behavior(dockitem) |
| 3819 | | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3820 | gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3821 | } |
| 3822 | else |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3823 | # endif // FEAT_GUI_GNOME |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3824 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3825 | if (vim_strchr(p_go, GO_TOOLBAR) != NULL |
| 3826 | && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) |
| 3827 | gtk_widget_show(gui.toolbar); |
| 3828 | gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0); |
| 3829 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3830 | #endif // FEAT_TOOLBAR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3831 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3832 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3833 | /* |
| 3834 | * Use a Notebook for the tab pages labels. The labels are hidden by |
| 3835 | * default. |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3836 | */ |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3837 | gui.tabline = gtk_notebook_new(); |
| 3838 | gtk_widget_show(gui.tabline); |
| 3839 | gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0); |
| 3840 | gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE); |
| 3841 | gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE); |
Bram Moolenaar | 4a85b41 | 2006-04-23 22:40:29 +0000 | [diff] [blame] | 3842 | gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3843 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 9635157 | 2006-05-05 21:16:59 +0000 | [diff] [blame] | 3844 | gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3845 | # endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3846 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3847 | # if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3848 | tabline_tooltip = gtk_tooltips_new(); |
| 3849 | gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3850 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3851 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3852 | { |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3853 | GtkWidget *page, *label, *event_box; |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3854 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3855 | // Add the first tab. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3856 | # if GTK_CHECK_VERSION(3,2,0) |
| 3857 | page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |
| 3858 | gtk_box_set_homogeneous(GTK_BOX(page), FALSE); |
| 3859 | # else |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3860 | page = gtk_vbox_new(FALSE, 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3861 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3862 | gtk_widget_show(page); |
| 3863 | gtk_container_add(GTK_CONTAINER(gui.tabline), page); |
| 3864 | label = gtk_label_new("-Empty-"); |
| 3865 | gtk_widget_show(label); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3866 | event_box = gtk_event_box_new(); |
| 3867 | gtk_widget_show(event_box); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3868 | g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3869 | # if !GTK_CHECK_VERSION(3,14,0) |
Bram Moolenaar | 8ea9123 | 2006-04-28 22:41:43 +0000 | [diff] [blame] | 3870 | gtk_misc_set_padding(GTK_MISC(label), 2, 2); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3871 | # endif |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3872 | gtk_container_add(GTK_CONTAINER(event_box), label); |
Bram Moolenaar | 437df8f | 2006-04-27 21:47:44 +0000 | [diff] [blame] | 3873 | gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3874 | # if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3875 | gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3876 | # endif |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 3877 | } |
Bram Moolenaar | 54a709e | 2006-05-04 21:57:11 +0000 | [diff] [blame] | 3878 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3879 | g_signal_connect(G_OBJECT(gui.tabline), "switch-page", |
| 3880 | G_CALLBACK(on_select_tab), NULL); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3881 | # if GTK_CHECK_VERSION(2,10,0) |
Bram Moolenaar | ca05aa2 | 2017-10-22 15:36:14 +0200 | [diff] [blame] | 3882 | g_signal_connect(G_OBJECT(gui.tabline), "page-reordered", |
| 3883 | G_CALLBACK(on_tab_reordered), NULL); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 3884 | # endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3885 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3886 | // Create a popup menu for the tab line and connect it. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 3887 | tabline_menu = create_tabline_menu(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3888 | g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event", |
| 3889 | G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu)); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3890 | #endif // FEAT_GUI_TABLINE |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3891 | |
Bram Moolenaar | 8a99e66 | 2020-10-21 16:10:21 +0200 | [diff] [blame] | 3892 | gui.formwin = gui_gtk_form_new(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3893 | gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3894 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3895 | gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3896 | #endif |
Bram Moolenaar | 023fd5d | 2020-12-08 20:31:16 +0100 | [diff] [blame] | 3897 | #if GTK_CHECK_VERSION(3,22,2) |
| 3898 | gtk_widget_set_name(gui.formwin, "vim-gtk-form"); |
| 3899 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3900 | |
| 3901 | gui.drawarea = gtk_drawing_area_new(); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3902 | #if GTK_CHECK_VERSION(3,0,0) |
| 3903 | gui.surface = NULL; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3904 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3905 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3906 | // Determine which events we will filter. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3907 | gtk_widget_set_events(gui.drawarea, |
| 3908 | GDK_EXPOSURE_MASK | |
| 3909 | GDK_ENTER_NOTIFY_MASK | |
| 3910 | GDK_LEAVE_NOTIFY_MASK | |
| 3911 | GDK_BUTTON_PRESS_MASK | |
| 3912 | GDK_BUTTON_RELEASE_MASK | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3913 | GDK_SCROLL_MASK | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3914 | GDK_KEY_PRESS_MASK | |
| 3915 | GDK_KEY_RELEASE_MASK | |
| 3916 | GDK_POINTER_MOTION_MASK | |
| 3917 | GDK_POINTER_MOTION_HINT_MASK); |
| 3918 | |
| 3919 | gtk_widget_show(gui.drawarea); |
Bram Moolenaar | 8a99e66 | 2020-10-21 16:10:21 +0200 | [diff] [blame] | 3920 | gui_gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3921 | gtk_widget_show(gui.formwin); |
| 3922 | gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0); |
| 3923 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3924 | // For GtkSockets, key-presses must go to the focus widget (drawarea) |
| 3925 | // and not the window. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3926 | g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) |
| 3927 | : G_OBJECT(gui.drawarea), |
| 3928 | "key-press-event", |
| 3929 | G_CALLBACK(key_press_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3930 | #if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3931 | // Also forward key release events for the benefit of GTK+ 2 input |
| 3932 | // modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3933 | g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin) |
| 3934 | : G_OBJECT(gui.drawarea), |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3935 | "key-release-event", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3936 | G_CALLBACK(&key_release_event), NULL); |
| 3937 | #endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3938 | g_signal_connect(G_OBJECT(gui.drawarea), "realize", |
| 3939 | G_CALLBACK(drawarea_realize_cb), NULL); |
| 3940 | g_signal_connect(G_OBJECT(gui.drawarea), "unrealize", |
| 3941 | G_CALLBACK(drawarea_unrealize_cb), NULL); |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 3942 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3943 | g_signal_connect(G_OBJECT(gui.drawarea), "configure-event", |
| 3944 | G_CALLBACK(drawarea_configure_event_cb), NULL); |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 3945 | #endif |
| 3946 | #if GTK_CHECK_VERSION(3,22,2) |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 3947 | g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated", |
| 3948 | G_CALLBACK(&drawarea_style_updated_cb), NULL); |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 3949 | #else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3950 | g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set", |
| 3951 | G_CALLBACK(&drawarea_style_set_cb), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3952 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3953 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3954 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3955 | gui.visibility = GDK_VISIBILITY_UNOBSCURED; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3956 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3957 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 3958 | #if !defined(USE_GNOME_SESSION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3959 | wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE); |
| 3960 | save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE); |
| 3961 | #endif |
| 3962 | |
| 3963 | if (gtk_socket_id != 0) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 3964 | // make sure keyboard input can go to the drawarea |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3965 | gtk_widget_set_can_focus(gui.drawarea, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3966 | |
| 3967 | /* |
| 3968 | * Set clipboard specific atoms |
| 3969 | */ |
| 3970 | vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3971 | vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3972 | clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY; |
| 3973 | clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE); |
| 3974 | |
| 3975 | /* |
| 3976 | * Start out by adding the configured border width into the border offset. |
| 3977 | */ |
| 3978 | gui.border_offset = gui.border_width; |
| 3979 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3980 | #if GTK_CHECK_VERSION(3,0,0) |
| 3981 | g_signal_connect(G_OBJECT(gui.drawarea), "draw", |
| 3982 | G_CALLBACK(draw_event), NULL); |
| 3983 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3984 | gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event", |
| 3985 | GTK_SIGNAL_FUNC(visibility_event), NULL); |
| 3986 | gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event", |
| 3987 | GTK_SIGNAL_FUNC(expose_event), NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3988 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3989 | |
| 3990 | /* |
| 3991 | * Only install these enter/leave callbacks when 'p' in 'guioptions'. |
| 3992 | * Only needed for some window managers. |
| 3993 | */ |
| 3994 | if (vim_strchr(p_go, GO_POINTER) != NULL) |
| 3995 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 3996 | g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event", |
| 3997 | G_CALLBACK(leave_notify_event), NULL); |
| 3998 | g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event", |
| 3999 | G_CALLBACK(enter_notify_event), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4000 | } |
| 4001 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4002 | // Real windows can get focus ... GtkPlug, being a mere container can't, |
| 4003 | // only its widgets. Arguably, this could be common code and we not use |
| 4004 | // the window focus at all, but let's be safe. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4005 | if (gtk_socket_id == 0) |
| 4006 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4007 | g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event", |
| 4008 | G_CALLBACK(focus_out_event), NULL); |
| 4009 | g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event", |
| 4010 | G_CALLBACK(focus_in_event), NULL); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4011 | } |
| 4012 | else |
| 4013 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4014 | g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event", |
| 4015 | G_CALLBACK(focus_out_event), NULL); |
| 4016 | g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event", |
| 4017 | G_CALLBACK(focus_in_event), NULL); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4018 | #ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4019 | g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event", |
| 4020 | G_CALLBACK(focus_out_event), NULL); |
| 4021 | g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event", |
| 4022 | G_CALLBACK(focus_in_event), NULL); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4023 | #endif // FEAT_GUI_TABLINE |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4024 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4025 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4026 | g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event", |
| 4027 | G_CALLBACK(motion_notify_event), NULL); |
| 4028 | g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event", |
| 4029 | G_CALLBACK(button_press_event), NULL); |
| 4030 | g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event", |
| 4031 | G_CALLBACK(button_release_event), NULL); |
| 4032 | g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event", |
| 4033 | G_CALLBACK(&scroll_event), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4034 | |
| 4035 | /* |
| 4036 | * Add selection handler functions. |
| 4037 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4038 | g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event", |
| 4039 | G_CALLBACK(selection_clear_event), NULL); |
| 4040 | g_signal_connect(G_OBJECT(gui.drawarea), "selection-received", |
| 4041 | G_CALLBACK(selection_received_cb), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4042 | |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 4043 | gui_gtk_set_selection_targets(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4044 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4045 | g_signal_connect(G_OBJECT(gui.drawarea), "selection-get", |
| 4046 | G_CALLBACK(selection_get_cb), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4047 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4048 | // Pretend we don't have input focus, we will get an event if we do. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4049 | gui.in_focus = FALSE; |
| 4050 | |
Bram Moolenaar | 7ebf4e1 | 2018-08-07 20:01:40 +0200 | [diff] [blame] | 4051 | // Handle changes to the "Xft/DPI" setting. |
| 4052 | { |
| 4053 | GtkSettings *gtk_settings = |
| 4054 | gtk_settings_get_for_screen(gdk_screen_get_default()); |
| 4055 | |
| 4056 | g_signal_connect(gtk_settings, "notify::gtk-xft-dpi", |
| 4057 | G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL); |
| 4058 | } |
| 4059 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4060 | return OK; |
| 4061 | } |
| 4062 | |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 4063 | #if defined(USE_GNOME_SESSION) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4064 | /* |
| 4065 | * This is called from gui_start() after a fork() has been done. |
| 4066 | * We have to tell the session manager our new PID. |
| 4067 | */ |
| 4068 | void |
| 4069 | gui_mch_forked(void) |
| 4070 | { |
| 4071 | if (using_gnome) |
| 4072 | { |
| 4073 | GnomeClient *client; |
| 4074 | |
| 4075 | client = gnome_master_client(); |
| 4076 | |
| 4077 | if (client != NULL) |
| 4078 | gnome_client_set_process_id(client, getpid()); |
| 4079 | } |
| 4080 | } |
Bram Moolenaar | f96ae0b | 2019-07-28 15:21:55 +0200 | [diff] [blame] | 4081 | #endif // USE_GNOME_SESSION |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4082 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4083 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4084 | static GdkRGBA |
| 4085 | color_to_rgba(guicolor_T color) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4086 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4087 | GdkRGBA rgba; |
| 4088 | rgba.red = ((color & 0xff0000) >> 16) / 255.0; |
| 4089 | rgba.green = ((color & 0xff00) >> 8) / 255.0; |
| 4090 | rgba.blue = ((color & 0xff)) / 255.0; |
| 4091 | rgba.alpha = 1.0; |
| 4092 | return rgba; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4093 | } |
| 4094 | |
| 4095 | static void |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4096 | set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4097 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4098 | const GdkRGBA rgba = color_to_rgba(color); |
| 4099 | cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4100 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4101 | #endif // GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4102 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4103 | /* |
| 4104 | * Called when the foreground or background color has been changed. |
| 4105 | * This used to change the graphics contexts directly but we are |
| 4106 | * currently manipulating them where desired. |
| 4107 | */ |
| 4108 | void |
| 4109 | gui_mch_new_colors(void) |
| 4110 | { |
Bram Moolenaar | 7988a6f | 2020-12-09 15:53:27 +0100 | [diff] [blame] | 4111 | if (gui.drawarea != NULL |
| 4112 | #if GTK_CHECK_VERSION(3,22,2) |
| 4113 | && gui.formwin != NULL |
| 4114 | #endif |
| 4115 | && gtk_widget_get_window(gui.drawarea) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4116 | { |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 4117 | #if !GTK_CHECK_VERSION(3,22,2) |
Bram Moolenaar | 7988a6f | 2020-12-09 15:53:27 +0100 | [diff] [blame] | 4118 | GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea); |
Bram Moolenaar | 664323e | 2018-09-18 22:30:07 +0200 | [diff] [blame] | 4119 | #endif |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 4120 | #if GTK_CHECK_VERSION(3,22,2) |
Bram Moolenaar | 7988a6f | 2020-12-09 15:53:27 +0100 | [diff] [blame] | 4121 | GtkStyleContext * const context = |
| 4122 | gtk_widget_get_style_context(gui.formwin); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 4123 | GtkCssProvider * const provider = gtk_css_provider_new(); |
| 4124 | gchar * const css = g_strdup_printf( |
Bram Moolenaar | 023fd5d | 2020-12-08 20:31:16 +0100 | [diff] [blame] | 4125 | "widget#vim-gtk-form {\n" |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 4126 | " background-color: #%.2lx%.2lx%.2lx;\n" |
| 4127 | "}\n", |
| 4128 | (gui.back_pixel >> 16) & 0xff, |
| 4129 | (gui.back_pixel >> 8) & 0xff, |
| 4130 | gui.back_pixel & 0xff); |
| 4131 | |
| 4132 | gtk_css_provider_load_from_data(provider, css, -1, NULL); |
| 4133 | gtk_style_context_add_provider(context, |
| 4134 | GTK_STYLE_PROVIDER(provider), G_MAXUINT); |
| 4135 | |
| 4136 | g_free(css); |
| 4137 | g_object_unref(provider); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4138 | #elif GTK_CHECK_VERSION(3,4,0) // !GTK_CHECK_VERSION(3,22,2) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4139 | GdkRGBA rgba; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4140 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4141 | rgba = color_to_rgba(gui.back_pixel); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4142 | { |
| 4143 | cairo_pattern_t * const pat = cairo_pattern_create_rgba( |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4144 | rgba.red, rgba.green, rgba.blue, rgba.alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4145 | if (pat != NULL) |
| 4146 | { |
| 4147 | gdk_window_set_background_pattern(da_win, pat); |
| 4148 | cairo_pattern_destroy(pat); |
| 4149 | } |
| 4150 | else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 4151 | gdk_window_set_background_rgba(da_win, &rgba); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4152 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4153 | #else // !GTK_CHECK_VERSION(3,4,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4154 | GdkColor color = { 0, 0, 0, 0 }; |
| 4155 | |
| 4156 | color.pixel = gui.back_pixel; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4157 | gdk_window_set_background(da_win, &color); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4158 | #endif // !GTK_CHECK_VERSION(3,22,2) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4159 | } |
| 4160 | } |
| 4161 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4162 | /* |
| 4163 | * This signal informs us about the need to rearrange our sub-widgets. |
| 4164 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4165 | static gint |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4166 | form_configure_event(GtkWidget *widget UNUSED, |
| 4167 | GdkEventConfigure *event, |
| 4168 | gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4169 | { |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 4170 | int usable_height = event->height; |
| 4171 | #ifdef TRACK_RESIZE_HISTORY |
| 4172 | // Resize requests are made for gui.mainwin; |
| 4173 | // get its dimensions for searching if this event |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 4174 | // is a response to a vim request. |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 4175 | int w, h; |
| 4176 | gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h); |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 4177 | |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 4178 | # ifdef ENABLE_RESIZE_HISTORY_LOG |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 4179 | ch_log(NULL, "gui_gtk: form_configure_event: (%d, %d) [%d, %d]", |
| 4180 | w, h, (int)Columns, (int)Rows); |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 4181 | # endif |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 4182 | |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 4183 | // Look through history of recent vim resize requests. |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 4184 | // If this event matches: |
| 4185 | // - "latest resize hist" We're caught up; |
| 4186 | // clear the history and process this event. |
| 4187 | // If history is, old to new, 100, 99, 100, 99. If this event is |
| 4188 | // 99 for the stale, it is matched against the current. History |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 4189 | // is cleared, we may bounce, but no worse than before. |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 4190 | // - "older/stale hist" If match an unused event in history, |
| 4191 | // then discard this event, and mark the matching event as used. |
| 4192 | // - "no match" Figure it's a user resize event, clear history. |
| 4193 | // NOTE: clear history is default, then all incoming events are processed |
| 4194 | |
| 4195 | if (!MATCH_WIDTH_HEIGHT(latest_resize_hist, w, h) |
| 4196 | && match_stale_width_height(w, h)) |
| 4197 | // discard stale event |
| 4198 | return TRUE; |
| 4199 | clear_resize_hists(); |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 4200 | #endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4201 | |
Bram Moolenaar | 182707a | 2016-11-21 20:55:58 +0100 | [diff] [blame] | 4202 | #if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4203 | // As of 3.22.2, GdkWindows have started distributing configure events to |
| 4204 | // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0). |
| 4205 | // |
| 4206 | // As can be seen from the implementation of move_native_children() and |
| 4207 | // configure_native_child() in gdkwindow.c, those functions actually |
| 4208 | // propagate configure events to every child, failing to distinguish |
| 4209 | // "native" one from non-native one. |
| 4210 | // |
| 4211 | // Naturally, configure events propagated to here like that are fallacious |
| 4212 | // and, as a matter of fact, they trigger a geometric collapse of |
| 4213 | // gui.formwin. |
| 4214 | // |
| 4215 | // To filter out such fallacious events, check if the given event is the |
| 4216 | // one that was sent out to the right place. Ignore it if not. |
| 4217 | // |
| 4218 | // Follow-up |
| 4219 | // After a few weeks later, the GdkWindow change mentioned above was |
| 4220 | // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155). |
| 4221 | // The corresponding official release is 3.22.4. |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 4222 | if (event->window != gtk_widget_get_window(gui.formwin)) |
| 4223 | return TRUE; |
| 4224 | #endif |
| 4225 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4226 | // When in a GtkPlug, we can't guarantee valid heights (as a round |
| 4227 | // no. of char-heights), so we have to manually sanitise them. |
| 4228 | // Widths seem to sort themselves out, don't ask me why. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4229 | if (gtk_socket_id != 0) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4230 | usable_height -= (gui.char_height - (gui.char_height/2)); // sic. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4231 | |
Bram Moolenaar | 8a99e66 | 2020-10-21 16:10:21 +0200 | [diff] [blame] | 4232 | gui_gtk_form_freeze(GTK_FORM(gui.formwin)); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4233 | gui_resize_shell(event->width, usable_height); |
Bram Moolenaar | 8a99e66 | 2020-10-21 16:10:21 +0200 | [diff] [blame] | 4234 | gui_gtk_form_thaw(GTK_FORM(gui.formwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4235 | |
| 4236 | return TRUE; |
| 4237 | } |
| 4238 | |
| 4239 | /* |
| 4240 | * Function called when window already closed. |
| 4241 | * We can't do much more here than to trying to preserve what had been done, |
| 4242 | * since the window is already inevitably going away. |
| 4243 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4244 | static void |
| 4245 | mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4246 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4247 | // Don't write messages to the GUI anymore |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4248 | full_screen = FALSE; |
| 4249 | |
| 4250 | gui.mainwin = NULL; |
| 4251 | gui.drawarea = NULL; |
| 4252 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4253 | if (!exiting) // only do anything if the destroy was unexpected |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4254 | { |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 4255 | vim_strncpy(IObuff, |
| 4256 | (char_u *)_("Vim: Main window unexpectedly destroyed\n"), |
| 4257 | IOSIZE - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4258 | preserve_exit(); |
| 4259 | } |
Bram Moolenaar | 36e294c | 2015-12-29 18:55:46 +0100 | [diff] [blame] | 4260 | #ifdef USE_GRESOURCE |
| 4261 | gui_gtk_unregister_resource(); |
| 4262 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4263 | } |
| 4264 | |
Bram Moolenaar | a555e6f | 2021-03-18 22:28:57 +0100 | [diff] [blame] | 4265 | void |
| 4266 | gui_gtk_get_screen_geom_of_win( |
| 4267 | GtkWidget *wid, |
| 4268 | int point_x, // x position of window if not initialized |
| 4269 | int point_y, // y position of window if not initialized |
| 4270 | int *screen_x, |
| 4271 | int *screen_y, |
| 4272 | int *width, |
| 4273 | int *height) |
| 4274 | { |
| 4275 | GdkRectangle geometry; |
| 4276 | GdkWindow *win = gtk_widget_get_window(wid); |
| 4277 | #if GTK_CHECK_VERSION(3,22,0) |
Bram Moolenaar | 2400143 | 2021-03-20 12:36:46 +0100 | [diff] [blame] | 4278 | GdkDisplay *dpy; |
| 4279 | GdkMonitor *monitor; |
Bram Moolenaar | a555e6f | 2021-03-18 22:28:57 +0100 | [diff] [blame] | 4280 | |
Bram Moolenaar | 2400143 | 2021-03-20 12:36:46 +0100 | [diff] [blame] | 4281 | if (wid != NULL && gtk_widget_get_realized(wid)) |
| 4282 | dpy = gtk_widget_get_display(wid); |
| 4283 | else |
| 4284 | dpy = gdk_display_get_default(); |
| 4285 | if (win != NULL) |
| 4286 | monitor = gdk_display_get_monitor_at_window(dpy, win); |
| 4287 | else |
| 4288 | monitor = gdk_display_get_monitor_at_point(dpy, point_x, point_y); |
Bram Moolenaar | a555e6f | 2021-03-18 22:28:57 +0100 | [diff] [blame] | 4289 | gdk_monitor_get_geometry(monitor, &geometry); |
| 4290 | #else |
| 4291 | GdkScreen* screen; |
| 4292 | int monitor; |
| 4293 | |
| 4294 | if (wid != NULL && gtk_widget_has_screen(wid)) |
| 4295 | screen = gtk_widget_get_screen(wid); |
| 4296 | else |
| 4297 | screen = gdk_screen_get_default(); |
Bram Moolenaar | 2400143 | 2021-03-20 12:36:46 +0100 | [diff] [blame] | 4298 | if (win != NULL) |
Bram Moolenaar | a555e6f | 2021-03-18 22:28:57 +0100 | [diff] [blame] | 4299 | monitor = gdk_screen_get_monitor_at_window(screen, win); |
Bram Moolenaar | 2400143 | 2021-03-20 12:36:46 +0100 | [diff] [blame] | 4300 | else |
| 4301 | monitor = gdk_screen_get_monitor_at_point(screen, point_x, point_y); |
Bram Moolenaar | a555e6f | 2021-03-18 22:28:57 +0100 | [diff] [blame] | 4302 | gdk_screen_get_monitor_geometry(screen, monitor, &geometry); |
| 4303 | #endif |
| 4304 | *screen_x = geometry.x; |
| 4305 | *screen_y = geometry.y; |
| 4306 | *width = geometry.width; |
| 4307 | *height = geometry.height; |
| 4308 | } |
| 4309 | |
| 4310 | /* |
| 4311 | * The screen size is used to make sure the initial window doesn't get bigger |
| 4312 | * than the screen. This subtracts some room for menubar, toolbar and window |
| 4313 | * decorations. |
| 4314 | */ |
| 4315 | static void |
| 4316 | gui_gtk_get_screen_dimensions( |
| 4317 | int point_x, |
| 4318 | int point_y, |
| 4319 | int *screen_w, |
| 4320 | int *screen_h) |
| 4321 | { |
| 4322 | int x, y; |
| 4323 | |
| 4324 | gui_gtk_get_screen_geom_of_win(gui.mainwin, point_x, point_y, |
| 4325 | &x, &y, screen_w, screen_h); |
| 4326 | |
| 4327 | // Subtract 'guiheadroom' from the height to allow some room for the |
| 4328 | // window manager (task list and window title bar). |
| 4329 | *screen_h -= p_ghr; |
| 4330 | |
| 4331 | /* |
| 4332 | * FIXME: dirty trick: Because the gui_get_base_height() doesn't include |
| 4333 | * the toolbar and menubar for GTK, we subtract them from the screen |
| 4334 | * height, so that the window size can be made to fit on the screen. |
| 4335 | * This should be completely changed later. |
| 4336 | */ |
| 4337 | *screen_w -= get_menu_tool_width(); |
| 4338 | *screen_h -= get_menu_tool_height(); |
| 4339 | } |
| 4340 | |
| 4341 | void |
| 4342 | gui_mch_get_screen_dimensions(int *screen_w, int *screen_h) |
| 4343 | { |
| 4344 | gui_gtk_get_screen_dimensions(0, 0, screen_w, screen_h); |
| 4345 | } |
| 4346 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4347 | |
| 4348 | /* |
| 4349 | * Bit of a hack to ensure we start GtkPlug windows with the correct window |
| 4350 | * hints (and thus the required size from -geom), but that after that we |
| 4351 | * put the hints back to normal (the actual minimum size) so we may |
| 4352 | * subsequently be resized smaller. GtkSocket (the parent end) uses the |
Bram Moolenaar | c4568ab | 2018-11-16 16:21:05 +0100 | [diff] [blame] | 4353 | * plug's window 'min hints to set *its* minimum size, but that's also the |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4354 | * only way we have of making ourselves bigger (by set lines/columns). |
| 4355 | * Thus set hints at start-up to ensure correct init. size, then a |
Bram Moolenaar | 3f2a5d8 | 2016-02-27 22:08:16 +0100 | [diff] [blame] | 4356 | * second after the final attempt to reset the real minimum hints (done by |
| 4357 | * scrollbar init.), actually do the standard hints and stop the timer. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4358 | * We'll not let the default hints be set while this timer's active. |
| 4359 | */ |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 4360 | static timeout_cb_type |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4361 | check_startup_plug_hints(gpointer data UNUSED) |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4362 | { |
| 4363 | if (init_window_hints_state == 1) |
| 4364 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4365 | // Safe to use normal hints now |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4366 | init_window_hints_state = 0; |
| 4367 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4368 | return FALSE; // stop timer |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4369 | } |
| 4370 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4371 | // Keep on trying |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4372 | init_window_hints_state = 1; |
| 4373 | return TRUE; |
| 4374 | } |
| 4375 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4376 | /* |
| 4377 | * Open the GUI window which was created by a call to gui_mch_init(). |
| 4378 | */ |
| 4379 | int |
| 4380 | gui_mch_open(void) |
| 4381 | { |
| 4382 | guicolor_T fg_pixel = INVALCOLOR; |
| 4383 | guicolor_T bg_pixel = INVALCOLOR; |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4384 | guint pixel_width; |
| 4385 | guint pixel_height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4386 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4387 | /* |
| 4388 | * Allow setting a window role on the command line, or invent one |
| 4389 | * if none was specified. This is mainly useful for GNOME session |
| 4390 | * support; allowing the WM to restore window placement. |
| 4391 | */ |
| 4392 | if (role_argument != NULL) |
| 4393 | { |
| 4394 | gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument); |
| 4395 | } |
| 4396 | else |
| 4397 | { |
| 4398 | char *role; |
| 4399 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4400 | // Invent a unique-enough ID string for the role |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4401 | role = g_strdup_printf("vim-%u-%u-%u", |
| 4402 | (unsigned)mch_get_pid(), |
| 4403 | (unsigned)g_random_int(), |
| 4404 | (unsigned)time(NULL)); |
| 4405 | |
| 4406 | gtk_window_set_role(GTK_WINDOW(gui.mainwin), role); |
| 4407 | g_free(role); |
| 4408 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4409 | |
| 4410 | if (gui_win_x != -1 && gui_win_y != -1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4411 | 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] | 4412 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4413 | // Determine user specified geometry, if present. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4414 | if (gui.geom != NULL) |
| 4415 | { |
| 4416 | int mask; |
| 4417 | unsigned int w, h; |
| 4418 | int x = 0; |
| 4419 | int y = 0; |
| 4420 | |
| 4421 | mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h); |
| 4422 | |
| 4423 | if (mask & WidthValue) |
| 4424 | Columns = w; |
| 4425 | if (mask & HeightValue) |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 4426 | { |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4427 | if (p_window > (long)h - 1 || !option_was_set((char_u *)"window")) |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 4428 | p_window = h - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4429 | Rows = h; |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 4430 | } |
Bram Moolenaar | e057d40 | 2013-06-30 17:51:51 +0200 | [diff] [blame] | 4431 | limit_screen_size(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4432 | |
| 4433 | pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
| 4434 | pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); |
| 4435 | |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4436 | pixel_width += get_menu_tool_width(); |
| 4437 | pixel_height += get_menu_tool_height(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4438 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4439 | if (mask & (XValue | YValue)) |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4440 | { |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4441 | int ww, hh; |
Bram Moolenaar | a555e6f | 2021-03-18 22:28:57 +0100 | [diff] [blame] | 4442 | |
| 4443 | #ifdef FEAT_GUI_GTK |
| 4444 | gui_gtk_get_screen_dimensions(x, y, &ww, &hh); |
| 4445 | #else |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4446 | gui_mch_get_screen_dimensions(&ww, &hh); |
Bram Moolenaar | a555e6f | 2021-03-18 22:28:57 +0100 | [diff] [blame] | 4447 | #endif |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4448 | hh += p_ghr + get_menu_tool_height(); |
| 4449 | ww += get_menu_tool_width(); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4450 | if (mask & XNegative) |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4451 | x += ww - pixel_width; |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4452 | if (mask & YNegative) |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4453 | y += hh - pixel_height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4454 | gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 2dd8b52 | 2007-10-19 12:33:44 +0000 | [diff] [blame] | 4455 | } |
Bram Moolenaar | d23a823 | 2018-02-10 18:45:26 +0100 | [diff] [blame] | 4456 | VIM_CLEAR(gui.geom); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4457 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4458 | // From now until everyone's stopped trying to set the window hints |
| 4459 | // to their correct minimum values, stop them being set as we need |
| 4460 | // them to remain at our required size for the parent GtkSocket to |
| 4461 | // give us the right initial size. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4462 | if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue)) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4463 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4464 | update_window_manager_hints(pixel_width, pixel_height); |
| 4465 | init_window_hints_state = 1; |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 4466 | timeout_add(1000, check_startup_plug_hints, NULL); |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4467 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4468 | } |
| 4469 | |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4470 | pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); |
| 4471 | pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4472 | // For GTK2 changing the size of the form widget doesn't cause window |
| 4473 | // resizing. |
Bram Moolenaar | debe25a | 2010-06-06 17:41:24 +0200 | [diff] [blame] | 4474 | if (gtk_socket_id == 0) |
Bram Moolenaar | 79ef6d6 | 2009-09-23 15:35:48 +0000 | [diff] [blame] | 4475 | gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4476 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4477 | |
| 4478 | if (foreground_argument != NULL) |
| 4479 | fg_pixel = gui_get_color((char_u *)foreground_argument); |
| 4480 | if (fg_pixel == INVALCOLOR) |
| 4481 | fg_pixel = gui_get_color((char_u *)"Black"); |
| 4482 | |
| 4483 | if (background_argument != NULL) |
| 4484 | bg_pixel = gui_get_color((char_u *)background_argument); |
| 4485 | if (bg_pixel == INVALCOLOR) |
| 4486 | bg_pixel = gui_get_color((char_u *)"White"); |
| 4487 | |
| 4488 | if (found_reverse_arg) |
| 4489 | { |
| 4490 | gui.def_norm_pixel = bg_pixel; |
| 4491 | gui.def_back_pixel = fg_pixel; |
| 4492 | } |
| 4493 | else |
| 4494 | { |
| 4495 | gui.def_norm_pixel = fg_pixel; |
| 4496 | gui.def_back_pixel = bg_pixel; |
| 4497 | } |
| 4498 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4499 | // Get the colors from the "Normal" and "Menu" group (set in syntax.c or |
| 4500 | // in a vimrc file) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4501 | set_normal_colors(); |
| 4502 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4503 | // Check that none of the colors are the same as the background color |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4504 | gui_check_colors(); |
| 4505 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4506 | // Get the colors for the highlight groups (gui_check_colors() might have |
| 4507 | // changed them). |
| 4508 | highlight_gui_started(); // re-init colors and fonts |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4509 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4510 | g_signal_connect(G_OBJECT(gui.mainwin), "destroy", |
| 4511 | G_CALLBACK(mainwin_destroy_cb), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4512 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4513 | /* |
| 4514 | * Notify the fixed area about the need to resize the contents of the |
| 4515 | * gui.formwin, which we use for random positioning of the included |
| 4516 | * components. |
| 4517 | * |
| 4518 | * We connect this signal deferred finally after anything is in place, |
| 4519 | * since this is intended to handle resizements coming from the window |
| 4520 | * manager upon us and should not interfere with what VIM is requesting |
| 4521 | * upon startup. |
| 4522 | */ |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 4523 | #ifdef TRACK_RESIZE_HISTORY |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 4524 | latest_resize_hist = ALLOC_CLEAR_ONE(resize_hist_T); |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 4525 | #endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4526 | g_signal_connect(G_OBJECT(gui.formwin), "configure-event", |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 4527 | G_CALLBACK(form_configure_event), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4528 | |
| 4529 | #ifdef FEAT_DND |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4530 | // Set up for receiving DND items. |
Bram Moolenaar | a76638f | 2010-06-05 12:49:46 +0200 | [diff] [blame] | 4531 | gui_gtk_set_dnd_targets(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4532 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4533 | g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received", |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 4534 | G_CALLBACK(drag_data_received_cb), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4535 | #endif |
| 4536 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4537 | // With GTK+ 2, we need to iconify the window before calling show() |
| 4538 | // to avoid mapping the window for a short time. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4539 | if (found_iconic_arg && gtk_socket_id == 0) |
| 4540 | gui_mch_iconify(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4541 | |
| 4542 | { |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 4543 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4544 | unsigned long menu_handler = 0; |
| 4545 | # ifdef FEAT_TOOLBAR |
| 4546 | unsigned long tool_handler = 0; |
| 4547 | # endif |
| 4548 | /* |
| 4549 | * Urgh hackish :/ For some reason BonoboDockLayout always forces a |
| 4550 | * show when restoring the saved layout configuration. We can't just |
| 4551 | * hide the widgets again after gtk_widget_show(gui.mainwin) since it's |
| 4552 | * a toplevel window and thus will be realized immediately. Instead, |
| 4553 | * connect signal handlers to hide the widgets just after they've been |
| 4554 | * marked visible, but before the main window is realized. |
| 4555 | */ |
| 4556 | if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL) |
| 4557 | menu_handler = g_signal_connect_after(gui.menubar_h, "show", |
| 4558 | G_CALLBACK(>k_widget_hide), |
| 4559 | NULL); |
| 4560 | # ifdef FEAT_TOOLBAR |
| 4561 | if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL |
| 4562 | && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))) |
| 4563 | tool_handler = g_signal_connect_after(gui.toolbar_h, "show", |
| 4564 | G_CALLBACK(>k_widget_hide), |
| 4565 | NULL); |
| 4566 | # endif |
| 4567 | #endif |
| 4568 | gtk_widget_show(gui.mainwin); |
| 4569 | |
Bram Moolenaar | 182c5be | 2010-06-25 05:37:59 +0200 | [diff] [blame] | 4570 | #if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4571 | if (menu_handler != 0) |
| 4572 | g_signal_handler_disconnect(gui.menubar_h, menu_handler); |
| 4573 | # ifdef FEAT_TOOLBAR |
| 4574 | if (tool_handler != 0) |
| 4575 | g_signal_handler_disconnect(gui.toolbar_h, tool_handler); |
| 4576 | # endif |
| 4577 | #endif |
| 4578 | } |
| 4579 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4580 | return OK; |
| 4581 | } |
| 4582 | |
Bram Moolenaar | 32fbc4f | 2020-09-29 22:16:09 +0200 | [diff] [blame] | 4583 | /* |
| 4584 | * Clean up for when exiting Vim. |
| 4585 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4586 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4587 | gui_mch_exit(int rc UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4588 | { |
Bram Moolenaar | 32fbc4f | 2020-09-29 22:16:09 +0200 | [diff] [blame] | 4589 | // Clean up, unless we don't want to invoke free(). |
| 4590 | if (gui.mainwin != NULL && !really_exiting) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4591 | gtk_widget_destroy(gui.mainwin); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4592 | } |
| 4593 | |
| 4594 | /* |
| 4595 | * Get the position of the top left corner of the window. |
| 4596 | */ |
| 4597 | int |
| 4598 | gui_mch_get_winpos(int *x, int *y) |
| 4599 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4600 | gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4601 | return OK; |
| 4602 | } |
| 4603 | |
| 4604 | /* |
| 4605 | * Set the position of the top left corner of the window to the given |
| 4606 | * coordinates. |
| 4607 | */ |
| 4608 | void |
| 4609 | gui_mch_set_winpos(int x, int y) |
| 4610 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4611 | gtk_window_move(GTK_WINDOW(gui.mainwin), x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4612 | } |
| 4613 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4614 | #if !GTK_CHECK_VERSION(3,0,0) |
| 4615 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4616 | static int resize_idle_installed = FALSE; |
| 4617 | /* |
| 4618 | * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure |
| 4619 | * the shell size doesn't exceed the window size, i.e. if the window manager |
| 4620 | * ignored our size request. Usually this happens if the window is maximized. |
| 4621 | * |
| 4622 | * FIXME: It'd be nice if we could find a little more orthodox solution. |
| 4623 | * See also the remark below in gui_mch_set_shellsize(). |
| 4624 | * |
| 4625 | * DISABLED: When doing ":set lines+=1" this function would first invoke |
| 4626 | * gui_resize_shell() with the old size, then the normal callback would |
| 4627 | * report the new size through form_configure_event(). That caused the window |
| 4628 | * layout to be messed up. |
| 4629 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4630 | static gboolean |
| 4631 | force_shell_resize_idle(gpointer data) |
| 4632 | { |
| 4633 | if (gui.mainwin != NULL |
| 4634 | && GTK_WIDGET_REALIZED(gui.mainwin) |
| 4635 | && GTK_WIDGET_VISIBLE(gui.mainwin)) |
| 4636 | { |
| 4637 | int width; |
| 4638 | int height; |
| 4639 | |
| 4640 | gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height); |
| 4641 | |
| 4642 | width -= get_menu_tool_width(); |
| 4643 | height -= get_menu_tool_height(); |
| 4644 | |
| 4645 | gui_resize_shell(width, height); |
| 4646 | } |
| 4647 | |
| 4648 | resize_idle_installed = FALSE; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4649 | return FALSE; // don't call me again |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4650 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4651 | # endif |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4652 | #endif // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4653 | |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4654 | /* |
| 4655 | * Return TRUE if the main window is maximized. |
| 4656 | */ |
| 4657 | int |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 4658 | gui_mch_maximized(void) |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4659 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4660 | return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL |
| 4661 | && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin)) |
| 4662 | & GDK_WINDOW_STATE_MAXIMIZED)); |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4663 | } |
| 4664 | |
| 4665 | /* |
| 4666 | * Unmaximize the main window |
| 4667 | */ |
| 4668 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 4669 | gui_mch_unmaximize(void) |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4670 | { |
| 4671 | if (gui.mainwin != NULL) |
| 4672 | gtk_window_unmaximize(GTK_WINDOW(gui.mainwin)); |
| 4673 | } |
Bram Moolenaar | 0973623 | 2009-09-23 16:14:49 +0000 | [diff] [blame] | 4674 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4675 | /* |
Bram Moolenaar | 8ac4415 | 2017-11-09 18:33:29 +0100 | [diff] [blame] | 4676 | * Called when the font changed while the window is maximized or GO_KEEPWINSIZE |
| 4677 | * is set. Compute the new Rows and Columns. This is like resizing the |
| 4678 | * window. |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 4679 | */ |
| 4680 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 4681 | gui_mch_newfont(void) |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 4682 | { |
| 4683 | int w, h; |
| 4684 | |
| 4685 | gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h); |
| 4686 | w -= get_menu_tool_width(); |
| 4687 | h -= get_menu_tool_height(); |
| 4688 | gui_resize_shell(w, h); |
| 4689 | } |
| 4690 | |
| 4691 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4692 | * Set the windows size. |
| 4693 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4694 | void |
| 4695 | gui_mch_set_shellsize(int width, int height, |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4696 | int min_width UNUSED, int min_height UNUSED, |
| 4697 | int base_width UNUSED, int base_height UNUSED, |
| 4698 | int direction UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4699 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4700 | // give GTK+ a chance to put all widget's into place |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4701 | gui_mch_update(); |
| 4702 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4703 | // this will cause the proper resizement to happen too |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4704 | if (gtk_socket_id == 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4705 | update_window_manager_hints(0, 0); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4706 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4707 | // With GTK+ 2, changing the size of the form widget doesn't resize |
| 4708 | // the window. So let's do it the other way around and resize the |
| 4709 | // main window instead. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4710 | width += get_menu_tool_width(); |
| 4711 | height += get_menu_tool_height(); |
| 4712 | |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 4713 | #ifdef TRACK_RESIZE_HISTORY |
Ernie Rael | 9f53e7b | 2022-04-17 18:27:49 +0100 | [diff] [blame] | 4714 | alloc_resize_hist(width, height); // track the resize request |
Ernie Rael | d42b839 | 2022-04-23 19:52:23 +0100 | [diff] [blame] | 4715 | #endif |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4716 | if (gtk_socket_id == 0) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4717 | gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4718 | else |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4719 | update_window_manager_hints(width, height); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4720 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4721 | # if !GTK_CHECK_VERSION(3,0,0) |
| 4722 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4723 | if (!resize_idle_installed) |
| 4724 | { |
| 4725 | g_idle_add_full(GDK_PRIORITY_EVENTS + 10, |
| 4726 | &force_shell_resize_idle, NULL, NULL); |
| 4727 | resize_idle_installed = TRUE; |
| 4728 | } |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4729 | # endif |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4730 | # endif // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4731 | /* |
| 4732 | * Wait until all events are processed to prevent a crash because the |
| 4733 | * real size of the drawing area doesn't reflect Vim's internal ideas. |
| 4734 | * |
| 4735 | * This is a bit of a hack, since Vim is a terminal application with a GUI |
| 4736 | * on top, while the GUI expects to be the boss. |
| 4737 | */ |
| 4738 | gui_mch_update(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4739 | } |
| 4740 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4741 | void |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 4742 | gui_mch_settitle(char_u *title, char_u *icon UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4743 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4744 | if (title != NULL && output_conv.vc_type != CONV_NONE) |
| 4745 | title = string_convert(&output_conv, title, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4746 | |
| 4747 | gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title); |
| 4748 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4749 | if (output_conv.vc_type != CONV_NONE) |
| 4750 | vim_free(title); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4751 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4752 | |
| 4753 | #if defined(FEAT_MENU) || defined(PROTO) |
| 4754 | void |
| 4755 | gui_mch_enable_menu(int showit) |
| 4756 | { |
| 4757 | GtkWidget *widget; |
| 4758 | |
| 4759 | # ifdef FEAT_GUI_GNOME |
| 4760 | if (using_gnome) |
| 4761 | widget = gui.menubar_h; |
| 4762 | else |
| 4763 | # endif |
| 4764 | widget = gui.menubar; |
| 4765 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4766 | // Do not disable the menu while starting up, otherwise F10 doesn't work. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4767 | if (!showit != !gtk_widget_get_visible(widget) && !gui.starting) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4768 | { |
| 4769 | if (showit) |
| 4770 | gtk_widget_show(widget); |
| 4771 | else |
| 4772 | gtk_widget_hide(widget); |
| 4773 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4774 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4775 | } |
| 4776 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4777 | #endif // FEAT_MENU |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4778 | |
| 4779 | #if defined(FEAT_TOOLBAR) || defined(PROTO) |
| 4780 | void |
| 4781 | gui_mch_show_toolbar(int showit) |
| 4782 | { |
| 4783 | GtkWidget *widget; |
| 4784 | |
| 4785 | if (gui.toolbar == NULL) |
| 4786 | return; |
| 4787 | |
| 4788 | # ifdef FEAT_GUI_GNOME |
| 4789 | if (using_gnome) |
| 4790 | widget = gui.toolbar_h; |
| 4791 | else |
| 4792 | # endif |
| 4793 | widget = gui.toolbar; |
| 4794 | |
| 4795 | if (showit) |
| 4796 | set_toolbar_style(GTK_TOOLBAR(gui.toolbar)); |
| 4797 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4798 | if (!showit != !gtk_widget_get_visible(widget)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4799 | { |
| 4800 | if (showit) |
| 4801 | gtk_widget_show(widget); |
| 4802 | else |
| 4803 | gtk_widget_hide(widget); |
| 4804 | |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 4805 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4806 | } |
| 4807 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4808 | #endif // FEAT_TOOLBAR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4809 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4810 | /* |
| 4811 | * Check if a given font is a CJK font. This is done in a very crude manner. It |
| 4812 | * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given |
| 4813 | * font. Consequently, this function cannot be used as a general purpose check |
| 4814 | * for CJK-ness for which fontconfig APIs should be used. This is only used by |
| 4815 | * gui_mch_init_font() to deal with 'CJK fixed width fonts'. |
| 4816 | */ |
| 4817 | static int |
| 4818 | is_cjk_font(PangoFontDescription *font_desc) |
| 4819 | { |
| 4820 | static const char * const cjk_langs[] = |
| 4821 | {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"}; |
| 4822 | |
| 4823 | PangoFont *font; |
| 4824 | unsigned i; |
| 4825 | int is_cjk = FALSE; |
| 4826 | |
| 4827 | font = pango_context_load_font(gui.text_context, font_desc); |
| 4828 | |
| 4829 | if (font == NULL) |
| 4830 | return FALSE; |
| 4831 | |
| 4832 | for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i) |
| 4833 | { |
| 4834 | PangoCoverage *coverage; |
| 4835 | gunichar uc; |
| 4836 | |
Bram Moolenaar | 14285cb | 2020-03-27 20:58:37 +0100 | [diff] [blame] | 4837 | // Valgrind reports a leak for pango_language_from_string(), but the |
| 4838 | // documentation says "This is owned by Pango and should not be freed". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4839 | coverage = pango_font_get_coverage( |
| 4840 | font, pango_language_from_string(cjk_langs[i])); |
| 4841 | |
| 4842 | if (coverage != NULL) |
| 4843 | { |
| 4844 | uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00; |
| 4845 | is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT); |
| 4846 | pango_coverage_unref(coverage); |
| 4847 | } |
| 4848 | } |
| 4849 | |
| 4850 | g_object_unref(font); |
| 4851 | |
| 4852 | return is_cjk; |
| 4853 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4854 | |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 4855 | /* |
| 4856 | * Adjust gui.char_height (after 'linespace' was changed). |
| 4857 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4858 | int |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 4859 | gui_mch_adjust_charheight(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4860 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4861 | PangoFontMetrics *metrics; |
| 4862 | int ascent; |
| 4863 | int descent; |
| 4864 | |
| 4865 | metrics = pango_context_get_metrics(gui.text_context, gui.norm_font, |
| 4866 | pango_context_get_language(gui.text_context)); |
| 4867 | ascent = pango_font_metrics_get_ascent(metrics); |
| 4868 | descent = pango_font_metrics_get_descent(metrics); |
| 4869 | |
| 4870 | pango_font_metrics_unref(metrics); |
| 4871 | |
Bram Moolenaar | 70cf458 | 2020-10-27 20:43:26 +0100 | [diff] [blame] | 4872 | // Round up when the value is more than about 1/16 of a pixel above a whole |
| 4873 | // pixel (12.0624 becomes 12, 12.07 becomes 13). Then add 'linespace'. |
| 4874 | gui.char_height = (ascent + descent + (PANGO_SCALE * 15) / 16) |
| 4875 | / PANGO_SCALE + p_linespace; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4876 | // LINTED: avoid warning: bitwise operation on signed value |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4877 | gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2); |
| 4878 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4879 | // A not-positive value of char_height may crash Vim. Only happens |
| 4880 | // if 'linespace' is negative (which does make sense sometimes). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4881 | gui.char_ascent = MAX(gui.char_ascent, 0); |
| 4882 | gui.char_height = MAX(gui.char_height, gui.char_ascent + 1); |
| 4883 | |
| 4884 | return OK; |
| 4885 | } |
| 4886 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4887 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4888 | // Callback function used in gui_mch_font_dialog() |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4889 | static gboolean |
| 4890 | font_filter(const PangoFontFamily *family, |
| 4891 | const PangoFontFace *face UNUSED, |
| 4892 | gpointer data UNUSED) |
| 4893 | { |
| 4894 | return pango_font_family_is_monospace((PangoFontFamily *)family); |
| 4895 | } |
| 4896 | #endif |
| 4897 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4898 | /* |
| 4899 | * Put up a font dialog and return the selected font name in allocated memory. |
| 4900 | * "oldval" is the previous value. Return NULL when cancelled. |
| 4901 | * This should probably go into gui_gtk.c. Hmm. |
| 4902 | * FIXME: |
| 4903 | * The GTK2 font selection dialog has no filtering API. So we could either |
| 4904 | * a) implement our own (possibly copying the code from somewhere else) or |
| 4905 | * b) just live with it. |
| 4906 | */ |
| 4907 | char_u * |
| 4908 | gui_mch_font_dialog(char_u *oldval) |
| 4909 | { |
| 4910 | GtkWidget *dialog; |
| 4911 | int response; |
| 4912 | char_u *fontname = NULL; |
| 4913 | char_u *oldname; |
| 4914 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4915 | #if GTK_CHECK_VERSION(3,2,0) |
| 4916 | dialog = gtk_font_chooser_dialog_new(NULL, NULL); |
| 4917 | gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter, |
| 4918 | NULL, NULL); |
| 4919 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4920 | dialog = gtk_font_selection_dialog_new(NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4921 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4922 | |
| 4923 | gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin)); |
| 4924 | gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE); |
| 4925 | |
| 4926 | if (oldval != NULL && oldval[0] != NUL) |
| 4927 | { |
| 4928 | if (output_conv.vc_type != CONV_NONE) |
| 4929 | oldname = string_convert(&output_conv, oldval, NULL); |
| 4930 | else |
| 4931 | oldname = oldval; |
| 4932 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4933 | // Annoying bug in GTK (or Pango): if the font name does not include a |
| 4934 | // size, zero is used. Use default point size ten. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4935 | if (!vim_isdigit(oldname[STRLEN(oldname) - 1])) |
| 4936 | { |
| 4937 | char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3); |
| 4938 | |
| 4939 | if (p != NULL) |
| 4940 | { |
| 4941 | STRCPY(p + STRLEN(p), " 10"); |
| 4942 | if (oldname != oldval) |
| 4943 | vim_free(oldname); |
| 4944 | oldname = p; |
| 4945 | } |
| 4946 | } |
| 4947 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4948 | #if GTK_CHECK_VERSION(3,2,0) |
| 4949 | gtk_font_chooser_set_font( |
| 4950 | GTK_FONT_CHOOSER(dialog), (const gchar *)oldname); |
| 4951 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4952 | gtk_font_selection_dialog_set_font_name( |
| 4953 | GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4954 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4955 | |
| 4956 | if (oldname != oldval) |
Bram Moolenaar | 8c71145 | 2005-01-14 21:53:12 +0000 | [diff] [blame] | 4957 | vim_free(oldname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4958 | } |
Bram Moolenaar | bef9d83 | 2009-09-11 13:46:41 +0000 | [diff] [blame] | 4959 | else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4960 | #if GTK_CHECK_VERSION(3,2,0) |
| 4961 | gtk_font_chooser_set_font( |
| 4962 | GTK_FONT_CHOOSER(dialog), DEFAULT_FONT); |
| 4963 | #else |
Bram Moolenaar | bef9d83 | 2009-09-11 13:46:41 +0000 | [diff] [blame] | 4964 | gtk_font_selection_dialog_set_font_name( |
| 4965 | GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4966 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4967 | |
| 4968 | response = gtk_dialog_run(GTK_DIALOG(dialog)); |
| 4969 | |
| 4970 | if (response == GTK_RESPONSE_OK) |
| 4971 | { |
| 4972 | char *name; |
| 4973 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4974 | #if GTK_CHECK_VERSION(3,2,0) |
| 4975 | name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog)); |
| 4976 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4977 | name = gtk_font_selection_dialog_get_font_name( |
| 4978 | GTK_FONT_SELECTION_DIALOG(dialog)); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 4979 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4980 | if (name != NULL) |
| 4981 | { |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4982 | char_u *p; |
| 4983 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 4984 | // Apparently some font names include a comma, need to escape |
| 4985 | // that, because in 'guifont' it separates names. |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4986 | p = vim_strsave_escaped((char_u *)name, (char_u *)","); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4987 | g_free(name); |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 4988 | if (p != NULL && input_conv.vc_type != CONV_NONE) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4989 | { |
| 4990 | fontname = string_convert(&input_conv, p, NULL); |
| 4991 | vim_free(p); |
| 4992 | } |
| 4993 | else |
| 4994 | fontname = p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4995 | } |
| 4996 | } |
| 4997 | |
| 4998 | if (response != GTK_RESPONSE_NONE) |
| 4999 | gtk_widget_destroy(dialog); |
| 5000 | |
| 5001 | return fontname; |
| 5002 | } |
| 5003 | |
| 5004 | /* |
| 5005 | * Some monospace fonts don't support a bold weight, and fall back |
| 5006 | * silently to the regular weight. But this is no good since our text |
| 5007 | * drawing function can emulate bold by overstriking. So let's try |
| 5008 | * to detect whether bold weight is actually available and emulate it |
| 5009 | * otherwise. |
| 5010 | * |
| 5011 | * Note that we don't need to check for italic style since Xft can |
| 5012 | * emulate italic on its own, provided you have a proper fontconfig |
| 5013 | * setup. We wouldn't be able to emulate it in Vim anyway. |
| 5014 | */ |
| 5015 | static void |
| 5016 | get_styled_font_variants(void) |
| 5017 | { |
| 5018 | PangoFontDescription *bold_font_desc; |
| 5019 | PangoFont *plain_font; |
| 5020 | PangoFont *bold_font; |
| 5021 | |
| 5022 | gui.font_can_bold = FALSE; |
| 5023 | |
| 5024 | plain_font = pango_context_load_font(gui.text_context, gui.norm_font); |
| 5025 | |
| 5026 | if (plain_font == NULL) |
| 5027 | return; |
| 5028 | |
| 5029 | bold_font_desc = pango_font_description_copy_static(gui.norm_font); |
| 5030 | pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD); |
| 5031 | |
| 5032 | bold_font = pango_context_load_font(gui.text_context, bold_font_desc); |
| 5033 | /* |
| 5034 | * The comparison relies on the unique handle nature of a PangoFont*, |
| 5035 | * i.e. it's assumed that a different PangoFont* won't refer to the |
| 5036 | * same font. Seems to work, and failing here isn't critical anyway. |
| 5037 | */ |
| 5038 | if (bold_font != NULL) |
| 5039 | { |
| 5040 | gui.font_can_bold = (bold_font != plain_font); |
| 5041 | g_object_unref(bold_font); |
| 5042 | } |
| 5043 | |
| 5044 | pango_font_description_free(bold_font_desc); |
| 5045 | g_object_unref(plain_font); |
| 5046 | } |
| 5047 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5048 | static PangoEngineShape *default_shape_engine = NULL; |
| 5049 | |
| 5050 | /* |
| 5051 | * Create a map from ASCII characters in the range [32,126] to glyphs |
| 5052 | * of the current font. This is used by gui_gtk2_draw_string() to skip |
| 5053 | * the itemize and shaping process for the most common case. |
| 5054 | */ |
| 5055 | static void |
| 5056 | ascii_glyph_table_init(void) |
| 5057 | { |
Bram Moolenaar | 16350cb | 2016-08-14 20:27:34 +0200 | [diff] [blame] | 5058 | char_u ascii_chars[2 * 128]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5059 | PangoAttrList *attr_list; |
| 5060 | GList *item_list; |
| 5061 | int i; |
| 5062 | |
| 5063 | if (gui.ascii_glyphs != NULL) |
| 5064 | pango_glyph_string_free(gui.ascii_glyphs); |
| 5065 | if (gui.ascii_font != NULL) |
| 5066 | g_object_unref(gui.ascii_font); |
| 5067 | |
| 5068 | gui.ascii_glyphs = NULL; |
| 5069 | gui.ascii_font = NULL; |
| 5070 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5071 | // For safety, fill in question marks for the control characters. |
| 5072 | // Put a space between characters to avoid shaping. |
Bram Moolenaar | 16350cb | 2016-08-14 20:27:34 +0200 | [diff] [blame] | 5073 | for (i = 0; i < 128; ++i) |
| 5074 | { |
| 5075 | if (i >= 32 && i < 127) |
| 5076 | ascii_chars[2 * i] = i; |
| 5077 | else |
| 5078 | ascii_chars[2 * i] = '?'; |
| 5079 | ascii_chars[2 * i + 1] = ' '; |
| 5080 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5081 | |
| 5082 | attr_list = pango_attr_list_new(); |
| 5083 | item_list = pango_itemize(gui.text_context, (const char *)ascii_chars, |
| 5084 | 0, sizeof(ascii_chars), attr_list, NULL); |
| 5085 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5086 | if (item_list != NULL && item_list->next == NULL) // play safe |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5087 | { |
| 5088 | PangoItem *item; |
| 5089 | int width; |
| 5090 | |
| 5091 | item = (PangoItem *)item_list->data; |
| 5092 | width = gui.char_width * PANGO_SCALE; |
| 5093 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5094 | // Remember the shape engine used for ASCII. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5095 | default_shape_engine = item->analysis.shape_engine; |
| 5096 | |
| 5097 | gui.ascii_font = item->analysis.font; |
| 5098 | g_object_ref(gui.ascii_font); |
| 5099 | |
| 5100 | gui.ascii_glyphs = pango_glyph_string_new(); |
| 5101 | |
| 5102 | pango_shape((const char *)ascii_chars, sizeof(ascii_chars), |
| 5103 | &item->analysis, gui.ascii_glyphs); |
| 5104 | |
| 5105 | g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars)); |
| 5106 | |
| 5107 | for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i) |
| 5108 | { |
| 5109 | PangoGlyphGeometry *geom; |
| 5110 | |
| 5111 | geom = &gui.ascii_glyphs->glyphs[i].geometry; |
| 5112 | geom->x_offset += MAX(0, width - geom->width) / 2; |
| 5113 | geom->width = width; |
| 5114 | } |
| 5115 | } |
| 5116 | |
Bram Moolenaar | 81a4cf4 | 2020-09-09 19:05:13 +0200 | [diff] [blame] | 5117 | // TODO: is this type cast OK? |
| 5118 | g_list_foreach(item_list, (GFunc)(void *)&pango_item_free, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5119 | g_list_free(item_list); |
| 5120 | pango_attr_list_unref(attr_list); |
| 5121 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5122 | |
| 5123 | /* |
| 5124 | * Initialize Vim to use the font or fontset with the given name. |
| 5125 | * Return FAIL if the font could not be loaded, OK otherwise. |
| 5126 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5127 | int |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5128 | gui_mch_init_font(char_u *font_name, int fontset UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5129 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5130 | PangoFontDescription *font_desc; |
| 5131 | PangoLayout *layout; |
| 5132 | int width; |
| 5133 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5134 | // If font_name is NULL, this means to use the default, which should |
| 5135 | // be present on all proper Pango/fontconfig installations. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5136 | if (font_name == NULL) |
| 5137 | font_name = (char_u *)DEFAULT_FONT; |
| 5138 | |
| 5139 | font_desc = gui_mch_get_font(font_name, FALSE); |
| 5140 | |
| 5141 | if (font_desc == NULL) |
| 5142 | return FAIL; |
| 5143 | |
| 5144 | gui_mch_free_font(gui.norm_font); |
| 5145 | gui.norm_font = font_desc; |
| 5146 | |
| 5147 | pango_context_set_font_description(gui.text_context, font_desc); |
| 5148 | |
| 5149 | layout = pango_layout_new(gui.text_context); |
| 5150 | pango_layout_set_text(layout, "MW", 2); |
| 5151 | pango_layout_get_size(layout, &width, NULL); |
| 5152 | /* |
| 5153 | * Set char_width to half the width obtained from pango_layout_get_size() |
| 5154 | * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads |
| 5155 | * Pango to use the same width for both non-CJK characters (e.g. Latin |
| 5156 | * letters and numbers) and CJK characters. This results in 's p a c e d |
| 5157 | * o u t' rendering when a CJK 'fixed width' font is used. To work around |
| 5158 | * that, divide the width returned by Pango by 2 if cjk_width is equal to |
| 5159 | * width for CJK fonts. |
| 5160 | * |
| 5161 | * For related bugs, see: |
| 5162 | * http://bugzilla.gnome.org/show_bug.cgi?id=106618 |
| 5163 | * http://bugzilla.gnome.org/show_bug.cgi?id=106624 |
| 5164 | * |
| 5165 | * With this, for all four of the following cases, Vim works fine: |
| 5166 | * guifont=CJK_fixed_width_font |
| 5167 | * guifont=Non_CJK_fixed_font |
| 5168 | * guifont=Non_CJK_fixed_font,CJK_Fixed_font |
| 5169 | * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font |
| 5170 | */ |
| 5171 | if (is_cjk_font(gui.norm_font)) |
| 5172 | { |
| 5173 | int cjk_width; |
| 5174 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5175 | // Measure the text extent of U+4E00 and U+4E8C |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5176 | pango_layout_set_text(layout, "\344\270\200\344\272\214", -1); |
| 5177 | pango_layout_get_size(layout, &cjk_width, NULL); |
| 5178 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5179 | if (width == cjk_width) // Xft not patched |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5180 | width /= 2; |
| 5181 | } |
| 5182 | g_object_unref(layout); |
| 5183 | |
| 5184 | gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE; |
| 5185 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5186 | // A zero width may cause a crash. Happens for semi-invalid fontsets. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5187 | if (gui.char_width <= 0) |
| 5188 | gui.char_width = 8; |
| 5189 | |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5190 | gui_mch_adjust_charheight(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5191 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5192 | // Set the fontname, which will be used for information purposes |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5193 | hl_set_font_name(font_name); |
| 5194 | |
| 5195 | get_styled_font_variants(); |
| 5196 | ascii_glyph_table_init(); |
| 5197 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5198 | // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5199 | if (gui.wide_font != NULL |
| 5200 | && pango_font_description_equal(gui.norm_font, gui.wide_font)) |
| 5201 | { |
| 5202 | pango_font_description_free(gui.wide_font); |
| 5203 | gui.wide_font = NULL; |
| 5204 | } |
| 5205 | |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5206 | if (gui_mch_maximized()) |
| 5207 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5208 | // Update lines and columns in accordance with the new font, keep the |
| 5209 | // window maximized. |
Bram Moolenaar | 12bc1b5 | 2011-08-10 17:44:45 +0200 | [diff] [blame] | 5210 | gui_mch_newfont(); |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5211 | } |
| 5212 | else |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5213 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5214 | // Preserve the logical dimensions of the screen. |
Bram Moolenaar | e161c79 | 2009-11-03 17:13:59 +0000 | [diff] [blame] | 5215 | update_window_manager_hints(0, 0); |
| 5216 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5217 | |
| 5218 | return OK; |
| 5219 | } |
| 5220 | |
| 5221 | /* |
| 5222 | * Get a reference to the font "name". |
| 5223 | * Return zero for failure. |
| 5224 | */ |
| 5225 | GuiFont |
| 5226 | gui_mch_get_font(char_u *name, int report_error) |
| 5227 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5228 | PangoFontDescription *font; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5229 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5230 | // can't do this when GUI is not running |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5231 | if (!gui.in_use || name == NULL) |
| 5232 | return NULL; |
| 5233 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5234 | if (output_conv.vc_type != CONV_NONE) |
| 5235 | { |
| 5236 | char_u *buf; |
| 5237 | |
| 5238 | buf = string_convert(&output_conv, name, NULL); |
| 5239 | if (buf != NULL) |
| 5240 | { |
| 5241 | font = pango_font_description_from_string((const char *)buf); |
| 5242 | vim_free(buf); |
| 5243 | } |
| 5244 | else |
| 5245 | font = NULL; |
| 5246 | } |
| 5247 | else |
| 5248 | font = pango_font_description_from_string((const char *)name); |
| 5249 | |
| 5250 | if (font != NULL) |
| 5251 | { |
| 5252 | PangoFont *real_font; |
| 5253 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5254 | // pango_context_load_font() bails out if no font size is set |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5255 | if (pango_font_description_get_size(font) <= 0) |
| 5256 | pango_font_description_set_size(font, 10 * PANGO_SCALE); |
| 5257 | |
| 5258 | real_font = pango_context_load_font(gui.text_context, font); |
| 5259 | |
| 5260 | if (real_font == NULL) |
| 5261 | { |
| 5262 | pango_font_description_free(font); |
| 5263 | font = NULL; |
| 5264 | } |
| 5265 | else |
| 5266 | g_object_unref(real_font); |
| 5267 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5268 | |
| 5269 | if (font == NULL) |
| 5270 | { |
| 5271 | if (report_error) |
Bram Moolenaar | 436b5ad | 2021-12-31 22:49:24 +0000 | [diff] [blame] | 5272 | semsg(_((char *)e_unknown_font_str), name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5273 | return NULL; |
| 5274 | } |
| 5275 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5276 | return font; |
| 5277 | } |
| 5278 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5279 | #if defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5280 | /* |
| 5281 | * Return the name of font "font" in allocated memory. |
| 5282 | */ |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5283 | char_u * |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5284 | gui_mch_get_fontname(GuiFont font, char_u *name UNUSED) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5285 | { |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5286 | if (font != NOFONT) |
| 5287 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5288 | char *pangoname = pango_font_description_to_string(font); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5289 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5290 | if (pangoname != NULL) |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5291 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5292 | char_u *s = vim_strsave((char_u *)pangoname); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5293 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 5294 | g_free(pangoname); |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5295 | return s; |
| 5296 | } |
| 5297 | } |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5298 | return NULL; |
| 5299 | } |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5300 | #endif |
Bram Moolenaar | 46c9c73 | 2004-12-12 11:37:09 +0000 | [diff] [blame] | 5301 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5302 | /* |
| 5303 | * If a font is not going to be used, free its structure. |
| 5304 | */ |
| 5305 | void |
| 5306 | gui_mch_free_font(GuiFont font) |
| 5307 | { |
| 5308 | if (font != NOFONT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5309 | pango_font_description_free(font); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5310 | } |
| 5311 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5312 | /* |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5313 | * Return the Pixel value (color) for the given color name. |
| 5314 | * |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5315 | * Return INVALCOLOR for error. |
| 5316 | */ |
| 5317 | guicolor_T |
| 5318 | gui_mch_get_color(char_u *name) |
| 5319 | { |
Bram Moolenaar | 2e32495 | 2018-04-14 14:37:07 +0200 | [diff] [blame] | 5320 | guicolor_T color = INVALCOLOR; |
| 5321 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5322 | if (!gui.in_use) // can't do this when GUI not running |
Bram Moolenaar | 2e32495 | 2018-04-14 14:37:07 +0200 | [diff] [blame] | 5323 | return color; |
| 5324 | |
| 5325 | if (name != NULL) |
| 5326 | color = gui_get_color_cmn(name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5327 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5328 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 2e32495 | 2018-04-14 14:37:07 +0200 | [diff] [blame] | 5329 | return color; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5330 | #else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5331 | if (color == INVALCOLOR) |
| 5332 | return INVALCOLOR; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5333 | |
Bram Moolenaar | 26af85d | 2017-07-23 16:45:10 +0200 | [diff] [blame] | 5334 | return gui_mch_get_rgb_color( |
| 5335 | (color & 0xff0000) >> 16, |
| 5336 | (color & 0xff00) >> 8, |
| 5337 | color & 0xff); |
| 5338 | #endif |
| 5339 | } |
| 5340 | |
| 5341 | /* |
| 5342 | * Return the Pixel value (color) for the given RGB values. |
| 5343 | * Return INVALCOLOR for error. |
| 5344 | */ |
| 5345 | guicolor_T |
| 5346 | gui_mch_get_rgb_color(int r, int g, int b) |
| 5347 | { |
| 5348 | #if GTK_CHECK_VERSION(3,0,0) |
| 5349 | return gui_get_rgb_color_cmn(r, g, b); |
| 5350 | #else |
| 5351 | GdkColor gcolor; |
| 5352 | int ret; |
| 5353 | |
| 5354 | gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5); |
| 5355 | gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5); |
| 5356 | gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5357 | |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5358 | ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea), |
| 5359 | &gcolor, FALSE, TRUE); |
| 5360 | |
| 5361 | return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR; |
| 5362 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5363 | } |
| 5364 | |
| 5365 | /* |
| 5366 | * Set the current text foreground color. |
| 5367 | */ |
| 5368 | void |
| 5369 | gui_mch_set_fg_color(guicolor_T color) |
| 5370 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5371 | #if GTK_CHECK_VERSION(3,0,0) |
| 5372 | *gui.fgcolor = color_to_rgba(color); |
| 5373 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5374 | gui.fgcolor->pixel = (unsigned long)color; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5375 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5376 | } |
| 5377 | |
| 5378 | /* |
| 5379 | * Set the current text background color. |
| 5380 | */ |
| 5381 | void |
| 5382 | gui_mch_set_bg_color(guicolor_T color) |
| 5383 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5384 | #if GTK_CHECK_VERSION(3,0,0) |
| 5385 | *gui.bgcolor = color_to_rgba(color); |
| 5386 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5387 | gui.bgcolor->pixel = (unsigned long)color; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5388 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5389 | } |
| 5390 | |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5391 | /* |
| 5392 | * Set the current text special color. |
| 5393 | */ |
| 5394 | void |
| 5395 | gui_mch_set_sp_color(guicolor_T color) |
| 5396 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5397 | #if GTK_CHECK_VERSION(3,0,0) |
| 5398 | *gui.spcolor = color_to_rgba(color); |
| 5399 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5400 | gui.spcolor->pixel = (unsigned long)color; |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5401 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5402 | } |
| 5403 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5404 | /* |
| 5405 | * Function-like convenience macro for the sake of efficiency. |
| 5406 | */ |
| 5407 | #define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \ |
| 5408 | G_STMT_START{ \ |
| 5409 | PangoAttribute *tmp_attr_; \ |
| 5410 | tmp_attr_ = (Attribute); \ |
| 5411 | tmp_attr_->start_index = (Start); \ |
| 5412 | tmp_attr_->end_index = (End); \ |
| 5413 | pango_attr_list_insert((AttrList), tmp_attr_); \ |
| 5414 | }G_STMT_END |
| 5415 | |
| 5416 | static void |
| 5417 | apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list) |
| 5418 | { |
| 5419 | char_u *start = NULL; |
| 5420 | char_u *p; |
| 5421 | int uc; |
| 5422 | |
| 5423 | for (p = s; p < s + len; p += utf_byte2len(*p)) |
| 5424 | { |
| 5425 | uc = utf_ptr2char(p); |
| 5426 | |
| 5427 | if (start == NULL) |
| 5428 | { |
| 5429 | if (uc >= 0x80 && utf_char2cells(uc) == 2) |
| 5430 | start = p; |
| 5431 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5432 | else if (uc < 0x80 // optimization shortcut |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5433 | || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc))) |
| 5434 | { |
| 5435 | INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), |
| 5436 | attr_list, start - s, p - s); |
| 5437 | start = NULL; |
| 5438 | } |
| 5439 | } |
| 5440 | |
| 5441 | if (start != NULL) |
| 5442 | INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font), |
| 5443 | attr_list, start - s, len); |
| 5444 | } |
| 5445 | |
| 5446 | static int |
| 5447 | count_cluster_cells(char_u *s, PangoItem *item, |
| 5448 | PangoGlyphString* glyphs, int i, |
| 5449 | int *cluster_width, |
| 5450 | int *last_glyph_rbearing) |
| 5451 | { |
| 5452 | char_u *p; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5453 | int next; // glyph start index of next cluster |
| 5454 | int start, end; // string segment of current cluster |
| 5455 | int width; // real cluster width in Pango units |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5456 | int uc; |
| 5457 | int cellcount = 0; |
| 5458 | |
| 5459 | width = glyphs->glyphs[i].geometry.width; |
| 5460 | |
| 5461 | for (next = i + 1; next < glyphs->num_glyphs; ++next) |
| 5462 | { |
| 5463 | if (glyphs->glyphs[next].attr.is_cluster_start) |
| 5464 | break; |
| 5465 | else if (glyphs->glyphs[next].geometry.width > width) |
| 5466 | width = glyphs->glyphs[next].geometry.width; |
| 5467 | } |
| 5468 | |
| 5469 | start = item->offset + glyphs->log_clusters[i]; |
| 5470 | end = item->offset + ((next < glyphs->num_glyphs) ? |
| 5471 | glyphs->log_clusters[next] : item->length); |
| 5472 | |
| 5473 | for (p = s + start; p < s + end; p += utf_byte2len(*p)) |
| 5474 | { |
| 5475 | uc = utf_ptr2char(p); |
| 5476 | if (uc < 0x80) |
| 5477 | ++cellcount; |
| 5478 | else if (!utf_iscomposing(uc)) |
| 5479 | cellcount += utf_char2cells(uc); |
| 5480 | } |
| 5481 | |
| 5482 | if (last_glyph_rbearing != NULL |
| 5483 | && cellcount > 0 && next == glyphs->num_glyphs) |
| 5484 | { |
| 5485 | PangoRectangle ink_rect; |
| 5486 | /* |
| 5487 | * If a certain combining mark had to be taken from a non-monospace |
| 5488 | * font, we have to compensate manually by adapting x_offset according |
| 5489 | * to the ink extents of the previous glyph. |
| 5490 | */ |
| 5491 | pango_font_get_glyph_extents(item->analysis.font, |
| 5492 | glyphs->glyphs[i].glyph, |
| 5493 | &ink_rect, NULL); |
| 5494 | |
| 5495 | if (PANGO_RBEARING(ink_rect) > 0) |
| 5496 | *last_glyph_rbearing = PANGO_RBEARING(ink_rect); |
| 5497 | } |
| 5498 | |
| 5499 | if (cellcount > 0) |
| 5500 | *cluster_width = width; |
| 5501 | |
| 5502 | return cellcount; |
| 5503 | } |
| 5504 | |
| 5505 | /* |
| 5506 | * If there are only combining characters in the cluster, we cannot just |
| 5507 | * change the width of the previous glyph since there is none. Therefore |
| 5508 | * some guesswork is needed. |
| 5509 | * |
| 5510 | * If ink_rect.x is negative Pango apparently has taken care of the composing |
| 5511 | * by itself. Actually setting x_offset = 0 should be sufficient then, but due |
| 5512 | * 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] | 5513 | * x_offset to avoid ugliness. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5514 | * |
| 5515 | * If ink_rect.x is not negative, force overstriking by pointing x_offset to |
| 5516 | * the position of the previous glyph. Apparently this happens only with old |
| 5517 | * X fonts which don't provide the special combining information needed by |
| 5518 | * Pango. |
| 5519 | */ |
| 5520 | static void |
| 5521 | setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph, |
| 5522 | int last_cellcount, int last_cluster_width, |
| 5523 | int last_glyph_rbearing) |
| 5524 | { |
| 5525 | PangoRectangle ink_rect; |
| 5526 | PangoRectangle logical_rect; |
| 5527 | int width; |
| 5528 | |
| 5529 | width = last_cellcount * gui.char_width * PANGO_SCALE; |
| 5530 | glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2; |
| 5531 | glyph->geometry.width = 0; |
| 5532 | |
| 5533 | pango_font_get_glyph_extents(item->analysis.font, |
| 5534 | glyph->glyph, |
| 5535 | &ink_rect, &logical_rect); |
| 5536 | if (ink_rect.x < 0) |
| 5537 | { |
| 5538 | glyph->geometry.x_offset += last_glyph_rbearing; |
| 5539 | glyph->geometry.y_offset = logical_rect.height |
| 5540 | - (gui.char_height - p_linespace) * PANGO_SCALE; |
| 5541 | } |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5542 | else |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5543 | // If the accent width is smaller than the cluster width, position it |
| 5544 | // in the middle. |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 5545 | glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5546 | } |
| 5547 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5548 | #if GTK_CHECK_VERSION(3,0,0) |
| 5549 | static void |
| 5550 | draw_glyph_string(int row, int col, int num_cells, int flags, |
| 5551 | PangoFont *font, PangoGlyphString *glyphs, |
| 5552 | cairo_t *cr) |
| 5553 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5554 | static void |
| 5555 | draw_glyph_string(int row, int col, int num_cells, int flags, |
| 5556 | PangoFont *font, PangoGlyphString *glyphs) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5557 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5558 | { |
| 5559 | if (!(flags & DRAW_TRANSP)) |
| 5560 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5561 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5562 | cairo_set_source_rgba(cr, |
| 5563 | gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue, |
| 5564 | gui.bgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5565 | cairo_rectangle(cr, |
| 5566 | FILL_X(col), FILL_Y(row), |
| 5567 | num_cells * gui.char_width, gui.char_height); |
| 5568 | cairo_fill(cr); |
| 5569 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5570 | gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
| 5571 | |
| 5572 | gdk_draw_rectangle(gui.drawarea->window, |
| 5573 | gui.text_gc, |
| 5574 | TRUE, |
| 5575 | FILL_X(col), |
| 5576 | FILL_Y(row), |
| 5577 | num_cells * gui.char_width, |
| 5578 | gui.char_height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5579 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5580 | } |
| 5581 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5582 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5583 | cairo_set_source_rgba(cr, |
| 5584 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 5585 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5586 | cairo_move_to(cr, TEXT_X(col), TEXT_Y(row)); |
| 5587 | pango_cairo_show_glyph_string(cr, font, glyphs); |
| 5588 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5589 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 5590 | |
| 5591 | gdk_draw_glyphs(gui.drawarea->window, |
| 5592 | gui.text_gc, |
| 5593 | font, |
| 5594 | TEXT_X(col), |
| 5595 | TEXT_Y(row), |
| 5596 | glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5597 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5598 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5599 | // redraw the contents with an offset of 1 to emulate bold |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5600 | if ((flags & DRAW_BOLD) && !gui.font_can_bold) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5601 | #if GTK_CHECK_VERSION(3,0,0) |
| 5602 | { |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5603 | cairo_set_source_rgba(cr, |
| 5604 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 5605 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5606 | cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row)); |
| 5607 | pango_cairo_show_glyph_string(cr, font, glyphs); |
| 5608 | } |
| 5609 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5610 | gdk_draw_glyphs(gui.drawarea->window, |
| 5611 | gui.text_gc, |
| 5612 | font, |
| 5613 | TEXT_X(col) + 1, |
| 5614 | TEXT_Y(row), |
| 5615 | glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5616 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5617 | } |
| 5618 | |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5619 | /* |
| 5620 | * Draw underline and undercurl at the bottom of the character cell. |
| 5621 | */ |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5622 | #if GTK_CHECK_VERSION(3,0,0) |
| 5623 | static void |
| 5624 | draw_under(int flags, int row, int col, int cells, cairo_t *cr) |
| 5625 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5626 | static void |
| 5627 | draw_under(int flags, int row, int col, int cells) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5628 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5629 | { |
| 5630 | int i; |
| 5631 | int offset; |
Bram Moolenaar | b85cb21 | 2009-05-17 14:24:23 +0000 | [diff] [blame] | 5632 | 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] | 5633 | int y = FILL_Y(row + 1) - 1; |
| 5634 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5635 | // Undercurl: draw curl at the bottom of the character cell. |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5636 | if (flags & DRAW_UNDERC) |
| 5637 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5638 | #if GTK_CHECK_VERSION(3,0,0) |
| 5639 | cairo_set_line_width(cr, 1.0); |
| 5640 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 5641 | cairo_set_source_rgba(cr, |
| 5642 | gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue, |
| 5643 | gui.spcolor->alpha); |
Yamagi | 9cd9385 | 2021-11-20 20:42:29 +0000 | [diff] [blame] | 5644 | cairo_move_to(cr, FILL_X(col) + 1, y - 2 + 0.5); |
| 5645 | for (i = FILL_X(col) + 1; i < FILL_X(col + cells); ++i) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5646 | { |
| 5647 | offset = val[i % 8]; |
| 5648 | cairo_line_to(cr, i, y - offset + 0.5); |
| 5649 | } |
| 5650 | cairo_stroke(cr); |
| 5651 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5652 | gdk_gc_set_foreground(gui.text_gc, gui.spcolor); |
| 5653 | for (i = FILL_X(col); i < FILL_X(col + cells); ++i) |
| 5654 | { |
| 5655 | offset = val[i % 8]; |
| 5656 | gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset); |
| 5657 | } |
| 5658 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5659 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5660 | } |
| 5661 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5662 | // Draw a strikethrough line |
Bram Moolenaar | cf4b00c | 2017-09-02 18:33:56 +0200 | [diff] [blame] | 5663 | if (flags & DRAW_STRIKE) |
| 5664 | { |
| 5665 | #if GTK_CHECK_VERSION(3,0,0) |
| 5666 | cairo_set_line_width(cr, 1.0); |
| 5667 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
| 5668 | cairo_set_source_rgba(cr, |
| 5669 | gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue, |
| 5670 | gui.spcolor->alpha); |
| 5671 | cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5); |
| 5672 | cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5); |
| 5673 | cairo_stroke(cr); |
| 5674 | #else |
| 5675 | gdk_gc_set_foreground(gui.text_gc, gui.spcolor); |
| 5676 | gdk_draw_line(gui.drawarea->window, gui.text_gc, |
| 5677 | FILL_X(col), y + 1 - gui.char_height/2, |
| 5678 | FILL_X(col + cells), y + 1 - gui.char_height/2); |
| 5679 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 5680 | #endif |
| 5681 | } |
| 5682 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5683 | // Underline: draw a line at the bottom of the character cell. |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5684 | if (flags & DRAW_UNDERL) |
| 5685 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5686 | // When p_linespace is 0, overwrite the bottom row of pixels. |
| 5687 | // Otherwise put the line just below the character. |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5688 | if (p_linespace > 1) |
| 5689 | y -= p_linespace - 1; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5690 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | cf4b00c | 2017-09-02 18:33:56 +0200 | [diff] [blame] | 5691 | cairo_set_line_width(cr, 1.0); |
| 5692 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
| 5693 | cairo_set_source_rgba(cr, |
| 5694 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 5695 | gui.fgcolor->alpha); |
| 5696 | cairo_move_to(cr, FILL_X(col), y + 0.5); |
| 5697 | cairo_line_to(cr, FILL_X(col + cells), y + 0.5); |
| 5698 | cairo_stroke(cr); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5699 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5700 | gdk_draw_line(gui.drawarea->window, gui.text_gc, |
| 5701 | FILL_X(col), y, |
| 5702 | FILL_X(col + cells) - 1, y); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5703 | #endif |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 5704 | } |
| 5705 | } |
| 5706 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5707 | int |
| 5708 | gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags) |
| 5709 | { |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5710 | char_u *conv_buf = NULL; // result of UTF-8 conversion |
| 5711 | char_u *new_conv_buf; |
| 5712 | int convlen; |
| 5713 | char_u *sp, *bp; |
| 5714 | int plen; |
| 5715 | int len_sum; // return value needs to add up since we are |
| 5716 | // printing substrings |
| 5717 | int byte_sum; // byte position in string |
| 5718 | char_u *cs; // current *s pointer |
| 5719 | int needs_pango; // look ahead, 0=ascii 1=unicode/ligatures |
Bram Moolenaar | 9d4b8ca | 2021-10-17 11:33:47 +0100 | [diff] [blame] | 5720 | int should_need_pango = FALSE; |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5721 | int slen; |
| 5722 | int is_ligature; |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5723 | int is_utf8; |
| 5724 | char_u backup_ch; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5725 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5726 | if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5727 | return len; |
| 5728 | |
| 5729 | if (output_conv.vc_type != CONV_NONE) |
| 5730 | { |
| 5731 | /* |
| 5732 | * Convert characters from 'encoding' to 'termencoding', which is set |
| 5733 | * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c |
| 5734 | * prohibits changing this to something else than UTF-8 if the GUI is |
| 5735 | * in use. |
| 5736 | */ |
| 5737 | convlen = len; |
| 5738 | conv_buf = string_convert(&output_conv, s, &convlen); |
| 5739 | g_return_val_if_fail(conv_buf != NULL, len); |
| 5740 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5741 | // Correct for differences in char width: some chars are |
| 5742 | // double-wide in 'encoding' but single-wide in utf-8. Add a space to |
| 5743 | // compensate for that. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5744 | for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; ) |
| 5745 | { |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 5746 | plen = utf_ptr2len(bp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5747 | if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1) |
| 5748 | { |
| 5749 | new_conv_buf = alloc(convlen + 2); |
| 5750 | if (new_conv_buf == NULL) |
| 5751 | return len; |
| 5752 | plen += bp - conv_buf; |
| 5753 | mch_memmove(new_conv_buf, conv_buf, plen); |
| 5754 | new_conv_buf[plen] = ' '; |
| 5755 | mch_memmove(new_conv_buf + plen + 1, conv_buf + plen, |
| 5756 | convlen - plen + 1); |
| 5757 | vim_free(conv_buf); |
| 5758 | conv_buf = new_conv_buf; |
| 5759 | ++convlen; |
| 5760 | bp = conv_buf + plen; |
| 5761 | plen = 1; |
| 5762 | } |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 5763 | sp += (*mb_ptr2len)(sp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5764 | bp += plen; |
| 5765 | } |
| 5766 | s = conv_buf; |
| 5767 | len = convlen; |
| 5768 | } |
| 5769 | |
| 5770 | /* |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5771 | * Ligature support and complex utf-8 char optimization: |
| 5772 | * String received to output to screen can print using pre-cached glyphs |
| 5773 | * (fast) or Pango (slow). Ligatures and multibype utf-8 must use Pango. |
| 5774 | * Since we receive mixed content string, split it into logical segments |
dundargoc | c57b5bc | 2022-11-02 13:30:51 +0000 | [diff] [blame] | 5775 | * that are guaranteed to go through glyphs as much as possible. Since |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5776 | * single ligature char prints as ascii, print it that way. |
| 5777 | */ |
| 5778 | len_sum = 0; // return value needs to add up since we are printing |
| 5779 | // substrings |
| 5780 | byte_sum = 0; |
| 5781 | cs = s; |
Dusan Popovic | 3c19b50 | 2021-11-20 22:03:30 +0000 | [diff] [blame] | 5782 | // First char decides starting needs_pango mode, 0=ascii 1=utf8/ligatures. |
| 5783 | // Even if it is ligature char, two chars or more make ligature. |
dundargoc | c57b5bc | 2022-11-02 13:30:51 +0000 | [diff] [blame] | 5784 | // Ascii followed by utf8 is also going through pango. |
Dusan Popovic | 3c19b50 | 2021-11-20 22:03:30 +0000 | [diff] [blame] | 5785 | is_utf8 = (*cs & 0x80); |
| 5786 | is_ligature = gui.ligatures_map[*cs] && (len > 1); |
| 5787 | if (is_ligature) |
| 5788 | is_ligature = gui.ligatures_map[*(cs + 1)]; |
| 5789 | if (!is_utf8 && len > 1) |
| 5790 | is_utf8 = (*(cs + 1) & 0x80) != 0; |
| 5791 | needs_pango = is_utf8 || is_ligature; |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5792 | |
| 5793 | // split string into ascii and non-ascii (ligatures + utf-8) substrings, |
| 5794 | // print glyphs or use Pango |
| 5795 | while (cs < s + len) |
| 5796 | { |
| 5797 | slen = 0; |
| 5798 | while (slen < (len - byte_sum)) |
| 5799 | { |
| 5800 | is_ligature = gui.ligatures_map[*(cs + slen)]; |
| 5801 | // look ahead, single ligature char between ascii is ascii |
| 5802 | if (is_ligature && !needs_pango) |
| 5803 | { |
| 5804 | if ((slen + 1) < (len - byte_sum)) |
Dusan Popovic | 3c19b50 | 2021-11-20 22:03:30 +0000 | [diff] [blame] | 5805 | is_ligature = gui.ligatures_map[*(cs + slen + 1)]; |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5806 | else |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5807 | is_ligature = 0; |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5808 | } |
| 5809 | is_utf8 = *(cs + slen) & 0x80; |
Dusan Popovic | 3c19b50 | 2021-11-20 22:03:30 +0000 | [diff] [blame] | 5810 | // ascii followed by utf8 could be combining |
dundargoc | c57b5bc | 2022-11-02 13:30:51 +0000 | [diff] [blame] | 5811 | // if so send it through pango |
Dusan Popovic | 3c19b50 | 2021-11-20 22:03:30 +0000 | [diff] [blame] | 5812 | if ((!is_utf8) && ((slen + 1) < (len - byte_sum))) |
| 5813 | is_utf8 = (*(cs + slen + 1) & 0x80); |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5814 | should_need_pango = (is_ligature || is_utf8); |
| 5815 | if (needs_pango != should_need_pango) // mode switch |
| 5816 | break; |
| 5817 | if (needs_pango) |
| 5818 | { |
| 5819 | if (is_ligature) |
| 5820 | { |
| 5821 | slen++; // ligature char by char |
| 5822 | } |
Bram Moolenaar | 2c23670 | 2021-11-21 11:15:49 +0000 | [diff] [blame] | 5823 | else // is_utf8 |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5824 | { |
| 5825 | if ((*(cs + slen) & 0xC0) == 0x80) |
| 5826 | { |
| 5827 | // a continuation, find next 0xC0 != 0x80 but don't |
| 5828 | // include it |
| 5829 | while ((slen < (len - byte_sum)) |
| 5830 | && ((*(cs + slen) & 0xC0) == 0x80)) |
| 5831 | { |
| 5832 | slen++; |
| 5833 | } |
| 5834 | } |
| 5835 | else if ((*(cs + slen) & 0xE0) == 0xC0) |
| 5836 | { |
| 5837 | // + one byte utf8 |
| 5838 | slen++; |
| 5839 | } |
| 5840 | else if ((*(cs + slen) & 0xF0) == 0xE0) |
| 5841 | { |
| 5842 | // + two bytes utf8 |
| 5843 | slen += 2; |
| 5844 | } |
| 5845 | else if ((*(cs + slen) & 0xF8) == 0xF0) |
| 5846 | { |
| 5847 | // + three bytes utf8 |
| 5848 | slen += 3; |
| 5849 | } |
| 5850 | else |
| 5851 | { |
| 5852 | // this should not happen, try moving forward, Pango |
| 5853 | // will catch it |
| 5854 | slen++; |
| 5855 | } |
| 5856 | } |
| 5857 | } |
| 5858 | else |
| 5859 | { |
| 5860 | slen++; // ascii |
| 5861 | } |
| 5862 | } |
Bram Moolenaar | 9d4b8ca | 2021-10-17 11:33:47 +0100 | [diff] [blame] | 5863 | |
Bram Moolenaar | d68a004 | 2021-10-20 23:08:11 +0100 | [diff] [blame] | 5864 | if (slen < len) |
| 5865 | { |
| 5866 | // temporarily zero terminate substring, print, restore char, wrap |
| 5867 | backup_ch = *(cs + slen); |
| 5868 | *(cs + slen) = NUL; |
| 5869 | } |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5870 | len_sum += gui_gtk2_draw_string_ext(row, col + len_sum, |
| 5871 | cs, slen, flags, needs_pango); |
Bram Moolenaar | d68a004 | 2021-10-20 23:08:11 +0100 | [diff] [blame] | 5872 | if (slen < len) |
| 5873 | *(cs + slen) = backup_ch; |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5874 | cs += slen; |
| 5875 | byte_sum += slen; |
| 5876 | needs_pango = should_need_pango; |
| 5877 | } |
| 5878 | vim_free(conv_buf); |
| 5879 | return len_sum; |
| 5880 | } |
| 5881 | |
| 5882 | int |
| 5883 | gui_gtk2_draw_string_ext( |
| 5884 | int row, |
| 5885 | int col, |
| 5886 | char_u *s, |
| 5887 | int len, |
| 5888 | int flags, |
| 5889 | int force_pango) |
| 5890 | { |
| 5891 | GdkRectangle area; // area for clip mask |
| 5892 | PangoGlyphString *glyphs; // glyphs of current item |
| 5893 | int column_offset = 0; // column offset in cells |
| 5894 | int i; |
| 5895 | #if GTK_CHECK_VERSION(3,0,0) |
| 5896 | cairo_t *cr; |
| 5897 | #endif |
| 5898 | |
| 5899 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5900 | * Restrict all drawing to the current screen line in order to prevent |
| 5901 | * fuzzy font lookups from messing up the screen. |
| 5902 | */ |
| 5903 | area.x = gui.border_offset; |
| 5904 | area.y = FILL_Y(row); |
| 5905 | area.width = gui.num_cols * gui.char_width; |
| 5906 | area.height = gui.char_height; |
| 5907 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5908 | #if GTK_CHECK_VERSION(3,0,0) |
| 5909 | cr = cairo_create(gui.surface); |
| 5910 | cairo_rectangle(cr, area.x, area.y, area.width, area.height); |
| 5911 | cairo_clip(cr); |
| 5912 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5913 | gdk_gc_set_clip_origin(gui.text_gc, 0, 0); |
| 5914 | gdk_gc_set_clip_rectangle(gui.text_gc, &area); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5915 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5916 | |
| 5917 | glyphs = pango_glyph_string_new(); |
| 5918 | |
| 5919 | /* |
| 5920 | * Optimization hack: If possible, skip the itemize and shaping process |
| 5921 | * for pure ASCII strings. This optimization is particularly effective |
| 5922 | * because Vim draws space characters to clear parts of the screen. |
| 5923 | */ |
| 5924 | if (!(flags & DRAW_ITALIC) |
| 5925 | && !((flags & DRAW_BOLD) && gui.font_can_bold) |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 5926 | && gui.ascii_glyphs != NULL |
| 5927 | && !force_pango) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5928 | { |
| 5929 | char_u *p; |
| 5930 | |
| 5931 | for (p = s; p < s + len; ++p) |
| 5932 | if (*p & 0x80) |
| 5933 | goto not_ascii; |
| 5934 | |
| 5935 | pango_glyph_string_set_size(glyphs, len); |
| 5936 | |
| 5937 | for (i = 0; i < len; ++i) |
| 5938 | { |
Bram Moolenaar | 16350cb | 2016-08-14 20:27:34 +0200 | [diff] [blame] | 5939 | glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5940 | glyphs->log_clusters[i] = i; |
| 5941 | } |
| 5942 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5943 | #if GTK_CHECK_VERSION(3,0,0) |
| 5944 | draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr); |
| 5945 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5946 | draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 5947 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5948 | |
| 5949 | column_offset = len; |
| 5950 | } |
| 5951 | else |
| 5952 | not_ascii: |
| 5953 | { |
| 5954 | PangoAttrList *attr_list; |
| 5955 | GList *item_list; |
| 5956 | int cluster_width; |
| 5957 | int last_glyph_rbearing; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5958 | int cells = 0; // cells occupied by current cluster |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5959 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5960 | // Safety check: pango crashes when invoked with invalid utf-8 |
| 5961 | // characters. |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5962 | if (!utf_valid_string(s, s + len)) |
| 5963 | { |
| 5964 | column_offset = len; |
| 5965 | goto skipitall; |
| 5966 | } |
| 5967 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5968 | // original width of the current cluster |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5969 | cluster_width = PANGO_SCALE * gui.char_width; |
| 5970 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5971 | // right bearing of the last non-composing glyph |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5972 | last_glyph_rbearing = PANGO_SCALE * gui.char_width; |
| 5973 | |
| 5974 | attr_list = pango_attr_list_new(); |
| 5975 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5976 | // If 'guifontwide' is set then use that for double-width characters. |
| 5977 | // Otherwise just go with 'guifont' and let Pango do its thing. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5978 | if (gui.wide_font != NULL) |
| 5979 | apply_wide_font_attr(s, len, attr_list); |
| 5980 | |
| 5981 | if ((flags & DRAW_BOLD) && gui.font_can_bold) |
| 5982 | INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD), |
| 5983 | attr_list, 0, len); |
| 5984 | if (flags & DRAW_ITALIC) |
| 5985 | INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC), |
| 5986 | attr_list, 0, len); |
| 5987 | /* |
| 5988 | * Break the text into segments with consistent directional level |
| 5989 | * and shaping engine. Pure Latin text needs only a single segment, |
| 5990 | * so there's no need to worry about the loop's efficiency. Better |
| 5991 | * try to optimize elsewhere, e.g. reducing exposes and stuff :) |
| 5992 | */ |
| 5993 | item_list = pango_itemize(gui.text_context, |
| 5994 | (const char *)s, 0, len, attr_list, NULL); |
| 5995 | |
| 5996 | while (item_list != NULL) |
| 5997 | { |
| 5998 | PangoItem *item; |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 5999 | int item_cells = 0; // item length in cells |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6000 | |
| 6001 | item = (PangoItem *)item_list->data; |
| 6002 | item_list = g_list_delete_link(item_list, item_list); |
| 6003 | /* |
| 6004 | * Increment the bidirectional embedding level by 1 if it is not |
| 6005 | * even. An odd number means the output will be RTL, but we don't |
| 6006 | * want that since Vim handles right-to-left text on its own. It |
| 6007 | * would probably be sufficient to just set level = 0, but you can |
| 6008 | * never know :) |
| 6009 | * |
| 6010 | * Unfortunately we can't take advantage of Pango's ability to |
| 6011 | * render both LTR and RTL at the same time. In order to support |
| 6012 | * that, Vim's main screen engine would have to make use of Pango |
| 6013 | * functionality. |
| 6014 | */ |
| 6015 | item->analysis.level = (item->analysis.level + 1) & (~1U); |
| 6016 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6017 | // HACK: Overrule the shape engine, we don't want shaping to be |
| 6018 | // done, because drawing the cursor would change the display. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6019 | item->analysis.shape_engine = default_shape_engine; |
| 6020 | |
Bram Moolenaar | 3cbe0c0 | 2015-09-08 20:00:22 +0200 | [diff] [blame] | 6021 | #ifdef HAVE_PANGO_SHAPE_FULL |
Bram Moolenaar | 7e2ec00 | 2015-09-08 16:31:06 +0200 | [diff] [blame] | 6022 | pango_shape_full((const char *)s + item->offset, item->length, |
| 6023 | (const char *)s, len, &item->analysis, glyphs); |
Bram Moolenaar | 3cbe0c0 | 2015-09-08 20:00:22 +0200 | [diff] [blame] | 6024 | #else |
| 6025 | pango_shape((const char *)s + item->offset, item->length, |
| 6026 | &item->analysis, glyphs); |
| 6027 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6028 | /* |
| 6029 | * Fixed-width hack: iterate over the array and assign a fixed |
| 6030 | * width to each glyph, thus overriding the choice made by the |
| 6031 | * shaping engine. We use utf_char2cells() to determine the |
| 6032 | * number of cells needed. |
| 6033 | * |
| 6034 | * Also perform all kind of dark magic to get composing |
| 6035 | * characters right (and pretty too of course). |
| 6036 | */ |
| 6037 | for (i = 0; i < glyphs->num_glyphs; ++i) |
| 6038 | { |
| 6039 | PangoGlyphInfo *glyph; |
| 6040 | |
| 6041 | glyph = &glyphs->glyphs[i]; |
| 6042 | |
| 6043 | if (glyph->attr.is_cluster_start) |
| 6044 | { |
| 6045 | int cellcount; |
| 6046 | |
| 6047 | cellcount = count_cluster_cells( |
| 6048 | s, item, glyphs, i, &cluster_width, |
| 6049 | (item_list != NULL) ? &last_glyph_rbearing : NULL); |
| 6050 | |
| 6051 | if (cellcount > 0) |
| 6052 | { |
| 6053 | int width; |
| 6054 | |
| 6055 | width = cellcount * gui.char_width * PANGO_SCALE; |
| 6056 | glyph->geometry.x_offset += |
| 6057 | MAX(0, width - cluster_width) / 2; |
| 6058 | glyph->geometry.width = width; |
| 6059 | } |
| 6060 | else |
| 6061 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6062 | // If there are only combining characters in the |
| 6063 | // cluster, we cannot just change the width of the |
| 6064 | // previous glyph since there is none. Therefore |
| 6065 | // some guesswork is needed. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6066 | setup_zero_width_cluster(item, glyph, cells, |
| 6067 | cluster_width, |
| 6068 | last_glyph_rbearing); |
| 6069 | } |
| 6070 | |
| 6071 | item_cells += cellcount; |
| 6072 | cells = cellcount; |
| 6073 | } |
| 6074 | else if (i > 0) |
| 6075 | { |
| 6076 | int width; |
| 6077 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6078 | // There is a previous glyph, so we deal with combining |
| 6079 | // characters the canonical way. |
| 6080 | // In some circumstances Pango uses a positive x_offset, |
| 6081 | // then use the width of the previous glyph for this one |
| 6082 | // and set the previous width to zero. |
| 6083 | // Otherwise we get a negative x_offset, Pango has already |
| 6084 | // positioned the combining char, keep the widths as they |
| 6085 | // are. |
| 6086 | // For both adjust the x_offset to position the glyph in |
| 6087 | // the middle. |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 6088 | if (glyph->geometry.x_offset >= 0) |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 6089 | { |
| 6090 | glyphs->glyphs[i].geometry.width = |
| 6091 | glyphs->glyphs[i - 1].geometry.width; |
Bram Moolenaar | 706e84b | 2010-08-07 15:46:45 +0200 | [diff] [blame] | 6092 | glyphs->glyphs[i - 1].geometry.width = 0; |
Bram Moolenaar | 96118f3 | 2010-08-08 14:40:37 +0200 | [diff] [blame] | 6093 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6094 | width = cells * gui.char_width * PANGO_SCALE; |
| 6095 | glyph->geometry.x_offset += |
| 6096 | MAX(0, width - cluster_width) / 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6097 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6098 | else // i == 0 "cannot happen" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6099 | { |
| 6100 | glyph->geometry.width = 0; |
| 6101 | } |
| 6102 | } |
| 6103 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6104 | //// Aaaaand action! ** |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6105 | #if GTK_CHECK_VERSION(3,0,0) |
| 6106 | draw_glyph_string(row, col + column_offset, item_cells, |
| 6107 | flags, item->analysis.font, glyphs, |
| 6108 | cr); |
| 6109 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6110 | draw_glyph_string(row, col + column_offset, item_cells, |
| 6111 | flags, item->analysis.font, glyphs); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6112 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6113 | |
| 6114 | pango_item_free(item); |
| 6115 | |
| 6116 | column_offset += item_cells; |
| 6117 | } |
| 6118 | |
| 6119 | pango_attr_list_unref(attr_list); |
| 6120 | } |
| 6121 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6122 | skipitall: |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6123 | // Draw underline and undercurl. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6124 | #if GTK_CHECK_VERSION(3,0,0) |
| 6125 | draw_under(flags, row, col, column_offset, cr); |
| 6126 | #else |
Bram Moolenaar | f36d369 | 2005-03-15 22:48:14 +0000 | [diff] [blame] | 6127 | draw_under(flags, row, col, column_offset); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6128 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6129 | |
| 6130 | pango_glyph_string_free(glyphs); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6131 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6132 | #if GTK_CHECK_VERSION(3,0,0) |
| 6133 | cairo_destroy(cr); |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6134 | gtk_widget_queue_draw_area(gui.drawarea, area.x, area.y, |
| 6135 | area.width, area.height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6136 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6137 | gdk_gc_set_clip_rectangle(gui.text_gc, NULL); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6138 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6139 | |
| 6140 | return column_offset; |
| 6141 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6142 | |
| 6143 | /* |
| 6144 | * Return OK if the key with the termcap name "name" is supported. |
| 6145 | */ |
| 6146 | int |
| 6147 | gui_mch_haskey(char_u *name) |
| 6148 | { |
| 6149 | int i; |
| 6150 | |
| 6151 | for (i = 0; special_keys[i].key_sym != 0; i++) |
| 6152 | if (name[0] == special_keys[i].code0 |
| 6153 | && name[1] == special_keys[i].code1) |
| 6154 | return OK; |
| 6155 | return FAIL; |
| 6156 | } |
| 6157 | |
rbtnn | b850c39 | 2022-10-01 15:47:04 +0100 | [diff] [blame] | 6158 | #if defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6159 | /* |
| 6160 | * Return the text window-id and display. Only required for X-based GUI's |
| 6161 | */ |
| 6162 | int |
| 6163 | gui_get_x11_windis(Window *win, Display **dis) |
| 6164 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6165 | if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6166 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6167 | *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
| 6168 | *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6169 | return OK; |
| 6170 | } |
| 6171 | |
| 6172 | *dis = NULL; |
| 6173 | *win = 0; |
| 6174 | return FAIL; |
| 6175 | } |
| 6176 | #endif |
| 6177 | |
| 6178 | #if defined(FEAT_CLIENTSERVER) \ |
| 6179 | || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO) |
| 6180 | |
| 6181 | Display * |
| 6182 | gui_mch_get_display(void) |
| 6183 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6184 | if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL) |
| 6185 | return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6186 | else |
| 6187 | return NULL; |
| 6188 | } |
| 6189 | #endif |
| 6190 | |
| 6191 | void |
| 6192 | gui_mch_beep(void) |
| 6193 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6194 | GdkDisplay *display; |
| 6195 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6196 | if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6197 | display = gtk_widget_get_display(gui.mainwin); |
| 6198 | else |
| 6199 | display = gdk_display_get_default(); |
| 6200 | |
| 6201 | if (display != NULL) |
| 6202 | gdk_display_beep(display); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6203 | } |
| 6204 | |
| 6205 | void |
| 6206 | gui_mch_flash(int msec) |
| 6207 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6208 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6209 | // TODO Replace GdkGC with Cairo |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6210 | (void)msec; |
| 6211 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6212 | GdkGCValues values; |
| 6213 | GdkGC *invert_gc; |
| 6214 | |
| 6215 | if (gui.drawarea->window == NULL) |
| 6216 | return; |
| 6217 | |
| 6218 | values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 6219 | values.background.pixel = gui.norm_pixel ^ gui.back_pixel; |
| 6220 | values.function = GDK_XOR; |
| 6221 | invert_gc = gdk_gc_new_with_values(gui.drawarea->window, |
| 6222 | &values, |
| 6223 | GDK_GC_FOREGROUND | |
| 6224 | GDK_GC_BACKGROUND | |
| 6225 | GDK_GC_FUNCTION); |
| 6226 | gdk_gc_set_exposures(invert_gc, |
| 6227 | gui.visibility != GDK_VISIBILITY_UNOBSCURED); |
| 6228 | /* |
| 6229 | * Do a visual beep by changing back and forth in some undetermined way, |
| 6230 | * the foreground and background colors. This is due to the fact that |
| 6231 | * there can't be really any prediction about the effects of XOR on |
| 6232 | * arbitrary X11 servers. However this seems to be enough for what we |
| 6233 | * intend it to do. |
| 6234 | */ |
| 6235 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 6236 | TRUE, |
| 6237 | 0, 0, |
| 6238 | FILL_X((int)Columns) + gui.border_offset, |
| 6239 | FILL_Y((int)Rows) + gui.border_offset); |
| 6240 | |
| 6241 | gui_mch_flush(); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6242 | ui_delay((long)msec, TRUE); // wait so many msec |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6243 | |
| 6244 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 6245 | TRUE, |
| 6246 | 0, 0, |
| 6247 | FILL_X((int)Columns) + gui.border_offset, |
| 6248 | FILL_Y((int)Rows) + gui.border_offset); |
| 6249 | |
| 6250 | gdk_gc_destroy(invert_gc); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6251 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6252 | } |
| 6253 | |
| 6254 | /* |
| 6255 | * Invert a rectangle from row r, column c, for nr rows and nc columns. |
| 6256 | */ |
| 6257 | void |
| 6258 | gui_mch_invert_rectangle(int r, int c, int nr, int nc) |
| 6259 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6260 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 4fc563b | 2016-03-12 12:40:58 +0100 | [diff] [blame] | 6261 | const GdkRectangle rect = { |
| 6262 | FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height |
| 6263 | }; |
| 6264 | cairo_t * const cr = cairo_create(gui.surface); |
| 6265 | |
Your Name | 810cb5a | 2022-09-13 11:25:54 +0100 | [diff] [blame] | 6266 | cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 1.0); |
Bram Moolenaar | 4fc563b | 2016-03-12 12:40:58 +0100 | [diff] [blame] | 6267 | # if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2) |
| 6268 | cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE); |
| 6269 | # else |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6270 | // Give an implementation for older cairo versions if necessary. |
Bram Moolenaar | 4fc563b | 2016-03-12 12:40:58 +0100 | [diff] [blame] | 6271 | # endif |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6272 | cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height); |
Bram Moolenaar | 4fc563b | 2016-03-12 12:40:58 +0100 | [diff] [blame] | 6273 | cairo_fill(cr); |
| 6274 | |
| 6275 | cairo_destroy(cr); |
| 6276 | |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6277 | gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y, |
| 6278 | rect.width, rect.height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6279 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6280 | GdkGCValues values; |
| 6281 | GdkGC *invert_gc; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6282 | |
| 6283 | if (gui.drawarea->window == NULL) |
| 6284 | return; |
| 6285 | |
Your Name | 810cb5a | 2022-09-13 11:25:54 +0100 | [diff] [blame] | 6286 | values.function = GDK_INVERT; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6287 | invert_gc = gdk_gc_new_with_values(gui.drawarea->window, |
| 6288 | &values, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6289 | GDK_GC_FUNCTION); |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 6290 | gdk_gc_set_exposures(invert_gc, gui.visibility != |
| 6291 | GDK_VISIBILITY_UNOBSCURED); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6292 | gdk_draw_rectangle(gui.drawarea->window, invert_gc, |
| 6293 | TRUE, |
| 6294 | FILL_X(c), FILL_Y(r), |
| 6295 | (nc) * gui.char_width, (nr) * gui.char_height); |
| 6296 | gdk_gc_destroy(invert_gc); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6297 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6298 | } |
| 6299 | |
| 6300 | /* |
| 6301 | * Iconify the GUI window. |
| 6302 | */ |
| 6303 | void |
| 6304 | gui_mch_iconify(void) |
| 6305 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6306 | gtk_window_iconify(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6307 | } |
| 6308 | |
| 6309 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 6310 | /* |
| 6311 | * Bring the Vim window to the foreground. |
| 6312 | */ |
| 6313 | void |
| 6314 | gui_mch_set_foreground(void) |
| 6315 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6316 | gtk_window_present(GTK_WINDOW(gui.mainwin)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6317 | } |
| 6318 | #endif |
| 6319 | |
| 6320 | /* |
| 6321 | * Draw a cursor without focus. |
| 6322 | */ |
| 6323 | void |
| 6324 | gui_mch_draw_hollow_cursor(guicolor_T color) |
| 6325 | { |
| 6326 | int i = 1; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6327 | #if GTK_CHECK_VERSION(3,0,0) |
| 6328 | cairo_t *cr; |
| 6329 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6330 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6331 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6332 | return; |
| 6333 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6334 | #if GTK_CHECK_VERSION(3,0,0) |
| 6335 | cr = cairo_create(gui.surface); |
| 6336 | #endif |
| 6337 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6338 | gui_mch_set_fg_color(color); |
| 6339 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6340 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6341 | cairo_set_source_rgba(cr, |
| 6342 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 6343 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6344 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6345 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6346 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6347 | if (mb_lefthalve(gui.row, gui.col)) |
| 6348 | i = 2; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6349 | #if GTK_CHECK_VERSION(3,0,0) |
| 6350 | cairo_set_line_width(cr, 1.0); |
| 6351 | cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT); |
| 6352 | cairo_rectangle(cr, |
| 6353 | FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5, |
| 6354 | i * gui.char_width - 1, gui.char_height - 1); |
| 6355 | cairo_stroke(cr); |
| 6356 | cairo_destroy(cr); |
| 6357 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6358 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
| 6359 | FALSE, |
| 6360 | FILL_X(gui.col), FILL_Y(gui.row), |
| 6361 | i * gui.char_width - 1, gui.char_height - 1); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6362 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6363 | } |
| 6364 | |
| 6365 | /* |
| 6366 | * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using |
| 6367 | * color "color". |
| 6368 | */ |
| 6369 | void |
| 6370 | gui_mch_draw_part_cursor(int w, int h, guicolor_T color) |
| 6371 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6372 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6373 | return; |
| 6374 | |
| 6375 | gui_mch_set_fg_color(color); |
| 6376 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6377 | #if GTK_CHECK_VERSION(3,0,0) |
| 6378 | { |
| 6379 | cairo_t *cr; |
| 6380 | |
| 6381 | cr = cairo_create(gui.surface); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6382 | cairo_set_source_rgba(cr, |
| 6383 | gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
| 6384 | gui.fgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6385 | cairo_rectangle(cr, |
| 6386 | # ifdef FEAT_RIGHTLEFT |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6387 | // vertical line should be on the right of current point |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6388 | CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : |
| 6389 | # endif |
| 6390 | FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h, |
| 6391 | w, h); |
| 6392 | cairo_fill(cr); |
| 6393 | cairo_destroy(cr); |
| 6394 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6395 | #else // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6396 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 6397 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, |
| 6398 | TRUE, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6399 | # ifdef FEAT_RIGHTLEFT |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6400 | // vertical line should be on the right of current point |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6401 | CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6402 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6403 | FILL_X(gui.col), |
| 6404 | FILL_Y(gui.row) + gui.char_height - h, |
| 6405 | w, h); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6406 | #endif // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6407 | } |
| 6408 | |
| 6409 | |
| 6410 | /* |
| 6411 | * Catch up with any queued X11 events. This may put keyboard input into the |
| 6412 | * input buffer, call resize call-backs, trigger timers etc. If there is |
| 6413 | * nothing in the X11 event queue (& no timers pending), then we return |
| 6414 | * immediately. |
| 6415 | */ |
| 6416 | void |
| 6417 | gui_mch_update(void) |
| 6418 | { |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 6419 | while (g_main_context_pending(NULL) && !vim_is_input_buf_full()) |
| 6420 | g_main_context_iteration(NULL, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6421 | } |
| 6422 | |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6423 | static timeout_cb_type |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6424 | input_timer_cb(gpointer data) |
| 6425 | { |
| 6426 | int *timed_out = (int *) data; |
| 6427 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6428 | // Just inform the caller about the occurrence of it |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6429 | *timed_out = TRUE; |
| 6430 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6431 | return FALSE; // don't happen again |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6432 | } |
| 6433 | |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6434 | #ifdef FEAT_JOB_CHANNEL |
| 6435 | static timeout_cb_type |
| 6436 | channel_poll_cb(gpointer data UNUSED) |
| 6437 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6438 | // Using an event handler for a channel that may be disconnected does |
| 6439 | // not work, it hangs. Instead poll for messages. |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6440 | channel_handle_events(TRUE); |
| 6441 | parse_queued_messages(); |
| 6442 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6443 | return TRUE; // repeat |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6444 | } |
| 6445 | #endif |
| 6446 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6447 | /* |
| 6448 | * GUI input routine called by gui_wait_for_chars(). Waits for a character |
| 6449 | * from the keyboard. |
| 6450 | * wtime == -1 Wait forever. |
| 6451 | * wtime == 0 This should never happen. |
| 6452 | * wtime > 0 Wait wtime milliseconds for a character. |
| 6453 | * Returns OK if a character was found to be available within the given time, |
| 6454 | * or FAIL otherwise. |
| 6455 | */ |
| 6456 | int |
| 6457 | gui_mch_wait_for_chars(long wtime) |
| 6458 | { |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6459 | int focus; |
| 6460 | guint timer; |
| 6461 | static int timed_out; |
| 6462 | int retval = FAIL; |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6463 | #ifdef FEAT_JOB_CHANNEL |
| 6464 | guint channel_timer = 0; |
| 6465 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6466 | |
| 6467 | timed_out = FALSE; |
| 6468 | |
Bram Moolenaar | 12dfc9e | 2019-01-28 22:32:58 +0100 | [diff] [blame] | 6469 | // This timeout makes sure that we will return if no characters arrived in |
| 6470 | // time. If "wtime" is zero just use one. |
| 6471 | if (wtime >= 0) |
Bram Moolenaar | 34a5874 | 2019-02-03 15:28:28 +0100 | [diff] [blame] | 6472 | timer = timeout_add(wtime == 0 ? 1L : wtime, |
Bram Moolenaar | 12dfc9e | 2019-01-28 22:32:58 +0100 | [diff] [blame] | 6473 | input_timer_cb, &timed_out); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6474 | else |
| 6475 | timer = 0; |
| 6476 | |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6477 | #ifdef FEAT_JOB_CHANNEL |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6478 | // If there is a channel with the keep_open flag we need to poll for input |
| 6479 | // on them. |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6480 | if (channel_any_keep_open()) |
| 6481 | channel_timer = timeout_add(20, channel_poll_cb, NULL); |
| 6482 | #endif |
| 6483 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6484 | focus = gui.in_focus; |
| 6485 | |
| 6486 | do |
| 6487 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6488 | // Stop or start blinking when focus changes |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6489 | if (gui.in_focus != focus) |
| 6490 | { |
| 6491 | if (gui.in_focus) |
| 6492 | gui_mch_start_blink(); |
| 6493 | else |
Bram Moolenaar | 1dd45fb | 2018-01-31 21:10:01 +0100 | [diff] [blame] | 6494 | gui_mch_stop_blink(TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6495 | focus = gui.in_focus; |
| 6496 | } |
| 6497 | |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 6498 | #ifdef MESSAGE_QUEUE |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6499 | # ifdef FEAT_TIMERS |
| 6500 | did_add_timer = FALSE; |
| 6501 | # endif |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 6502 | parse_queued_messages(); |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6503 | # ifdef FEAT_TIMERS |
| 6504 | if (did_add_timer) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6505 | // Need to recompute the waiting time. |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6506 | goto theend; |
| 6507 | # endif |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 6508 | #endif |
| 6509 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6510 | /* |
| 6511 | * Loop in GTK+ processing until a timeout or input occurs. |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 6512 | * Skip this if input is available anyway (can happen in rare |
| 6513 | * situations, sort of race condition). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6514 | */ |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 6515 | if (!input_available()) |
Bram Moolenaar | a3f4166 | 2010-07-11 19:01:06 +0200 | [diff] [blame] | 6516 | g_main_context_iteration(NULL, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6517 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6518 | // Got char, return immediately |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6519 | if (input_available()) |
| 6520 | { |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6521 | retval = OK; |
| 6522 | goto theend; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6523 | } |
| 6524 | } while (wtime < 0 || !timed_out); |
| 6525 | |
| 6526 | /* |
| 6527 | * Flush all eventually pending (drawing) events. |
| 6528 | */ |
| 6529 | gui_mch_update(); |
| 6530 | |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6531 | theend: |
| 6532 | if (timer != 0 && !timed_out) |
Bram Moolenaar | 4ab7968 | 2017-08-27 14:50:47 +0200 | [diff] [blame] | 6533 | timeout_remove(timer); |
| 6534 | #ifdef FEAT_JOB_CHANNEL |
| 6535 | if (channel_timer != 0) |
| 6536 | timeout_remove(channel_timer); |
Bram Moolenaar | 4231da4 | 2016-06-02 14:30:04 +0200 | [diff] [blame] | 6537 | #endif |
| 6538 | |
| 6539 | return retval; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6540 | } |
| 6541 | |
| 6542 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6543 | ///////////////////////////////////////////////////////////////////////////// |
| 6544 | // Output drawing routines. |
| 6545 | // |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6546 | |
| 6547 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6548 | // Flush any output to the screen |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6549 | void |
| 6550 | gui_mch_flush(void) |
| 6551 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6552 | if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin)) |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 6553 | #if GTK_CHECK_VERSION(2,4,0) |
Bram Moolenaar | b463e8d | 2017-06-05 15:07:09 +0200 | [diff] [blame] | 6554 | gdk_display_flush(gtk_widget_get_display(gui.mainwin)); |
Bram Moolenaar | 92cbf62 | 2018-09-19 22:40:03 +0200 | [diff] [blame] | 6555 | #else |
| 6556 | gdk_display_sync(gtk_widget_get_display(gui.mainwin)); |
| 6557 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6558 | } |
| 6559 | |
| 6560 | /* |
| 6561 | * Clear a rectangular region of the screen from text pos (row1, col1) to |
| 6562 | * (row2, col2) inclusive. |
| 6563 | */ |
| 6564 | void |
Bram Moolenaar | fe344a9 | 2017-02-23 12:20:35 +0100 | [diff] [blame] | 6565 | gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6566 | { |
Bram Moolenaar | fe344a9 | 2017-02-23 12:20:35 +0100 | [diff] [blame] | 6567 | |
| 6568 | int col1 = check_col(col1arg); |
| 6569 | int col2 = check_col(col2arg); |
| 6570 | int row1 = check_row(row1arg); |
| 6571 | int row2 = check_row(row2arg); |
| 6572 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6573 | #if GTK_CHECK_VERSION(3,0,0) |
| 6574 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
| 6575 | return; |
| 6576 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6577 | GdkColor color; |
| 6578 | |
| 6579 | if (gui.drawarea->window == NULL) |
| 6580 | return; |
| 6581 | |
| 6582 | color.pixel = gui.back_pixel; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6583 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6584 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6585 | #if GTK_CHECK_VERSION(3,0,0) |
| 6586 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6587 | // Add one pixel to the far right column in case a double-stroked |
| 6588 | // bold glyph may sit there. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6589 | const GdkRectangle rect = { |
| 6590 | FILL_X(col1), FILL_Y(row1), |
| 6591 | (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1), |
| 6592 | (row2 - row1 + 1) * gui.char_height |
| 6593 | }; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6594 | cairo_t * const cr = cairo_create(gui.surface); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 6595 | # if GTK_CHECK_VERSION(3,22,2) |
| 6596 | set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
| 6597 | # else |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6598 | GdkWindow * const win = gtk_widget_get_window(gui.drawarea); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6599 | cairo_pattern_t * const pat = gdk_window_get_background_pattern(win); |
| 6600 | if (pat != NULL) |
| 6601 | cairo_set_source(cr, pat); |
| 6602 | else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6603 | set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 6604 | # endif |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6605 | cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6606 | cairo_fill(cr); |
| 6607 | cairo_destroy(cr); |
| 6608 | |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6609 | gtk_widget_queue_draw_area(gui.drawarea, |
| 6610 | rect.x, rect.y, rect.width, rect.height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6611 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6612 | #else // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6613 | gdk_gc_set_foreground(gui.text_gc, &color); |
| 6614 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6615 | // Clear one extra pixel at the far right, for when bold characters have |
| 6616 | // spilled over to the window border. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6617 | gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE, |
| 6618 | FILL_X(col1), FILL_Y(row1), |
| 6619 | (col2 - col1 + 1) * gui.char_width |
| 6620 | + (col2 == Columns - 1), |
| 6621 | (row2 - row1 + 1) * gui.char_height); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6622 | #endif // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6623 | } |
| 6624 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6625 | #if GTK_CHECK_VERSION(3,0,0) |
| 6626 | static void |
| 6627 | gui_gtk_window_clear(GdkWindow *win) |
| 6628 | { |
| 6629 | const GdkRectangle rect = { |
| 6630 | 0, 0, gdk_window_get_width(win), gdk_window_get_height(win) |
| 6631 | }; |
| 6632 | cairo_t * const cr = cairo_create(gui.surface); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 6633 | # if GTK_CHECK_VERSION(3,22,2) |
| 6634 | set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
| 6635 | # else |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6636 | cairo_pattern_t * const pat = gdk_window_get_background_pattern(win); |
| 6637 | if (pat != NULL) |
| 6638 | cairo_set_source(cr, pat); |
| 6639 | else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6640 | set_cairo_source_rgba_from_color(cr, gui.back_pixel); |
Bram Moolenaar | a859f04 | 2016-11-17 19:11:55 +0100 | [diff] [blame] | 6641 | # endif |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6642 | cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6643 | cairo_fill(cr); |
| 6644 | cairo_destroy(cr); |
| 6645 | |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6646 | gtk_widget_queue_draw_area(gui.drawarea, |
| 6647 | rect.x, rect.y, rect.width, rect.height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6648 | } |
Bram Moolenaar | 25328e3 | 2018-09-11 21:30:09 +0200 | [diff] [blame] | 6649 | #else |
| 6650 | # define gui_gtk_window_clear(win) gdk_window_clear(win) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6651 | #endif |
| 6652 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6653 | void |
| 6654 | gui_mch_clear_all(void) |
| 6655 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6656 | if (gtk_widget_get_window(gui.drawarea) != NULL) |
| 6657 | gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6658 | } |
| 6659 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6660 | #if !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6661 | /* |
| 6662 | * Redraw any text revealed by scrolling up/down. |
| 6663 | */ |
| 6664 | static void |
| 6665 | check_copy_area(void) |
| 6666 | { |
| 6667 | GdkEvent *event; |
| 6668 | int expose_count; |
| 6669 | |
| 6670 | if (gui.visibility != GDK_VISIBILITY_PARTIAL) |
| 6671 | return; |
| 6672 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6673 | // Avoid redrawing the cursor while scrolling or it'll end up where |
| 6674 | // we don't want it to be. I'm not sure if it's correct to call |
| 6675 | // gui_dont_update_cursor() at this point but it works as a quick |
| 6676 | // fix for now. |
Bram Moolenaar | 107abd2 | 2016-08-12 14:08:25 +0200 | [diff] [blame] | 6677 | gui_dont_update_cursor(TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6678 | |
| 6679 | do |
| 6680 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6681 | // Wait to check whether the scroll worked or not. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6682 | event = gdk_event_get_graphics_expose(gui.drawarea->window); |
| 6683 | |
| 6684 | if (event == NULL) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6685 | break; // received NoExpose event |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6686 | |
| 6687 | gui_redraw(event->expose.area.x, event->expose.area.y, |
| 6688 | event->expose.area.width, event->expose.area.height); |
| 6689 | |
| 6690 | expose_count = event->expose.count; |
| 6691 | gdk_event_free(event); |
| 6692 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6693 | while (expose_count > 0); // more events follow |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6694 | |
| 6695 | gui_can_update_cursor(); |
| 6696 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6697 | #endif // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6698 | |
| 6699 | #if GTK_CHECK_VERSION(3,0,0) |
| 6700 | static void |
| 6701 | gui_gtk_surface_copy_rect(int dest_x, int dest_y, |
| 6702 | int src_x, int src_y, |
| 6703 | int width, int height) |
| 6704 | { |
| 6705 | cairo_t * const cr = cairo_create(gui.surface); |
| 6706 | |
| 6707 | cairo_rectangle(cr, dest_x, dest_y, width, height); |
| 6708 | cairo_clip(cr); |
| 6709 | cairo_push_group(cr); |
| 6710 | cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y); |
| 6711 | cairo_paint(cr); |
| 6712 | cairo_pop_group_to_source(cr); |
| 6713 | cairo_paint(cr); |
| 6714 | |
| 6715 | cairo_destroy(cr); |
| 6716 | } |
| 6717 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6718 | |
| 6719 | /* |
| 6720 | * Delete the given number of lines from the given row, scrolling up any |
| 6721 | * text further down within the scroll region. |
| 6722 | */ |
| 6723 | void |
| 6724 | gui_mch_delete_lines(int row, int num_lines) |
| 6725 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6726 | #if GTK_CHECK_VERSION(3,0,0) |
| 6727 | const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1; |
| 6728 | const int nrows = gui.scroll_region_bot - row + 1; |
| 6729 | const int src_nrows = nrows - num_lines; |
| 6730 | |
| 6731 | gui_gtk_surface_copy_rect( |
| 6732 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6733 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 6734 | gui.char_width * ncols + 1, gui.char_height * src_nrows); |
| 6735 | gui_clear_block( |
| 6736 | gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left, |
| 6737 | gui.scroll_region_bot, gui.scroll_region_right); |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6738 | gtk_widget_queue_draw_area(gui.drawarea, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6739 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6740 | gui.char_width * ncols + 1, gui.char_height * nrows); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6741 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6742 | if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6743 | return; // Can't see the window |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6744 | |
| 6745 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 6746 | gdk_gc_set_background(gui.text_gc, gui.bgcolor); |
| 6747 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6748 | // copy one extra pixel, for when bold has spilled over |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6749 | gdk_window_copy_area(gui.drawarea->window, gui.text_gc, |
| 6750 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6751 | gui.drawarea->window, |
| 6752 | FILL_X(gui.scroll_region_left), |
| 6753 | FILL_Y(row + num_lines), |
| 6754 | gui.char_width * (gui.scroll_region_right |
| 6755 | - gui.scroll_region_left + 1) + 1, |
| 6756 | gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); |
| 6757 | |
| 6758 | gui_clear_block(gui.scroll_region_bot - num_lines + 1, |
| 6759 | gui.scroll_region_left, |
| 6760 | gui.scroll_region_bot, gui.scroll_region_right); |
| 6761 | check_copy_area(); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6762 | #endif // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6763 | } |
| 6764 | |
| 6765 | /* |
| 6766 | * Insert the given number of lines before the given row, scrolling down any |
| 6767 | * following text within the scroll region. |
| 6768 | */ |
| 6769 | void |
| 6770 | gui_mch_insert_lines(int row, int num_lines) |
| 6771 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6772 | #if GTK_CHECK_VERSION(3,0,0) |
| 6773 | const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1; |
| 6774 | const int nrows = gui.scroll_region_bot - row + 1; |
| 6775 | const int src_nrows = nrows - num_lines; |
| 6776 | |
| 6777 | gui_gtk_surface_copy_rect( |
| 6778 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 6779 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6780 | gui.char_width * ncols + 1, gui.char_height * src_nrows); |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6781 | gui_clear_block( |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6782 | row, gui.scroll_region_left, |
| 6783 | row + num_lines - 1, gui.scroll_region_right); |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6784 | gtk_widget_queue_draw_area(gui.drawarea, |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6785 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 6786 | gui.char_width * ncols + 1, gui.char_height * nrows); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6787 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6788 | if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6789 | return; // Can't see the window |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6790 | |
| 6791 | gdk_gc_set_foreground(gui.text_gc, gui.fgcolor); |
| 6792 | gdk_gc_set_background(gui.text_gc, gui.bgcolor); |
| 6793 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6794 | // copy one extra pixel, for when bold has spilled over |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6795 | gdk_window_copy_area(gui.drawarea->window, gui.text_gc, |
| 6796 | FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines), |
| 6797 | gui.drawarea->window, |
| 6798 | FILL_X(gui.scroll_region_left), FILL_Y(row), |
| 6799 | gui.char_width * (gui.scroll_region_right |
| 6800 | - gui.scroll_region_left + 1) + 1, |
| 6801 | gui.char_height * (gui.scroll_region_bot - row - num_lines + 1)); |
| 6802 | |
| 6803 | gui_clear_block(row, gui.scroll_region_left, |
| 6804 | row + num_lines - 1, gui.scroll_region_right); |
| 6805 | check_copy_area(); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6806 | #endif // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6807 | } |
| 6808 | |
| 6809 | /* |
| 6810 | * X Selection stuff, for cutting and pasting text to other windows. |
| 6811 | */ |
| 6812 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 6813 | clip_mch_request_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6814 | { |
| 6815 | GdkAtom target; |
| 6816 | unsigned i; |
Bram Moolenaar | 51b5ab9 | 2008-01-06 14:17:07 +0000 | [diff] [blame] | 6817 | time_t start; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6818 | |
| 6819 | for (i = 0; i < N_SELECTION_TARGETS; ++i) |
| 6820 | { |
Bram Moolenaar | 3a6eaa5 | 2009-06-16 13:23:06 +0000 | [diff] [blame] | 6821 | if (!clip_html && selection_targets[i].info == TARGET_HTML) |
| 6822 | continue; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6823 | received_selection = RS_NONE; |
| 6824 | target = gdk_atom_intern(selection_targets[i].target, FALSE); |
| 6825 | |
| 6826 | gtk_selection_convert(gui.drawarea, |
| 6827 | cbd->gtk_sel_atom, target, |
| 6828 | (guint32)GDK_CURRENT_TIME); |
| 6829 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6830 | // Hack: Wait up to three seconds for the selection. A hang was |
| 6831 | // noticed here when using the netrw plugin combined with ":gui" |
| 6832 | // during the FocusGained event. |
Bram Moolenaar | 51b5ab9 | 2008-01-06 14:17:07 +0000 | [diff] [blame] | 6833 | start = time(NULL); |
| 6834 | while (received_selection == RS_NONE && time(NULL) < start + 3) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6835 | g_main_context_iteration(NULL, TRUE); // wait for selection_received_cb |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6836 | |
| 6837 | if (received_selection != RS_FAIL) |
| 6838 | return; |
| 6839 | } |
| 6840 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6841 | // Final fallback position - use the X CUT_BUFFER0 store |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6842 | yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)), |
| 6843 | cbd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6844 | } |
| 6845 | |
| 6846 | /* |
| 6847 | * Disown the selection. |
| 6848 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6849 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 6850 | clip_mch_lose_selection(Clipboard_T *cbd UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6851 | { |
Bram Moolenaar | 29dfa5a | 2018-03-20 21:24:45 +0100 | [diff] [blame] | 6852 | if (!in_selection_clear_event) |
| 6853 | { |
| 6854 | gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time); |
| 6855 | gui_mch_update(); |
| 6856 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6857 | } |
| 6858 | |
| 6859 | /* |
| 6860 | * Own the selection and return OK if it worked. |
| 6861 | */ |
| 6862 | int |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 6863 | clip_mch_own_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6864 | { |
| 6865 | int success; |
| 6866 | |
| 6867 | success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom, |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 6868 | gui.event_time); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6869 | gui_mch_update(); |
| 6870 | return (success) ? OK : FAIL; |
| 6871 | } |
| 6872 | |
| 6873 | /* |
| 6874 | * Send the current selection to the clipboard. Do nothing for X because we |
| 6875 | * will fill in the selection only when requested by another app. |
| 6876 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6877 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 6878 | clip_mch_set_selection(Clipboard_T *cbd UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6879 | { |
| 6880 | } |
| 6881 | |
Bram Moolenaar | 113e107 | 2019-01-20 15:30:40 +0100 | [diff] [blame] | 6882 | #if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 6883 | int |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 6884 | clip_gtk_owner_exists(Clipboard_T *cbd) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 6885 | { |
| 6886 | return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL; |
| 6887 | } |
Bram Moolenaar | 113e107 | 2019-01-20 15:30:40 +0100 | [diff] [blame] | 6888 | #endif |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 6889 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6890 | |
| 6891 | #if defined(FEAT_MENU) || defined(PROTO) |
| 6892 | /* |
| 6893 | * Make a menu item appear either active or not active (grey or not grey). |
| 6894 | */ |
| 6895 | void |
| 6896 | gui_mch_menu_grey(vimmenu_T *menu, int grey) |
| 6897 | { |
| 6898 | if (menu->id == NULL) |
| 6899 | return; |
| 6900 | |
| 6901 | if (menu_is_separator(menu->name)) |
| 6902 | grey = TRUE; |
| 6903 | |
| 6904 | gui_mch_menu_hidden(menu, FALSE); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6905 | // Be clever about bitfields versus true booleans here! |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6906 | if (!gtk_widget_get_sensitive(menu->id) == !grey) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6907 | { |
| 6908 | gtk_widget_set_sensitive(menu->id, !grey); |
| 6909 | gui_mch_update(); |
| 6910 | } |
| 6911 | } |
| 6912 | |
| 6913 | /* |
| 6914 | * Make menu item hidden or not hidden. |
| 6915 | */ |
| 6916 | void |
| 6917 | gui_mch_menu_hidden(vimmenu_T *menu, int hidden) |
| 6918 | { |
| 6919 | if (menu->id == 0) |
| 6920 | return; |
| 6921 | |
| 6922 | if (hidden) |
| 6923 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6924 | if (gtk_widget_get_visible(menu->id)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6925 | { |
| 6926 | gtk_widget_hide(menu->id); |
| 6927 | gui_mch_update(); |
| 6928 | } |
| 6929 | } |
| 6930 | else |
| 6931 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6932 | if (!gtk_widget_get_visible(menu->id)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6933 | { |
| 6934 | gtk_widget_show(menu->id); |
| 6935 | gui_mch_update(); |
| 6936 | } |
| 6937 | } |
| 6938 | } |
| 6939 | |
| 6940 | /* |
| 6941 | * This is called after setting all the menus to grey/hidden or not. |
| 6942 | */ |
| 6943 | void |
| 6944 | gui_mch_draw_menubar(void) |
| 6945 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6946 | // just make sure that the visual changes get effect immediately |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6947 | gui_mch_update(); |
| 6948 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6949 | #endif // FEAT_MENU |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6950 | |
| 6951 | /* |
| 6952 | * Scrollbar stuff. |
| 6953 | */ |
| 6954 | void |
| 6955 | gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) |
| 6956 | { |
| 6957 | if (sb->id == NULL) |
| 6958 | return; |
| 6959 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6960 | gtk_widget_set_visible(sb->id, flag); |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 6961 | update_window_manager_hints(0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6962 | } |
| 6963 | |
| 6964 | |
| 6965 | /* |
| 6966 | * Return the RGB value of a pixel as long. |
| 6967 | */ |
Bram Moolenaar | 1b58cdd | 2016-08-22 23:04:33 +0200 | [diff] [blame] | 6968 | guicolor_T |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6969 | gui_mch_get_rgb(guicolor_T pixel) |
| 6970 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6971 | #if GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6972 | return (long_u)pixel; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6973 | #else |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6974 | GdkColor color; |
| 6975 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6976 | gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea), |
| 6977 | (unsigned long)pixel, &color); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6978 | |
Bram Moolenaar | 1b58cdd | 2016-08-22 23:04:33 +0200 | [diff] [blame] | 6979 | return (guicolor_T)( |
| 6980 | (((unsigned)color.red & 0xff00) << 8) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6981 | | ((unsigned)color.green & 0xff00) |
Bram Moolenaar | 1b58cdd | 2016-08-22 23:04:33 +0200 | [diff] [blame] | 6982 | | (((unsigned)color.blue & 0xff00) >> 8)); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 6983 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6984 | } |
| 6985 | |
| 6986 | /* |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 6987 | * Get current mouse coordinates in text window. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6988 | */ |
Bram Moolenaar | 6cc1619 | 2005-01-08 21:49:45 +0000 | [diff] [blame] | 6989 | void |
| 6990 | gui_mch_getmouse(int *x, int *y) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6991 | { |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 6992 | gui_gtk_get_pointer(gui.drawarea, x, y, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6993 | } |
| 6994 | |
| 6995 | void |
| 6996 | gui_mch_setmouse(int x, int y) |
| 6997 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 6998 | // Sorry for the Xlib call, but we can't avoid it, since there is no |
| 6999 | // internal GDK mechanism present to accomplish this. (and for good |
| 7000 | // reason...) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7001 | XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)), |
| 7002 | (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)), |
| 7003 | 0, 0, 0U, 0U, x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7004 | } |
| 7005 | |
| 7006 | |
| 7007 | #ifdef FEAT_MOUSESHAPE |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7008 | // The last set mouse pointer shape is remembered, to be used when it goes |
| 7009 | // from hidden to not hidden. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7010 | static int last_shape = 0; |
| 7011 | #endif |
| 7012 | |
| 7013 | /* |
| 7014 | * Use the blank mouse pointer or not. |
| 7015 | * |
| 7016 | * hide: TRUE = use blank ptr, FALSE = use parent ptr |
| 7017 | */ |
| 7018 | void |
| 7019 | gui_mch_mousehide(int hide) |
| 7020 | { |
| 7021 | if (gui.pointer_hidden != hide) |
| 7022 | { |
| 7023 | gui.pointer_hidden = hide; |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7024 | if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7025 | { |
| 7026 | if (hide) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7027 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
| 7028 | gui.blank_pointer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7029 | else |
| 7030 | #ifdef FEAT_MOUSESHAPE |
| 7031 | mch_set_mouse_shape(last_shape); |
| 7032 | #else |
Bram Moolenaar | 25328e3 | 2018-09-11 21:30:09 +0200 | [diff] [blame] | 7033 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7034 | #endif |
| 7035 | } |
| 7036 | } |
| 7037 | } |
| 7038 | |
| 7039 | #if defined(FEAT_MOUSESHAPE) || defined(PROTO) |
| 7040 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7041 | // Table for shape IDs. Keep in sync with the mshape_names[] table in |
| 7042 | // misc2.c! |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7043 | static const int mshape_ids[] = |
| 7044 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7045 | GDK_LEFT_PTR, // arrow |
| 7046 | GDK_CURSOR_IS_PIXMAP, // blank |
| 7047 | GDK_XTERM, // beam |
| 7048 | GDK_SB_V_DOUBLE_ARROW, // updown |
| 7049 | GDK_SIZING, // udsizing |
| 7050 | GDK_SB_H_DOUBLE_ARROW, // leftright |
| 7051 | GDK_SIZING, // lrsizing |
| 7052 | GDK_WATCH, // busy |
| 7053 | GDK_X_CURSOR, // no |
| 7054 | GDK_CROSSHAIR, // crosshair |
| 7055 | GDK_HAND1, // hand1 |
| 7056 | GDK_HAND2, // hand2 |
| 7057 | GDK_PENCIL, // pencil |
| 7058 | GDK_QUESTION_ARROW, // question |
| 7059 | GDK_RIGHT_PTR, // right-arrow |
| 7060 | GDK_CENTER_PTR, // up-arrow |
| 7061 | GDK_LEFT_PTR // last one |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7062 | }; |
| 7063 | |
| 7064 | void |
| 7065 | mch_set_mouse_shape(int shape) |
| 7066 | { |
| 7067 | int id; |
| 7068 | GdkCursor *c; |
| 7069 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7070 | if (gtk_widget_get_window(gui.drawarea) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7071 | return; |
| 7072 | |
| 7073 | if (shape == MSHAPE_HIDE || gui.pointer_hidden) |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7074 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), |
| 7075 | gui.blank_pointer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7076 | else |
| 7077 | { |
| 7078 | if (shape >= MSHAPE_NUMBERED) |
| 7079 | { |
| 7080 | id = shape - MSHAPE_NUMBERED; |
| 7081 | if (id >= GDK_LAST_CURSOR) |
| 7082 | id = GDK_LEFT_PTR; |
| 7083 | else |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7084 | id &= ~1; // they are always even (why?) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7085 | } |
K.Takata | eeec254 | 2021-06-02 13:28:16 +0200 | [diff] [blame] | 7086 | else if (shape < (int)ARRAY_LENGTH(mshape_ids)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7087 | id = mshape_ids[shape]; |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 7088 | else |
| 7089 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7090 | c = gdk_cursor_new_for_display( |
Bram Moolenaar | b71ec9f | 2005-01-25 22:22:02 +0000 | [diff] [blame] | 7091 | gtk_widget_get_display(gui.drawarea), (GdkCursorType)id); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7092 | gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7093 | # if GTK_CHECK_VERSION(3,0,0) |
| 7094 | g_object_unref(G_OBJECT(c)); |
| 7095 | # else |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7096 | gdk_cursor_destroy(c); // Unref, actually. Bloody GTK+ 1. |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7097 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7098 | } |
| 7099 | if (shape != MSHAPE_HIDE) |
| 7100 | last_shape = shape; |
| 7101 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7102 | #endif // FEAT_MOUSESHAPE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7103 | |
| 7104 | |
| 7105 | #if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
| 7106 | /* |
| 7107 | * Signs are currently always 2 chars wide. With GTK+ 2, the image will be |
| 7108 | * scaled down if the current font is not big enough, or scaled up if the image |
| 7109 | * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap |
| 7110 | * will be cut off if the current font is not big enough, or centered if it's |
| 7111 | * too small. |
| 7112 | */ |
| 7113 | # define SIGN_WIDTH (2 * gui.char_width) |
| 7114 | # define SIGN_HEIGHT (gui.char_height) |
| 7115 | # define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH) |
| 7116 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7117 | void |
| 7118 | gui_mch_drawsign(int row, int col, int typenr) |
| 7119 | { |
| 7120 | GdkPixbuf *sign; |
| 7121 | |
| 7122 | sign = (GdkPixbuf *)sign_get_image(typenr); |
| 7123 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7124 | if (sign != NULL && gui.drawarea != NULL |
| 7125 | && gtk_widget_get_window(gui.drawarea) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7126 | { |
| 7127 | int width; |
| 7128 | int height; |
| 7129 | int xoffset; |
| 7130 | int yoffset; |
| 7131 | int need_scale; |
| 7132 | |
| 7133 | width = gdk_pixbuf_get_width(sign); |
| 7134 | height = gdk_pixbuf_get_height(sign); |
| 7135 | /* |
| 7136 | * Decide whether we need to scale. Allow one pixel of border |
| 7137 | * width to be cut off, in order to avoid excessive scaling for |
| 7138 | * tiny differences in font size. |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7139 | * Do scale to fit the height to avoid gaps because of linespacing. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7140 | */ |
| 7141 | need_scale = (width > SIGN_WIDTH + 2 |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7142 | || height != SIGN_HEIGHT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7143 | || (width < 3 * SIGN_WIDTH / 4 |
| 7144 | && height < 3 * SIGN_HEIGHT / 4)); |
| 7145 | if (need_scale) |
| 7146 | { |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7147 | double aspect; |
| 7148 | int w = width; |
| 7149 | int h = height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7150 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7151 | // Keep the original aspect ratio |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7152 | aspect = (double)height / (double)width; |
| 7153 | width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect; |
| 7154 | width = MIN(width, SIGN_WIDTH); |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7155 | if (((double)(MAX(height, SIGN_HEIGHT)) / |
| 7156 | (double)(MIN(height, SIGN_HEIGHT))) < 1.15) |
| 7157 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7158 | // Change the aspect ratio by at most 15% to fill the |
| 7159 | // available space completely. |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7160 | height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect; |
| 7161 | height = MIN(height, SIGN_HEIGHT); |
| 7162 | } |
| 7163 | else |
| 7164 | height = (double)width * aspect; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7165 | |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7166 | if (w == width && h == height) |
| 7167 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7168 | // no change in dimensions; don't decrease reference counter |
| 7169 | // (below) |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7170 | need_scale = FALSE; |
| 7171 | } |
| 7172 | else |
| 7173 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7174 | // This doesn't seem to be worth caching, and doing so would |
| 7175 | // complicate the code quite a bit. |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7176 | sign = gdk_pixbuf_scale_simple(sign, width, height, |
| 7177 | GDK_INTERP_BILINEAR); |
| 7178 | if (sign == NULL) |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7179 | return; // out of memory |
Bram Moolenaar | 58cbc91 | 2014-06-17 18:47:02 +0200 | [diff] [blame] | 7180 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7181 | } |
| 7182 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7183 | // The origin is the upper-left corner of the pixmap. Therefore |
| 7184 | // these offset may become negative if the pixmap is smaller than |
| 7185 | // the 2x1 cells reserved for the sign icon. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7186 | xoffset = (width - SIGN_WIDTH) / 2; |
| 7187 | yoffset = (height - SIGN_HEIGHT) / 2; |
| 7188 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7189 | # if GTK_CHECK_VERSION(3,0,0) |
| 7190 | { |
| 7191 | cairo_t *cr; |
| 7192 | cairo_surface_t *bg_surf; |
| 7193 | cairo_t *bg_cr; |
| 7194 | cairo_surface_t *sign_surf; |
| 7195 | cairo_t *sign_cr; |
| 7196 | |
| 7197 | cr = cairo_create(gui.surface); |
| 7198 | |
| 7199 | bg_surf = cairo_surface_create_similar(gui.surface, |
| 7200 | cairo_surface_get_content(gui.surface), |
| 7201 | SIGN_WIDTH, SIGN_HEIGHT); |
| 7202 | bg_cr = cairo_create(bg_surf); |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 7203 | cairo_set_source_rgba(bg_cr, |
| 7204 | gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue, |
| 7205 | gui.bgcolor->alpha); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7206 | cairo_paint(bg_cr); |
| 7207 | |
| 7208 | sign_surf = cairo_surface_create_similar(gui.surface, |
| 7209 | cairo_surface_get_content(gui.surface), |
| 7210 | SIGN_WIDTH, SIGN_HEIGHT); |
| 7211 | sign_cr = cairo_create(sign_surf); |
| 7212 | gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset); |
| 7213 | cairo_paint(sign_cr); |
| 7214 | |
| 7215 | cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER); |
| 7216 | cairo_set_source_surface(sign_cr, bg_surf, 0, 0); |
| 7217 | cairo_paint(sign_cr); |
| 7218 | |
| 7219 | cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row)); |
| 7220 | cairo_paint(cr); |
| 7221 | |
| 7222 | cairo_destroy(sign_cr); |
| 7223 | cairo_surface_destroy(sign_surf); |
| 7224 | cairo_destroy(bg_cr); |
| 7225 | cairo_surface_destroy(bg_surf); |
| 7226 | cairo_destroy(cr); |
| 7227 | |
presuku | 9459b8d | 2021-11-16 20:03:56 +0000 | [diff] [blame] | 7228 | gtk_widget_queue_draw_area(gui.drawarea, |
| 7229 | FILL_X(col), FILL_Y(col), width, height); |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 7230 | |
| 7231 | } |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7232 | # else // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7233 | gdk_gc_set_foreground(gui.text_gc, gui.bgcolor); |
| 7234 | |
| 7235 | gdk_draw_rectangle(gui.drawarea->window, |
| 7236 | gui.text_gc, |
| 7237 | TRUE, |
| 7238 | FILL_X(col), |
| 7239 | FILL_Y(row), |
| 7240 | SIGN_WIDTH, |
| 7241 | SIGN_HEIGHT); |
| 7242 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7243 | gdk_pixbuf_render_to_drawable_alpha(sign, |
| 7244 | gui.drawarea->window, |
| 7245 | MAX(0, xoffset), |
| 7246 | MAX(0, yoffset), |
| 7247 | FILL_X(col) - MIN(0, xoffset), |
| 7248 | FILL_Y(row) - MIN(0, yoffset), |
| 7249 | MIN(width, SIGN_WIDTH), |
| 7250 | MIN(height, SIGN_HEIGHT), |
| 7251 | GDK_PIXBUF_ALPHA_BILEVEL, |
| 7252 | 127, |
| 7253 | GDK_RGB_DITHER_NORMAL, |
| 7254 | 0, 0); |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7255 | # endif // !GTK_CHECK_VERSION(3,0,0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7256 | if (need_scale) |
| 7257 | g_object_unref(sign); |
| 7258 | } |
| 7259 | } |
| 7260 | |
| 7261 | void * |
| 7262 | gui_mch_register_sign(char_u *signfile) |
| 7263 | { |
| 7264 | if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use) |
| 7265 | { |
| 7266 | GdkPixbuf *sign; |
| 7267 | GError *error = NULL; |
| 7268 | char_u *message; |
| 7269 | |
| 7270 | sign = gdk_pixbuf_new_from_file((const char *)signfile, &error); |
| 7271 | |
| 7272 | if (error == NULL) |
| 7273 | return sign; |
| 7274 | |
| 7275 | message = (char_u *)error->message; |
| 7276 | |
| 7277 | if (message != NULL && input_conv.vc_type != CONV_NONE) |
| 7278 | message = string_convert(&input_conv, message, NULL); |
| 7279 | |
| 7280 | if (message != NULL) |
| 7281 | { |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7282 | // The error message is already translated and will be more |
| 7283 | // descriptive than anything we could possibly do ourselves. |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 7284 | semsg("E255: %s", message); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7285 | |
| 7286 | if (input_conv.vc_type != CONV_NONE) |
| 7287 | vim_free(message); |
| 7288 | } |
| 7289 | g_error_free(error); |
| 7290 | } |
| 7291 | |
| 7292 | return NULL; |
| 7293 | } |
| 7294 | |
| 7295 | void |
| 7296 | gui_mch_destroy_sign(void *sign) |
| 7297 | { |
| 7298 | if (sign != NULL) |
| 7299 | g_object_unref(sign); |
| 7300 | } |
| 7301 | |
Bram Moolenaar | 3061390 | 2019-12-01 22:11:18 +0100 | [diff] [blame] | 7302 | #endif // FEAT_SIGN_ICONS |