Mercurial > vim
annotate src/gui.h @ 12401:eb8d5c4936f1 v8.0.1080
patch 8.0.1080: memory leak for eof_chars terminal option and buffer name
commit https://github.com/vim/vim/commit/74121231be50e245d18c64281fdef08e7ec1ed5b
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Sep 9 16:34:32 2017 +0200
patch 8.0.1080: memory leak for eof_chars terminal option and buffer name
Problem: Memory leak for eof_chars terminal option and buffer name.
Solution: Free job options. Free the buffer name
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 09 Sep 2017 16:45:04 +0200 |
parents | 2a8890b80923 |
children | 68d7bc045dbe |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9834
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 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 | |
10 #ifdef FEAT_GUI_MOTIF | |
11 # include <Xm/Xm.h> | |
12 #endif | |
13 | |
14 #ifdef FEAT_GUI_ATHENA | |
15 # include <X11/Intrinsic.h> | |
16 # include <X11/StringDefs.h> | |
17 #endif | |
18 | |
9834
80ace3687eec
commit https://github.com/vim/vim/commit/a6b7a08ae04a3cd4d9c45c906bb7a197e2135179
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
19 #if defined(FEAT_BEVAL) || defined(PROTO) |
7 | 20 # include "gui_beval.h" |
21 #endif | |
22 | |
23 #ifdef FEAT_GUI_GTK | |
844 | 24 # ifdef VMS /* undef MIN and MAX because Intrinsic.h redefines them anyway */ |
25 # ifdef MAX | |
26 # undef MAX | |
27 # endif | |
28 # ifdef MIN | |
29 # undef MIN | |
30 # endif | |
31 # endif | |
7 | 32 # include <X11/Intrinsic.h> |
33 # include <gtk/gtk.h> | |
34 #endif | |
35 | |
36 #ifdef FEAT_GUI_MAC | |
37 # include <Types.h> | |
38 /*# include <Memory.h>*/ | |
39 # include <Quickdraw.h> | |
40 # include <Fonts.h> | |
41 # include <Events.h> | |
42 # include <Menus.h> | |
43 # if !(defined (TARGET_API_MAC_CARBON) && (TARGET_API_MAC_CARBON)) | |
6448 | 44 # include <Windows.h> |
7 | 45 # endif |
46 # include <Controls.h> | |
47 /*# include <TextEdit.h>*/ | |
48 # include <Dialogs.h> | |
49 # include <OSUtils.h> | |
50 /* | |
51 # include <ToolUtils.h> | |
52 # include <SegLoad.h>*/ | |
53 #endif | |
54 | |
55 #ifdef FEAT_GUI_PHOTON | |
56 # include <Ph.h> | |
57 # include <Pt.h> | |
58 # include "photon/PxProto.h" | |
59 #endif | |
60 | |
61 /* | |
1137 | 62 * On some systems scrolling needs to be done right away instead of in the |
63 * main loop. | |
64 */ | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
65 #if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK) |
7 | 66 # define USE_ON_FLY_SCROLL |
67 #endif | |
68 | |
69 /* | |
70 * GUIs that support dropping files on a running Vim. | |
71 */ | |
72 #if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MAC) \ | |
574 | 73 || defined(FEAT_GUI_GTK) |
7 | 74 # define HAVE_DROP_FILE |
75 #endif | |
76 | |
77 /* | |
78 * This define makes menus always use a fontset. | |
79 * We're not sure if this code always works, thus it can be disabled. | |
80 */ | |
81 #ifdef FEAT_XFONTSET | |
82 # define FONTSET_ALWAYS | |
83 #endif | |
84 | |
85 /* | |
86 * These macros convert between character row/column and pixel coordinates. | |
87 * TEXT_X - Convert character column into X pixel coord for drawing strings. | |
88 * TEXT_Y - Convert character row into Y pixel coord for drawing strings. | |
89 * FILL_X - Convert character column into X pixel coord for filling the area | |
90 * under the character. | |
91 * FILL_Y - Convert character row into Y pixel coord for filling the area | |
92 * under the character. | |
93 * X_2_COL - Convert X pixel coord into character column. | |
94 * Y_2_ROW - Convert Y pixel coord into character row. | |
95 */ | |
96 #ifdef FEAT_GUI_W32 | |
97 # define TEXT_X(col) ((col) * gui.char_width) | |
98 # define TEXT_Y(row) ((row) * gui.char_height + gui.char_ascent) | |
99 # define FILL_X(col) ((col) * gui.char_width) | |
100 # define FILL_Y(row) ((row) * gui.char_height) | |
101 # define X_2_COL(x) ((x) / gui.char_width) | |
102 # define Y_2_ROW(y) ((y) / gui.char_height) | |
103 #else | |
104 # define TEXT_X(col) ((col) * gui.char_width + gui.border_offset) | |
105 # define FILL_X(col) ((col) * gui.char_width + gui.border_offset) | |
106 # define X_2_COL(x) (((x) - gui.border_offset) / gui.char_width) | |
107 # define TEXT_Y(row) ((row) * gui.char_height + gui.char_ascent \ | |
108 + gui.border_offset) | |
109 # define FILL_Y(row) ((row) * gui.char_height + gui.border_offset) | |
110 # define Y_2_ROW(y) (((y) - gui.border_offset) / gui.char_height) | |
111 #endif | |
112 | |
113 /* Indices for arrays of scrollbars */ | |
114 #define SBAR_NONE -1 | |
115 #define SBAR_LEFT 0 | |
116 #define SBAR_RIGHT 1 | |
117 #define SBAR_BOTTOM 2 | |
118 | |
119 /* Orientations for scrollbars */ | |
120 #define SBAR_VERT 0 | |
121 #define SBAR_HORIZ 1 | |
122 | |
123 /* Default size of scrollbar */ | |
124 #define SB_DEFAULT_WIDTH 16 | |
125 | |
126 /* Default height of the menu bar */ | |
127 #define MENU_DEFAULT_HEIGHT 1 /* figure it out at runtime */ | |
128 | |
129 /* Flags for gui_mch_outstr_nowrap() */ | |
130 #define GUI_MON_WRAP_CURSOR 0x01 /* wrap cursor at end of line */ | |
131 #define GUI_MON_INVERT 0x02 /* invert the characters */ | |
132 #define GUI_MON_IS_CURSOR 0x04 /* drawing cursor */ | |
133 #define GUI_MON_TRS_CURSOR 0x08 /* drawing transparent cursor */ | |
134 #define GUI_MON_NOCLEAR 0x10 /* don't clear selection */ | |
135 | |
136 /* Flags for gui_mch_draw_string() */ | |
1199 | 137 #define DRAW_TRANSP 0x01 /* draw with transparent bg */ |
7 | 138 #define DRAW_BOLD 0x02 /* draw bold text */ |
139 #define DRAW_UNDERL 0x04 /* draw underline text */ | |
203 | 140 #define DRAW_UNDERC 0x08 /* draw undercurl text */ |
2823 | 141 #if defined(FEAT_GUI_GTK) |
203 | 142 # define DRAW_ITALIC 0x10 /* draw italic text */ |
7 | 143 #endif |
203 | 144 #define DRAW_CURSOR 0x20 /* drawing block cursor (win32) */ |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
10176
diff
changeset
|
145 #define DRAW_STRIKE 0x40 /* strikethrough */ |
7 | 146 |
147 /* For our own tearoff menu item */ | |
148 #define TEAR_STRING "-->Detach" | |
149 #define TEAR_LEN (9) /* length of above string */ | |
150 | |
151 /* for the toolbar */ | |
8163
d8a8e86f39ad
commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents:
6448
diff
changeset
|
152 #define TOOLBAR_BUTTON_HEIGHT 18 |
d8a8e86f39ad
commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents:
6448
diff
changeset
|
153 #define TOOLBAR_BUTTON_WIDTH 18 |
7 | 154 #define TOOLBAR_BORDER_HEIGHT 12 /* room above+below buttons for MSWindows */ |
155 | |
810 | 156 #ifdef FEAT_GUI_MSWIN |
811 | 157 # define TABLINE_HEIGHT 22 |
810 | 158 #endif |
819 | 159 #ifdef FEAT_GUI_MOTIF |
160 # define TABLINE_HEIGHT 30 | |
161 #endif | |
810 | 162 |
574 | 163 #if defined(NO_CONSOLE) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) |
7 | 164 # define NO_CONSOLE_INPUT /* use no_console_input() to check if there |
165 is no console input possible */ | |
166 #endif | |
167 | |
168 typedef struct GuiScrollbar | |
169 { | |
170 long ident; /* Unique identifier for each scrollbar */ | |
667 | 171 win_T *wp; /* Scrollbar's window, NULL for bottom */ |
7 | 172 int type; /* one of SBAR_{LEFT,RIGHT,BOTTOM} */ |
173 long value; /* Represents top line number visible */ | |
174 #ifdef FEAT_GUI_ATHENA | |
175 int pixval; /* pixel count of value */ | |
176 #endif | |
177 long size; /* Size of scrollbar thumb */ | |
178 long max; /* Number of lines in buffer */ | |
179 | |
180 /* Values measured in characters: */ | |
181 int top; /* Top of scroll bar (chars from row 0) */ | |
182 int height; /* Current height of scroll bar in rows */ | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8218
diff
changeset
|
183 #ifdef FEAT_WINDOWS |
7 | 184 int width; /* Current width of scroll bar in cols */ |
185 #endif | |
186 int status_height; /* Height of status line */ | |
187 #ifdef FEAT_GUI_X11 | |
188 Widget id; /* Id of real scroll bar */ | |
189 #endif | |
190 #ifdef FEAT_GUI_GTK | |
191 GtkWidget *id; /* Id of real scroll bar */ | |
192 unsigned long handler_id; /* Id of "value_changed" signal handler */ | |
193 #endif | |
194 | |
195 #ifdef FEAT_GUI_MSWIN | |
196 HWND id; /* Id of real scroll bar */ | |
197 int scroll_shift; /* The scrollbar stuff can handle only up to | |
198 32767 lines. When the file is longer, | |
199 scroll_shift is set to the number of shifts | |
200 to reduce the count. */ | |
201 #endif | |
202 #ifdef FEAT_GUI_MAC | |
203 ControlHandle id; /* A handle to the scrollbar */ | |
204 #endif | |
205 #ifdef FEAT_GUI_PHOTON | |
206 PtWidget_t *id; | |
207 #endif | |
208 } scrollbar_T; | |
209 | |
210 typedef long guicolor_T; /* handle for a GUI color; for X11 this should | |
211 be "Pixel", but that's an unsigned and we | |
212 need a signed value */ | |
213 #define INVALCOLOR (guicolor_T)-11111 /* number for invalid color; on 32 bit | |
214 displays there is a tiny chance this is an | |
215 actual color */ | |
216 | |
217 #ifdef FEAT_GUI_GTK | |
218 typedef PangoFontDescription *GuiFont; /* handle for a GUI font */ | |
219 typedef PangoFontDescription *GuiFontset; /* handle for a GUI fontset */ | |
220 # define NOFONT (GuiFont)NULL | |
221 # define NOFONTSET (GuiFontset)NULL | |
222 #else | |
223 # ifdef FEAT_GUI_PHOTON | |
224 typedef char *GuiFont; | |
225 typedef char *GuiFontset; | |
226 # define NOFONT (GuiFont)NULL | |
227 # define NOFONTSET (GuiFontset)NULL | |
228 # else | |
229 # ifdef FEAT_GUI_X11 | |
230 typedef XFontStruct *GuiFont; /* handle for a GUI font */ | |
231 typedef XFontSet GuiFontset; /* handle for a GUI fontset */ | |
232 # define NOFONT (GuiFont)0 | |
233 # define NOFONTSET (GuiFontset)0 | |
234 # else | |
235 typedef long_u GuiFont; /* handle for a GUI font */ | |
236 typedef long_u GuiFontset; /* handle for a GUI fontset */ | |
237 # define NOFONT (GuiFont)0 | |
238 # define NOFONTSET (GuiFontset)0 | |
239 # endif | |
240 # endif | |
241 #endif | |
242 | |
243 typedef struct Gui | |
244 { | |
245 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 */ | |
251 int dragged_sb; /* Which scrollbar being dragged, if any? */ | |
252 win_T *dragged_wp; /* Which WIN's sb being dragged, if any? */ | |
253 int pointer_hidden; /* Is the mouse pointer hidden? */ | |
254 int col; /* Current cursor column in GUI display */ | |
255 int row; /* Current cursor row in GUI display */ | |
256 int cursor_col; /* Physical cursor column in GUI display */ | |
257 int cursor_row; /* Physical cursor row in GUI display */ | |
258 char cursor_is_valid; /* There is a cursor at cursor_row/col */ | |
259 int num_cols; /* Number of columns */ | |
260 int num_rows; /* Number of rows */ | |
261 int scroll_region_top; /* Top (first) line of scroll region */ | |
262 int scroll_region_bot; /* Bottom (last) line of scroll region */ | |
263 int scroll_region_left; /* Left (first) column of scroll region */ | |
264 int scroll_region_right; /* Right (last) col. of scroll region */ | |
265 int highlight_mask; /* Highlight attribute mask */ | |
266 int scrollbar_width; /* Width of vertical scrollbars */ | |
267 int scrollbar_height; /* Height of horizontal scrollbar */ | |
268 int left_sbar_x; /* Calculated x coord for left scrollbar */ | |
269 int right_sbar_x; /* Calculated x coord for right scrollbar */ | |
270 | |
271 #ifdef FEAT_MENU | |
272 # ifndef FEAT_GUI_GTK | |
273 int menu_height; /* Height of the menu bar */ | |
274 int menu_width; /* Width of the menu bar */ | |
275 # endif | |
276 char menu_is_active; /* TRUE if menu is present */ | |
277 # ifdef FEAT_GUI_ATHENA | |
278 char menu_height_fixed; /* TRUE if menu height fixed */ | |
279 # endif | |
280 #endif | |
281 | |
282 scrollbar_T bottom_sbar; /* Bottom scrollbar */ | |
283 int which_scrollbars[3];/* Which scrollbar boxes are active? */ | |
284 int prev_wrap; /* For updating the horizontal scrollbar */ | |
444 | 285 int char_width; /* Width of char cell in pixels */ |
286 int char_height; /* Height of char cell in pixels, includes | |
287 'linespace' */ | |
7 | 288 int char_ascent; /* Ascent of char in pixels */ |
289 int border_width; /* Width of our border around text area */ | |
290 int border_offset; /* Total pixel offset for all borders */ | |
291 | |
292 GuiFont norm_font; /* Normal font */ | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
293 #ifndef FEAT_GUI_GTK |
7 | 294 GuiFont bold_font; /* Bold font */ |
295 GuiFont ital_font; /* Italic font */ | |
296 GuiFont boldital_font; /* Bold-Italic font */ | |
297 #else | |
298 int font_can_bold; /* Whether norm_font supports bold weight. | |
299 * The styled font variants are not used. */ | |
300 #endif | |
301 | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
302 #if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) |
7 | 303 # ifdef FONTSET_ALWAYS |
304 GuiFontset menu_fontset; /* set of fonts for multi-byte chars */ | |
305 # else | |
306 GuiFont menu_font; /* menu item font */ | |
307 # endif | |
308 #endif | |
309 #ifdef FEAT_MBYTE | |
4950
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4039
diff
changeset
|
310 GuiFont wide_font; /* Normal 'guifontwide' font */ |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4039
diff
changeset
|
311 # ifndef FEAT_GUI_GTK |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4039
diff
changeset
|
312 GuiFont wide_bold_font; /* Bold 'guifontwide' font */ |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4039
diff
changeset
|
313 GuiFont wide_ital_font; /* Italic 'guifontwide' font */ |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4039
diff
changeset
|
314 GuiFont wide_boldital_font; /* Bold-Italic 'guifontwide' font */ |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4039
diff
changeset
|
315 # endif |
7 | 316 #endif |
317 #ifdef FEAT_XFONTSET | |
318 GuiFontset fontset; /* set of fonts for multi-byte chars */ | |
319 #endif | |
320 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 */ | |
324 | |
325 #ifdef FEAT_GUI_X11 | |
1199 | 326 char *rsrc_menu_fg_name; /* Color of menu & dialog foreground */ |
7 | 327 guicolor_T menu_fg_pixel; /* Same in Pixel format */ |
1199 | 328 char *rsrc_menu_bg_name; /* Color of menu & dialog background */ |
7 | 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 */ | |
334 | |
335 # ifdef FEAT_GUI_MOTIF | |
336 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 */ | |
340 # endif | |
341 Display *dpy; /* X display */ | |
342 Window wid; /* Window id of text area */ | |
343 int visibility; /* Is shell partially/fully obscured? */ | |
344 GC text_gc; | |
345 GC back_gc; | |
346 GC invert_gc; | |
347 Cursor blank_pointer; /* Blank pointer */ | |
348 | |
349 /* 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? */ | |
357 | |
358 char_u *geom; /* Geometry, eg "80x24" */ | |
359 Bool color_approx; /* Some color was approximated */ | |
360 #endif | |
361 | |
362 #ifdef FEAT_GUI_GTK | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
363 # ifndef USE_GTK3 |
7 | 364 int visibility; /* Is shell partially/fully obscured? */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
365 # endif |
7 | 366 GdkCursor *blank_pointer; /* Blank pointer */ |
367 | |
368 /* X Resources */ | |
369 char_u *geom; /* Geometry, eg "80x24" */ | |
370 | |
371 GtkWidget *mainwin; /* top level GTK window */ | |
372 GtkWidget *formwin; /* manages all the windows below */ | |
373 GtkWidget *drawarea; /* the "text" area */ | |
374 # ifdef FEAT_MENU | |
375 GtkWidget *menubar; /* menubar */ | |
376 # endif | |
377 # ifdef FEAT_TOOLBAR | |
378 GtkWidget *toolbar; /* toolbar */ | |
379 # endif | |
380 # ifdef FEAT_GUI_GNOME | |
381 GtkWidget *menubar_h; /* menubar handle */ | |
382 GtkWidget *toolbar_h; /* toolbar handle */ | |
383 # endif | |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
384 # ifdef USE_GTK3 |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
385 GdkRGBA *fgcolor; /* GDK-styled foreground color */ |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
386 GdkRGBA *bgcolor; /* GDK-styled background color */ |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
387 GdkRGBA *spcolor; /* GDK-styled special color */ |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
388 # else |
7 | 389 GdkColor *fgcolor; /* GDK-styled foreground color */ |
390 GdkColor *bgcolor; /* GDK-styled background color */ | |
203 | 391 GdkColor *spcolor; /* GDK-styled special color */ |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
392 # endif |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
393 # ifdef USE_GTK3 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
394 cairo_surface_t *surface; /* drawarea surface */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
395 gboolean by_signal; /* cause of draw operation */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
396 # else |
7 | 397 GdkGC *text_gc; /* cached GC for normal text */ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
398 # endif |
7 | 399 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 */ | |
714 | 402 # ifdef FEAT_GUI_TABLINE |
685 | 403 GtkWidget *tabline; /* tab pages line handle */ |
7 | 404 # endif |
405 | |
406 GtkAccelGroup *accel_group; | |
407 GtkWidget *filedlg; /* file selection dialog */ | |
408 char_u *browse_fname; /* file name from filedlg */ | |
2923 | 409 |
410 guint32 event_time; | |
7 | 411 #endif /* FEAT_GUI_GTK */ |
412 | |
843 | 413 #if defined(FEAT_GUI_TABLINE) \ |
1620 | 414 && (defined(FEAT_GUI_W32) || defined(FEAT_GUI_MOTIF) \ |
2330 | 415 || defined(FEAT_GUI_MAC)) |
843 | 416 int tabline_height; |
417 #endif | |
418 | |
7 | 419 #ifdef FEAT_FOOTER |
420 int footer_height; /* height of the message footer */ | |
421 #endif | |
422 | |
423 #if defined(FEAT_TOOLBAR) \ | |
424 && (defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MOTIF)) | |
425 int toolbar_height; /* height of the toolbar */ | |
426 #endif | |
427 | |
428 #ifdef FEAT_BEVAL_TIP | |
429 /* 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 */ | |
436 #endif | |
437 | |
438 #ifdef FEAT_GUI_MSWIN | |
439 GuiFont currFont; /* Current font */ | |
440 guicolor_T currFgColor; /* Current foreground text color */ | |
441 guicolor_T currBgColor; /* Current background text color */ | |
203 | 442 guicolor_T currSpColor; /* Current special text color */ |
7 | 443 #endif |
444 | |
445 #ifdef FEAT_GUI_MAC | |
446 WindowPtr VimWindow; | |
447 MenuHandle MacOSHelpMenu; /* Help menu provided by the MacOS */ | |
448 int MacOSHelpItems; /* Nr of help-items supplied by MacOS */ | |
449 WindowPtr wid; /* Window id of text area */ | |
450 int visibility; /* Is window partially/fully obscured? */ | |
451 #endif | |
452 | |
453 #ifdef FEAT_GUI_PHOTON | |
454 PtWidget_t *vimWindow; /* PtWindow */ | |
455 PtWidget_t *vimTextArea; /* PtRaw */ | |
456 PtWidget_t *vimContainer; /* PtPanel */ | |
457 # 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 | |
476 extern gui_T gui; /* this is defined in gui.c */ | |
477 | |
478 /* definitions of available window positionings for gui_*_position_in_parent() | |
479 */ | |
480 typedef enum | |
481 { | |
482 VW_POS_MOUSE, | |
483 VW_POS_CENTER, | |
484 VW_POS_TOP_CENTER | |
325 | 485 } gui_win_pos_T; |
7 | 486 |
28 | 487 #ifdef FIND_REPLACE_DIALOG |
7 | 488 /* |
489 * Flags used to distinguish the different contexts in which the | |
490 * find/replace callback may be called. | |
491 */ | |
492 # define FRD_FINDNEXT 1 /* Find next in find dialog */ | |
493 # define FRD_R_FINDNEXT 2 /* Find next in repl dialog */ | |
494 # define FRD_REPLACE 3 /* Replace once */ | |
495 # define FRD_REPLACEALL 4 /* Replace remaining matches */ | |
496 # define FRD_UNDO 5 /* Undo replaced text */ | |
497 # define FRD_TYPE_MASK 7 /* Mask for the callback type */ | |
498 /* Flags which change the way searching is done. */ | |
499 # define FRD_WHOLE_WORD 0x08 /* match whole word only */ | |
500 # define FRD_MATCH_CASE 0x10 /* match case */ | |
501 #endif | |
836 | 502 |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
503 #ifdef FEAT_GUI_GTK |
836 | 504 /* |
505 * Convenience macros to convert from 'encoding' to 'termencoding' and | |
506 * vice versa. If no conversion is necessary the passed-in pointer is | |
507 * returned as is, without allocating any memory. Thus additional _FREE() | |
508 * macros are provided. The _FREE() macros also set the pointer to NULL, | |
509 * in order to avoid bugs due to illegal memory access only happening if | |
510 * 'encoding' != utf-8... | |
511 * | |
512 * Defining these macros as pure expressions looks a bit tricky but | |
513 * avoids depending on the context of the macro expansion. One of the | |
514 * rare occasions where the comma operator comes in handy :) | |
515 * | |
516 * Note: Do NOT keep the result around when handling control back to | |
517 * the main Vim! The user could change 'encoding' at any time. | |
518 */ | |
519 # define CONVERT_TO_UTF8(String) \ | |
520 ((output_conv.vc_type == CONV_NONE || (String) == NULL) \ | |
521 ? (String) \ | |
522 : string_convert(&output_conv, (String), NULL)) | |
523 | |
524 # define CONVERT_TO_UTF8_FREE(String) \ | |
525 ((String) = ((output_conv.vc_type == CONV_NONE) \ | |
526 ? (char_u *)NULL \ | |
527 : (vim_free(String), (char_u *)NULL))) | |
528 | |
529 # define CONVERT_FROM_UTF8(String) \ | |
530 ((input_conv.vc_type == CONV_NONE || (String) == NULL) \ | |
531 ? (String) \ | |
532 : string_convert(&input_conv, (String), NULL)) | |
533 | |
534 # define CONVERT_FROM_UTF8_FREE(String) \ | |
535 ((String) = ((input_conv.vc_type == CONV_NONE) \ | |
536 ? (char_u *)NULL \ | |
537 : (vim_free(String), (char_u *)NULL))) | |
538 | |
539 #else | |
540 # define CONVERT_TO_UTF8(String) (String) | |
541 # define CONVERT_TO_UTF8_FREE(String) ((String) = (char_u *)NULL) | |
542 # define CONVERT_FROM_UTF8(String) (String) | |
543 # define CONVERT_FROM_UTF8_FREE(String) ((String) = (char_u *)NULL) | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
544 #endif /* FEAT_GUI_GTK */ |
10176
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
545 |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
546 #ifdef FEAT_GUI_GTK |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
547 /* |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
548 * The second parameter of g_signal_handlers_disconnect_by_func() is supposed |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
549 * to be a function pointer which was passed to g_signal_connect_*() somewhere |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
550 * previously, and hence it must be of type GCallback, i.e., void (*)(void). |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
551 * |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
552 * Meanwhile, g_signal_handlers_disconnect_by_func() is a macro calling |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
553 * g_signal_handlers_disconnect_matched(), and the second parameter of the |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
554 * former is to be passed to the sixth parameter of the latter the type of |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
555 * which, however, is declared as void * in the function signature. |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
556 * |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
557 * While the ISO C Standard does not require that function pointers be |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
558 * interconvertible to void *, widely-used compilers such as gcc and clang |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
559 * do such conversion implicitly and automatically on some platforms without |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
560 * issuing any warning. |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
561 * |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
562 * For Solaris Studio, that is not the case. An explicit type cast is needed |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
563 * to suppress warnings on that particular conversion. |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
564 */ |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
565 # if defined(__SUNPRO_C) && defined(USE_GTK3) |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
566 # define FUNC2GENERIC(func) (void *)(func) |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
567 # else |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
568 # define FUNC2GENERIC(func) G_CALLBACK(func) |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
569 # endif |
51888fb2599f
commit https://github.com/vim/vim/commit/d47d83745ff450232328ca7a4b8b00b31bad22fc
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
570 #endif /* FEAT_GUI_GTK */ |