Mercurial > vim
annotate src/gui.h @ 3373:614f664ac244
Added tag v7-3-452 for changeset f1cde9cf023e
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 22 Feb 2012 17:38:00 +0100 |
parents | 7653420fdc45 |
children | a8f5876e4981 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
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 | |
19 #ifdef FEAT_BEVAL | |
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)) | |
44 # include <Windows.h> | |
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 /* | |
62 * On some systems, when we compile with the GUI, we always use it. On Mac | |
63 * there is no terminal version, and on Windows we can't figure out how to | |
64 * fork one off with :gui. | |
65 */ | |
66 #if defined(FEAT_GUI_MSWIN) || (defined(FEAT_GUI_MAC) && !defined(MACOS_X_UNIX)) | |
67 # define ALWAYS_USE_GUI | |
68 #endif | |
69 | |
1137 | 70 /* |
71 * On some systems scrolling needs to be done right away instead of in the | |
72 * main loop. | |
73 */ | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
74 #if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK) |
7 | 75 # define USE_ON_FLY_SCROLL |
76 #endif | |
77 | |
78 /* | |
79 * GUIs that support dropping files on a running Vim. | |
80 */ | |
81 #if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MAC) \ | |
574 | 82 || defined(FEAT_GUI_GTK) |
7 | 83 # define HAVE_DROP_FILE |
84 #endif | |
85 | |
86 /* | |
87 * This define makes menus always use a fontset. | |
88 * We're not sure if this code always works, thus it can be disabled. | |
89 */ | |
90 #ifdef FEAT_XFONTSET | |
91 # define FONTSET_ALWAYS | |
92 #endif | |
93 | |
94 /* | |
95 * These macros convert between character row/column and pixel coordinates. | |
96 * TEXT_X - Convert character column into X pixel coord for drawing strings. | |
97 * TEXT_Y - Convert character row into Y pixel coord for drawing strings. | |
98 * FILL_X - Convert character column into X pixel coord for filling the area | |
99 * under the character. | |
100 * FILL_Y - Convert character row into Y pixel coord for filling the area | |
101 * under the character. | |
102 * X_2_COL - Convert X pixel coord into character column. | |
103 * Y_2_ROW - Convert Y pixel coord into character row. | |
104 */ | |
105 #ifdef FEAT_GUI_W32 | |
106 # define TEXT_X(col) ((col) * gui.char_width) | |
107 # define TEXT_Y(row) ((row) * gui.char_height + gui.char_ascent) | |
108 # define FILL_X(col) ((col) * gui.char_width) | |
109 # define FILL_Y(row) ((row) * gui.char_height) | |
110 # define X_2_COL(x) ((x) / gui.char_width) | |
111 # define Y_2_ROW(y) ((y) / gui.char_height) | |
112 #else | |
113 # define TEXT_X(col) ((col) * gui.char_width + gui.border_offset) | |
114 # define FILL_X(col) ((col) * gui.char_width + gui.border_offset) | |
115 # define X_2_COL(x) (((x) - gui.border_offset) / gui.char_width) | |
116 # define TEXT_Y(row) ((row) * gui.char_height + gui.char_ascent \ | |
117 + gui.border_offset) | |
118 # define FILL_Y(row) ((row) * gui.char_height + gui.border_offset) | |
119 # define Y_2_ROW(y) (((y) - gui.border_offset) / gui.char_height) | |
120 #endif | |
121 | |
122 /* Indices for arrays of scrollbars */ | |
123 #define SBAR_NONE -1 | |
124 #define SBAR_LEFT 0 | |
125 #define SBAR_RIGHT 1 | |
126 #define SBAR_BOTTOM 2 | |
127 | |
128 /* Orientations for scrollbars */ | |
129 #define SBAR_VERT 0 | |
130 #define SBAR_HORIZ 1 | |
131 | |
132 /* Default size of scrollbar */ | |
133 #define SB_DEFAULT_WIDTH 16 | |
134 | |
135 /* Default height of the menu bar */ | |
136 #define MENU_DEFAULT_HEIGHT 1 /* figure it out at runtime */ | |
137 | |
138 /* Flags for gui_mch_outstr_nowrap() */ | |
139 #define GUI_MON_WRAP_CURSOR 0x01 /* wrap cursor at end of line */ | |
140 #define GUI_MON_INVERT 0x02 /* invert the characters */ | |
141 #define GUI_MON_IS_CURSOR 0x04 /* drawing cursor */ | |
142 #define GUI_MON_TRS_CURSOR 0x08 /* drawing transparent cursor */ | |
143 #define GUI_MON_NOCLEAR 0x10 /* don't clear selection */ | |
144 | |
145 /* Flags for gui_mch_draw_string() */ | |
1199 | 146 #define DRAW_TRANSP 0x01 /* draw with transparent bg */ |
7 | 147 #define DRAW_BOLD 0x02 /* draw bold text */ |
148 #define DRAW_UNDERL 0x04 /* draw underline text */ | |
203 | 149 #define DRAW_UNDERC 0x08 /* draw undercurl text */ |
2823 | 150 #if defined(FEAT_GUI_GTK) |
203 | 151 # define DRAW_ITALIC 0x10 /* draw italic text */ |
7 | 152 #endif |
203 | 153 #define DRAW_CURSOR 0x20 /* drawing block cursor (win32) */ |
7 | 154 |
155 /* For our own tearoff menu item */ | |
156 #define TEAR_STRING "-->Detach" | |
157 #define TEAR_LEN (9) /* length of above string */ | |
158 | |
159 /* for the toolbar */ | |
160 #ifdef FEAT_GUI_W16 | |
161 # define TOOLBAR_BUTTON_HEIGHT 15 | |
162 # define TOOLBAR_BUTTON_WIDTH 16 | |
163 #else | |
164 # define TOOLBAR_BUTTON_HEIGHT 18 | |
165 # define TOOLBAR_BUTTON_WIDTH 18 | |
166 #endif | |
167 #define TOOLBAR_BORDER_HEIGHT 12 /* room above+below buttons for MSWindows */ | |
168 | |
810 | 169 #ifdef FEAT_GUI_MSWIN |
811 | 170 # define TABLINE_HEIGHT 22 |
810 | 171 #endif |
819 | 172 #ifdef FEAT_GUI_MOTIF |
173 # define TABLINE_HEIGHT 30 | |
174 #endif | |
810 | 175 |
574 | 176 #if defined(NO_CONSOLE) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) |
7 | 177 # define NO_CONSOLE_INPUT /* use no_console_input() to check if there |
178 is no console input possible */ | |
179 #endif | |
180 | |
181 typedef struct GuiScrollbar | |
182 { | |
183 long ident; /* Unique identifier for each scrollbar */ | |
667 | 184 win_T *wp; /* Scrollbar's window, NULL for bottom */ |
7 | 185 int type; /* one of SBAR_{LEFT,RIGHT,BOTTOM} */ |
186 long value; /* Represents top line number visible */ | |
187 #ifdef FEAT_GUI_ATHENA | |
188 int pixval; /* pixel count of value */ | |
189 #endif | |
190 long size; /* Size of scrollbar thumb */ | |
191 long max; /* Number of lines in buffer */ | |
192 | |
193 /* Values measured in characters: */ | |
194 int top; /* Top of scroll bar (chars from row 0) */ | |
195 int height; /* Current height of scroll bar in rows */ | |
196 #ifdef FEAT_VERTSPLIT | |
197 int width; /* Current width of scroll bar in cols */ | |
198 #endif | |
199 int status_height; /* Height of status line */ | |
200 #ifdef FEAT_GUI_X11 | |
201 Widget id; /* Id of real scroll bar */ | |
202 #endif | |
203 #ifdef FEAT_GUI_GTK | |
204 GtkWidget *id; /* Id of real scroll bar */ | |
205 unsigned long handler_id; /* Id of "value_changed" signal handler */ | |
206 #endif | |
207 | |
208 #ifdef FEAT_GUI_MSWIN | |
209 HWND id; /* Id of real scroll bar */ | |
210 int scroll_shift; /* The scrollbar stuff can handle only up to | |
211 32767 lines. When the file is longer, | |
212 scroll_shift is set to the number of shifts | |
213 to reduce the count. */ | |
214 #endif | |
215 #ifdef FEAT_GUI_MAC | |
216 ControlHandle id; /* A handle to the scrollbar */ | |
217 #endif | |
218 #ifdef FEAT_GUI_PHOTON | |
219 PtWidget_t *id; | |
220 #endif | |
221 } scrollbar_T; | |
222 | |
223 typedef long guicolor_T; /* handle for a GUI color; for X11 this should | |
224 be "Pixel", but that's an unsigned and we | |
225 need a signed value */ | |
226 #define INVALCOLOR (guicolor_T)-11111 /* number for invalid color; on 32 bit | |
227 displays there is a tiny chance this is an | |
228 actual color */ | |
229 | |
230 #ifdef FEAT_GUI_GTK | |
231 typedef PangoFontDescription *GuiFont; /* handle for a GUI font */ | |
232 typedef PangoFontDescription *GuiFontset; /* handle for a GUI fontset */ | |
233 # define NOFONT (GuiFont)NULL | |
234 # define NOFONTSET (GuiFontset)NULL | |
235 #else | |
236 # ifdef FEAT_GUI_PHOTON | |
237 typedef char *GuiFont; | |
238 typedef char *GuiFontset; | |
239 # define NOFONT (GuiFont)NULL | |
240 # define NOFONTSET (GuiFontset)NULL | |
241 # else | |
242 # ifdef FEAT_GUI_X11 | |
243 typedef XFontStruct *GuiFont; /* handle for a GUI font */ | |
244 typedef XFontSet GuiFontset; /* handle for a GUI fontset */ | |
245 # define NOFONT (GuiFont)0 | |
246 # define NOFONTSET (GuiFontset)0 | |
247 # else | |
248 typedef long_u GuiFont; /* handle for a GUI font */ | |
249 typedef long_u GuiFontset; /* handle for a GUI fontset */ | |
250 # define NOFONT (GuiFont)0 | |
251 # define NOFONTSET (GuiFontset)0 | |
252 # endif | |
253 # endif | |
254 #endif | |
255 | |
256 typedef struct Gui | |
257 { | |
258 int in_focus; /* Vim has input focus */ | |
259 int in_use; /* Is the GUI being used? */ | |
260 int starting; /* GUI will start in a little while */ | |
261 int shell_created; /* Has the shell been created yet? */ | |
262 int dying; /* Is vim dying? Then output to terminal */ | |
263 int dofork; /* Use fork() when GUI is starting */ | |
264 int dragged_sb; /* Which scrollbar being dragged, if any? */ | |
265 win_T *dragged_wp; /* Which WIN's sb being dragged, if any? */ | |
266 int pointer_hidden; /* Is the mouse pointer hidden? */ | |
267 int col; /* Current cursor column in GUI display */ | |
268 int row; /* Current cursor row in GUI display */ | |
269 int cursor_col; /* Physical cursor column in GUI display */ | |
270 int cursor_row; /* Physical cursor row in GUI display */ | |
271 char cursor_is_valid; /* There is a cursor at cursor_row/col */ | |
272 int num_cols; /* Number of columns */ | |
273 int num_rows; /* Number of rows */ | |
274 int scroll_region_top; /* Top (first) line of scroll region */ | |
275 int scroll_region_bot; /* Bottom (last) line of scroll region */ | |
276 int scroll_region_left; /* Left (first) column of scroll region */ | |
277 int scroll_region_right; /* Right (last) col. of scroll region */ | |
278 int highlight_mask; /* Highlight attribute mask */ | |
279 int scrollbar_width; /* Width of vertical scrollbars */ | |
280 int scrollbar_height; /* Height of horizontal scrollbar */ | |
281 int left_sbar_x; /* Calculated x coord for left scrollbar */ | |
282 int right_sbar_x; /* Calculated x coord for right scrollbar */ | |
283 | |
284 #ifdef FEAT_MENU | |
285 # ifndef FEAT_GUI_GTK | |
286 int menu_height; /* Height of the menu bar */ | |
287 int menu_width; /* Width of the menu bar */ | |
288 # endif | |
289 char menu_is_active; /* TRUE if menu is present */ | |
290 # ifdef FEAT_GUI_ATHENA | |
291 char menu_height_fixed; /* TRUE if menu height fixed */ | |
292 # endif | |
293 #endif | |
294 | |
295 scrollbar_T bottom_sbar; /* Bottom scrollbar */ | |
296 int which_scrollbars[3];/* Which scrollbar boxes are active? */ | |
297 int prev_wrap; /* For updating the horizontal scrollbar */ | |
444 | 298 int char_width; /* Width of char cell in pixels */ |
299 int char_height; /* Height of char cell in pixels, includes | |
300 'linespace' */ | |
7 | 301 int char_ascent; /* Ascent of char in pixels */ |
302 int border_width; /* Width of our border around text area */ | |
303 int border_offset; /* Total pixel offset for all borders */ | |
304 | |
305 GuiFont norm_font; /* Normal font */ | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
306 #ifndef FEAT_GUI_GTK |
7 | 307 GuiFont bold_font; /* Bold font */ |
308 GuiFont ital_font; /* Italic font */ | |
309 GuiFont boldital_font; /* Bold-Italic font */ | |
310 #else | |
311 int font_can_bold; /* Whether norm_font supports bold weight. | |
312 * The styled font variants are not used. */ | |
313 #endif | |
314 | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
315 #if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) |
7 | 316 # ifdef FONTSET_ALWAYS |
317 GuiFontset menu_fontset; /* set of fonts for multi-byte chars */ | |
318 # else | |
319 GuiFont menu_font; /* menu item font */ | |
320 # endif | |
321 #endif | |
322 #ifdef FEAT_MBYTE | |
323 GuiFont wide_font; /* 'guifontwide' font */ | |
324 #endif | |
325 #ifdef FEAT_XFONTSET | |
326 GuiFontset fontset; /* set of fonts for multi-byte chars */ | |
327 #endif | |
328 guicolor_T back_pixel; /* Color of background */ | |
329 guicolor_T norm_pixel; /* Color of normal text */ | |
330 guicolor_T def_back_pixel; /* default Color of background */ | |
331 guicolor_T def_norm_pixel; /* default Color of normal text */ | |
332 | |
333 #ifdef FEAT_GUI_X11 | |
1199 | 334 char *rsrc_menu_fg_name; /* Color of menu & dialog foreground */ |
7 | 335 guicolor_T menu_fg_pixel; /* Same in Pixel format */ |
1199 | 336 char *rsrc_menu_bg_name; /* Color of menu & dialog background */ |
7 | 337 guicolor_T menu_bg_pixel; /* Same in Pixel format */ |
338 char *rsrc_scroll_fg_name; /* Color of scrollbar foreground */ | |
339 guicolor_T scroll_fg_pixel; /* Same in Pixel format */ | |
340 char *rsrc_scroll_bg_name; /* Color of scrollbar background */ | |
341 guicolor_T scroll_bg_pixel; /* Same in Pixel format */ | |
342 | |
343 # ifdef FEAT_GUI_MOTIF | |
344 guicolor_T menu_def_fg_pixel; /* Default menu foreground */ | |
345 guicolor_T menu_def_bg_pixel; /* Default menu background */ | |
346 guicolor_T scroll_def_fg_pixel; /* Default scrollbar foreground */ | |
347 guicolor_T scroll_def_bg_pixel; /* Default scrollbar background */ | |
348 # endif | |
349 Display *dpy; /* X display */ | |
350 Window wid; /* Window id of text area */ | |
351 int visibility; /* Is shell partially/fully obscured? */ | |
352 GC text_gc; | |
353 GC back_gc; | |
354 GC invert_gc; | |
355 Cursor blank_pointer; /* Blank pointer */ | |
356 | |
357 /* X Resources */ | |
358 char_u *rsrc_font_name; /* Resource font name, used if 'guifont' | |
359 not set */ | |
360 char_u *rsrc_bold_font_name; /* Resource bold font name */ | |
361 char_u *rsrc_ital_font_name; /* Resource italic font name */ | |
362 char_u *rsrc_boldital_font_name; /* Resource bold-italic font name */ | |
363 char_u *rsrc_menu_font_name; /* Resource menu Font name */ | |
364 Bool rsrc_rev_video; /* Use reverse video? */ | |
365 | |
366 char_u *geom; /* Geometry, eg "80x24" */ | |
367 Bool color_approx; /* Some color was approximated */ | |
368 #endif | |
369 | |
370 #ifdef FEAT_GUI_GTK | |
371 int visibility; /* Is shell partially/fully obscured? */ | |
372 GdkCursor *blank_pointer; /* Blank pointer */ | |
373 | |
374 /* X Resources */ | |
375 char_u *geom; /* Geometry, eg "80x24" */ | |
376 | |
377 GtkWidget *mainwin; /* top level GTK window */ | |
378 GtkWidget *formwin; /* manages all the windows below */ | |
379 GtkWidget *drawarea; /* the "text" area */ | |
380 # ifdef FEAT_MENU | |
381 GtkWidget *menubar; /* menubar */ | |
382 # endif | |
383 # ifdef FEAT_TOOLBAR | |
384 GtkWidget *toolbar; /* toolbar */ | |
385 # endif | |
386 # ifdef FEAT_GUI_GNOME | |
387 GtkWidget *menubar_h; /* menubar handle */ | |
388 GtkWidget *toolbar_h; /* toolbar handle */ | |
389 # endif | |
390 GdkColor *fgcolor; /* GDK-styled foreground color */ | |
391 GdkColor *bgcolor; /* GDK-styled background color */ | |
203 | 392 GdkColor *spcolor; /* GDK-styled special color */ |
7 | 393 GdkGC *text_gc; /* cached GC for normal text */ |
394 PangoContext *text_context; /* the context used for all text */ | |
395 PangoFont *ascii_font; /* cached font for ASCII strings */ | |
396 PangoGlyphString *ascii_glyphs; /* cached code point -> glyph map */ | |
714 | 397 # ifdef FEAT_GUI_TABLINE |
685 | 398 GtkWidget *tabline; /* tab pages line handle */ |
7 | 399 # endif |
400 | |
401 GtkAccelGroup *accel_group; | |
402 GtkWidget *filedlg; /* file selection dialog */ | |
403 char_u *browse_fname; /* file name from filedlg */ | |
2923 | 404 |
405 guint32 event_time; | |
7 | 406 #endif /* FEAT_GUI_GTK */ |
407 | |
843 | 408 #if defined(FEAT_GUI_TABLINE) \ |
1620 | 409 && (defined(FEAT_GUI_W32) || defined(FEAT_GUI_MOTIF) \ |
2330 | 410 || defined(FEAT_GUI_MAC)) |
843 | 411 int tabline_height; |
412 #endif | |
413 | |
7 | 414 #ifdef FEAT_FOOTER |
415 int footer_height; /* height of the message footer */ | |
416 #endif | |
417 | |
418 #if defined(FEAT_TOOLBAR) \ | |
419 && (defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MOTIF)) | |
420 int toolbar_height; /* height of the toolbar */ | |
421 #endif | |
422 | |
423 #ifdef FEAT_BEVAL_TIP | |
424 /* Tooltip properties; also used for balloon evaluation */ | |
425 char_u *rsrc_tooltip_font_name; /* tooltip font name */ | |
426 char *rsrc_tooltip_fg_name; /* tooltip foreground color name */ | |
427 char *rsrc_tooltip_bg_name; /* tooltip background color name */ | |
428 guicolor_T tooltip_fg_pixel; /* tooltip foreground color */ | |
429 guicolor_T tooltip_bg_pixel; /* tooltip background color */ | |
430 XFontSet tooltip_fontset; /* tooltip fontset */ | |
431 #endif | |
432 | |
433 #ifdef FEAT_GUI_MSWIN | |
434 GuiFont currFont; /* Current font */ | |
435 guicolor_T currFgColor; /* Current foreground text color */ | |
436 guicolor_T currBgColor; /* Current background text color */ | |
203 | 437 guicolor_T currSpColor; /* Current special text color */ |
7 | 438 #endif |
439 | |
440 #ifdef FEAT_GUI_MAC | |
441 WindowPtr VimWindow; | |
442 MenuHandle MacOSHelpMenu; /* Help menu provided by the MacOS */ | |
443 int MacOSHelpItems; /* Nr of help-items supplied by MacOS */ | |
444 WindowPtr wid; /* Window id of text area */ | |
445 int visibility; /* Is window partially/fully obscured? */ | |
446 #endif | |
447 | |
448 #ifdef FEAT_GUI_PHOTON | |
449 PtWidget_t *vimWindow; /* PtWindow */ | |
450 PtWidget_t *vimTextArea; /* PtRaw */ | |
451 PtWidget_t *vimContainer; /* PtPanel */ | |
452 # if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) | |
453 PtWidget_t *vimToolBarGroup; | |
454 # endif | |
455 # ifdef FEAT_MENU | |
456 PtWidget_t *vimMenuBar; | |
457 # endif | |
458 # ifdef FEAT_TOOLBAR | |
459 PtWidget_t *vimToolBar; | |
460 int toolbar_height; | |
461 # endif | |
462 PhEvent_t *event_buffer; | |
463 #endif | |
464 | |
465 #ifdef FEAT_XIM | |
466 char *rsrc_input_method; | |
467 char *rsrc_preedit_type_name; | |
468 #endif | |
469 } gui_T; | |
470 | |
471 extern gui_T gui; /* this is defined in gui.c */ | |
472 | |
473 /* definitions of available window positionings for gui_*_position_in_parent() | |
474 */ | |
475 typedef enum | |
476 { | |
477 VW_POS_MOUSE, | |
478 VW_POS_CENTER, | |
479 VW_POS_TOP_CENTER | |
325 | 480 } gui_win_pos_T; |
7 | 481 |
28 | 482 #ifdef FIND_REPLACE_DIALOG |
7 | 483 /* |
484 * Flags used to distinguish the different contexts in which the | |
485 * find/replace callback may be called. | |
486 */ | |
487 # define FRD_FINDNEXT 1 /* Find next in find dialog */ | |
488 # define FRD_R_FINDNEXT 2 /* Find next in repl dialog */ | |
489 # define FRD_REPLACE 3 /* Replace once */ | |
490 # define FRD_REPLACEALL 4 /* Replace remaining matches */ | |
491 # define FRD_UNDO 5 /* Undo replaced text */ | |
492 # define FRD_TYPE_MASK 7 /* Mask for the callback type */ | |
493 /* Flags which change the way searching is done. */ | |
494 # define FRD_WHOLE_WORD 0x08 /* match whole word only */ | |
495 # define FRD_MATCH_CASE 0x10 /* match case */ | |
496 #endif | |
836 | 497 |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
498 #ifdef FEAT_GUI_GTK |
836 | 499 /* |
500 * Convenience macros to convert from 'encoding' to 'termencoding' and | |
501 * vice versa. If no conversion is necessary the passed-in pointer is | |
502 * returned as is, without allocating any memory. Thus additional _FREE() | |
503 * macros are provided. The _FREE() macros also set the pointer to NULL, | |
504 * in order to avoid bugs due to illegal memory access only happening if | |
505 * 'encoding' != utf-8... | |
506 * | |
507 * Defining these macros as pure expressions looks a bit tricky but | |
508 * avoids depending on the context of the macro expansion. One of the | |
509 * rare occasions where the comma operator comes in handy :) | |
510 * | |
511 * Note: Do NOT keep the result around when handling control back to | |
512 * the main Vim! The user could change 'encoding' at any time. | |
513 */ | |
514 # define CONVERT_TO_UTF8(String) \ | |
515 ((output_conv.vc_type == CONV_NONE || (String) == NULL) \ | |
516 ? (String) \ | |
517 : string_convert(&output_conv, (String), NULL)) | |
518 | |
519 # define CONVERT_TO_UTF8_FREE(String) \ | |
520 ((String) = ((output_conv.vc_type == CONV_NONE) \ | |
521 ? (char_u *)NULL \ | |
522 : (vim_free(String), (char_u *)NULL))) | |
523 | |
524 # define CONVERT_FROM_UTF8(String) \ | |
525 ((input_conv.vc_type == CONV_NONE || (String) == NULL) \ | |
526 ? (String) \ | |
527 : string_convert(&input_conv, (String), NULL)) | |
528 | |
529 # define CONVERT_FROM_UTF8_FREE(String) \ | |
530 ((String) = ((input_conv.vc_type == CONV_NONE) \ | |
531 ? (char_u *)NULL \ | |
532 : (vim_free(String), (char_u *)NULL))) | |
533 | |
534 #else | |
535 # define CONVERT_TO_UTF8(String) (String) | |
536 # define CONVERT_TO_UTF8_FREE(String) ((String) = (char_u *)NULL) | |
537 # define CONVERT_FROM_UTF8(String) (String) | |
538 # 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
|
539 #endif /* FEAT_GUI_GTK */ |