blob: 0d503ae58c6fa2972d0ce07060360ff3866b30ce [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * Motif support by Robert Webb
5 *
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 */
9
Bram Moolenaar071d4272004-06-13 20:20:40 +000010#ifdef FEAT_GUI_MOTIF
Bram Moolenaar071d4272004-06-13 20:20:40 +000011# include <Xm/Xm.h>
12#endif
13
14#ifdef FEAT_GUI_ATHENA
Bram Moolenaar071d4272004-06-13 20:20:40 +000015# include <X11/Intrinsic.h>
16# include <X11/StringDefs.h>
17#endif
18
Bram Moolenaar071d4272004-06-13 20:20:40 +000019#ifdef FEAT_GUI_GTK
Bram Moolenaar9bf703d2019-11-30 19:44:38 +010020# ifdef VMS // undef MIN and MAX because Intrinsic.h redefines them anyway
Bram Moolenaarf193fff2006-04-27 00:02:13 +000021# ifdef MAX
22# undef MAX
23# endif
24# ifdef MIN
25# undef MIN
26# endif
Bram Moolenaar467676d2020-12-30 13:14:45 +010027# include "gui_gtk_vms.h"
28# endif // VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +000029# include <X11/Intrinsic.h>
30# include <gtk/gtk.h>
31#endif
32
Bram Moolenaarb3f74062020-02-26 16:16:53 +010033#ifdef FEAT_GUI_HAIKU
34# include "gui_haiku.h"
35#endif
36
Bram Moolenaarb7ed8392019-07-04 21:24:34 +020037// Needed when generating prototypes, since FEAT_GUI is always defined then.
38#if defined(FEAT_XCLIPBOARD) && !defined(FEAT_GUI_MOTIF) \
39 && !defined(FEAT_GUI_ATHENA) && !defined(FEAT_GUI_GTK)
40# include <X11/Intrinsic.h>
41#endif
42
Bram Moolenaar071d4272004-06-13 20:20:40 +000043#ifdef FEAT_GUI_PHOTON
44# include <Ph.h>
45# include <Pt.h>
46# include "photon/PxProto.h"
47#endif
48
49/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +000050 * On some systems scrolling needs to be done right away instead of in the
51 * main loop.
52 */
Bram Moolenaar097148e2020-08-11 21:58:20 +020053#if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +000054# define USE_ON_FLY_SCROLL
55#endif
56
57/*
58 * GUIs that support dropping files on a running Vim.
59 */
Bram Moolenaar92d147b2018-07-29 17:35:23 +020060#if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \
61 || defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +010062 || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +000063# define HAVE_DROP_FILE
64#endif
65
66/*
67 * This define makes menus always use a fontset.
68 * We're not sure if this code always works, thus it can be disabled.
69 */
70#ifdef FEAT_XFONTSET
71# define FONTSET_ALWAYS
72#endif
73
74/*
75 * These macros convert between character row/column and pixel coordinates.
76 * TEXT_X - Convert character column into X pixel coord for drawing strings.
77 * TEXT_Y - Convert character row into Y pixel coord for drawing strings.
78 * FILL_X - Convert character column into X pixel coord for filling the area
79 * under the character.
80 * FILL_Y - Convert character row into Y pixel coord for filling the area
81 * under the character.
82 * X_2_COL - Convert X pixel coord into character column.
83 * Y_2_ROW - Convert Y pixel coord into character row.
84 */
Bram Moolenaar4f974752019-02-17 17:44:42 +010085#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +000086# define TEXT_X(col) ((col) * gui.char_width)
87# define TEXT_Y(row) ((row) * gui.char_height + gui.char_ascent)
88# define FILL_X(col) ((col) * gui.char_width)
89# define FILL_Y(row) ((row) * gui.char_height)
90# define X_2_COL(x) ((x) / gui.char_width)
91# define Y_2_ROW(y) ((y) / gui.char_height)
92#else
93# define TEXT_X(col) ((col) * gui.char_width + gui.border_offset)
94# define FILL_X(col) ((col) * gui.char_width + gui.border_offset)
95# define X_2_COL(x) (((x) - gui.border_offset) / gui.char_width)
96# define TEXT_Y(row) ((row) * gui.char_height + gui.char_ascent \
97 + gui.border_offset)
98# define FILL_Y(row) ((row) * gui.char_height + gui.border_offset)
99# define Y_2_ROW(y) (((y) - gui.border_offset) / gui.char_height)
100#endif
101
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100102// Indices for arrays of scrollbars
kylo2529dac9b12022-03-27 20:05:17 +0100103#define SBAR_NONE (-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104#define SBAR_LEFT 0
105#define SBAR_RIGHT 1
106#define SBAR_BOTTOM 2
107
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100108// Orientations for scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109#define SBAR_VERT 0
110#define SBAR_HORIZ 1
111
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100112// Default size of scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113#define SB_DEFAULT_WIDTH 16
114
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100115// Default height of the menu bar
116#define MENU_DEFAULT_HEIGHT 1 // figure it out at runtime
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100118// Flags for gui_mch_outstr_nowrap()
119#define GUI_MON_WRAP_CURSOR 0x01 // wrap cursor at end of line
120#define GUI_MON_INVERT 0x02 // invert the characters
121#define GUI_MON_IS_CURSOR 0x04 // drawing cursor
122#define GUI_MON_TRS_CURSOR 0x08 // drawing transparent cursor
123#define GUI_MON_NOCLEAR 0x10 // don't clear selection
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100125// Flags for gui_mch_draw_string()
126#define DRAW_TRANSP 0x01 // draw with transparent bg
127#define DRAW_BOLD 0x02 // draw bold text
128#define DRAW_UNDERL 0x04 // draw underline text
129#define DRAW_UNDERC 0x08 // draw undercurl text
Bram Moolenaare60acc12011-05-10 16:41:25 +0200130#if defined(FEAT_GUI_GTK)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100131# define DRAW_ITALIC 0x10 // draw italic text
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100133#define DRAW_CURSOR 0x20 // drawing block cursor (win32)
134#define DRAW_STRIKE 0x40 // strikethrough
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100136// For our own tearoff menu item
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137#define TEAR_STRING "-->Detach"
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100138#define TEAR_LEN (9) // length of above string
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100140// for the toolbar
Bram Moolenaare89ff042016-02-20 22:17:05 +0100141#define TOOLBAR_BUTTON_HEIGHT 18
142#define TOOLBAR_BUTTON_WIDTH 18
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100143#define TOOLBAR_BORDER_HEIGHT 12 // room above+below buttons for MSWindows
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000145#ifdef FEAT_GUI_MSWIN
Bram Moolenaar2e2a2812006-03-27 20:55:21 +0000146# define TABLINE_HEIGHT 22
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000147#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000148#ifdef FEAT_GUI_MOTIF
149# define TABLINE_HEIGHT 30
150#endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000151
Bram Moolenaar9372a112005-12-06 19:59:18 +0000152#if defined(NO_CONSOLE) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100153# define NO_CONSOLE_INPUT // use no_console_input() to check if there
154 // is no console input possible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155#endif
156
157typedef struct GuiScrollbar
158{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100159 long ident; // Unique identifier for each scrollbar
160 win_T *wp; // Scrollbar's window, NULL for bottom
161 int type; // one of SBAR_{LEFT,RIGHT,BOTTOM}
162 long value; // Represents top line number visible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163#ifdef FEAT_GUI_ATHENA
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100164 int pixval; // pixel count of value
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100166 long size; // Size of scrollbar thumb
167 long max; // Number of lines in buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100169 // Values measured in characters:
170 int top; // Top of scroll bar (chars from row 0)
171 int height; // Current height of scroll bar in rows
172 int width; // Current width of scroll bar in cols
173 int status_height; // Height of status line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174#ifdef FEAT_GUI_X11
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100175 Widget id; // Id of real scroll bar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176#endif
177#ifdef FEAT_GUI_GTK
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100178 GtkWidget *id; // Id of real scroll bar
179 unsigned long handler_id; // Id of "value_changed" signal handler
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180#endif
181
182#ifdef FEAT_GUI_MSWIN
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100183 HWND id; // Id of real scroll bar
184 int scroll_shift; // The scrollbar stuff can handle only up to
185 // 32767 lines. When the file is longer,
186 // scroll_shift is set to the number of shifts
187 // to reduce the count.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188#endif
Bram Moolenaarb3f74062020-02-26 16:16:53 +0100189
190#if FEAT_GUI_HAIKU
191 VimScrollBar *id; // Pointer to real scroll bar
192#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193#ifdef FEAT_GUI_PHOTON
194 PtWidget_t *id;
195#endif
196} scrollbar_T;
197
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100198typedef long guicolor_T; // handle for a GUI color; for X11 this should
199 // be "Pixel", but that's an unsigned and we
200 // need a signed value
kylo2529dac9b12022-03-27 20:05:17 +0100201#define INVALCOLOR ((guicolor_T)-11111) // number for invalid color; on 32 bit
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100202 // displays there is a tiny chance this is an
203 // actual color
kylo2529dac9b12022-03-27 20:05:17 +0100204#define CTERMCOLOR ((guicolor_T)-11110) // only used for cterm.bg_rgb and
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100205 // cterm.fg_rgb: use cterm color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206
207#ifdef FEAT_GUI_GTK
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100208 typedef PangoFontDescription *GuiFont; // handle for a GUI font
209 typedef PangoFontDescription *GuiFontset; // handle for a GUI fontset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210# define NOFONT (GuiFont)NULL
211# define NOFONTSET (GuiFontset)NULL
212#else
213# ifdef FEAT_GUI_PHOTON
214 typedef char *GuiFont;
215 typedef char *GuiFontset;
216# define NOFONT (GuiFont)NULL
217# define NOFONTSET (GuiFontset)NULL
218# else
219# ifdef FEAT_GUI_X11
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100220 typedef XFontStruct *GuiFont; // handle for a GUI font
221 typedef XFontSet GuiFontset; // handle for a GUI fontset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222# define NOFONT (GuiFont)0
223# define NOFONTSET (GuiFontset)0
224# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100225 typedef long_u GuiFont; // handle for a GUI font
226 typedef long_u GuiFontset; // handle for a GUI fontset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227# define NOFONT (GuiFont)0
228# define NOFONTSET (GuiFontset)0
229# endif
230# endif
231#endif
232
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200233#ifdef VIMDLL
234// Use spawn when GUI is starting.
235# define GUI_MAY_SPAWN
236
237// Uncomment the next definition if you want to use the `:gui` command on
238// Windows. It uses `:mksession` to inherit the session from vim.exe to
239// gvim.exe. So, it doesn't work perfectly. (EXPERIMENTAL)
240//# define EXPERIMENTAL_GUI_CMD
241#endif
242
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243typedef struct Gui
244{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100245 int in_focus; // Vim has input focus
246 int in_use; // Is the GUI being used?
247 int starting; // GUI will start in a little while
248 int shell_created; // Has the shell been created yet?
249 int dying; // Is vim dying? Then output to terminal
250 int dofork; // Use fork() when GUI is starting
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200251#ifdef GUI_MAY_SPAWN
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100252 int dospawn; // Use spawn() when GUI is starting
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200253#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100254 int dragged_sb; // Which scrollbar being dragged, if any?
255 win_T *dragged_wp; // Which WIN's sb being dragged, if any?
256 int pointer_hidden; // Is the mouse pointer hidden?
257 int col; // Current cursor column in GUI display
258 int row; // Current cursor row in GUI display
259 int cursor_col; // Physical cursor column in GUI display
260 int cursor_row; // Physical cursor row in GUI display
261 char cursor_is_valid; // There is a cursor at cursor_row/col
262 int num_cols; // Number of columns
263 int num_rows; // Number of rows
264 int scroll_region_top; // Top (first) line of scroll region
265 int scroll_region_bot; // Bottom (last) line of scroll region
266 int scroll_region_left; // Left (first) column of scroll region
267 int scroll_region_right; // Right (last) col. of scroll region
268 int highlight_mask; // Highlight attribute mask
269 int scrollbar_width; // Width of vertical scrollbars
270 int scrollbar_height; // Height of horizontal scrollbar
271 int left_sbar_x; // Calculated x coord for left scrollbar
272 int right_sbar_x; // Calculated x coord for right scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273
274#ifdef FEAT_MENU
275# ifndef FEAT_GUI_GTK
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100276 int menu_height; // Height of the menu bar
277 int menu_width; // Width of the menu bar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278# endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100279 char menu_is_active; // TRUE if menu is present
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280# ifdef FEAT_GUI_ATHENA
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100281 char menu_height_fixed; // TRUE if menu height fixed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282# endif
283#endif
284
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100285 scrollbar_T bottom_sbar; // Bottom scrollbar
286 int which_scrollbars[3];// Which scrollbar boxes are active?
287 int prev_wrap; // For updating the horizontal scrollbar
288 int char_width; // Width of char cell in pixels
289 int char_height; // Height of char cell in pixels, includes
290 // 'linespace'
291 int char_ascent; // Ascent of char in pixels
292 int border_width; // Width of our border around text area
293 int border_offset; // Total pixel offset for all borders
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100295 GuiFont norm_font; // Normal font
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200296#ifndef FEAT_GUI_GTK
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100297 GuiFont bold_font; // Bold font
298 GuiFont ital_font; // Italic font
299 GuiFont boldital_font; // Bold-Italic font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300#else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100301 int font_can_bold; // Whether norm_font supports bold weight.
302 // The styled font variants are not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303#endif
304
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200305#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306# ifdef FONTSET_ALWAYS
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100307 GuiFontset menu_fontset; // set of fonts for multi-byte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100309 GuiFont menu_font; // menu item font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310# endif
311#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100312 GuiFont wide_font; // Normal 'guifontwide' font
Bram Moolenaar264b74f2019-01-24 17:18:42 +0100313#ifndef FEAT_GUI_GTK
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100314 GuiFont wide_bold_font; // Bold 'guifontwide' font
315 GuiFont wide_ital_font; // Italic 'guifontwide' font
316 GuiFont wide_boldital_font; // Bold-Italic 'guifontwide' font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317#endif
318#ifdef FEAT_XFONTSET
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100319 GuiFontset fontset; // set of fonts for multi-byte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100321 guicolor_T back_pixel; // Color of background
322 guicolor_T norm_pixel; // Color of normal text
323 guicolor_T def_back_pixel; // default Color of background
324 guicolor_T def_norm_pixel; // default Color of normal text
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325
326#ifdef FEAT_GUI_X11
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100327 char *rsrc_menu_fg_name; // Color of menu & dialog foreground
328 guicolor_T menu_fg_pixel; // Same in Pixel format
329 char *rsrc_menu_bg_name; // Color of menu & dialog background
330 guicolor_T menu_bg_pixel; // Same in Pixel format
331 char *rsrc_scroll_fg_name; // Color of scrollbar foreground
332 guicolor_T scroll_fg_pixel; // Same in Pixel format
333 char *rsrc_scroll_bg_name; // Color of scrollbar background
334 guicolor_T scroll_bg_pixel; // Same in Pixel format
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100336 Display *dpy; // X display
337 Window wid; // Window id of text area
338 int visibility; // Is shell partially/fully obscured?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 GC text_gc;
340 GC back_gc;
341 GC invert_gc;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100342 Cursor blank_pointer; // Blank pointer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100344 // X Resources
345 char_u *rsrc_font_name; // Resource font name, used if 'guifont'
346 // not set
347 char_u *rsrc_bold_font_name; // Resource bold font name
348 char_u *rsrc_ital_font_name; // Resource italic font name
349 char_u *rsrc_boldital_font_name; // Resource bold-italic font name
350 char_u *rsrc_menu_font_name; // Resource menu Font name
351 Bool rsrc_rev_video; // Use reverse video?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100353 char_u *geom; // Geometry, eg "80x24"
354 Bool color_approx; // Some color was approximated
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355#endif
356
357#ifdef FEAT_GUI_GTK
Bram Moolenaar98921892016-02-23 17:14:37 +0100358# ifndef USE_GTK3
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100359 int visibility; // Is shell partially/fully obscured?
Bram Moolenaar98921892016-02-23 17:14:37 +0100360# endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100361 GdkCursor *blank_pointer; // Blank pointer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100363 // X Resources
364 char_u *geom; // Geometry, eg "80x24"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100366 GtkWidget *mainwin; // top level GTK window
367 GtkWidget *formwin; // manages all the windows below
368 GtkWidget *drawarea; // the "text" area
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369# ifdef FEAT_MENU
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100370 GtkWidget *menubar; // menubar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371# endif
372# ifdef FEAT_TOOLBAR
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100373 GtkWidget *toolbar; // toolbar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374# endif
375# ifdef FEAT_GUI_GNOME
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100376 GtkWidget *menubar_h; // menubar handle
377 GtkWidget *toolbar_h; // toolbar handle
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378# endif
Bram Moolenaar36edf062016-07-21 22:10:12 +0200379# ifdef USE_GTK3
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100380 GdkRGBA *fgcolor; // GDK-styled foreground color
381 GdkRGBA *bgcolor; // GDK-styled background color
382 GdkRGBA *spcolor; // GDK-styled special color
Bram Moolenaar36edf062016-07-21 22:10:12 +0200383# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100384 GdkColor *fgcolor; // GDK-styled foreground color
385 GdkColor *bgcolor; // GDK-styled background color
386 GdkColor *spcolor; // GDK-styled special color
Bram Moolenaar36edf062016-07-21 22:10:12 +0200387# endif
Bram Moolenaar98921892016-02-23 17:14:37 +0100388# ifdef USE_GTK3
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100389 cairo_surface_t *surface; // drawarea surface
Bram Moolenaar98921892016-02-23 17:14:37 +0100390# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100391 GdkGC *text_gc; // cached GC for normal text
Bram Moolenaar98921892016-02-23 17:14:37 +0100392# endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100393 PangoContext *text_context; // the context used for all text
394 PangoFont *ascii_font; // cached font for ASCII strings
395 PangoGlyphString *ascii_glyphs; // cached code point -> glyph map
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000396# ifdef FEAT_GUI_TABLINE
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100397 GtkWidget *tabline; // tab pages line handle
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398# endif
399
400 GtkAccelGroup *accel_group;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100401 GtkWidget *filedlg; // file selection dialog
402 char_u *browse_fname; // file name from filedlg
Bram Moolenaar20892c12011-06-26 04:49:00 +0200403
404 guint32 event_time;
Dusan Popovic4eeedc02021-10-16 20:52:05 +0100405
406 char_u ligatures_map[256]; // ascii map for characters 0-255, value is
407 // 1 if in 'guiligatures'
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100408#endif // FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000410#if defined(FEAT_GUI_TABLINE) \
Bram Moolenaar4f974752019-02-17 17:44:42 +0100411 && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MOTIF) \
Bram Moolenaar097148e2020-08-11 21:58:20 +0200412 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000413 int tabline_height;
414#endif
415
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416#ifdef FEAT_FOOTER
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100417 int footer_height; // height of the message footer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418#endif
419
420#if defined(FEAT_TOOLBAR) \
K.Takatac81e9bf2022-01-16 14:15:49 +0000421 && (defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100422 int toolbar_height; // height of the toolbar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423#endif
424
425#ifdef FEAT_BEVAL_TIP
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100426 // Tooltip properties; also used for balloon evaluation
427 char_u *rsrc_tooltip_font_name; // tooltip font name
428 char *rsrc_tooltip_fg_name; // tooltip foreground color name
429 char *rsrc_tooltip_bg_name; // tooltip background color name
430 guicolor_T tooltip_fg_pixel; // tooltip foreground color
431 guicolor_T tooltip_bg_pixel; // tooltip background color
432 XFontSet tooltip_fontset; // tooltip fontset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433#endif
434
435#ifdef FEAT_GUI_MSWIN
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100436 GuiFont currFont; // Current font
437 guicolor_T currFgColor; // Current foreground text color
438 guicolor_T currBgColor; // Current background text color
439 guicolor_T currSpColor; // Current special text color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440#endif
441
Bram Moolenaarb3f74062020-02-26 16:16:53 +0100442#ifdef FEAT_GUI_HAIKU
443 VimApp *vimApp;
444 VimWindow *vimWindow;
445 VimFormView *vimForm;
446 VimTextAreaView *vimTextArea;
447 int vdcmp; // Vim Direct Communication Message Port
448#endif
449
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450#ifdef FEAT_GUI_PHOTON
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100451 PtWidget_t *vimWindow; // PtWindow
452 PtWidget_t *vimTextArea; // PtRaw
453 PtWidget_t *vimContainer; // PtPanel
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454# if defined(FEAT_MENU) || defined(FEAT_TOOLBAR)
455 PtWidget_t *vimToolBarGroup;
456# endif
457# ifdef FEAT_MENU
458 PtWidget_t *vimMenuBar;
459# endif
460# ifdef FEAT_TOOLBAR
461 PtWidget_t *vimToolBar;
462 int toolbar_height;
463# endif
464 PhEvent_t *event_buffer;
465#endif
466
467#ifdef FEAT_XIM
468 char *rsrc_input_method;
469 char *rsrc_preedit_type_name;
470#endif
471} gui_T;
472
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100473extern gui_T gui; // this is defined in gui.c
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100475// definitions of available window positionings for gui_*_position_in_parent()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476typedef enum
477{
478 VW_POS_MOUSE,
479 VW_POS_CENTER,
480 VW_POS_TOP_CENTER
Bram Moolenaar8348ea62005-06-14 22:05:40 +0000481} gui_win_pos_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000483#ifdef FIND_REPLACE_DIALOG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484/*
485 * Flags used to distinguish the different contexts in which the
486 * find/replace callback may be called.
487 */
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100488# define FRD_FINDNEXT 1 // Find next in find dialog
489# define FRD_R_FINDNEXT 2 // Find next in repl dialog
490# define FRD_REPLACE 3 // Replace once
491# define FRD_REPLACEALL 4 // Replace remaining matches
492# define FRD_UNDO 5 // Undo replaced text
493# define FRD_TYPE_MASK 7 // Mask for the callback type
494// Flags which change the way searching is done.
495# define FRD_WHOLE_WORD 0x08 // match whole word only
496# define FRD_MATCH_CASE 0x10 // match case
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497#endif
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000498
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200499#ifdef FEAT_GUI_GTK
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000500/*
501 * Convenience macros to convert from 'encoding' to 'termencoding' and
502 * vice versa. If no conversion is necessary the passed-in pointer is
503 * returned as is, without allocating any memory. Thus additional _FREE()
504 * macros are provided. The _FREE() macros also set the pointer to NULL,
505 * in order to avoid bugs due to illegal memory access only happening if
506 * 'encoding' != utf-8...
507 *
508 * Defining these macros as pure expressions looks a bit tricky but
509 * avoids depending on the context of the macro expansion. One of the
510 * rare occasions where the comma operator comes in handy :)
511 *
512 * Note: Do NOT keep the result around when handling control back to
513 * the main Vim! The user could change 'encoding' at any time.
514 */
515# define CONVERT_TO_UTF8(String) \
516 ((output_conv.vc_type == CONV_NONE || (String) == NULL) \
517 ? (String) \
518 : string_convert(&output_conv, (String), NULL))
519
520# define CONVERT_TO_UTF8_FREE(String) \
521 ((String) = ((output_conv.vc_type == CONV_NONE) \
522 ? (char_u *)NULL \
523 : (vim_free(String), (char_u *)NULL)))
524
525# define CONVERT_FROM_UTF8(String) \
526 ((input_conv.vc_type == CONV_NONE || (String) == NULL) \
527 ? (String) \
528 : string_convert(&input_conv, (String), NULL))
529
530# define CONVERT_FROM_UTF8_FREE(String) \
531 ((String) = ((input_conv.vc_type == CONV_NONE) \
532 ? (char_u *)NULL \
533 : (vim_free(String), (char_u *)NULL)))
534
535#else
536# define CONVERT_TO_UTF8(String) (String)
537# define CONVERT_TO_UTF8_FREE(String) ((String) = (char_u *)NULL)
538# define CONVERT_FROM_UTF8(String) (String)
539# define CONVERT_FROM_UTF8_FREE(String) ((String) = (char_u *)NULL)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100540#endif // FEAT_GUI_GTK
Bram Moolenaard47d8372016-09-09 22:13:24 +0200541
542#ifdef FEAT_GUI_GTK
543/*
544 * The second parameter of g_signal_handlers_disconnect_by_func() is supposed
545 * to be a function pointer which was passed to g_signal_connect_*() somewhere
546 * previously, and hence it must be of type GCallback, i.e., void (*)(void).
547 *
548 * Meanwhile, g_signal_handlers_disconnect_by_func() is a macro calling
549 * g_signal_handlers_disconnect_matched(), and the second parameter of the
550 * former is to be passed to the sixth parameter of the latter the type of
551 * which, however, is declared as void * in the function signature.
552 *
553 * While the ISO C Standard does not require that function pointers be
554 * interconvertible to void *, widely-used compilers such as gcc and clang
555 * do such conversion implicitly and automatically on some platforms without
556 * issuing any warning.
557 *
558 * For Solaris Studio, that is not the case. An explicit type cast is needed
559 * to suppress warnings on that particular conversion.
560 */
561# if defined(__SUNPRO_C) && defined(USE_GTK3)
562# define FUNC2GENERIC(func) (void *)(func)
563# else
564# define FUNC2GENERIC(func) G_CALLBACK(func)
565# endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100566#endif // FEAT_GUI_GTK
Bram Moolenaarb0b98d52018-05-05 21:01:00 +0200567
Bram Moolenaar097148e2020-08-11 21:58:20 +0200568#if defined(UNIX)
Bram Moolenaarb0b98d52018-05-05 21:01:00 +0200569# define GUI_MAY_FORK
570#endif