blob: 8b8b7fb163855222e5e7b7a23f5f2f904951fb10 [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
27# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000028# include <X11/Intrinsic.h>
29# include <gtk/gtk.h>
30#endif
31
Bram Moolenaarb3f74062020-02-26 16:16:53 +010032#ifdef FEAT_GUI_HAIKU
33# include "gui_haiku.h"
34#endif
35
Bram Moolenaarb7ed8392019-07-04 21:24:34 +020036// Needed when generating prototypes, since FEAT_GUI is always defined then.
37#if defined(FEAT_XCLIPBOARD) && !defined(FEAT_GUI_MOTIF) \
38 && !defined(FEAT_GUI_ATHENA) && !defined(FEAT_GUI_GTK)
39# include <X11/Intrinsic.h>
40#endif
41
Bram Moolenaar071d4272004-06-13 20:20:40 +000042#ifdef FEAT_GUI_PHOTON
43# include <Ph.h>
44# include <Pt.h>
45# include "photon/PxProto.h"
46#endif
47
48/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +000049 * On some systems scrolling needs to be done right away instead of in the
50 * main loop.
51 */
Bram Moolenaar097148e2020-08-11 21:58:20 +020052#if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +000053# define USE_ON_FLY_SCROLL
54#endif
55
56/*
57 * GUIs that support dropping files on a running Vim.
58 */
Bram Moolenaar92d147b2018-07-29 17:35:23 +020059#if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \
60 || defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +010061 || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +000062# define HAVE_DROP_FILE
63#endif
64
65/*
66 * This define makes menus always use a fontset.
67 * We're not sure if this code always works, thus it can be disabled.
68 */
69#ifdef FEAT_XFONTSET
70# define FONTSET_ALWAYS
71#endif
72
73/*
74 * These macros convert between character row/column and pixel coordinates.
75 * TEXT_X - Convert character column into X pixel coord for drawing strings.
76 * TEXT_Y - Convert character row into Y pixel coord for drawing strings.
77 * FILL_X - Convert character column into X pixel coord for filling the area
78 * under the character.
79 * FILL_Y - Convert character row into Y pixel coord for filling the area
80 * under the character.
81 * X_2_COL - Convert X pixel coord into character column.
82 * Y_2_ROW - Convert Y pixel coord into character row.
83 */
Bram Moolenaar4f974752019-02-17 17:44:42 +010084#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +000085# define TEXT_X(col) ((col) * gui.char_width)
86# define TEXT_Y(row) ((row) * gui.char_height + gui.char_ascent)
87# define FILL_X(col) ((col) * gui.char_width)
88# define FILL_Y(row) ((row) * gui.char_height)
89# define X_2_COL(x) ((x) / gui.char_width)
90# define Y_2_ROW(y) ((y) / gui.char_height)
91#else
92# define TEXT_X(col) ((col) * gui.char_width + gui.border_offset)
93# define FILL_X(col) ((col) * gui.char_width + gui.border_offset)
94# define X_2_COL(x) (((x) - gui.border_offset) / gui.char_width)
95# define TEXT_Y(row) ((row) * gui.char_height + gui.char_ascent \
96 + gui.border_offset)
97# define FILL_Y(row) ((row) * gui.char_height + gui.border_offset)
98# define Y_2_ROW(y) (((y) - gui.border_offset) / gui.char_height)
99#endif
100
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100101// Indices for arrays of scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102#define SBAR_NONE -1
103#define SBAR_LEFT 0
104#define SBAR_RIGHT 1
105#define SBAR_BOTTOM 2
106
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100107// Orientations for scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108#define SBAR_VERT 0
109#define SBAR_HORIZ 1
110
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100111// Default size of scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112#define SB_DEFAULT_WIDTH 16
113
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100114// Default height of the menu bar
115#define MENU_DEFAULT_HEIGHT 1 // figure it out at runtime
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100117// Flags for gui_mch_outstr_nowrap()
118#define GUI_MON_WRAP_CURSOR 0x01 // wrap cursor at end of line
119#define GUI_MON_INVERT 0x02 // invert the characters
120#define GUI_MON_IS_CURSOR 0x04 // drawing cursor
121#define GUI_MON_TRS_CURSOR 0x08 // drawing transparent cursor
122#define GUI_MON_NOCLEAR 0x10 // don't clear selection
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100124// Flags for gui_mch_draw_string()
125#define DRAW_TRANSP 0x01 // draw with transparent bg
126#define DRAW_BOLD 0x02 // draw bold text
127#define DRAW_UNDERL 0x04 // draw underline text
128#define DRAW_UNDERC 0x08 // draw undercurl text
Bram Moolenaare60acc12011-05-10 16:41:25 +0200129#if defined(FEAT_GUI_GTK)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100130# define DRAW_ITALIC 0x10 // draw italic text
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100132#define DRAW_CURSOR 0x20 // drawing block cursor (win32)
133#define DRAW_STRIKE 0x40 // strikethrough
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100135// For our own tearoff menu item
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136#define TEAR_STRING "-->Detach"
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100137#define TEAR_LEN (9) // length of above string
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100139// for the toolbar
Bram Moolenaare89ff042016-02-20 22:17:05 +0100140#define TOOLBAR_BUTTON_HEIGHT 18
141#define TOOLBAR_BUTTON_WIDTH 18
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100142#define TOOLBAR_BORDER_HEIGHT 12 // room above+below buttons for MSWindows
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000144#ifdef FEAT_GUI_MSWIN
Bram Moolenaar2e2a2812006-03-27 20:55:21 +0000145# define TABLINE_HEIGHT 22
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000146#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000147#ifdef FEAT_GUI_MOTIF
148# define TABLINE_HEIGHT 30
149#endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000150
Bram Moolenaar9372a112005-12-06 19:59:18 +0000151#if defined(NO_CONSOLE) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100152# define NO_CONSOLE_INPUT // use no_console_input() to check if there
153 // is no console input possible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154#endif
155
156typedef struct GuiScrollbar
157{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100158 long ident; // Unique identifier for each scrollbar
159 win_T *wp; // Scrollbar's window, NULL for bottom
160 int type; // one of SBAR_{LEFT,RIGHT,BOTTOM}
161 long value; // Represents top line number visible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162#ifdef FEAT_GUI_ATHENA
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100163 int pixval; // pixel count of value
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100165 long size; // Size of scrollbar thumb
166 long max; // Number of lines in buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100168 // Values measured in characters:
169 int top; // Top of scroll bar (chars from row 0)
170 int height; // Current height of scroll bar in rows
171 int width; // Current width of scroll bar in cols
172 int status_height; // Height of status line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173#ifdef FEAT_GUI_X11
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100174 Widget id; // Id of real scroll bar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175#endif
176#ifdef FEAT_GUI_GTK
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100177 GtkWidget *id; // Id of real scroll bar
178 unsigned long handler_id; // Id of "value_changed" signal handler
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179#endif
180
181#ifdef FEAT_GUI_MSWIN
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100182 HWND id; // Id of real scroll bar
183 int scroll_shift; // The scrollbar stuff can handle only up to
184 // 32767 lines. When the file is longer,
185 // scroll_shift is set to the number of shifts
186 // to reduce the count.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187#endif
Bram Moolenaarb3f74062020-02-26 16:16:53 +0100188
189#if FEAT_GUI_HAIKU
190 VimScrollBar *id; // Pointer to real scroll bar
191#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192#ifdef FEAT_GUI_PHOTON
193 PtWidget_t *id;
194#endif
195} scrollbar_T;
196
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100197typedef long guicolor_T; // handle for a GUI color; for X11 this should
198 // be "Pixel", but that's an unsigned and we
199 // need a signed value
200#define INVALCOLOR (guicolor_T)-11111 // number for invalid color; on 32 bit
201 // displays there is a tiny chance this is an
202 // actual color
203#define CTERMCOLOR (guicolor_T)-11110 // only used for cterm.bg_rgb and
204 // cterm.fg_rgb: use cterm color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205
206#ifdef FEAT_GUI_GTK
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100207 typedef PangoFontDescription *GuiFont; // handle for a GUI font
208 typedef PangoFontDescription *GuiFontset; // handle for a GUI fontset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209# define NOFONT (GuiFont)NULL
210# define NOFONTSET (GuiFontset)NULL
211#else
212# ifdef FEAT_GUI_PHOTON
213 typedef char *GuiFont;
214 typedef char *GuiFontset;
215# define NOFONT (GuiFont)NULL
216# define NOFONTSET (GuiFontset)NULL
217# else
218# ifdef FEAT_GUI_X11
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100219 typedef XFontStruct *GuiFont; // handle for a GUI font
220 typedef XFontSet GuiFontset; // handle for a GUI fontset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221# define NOFONT (GuiFont)0
222# define NOFONTSET (GuiFontset)0
223# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100224 typedef long_u GuiFont; // handle for a GUI font
225 typedef long_u GuiFontset; // handle for a GUI fontset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226# define NOFONT (GuiFont)0
227# define NOFONTSET (GuiFontset)0
228# endif
229# endif
230#endif
231
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200232#ifdef VIMDLL
233// Use spawn when GUI is starting.
234# define GUI_MAY_SPAWN
235
236// Uncomment the next definition if you want to use the `:gui` command on
237// Windows. It uses `:mksession` to inherit the session from vim.exe to
238// gvim.exe. So, it doesn't work perfectly. (EXPERIMENTAL)
239//# define EXPERIMENTAL_GUI_CMD
240#endif
241
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242typedef struct Gui
243{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100244 int in_focus; // Vim has input focus
245 int in_use; // Is the GUI being used?
246 int starting; // GUI will start in a little while
247 int shell_created; // Has the shell been created yet?
248 int dying; // Is vim dying? Then output to terminal
249 int dofork; // Use fork() when GUI is starting
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200250#ifdef GUI_MAY_SPAWN
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100251 int dospawn; // Use spawn() when GUI is starting
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200252#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100253 int dragged_sb; // Which scrollbar being dragged, if any?
254 win_T *dragged_wp; // Which WIN's sb being dragged, if any?
255 int pointer_hidden; // Is the mouse pointer hidden?
256 int col; // Current cursor column in GUI display
257 int row; // Current cursor row in GUI display
258 int cursor_col; // Physical cursor column in GUI display
259 int cursor_row; // Physical cursor row in GUI display
260 char cursor_is_valid; // There is a cursor at cursor_row/col
261 int num_cols; // Number of columns
262 int num_rows; // Number of rows
263 int scroll_region_top; // Top (first) line of scroll region
264 int scroll_region_bot; // Bottom (last) line of scroll region
265 int scroll_region_left; // Left (first) column of scroll region
266 int scroll_region_right; // Right (last) col. of scroll region
267 int highlight_mask; // Highlight attribute mask
268 int scrollbar_width; // Width of vertical scrollbars
269 int scrollbar_height; // Height of horizontal scrollbar
270 int left_sbar_x; // Calculated x coord for left scrollbar
271 int right_sbar_x; // Calculated x coord for right scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272
273#ifdef FEAT_MENU
274# ifndef FEAT_GUI_GTK
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100275 int menu_height; // Height of the menu bar
276 int menu_width; // Width of the menu bar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277# endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100278 char menu_is_active; // TRUE if menu is present
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279# ifdef FEAT_GUI_ATHENA
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100280 char menu_height_fixed; // TRUE if menu height fixed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281# endif
282#endif
283
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100284 scrollbar_T bottom_sbar; // Bottom scrollbar
285 int which_scrollbars[3];// Which scrollbar boxes are active?
286 int prev_wrap; // For updating the horizontal scrollbar
287 int char_width; // Width of char cell in pixels
288 int char_height; // Height of char cell in pixels, includes
289 // 'linespace'
290 int char_ascent; // Ascent of char in pixels
291 int border_width; // Width of our border around text area
292 int border_offset; // Total pixel offset for all borders
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100294 GuiFont norm_font; // Normal font
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200295#ifndef FEAT_GUI_GTK
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100296 GuiFont bold_font; // Bold font
297 GuiFont ital_font; // Italic font
298 GuiFont boldital_font; // Bold-Italic font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299#else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100300 int font_can_bold; // Whether norm_font supports bold weight.
301 // The styled font variants are not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302#endif
303
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200304#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305# ifdef FONTSET_ALWAYS
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100306 GuiFontset menu_fontset; // set of fonts for multi-byte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100308 GuiFont menu_font; // menu item font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309# endif
310#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100311 GuiFont wide_font; // Normal 'guifontwide' font
Bram Moolenaar264b74f2019-01-24 17:18:42 +0100312#ifndef FEAT_GUI_GTK
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100313 GuiFont wide_bold_font; // Bold 'guifontwide' font
314 GuiFont wide_ital_font; // Italic 'guifontwide' font
315 GuiFont wide_boldital_font; // Bold-Italic 'guifontwide' font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316#endif
317#ifdef FEAT_XFONTSET
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100318 GuiFontset fontset; // set of fonts for multi-byte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100320 guicolor_T back_pixel; // Color of background
321 guicolor_T norm_pixel; // Color of normal text
322 guicolor_T def_back_pixel; // default Color of background
323 guicolor_T def_norm_pixel; // default Color of normal text
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324
325#ifdef FEAT_GUI_X11
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100326 char *rsrc_menu_fg_name; // Color of menu & dialog foreground
327 guicolor_T menu_fg_pixel; // Same in Pixel format
328 char *rsrc_menu_bg_name; // Color of menu & dialog background
329 guicolor_T menu_bg_pixel; // Same in Pixel format
330 char *rsrc_scroll_fg_name; // Color of scrollbar foreground
331 guicolor_T scroll_fg_pixel; // Same in Pixel format
332 char *rsrc_scroll_bg_name; // Color of scrollbar background
333 guicolor_T scroll_bg_pixel; // Same in Pixel format
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334
335# ifdef FEAT_GUI_MOTIF
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100336 guicolor_T menu_def_fg_pixel; // Default menu foreground
337 guicolor_T menu_def_bg_pixel; // Default menu background
338 guicolor_T scroll_def_fg_pixel; // Default scrollbar foreground
339 guicolor_T scroll_def_bg_pixel; // Default scrollbar background
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340# endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100341 Display *dpy; // X display
342 Window wid; // Window id of text area
343 int visibility; // Is shell partially/fully obscured?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 GC text_gc;
345 GC back_gc;
346 GC invert_gc;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100347 Cursor blank_pointer; // Blank pointer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100349 // X Resources
350 char_u *rsrc_font_name; // Resource font name, used if 'guifont'
351 // not set
352 char_u *rsrc_bold_font_name; // Resource bold font name
353 char_u *rsrc_ital_font_name; // Resource italic font name
354 char_u *rsrc_boldital_font_name; // Resource bold-italic font name
355 char_u *rsrc_menu_font_name; // Resource menu Font name
356 Bool rsrc_rev_video; // Use reverse video?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100358 char_u *geom; // Geometry, eg "80x24"
359 Bool color_approx; // Some color was approximated
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360#endif
361
362#ifdef FEAT_GUI_GTK
Bram Moolenaar98921892016-02-23 17:14:37 +0100363# ifndef USE_GTK3
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100364 int visibility; // Is shell partially/fully obscured?
Bram Moolenaar98921892016-02-23 17:14:37 +0100365# endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100366 GdkCursor *blank_pointer; // Blank pointer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100368 // X Resources
369 char_u *geom; // Geometry, eg "80x24"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100371 GtkWidget *mainwin; // top level GTK window
372 GtkWidget *formwin; // manages all the windows below
373 GtkWidget *drawarea; // the "text" area
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374# ifdef FEAT_MENU
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100375 GtkWidget *menubar; // menubar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376# endif
377# ifdef FEAT_TOOLBAR
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100378 GtkWidget *toolbar; // toolbar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379# endif
380# ifdef FEAT_GUI_GNOME
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100381 GtkWidget *menubar_h; // menubar handle
382 GtkWidget *toolbar_h; // toolbar handle
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383# endif
Bram Moolenaar36edf062016-07-21 22:10:12 +0200384# ifdef USE_GTK3
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100385 GdkRGBA *fgcolor; // GDK-styled foreground color
386 GdkRGBA *bgcolor; // GDK-styled background color
387 GdkRGBA *spcolor; // GDK-styled special color
Bram Moolenaar36edf062016-07-21 22:10:12 +0200388# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100389 GdkColor *fgcolor; // GDK-styled foreground color
390 GdkColor *bgcolor; // GDK-styled background color
391 GdkColor *spcolor; // GDK-styled special color
Bram Moolenaar36edf062016-07-21 22:10:12 +0200392# endif
Bram Moolenaar98921892016-02-23 17:14:37 +0100393# ifdef USE_GTK3
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100394 cairo_surface_t *surface; // drawarea surface
395 gboolean by_signal; // cause of draw operation
Bram Moolenaar98921892016-02-23 17:14:37 +0100396# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100397 GdkGC *text_gc; // cached GC for normal text
Bram Moolenaar98921892016-02-23 17:14:37 +0100398# endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100399 PangoContext *text_context; // the context used for all text
400 PangoFont *ascii_font; // cached font for ASCII strings
401 PangoGlyphString *ascii_glyphs; // cached code point -> glyph map
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000402# ifdef FEAT_GUI_TABLINE
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100403 GtkWidget *tabline; // tab pages line handle
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404# endif
405
406 GtkAccelGroup *accel_group;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100407 GtkWidget *filedlg; // file selection dialog
408 char_u *browse_fname; // file name from filedlg
Bram Moolenaar20892c12011-06-26 04:49:00 +0200409
410 guint32 event_time;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100411#endif // FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000413#if defined(FEAT_GUI_TABLINE) \
Bram Moolenaar4f974752019-02-17 17:44:42 +0100414 && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MOTIF) \
Bram Moolenaar097148e2020-08-11 21:58:20 +0200415 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000416 int tabline_height;
417#endif
418
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419#ifdef FEAT_FOOTER
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100420 int footer_height; // height of the message footer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421#endif
422
423#if defined(FEAT_TOOLBAR) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +0100424 && (defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU))
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100425 int toolbar_height; // height of the toolbar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426#endif
427
428#ifdef FEAT_BEVAL_TIP
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100429 // Tooltip properties; also used for balloon evaluation
430 char_u *rsrc_tooltip_font_name; // tooltip font name
431 char *rsrc_tooltip_fg_name; // tooltip foreground color name
432 char *rsrc_tooltip_bg_name; // tooltip background color name
433 guicolor_T tooltip_fg_pixel; // tooltip foreground color
434 guicolor_T tooltip_bg_pixel; // tooltip background color
435 XFontSet tooltip_fontset; // tooltip fontset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436#endif
437
438#ifdef FEAT_GUI_MSWIN
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100439 GuiFont currFont; // Current font
440 guicolor_T currFgColor; // Current foreground text color
441 guicolor_T currBgColor; // Current background text color
442 guicolor_T currSpColor; // Current special text color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443#endif
444
Bram Moolenaarb3f74062020-02-26 16:16:53 +0100445#ifdef FEAT_GUI_HAIKU
446 VimApp *vimApp;
447 VimWindow *vimWindow;
448 VimFormView *vimForm;
449 VimTextAreaView *vimTextArea;
450 int vdcmp; // Vim Direct Communication Message Port
451#endif
452
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453#ifdef FEAT_GUI_PHOTON
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100454 PtWidget_t *vimWindow; // PtWindow
455 PtWidget_t *vimTextArea; // PtRaw
456 PtWidget_t *vimContainer; // PtPanel
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457# if defined(FEAT_MENU) || defined(FEAT_TOOLBAR)
458 PtWidget_t *vimToolBarGroup;
459# endif
460# ifdef FEAT_MENU
461 PtWidget_t *vimMenuBar;
462# endif
463# ifdef FEAT_TOOLBAR
464 PtWidget_t *vimToolBar;
465 int toolbar_height;
466# endif
467 PhEvent_t *event_buffer;
468#endif
469
470#ifdef FEAT_XIM
471 char *rsrc_input_method;
472 char *rsrc_preedit_type_name;
473#endif
474} gui_T;
475
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100476extern gui_T gui; // this is defined in gui.c
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100478// definitions of available window positionings for gui_*_position_in_parent()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479typedef enum
480{
481 VW_POS_MOUSE,
482 VW_POS_CENTER,
483 VW_POS_TOP_CENTER
Bram Moolenaar8348ea62005-06-14 22:05:40 +0000484} gui_win_pos_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000486#ifdef FIND_REPLACE_DIALOG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487/*
488 * Flags used to distinguish the different contexts in which the
489 * find/replace callback may be called.
490 */
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100491# define FRD_FINDNEXT 1 // Find next in find dialog
492# define FRD_R_FINDNEXT 2 // Find next in repl dialog
493# define FRD_REPLACE 3 // Replace once
494# define FRD_REPLACEALL 4 // Replace remaining matches
495# define FRD_UNDO 5 // Undo replaced text
496# define FRD_TYPE_MASK 7 // Mask for the callback type
497// Flags which change the way searching is done.
498# define FRD_WHOLE_WORD 0x08 // match whole word only
499# define FRD_MATCH_CASE 0x10 // match case
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500#endif
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000501
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200502#ifdef FEAT_GUI_GTK
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000503/*
504 * Convenience macros to convert from 'encoding' to 'termencoding' and
505 * vice versa. If no conversion is necessary the passed-in pointer is
506 * returned as is, without allocating any memory. Thus additional _FREE()
507 * macros are provided. The _FREE() macros also set the pointer to NULL,
508 * in order to avoid bugs due to illegal memory access only happening if
509 * 'encoding' != utf-8...
510 *
511 * Defining these macros as pure expressions looks a bit tricky but
512 * avoids depending on the context of the macro expansion. One of the
513 * rare occasions where the comma operator comes in handy :)
514 *
515 * Note: Do NOT keep the result around when handling control back to
516 * the main Vim! The user could change 'encoding' at any time.
517 */
518# define CONVERT_TO_UTF8(String) \
519 ((output_conv.vc_type == CONV_NONE || (String) == NULL) \
520 ? (String) \
521 : string_convert(&output_conv, (String), NULL))
522
523# define CONVERT_TO_UTF8_FREE(String) \
524 ((String) = ((output_conv.vc_type == CONV_NONE) \
525 ? (char_u *)NULL \
526 : (vim_free(String), (char_u *)NULL)))
527
528# define CONVERT_FROM_UTF8(String) \
529 ((input_conv.vc_type == CONV_NONE || (String) == NULL) \
530 ? (String) \
531 : string_convert(&input_conv, (String), NULL))
532
533# define CONVERT_FROM_UTF8_FREE(String) \
534 ((String) = ((input_conv.vc_type == CONV_NONE) \
535 ? (char_u *)NULL \
536 : (vim_free(String), (char_u *)NULL)))
537
538#else
539# define CONVERT_TO_UTF8(String) (String)
540# define CONVERT_TO_UTF8_FREE(String) ((String) = (char_u *)NULL)
541# define CONVERT_FROM_UTF8(String) (String)
542# define CONVERT_FROM_UTF8_FREE(String) ((String) = (char_u *)NULL)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100543#endif // FEAT_GUI_GTK
Bram Moolenaard47d8372016-09-09 22:13:24 +0200544
545#ifdef FEAT_GUI_GTK
546/*
547 * The second parameter of g_signal_handlers_disconnect_by_func() is supposed
548 * to be a function pointer which was passed to g_signal_connect_*() somewhere
549 * previously, and hence it must be of type GCallback, i.e., void (*)(void).
550 *
551 * Meanwhile, g_signal_handlers_disconnect_by_func() is a macro calling
552 * g_signal_handlers_disconnect_matched(), and the second parameter of the
553 * former is to be passed to the sixth parameter of the latter the type of
554 * which, however, is declared as void * in the function signature.
555 *
556 * While the ISO C Standard does not require that function pointers be
557 * interconvertible to void *, widely-used compilers such as gcc and clang
558 * do such conversion implicitly and automatically on some platforms without
559 * issuing any warning.
560 *
561 * For Solaris Studio, that is not the case. An explicit type cast is needed
562 * to suppress warnings on that particular conversion.
563 */
564# if defined(__SUNPRO_C) && defined(USE_GTK3)
565# define FUNC2GENERIC(func) (void *)(func)
566# else
567# define FUNC2GENERIC(func) G_CALLBACK(func)
568# endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100569#endif // FEAT_GUI_GTK
Bram Moolenaarb0b98d52018-05-05 21:01:00 +0200570
Bram Moolenaar097148e2020-08-11 21:58:20 +0200571#if defined(UNIX)
Bram Moolenaarb0b98d52018-05-05 21:01:00 +0200572# define GUI_MAY_FORK
573#endif