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 | * 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 Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 10 | #ifdef FEAT_GUI_MOTIF |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 11 | # include <Xm/Xm.h> |
| 12 | #endif |
| 13 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 14 | #ifdef FEAT_GUI_GTK |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 15 | # ifdef VMS // undef MIN and MAX because Intrinsic.h redefines them anyway |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 16 | # ifdef MAX |
| 17 | # undef MAX |
| 18 | # endif |
| 19 | # ifdef MIN |
| 20 | # undef MIN |
| 21 | # endif |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 22 | # include "gui_gtk_vms.h" |
| 23 | # endif // VMS |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 24 | # include <X11/Intrinsic.h> |
| 25 | # include <gtk/gtk.h> |
| 26 | #endif |
| 27 | |
Bram Moolenaar | b3f7406 | 2020-02-26 16:16:53 +0100 | [diff] [blame] | 28 | #ifdef FEAT_GUI_HAIKU |
| 29 | # include "gui_haiku.h" |
| 30 | #endif |
| 31 | |
Bram Moolenaar | b7ed839 | 2019-07-04 21:24:34 +0200 | [diff] [blame] | 32 | // Needed when generating prototypes, since FEAT_GUI is always defined then. |
| 33 | #if defined(FEAT_XCLIPBOARD) && !defined(FEAT_GUI_MOTIF) \ |
Bram Moolenaar | 0b962e5 | 2022-04-03 18:02:37 +0100 | [diff] [blame] | 34 | && !defined(FEAT_GUI_GTK) |
Bram Moolenaar | b7ed839 | 2019-07-04 21:24:34 +0200 | [diff] [blame] | 35 | # include <X11/Intrinsic.h> |
| 36 | #endif |
| 37 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 38 | #ifdef FEAT_GUI_PHOTON |
| 39 | # include <Ph.h> |
| 40 | # include <Pt.h> |
| 41 | # include "photon/PxProto.h" |
| 42 | #endif |
| 43 | |
| 44 | /* |
Bram Moolenaar | b5dd424 | 2007-05-06 12:28:24 +0000 | [diff] [blame] | 45 | * On some systems scrolling needs to be done right away instead of in the |
| 46 | * main loop. |
| 47 | */ |
Bram Moolenaar | 097148e | 2020-08-11 21:58:20 +0200 | [diff] [blame] | 48 | #if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 49 | # define USE_ON_FLY_SCROLL |
| 50 | #endif |
| 51 | |
| 52 | /* |
| 53 | * GUIs that support dropping files on a running Vim. |
| 54 | */ |
Bram Moolenaar | 92d147b | 2018-07-29 17:35:23 +0200 | [diff] [blame] | 55 | #if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \ |
| 56 | || defined(FEAT_GUI_MSWIN) \ |
Bram Moolenaar | b3f7406 | 2020-02-26 16:16:53 +0100 | [diff] [blame] | 57 | || defined(FEAT_GUI_HAIKU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 58 | # define HAVE_DROP_FILE |
| 59 | #endif |
| 60 | |
| 61 | /* |
| 62 | * This define makes menus always use a fontset. |
| 63 | * We're not sure if this code always works, thus it can be disabled. |
| 64 | */ |
| 65 | #ifdef FEAT_XFONTSET |
| 66 | # define FONTSET_ALWAYS |
| 67 | #endif |
| 68 | |
| 69 | /* |
| 70 | * These macros convert between character row/column and pixel coordinates. |
| 71 | * TEXT_X - Convert character column into X pixel coord for drawing strings. |
| 72 | * TEXT_Y - Convert character row into Y pixel coord for drawing strings. |
| 73 | * FILL_X - Convert character column into X pixel coord for filling the area |
| 74 | * under the character. |
| 75 | * FILL_Y - Convert character row into Y pixel coord for filling the area |
| 76 | * under the character. |
| 77 | * X_2_COL - Convert X pixel coord into character column. |
| 78 | * Y_2_ROW - Convert Y pixel coord into character row. |
| 79 | */ |
Bram Moolenaar | 4f97475 | 2019-02-17 17:44:42 +0100 | [diff] [blame] | 80 | #ifdef FEAT_GUI_MSWIN |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 81 | # define TEXT_X(col) ((col) * gui.char_width) |
| 82 | # define TEXT_Y(row) ((row) * gui.char_height + gui.char_ascent) |
| 83 | # define FILL_X(col) ((col) * gui.char_width) |
| 84 | # define FILL_Y(row) ((row) * gui.char_height) |
| 85 | # define X_2_COL(x) ((x) / gui.char_width) |
| 86 | # define Y_2_ROW(y) ((y) / gui.char_height) |
| 87 | #else |
| 88 | # define TEXT_X(col) ((col) * gui.char_width + gui.border_offset) |
| 89 | # define FILL_X(col) ((col) * gui.char_width + gui.border_offset) |
| 90 | # define X_2_COL(x) (((x) - gui.border_offset) / gui.char_width) |
| 91 | # define TEXT_Y(row) ((row) * gui.char_height + gui.char_ascent \ |
| 92 | + gui.border_offset) |
| 93 | # define FILL_Y(row) ((row) * gui.char_height + gui.border_offset) |
| 94 | # define Y_2_ROW(y) (((y) - gui.border_offset) / gui.char_height) |
| 95 | #endif |
| 96 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 97 | // Indices for arrays of scrollbars |
kylo252 | 9dac9b1 | 2022-03-27 20:05:17 +0100 | [diff] [blame] | 98 | #define SBAR_NONE (-1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 99 | #define SBAR_LEFT 0 |
| 100 | #define SBAR_RIGHT 1 |
| 101 | #define SBAR_BOTTOM 2 |
| 102 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 103 | // Orientations for scrollbars |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 104 | #define SBAR_VERT 0 |
| 105 | #define SBAR_HORIZ 1 |
| 106 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 107 | // Default size of scrollbar |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 108 | #define SB_DEFAULT_WIDTH 16 |
| 109 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 110 | // Default height of the menu bar |
| 111 | #define MENU_DEFAULT_HEIGHT 1 // figure it out at runtime |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 112 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 113 | // Flags for gui_mch_outstr_nowrap() |
| 114 | #define GUI_MON_WRAP_CURSOR 0x01 // wrap cursor at end of line |
| 115 | #define GUI_MON_INVERT 0x02 // invert the characters |
| 116 | #define GUI_MON_IS_CURSOR 0x04 // drawing cursor |
| 117 | #define GUI_MON_TRS_CURSOR 0x08 // drawing transparent cursor |
| 118 | #define GUI_MON_NOCLEAR 0x10 // don't clear selection |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 119 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 120 | // Flags for gui_mch_draw_string() |
| 121 | #define DRAW_TRANSP 0x01 // draw with transparent bg |
| 122 | #define DRAW_BOLD 0x02 // draw bold text |
| 123 | #define DRAW_UNDERL 0x04 // draw underline text |
| 124 | #define DRAW_UNDERC 0x08 // draw undercurl text |
Bram Moolenaar | e60acc1 | 2011-05-10 16:41:25 +0200 | [diff] [blame] | 125 | #if defined(FEAT_GUI_GTK) |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 126 | # define DRAW_ITALIC 0x10 // draw italic text |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 127 | #endif |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 128 | #define DRAW_CURSOR 0x20 // drawing block cursor (win32) |
| 129 | #define DRAW_STRIKE 0x40 // strikethrough |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 130 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 131 | // For our own tearoff menu item |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 132 | #define TEAR_STRING "-->Detach" |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 133 | #define TEAR_LEN (9) // length of above string |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 134 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 135 | // for the toolbar |
Bram Moolenaar | e89ff04 | 2016-02-20 22:17:05 +0100 | [diff] [blame] | 136 | #define TOOLBAR_BUTTON_HEIGHT 18 |
| 137 | #define TOOLBAR_BUTTON_WIDTH 18 |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 138 | #define TOOLBAR_BORDER_HEIGHT 12 // room above+below buttons for MSWindows |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 139 | |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 140 | #ifdef FEAT_GUI_MSWIN |
Bram Moolenaar | 2e2a281 | 2006-03-27 20:55:21 +0000 | [diff] [blame] | 141 | # define TABLINE_HEIGHT 22 |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 142 | #endif |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 143 | #ifdef FEAT_GUI_MOTIF |
| 144 | # define TABLINE_HEIGHT 30 |
| 145 | #endif |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 146 | |
Bram Moolenaar | 9372a11 | 2005-12-06 19:59:18 +0000 | [diff] [blame] | 147 | #if defined(NO_CONSOLE) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 148 | # define NO_CONSOLE_INPUT // use no_console_input() to check if there |
| 149 | // is no console input possible |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 150 | #endif |
| 151 | |
| 152 | typedef struct GuiScrollbar |
| 153 | { |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 154 | long ident; // Unique identifier for each scrollbar |
| 155 | win_T *wp; // Scrollbar's window, NULL for bottom |
| 156 | int type; // one of SBAR_{LEFT,RIGHT,BOTTOM} |
| 157 | long value; // Represents top line number visible |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 158 | long size; // Size of scrollbar thumb |
| 159 | long max; // Number of lines in buffer |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 160 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 161 | // Values measured in characters: |
| 162 | int top; // Top of scroll bar (chars from row 0) |
| 163 | int height; // Current height of scroll bar in rows |
| 164 | int width; // Current width of scroll bar in cols |
| 165 | int status_height; // Height of status line |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 166 | #ifdef FEAT_GUI_X11 |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 167 | Widget id; // Id of real scroll bar |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 168 | #endif |
| 169 | #ifdef FEAT_GUI_GTK |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 170 | GtkWidget *id; // Id of real scroll bar |
| 171 | unsigned long handler_id; // Id of "value_changed" signal handler |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 172 | #endif |
| 173 | |
| 174 | #ifdef FEAT_GUI_MSWIN |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 175 | HWND id; // Id of real scroll bar |
| 176 | int scroll_shift; // The scrollbar stuff can handle only up to |
| 177 | // 32767 lines. When the file is longer, |
| 178 | // scroll_shift is set to the number of shifts |
| 179 | // to reduce the count. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 180 | #endif |
Bram Moolenaar | b3f7406 | 2020-02-26 16:16:53 +0100 | [diff] [blame] | 181 | |
| 182 | #if FEAT_GUI_HAIKU |
| 183 | VimScrollBar *id; // Pointer to real scroll bar |
| 184 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 185 | #ifdef FEAT_GUI_PHOTON |
| 186 | PtWidget_t *id; |
| 187 | #endif |
| 188 | } scrollbar_T; |
| 189 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 190 | typedef long guicolor_T; // handle for a GUI color; for X11 this should |
| 191 | // be "Pixel", but that's an unsigned and we |
| 192 | // need a signed value |
kylo252 | 9dac9b1 | 2022-03-27 20:05:17 +0100 | [diff] [blame] | 193 | #define INVALCOLOR ((guicolor_T)-11111) // number for invalid color; on 32 bit |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 194 | // displays there is a tiny chance this is an |
| 195 | // actual color |
kylo252 | 9dac9b1 | 2022-03-27 20:05:17 +0100 | [diff] [blame] | 196 | #define CTERMCOLOR ((guicolor_T)-11110) // only used for cterm.bg_rgb and |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 197 | // cterm.fg_rgb: use cterm color |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 198 | |
| 199 | #ifdef FEAT_GUI_GTK |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 200 | typedef PangoFontDescription *GuiFont; // handle for a GUI font |
| 201 | typedef PangoFontDescription *GuiFontset; // handle for a GUI fontset |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 202 | # define NOFONT (GuiFont)NULL |
| 203 | # define NOFONTSET (GuiFontset)NULL |
| 204 | #else |
| 205 | # ifdef FEAT_GUI_PHOTON |
| 206 | typedef char *GuiFont; |
| 207 | typedef char *GuiFontset; |
| 208 | # define NOFONT (GuiFont)NULL |
| 209 | # define NOFONTSET (GuiFontset)NULL |
| 210 | # else |
| 211 | # ifdef FEAT_GUI_X11 |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 212 | typedef XFontStruct *GuiFont; // handle for a GUI font |
| 213 | typedef XFontSet GuiFontset; // handle for a GUI fontset |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 214 | # define NOFONT (GuiFont)0 |
| 215 | # define NOFONTSET (GuiFontset)0 |
| 216 | # else |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 217 | typedef long_u GuiFont; // handle for a GUI font |
| 218 | typedef long_u GuiFontset; // handle for a GUI fontset |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 219 | # define NOFONT (GuiFont)0 |
| 220 | # define NOFONTSET (GuiFontset)0 |
| 221 | # endif |
| 222 | # endif |
| 223 | #endif |
| 224 | |
Bram Moolenaar | afde13b | 2019-04-28 19:46:49 +0200 | [diff] [blame] | 225 | #ifdef VIMDLL |
| 226 | // Use spawn when GUI is starting. |
| 227 | # define GUI_MAY_SPAWN |
| 228 | |
| 229 | // Uncomment the next definition if you want to use the `:gui` command on |
| 230 | // Windows. It uses `:mksession` to inherit the session from vim.exe to |
| 231 | // gvim.exe. So, it doesn't work perfectly. (EXPERIMENTAL) |
| 232 | //# define EXPERIMENTAL_GUI_CMD |
| 233 | #endif |
| 234 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 235 | typedef struct Gui |
| 236 | { |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 237 | int in_focus; // Vim has input focus |
| 238 | int in_use; // Is the GUI being used? |
| 239 | int starting; // GUI will start in a little while |
| 240 | int shell_created; // Has the shell been created yet? |
| 241 | int dying; // Is vim dying? Then output to terminal |
| 242 | int dofork; // Use fork() when GUI is starting |
Bram Moolenaar | afde13b | 2019-04-28 19:46:49 +0200 | [diff] [blame] | 243 | #ifdef GUI_MAY_SPAWN |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 244 | int dospawn; // Use spawn() when GUI is starting |
Bram Moolenaar | afde13b | 2019-04-28 19:46:49 +0200 | [diff] [blame] | 245 | #endif |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 246 | int dragged_sb; // Which scrollbar being dragged, if any? |
| 247 | win_T *dragged_wp; // Which WIN's sb being dragged, if any? |
| 248 | int pointer_hidden; // Is the mouse pointer hidden? |
| 249 | int col; // Current cursor column in GUI display |
| 250 | int row; // Current cursor row in GUI display |
| 251 | int cursor_col; // Physical cursor column in GUI display |
| 252 | int cursor_row; // Physical cursor row in GUI display |
| 253 | char cursor_is_valid; // There is a cursor at cursor_row/col |
| 254 | int num_cols; // Number of columns |
| 255 | int num_rows; // Number of rows |
| 256 | int scroll_region_top; // Top (first) line of scroll region |
| 257 | int scroll_region_bot; // Bottom (last) line of scroll region |
| 258 | int scroll_region_left; // Left (first) column of scroll region |
| 259 | int scroll_region_right; // Right (last) col. of scroll region |
| 260 | int highlight_mask; // Highlight attribute mask |
| 261 | int scrollbar_width; // Width of vertical scrollbars |
| 262 | int scrollbar_height; // Height of horizontal scrollbar |
| 263 | int left_sbar_x; // Calculated x coord for left scrollbar |
| 264 | int right_sbar_x; // Calculated x coord for right scrollbar |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 265 | |
| 266 | #ifdef FEAT_MENU |
| 267 | # ifndef FEAT_GUI_GTK |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 268 | int menu_height; // Height of the menu bar |
| 269 | int menu_width; // Width of the menu bar |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 270 | # endif |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 271 | char menu_is_active; // TRUE if menu is present |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 272 | #endif |
| 273 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 274 | scrollbar_T bottom_sbar; // Bottom scrollbar |
| 275 | int which_scrollbars[3];// Which scrollbar boxes are active? |
| 276 | int prev_wrap; // For updating the horizontal scrollbar |
| 277 | int char_width; // Width of char cell in pixels |
| 278 | int char_height; // Height of char cell in pixels, includes |
| 279 | // 'linespace' |
| 280 | int char_ascent; // Ascent of char in pixels |
| 281 | int border_width; // Width of our border around text area |
| 282 | int border_offset; // Total pixel offset for all borders |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 283 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 284 | GuiFont norm_font; // Normal font |
Bram Moolenaar | 0eda7ac | 2010-06-26 05:38:18 +0200 | [diff] [blame] | 285 | #ifndef FEAT_GUI_GTK |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 286 | GuiFont bold_font; // Bold font |
| 287 | GuiFont ital_font; // Italic font |
| 288 | GuiFont boldital_font; // Bold-Italic font |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 289 | #else |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 290 | int font_can_bold; // Whether norm_font supports bold weight. |
| 291 | // The styled font variants are not used. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 292 | #endif |
| 293 | |
Bram Moolenaar | 0eda7ac | 2010-06-26 05:38:18 +0200 | [diff] [blame] | 294 | #if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 295 | # ifdef FONTSET_ALWAYS |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 296 | GuiFontset menu_fontset; // set of fonts for multi-byte chars |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 297 | # else |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 298 | GuiFont menu_font; // menu item font |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 299 | # endif |
| 300 | #endif |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 301 | GuiFont wide_font; // Normal 'guifontwide' font |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 302 | #ifndef FEAT_GUI_GTK |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 303 | GuiFont wide_bold_font; // Bold 'guifontwide' font |
| 304 | GuiFont wide_ital_font; // Italic 'guifontwide' font |
| 305 | GuiFont wide_boldital_font; // Bold-Italic 'guifontwide' font |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 306 | #endif |
| 307 | #ifdef FEAT_XFONTSET |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 308 | GuiFontset fontset; // set of fonts for multi-byte chars |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 309 | #endif |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 310 | guicolor_T back_pixel; // Color of background |
| 311 | guicolor_T norm_pixel; // Color of normal text |
| 312 | guicolor_T def_back_pixel; // default Color of background |
| 313 | guicolor_T def_norm_pixel; // default Color of normal text |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 314 | |
| 315 | #ifdef FEAT_GUI_X11 |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 316 | char *rsrc_menu_fg_name; // Color of menu & dialog foreground |
| 317 | guicolor_T menu_fg_pixel; // Same in Pixel format |
| 318 | char *rsrc_menu_bg_name; // Color of menu & dialog background |
| 319 | guicolor_T menu_bg_pixel; // Same in Pixel format |
| 320 | char *rsrc_scroll_fg_name; // Color of scrollbar foreground |
| 321 | guicolor_T scroll_fg_pixel; // Same in Pixel format |
| 322 | char *rsrc_scroll_bg_name; // Color of scrollbar background |
| 323 | guicolor_T scroll_bg_pixel; // Same in Pixel format |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 324 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 325 | Display *dpy; // X display |
| 326 | Window wid; // Window id of text area |
| 327 | int visibility; // Is shell partially/fully obscured? |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 328 | GC text_gc; |
| 329 | GC back_gc; |
| 330 | GC invert_gc; |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 331 | Cursor blank_pointer; // Blank pointer |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 332 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 333 | // X Resources |
| 334 | char_u *rsrc_font_name; // Resource font name, used if 'guifont' |
| 335 | // not set |
| 336 | char_u *rsrc_bold_font_name; // Resource bold font name |
| 337 | char_u *rsrc_ital_font_name; // Resource italic font name |
| 338 | char_u *rsrc_boldital_font_name; // Resource bold-italic font name |
| 339 | char_u *rsrc_menu_font_name; // Resource menu Font name |
| 340 | Bool rsrc_rev_video; // Use reverse video? |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 341 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 342 | char_u *geom; // Geometry, eg "80x24" |
| 343 | Bool color_approx; // Some color was approximated |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 344 | #endif |
| 345 | |
| 346 | #ifdef FEAT_GUI_GTK |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 347 | # ifndef USE_GTK3 |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 348 | int visibility; // Is shell partially/fully obscured? |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 349 | # endif |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 350 | GdkCursor *blank_pointer; // Blank pointer |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 351 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 352 | // X Resources |
| 353 | char_u *geom; // Geometry, eg "80x24" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 354 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 355 | GtkWidget *mainwin; // top level GTK window |
| 356 | GtkWidget *formwin; // manages all the windows below |
| 357 | GtkWidget *drawarea; // the "text" area |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 358 | # ifdef FEAT_MENU |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 359 | GtkWidget *menubar; // menubar |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 360 | # endif |
| 361 | # ifdef FEAT_TOOLBAR |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 362 | GtkWidget *toolbar; // toolbar |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 363 | # endif |
| 364 | # ifdef FEAT_GUI_GNOME |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 365 | GtkWidget *menubar_h; // menubar handle |
| 366 | GtkWidget *toolbar_h; // toolbar handle |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 367 | # endif |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 368 | # ifdef USE_GTK3 |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 369 | GdkRGBA *fgcolor; // GDK-styled foreground color |
| 370 | GdkRGBA *bgcolor; // GDK-styled background color |
| 371 | GdkRGBA *spcolor; // GDK-styled special color |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 372 | # else |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 373 | GdkColor *fgcolor; // GDK-styled foreground color |
| 374 | GdkColor *bgcolor; // GDK-styled background color |
| 375 | GdkColor *spcolor; // GDK-styled special color |
Bram Moolenaar | 36edf06 | 2016-07-21 22:10:12 +0200 | [diff] [blame] | 376 | # endif |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 377 | # ifdef USE_GTK3 |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 378 | cairo_surface_t *surface; // drawarea surface |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 379 | # else |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 380 | GdkGC *text_gc; // cached GC for normal text |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 381 | # endif |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 382 | PangoContext *text_context; // the context used for all text |
| 383 | PangoFont *ascii_font; // cached font for ASCII strings |
| 384 | PangoGlyphString *ascii_glyphs; // cached code point -> glyph map |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 385 | # ifdef FEAT_GUI_TABLINE |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 386 | GtkWidget *tabline; // tab pages line handle |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 387 | # endif |
| 388 | |
| 389 | GtkAccelGroup *accel_group; |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 390 | GtkWidget *filedlg; // file selection dialog |
| 391 | char_u *browse_fname; // file name from filedlg |
Bram Moolenaar | 20892c1 | 2011-06-26 04:49:00 +0200 | [diff] [blame] | 392 | |
| 393 | guint32 event_time; |
Dusan Popovic | 4eeedc0 | 2021-10-16 20:52:05 +0100 | [diff] [blame] | 394 | |
| 395 | char_u ligatures_map[256]; // ascii map for characters 0-255, value is |
| 396 | // 1 if in 'guiligatures' |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 397 | #endif // FEAT_GUI_GTK |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 398 | |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 399 | #if defined(FEAT_GUI_TABLINE) \ |
Bram Moolenaar | 4f97475 | 2019-02-17 17:44:42 +0100 | [diff] [blame] | 400 | && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MOTIF) \ |
Bram Moolenaar | 097148e | 2020-08-11 21:58:20 +0200 | [diff] [blame] | 401 | || defined(FEAT_GUI_HAIKU)) |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 402 | int tabline_height; |
| 403 | #endif |
| 404 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 405 | #if defined(FEAT_TOOLBAR) \ |
Bram Moolenaar | 0b962e5 | 2022-04-03 18:02:37 +0100 | [diff] [blame] | 406 | && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU) || defined(FEAT_GUI_MSWIN)) |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 407 | int toolbar_height; // height of the toolbar |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 408 | #endif |
| 409 | |
| 410 | #ifdef FEAT_BEVAL_TIP |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 411 | // Tooltip properties; also used for balloon evaluation |
| 412 | char_u *rsrc_tooltip_font_name; // tooltip font name |
| 413 | char *rsrc_tooltip_fg_name; // tooltip foreground color name |
| 414 | char *rsrc_tooltip_bg_name; // tooltip background color name |
| 415 | guicolor_T tooltip_fg_pixel; // tooltip foreground color |
| 416 | guicolor_T tooltip_bg_pixel; // tooltip background color |
| 417 | XFontSet tooltip_fontset; // tooltip fontset |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 418 | #endif |
| 419 | |
| 420 | #ifdef FEAT_GUI_MSWIN |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 421 | GuiFont currFont; // Current font |
| 422 | guicolor_T currFgColor; // Current foreground text color |
| 423 | guicolor_T currBgColor; // Current background text color |
| 424 | guicolor_T currSpColor; // Current special text color |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 425 | #endif |
| 426 | |
Bram Moolenaar | b3f7406 | 2020-02-26 16:16:53 +0100 | [diff] [blame] | 427 | #ifdef FEAT_GUI_HAIKU |
| 428 | VimApp *vimApp; |
| 429 | VimWindow *vimWindow; |
| 430 | VimFormView *vimForm; |
| 431 | VimTextAreaView *vimTextArea; |
| 432 | int vdcmp; // Vim Direct Communication Message Port |
| 433 | #endif |
| 434 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 435 | #ifdef FEAT_GUI_PHOTON |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 436 | PtWidget_t *vimWindow; // PtWindow |
| 437 | PtWidget_t *vimTextArea; // PtRaw |
| 438 | PtWidget_t *vimContainer; // PtPanel |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 439 | # if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) |
| 440 | PtWidget_t *vimToolBarGroup; |
| 441 | # endif |
| 442 | # ifdef FEAT_MENU |
| 443 | PtWidget_t *vimMenuBar; |
| 444 | # endif |
| 445 | # ifdef FEAT_TOOLBAR |
| 446 | PtWidget_t *vimToolBar; |
| 447 | int toolbar_height; |
| 448 | # endif |
| 449 | PhEvent_t *event_buffer; |
| 450 | #endif |
| 451 | |
| 452 | #ifdef FEAT_XIM |
| 453 | char *rsrc_input_method; |
| 454 | char *rsrc_preedit_type_name; |
| 455 | #endif |
| 456 | } gui_T; |
| 457 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 458 | extern gui_T gui; // this is defined in gui.c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 459 | |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 460 | // definitions of available window positionings for gui_*_position_in_parent() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 461 | typedef enum |
| 462 | { |
| 463 | VW_POS_MOUSE, |
| 464 | VW_POS_CENTER, |
| 465 | VW_POS_TOP_CENTER |
Bram Moolenaar | 8348ea6 | 2005-06-14 22:05:40 +0000 | [diff] [blame] | 466 | } gui_win_pos_T; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 467 | |
Bram Moolenaar | 7171abe | 2004-10-11 10:06:20 +0000 | [diff] [blame] | 468 | #ifdef FIND_REPLACE_DIALOG |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 469 | /* |
| 470 | * Flags used to distinguish the different contexts in which the |
| 471 | * find/replace callback may be called. |
| 472 | */ |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 473 | # define FRD_FINDNEXT 1 // Find next in find dialog |
| 474 | # define FRD_R_FINDNEXT 2 // Find next in repl dialog |
| 475 | # define FRD_REPLACE 3 // Replace once |
| 476 | # define FRD_REPLACEALL 4 // Replace remaining matches |
| 477 | # define FRD_UNDO 5 // Undo replaced text |
| 478 | # define FRD_TYPE_MASK 7 // Mask for the callback type |
| 479 | // Flags which change the way searching is done. |
| 480 | # define FRD_WHOLE_WORD 0x08 // match whole word only |
| 481 | # define FRD_MATCH_CASE 0x10 // match case |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 482 | #endif |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 483 | |
Bram Moolenaar | 0eda7ac | 2010-06-26 05:38:18 +0200 | [diff] [blame] | 484 | #ifdef FEAT_GUI_GTK |
Bram Moolenaar | c1e3790 | 2006-04-18 21:55:01 +0000 | [diff] [blame] | 485 | /* |
| 486 | * Convenience macros to convert from 'encoding' to 'termencoding' and |
| 487 | * vice versa. If no conversion is necessary the passed-in pointer is |
| 488 | * returned as is, without allocating any memory. Thus additional _FREE() |
| 489 | * macros are provided. The _FREE() macros also set the pointer to NULL, |
| 490 | * in order to avoid bugs due to illegal memory access only happening if |
| 491 | * 'encoding' != utf-8... |
| 492 | * |
| 493 | * Defining these macros as pure expressions looks a bit tricky but |
| 494 | * avoids depending on the context of the macro expansion. One of the |
| 495 | * rare occasions where the comma operator comes in handy :) |
| 496 | * |
| 497 | * Note: Do NOT keep the result around when handling control back to |
| 498 | * the main Vim! The user could change 'encoding' at any time. |
| 499 | */ |
| 500 | # define CONVERT_TO_UTF8(String) \ |
| 501 | ((output_conv.vc_type == CONV_NONE || (String) == NULL) \ |
| 502 | ? (String) \ |
| 503 | : string_convert(&output_conv, (String), NULL)) |
| 504 | |
| 505 | # define CONVERT_TO_UTF8_FREE(String) \ |
| 506 | ((String) = ((output_conv.vc_type == CONV_NONE) \ |
| 507 | ? (char_u *)NULL \ |
| 508 | : (vim_free(String), (char_u *)NULL))) |
| 509 | |
| 510 | # define CONVERT_FROM_UTF8(String) \ |
| 511 | ((input_conv.vc_type == CONV_NONE || (String) == NULL) \ |
| 512 | ? (String) \ |
| 513 | : string_convert(&input_conv, (String), NULL)) |
| 514 | |
| 515 | # define CONVERT_FROM_UTF8_FREE(String) \ |
| 516 | ((String) = ((input_conv.vc_type == CONV_NONE) \ |
| 517 | ? (char_u *)NULL \ |
| 518 | : (vim_free(String), (char_u *)NULL))) |
| 519 | |
| 520 | #else |
| 521 | # define CONVERT_TO_UTF8(String) (String) |
| 522 | # define CONVERT_TO_UTF8_FREE(String) ((String) = (char_u *)NULL) |
| 523 | # define CONVERT_FROM_UTF8(String) (String) |
| 524 | # define CONVERT_FROM_UTF8_FREE(String) ((String) = (char_u *)NULL) |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 525 | #endif // FEAT_GUI_GTK |
Bram Moolenaar | d47d837 | 2016-09-09 22:13:24 +0200 | [diff] [blame] | 526 | |
| 527 | #ifdef FEAT_GUI_GTK |
| 528 | /* |
| 529 | * The second parameter of g_signal_handlers_disconnect_by_func() is supposed |
| 530 | * to be a function pointer which was passed to g_signal_connect_*() somewhere |
| 531 | * previously, and hence it must be of type GCallback, i.e., void (*)(void). |
| 532 | * |
| 533 | * Meanwhile, g_signal_handlers_disconnect_by_func() is a macro calling |
| 534 | * g_signal_handlers_disconnect_matched(), and the second parameter of the |
| 535 | * former is to be passed to the sixth parameter of the latter the type of |
| 536 | * which, however, is declared as void * in the function signature. |
| 537 | * |
| 538 | * While the ISO C Standard does not require that function pointers be |
| 539 | * interconvertible to void *, widely-used compilers such as gcc and clang |
| 540 | * do such conversion implicitly and automatically on some platforms without |
| 541 | * issuing any warning. |
| 542 | * |
| 543 | * For Solaris Studio, that is not the case. An explicit type cast is needed |
| 544 | * to suppress warnings on that particular conversion. |
| 545 | */ |
| 546 | # if defined(__SUNPRO_C) && defined(USE_GTK3) |
| 547 | # define FUNC2GENERIC(func) (void *)(func) |
| 548 | # else |
| 549 | # define FUNC2GENERIC(func) G_CALLBACK(func) |
| 550 | # endif |
Bram Moolenaar | 9bf703d | 2019-11-30 19:44:38 +0100 | [diff] [blame] | 551 | #endif // FEAT_GUI_GTK |
Bram Moolenaar | b0b98d5 | 2018-05-05 21:01:00 +0200 | [diff] [blame] | 552 | |
Bram Moolenaar | 097148e | 2020-08-11 21:58:20 +0200 | [diff] [blame] | 553 | #if defined(UNIX) |
Bram Moolenaar | b0b98d5 | 2018-05-05 21:01:00 +0200 | [diff] [blame] | 554 | # define GUI_MAY_FORK |
| 555 | #endif |