blob: 67ddc628a38726fb3f103ca06f250e5ed8ec5d65 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sw=4 sts=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * Photon GUI support by Julian Kinraid
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 * Clipboard support is in os_qnx.c
11 * PhAttach() is called in os_qnx.c:qnx_init()
12 */
13
14#include "vim.h"
15
Bram Moolenaar82881492012-11-20 16:53:39 +010016/* cproto fails on missing include files */
17#ifndef PROTO
18# ifdef FEAT_TOOLBAR
19# include <photon/PxImage.h>
20# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021#endif
22
23#if !defined(__QNX__)
24/* Used when generating prototypes. */
25# define PgColor_t int
26# define PhEvent_t int
27# define PhPoint_t int
28# define PtWidget_t int
29# define Pg_BLACK 0
30# define PtCallbackF_t int
31# define PtCallbackInfo_t int
32# define PhTile_t int
33# define PtWidget_t int
34# define PhImage_t int
35#endif
36
37#define ARRAY_LENGTH(a) (sizeof(a) / sizeof(a[0]))
Bram Moolenaard2221132011-07-27 14:09:09 +020038#define RGB(r, g, b) PgRGB(r, g, b)
Bram Moolenaar071d4272004-06-13 20:20:40 +000039
Bram Moolenaard2221132011-07-27 14:09:09 +020040#define EVENT_BUFFER_SIZE sizeof(PhEvent_t) + 1000
Bram Moolenaar071d4272004-06-13 20:20:40 +000041
42/* Some defines for gui_mch_mousehide() */
43#define MOUSE_HIDE TRUE
44#define MOUSE_SHOW FALSE
45
46/* Optional support for using a PtPanelGroup widget, needs work */
47#undef USE_PANEL_GROUP
48
49#ifdef USE_PANEL_GROUP
50static char *empty_title = " ";
51static char **panel_titles = NULL;
52static ushort_t num_panels = 0;
53static short pg_margin_left, pg_margin_right, pg_margin_top, pg_margin_bottom;
54#endif
55
56#define GUI_PH_MARGIN 4 /* Size of the bevel */
57
58#define GUI_PH_MOUSE_TYPE Ph_CURSOR_INSERT
59static PgColor_t gui_ph_mouse_color = Pg_BLACK;
60
61static PhPoint_t gui_ph_raw_offset;
62static PtWidget_t *gui_ph_timer_cursor; /* handle cursor blinking */
63static PtWidget_t *gui_ph_timer_timeout; /* used in gui_mch_wait_for_chars */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020064static short is_timeout; /* Has the timeout occurred? */
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
66/*
67 * This is set inside the mouse callback for a right mouse
68 * button click, and used for the popup menus
69 */
70static PhPoint_t abs_mouse;
71
72/* Try and avoid redraws while a resize is in progress */
73static int is_ignore_draw = FALSE;
74
75/* Used for converting to/from utf-8 and other charsets */
76static struct PxTransCtrl *charset_translate;
77
78/*
79 * Cursor blink functions.
80 *
81 * This is a simple state machine:
82 * BLINK_NONE not blinking at all
83 * BLINK_OFF blinking, cursor is not shown
84 * BLINK_ON blinking, cursor is shown
85 */
86static enum {
87 BLINK_NONE,
88 BLINK_OFF,
89 BLINK_ON
90} blink_state = BLINK_NONE;
91
92static long_u blink_waittime = 700;
93static long_u blink_ontime = 400;
94static long_u blink_offtime = 250;
95
96static struct
97{
98 int key_sym;
99 char_u vim_code0;
100 char_u vim_code1;
101} special_keys[] =
102{
103 {Pk_Up, 'k', 'u'},
104 {Pk_Down, 'k', 'd'},
105 {Pk_Left, 'k', 'l'},
106 {Pk_Right, 'k', 'r'},
107
108 {Pk_F1, 'k', '1'},
109 {Pk_F2, 'k', '2'},
110 {Pk_F3, 'k', '3'},
111 {Pk_F4, 'k', '4'},
112 {Pk_F5, 'k', '5'},
113 {Pk_F6, 'k', '6'},
114 {Pk_F7, 'k', '7'},
115 {Pk_F8, 'k', '8'},
116 {Pk_F9, 'k', '9'},
117 {Pk_F10, 'k', ';'},
118
119 {Pk_F11, 'F', '1'},
120 {Pk_F12, 'F', '2'},
121 {Pk_F13, 'F', '3'},
122 {Pk_F14, 'F', '4'},
123 {Pk_F15, 'F', '5'},
124 {Pk_F16, 'F', '6'},
125 {Pk_F17, 'F', '7'},
126 {Pk_F18, 'F', '8'},
127 {Pk_F19, 'F', '9'},
128 {Pk_F20, 'F', 'A'},
129
130 {Pk_F21, 'F', 'B'},
131 {Pk_F22, 'F', 'C'},
132 {Pk_F23, 'F', 'D'},
133 {Pk_F24, 'F', 'E'},
134 {Pk_F25, 'F', 'F'},
135 {Pk_F26, 'F', 'G'},
136 {Pk_F27, 'F', 'H'},
137 {Pk_F28, 'F', 'I'},
138 {Pk_F29, 'F', 'J'},
139
140 {Pk_F30, 'F', 'K'},
141 {Pk_F31, 'F', 'L'},
142 {Pk_F32, 'F', 'M'},
143 {Pk_F33, 'F', 'N'},
144 {Pk_F34, 'F', 'O'},
145 {Pk_F35, 'F', 'P'},
146
147 {Pk_Help, '%', '1'},
148 {Pk_BackSpace, 'k', 'b'},
149 {Pk_Insert, 'k', 'I'},
150 {Pk_Delete, 'k', 'D'},
151 {Pk_Home, 'k', 'h'},
152 {Pk_End, '@', '7'},
153 {Pk_Prior, 'k', 'P'},
154 {Pk_Next, 'k', 'N'},
155 {Pk_Print, '%', '9'},
156
157 {Pk_KP_Add, 'K', '6'},
158 {Pk_KP_Subtract,'K', '7'},
159 {Pk_KP_Divide, 'K', '8'},
160 {Pk_KP_Multiply,'K', '9'},
161 {Pk_KP_Enter, 'K', 'A'},
162
163 {Pk_KP_0, KS_EXTRA, KE_KINS}, /* Insert */
164 {Pk_KP_Decimal, KS_EXTRA, KE_KDEL}, /* Delete */
165
166 {Pk_KP_4, 'k', 'l'}, /* Left */
167 {Pk_KP_6, 'k', 'r'}, /* Right */
168 {Pk_KP_8, 'k', 'u'}, /* Up */
169 {Pk_KP_2, 'k', 'd'}, /* Down */
170
171 {Pk_KP_7, 'K', '1'}, /* Home */
172 {Pk_KP_1, 'K', '4'}, /* End */
173
174 {Pk_KP_9, 'K', '3'}, /* Page Up */
175 {Pk_KP_3, 'K', '5'}, /* Page Down */
176
177 {Pk_KP_5, '&', '8'}, /* Undo */
178
179 /* Keys that we want to be able to use any modifier with: */
180 {Pk_Return, CAR, NUL},
181 {Pk_space, ' ', NUL},
182 {Pk_Tab, TAB, NUL},
183 {Pk_Escape, ESC, NUL},
184 {NL, NL, NUL},
185 {CAR, CAR, NUL},
186
187 /* End of list marker: */
188 {0, 0, 0}
189};
190
191
192/****************************************************************************/
193
194static PtCallbackF_t gui_ph_handle_timer_cursor;
195static PtCallbackF_t gui_ph_handle_timer_timeout;
196
197static PtCallbackF_t gui_ph_handle_window_cb;
198
199static PtCallbackF_t gui_ph_handle_scrollbar;
200static PtCallbackF_t gui_ph_handle_keyboard;
201static PtCallbackF_t gui_ph_handle_mouse;
202static PtCallbackF_t gui_ph_handle_pulldown_menu;
203static PtCallbackF_t gui_ph_handle_menu;
204static PtCallbackF_t gui_ph_handle_focus; /* focus change of text area */
205
206static PtCallbackF_t gui_ph_handle_menu_resize;
207
208/* When a menu is unrealized, give focus back to vimTextArea */
209static PtCallbackF_t gui_ph_handle_menu_unrealized;
210
211#ifdef USE_PANEL_GROUP
Bram Moolenaard2221132011-07-27 14:09:09 +0200212static void gui_ph_get_panelgroup_margins(short*, short*, short*, short*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213#endif
214
215#ifdef FEAT_TOOLBAR
Bram Moolenaard2221132011-07-27 14:09:09 +0200216static PhImage_t *gui_ph_toolbar_find_icon(vimmenu_T *menu);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217#endif
218
Bram Moolenaard2221132011-07-27 14:09:09 +0200219static void gui_ph_draw_start(void);
220static void gui_ph_draw_end(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221
222/* Set the text for the balloon */
Bram Moolenaard2221132011-07-27 14:09:09 +0200223static PtWidget_t * gui_ph_show_tooltip(PtWidget_t *window,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 PtWidget_t *widget,
225 int position,
226 char *text,
227 char *font,
228 PgColor_t fill_color,
Bram Moolenaard2221132011-07-27 14:09:09 +0200229 PgColor_t text_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230
231/****************************************************************************/
232
Bram Moolenaard2221132011-07-27 14:09:09 +0200233static PtWidget_t * gui_ph_show_tooltip(PtWidget_t *window,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234 PtWidget_t *widget,
235 int position,
236 char *text,
237 char *font,
238 PgColor_t fill_color,
Bram Moolenaard2221132011-07-27 14:09:09 +0200239 PgColor_t text_color)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240{
241 PtArg_t arg;
242 vimmenu_T *menu;
243 char_u *tooltip;
244
Bram Moolenaard2221132011-07-27 14:09:09 +0200245 PtSetArg(&arg, Pt_ARG_POINTER, &menu, 0);
246 PtGetResources(widget, 1, &arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247
248 /* Override the text and position */
249
250 tooltip = text;
Bram Moolenaard2221132011-07-27 14:09:09 +0200251 if (menu != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 {
253 int index = MENU_INDEX_TIP;
Bram Moolenaard2221132011-07-27 14:09:09 +0200254 if (menu->strings[ index ] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255 tooltip = menu->strings[ index ];
256 }
257
Bram Moolenaard2221132011-07-27 14:09:09 +0200258 return PtInflateBalloon(
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259 window,
260 widget,
261 /* Don't put the balloon at the bottom,
262 * it gets drawn over by gfx done in the PtRaw */
263 Pt_BALLOON_TOP,
264 tooltip,
265 font,
266 fill_color,
Bram Moolenaard2221132011-07-27 14:09:09 +0200267 text_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268}
269
270 static void
Bram Moolenaard2221132011-07-27 14:09:09 +0200271gui_ph_resize_container(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272{
273 PhArea_t area;
274
Bram Moolenaard2221132011-07-27 14:09:09 +0200275 PtWidgetArea(gui.vimWindow, &area);
276 PtWidgetPos (gui.vimContainer, &area.pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277
Bram Moolenaard2221132011-07-27 14:09:09 +0200278 PtSetResource(gui.vimContainer, Pt_ARG_AREA, &area, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279}
280
281 static int
282gui_ph_handle_menu_resize(
283 PtWidget_t *widget,
284 void *other,
Bram Moolenaard2221132011-07-27 14:09:09 +0200285 PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286{
287 PtContainerCallback_t *sizes = info->cbdata;
288 PtWidget_t *container;
289 PhPoint_t below_menu;
290 int_u height;
291
292 height = sizes->new_dim.h;
293
Bram Moolenaarccc18222007-05-10 18:25:20 +0000294 /* Because vim treats the toolbar and menubar separately,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295 * and here they're lumped together into a PtToolbarGroup,
296 * we only need either menu_height or toolbar_height set at once */
Bram Moolenaard2221132011-07-27 14:09:09 +0200297 if (gui.menu_is_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 {
299 gui.menu_height = height;
300 gui.toolbar_height = 0;
301 }
302#ifdef FEAT_TOOLBAR
303 else
304 gui.toolbar_height = height;
305#endif
306
307 below_menu.x = 0;
308 below_menu.y = height;
309
310#ifdef USE_PANEL_GROUP
311 container = gui.vimPanelGroup;
312#else
313 container = gui.vimContainer;
314#endif
315
Bram Moolenaard2221132011-07-27 14:09:09 +0200316 PtSetResource(container, Pt_ARG_POS, &below_menu, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317
318 gui_ph_resize_container();
319
320#ifdef USE_PANEL_GROUP
321 gui_ph_get_panelgroup_margins(
322 &pg_margin_top, &pg_margin_bottom,
Bram Moolenaard2221132011-07-27 14:09:09 +0200323 &pg_margin_left, &pg_margin_right);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324#endif
Bram Moolenaard2221132011-07-27 14:09:09 +0200325 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326}
327
328/*
329 * Pt_ARG_TIMER_REPEAT isn't used because the on & off times
330 * are different
331 */
332 static int
333gui_ph_handle_timer_cursor(
334 PtWidget_t *widget,
335 void *data,
Bram Moolenaard2221132011-07-27 14:09:09 +0200336 PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337{
Bram Moolenaard2221132011-07-27 14:09:09 +0200338 if (blink_state == BLINK_ON)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 {
340 gui_undraw_cursor();
341 blink_state = BLINK_OFF;
Bram Moolenaard2221132011-07-27 14:09:09 +0200342 PtSetResource(gui_ph_timer_cursor, Pt_ARG_TIMER_INITIAL,
343 blink_offtime, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 }
345 else
346 {
347 gui_update_cursor(TRUE, FALSE);
348 blink_state = BLINK_ON;
Bram Moolenaard2221132011-07-27 14:09:09 +0200349 PtSetResource(gui_ph_timer_cursor, Pt_ARG_TIMER_INITIAL,
350 blink_ontime, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351 }
Bram Moolenaard2221132011-07-27 14:09:09 +0200352 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353}
354
355 static int
356gui_ph_handle_timer_timeout(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
357{
358 is_timeout = TRUE;
359
Bram Moolenaard2221132011-07-27 14:09:09 +0200360 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361}
362
363 static int
Bram Moolenaard0988c52011-08-10 12:19:04 +0200364gui_ph_handle_window_cb(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365{
366 PhWindowEvent_t *we = info->cbdata;
367 ushort_t *width, *height;
368
Bram Moolenaard0988c52011-08-10 12:19:04 +0200369 switch (we->event_f) {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 case Ph_WM_CLOSE:
371 gui_shell_closed();
372 break;
373
374 case Ph_WM_FOCUS:
375 /* Just in case it's hidden and needs to be shown */
Bram Moolenaard0988c52011-08-10 12:19:04 +0200376 gui_mch_mousehide(MOUSE_SHOW);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377
Bram Moolenaard0988c52011-08-10 12:19:04 +0200378 if (we->event_state == Ph_WM_EVSTATE_FOCUS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 {
380 gui_focus_change(TRUE);
381 gui_mch_start_blink();
382 }
383 else
384 {
385 gui_focus_change(FALSE);
386 gui_mch_stop_blink();
387 }
388 break;
389
390 case Ph_WM_RESIZE:
Bram Moolenaard0988c52011-08-10 12:19:04 +0200391 PtGetResource(gui.vimWindow, Pt_ARG_WIDTH, &width, 0);
392 PtGetResource(gui.vimWindow, Pt_ARG_HEIGHT, &height, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393#ifdef USE_PANEL_GROUP
394 width -= (pg_margin_left + pg_margin_right);
395 height -= (pg_margin_top + pg_margin_bottom);
396#endif
Bram Moolenaard0988c52011-08-10 12:19:04 +0200397 gui_resize_shell(*width, *height);
398 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 is_ignore_draw = FALSE;
Bram Moolenaard0988c52011-08-10 12:19:04 +0200400 PtEndFlux(gui.vimContainer);
401 PtContainerRelease(gui.vimContainer);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402 break;
403
404 default:
405 break;
406 }
407
Bram Moolenaard2221132011-07-27 14:09:09 +0200408 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409}
410
411 static int
Bram Moolenaard0988c52011-08-10 12:19:04 +0200412gui_ph_handle_scrollbar(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413{
414 PtScrollbarCallback_t *scroll;
415 scrollbar_T *sb;
416 int value, dragging = FALSE;
417
418 scroll = info->cbdata;
419
420 sb = (scrollbar_T *) data;
Bram Moolenaard0988c52011-08-10 12:19:04 +0200421 if (sb != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422 {
423 value = scroll->position;
Bram Moolenaard0988c52011-08-10 12:19:04 +0200424 switch (scroll->action)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425 {
426 case Pt_SCROLL_DRAGGED:
427 dragging = TRUE;
428 break;
429
430 case Pt_SCROLL_SET:
431 /* FIXME: return straight away here? */
Bram Moolenaard2221132011-07-27 14:09:09 +0200432 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 break;
434 }
435
436 gui_drag_scrollbar(sb, value, dragging);
437 }
Bram Moolenaard2221132011-07-27 14:09:09 +0200438 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439}
440
441 static int
Bram Moolenaard0988c52011-08-10 12:19:04 +0200442gui_ph_handle_keyboard(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443{
444 PhKeyEvent_t *key;
445 unsigned char string[6];
446 int len, i;
447 int ch, modifiers;
448
Bram Moolenaard0988c52011-08-10 12:19:04 +0200449 key = PhGetData(info->event);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450
451 ch = modifiers = len = 0;
452
Bram Moolenaard0988c52011-08-10 12:19:04 +0200453 if (p_mh)
454 gui_mch_mousehide(MOUSE_HIDE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455
456 /* We're a good lil photon program, aren't we? yes we are, yeess wee arrr */
Bram Moolenaard0988c52011-08-10 12:19:04 +0200457 if (key->key_flags & Pk_KF_Compose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 {
Bram Moolenaard2221132011-07-27 14:09:09 +0200459 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 }
461
Bram Moolenaard0988c52011-08-10 12:19:04 +0200462 if ((key->key_flags & Pk_KF_Cap_Valid) &&
463 PkIsKeyDown(key->key_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 {
465#ifdef FEAT_MENU
466 /*
467 * Only show the menu if the Alt key is down, and the Shift & Ctrl
468 * keys aren't down, as well as the other conditions
469 */
Bram Moolenaard0988c52011-08-10 12:19:04 +0200470 if (((key->key_mods & Pk_KM_Alt) &&
471 !(key->key_mods & Pk_KM_Shift) &&
472 !(key->key_mods & Pk_KM_Ctrl)) &&
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 gui.menu_is_active &&
Bram Moolenaard0988c52011-08-10 12:19:04 +0200474 (*p_wak == 'y' ||
475 (*p_wak == 'm' &&
476 gui_is_menu_shortcut(key->key_cap))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477 {
478 /* Fallthrough and let photon look for the hotkey */
Bram Moolenaard2221132011-07-27 14:09:09 +0200479 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480 }
481#endif
482
Bram Moolenaar15d63192011-09-14 16:05:15 +0200483 for (i = 0; special_keys[i].key_sym != 0; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 {
Bram Moolenaard0988c52011-08-10 12:19:04 +0200485 if (special_keys[i].key_sym == key->key_cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486 {
487 len = 0;
Bram Moolenaard0988c52011-08-10 12:19:04 +0200488 if (special_keys[i].vim_code1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 ch = special_keys[i].vim_code0;
490 else
491 {
492 /* Detect if a keypad number key has been pressed
493 * and change the key if Num Lock is on */
Bram Moolenaard0988c52011-08-10 12:19:04 +0200494 if (key->key_cap >= Pk_KP_Enter && key->key_cap <= Pk_KP_9
495 && (key->key_mods & Pk_KM_Num_Lock))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 {
497 /* FIXME: For now, just map the key to a ascii value
498 * (see <photon/PkKeyDef.h>) */
499 ch = key->key_cap - 0xf080;
500 }
501 else
Bram Moolenaard0988c52011-08-10 12:19:04 +0200502 ch = TO_SPECIAL(special_keys[i].vim_code0,
503 special_keys[i].vim_code1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 }
505 break;
506 }
507 }
508
Bram Moolenaard0988c52011-08-10 12:19:04 +0200509 if (key->key_mods & Pk_KM_Ctrl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 modifiers |= MOD_MASK_CTRL;
Bram Moolenaard0988c52011-08-10 12:19:04 +0200511 if (key->key_mods & Pk_KM_Alt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 modifiers |= MOD_MASK_ALT;
Bram Moolenaard0988c52011-08-10 12:19:04 +0200513 if (key->key_mods & Pk_KM_Shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514 modifiers |= MOD_MASK_SHIFT;
515
516 /* Is this not a special key? */
Bram Moolenaard0988c52011-08-10 12:19:04 +0200517 if (special_keys[i].key_sym == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 {
Bram Moolenaard0988c52011-08-10 12:19:04 +0200519 ch = PhTo8859_1(key);
520 if (ch == -1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521#ifdef FEAT_MBYTE
Bram Moolenaard0988c52011-08-10 12:19:04 +0200522 || (enc_utf8 && ch > 127)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523#endif
524 )
525 {
526#ifdef FEAT_MBYTE
Bram Moolenaard0988c52011-08-10 12:19:04 +0200527 len = PhKeyToMb(string, key);
528 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 {
530 static char buf[6];
531 int src_taken, dst_made;
Bram Moolenaard0988c52011-08-10 12:19:04 +0200532 if (enc_utf8 != TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 {
534 PxTranslateFromUTF(
535 charset_translate,
536 string,
537 len,
538 &src_taken,
539 buf,
540 6,
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200541 &dst_made);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200543 add_to_input_buf(buf, dst_made);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544 }
545 else
546 {
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200547 add_to_input_buf(string, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 }
549
Bram Moolenaard2221132011-07-27 14:09:09 +0200550 return Pt_CONSUME;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 }
552 len = 0;
553#endif
554 ch = key->key_cap;
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200555 if (ch < 0xff)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 {
557 /* FIXME: is this the right thing to do? */
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200558 if (modifiers & MOD_MASK_CTRL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 {
560 modifiers &= ~MOD_MASK_CTRL;
561
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200562 if ((ch >= 'a' && ch <= 'z') ||
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 ch == '[' ||
564 ch == ']' ||
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200565 ch == '\\')
566 ch = Ctrl_chr(ch);
567 else if (ch == '2')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 ch = NUL;
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200569 else if (ch == '6')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 ch = 0x1e;
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200571 else if (ch == '-')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 ch = 0x1f;
573 else
574 modifiers |= MOD_MASK_CTRL;
575 }
576
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200577 if (modifiers & MOD_MASK_ALT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 {
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200579 ch = Meta(ch);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 modifiers &= ~MOD_MASK_ALT;
581 }
582 }
583 else
584 {
Bram Moolenaard2221132011-07-27 14:09:09 +0200585 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 }
587 }
588 else
589 modifiers &= ~MOD_MASK_SHIFT;
590 }
591
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200592 ch = simplify_key(ch, &modifiers);
593 if (modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 {
595 string[ len++ ] = CSI;
596 string[ len++ ] = KS_MODIFIER;
597 string[ len++ ] = modifiers;
598 }
599
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200600 if (IS_SPECIAL(ch))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 {
602 string[ len++ ] = CSI;
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200603 string[ len++ ] = K_SECOND(ch);
604 string[ len++ ] = K_THIRD(ch);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 }
606 else
607 {
608 string[ len++ ] = ch;
609 }
610
611 if (len == 1 && ((ch == Ctrl_C && ctrl_c_interrupts)
612 || ch == intr_char))
613 {
614 trash_input_buf();
615 got_int = TRUE;
616 }
617
618 if (len == 1 && string[0] == CSI)
619 {
620 /* Turn CSI into K_CSI. */
621 string[ len++ ] = KS_EXTRA;
622 string[ len++ ] = KE_CSI;
623 }
624
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200625 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626 {
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200627 add_to_input_buf(string, len);
Bram Moolenaard2221132011-07-27 14:09:09 +0200628 return Pt_CONSUME;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 }
630 }
631
Bram Moolenaard2221132011-07-27 14:09:09 +0200632 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633}
634
635 static int
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200636gui_ph_handle_mouse(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637{
638 PhPointerEvent_t *pointer;
639 PhRect_t *pos;
640 int button = 0, repeated_click, modifiers = 0x0;
641 short mouse_x, mouse_y;
642
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200643 pointer = PhGetData(info->event);
644 pos = PhGetRects(info->event);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200646 gui_mch_mousehide(MOUSE_SHOW);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647
648 /*
649 * Coordinates need to be relative to the base window,
650 * not relative to the vimTextArea widget
651 */
652 mouse_x = pos->ul.x + gui.border_width;
653 mouse_y = pos->ul.y + gui.border_width;
654
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200655 if (info->event->type == Ph_EV_PTR_MOTION_NOBUTTON)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 {
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200657 gui_mouse_moved(mouse_x, mouse_y);
Bram Moolenaard2221132011-07-27 14:09:09 +0200658 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 }
660
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200661 if (pointer->key_mods & Pk_KM_Shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 modifiers |= MOUSE_SHIFT;
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200663 if (pointer->key_mods & Pk_KM_Ctrl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 modifiers |= MOUSE_CTRL;
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200665 if (pointer->key_mods & Pk_KM_Alt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 modifiers |= MOUSE_ALT;
667
668 /*
669 * FIXME More than one button may be involved, but for
670 * now just deal with one
671 */
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200672 if (pointer->buttons & Ph_BUTTON_SELECT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 button = MOUSE_LEFT;
674
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200675 if (pointer->buttons & Ph_BUTTON_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 {
677 button = MOUSE_RIGHT;
678 /* Need the absolute coordinates for the popup menu */
679 abs_mouse.x = pointer->pos.x;
680 abs_mouse.y = pointer->pos.y;
681 }
682
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200683 if (pointer->buttons & Ph_BUTTON_ADJUST)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 button = MOUSE_MIDDLE;
685
686 /* Catch a real release (not phantom or other releases */
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200687 if (info->event->type == Ph_EV_BUT_RELEASE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 button = MOUSE_RELEASE;
689
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200690 if (info->event->type & Ph_EV_PTR_MOTION_BUTTON)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 button = MOUSE_DRAG;
692
693#if 0
694 /* Vim doesn't use button repeats */
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200695 if (info->event->type & Ph_EV_BUT_REPEAT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 button = MOUSE_DRAG;
697#endif
698
699 /* Don't do anything if it is one of the phantom mouse release events */
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200700 if ((button != MOUSE_RELEASE) ||
701 (info->event->subtype == Ph_EV_RELEASE_REAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 {
703 repeated_click = (pointer->click_count >= 2) ? TRUE : FALSE;
704
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200705 gui_send_mouse_event(button , mouse_x, mouse_y, repeated_click, modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 }
707
Bram Moolenaard2221132011-07-27 14:09:09 +0200708 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709}
710
711/* Handle a focus change of the PtRaw widget */
712 static int
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200713gui_ph_handle_focus(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714{
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200715 if (info->reason == Pt_CB_LOST_FOCUS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 {
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200717 PtRemoveEventHandler(gui.vimTextArea, Ph_EV_PTR_MOTION_NOBUTTON,
718 gui_ph_handle_mouse, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200720 gui_mch_mousehide(MOUSE_SHOW);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 }
722 else
723 {
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200724 PtAddEventHandler(gui.vimTextArea, Ph_EV_PTR_MOTION_NOBUTTON,
725 gui_ph_handle_mouse, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 }
Bram Moolenaard2221132011-07-27 14:09:09 +0200727 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728}
729
730 static void
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200731gui_ph_handle_raw_draw(PtWidget_t *widget, PhTile_t *damage)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732{
733 PhRect_t *r;
734 PhPoint_t offset;
735 PhPoint_t translation;
736
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200737 if (is_ignore_draw == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 return;
739
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200740 PtSuperClassDraw(PtBasic, widget, damage);
741 PgGetTranslation(&translation);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 PgClearTranslation();
743
744#if 0
745 /*
Bram Moolenaarccc18222007-05-10 18:25:20 +0000746 * This causes some weird problems, with drawing being done from
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 * within this raw drawing function (rather than just simple clearing
748 * and text drawing done by gui_redraw)
749 *
750 * The main problem is when PhBlit is used, and the cursor appearing
751 * in places where it shouldn't
752 */
753 out_flush();
754#endif
755
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200756 PtWidgetOffset(widget, &offset);
757 PhTranslatePoint(&offset, PtWidgetPos(gui.vimTextArea, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758
759#if 1
760 /* Redraw individual damage regions */
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200761 if (damage->next != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 damage = damage->next;
763
Bram Moolenaar15d63192011-09-14 16:05:15 +0200764 while (damage != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 {
766 r = &damage->rect;
767 gui_redraw(
768 r->ul.x - offset.x, r->ul.y - offset.y,
769 r->lr.x - r->ul.x + 1,
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200770 r->lr.y - r->ul.y + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 damage = damage->next;
772 }
773#else
774 /* Redraw the rectangle that covers all the damaged regions */
775 r = &damage->rect;
776 gui_redraw(
777 r->ul.x - offset.x, r->ul.y - offset.y,
778 r->lr.x - r->ul.x + 1,
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200779 r->lr.y - r->ul.y + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780#endif
781
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200782 PgSetTranslation(&translation, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783}
784
785 static int
786gui_ph_handle_pulldown_menu(
787 PtWidget_t *widget,
788 void *data,
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200789 PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790{
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200791 if (data != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 {
793 vimmenu_T *menu = (vimmenu_T *) data;
794
Bram Moolenaar0d55ff12011-09-07 19:09:01 +0200795 PtPositionMenu(menu->submenu_id, NULL);
796 PtRealizeWidget(menu->submenu_id);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 }
798
Bram Moolenaard2221132011-07-27 14:09:09 +0200799 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800}
801
802/* This is used for pulldown/popup menus and also toolbar buttons */
803 static int
Bram Moolenaar15d63192011-09-14 16:05:15 +0200804gui_ph_handle_menu(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805{
Bram Moolenaar15d63192011-09-14 16:05:15 +0200806 if (data != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 {
808 vimmenu_T *menu = (vimmenu_T *) data;
Bram Moolenaar15d63192011-09-14 16:05:15 +0200809 gui_menu_cb(menu);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 }
Bram Moolenaard2221132011-07-27 14:09:09 +0200811 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812}
813
814/* Stop focus from disappearing into the menubar... */
815 static int
816gui_ph_handle_menu_unrealized(
817 PtWidget_t *widget,
818 void *data,
Bram Moolenaar15d63192011-09-14 16:05:15 +0200819 PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820{
Bram Moolenaar15d63192011-09-14 16:05:15 +0200821 PtGiveFocus(gui.vimTextArea, NULL);
Bram Moolenaard2221132011-07-27 14:09:09 +0200822 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823}
824
825 static int
826gui_ph_handle_window_open(
827 PtWidget_t *widget,
828 void *data,
Bram Moolenaar15d63192011-09-14 16:05:15 +0200829 PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830{
Bram Moolenaar15d63192011-09-14 16:05:15 +0200831 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaard2221132011-07-27 14:09:09 +0200832 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833}
834
835/****************************************************************************/
836
837#define DRAW_START gui_ph_draw_start()
838#define DRAW_END gui_ph_draw_end()
839
840/* TODO: Set a clipping rect? */
841 static void
Bram Moolenaar15d63192011-09-14 16:05:15 +0200842gui_ph_draw_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843{
Bram Moolenaara0b19972009-07-01 14:13:18 +0000844 PhGC_t *gc;
845
846 gc = PgGetGC();
Bram Moolenaar15d63192011-09-14 16:05:15 +0200847 PgSetRegion(PtWidgetRid(PtFindDisjoint(gui.vimTextArea)));
848 PgClearClippingsCx(gc);
849 PgClearTranslationCx(gc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850
Bram Moolenaar15d63192011-09-14 16:05:15 +0200851 PtWidgetOffset(gui.vimTextArea, &gui_ph_raw_offset);
852 PhTranslatePoint(&gui_ph_raw_offset, PtWidgetPos(gui.vimTextArea, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853
Bram Moolenaar15d63192011-09-14 16:05:15 +0200854 PgSetTranslation(&gui_ph_raw_offset, Pg_RELATIVE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855}
856
857 static void
Bram Moolenaar15d63192011-09-14 16:05:15 +0200858gui_ph_draw_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859{
860 gui_ph_raw_offset.x = -gui_ph_raw_offset.x;
861 gui_ph_raw_offset.y = -gui_ph_raw_offset.y;
Bram Moolenaar15d63192011-09-14 16:05:15 +0200862 PgSetTranslation(&gui_ph_raw_offset, Pg_RELATIVE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863}
864
865#ifdef USE_PANEL_GROUP
866 static vimmenu_T *
Bram Moolenaar15d63192011-09-14 16:05:15 +0200867gui_ph_find_buffer_item(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868{
869 vimmenu_T *top_level = root_menu;
870 vimmenu_T *items = NULL;
871
Bram Moolenaar15d63192011-09-14 16:05:15 +0200872 while (top_level != NULL &&
873 (STRCMP(top_level->dname, "Buffers") != 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 top_level = top_level->next;
875
Bram Moolenaar15d63192011-09-14 16:05:15 +0200876 if (top_level != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 {
878 items = top_level->children;
879
Bram Moolenaar15d63192011-09-14 16:05:15 +0200880 while (items != NULL &&
881 (STRCMP(items->dname, name) != 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 items = items->next;
883 }
Bram Moolenaard2221132011-07-27 14:09:09 +0200884 return items;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885}
886
887 static void
Bram Moolenaar15d63192011-09-14 16:05:15 +0200888gui_ph_pg_set_buffer_num(int_u buf_num)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889{
890 int i;
891 char search[16];
892 char *mark;
893
Bram Moolenaar15d63192011-09-14 16:05:15 +0200894 if (gui.vimTextArea == NULL || buf_num == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 return;
896
897 search[0] = '(';
Bram Moolenaar15d63192011-09-14 16:05:15 +0200898 ultoa(buf_num, &search[1], 10);
899 STRCAT(search, ")");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900
Bram Moolenaar15d63192011-09-14 16:05:15 +0200901 for (i = 0; i < num_panels; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 {
903 /* find the last "(" in the panel title and see if the buffer
904 * number in the title matches the one we're looking for */
Bram Moolenaar15d63192011-09-14 16:05:15 +0200905 mark = STRRCHR(panel_titles[ i ], '(');
906 if (mark != NULL && STRCMP(mark, search) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 {
Bram Moolenaar15d63192011-09-14 16:05:15 +0200908 PtSetResource(gui.vimPanelGroup, Pt_ARG_PG_CURRENT_INDEX,
909 i, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 }
911 }
912}
913
914 static int
915gui_ph_handle_pg_change(
916 PtWidget_t *widget,
917 void *data,
Bram Moolenaar15d63192011-09-14 16:05:15 +0200918 PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919{
920 vimmenu_T *menu;
921 PtPanelGroupCallback_t *panel;
922
Bram Moolenaar15d63192011-09-14 16:05:15 +0200923 if (info->event != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 {
925 panel = info->cbdata;
Bram Moolenaar15d63192011-09-14 16:05:15 +0200926 if (panel->new_panel != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 {
Bram Moolenaar15d63192011-09-14 16:05:15 +0200928 menu = gui_ph_find_buffer_item(panel->new_panel);
929 if (menu)
930 gui_menu_cb(menu);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 }
932 }
Bram Moolenaard2221132011-07-27 14:09:09 +0200933 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934}
935
936 static void
937gui_ph_get_panelgroup_margins(
938 short *top,
939 short *bottom,
940 short *left,
Bram Moolenaar15d63192011-09-14 16:05:15 +0200941 short *right)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942{
943 unsigned short abs_raw_x, abs_raw_y, abs_panel_x, abs_panel_y;
944 const unsigned short *margin_top, *margin_bottom;
945 const unsigned short *margin_left, *margin_right;
946
Bram Moolenaar15d63192011-09-14 16:05:15 +0200947 PtGetAbsPosition(gui.vimTextArea, &abs_raw_x, &abs_raw_y);
948 PtGetAbsPosition(gui.vimPanelGroup, &abs_panel_x, &abs_panel_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949
Bram Moolenaar15d63192011-09-14 16:05:15 +0200950 PtGetResource(gui.vimPanelGroup, Pt_ARG_MARGIN_RIGHT, &margin_right, 0);
951 PtGetResource(gui.vimPanelGroup, Pt_ARG_MARGIN_BOTTOM, &margin_bottom, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952
953 abs_raw_x -= abs_panel_x;
954 abs_raw_y -= abs_panel_y;
955
956 *top = abs_raw_y;
957 *bottom = *margin_bottom;
958
959 *left = abs_raw_x;
960 *right = *margin_right;
961}
962
963/* Used for the tabs for PtPanelGroup */
964 static int
Bram Moolenaar15d63192011-09-14 16:05:15 +0200965gui_ph_is_buffer_item(vimmenu_T *menu, vimmenu_T *parent)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966{
967 char *mark;
968
Bram Moolenaar15d63192011-09-14 16:05:15 +0200969 if (STRCMP(parent->dname, "Buffers") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 {
971 /* Look for '(' digits ')' */
Bram Moolenaar15d63192011-09-14 16:05:15 +0200972 mark = vim_strchr(menu->dname, '(');
973 if (mark != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 {
975 mark++;
Bram Moolenaar15d63192011-09-14 16:05:15 +0200976 while (isdigit(*mark))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 mark++;
978
Bram Moolenaar15d63192011-09-14 16:05:15 +0200979 if (*mark == ')')
Bram Moolenaard2221132011-07-27 14:09:09 +0200980 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 }
982 }
Bram Moolenaard2221132011-07-27 14:09:09 +0200983 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984}
985
986 static void
Bram Moolenaar15d63192011-09-14 16:05:15 +0200987gui_ph_pg_add_buffer(char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988{
989 char **new_titles = NULL;
990
Bram Moolenaar15d63192011-09-14 16:05:15 +0200991 new_titles = (char **) alloc((num_panels + 1) * sizeof(char **));
992 if (new_titles != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 {
Bram Moolenaar15d63192011-09-14 16:05:15 +0200994 if (num_panels > 0)
995 memcpy(new_titles, panel_titles, num_panels * sizeof(char **));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996
997 new_titles[ num_panels++ ] = name;
998
Bram Moolenaar15d63192011-09-14 16:05:15 +0200999 PtSetResource(gui.vimPanelGroup, Pt_ARG_PG_PANEL_TITLES, new_titles,
1000 num_panels);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001
Bram Moolenaar15d63192011-09-14 16:05:15 +02001002 vim_free(panel_titles);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003 panel_titles = new_titles;
1004 }
1005}
1006
1007 static void
Bram Moolenaar15d63192011-09-14 16:05:15 +02001008gui_ph_pg_remove_buffer(char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009{
1010 int i;
1011 char **new_titles = NULL;
1012
1013 /* If there is only 1 panel, we just use the temporary place holder */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001014 if (num_panels > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001016 new_titles = (char **) alloc((num_panels - 1) * sizeof(char **));
1017 if (new_titles != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 {
1019 char **s = new_titles;
1020 /* Copy all the titles except the one we're removing */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001021 for (i = 0; i < num_panels; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001023 if (STRCMP(panel_titles[ i ], name) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 {
1025 *s++ = panel_titles[ i ];
1026 }
1027 }
1028 num_panels--;
1029
Bram Moolenaar15d63192011-09-14 16:05:15 +02001030 PtSetResource(gui.vimPanelGroup, Pt_ARG_PG_PANEL_TITLES, new_titles,
1031 num_panels);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032
Bram Moolenaar15d63192011-09-14 16:05:15 +02001033 vim_free(panel_titles);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 panel_titles = new_titles;
1035 }
1036 }
1037 else
1038 {
1039 num_panels--;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001040 PtSetResource(gui.vimPanelGroup, Pt_ARG_PG_PANEL_TITLES, &empty_title,
1041 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042
Bram Moolenaar15d63192011-09-14 16:05:15 +02001043 vim_free(panel_titles);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 panel_titles = NULL;
1045 }
1046}
1047
1048/* When a buffer item is deleted from the buffer menu */
1049 static int
1050gui_ph_handle_buffer_remove(
1051 PtWidget_t *widget,
1052 void *data,
Bram Moolenaar15d63192011-09-14 16:05:15 +02001053 PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054{
1055 vimmenu_T *menu;
1056
Bram Moolenaar15d63192011-09-14 16:05:15 +02001057 if (data != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 {
1059 menu = (vimmenu_T *) data;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001060 gui_ph_pg_remove_buffer(menu->dname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 }
1062
Bram Moolenaard2221132011-07-27 14:09:09 +02001063 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064}
1065#endif
1066
1067 static int
Bram Moolenaar15d63192011-09-14 16:05:15 +02001068gui_ph_pane_resize(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069{
Bram Moolenaar15d63192011-09-14 16:05:15 +02001070 if (PtWidgetIsRealized(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071 {
1072 is_ignore_draw = TRUE;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001073 PtStartFlux(gui.vimContainer);
1074 PtContainerHold(gui.vimContainer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 }
1076
Bram Moolenaard2221132011-07-27 14:09:09 +02001077 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078}
1079
1080/****************************************************************************/
1081
1082#ifdef FEAT_MBYTE
1083 void
Bram Moolenaar15d63192011-09-14 16:05:15 +02001084gui_ph_encoding_changed(int new_encoding)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085{
1086 /* Default encoding is latin1 */
1087 char *charset = "latin1";
1088 int i;
1089
1090 struct {
1091 int encoding;
1092 char *name;
1093 } charsets[] = {
1094 { DBCS_JPN, "SHIFT_JIS" },
1095 { DBCS_KOR, "csEUCKR" },
1096 { DBCS_CHT, "big5" },
1097 { DBCS_CHS, "gb" }
1098 };
1099
Bram Moolenaar15d63192011-09-14 16:05:15 +02001100 for (i = 0; i < ARRAY_LENGTH(charsets); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001102 if (new_encoding == charsets[ i ].encoding)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 charset = charsets[ i ].name;
1104 }
1105
Bram Moolenaar15d63192011-09-14 16:05:15 +02001106 charset_translate = PxTranslateSet(charset_translate, charset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107}
1108#endif
1109
1110/****************************************************************************/
1111/****************************************************************************/
1112
1113 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001114gui_mch_prepare(int *argc, char **argv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115{
Bram Moolenaar15d63192011-09-14 16:05:15 +02001116 PtInit(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117}
1118
1119 int
1120gui_mch_init(void)
1121{
1122 PtArg_t args[10];
1123 int flags = 0, n = 0;
1124
Bram Moolenaarccc18222007-05-10 18:25:20 +00001125 PhDim_t window_size = {100, 100}; /* Arbitrary values */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 PhPoint_t pos = {0, 0};
1127
Bram Moolenaar15d63192011-09-14 16:05:15 +02001128 gui.event_buffer = (PhEvent_t *) alloc(EVENT_BUFFER_SIZE);
1129 if (gui.event_buffer == NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02001130 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131
1132 /* Get a translation so we can convert from ISO Latin-1 to UTF */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001133 charset_translate = PxTranslateSet(NULL, "latin1");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134
1135 /* The +2 is for the 1 pixel dark line on each side */
1136 gui.border_offset = gui.border_width = GUI_PH_MARGIN + 2;
1137
1138 /* Handle close events ourselves */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001139 PtSetArg(&args[ n++ ], Pt_ARG_WINDOW_MANAGED_FLAGS, Pt_FALSE, Ph_WM_CLOSE);
1140 PtSetArg(&args[ n++ ], Pt_ARG_WINDOW_NOTIFY_FLAGS, Pt_TRUE,
1141 Ph_WM_CLOSE | Ph_WM_RESIZE | Ph_WM_FOCUS);
1142 PtSetArg(&args[ n++ ], Pt_ARG_DIM, &window_size, 0);
1143 gui.vimWindow = PtCreateWidget(PtWindow, NULL, n, args);
1144 if (gui.vimWindow == NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02001145 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146
Bram Moolenaar15d63192011-09-14 16:05:15 +02001147 PtAddCallback(gui.vimWindow, Pt_CB_WINDOW, gui_ph_handle_window_cb, NULL);
1148 PtAddCallback(gui.vimWindow, Pt_CB_WINDOW_OPENING,
1149 gui_ph_handle_window_open, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150
1151 n = 0;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001152 PtSetArg(&args[ n++ ], Pt_ARG_ANCHOR_FLAGS, Pt_ANCHOR_ALL, Pt_IS_ANCHORED);
1153 PtSetArg(&args[ n++ ], Pt_ARG_DIM, &window_size, 0);
1154 PtSetArg(&args[ n++ ], Pt_ARG_POS, &pos, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155
1156#ifdef USE_PANEL_GROUP
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001157 /* Put in a temporary place holder title */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001158 PtSetArg(&args[ n++ ], Pt_ARG_PG_PANEL_TITLES, &empty_title, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159
Bram Moolenaar15d63192011-09-14 16:05:15 +02001160 gui.vimPanelGroup = PtCreateWidget(PtPanelGroup, gui.vimWindow, n, args);
1161 if (gui.vimPanelGroup == NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02001162 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163
Bram Moolenaar15d63192011-09-14 16:05:15 +02001164 PtAddCallback(gui.vimPanelGroup, Pt_CB_PG_PANEL_SWITCHING,
1165 gui_ph_handle_pg_change, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166#else
1167 /* Turn off all edge decorations */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001168 PtSetArg(&args[ n++ ], Pt_ARG_BASIC_FLAGS, Pt_FALSE, Pt_ALL);
1169 PtSetArg(&args[ n++ ], Pt_ARG_BEVEL_WIDTH, 0, 0);
1170 PtSetArg(&args[ n++ ], Pt_ARG_MARGIN_WIDTH, 0, 0);
1171 PtSetArg(&args[ n++ ], Pt_ARG_MARGIN_HEIGHT, 0, 0);
1172 PtSetArg(&args[ n++ ], Pt_ARG_CONTAINER_FLAGS, Pt_TRUE, Pt_AUTO_EXTENT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173
Bram Moolenaar15d63192011-09-14 16:05:15 +02001174 gui.vimContainer = PtCreateWidget(PtPane, gui.vimWindow, n, args);
1175 if (gui.vimContainer == NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02001176 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177
Bram Moolenaar15d63192011-09-14 16:05:15 +02001178 PtAddCallback(gui.vimContainer, Pt_CB_RESIZE, gui_ph_pane_resize, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179#endif
1180
1181 /* Size for the text area is set in gui_mch_set_text_area_pos */
1182 n = 0;
1183
Bram Moolenaar15d63192011-09-14 16:05:15 +02001184 PtSetArg(&args[ n++ ], Pt_ARG_RAW_DRAW_F, gui_ph_handle_raw_draw, 1);
1185 PtSetArg(&args[ n++ ], Pt_ARG_BEVEL_WIDTH, GUI_PH_MARGIN, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 /*
1187 * Using focus render also causes the whole widget to be redrawn
1188 * whenever it changes focus, which is very annoying :p
1189 */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001190 PtSetArg(&args[ n++ ], Pt_ARG_FLAGS, Pt_TRUE,
1191 Pt_GETS_FOCUS | Pt_HIGHLIGHTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192#ifndef FEAT_MOUSESHAPE
Bram Moolenaar15d63192011-09-14 16:05:15 +02001193 PtSetArg(&args[ n++ ], Pt_ARG_CURSOR_TYPE, GUI_PH_MOUSE_TYPE, 0);
1194 PtSetArg(&args[ n++ ], Pt_ARG_CURSOR_COLOR, gui_ph_mouse_color, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195#endif
1196
Bram Moolenaar15d63192011-09-14 16:05:15 +02001197 gui.vimTextArea = PtCreateWidget(PtRaw, Pt_DFLT_PARENT, n, args);
1198 if (gui.vimTextArea == NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02001199 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200
1201 /* TODO: use PtAddEventHandlers instead? */
1202 /* Not using Ph_EV_BUT_REPEAT because vim wouldn't use it anyway */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001203 PtAddEventHandler(gui.vimTextArea,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 Ph_EV_BUT_PRESS | Ph_EV_BUT_RELEASE | Ph_EV_PTR_MOTION_BUTTON,
Bram Moolenaar15d63192011-09-14 16:05:15 +02001205 gui_ph_handle_mouse, NULL);
1206 PtAddEventHandler(gui.vimTextArea, Ph_EV_KEY,
1207 gui_ph_handle_keyboard, NULL);
1208 PtAddCallback(gui.vimTextArea, Pt_CB_GOT_FOCUS,
1209 gui_ph_handle_focus, NULL);
1210 PtAddCallback(gui.vimTextArea, Pt_CB_LOST_FOCUS,
1211 gui_ph_handle_focus, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212
1213 /*
1214 * Now that the text area widget has been created, set up the colours,
1215 * which wil call PtSetResource from gui_mch_new_colors
1216 */
1217
1218 /*
1219 * Create the two timers, not as accurate as using the kernel timer
1220 * functions, but good enough
1221 */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001222 gui_ph_timer_cursor = PtCreateWidget(PtTimer, gui.vimWindow, 0, NULL);
1223 if (gui_ph_timer_cursor == NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02001224 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225
Bram Moolenaar15d63192011-09-14 16:05:15 +02001226 gui_ph_timer_timeout = PtCreateWidget(PtTimer, gui.vimWindow, 0, NULL);
1227 if (gui_ph_timer_timeout == NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02001228 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229
Bram Moolenaar15d63192011-09-14 16:05:15 +02001230 PtAddCallback(gui_ph_timer_cursor, Pt_CB_TIMER_ACTIVATE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 gui_ph_handle_timer_cursor, NULL);
Bram Moolenaar15d63192011-09-14 16:05:15 +02001232 PtAddCallback(gui_ph_timer_timeout, Pt_CB_TIMER_ACTIVATE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 gui_ph_handle_timer_timeout, NULL);
1234
1235#ifdef FEAT_MENU
1236 n = 0;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001237 PtSetArg(&args[ n++ ], Pt_ARG_WIDTH, window_size.w, 0);
1238 PtSetArg(&args[ n++ ], Pt_ARG_ANCHOR_FLAGS, Pt_ANCHOR_LEFT_RIGHT,
1239 Pt_IS_ANCHORED);
1240 gui.vimToolBarGroup = PtCreateWidget(PtToolbarGroup, gui.vimWindow,
1241 n, args);
1242 if (gui.vimToolBarGroup == NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02001243 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244
Bram Moolenaar15d63192011-09-14 16:05:15 +02001245 PtAddCallback(gui.vimToolBarGroup, Pt_CB_RESIZE,
1246 gui_ph_handle_menu_resize, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247
1248 n = 0;
1249 flags = 0;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001250 PtSetArg(&args[ n++ ], Pt_ARG_WIDTH, window_size.w, 0);
1251 if (! vim_strchr(p_go, GO_MENUS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 {
1253 flags |= Pt_DELAY_REALIZE;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001254 PtSetArg(&args[ n++ ], Pt_ARG_FLAGS, Pt_TRUE, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 }
Bram Moolenaar15d63192011-09-14 16:05:15 +02001256 gui.vimMenuBar = PtCreateWidget(PtMenuBar, gui.vimToolBarGroup, n, args);
1257 if (gui.vimMenuBar == NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02001258 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259
1260# ifdef FEAT_TOOLBAR
1261 n = 0;
1262
Bram Moolenaar15d63192011-09-14 16:05:15 +02001263 PtSetArg(&args[ n++ ], Pt_ARG_ANCHOR_FLAGS,
1264 Pt_ANCHOR_LEFT_RIGHT |Pt_TOP_ANCHORED_TOP, Pt_IS_ANCHORED);
1265 PtSetArg(&args[ n++ ], Pt_ARG_RESIZE_FLAGS, Pt_TRUE,
1266 Pt_RESIZE_Y_AS_REQUIRED);
1267 PtSetArg(&args[ n++ ], Pt_ARG_WIDTH, window_size.w, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268
1269 flags = Pt_GETS_FOCUS;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001270 if (! vim_strchr(p_go, GO_TOOLBAR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 flags |= Pt_DELAY_REALIZE;
1272
Bram Moolenaar15d63192011-09-14 16:05:15 +02001273 PtSetArg(&args[ n++ ], Pt_ARG_FLAGS, Pt_DELAY_REALIZE, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274
Bram Moolenaar15d63192011-09-14 16:05:15 +02001275 gui.vimToolBar = PtCreateWidget(PtToolbar, gui.vimToolBarGroup, n, args);
1276 if (gui.vimToolBar == NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02001277 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278
1279 /*
1280 * Size for the toolbar is fetched in gui_mch_show_toolbar, after
1281 * the buttons have been added and the toolbar has resized it's height
1282 * for the buttons to fit
1283 */
1284# endif
1285
1286#endif
1287
Bram Moolenaard2221132011-07-27 14:09:09 +02001288 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289}
1290
1291 int
1292gui_mch_init_check(void)
1293{
Bram Moolenaard2221132011-07-27 14:09:09 +02001294 return (is_photon_available == TRUE) ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295}
1296
1297 int
1298gui_mch_open(void)
1299{
1300 gui.norm_pixel = Pg_BLACK;
1301 gui.back_pixel = Pg_WHITE;
1302
1303 set_normal_colors();
1304
1305 gui_check_colors();
1306 gui.def_norm_pixel = gui.norm_pixel;
1307 gui.def_back_pixel = gui.back_pixel;
1308
1309 highlight_gui_started();
1310
1311 if (gui_win_x != -1 && gui_win_y != -1)
1312 gui_mch_set_winpos(gui_win_x, gui_win_y);
1313
Bram Moolenaar15d63192011-09-14 16:05:15 +02001314 return (PtRealizeWidget(gui.vimWindow) == 0) ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315}
1316
1317 void
1318gui_mch_exit(int rc)
1319{
Bram Moolenaar15d63192011-09-14 16:05:15 +02001320 PtDestroyWidget(gui.vimWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321
Bram Moolenaar15d63192011-09-14 16:05:15 +02001322 PxTranslateSet(charset_translate, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323
Bram Moolenaar15d63192011-09-14 16:05:15 +02001324 vim_free(gui.event_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325
1326#ifdef USE_PANEL_GROUPS
Bram Moolenaar15d63192011-09-14 16:05:15 +02001327 vim_free(panel_titles);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328#endif
1329}
1330
1331/****************************************************************************/
1332/* events */
1333
1334/* When no events are available, photon will call this function, working is
1335 * set to FALSE, and the gui_mch_update loop will exit. */
1336 static int
Bram Moolenaar15d63192011-09-14 16:05:15 +02001337exit_gui_mch_update(void *data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338{
1339 *(int *)data = FALSE;
Bram Moolenaard2221132011-07-27 14:09:09 +02001340 return Pt_END;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341}
1342
1343 void
1344gui_mch_update(void)
1345{
1346 int working = TRUE;
1347
Bram Moolenaar15d63192011-09-14 16:05:15 +02001348 PtAppAddWorkProc(NULL, exit_gui_mch_update, &working);
1349 while ((working == TRUE) && !vim_is_input_buf_full())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 {
1351 PtProcessEvent();
1352 }
1353}
1354
1355 int
1356gui_mch_wait_for_chars(int wtime)
1357{
1358 is_timeout = FALSE;
1359
Bram Moolenaar15d63192011-09-14 16:05:15 +02001360 if (wtime > 0)
1361 PtSetResource(gui_ph_timer_timeout, Pt_ARG_TIMER_INITIAL, wtime, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362
Bram Moolenaar15d63192011-09-14 16:05:15 +02001363 while (1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 {
1365 PtProcessEvent();
Bram Moolenaar15d63192011-09-14 16:05:15 +02001366 if (input_available())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001368 PtSetResource(gui_ph_timer_timeout, Pt_ARG_TIMER_INITIAL, 0, 0);
Bram Moolenaard2221132011-07-27 14:09:09 +02001369 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 }
Bram Moolenaar15d63192011-09-14 16:05:15 +02001371 else if (is_timeout == TRUE)
Bram Moolenaard2221132011-07-27 14:09:09 +02001372 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 }
1374}
1375
Bram Moolenaar15d63192011-09-14 16:05:15 +02001376#if defined(FEAT_BROWSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377/*
1378 * Put up a file requester.
1379 * Returns the selected name in allocated memory, or NULL for Cancel.
1380 * saving, select file to write
1381 * title title for the window
1382 * default_name default name (well duh!)
1383 * ext not used (extension added)
1384 * initdir initial directory, NULL for current dir
1385 * filter not used (file name filter)
1386 */
1387 char_u *
1388gui_mch_browse(
1389 int saving,
1390 char_u *title,
1391 char_u *default_name,
1392 char_u *ext,
1393 char_u *initdir,
1394 char_u *filter)
1395{
1396 PtFileSelectionInfo_t file;
1397 int flags;
1398 char_u *default_path;
1399 char_u *open_text = NULL;
1400
1401 flags = 0;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001402 memset(&file, 0, sizeof(file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403
Bram Moolenaar15d63192011-09-14 16:05:15 +02001404 default_path = alloc(MAXPATHL + 1 + NAME_MAX + 1);
1405 if (default_path != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001407 if (saving == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408 {
1409 /* Don't need Pt_FSR_CONFIRM_EXISTING, vim will ask anyway */
1410 flags |= Pt_FSR_NO_FCHECK;
1411 open_text = "&Save";
1412 }
1413
1414 /* combine the directory and filename into a single path */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001415 if (initdir == NULL || *initdir == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001417 mch_dirname(default_path, MAXPATHL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 initdir = default_path;
1419 }
1420 else
1421 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001422 STRCPY(default_path, initdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 initdir = default_path;
1424 }
1425
Bram Moolenaar15d63192011-09-14 16:05:15 +02001426 if (default_name != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001428 if (default_path[ STRLEN(default_path) - 1 ] != '/')
1429 STRCAT(default_path, "/");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430
Bram Moolenaar15d63192011-09-14 16:05:15 +02001431 STRCAT(default_path, default_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 }
1433
1434 /* TODO: add a filter? */
1435 PtFileSelection(
1436 gui.vimWindow,
1437 NULL,
1438 title,
1439 default_path,
1440 NULL,
1441 open_text,
1442 NULL,
1443 NULL,
1444 &file,
Bram Moolenaar15d63192011-09-14 16:05:15 +02001445 flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446
Bram Moolenaar15d63192011-09-14 16:05:15 +02001447 vim_free(default_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448
Bram Moolenaar15d63192011-09-14 16:05:15 +02001449 if (file.ret == Pt_FSDIALOG_BTN1)
Bram Moolenaard2221132011-07-27 14:09:09 +02001450 return vim_strsave(file.path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 }
Bram Moolenaard2221132011-07-27 14:09:09 +02001452 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453}
1454#endif
1455
Bram Moolenaar15d63192011-09-14 16:05:15 +02001456#if defined(FEAT_GUI_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457static PtWidget_t *gui_ph_dialog_text = NULL;
1458
1459 static int
Bram Moolenaar15d63192011-09-14 16:05:15 +02001460gui_ph_dialog_close(int button, void *data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461{
1462 PtModalCtrl_t *modal_ctrl = data;
1463 char_u *dialog_text, *vim_text;
1464
Bram Moolenaar15d63192011-09-14 16:05:15 +02001465 if (gui_ph_dialog_text != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001467 PtGetResource(gui_ph_dialog_text, Pt_ARG_TEXT_STRING, &dialog_text, 0);
1468 PtGetResource(gui_ph_dialog_text, Pt_ARG_POINTER, &vim_text, 0);
1469 STRNCPY(vim_text, dialog_text, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 }
1471
Bram Moolenaar15d63192011-09-14 16:05:15 +02001472 PtModalUnblock(modal_ctrl, (void *) button);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473
Bram Moolenaard2221132011-07-27 14:09:09 +02001474 return Pt_TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475}
1476
1477 static int
Bram Moolenaar15d63192011-09-14 16:05:15 +02001478gui_ph_dialog_text_enter(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479{
Bram Moolenaar15d63192011-09-14 16:05:15 +02001480 if (info->reason_subtype == Pt_EDIT_ACTIVATE)
1481 gui_ph_dialog_close(1, data);
Bram Moolenaard2221132011-07-27 14:09:09 +02001482 return Pt_CONTINUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483}
1484
1485 static int
Bram Moolenaar15d63192011-09-14 16:05:15 +02001486gui_ph_dialog_esc(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487{
1488 PhKeyEvent_t *key;
1489
Bram Moolenaar15d63192011-09-14 16:05:15 +02001490 key = PhGetData(info->event);
1491 if ((key->key_flags & Pk_KF_Cap_Valid) && (key->key_cap == Pk_Escape))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001493 gui_ph_dialog_close(0, data);
Bram Moolenaard2221132011-07-27 14:09:09 +02001494 return Pt_CONSUME;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 }
Bram Moolenaard2221132011-07-27 14:09:09 +02001496 return Pt_PROCESS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497}
1498
1499 int
1500gui_mch_dialog(
1501 int type,
1502 char_u *title,
1503 char_u *message,
1504 char_u *buttons,
1505 int default_button,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01001506 char_u *textfield,
1507 int ex_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508{
1509 char_u *str;
1510 char_u **button_array;
1511 char_u *buttons_copy;
1512
1513 int button_count;
1514 int i, len;
1515 int dialog_result = -1;
1516
1517 /* FIXME: the vertical option in guioptions is blatantly ignored */
1518 /* FIXME: so is the type */
1519
1520 button_count = len = i = 0;
1521
Bram Moolenaar15d63192011-09-14 16:05:15 +02001522 if (buttons == NULL || *buttons == NUL)
Bram Moolenaard2221132011-07-27 14:09:09 +02001523 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524
1525 /* There is one less separator than buttons, so bump up the button count */
1526 button_count = 1;
1527
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001528 /* Count string length and number of separators */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001529 for (str = buttons; *str; str++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 {
1531 len++;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001532 if (*str == DLG_BUTTON_SEP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 button_count++;
1534 }
1535
Bram Moolenaar15d63192011-09-14 16:05:15 +02001536 if (title == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 title = "Vim";
1538
Bram Moolenaar15d63192011-09-14 16:05:15 +02001539 buttons_copy = alloc(len + 1);
1540 button_array = (char_u **) alloc(button_count * sizeof(char_u *));
1541 if (buttons_copy != NULL && button_array != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001543 STRCPY(buttons_copy, buttons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544
1545 /*
1546 * Convert DLG_BUTTON_SEP into NUL's and fill in
1547 * button_array with the pointer to each NUL terminated string
1548 */
1549 str = buttons_copy;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001550 for (i = 0; i < button_count; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 {
1552 button_array[ i ] = str;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001553 for (; *str; str++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001555 if (*str == DLG_BUTTON_SEP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 {
1557 *str++ = NUL;
1558 break;
1559 }
1560 }
1561 }
1562#ifndef FEAT_GUI_TEXTDIALOG
1563 dialog_result = PtAlert(
1564 gui.vimWindow, NULL,
1565 title,
1566 NULL,
1567 message, NULL,
1568 button_count, (const char **) button_array, NULL,
Bram Moolenaar15d63192011-09-14 16:05:15 +02001569 default_button, 0, Pt_MODAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570#else
1571 /* Writing the dialog ourselves lets us add extra features, like
1572 * trapping the escape key and returning 0 to vim */
1573 {
1574 int n;
1575 PtArg_t args[5];
1576 PtWidget_t *dialog, *pane;
1577 PtModalCtrl_t modal_ctrl;
1578 PtDialogInfo_t di;
1579
Bram Moolenaar15d63192011-09-14 16:05:15 +02001580 memset(&di, 0, sizeof(di));
1581 memset(&modal_ctrl, 0, sizeof(modal_ctrl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582
1583 n = 0;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001584 PtSetArg(&args[n++], Pt_ARG_GROUP_ROWS_COLS, 0, 0);
1585 PtSetArg(&args[n++], Pt_ARG_WIDTH, 350, 0);
1586 PtSetArg(&args[n++], Pt_ARG_GROUP_ORIENTATION,
1587 Pt_GROUP_VERTICAL, 0);
1588 PtSetArg(&args[n++], Pt_ARG_GROUP_FLAGS,
1589 Pt_TRUE, Pt_GROUP_NO_KEYS | Pt_GROUP_STRETCH_HORIZONTAL);
1590 PtSetArg(&args[n++], Pt_ARG_CONTAINER_FLAGS, Pt_FALSE, Pt_TRUE);
1591 pane = PtCreateWidget(PtGroup, NULL, n, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592
1593 n = 0;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001594 PtSetArg(&args[n++], Pt_ARG_TEXT_STRING, message, 0);
1595 PtCreateWidget(PtLabel, pane, n, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596
Bram Moolenaar15d63192011-09-14 16:05:15 +02001597 if (textfield != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 {
1599 n = 0;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001600 PtSetArg(&args[n++], Pt_ARG_MAX_LENGTH, IOSIZE - 1, 0);
1601 PtSetArg(&args[n++], Pt_ARG_TEXT_STRING, textfield, 0);
1602 PtSetArg(&args[n++], Pt_ARG_POINTER, textfield, 0);
1603 gui_ph_dialog_text = PtCreateWidget(PtText, pane, n, args);
1604 PtAddCallback(gui_ph_dialog_text, Pt_CB_ACTIVATE,
1605 gui_ph_dialog_text_enter, &modal_ctrl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 }
1607
1608 di.parent = gui.vimWindow;
1609 di.pane = pane;
1610 di.title = title;
1611 di.buttons = (const char **) button_array;
1612 di.nbtns = button_count;
1613 di.def_btn = default_button;
1614 /* This is just to give the dialog the close button.
1615 * We check for the Escape key ourselves and return 0 */
1616 di.esc_btn = button_count;
1617 di.callback = gui_ph_dialog_close;
1618 di.data = &modal_ctrl;
1619
Bram Moolenaar15d63192011-09-14 16:05:15 +02001620 dialog = PtCreateDialog(&di);
1621 PtAddFilterCallback(dialog, Ph_EV_KEY,
1622 gui_ph_dialog_esc, &modal_ctrl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623
Bram Moolenaar15d63192011-09-14 16:05:15 +02001624 if (gui_ph_dialog_text != NULL)
1625 PtGiveFocus(gui_ph_dialog_text, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626
1627 /* Open dialog, block the vim window and wait for the dialog to close */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001628 PtRealizeWidget(dialog);
1629 PtMakeModal(dialog, Ph_CURSOR_NOINPUT, Ph_CURSOR_DEFAULT_COLOR);
1630 dialog_result = (int) PtModalBlock(&modal_ctrl, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631
Bram Moolenaar15d63192011-09-14 16:05:15 +02001632 PtDestroyWidget(dialog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 gui_ph_dialog_text = NULL;
1634 }
1635#endif
1636 }
1637
Bram Moolenaar15d63192011-09-14 16:05:15 +02001638 vim_free(button_array);
1639 vim_free(buttons_copy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640
Bram Moolenaard2221132011-07-27 14:09:09 +02001641 return dialog_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642}
1643#endif
1644/****************************************************************************/
1645/* window size/position/state */
1646
1647 int
1648gui_mch_get_winpos(int *x, int *y)
1649{
1650 PhPoint_t *pos;
1651
Bram Moolenaar15d63192011-09-14 16:05:15 +02001652 pos = PtWidgetPos(gui.vimWindow, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653
1654 *x = pos->x;
1655 *y = pos->y;
1656
Bram Moolenaard2221132011-07-27 14:09:09 +02001657 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658}
1659
1660 void
1661gui_mch_set_winpos(int x, int y)
1662{
1663 PhPoint_t pos = { x, y };
1664
Bram Moolenaar15d63192011-09-14 16:05:15 +02001665 PtSetResource(gui.vimWindow, Pt_ARG_POS, &pos, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666}
1667
1668 void
1669gui_mch_set_shellsize(int width, int height,
Bram Moolenaarafa24992006-03-27 20:58:26 +00001670 int min_width, int min_height, int base_width, int base_height,
1671 int direction)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672{
1673 PhDim_t window_size = { width, height };
1674 PhDim_t min_size = { min_width, min_height };
1675
1676#ifdef USE_PANEL_GROUP
1677 window_size.w += pg_margin_left + pg_margin_right;
1678 window_size.h += pg_margin_top + pg_margin_bottom;
1679#endif
1680
Bram Moolenaar15d63192011-09-14 16:05:15 +02001681 PtSetResource(gui.vimWindow, Pt_ARG_MINIMUM_DIM, &min_size, 0);
1682 PtSetResource(gui.vimWindow, Pt_ARG_DIM, &window_size, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683
Bram Moolenaar15d63192011-09-14 16:05:15 +02001684 if (! PtWidgetIsRealized(gui.vimWindow))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 gui_ph_resize_container();
1686}
1687
1688/*
1689 * Return the amount of screen space that hasn't been allocated (such as
1690 * by the shelf).
1691 */
1692 void
1693gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
1694{
1695 PhRect_t console;
1696
Bram Moolenaar15d63192011-09-14 16:05:15 +02001697 PhWindowQueryVisible(Ph_QUERY_WORKSPACE, 0,
1698 PhInputGroup(NULL), &console);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699
1700 *screen_w = console.lr.x - console.ul.x + 1;
1701 *screen_h = console.lr.y - console.ul.y + 1;
1702}
1703
1704 void
1705gui_mch_iconify(void)
1706{
1707 PhWindowEvent_t event;
1708
Bram Moolenaar15d63192011-09-14 16:05:15 +02001709 memset(&event, 0, sizeof (event));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 event.event_f = Ph_WM_HIDE;
1711 event.event_state = Ph_WM_EVSTATE_HIDE;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001712 event.rid = PtWidgetRid(gui.vimWindow);
1713 PtForwardWindowEvent(&event);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714}
1715
1716#if defined(FEAT_EVAL) || defined(PROTO)
1717/*
1718 * Bring the Vim window to the foreground.
1719 */
1720 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001721gui_mch_set_foreground(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722{
1723 PhWindowEvent_t event;
1724
Bram Moolenaar15d63192011-09-14 16:05:15 +02001725 memset(&event, 0, sizeof (event));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 event.event_f = Ph_WM_TOFRONT;
1727 event.event_state = Ph_WM_EVSTATE_FFRONT;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001728 event.rid = PtWidgetRid(gui.vimWindow);
1729 PtForwardWindowEvent(&event);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730}
1731#endif
1732
1733 void
1734gui_mch_settitle(char_u *title, char_u *icon)
1735{
1736#ifdef USE_PANEL_GROUP
Bram Moolenaar15d63192011-09-14 16:05:15 +02001737 gui_ph_pg_set_buffer_num(curwin->w_buffer->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738#endif
Bram Moolenaar15d63192011-09-14 16:05:15 +02001739 PtSetResource(gui.vimWindow, Pt_ARG_WINDOW_TITLE, title, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 /* Not sure what to do with the icon text, set balloon text somehow? */
1741}
1742
1743/****************************************************************************/
1744/* Scrollbar */
1745
1746 void
1747gui_mch_set_scrollbar_thumb(scrollbar_T *sb, int val, int size, int max)
1748{
1749 int n = 0;
1750 PtArg_t args[3];
1751
Bram Moolenaar15d63192011-09-14 16:05:15 +02001752 PtSetArg(&args[ n++ ], Pt_ARG_MAXIMUM, max, 0);
1753 PtSetArg(&args[ n++ ], Pt_ARG_SLIDER_SIZE, size, 0);
1754 PtSetArg(&args[ n++ ], Pt_ARG_GAUGE_VALUE, val, 0);
1755 PtSetResources(sb->id, n, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756}
1757
1758 void
1759gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h)
1760{
1761 PhArea_t area = {{ x, y }, { w, h }};
1762
Bram Moolenaar15d63192011-09-14 16:05:15 +02001763 PtSetResource(sb->id, Pt_ARG_AREA, &area, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764}
1765
1766 void
1767gui_mch_create_scrollbar(scrollbar_T *sb, int orient)
1768{
1769 int n = 0;
1770/* int anchor_flags = 0;*/
1771 PtArg_t args[4];
1772
1773 /*
1774 * Stop the scrollbar from being realized when the parent
1775 * is realized, so it can be explicitly realized by vim.
1776 *
1777 * Also, don't let the scrollbar get focus
1778 */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001779 PtSetArg(&args[ n++ ], Pt_ARG_FLAGS, Pt_DELAY_REALIZE,
1780 Pt_DELAY_REALIZE | Pt_GETS_FOCUS);
1781 PtSetArg(&args[ n++ ], Pt_ARG_SCROLLBAR_FLAGS, Pt_SCROLLBAR_SHOW_ARROWS, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782#if 0
1783 /* Don't need this anchoring for the scrollbars */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001784 if (orient == SBAR_HORIZ)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 {
1786 anchor_flags = Pt_BOTTOM_ANCHORED_BOTTOM |
1787 Pt_LEFT_ANCHORED_LEFT | Pt_RIGHT_ANCHORED_RIGHT;
1788 }
1789 else
1790 {
1791 anchor_flags = Pt_BOTTOM_ANCHORED_BOTTOM | Pt_TOP_ANCHORED_TOP;
Bram Moolenaar15d63192011-09-14 16:05:15 +02001792 if (sb->wp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02001794 if (sb == &sb->wp->w_scrollbars[ SBAR_LEFT ])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 anchor_flags |= Pt_LEFT_ANCHORED_LEFT;
1796 else
1797 anchor_flags |= Pt_RIGHT_ANCHORED_RIGHT;
1798 }
1799 }
Bram Moolenaar15d63192011-09-14 16:05:15 +02001800 PtSetArg(&args[ n++ ], Pt_ARG_ANCHOR_FLAGS, anchor_flags, Pt_IS_ANCHORED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801#endif
Bram Moolenaar15d63192011-09-14 16:05:15 +02001802 PtSetArg(&args[ n++ ], Pt_ARG_ORIENTATION,
1803 (orient == SBAR_HORIZ) ? Pt_HORIZONTAL : Pt_VERTICAL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804#ifdef USE_PANEL_GROUP
Bram Moolenaar15d63192011-09-14 16:05:15 +02001805 sb->id = PtCreateWidget(PtScrollbar, gui.vimPanelGroup, n, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806#else
Bram Moolenaar15d63192011-09-14 16:05:15 +02001807 sb->id = PtCreateWidget(PtScrollbar, gui.vimContainer, n, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808#endif
1809
Bram Moolenaar15d63192011-09-14 16:05:15 +02001810 PtAddCallback(sb->id, Pt_CB_SCROLLBAR_MOVE, gui_ph_handle_scrollbar, sb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811}
1812
1813 void
1814gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
1815{
Bram Moolenaar15d63192011-09-14 16:05:15 +02001816 if (flag != 0)
1817 PtRealizeWidget(sb->id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 else
Bram Moolenaar15d63192011-09-14 16:05:15 +02001819 PtUnrealizeWidget(sb->id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820}
1821
1822 void
1823gui_mch_destroy_scrollbar(scrollbar_T *sb)
1824{
Bram Moolenaar15d63192011-09-14 16:05:15 +02001825 PtDestroyWidget(sb->id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 sb->id = NULL;
1827}
1828
1829/****************************************************************************/
1830/* Mouse functions */
1831
1832#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
1833/* The last set mouse pointer shape is remembered, to be used when it goes
1834 * from hidden to not hidden. */
1835static int last_shape = 0;
1836
1837/* Table for shape IDs. Keep in sync with the mshape_names[] table in
1838 * misc2.c! */
1839static int mshape_ids[] =
1840{
1841 Ph_CURSOR_POINTER, /* arrow */
1842 Ph_CURSOR_NONE, /* blank */
1843 Ph_CURSOR_INSERT, /* beam */
1844 Ph_CURSOR_DRAG_VERTICAL, /* updown */
1845 Ph_CURSOR_DRAG_VERTICAL, /* udsizing */
1846 Ph_CURSOR_DRAG_HORIZONTAL, /* leftright */
1847 Ph_CURSOR_DRAG_HORIZONTAL, /* lrsizing */
1848 Ph_CURSOR_WAIT, /* busy */
1849 Ph_CURSOR_DONT, /* no */
1850 Ph_CURSOR_CROSSHAIR, /* crosshair */
1851 Ph_CURSOR_FINGER, /* hand1 */
1852 Ph_CURSOR_FINGER, /* hand2 */
1853 Ph_CURSOR_FINGER, /* pencil */
1854 Ph_CURSOR_QUESTION_POINT, /* question */
1855 Ph_CURSOR_POINTER, /* right-arrow */
1856 Ph_CURSOR_POINTER, /* up-arrow */
1857 Ph_CURSOR_POINTER /* last one */
1858};
1859
1860 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001861mch_set_mouse_shape(int shape)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862{
1863 int id;
1864
1865 if (!gui.in_use)
1866 return;
1867
1868 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar15d63192011-09-14 16:05:15 +02001869 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_TYPE, Ph_CURSOR_NONE,
1870 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 else
1872 {
1873 if (shape >= MSHAPE_NUMBERED)
1874 id = Ph_CURSOR_POINTER;
1875 else
1876 id = mshape_ids[shape];
1877
Bram Moolenaar15d63192011-09-14 16:05:15 +02001878 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_TYPE, id, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 }
1880 if (shape != MSHAPE_HIDE)
1881 last_shape = shape;
1882}
1883#endif
1884
1885 void
1886gui_mch_mousehide(int hide)
1887{
Bram Moolenaar15d63192011-09-14 16:05:15 +02001888 if (gui.pointer_hidden != hide)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 {
1890 gui.pointer_hidden = hide;
1891#ifdef FEAT_MOUSESHAPE
Bram Moolenaar15d63192011-09-14 16:05:15 +02001892 if (hide)
1893 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_TYPE,
1894 Ph_CURSOR_NONE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 else
Bram Moolenaar15d63192011-09-14 16:05:15 +02001896 mch_set_mouse_shape(last_shape);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897#else
Bram Moolenaar15d63192011-09-14 16:05:15 +02001898 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_TYPE,
1899 (hide == MOUSE_SHOW) ? GUI_PH_MOUSE_TYPE : Ph_CURSOR_NONE,
1900 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901#endif
1902 }
1903}
1904
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001905 void
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00001906gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907{
1908 PhCursorInfo_t info;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00001909 short ix, iy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910
1911 /* FIXME: does this return the correct position,
1912 * with respect to the border? */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001913 PhQueryCursor(PhInputGroup(NULL), &info);
1914 PtGetAbsPosition(gui.vimTextArea , &ix, &iy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00001916 *x = info.pos.x - ix;
1917 *y = info.pos.y - iy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918}
1919
1920 void
1921gui_mch_setmouse(int x, int y)
1922{
1923 short abs_x, abs_y;
1924
Bram Moolenaar15d63192011-09-14 16:05:15 +02001925 PtGetAbsPosition(gui.vimTextArea, &abs_x, &abs_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 /* Add the border offset? */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001927 PhMoveCursorAbs(PhInputGroup(NULL), abs_x + x, abs_y + y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928}
1929
1930/****************************************************************************/
1931/* Colours */
1932
1933/*
1934 * Return the RGB value of a pixel as a long.
1935 */
1936 long_u
1937gui_mch_get_rgb(guicolor_T pixel)
1938{
1939 return PgRGB(PgRedValue(pixel), PgGreenValue(pixel), PgBlueValue(pixel));
1940}
1941
1942 void
1943gui_mch_new_colors(void)
1944{
1945#if 0 /* Don't bother changing the cursor colour */
1946 short color_diff;
1947
1948 /*
1949 * If there isn't enough difference between the background colour and
1950 * the mouse pointer colour then change the mouse pointer colour
1951 */
1952 color_diff = gui_get_lightness(gui_ph_mouse_color)
1953 - gui_get_lightness(gui.back_pixel);
1954
Bram Moolenaar15d63192011-09-14 16:05:15 +02001955 if (abs(color_diff) < 64)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 {
1957 short r, g, b;
1958 /* not a great algorithm... */
Bram Moolenaar15d63192011-09-14 16:05:15 +02001959 r = PgRedValue(gui_ph_mouse_color) ^ 255;
1960 g = PgGreenValue(gui_ph_mouse_color) ^ 255;
1961 b = PgBlueValue(gui_ph_mouse_color) ^ 255;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962
1963#ifndef FEAT_MOUSESHAPE
Bram Moolenaar15d63192011-09-14 16:05:15 +02001964 gui_ph_mouse_color = PgRGB(r, g, b);
1965 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_COLOR,
1966 gui_ph_mouse_color, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967#endif
1968 }
1969#endif
1970
Bram Moolenaar15d63192011-09-14 16:05:15 +02001971 PtSetResource(gui.vimTextArea, Pt_ARG_FILL_COLOR, gui.back_pixel, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972}
1973
1974 static int
1975hex_digit(int c)
1976{
1977 if (VIM_ISDIGIT(c))
Bram Moolenaard2221132011-07-27 14:09:09 +02001978 return c - '0';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 c = TOLOWER_ASC(c);
1980 if (c >= 'a' && c <= 'f')
Bram Moolenaard2221132011-07-27 14:09:09 +02001981 return c - 'a' + 10;
1982 return -1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983}
1984
1985
1986/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00001987 * This should be split out into a separate file,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 * every port does basically the same thing.
1989 *
1990 * This is the gui_w32.c version (i think..)
1991 * Return INVALCOLOR when failed.
1992 */
1993
1994 guicolor_T
1995gui_mch_get_color(char_u *name)
1996{
1997 int i;
1998 int r, g, b;
1999
2000
2001 typedef struct GuiColourTable
2002 {
2003 char *name;
2004 guicolor_T colour;
2005 } GuiColourTable;
2006
2007 static GuiColourTable table[] =
2008 {
2009 {"Black", RGB(0x00, 0x00, 0x00)},
Bram Moolenaar092e3c82011-09-07 18:58:29 +02002010 {"DarkGray", RGB(0xA9, 0xA9, 0xA9)},
2011 {"DarkGrey", RGB(0xA9, 0xA9, 0xA9)},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 {"Gray", RGB(0xC0, 0xC0, 0xC0)},
2013 {"Grey", RGB(0xC0, 0xC0, 0xC0)},
2014 {"LightGray", RGB(0xD3, 0xD3, 0xD3)},
2015 {"LightGrey", RGB(0xD3, 0xD3, 0xD3)},
Bram Moolenaarb21e5842006-04-16 18:30:08 +00002016 {"Gray10", RGB(0x1A, 0x1A, 0x1A)},
2017 {"Grey10", RGB(0x1A, 0x1A, 0x1A)},
2018 {"Gray20", RGB(0x33, 0x33, 0x33)},
2019 {"Grey20", RGB(0x33, 0x33, 0x33)},
2020 {"Gray30", RGB(0x4D, 0x4D, 0x4D)},
2021 {"Grey30", RGB(0x4D, 0x4D, 0x4D)},
2022 {"Gray40", RGB(0x66, 0x66, 0x66)},
2023 {"Grey40", RGB(0x66, 0x66, 0x66)},
2024 {"Gray50", RGB(0x7F, 0x7F, 0x7F)},
2025 {"Grey50", RGB(0x7F, 0x7F, 0x7F)},
2026 {"Gray60", RGB(0x99, 0x99, 0x99)},
2027 {"Grey60", RGB(0x99, 0x99, 0x99)},
2028 {"Gray70", RGB(0xB3, 0xB3, 0xB3)},
2029 {"Grey70", RGB(0xB3, 0xB3, 0xB3)},
2030 {"Gray80", RGB(0xCC, 0xCC, 0xCC)},
2031 {"Grey80", RGB(0xCC, 0xCC, 0xCC)},
Bram Moolenaare2f98b92006-03-29 21:18:24 +00002032 {"Gray90", RGB(0xE5, 0xE5, 0xE5)},
2033 {"Grey90", RGB(0xE5, 0xE5, 0xE5)},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 {"White", RGB(0xFF, 0xFF, 0xFF)},
2035 {"DarkRed", RGB(0x80, 0x00, 0x00)},
2036 {"Red", RGB(0xFF, 0x00, 0x00)},
2037 {"LightRed", RGB(0xFF, 0xA0, 0xA0)},
2038 {"DarkBlue", RGB(0x00, 0x00, 0x80)},
2039 {"Blue", RGB(0x00, 0x00, 0xFF)},
Bram Moolenaar092e3c82011-09-07 18:58:29 +02002040 {"LightBlue", RGB(0xAD, 0xD8, 0xE6)},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 {"DarkGreen", RGB(0x00, 0x80, 0x00)},
2042 {"Green", RGB(0x00, 0xFF, 0x00)},
Bram Moolenaar092e3c82011-09-07 18:58:29 +02002043 {"LightGreen", RGB(0x90, 0xEE, 0x90)},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 {"DarkCyan", RGB(0x00, 0x80, 0x80)},
2045 {"Cyan", RGB(0x00, 0xFF, 0xFF)},
Bram Moolenaar092e3c82011-09-07 18:58:29 +02002046 {"LightCyan", RGB(0xE0, 0xFF, 0xFF)},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 {"DarkMagenta", RGB(0x80, 0x00, 0x80)},
2048 {"Magenta", RGB(0xFF, 0x00, 0xFF)},
2049 {"LightMagenta", RGB(0xFF, 0xA0, 0xFF)},
2050 {"Brown", RGB(0x80, 0x40, 0x40)},
2051 {"Yellow", RGB(0xFF, 0xFF, 0x00)},
Bram Moolenaar092e3c82011-09-07 18:58:29 +02002052 {"LightYellow", RGB(0xFF, 0xFF, 0xE0)},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 {"SeaGreen", RGB(0x2E, 0x8B, 0x57)},
2054 {"Orange", RGB(0xFF, 0xA5, 0x00)},
2055 {"Purple", RGB(0xA0, 0x20, 0xF0)},
2056 {"SlateBlue", RGB(0x6A, 0x5A, 0xCD)},
2057 {"Violet", RGB(0xEE, 0x82, 0xEE)},
2058 };
2059
2060 /* is name #rrggbb format? */
Bram Moolenaar15d63192011-09-14 16:05:15 +02002061 if (name[0] == '#' && STRLEN(name) == 7)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002063 r = hex_digit(name[1]) * 16 + hex_digit(name[2]);
2064 g = hex_digit(name[3]) * 16 + hex_digit(name[4]);
2065 b = hex_digit(name[5]) * 16 + hex_digit(name[6]);
2066 if (r < 0 || g < 0 || b < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 return INVALCOLOR;
Bram Moolenaard2221132011-07-27 14:09:09 +02002068 return RGB(r, g, b);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 }
2070
Bram Moolenaar15d63192011-09-14 16:05:15 +02002071 for (i = 0; i < ARRAY_LENGTH(table); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002073 if (STRICMP(name, table[i].name) == 0)
Bram Moolenaard2221132011-07-27 14:09:09 +02002074 return table[i].colour;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 }
2076
2077 /*
2078 * Last attempt. Look in the file "$VIMRUNTIME/rgb.txt".
2079 */
2080 {
2081#define LINE_LEN 100
2082 FILE *fd;
2083 char line[LINE_LEN];
2084 char_u *fname;
2085
2086 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt");
2087 if (fname == NULL)
2088 return INVALCOLOR;
2089
2090 fd = fopen((char *)fname, "rt");
2091 vim_free(fname);
2092 if (fd == NULL)
2093 return INVALCOLOR;
2094
2095 while (!feof(fd))
2096 {
2097 int len;
2098 int pos;
2099 char *color;
2100
2101 fgets(line, LINE_LEN, fd);
2102 len = STRLEN(line);
2103
2104 if (len <= 1 || line[len-1] != '\n')
2105 continue;
2106
2107 line[len-1] = '\0';
2108
2109 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos);
2110 if (i != 3)
2111 continue;
2112
2113 color = line + pos;
2114
2115 if (STRICMP(color, name) == 0)
2116 {
2117 fclose(fd);
Bram Moolenaard2221132011-07-27 14:09:09 +02002118 return (guicolor_T)RGB(r, g, b);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 }
2120 }
2121
2122 fclose(fd);
2123 }
2124
2125
2126 return INVALCOLOR;
2127}
2128
2129 void
2130gui_mch_set_fg_color(guicolor_T color)
2131{
Bram Moolenaar15d63192011-09-14 16:05:15 +02002132 PgSetTextColor(color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133}
2134
2135 void
2136gui_mch_set_bg_color(guicolor_T color)
2137{
Bram Moolenaar15d63192011-09-14 16:05:15 +02002138 PgSetFillColor(color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139}
2140
2141 void
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002142gui_mch_set_sp_color(guicolor_T color)
2143{
2144}
2145
2146 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147gui_mch_invert_rectangle(int row, int col, int nr, int nc)
2148{
2149 PhRect_t rect;
2150
Bram Moolenaar15d63192011-09-14 16:05:15 +02002151 rect.ul.x = FILL_X(col);
2152 rect.ul.y = FILL_Y(row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153
2154 /* FIXME: This has an off by one pixel problem */
2155 rect.lr.x = rect.ul.x + nc * gui.char_width;
2156 rect.lr.y = rect.ul.y + nr * gui.char_height;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002157 if (nc > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 rect.lr.x -= 1;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002159 if (nr > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 rect.lr.y -= 1;
2161
2162 DRAW_START;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002163 PgSetDrawMode(Pg_DrawModeDSTINVERT);
2164 PgDrawRect(&rect, Pg_DRAW_FILL);
2165 PgSetDrawMode(Pg_DrawModeSRCCOPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 DRAW_END;
2167}
2168
2169 void
2170gui_mch_clear_block(int row1, int col1, int row2, int col2)
2171{
2172 PhRect_t block = {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002173 { FILL_X(col1), FILL_Y(row1) },
2174 { FILL_X(col2 + 1) - 1, FILL_Y(row2 + 1) - 1}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 };
2176
2177 DRAW_START;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002178 gui_mch_set_bg_color(gui.back_pixel);
2179 PgDrawRect(&block, Pg_DRAW_FILL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 DRAW_END;
2181}
2182
2183 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002184gui_mch_clear_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185{
2186 PhRect_t text_rect = {
2187 { gui.border_width, gui.border_width },
2188 { Columns * gui.char_width + gui.border_width - 1 ,
2189 Rows * gui.char_height + gui.border_width - 1 }
2190 };
2191
Bram Moolenaar15d63192011-09-14 16:05:15 +02002192 if (is_ignore_draw == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 return;
2194
2195 DRAW_START;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002196 gui_mch_set_bg_color(gui.back_pixel);
2197 PgDrawRect(&text_rect, Pg_DRAW_FILL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 DRAW_END;
2199}
2200
2201 void
2202gui_mch_delete_lines(int row, int num_lines)
2203{
2204 PhRect_t rect;
2205 PhPoint_t delta;
2206
Bram Moolenaar15d63192011-09-14 16:05:15 +02002207 rect.ul.x = FILL_X(gui.scroll_region_left);
2208 rect.ul.y = FILL_Y(row + num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209
Bram Moolenaar15d63192011-09-14 16:05:15 +02002210 rect.lr.x = FILL_X(gui.scroll_region_right + 1) - 1;
2211 rect.lr.y = FILL_Y(gui.scroll_region_bot + 1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212
Bram Moolenaar15d63192011-09-14 16:05:15 +02002213 PtWidgetOffset(gui.vimTextArea, &gui_ph_raw_offset);
2214 PhTranslatePoint(&gui_ph_raw_offset, PtWidgetPos(gui.vimTextArea, NULL));
2215 PhTranslateRect(&rect, &gui_ph_raw_offset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216
2217 delta.x = 0;
2218 delta.y = -num_lines * gui.char_height;
2219
2220 PgFlush();
2221
Bram Moolenaar15d63192011-09-14 16:05:15 +02002222 PhBlit(PtWidgetRid(PtFindDisjoint(gui.vimTextArea)), &rect, &delta);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223
2224 gui_clear_block(
2225 gui.scroll_region_bot - num_lines + 1,
2226 gui.scroll_region_left,
2227 gui.scroll_region_bot,
Bram Moolenaar15d63192011-09-14 16:05:15 +02002228 gui.scroll_region_right);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229}
2230
2231 void
2232gui_mch_insert_lines(int row, int num_lines)
2233{
2234 PhRect_t rect;
2235 PhPoint_t delta;
2236
Bram Moolenaar15d63192011-09-14 16:05:15 +02002237 rect.ul.x = FILL_X(gui.scroll_region_left);
2238 rect.ul.y = FILL_Y(row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239
Bram Moolenaar15d63192011-09-14 16:05:15 +02002240 rect.lr.x = FILL_X(gui.scroll_region_right + 1) - 1;
2241 rect.lr.y = FILL_Y(gui.scroll_region_bot - num_lines + 1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242
Bram Moolenaar15d63192011-09-14 16:05:15 +02002243 PtWidgetOffset(gui.vimTextArea, &gui_ph_raw_offset);
2244 PhTranslatePoint(&gui_ph_raw_offset, PtWidgetPos(gui.vimTextArea, NULL));
2245 PhTranslateRect(&rect, &gui_ph_raw_offset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246
2247 delta.x = 0;
2248 delta.y = num_lines * gui.char_height;
2249
2250 PgFlush();
2251
Bram Moolenaar15d63192011-09-14 16:05:15 +02002252 PhBlit(PtWidgetRid(PtFindDisjoint(gui.vimTextArea)) , &rect, &delta);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253
Bram Moolenaar15d63192011-09-14 16:05:15 +02002254 gui_clear_block(row, gui.scroll_region_left,
2255 row + num_lines - 1, gui.scroll_region_right);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256}
2257
2258 void
2259gui_mch_draw_string(int row, int col, char_u *s, int len, int flags)
2260{
2261 static char *utf8_buffer = NULL;
2262 static int utf8_len = 0;
2263
Bram Moolenaar15d63192011-09-14 16:05:15 +02002264 PhPoint_t pos = { TEXT_X(col), TEXT_Y(row) };
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 PhRect_t rect;
2266
Bram Moolenaar15d63192011-09-14 16:05:15 +02002267 if (is_ignore_draw == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 return;
2269
2270 DRAW_START;
2271
Bram Moolenaar15d63192011-09-14 16:05:15 +02002272 if (!(flags & DRAW_TRANSP))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 {
2274 PgDrawIRect(
Bram Moolenaar15d63192011-09-14 16:05:15 +02002275 FILL_X(col), FILL_Y(row),
2276 FILL_X(col + len) - 1, FILL_Y(row + 1) - 1,
2277 Pg_DRAW_FILL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 }
2279
Bram Moolenaar15d63192011-09-14 16:05:15 +02002280 if (flags & DRAW_UNDERL)
2281 PgSetUnderline(gui.norm_pixel, Pg_TRANSPARENT, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282
Bram Moolenaar15d63192011-09-14 16:05:15 +02002283 if (charset_translate != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284#ifdef FEAT_MBYTE
2285 && enc_utf8 == 0
2286#endif
Bram Moolenaar15d63192011-09-14 16:05:15 +02002287 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 {
2289 int src_taken, dst_made;
2290
2291 /* Use a static buffer to avoid large amounts of de/allocations */
Bram Moolenaar15d63192011-09-14 16:05:15 +02002292 if (utf8_len < len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002294 utf8_buffer = realloc(utf8_buffer, len * MB_LEN_MAX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 utf8_len = len;
2296 }
2297
2298 PxTranslateToUTF(
2299 charset_translate,
2300 s,
2301 len,
2302 &src_taken,
2303 utf8_buffer,
2304 utf8_len,
Bram Moolenaar15d63192011-09-14 16:05:15 +02002305 &dst_made);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 s = utf8_buffer;
2307 len = dst_made;
2308 }
2309
Bram Moolenaar15d63192011-09-14 16:05:15 +02002310 PgDrawText(s, len, &pos, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311
Bram Moolenaar15d63192011-09-14 16:05:15 +02002312 if (flags & DRAW_BOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 {
2314 /* FIXME: try and only calculate these values once... */
Bram Moolenaar15d63192011-09-14 16:05:15 +02002315 rect.ul.x = FILL_X(col) + 1;
2316 rect.ul.y = FILL_Y(row);
2317 rect.lr.x = FILL_X(col + len) - 1;
2318 rect.lr.y = FILL_Y(row + 1) - 1;
2319 /* PgSetUserClip(NULL) causes the scrollbar to not redraw... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320#if 0
2321 pos.x++;
2322
Bram Moolenaar15d63192011-09-14 16:05:15 +02002323 PgSetUserClip(&rect);
2324 PgDrawText(s, len, &pos, 0);
2325 PgSetUserClip(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326#else
Bram Moolenaar15d63192011-09-14 16:05:15 +02002327 rect.lr.y -= (p_linespace + 1) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 /* XXX: DrawTextArea doesn't work with phditto */
Bram Moolenaar15d63192011-09-14 16:05:15 +02002329 PgDrawTextArea(s, len, &rect, Pg_TEXT_BOTTOM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330#endif
2331 }
2332
Bram Moolenaar15d63192011-09-14 16:05:15 +02002333 if (flags & DRAW_UNDERL)
2334 PgSetUnderline(Pg_TRANSPARENT, Pg_TRANSPARENT, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335
2336 DRAW_END;
2337}
2338
2339/****************************************************************************/
2340/* Cursor */
2341
2342 void
2343gui_mch_draw_hollow_cursor(guicolor_T color)
2344{
2345 PhRect_t r;
2346
2347 /* FIXME: Double width characters */
2348
Bram Moolenaar15d63192011-09-14 16:05:15 +02002349 r.ul.x = FILL_X(gui.col);
2350 r.ul.y = FILL_Y(gui.row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 r.lr.x = r.ul.x + gui.char_width - 1;
2352 r.lr.y = r.ul.y + gui.char_height - 1;
2353
2354 DRAW_START;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002355 PgSetStrokeColor(color);
2356 PgDrawRect(&r, Pg_DRAW_STROKE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 DRAW_END;
2358}
2359
2360 void
2361gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
2362{
2363 PhRect_t r;
2364
Bram Moolenaar15d63192011-09-14 16:05:15 +02002365 r.ul.x = FILL_X(gui.col);
2366 r.ul.y = FILL_Y(gui.row) + gui.char_height - h;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 r.lr.x = r.ul.x + w - 1;
2368 r.lr.y = r.ul.y + h - 1;
2369
2370 DRAW_START;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002371 gui_mch_set_bg_color(color);
2372 PgDrawRect(&r, Pg_DRAW_FILL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 DRAW_END;
2374}
2375
2376 void
2377gui_mch_set_blinking(long wait, long on, long off)
2378{
2379 blink_waittime = wait;
2380 blink_ontime = on;
2381 blink_offtime = off;
2382}
2383
2384 void
2385gui_mch_start_blink(void)
2386{
2387 /* Only turn on the timer on if none of the times are zero */
Bram Moolenaar15d63192011-09-14 16:05:15 +02002388 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002390 PtSetResource(gui_ph_timer_cursor, Pt_ARG_TIMER_INITIAL,
2391 blink_waittime, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 blink_state = BLINK_ON;
2393 gui_update_cursor(TRUE, FALSE);
2394 }
2395}
2396
2397 void
2398gui_mch_stop_blink(void)
2399{
Bram Moolenaar15d63192011-09-14 16:05:15 +02002400 PtSetResource(gui_ph_timer_cursor, Pt_ARG_TIMER_INITIAL, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401
Bram Moolenaar15d63192011-09-14 16:05:15 +02002402 if (blink_state == BLINK_OFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 gui_update_cursor(TRUE, FALSE);
2404
2405 blink_state = BLINK_NONE;
2406}
2407
2408/****************************************************************************/
2409/* miscellaneous functions */
2410
2411 void
2412gui_mch_beep(void)
2413{
2414 PtBeep();
2415}
2416
2417 void
2418gui_mch_flash(int msec)
2419{
Bram Moolenaar15d63192011-09-14 16:05:15 +02002420 PgSetFillXORColor(Pg_BLACK, Pg_WHITE);
2421 PgSetDrawMode(Pg_DRAWMODE_XOR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 gui_mch_clear_all();
2423 gui_mch_flush();
2424
Bram Moolenaar15d63192011-09-14 16:05:15 +02002425 ui_delay((long) msec, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426
2427 gui_mch_clear_all();
Bram Moolenaar15d63192011-09-14 16:05:15 +02002428 PgSetDrawMode(Pg_DRAWMODE_OPAQUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 gui_mch_flush();
2430}
2431
2432 void
2433gui_mch_flush(void)
2434{
2435 PgFlush();
2436}
2437
2438 void
2439gui_mch_set_text_area_pos(int x, int y, int w, int h)
2440{
2441 PhArea_t area = {{x, y}, {w, h}};
2442
Bram Moolenaar15d63192011-09-14 16:05:15 +02002443 PtSetResource(gui.vimTextArea, Pt_ARG_AREA, &area, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444}
2445
2446 int
2447gui_mch_haskey(char_u *name)
2448{
2449 int i;
2450
2451 for (i = 0; special_keys[i].key_sym != 0; i++)
2452 if (name[0] == special_keys[i].vim_code0 &&
2453 name[1] == special_keys[i].vim_code1)
Bram Moolenaard2221132011-07-27 14:09:09 +02002454 return OK;
2455 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456}
2457
2458/****************************************************************************/
2459/* Menu */
2460
2461#ifdef FEAT_TOOLBAR
2462#include "toolbar.phi"
2463
2464static PhImage_t *gui_ph_toolbar_images[] = {
2465 &tb_new_phi,
2466 &tb_open_phi,
2467 &tb_save_phi,
2468 &tb_undo_phi,
2469 &tb_redo_phi,
2470 &tb_cut_phi,
2471 &tb_copy_phi,
2472 &tb_paste_phi,
2473 &tb_print_phi,
2474 &tb_help_phi,
2475 &tb_find_phi,
2476 &tb_save_all_phi,
2477 &tb_save_session_phi,
2478 &tb_new_session_phi,
2479 &tb_load_session_phi,
2480 &tb_macro_phi,
2481 &tb_replace_phi,
2482 &tb_close_phi,
2483 &tb_maximize_phi,
2484 &tb_minimize_phi,
2485 &tb_split_phi,
2486 &tb_shell_phi,
2487 &tb_find_prev_phi,
2488 &tb_find_next_phi,
2489 &tb_find_help_phi,
2490 &tb_make_phi,
2491 &tb_jump_phi,
2492 &tb_ctags_phi,
2493 &tb_vsplit_phi,
2494 &tb_maxwidth_phi,
2495 &tb_minwidth_phi
2496};
2497
2498static PhImage_t *
Bram Moolenaar15d63192011-09-14 16:05:15 +02002499gui_ph_toolbar_load_icon(char_u *iconfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500{
2501 static PhImage_t external_icon;
2502 PhImage_t *temp_phi = NULL;
2503
Bram Moolenaar15d63192011-09-14 16:05:15 +02002504 temp_phi = PxLoadImage(iconfile, NULL);
2505 if (temp_phi != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 {
2507 /* The label widget will free the image/palette/etc. for us when
2508 * it's destroyed */
2509 temp_phi->flags |= Ph_RELEASE_IMAGE_ALL;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002510 memcpy(&external_icon, temp_phi, sizeof(external_icon));
2511 free(temp_phi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512
2513 temp_phi = &external_icon;
2514 }
Bram Moolenaard2221132011-07-27 14:09:09 +02002515 return temp_phi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516}
2517
2518/*
2519 * This returns either a builtin icon image, an external image or NULL
2520 * if it can't find either. The caller can't and doesn't need to try and
2521 * free() the returned image, and it can't store the image pointer.
2522 * (When setting the Pt_ARG_LABEL_IMAGE resource, the contents of the
2523 * PhImage_t are copied, and the original PhImage_t aren't needed anymore).
2524 */
2525static PhImage_t *
Bram Moolenaar15d63192011-09-14 16:05:15 +02002526gui_ph_toolbar_find_icon(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527{
2528 char_u full_pathname[ MAXPATHL + 1 ];
2529 PhImage_t *icon = NULL;
2530
Bram Moolenaar15d63192011-09-14 16:05:15 +02002531 if (menu->icon_builtin == FALSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002533 if (menu->iconfile != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534 /* TODO: use gui_find_iconfile() */
Bram Moolenaar15d63192011-09-14 16:05:15 +02002535 icon = gui_ph_toolbar_load_icon(menu->iconfile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536
2537 /* TODO: Restrict loading to just .png? Search for any format? */
Bram Moolenaar15d63192011-09-14 16:05:15 +02002538 if ((icon == NULL) &&
2539 ((gui_find_bitmap(menu->name, full_pathname, "gif") == OK) ||
2540 (gui_find_bitmap(menu->name, full_pathname, "png") == OK)))
2541 icon = gui_ph_toolbar_load_icon(full_pathname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542
Bram Moolenaar15d63192011-09-14 16:05:15 +02002543 if (icon != NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02002544 return icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 }
2546
Bram Moolenaar15d63192011-09-14 16:05:15 +02002547 if (menu->iconidx >= 0 &&
2548 (menu->iconidx < ARRAY_LENGTH(gui_ph_toolbar_images)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 {
Bram Moolenaard2221132011-07-27 14:09:09 +02002550 return gui_ph_toolbar_images[menu->iconidx];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 }
2552
Bram Moolenaard2221132011-07-27 14:09:09 +02002553 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554}
2555#endif
2556
Bram Moolenaar15d63192011-09-14 16:05:15 +02002557#if defined(FEAT_MENU) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 void
2559gui_mch_enable_menu(int flag)
2560{
Bram Moolenaar15d63192011-09-14 16:05:15 +02002561 if (flag != 0)
2562 PtRealizeWidget(gui.vimMenuBar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 else
Bram Moolenaar15d63192011-09-14 16:05:15 +02002564 PtUnrealizeWidget(gui.vimMenuBar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565}
2566
2567 void
2568gui_mch_set_menu_pos(int x, int y, int w, int h)
2569{
2570 /* Nothing */
2571}
2572
2573/* Change the position of a menu button in the parent */
2574 static void
Bram Moolenaar15d63192011-09-14 16:05:15 +02002575gui_ph_position_menu(PtWidget_t *widget, int priority)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576{
2577 PtWidget_t *traverse;
2578 vimmenu_T *menu;
2579
Bram Moolenaar15d63192011-09-14 16:05:15 +02002580 traverse = PtWidgetChildBack(PtWidgetParent(widget));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581
2582 /* Iterate through the list of widgets in traverse, until
2583 * we find the position we want to insert our widget into */
2584 /* TODO: traverse from front to back, possible speedup? */
Bram Moolenaar15d63192011-09-14 16:05:15 +02002585 while (traverse != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002587 PtGetResource(traverse, Pt_ARG_POINTER, &menu, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588
Bram Moolenaar15d63192011-09-14 16:05:15 +02002589 if (menu != NULL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 priority < menu->priority &&
Bram Moolenaar15d63192011-09-14 16:05:15 +02002591 widget != traverse)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 {
2593 /* Insert the widget before the current traverse widget */
Bram Moolenaar15d63192011-09-14 16:05:15 +02002594 PtWidgetInsert(widget, traverse, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 return;
2596 }
2597
Bram Moolenaar15d63192011-09-14 16:05:15 +02002598 traverse = PtWidgetBrotherInFront(traverse);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 }
2600}
2601
2602/* the index is ignored because it's not useful for our purposes */
2603 void
2604gui_mch_add_menu(vimmenu_T *menu, int index)
2605{
2606 vimmenu_T *parent = menu->parent;
2607 char_u *accel_key;
2608 char_u mnemonic_str[MB_LEN_MAX];
2609 int n;
2610 PtArg_t args[5];
2611
2612 menu->submenu_id = menu->id = NULL;
2613
Bram Moolenaar15d63192011-09-14 16:05:15 +02002614 if (menu_is_menubar(menu->name))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 {
2616
Bram Moolenaar15d63192011-09-14 16:05:15 +02002617 accel_key = vim_strchr(menu->name, '&');
2618 if (accel_key != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 {
2620 mnemonic_str[0] = accel_key[1];
2621 mnemonic_str[1] = NUL;
2622 }
2623
2624 /* Create the menu button */
2625 n = 0;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002626 PtSetArg(&args[ n++ ], Pt_ARG_TEXT_STRING, menu->dname, 0);
2627 PtSetArg(&args[ n++ ], Pt_ARG_ACCEL_TEXT, menu->actext, 0);
2628 if (accel_key != NULL)
2629 PtSetArg(&args[ n++ ], Pt_ARG_ACCEL_KEY, mnemonic_str, 0);
2630 PtSetArg(&args[ n++ ], Pt_ARG_POINTER, menu, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631
Bram Moolenaar15d63192011-09-14 16:05:15 +02002632 if (parent != NULL)
2633 PtSetArg(&args[ n++ ], Pt_ARG_BUTTON_TYPE, Pt_MENU_RIGHT, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634
Bram Moolenaar15d63192011-09-14 16:05:15 +02002635 menu->id = PtCreateWidget(PtMenuButton,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 (parent == NULL) ? gui.vimMenuBar : parent->submenu_id,
Bram Moolenaar15d63192011-09-14 16:05:15 +02002637 n, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638
Bram Moolenaar15d63192011-09-14 16:05:15 +02002639 PtAddCallback(menu->id, Pt_CB_ARM, gui_ph_handle_pulldown_menu, menu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640
2641 /* Create the actual menu */
2642 n = 0;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002643 if (parent != NULL)
2644 PtSetArg(&args[ n++ ], Pt_ARG_MENU_FLAGS, Pt_TRUE, Pt_MENU_CHILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645
Bram Moolenaar15d63192011-09-14 16:05:15 +02002646 menu->submenu_id = PtCreateWidget(PtMenu, menu->id, n, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647
Bram Moolenaar15d63192011-09-14 16:05:15 +02002648 if (parent == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002650 PtAddCallback(menu->submenu_id, Pt_CB_UNREALIZED,
2651 gui_ph_handle_menu_unrealized, menu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652
Bram Moolenaar15d63192011-09-14 16:05:15 +02002653 if (menu->mnemonic != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002655 PtAddHotkeyHandler(gui.vimWindow, tolower(menu->mnemonic),
2656 Pk_KM_Alt, 0, menu, gui_ph_handle_pulldown_menu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 }
2658 }
2659
Bram Moolenaar15d63192011-09-14 16:05:15 +02002660 gui_ph_position_menu(menu->id, menu->priority);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661
2662 /* Redraw menubar here instead of gui_mch_draw_menubar */
Bram Moolenaar15d63192011-09-14 16:05:15 +02002663 if (gui.menu_is_active)
2664 PtRealizeWidget(menu->id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 }
Bram Moolenaar15d63192011-09-14 16:05:15 +02002666 else if (menu_is_popup(menu->name))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002668 menu->submenu_id = PtCreateWidget(PtMenu, gui.vimWindow, 0, NULL);
2669 PtAddCallback(menu->submenu_id, Pt_CB_UNREALIZED,
2670 gui_ph_handle_menu_unrealized, menu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 }
2672}
2673
2674 void
2675gui_mch_add_menu_item(vimmenu_T *menu, int index)
2676{
2677 vimmenu_T *parent = menu->parent;
2678 char_u *accel_key;
2679 char_u mnemonic_str[MB_LEN_MAX];
2680 int n;
2681 PtArg_t args[13];
2682
2683 n = 0;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002684 PtSetArg(&args[ n++ ], Pt_ARG_POINTER, menu, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685
2686#ifdef FEAT_TOOLBAR
Bram Moolenaar15d63192011-09-14 16:05:15 +02002687 if (menu_is_toolbar(parent->name))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002689 if (menu_is_separator(menu->name))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002691 PtSetArg(&args[ n++ ], Pt_ARG_SEP_FLAGS,
2692 Pt_SEP_VERTICAL, Pt_SEP_ORIENTATION);
2693 PtSetArg(&args[ n++ ], Pt_ARG_SEP_TYPE, Pt_ETCHED_IN, 0);
2694 PtSetArg(&args[ n++ ], Pt_ARG_ANCHOR_FLAGS,
2695 Pt_TRUE, Pt_ANCHOR_TOP_BOTTOM);
2696 PtSetArg(&args[ n++ ], Pt_ARG_WIDTH, 2, 0);
2697 menu->id = PtCreateWidget(PtSeparator, gui.vimToolBar, n, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 }
2699 else
2700 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002701 if (strstr((const char *) p_toolbar, "text") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002703 PtSetArg(&args[ n++ ], Pt_ARG_BALLOON_POSITION,
2704 Pt_BALLOON_BOTTOM, 0);
2705 PtSetArg(&args[ n++ ], Pt_ARG_TEXT_STRING, menu->dname, 0);
2706 PtSetArg(&args[ n++ ], Pt_ARG_TEXT_FONT, "TextFont08", 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 }
Bram Moolenaar15d63192011-09-14 16:05:15 +02002708 if ((strstr((const char *) p_toolbar, "icons") != NULL) &&
2709 (gui_ph_toolbar_images != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002711 PtSetArg(&args[ n++ ], Pt_ARG_LABEL_IMAGE,
2712 gui_ph_toolbar_find_icon(menu), 0);
2713 PtSetArg(&args[ n++ ], Pt_ARG_LABEL_TYPE, Pt_TEXT_IMAGE, 0);
2714 PtSetArg(&args[ n++ ], Pt_ARG_TEXT_IMAGE_SPACING, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 }
Bram Moolenaar15d63192011-09-14 16:05:15 +02002716 if (strstr((const char *) p_toolbar, "tooltips") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002718 PtSetArg(&args[ n++ ], Pt_ARG_LABEL_BALLOON,
2719 gui_ph_show_tooltip, 0);
2720 PtSetArg(&args[ n++ ], Pt_ARG_LABEL_FLAGS,
2721 Pt_TRUE, Pt_SHOW_BALLOON);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 }
Bram Moolenaar15d63192011-09-14 16:05:15 +02002723 PtSetArg(&args[ n++ ], Pt_ARG_MARGIN_HEIGHT, 1, 0);
2724 PtSetArg(&args[ n++ ], Pt_ARG_MARGIN_WIDTH, 1, 0);
2725 PtSetArg(&args[ n++ ], Pt_ARG_FLAGS, Pt_FALSE,
2726 Pt_HIGHLIGHTED | Pt_GETS_FOCUS);
2727 PtSetArg(&args[ n++ ], Pt_ARG_FILL_COLOR, Pg_TRANSPARENT, 0);
2728 menu->id = PtCreateWidget(PtButton, gui.vimToolBar, n, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729
Bram Moolenaar15d63192011-09-14 16:05:15 +02002730 PtAddCallback(menu->id, Pt_CB_ACTIVATE, gui_ph_handle_menu, menu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 }
2732 /* Update toolbar if it's open */
Bram Moolenaar15d63192011-09-14 16:05:15 +02002733 if (PtWidgetIsRealized(gui.vimToolBar))
2734 PtRealizeWidget(menu->id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735 }
2736 else
2737#endif
Bram Moolenaar15d63192011-09-14 16:05:15 +02002738 if (menu_is_separator(menu->name))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002740 menu->id = PtCreateWidget(PtSeparator, parent->submenu_id, n, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 }
2742 else
2743 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002744 accel_key = vim_strchr(menu->name, '&');
2745 if (accel_key != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 {
2747 mnemonic_str[0] = accel_key[1];
2748 mnemonic_str[1] = NUL;
2749 }
2750
Bram Moolenaar15d63192011-09-14 16:05:15 +02002751 PtSetArg(&args[ n++ ], Pt_ARG_TEXT_STRING, menu->dname, 0);
2752 if (accel_key != NULL)
2753 PtSetArg(&args[ n++ ], Pt_ARG_ACCEL_KEY, mnemonic_str,
2754 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755
Bram Moolenaar15d63192011-09-14 16:05:15 +02002756 PtSetArg(&args[ n++ ], Pt_ARG_ACCEL_TEXT, menu->actext, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757
Bram Moolenaar15d63192011-09-14 16:05:15 +02002758 menu->id = PtCreateWidget(PtMenuButton, parent->submenu_id, n, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759
Bram Moolenaar15d63192011-09-14 16:05:15 +02002760 PtAddCallback(menu->id, Pt_CB_ACTIVATE, gui_ph_handle_menu, menu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761
2762#ifdef USE_PANEL_GROUP
Bram Moolenaar15d63192011-09-14 16:05:15 +02002763 if (gui_ph_is_buffer_item(menu, parent) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002765 PtAddCallback(menu->id, Pt_CB_DESTROYED,
2766 gui_ph_handle_buffer_remove, menu);
2767 gui_ph_pg_add_buffer(menu->dname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 }
2769#endif
2770 }
2771
Bram Moolenaar15d63192011-09-14 16:05:15 +02002772 gui_ph_position_menu(menu->id, menu->priority);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773}
2774
2775 void
2776gui_mch_destroy_menu(vimmenu_T *menu)
2777{
Bram Moolenaar15d63192011-09-14 16:05:15 +02002778 if (menu->submenu_id != NULL)
2779 PtDestroyWidget(menu->submenu_id);
2780 if (menu->id != NULL)
2781 PtDestroyWidget(menu->id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782
2783 menu->submenu_id = NULL;
2784 menu->id = NULL;
2785}
2786
2787 void
2788gui_mch_menu_grey(vimmenu_T *menu, int grey)
2789{
2790 long flags, mask, fields;
2791
Bram Moolenaar15d63192011-09-14 16:05:15 +02002792 if (menu->id == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 return;
2794
Bram Moolenaar15d63192011-09-14 16:05:15 +02002795 flags = PtWidgetFlags(menu->id);
2796 if (PtWidgetIsClass(menu->id, PtMenuButton) &&
2797 PtWidgetIsClass(PtWidgetParent(menu->id), PtMenu))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 {
2799 fields = Pt_FALSE;
2800 mask = Pt_SELECTABLE | Pt_HIGHLIGHTED;
2801 }
2802 else
2803 {
2804 fields = Pt_TRUE;
2805 mask = Pt_BLOCKED | Pt_GHOST;
2806 }
2807
Bram Moolenaar15d63192011-09-14 16:05:15 +02002808 if (! grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 fields = ~fields;
2810
Bram Moolenaar15d63192011-09-14 16:05:15 +02002811 PtSetResource(menu->id, Pt_ARG_FLAGS, fields,
2812 mask);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813}
2814
2815 void
2816gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
2817{
2818 /* TODO: [un]realize the widget? */
2819}
2820
2821 void
2822gui_mch_draw_menubar(void)
2823{
2824 /* The only time a redraw is needed is when a menu button
2825 * is added to the menubar, and that is detected and the bar
2826 * redrawn in gui_mch_add_menu_item
2827 */
2828}
2829
2830 void
2831gui_mch_show_popupmenu(vimmenu_T *menu)
2832{
Bram Moolenaar15d63192011-09-14 16:05:15 +02002833 PtSetResource(menu->submenu_id, Pt_ARG_POS, &abs_mouse, 0);
2834 PtRealizeWidget(menu->submenu_id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835}
2836
2837 void
2838gui_mch_toggle_tearoffs(int enable)
2839{
2840 /* No tearoffs yet */
2841}
2842
2843#endif
2844
Bram Moolenaar15d63192011-09-14 16:05:15 +02002845#if defined(FEAT_TOOLBAR) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 void
2847gui_mch_show_toolbar(int showit)
2848{
Bram Moolenaar15d63192011-09-14 16:05:15 +02002849 if (showit)
2850 PtRealizeWidget(gui.vimToolBar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 else
Bram Moolenaar15d63192011-09-14 16:05:15 +02002852 PtUnrealizeWidget(gui.vimToolBar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853}
2854#endif
2855
2856/****************************************************************************/
2857/* Fonts */
2858
2859 static GuiFont
2860gui_ph_get_font(
2861 char_u *font_name,
2862 int_u font_flags,
2863 int_u font_size,
2864 /* Check whether the resulting font has the font flags and size that
2865 * was asked for */
2866 int_u enforce
2867 )
2868{
2869 char_u *font_tag;
2870 FontQueryInfo info;
2871 int_u style;
2872
Bram Moolenaar15d63192011-09-14 16:05:15 +02002873 font_tag = alloc(MAX_FONT_TAG);
2874 if (font_tag != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002876 if (PfGenerateFontName(font_name, font_flags, font_size,
2877 font_tag) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 {
2879 /* Enforce some limits on the font used */
2880 style = PHFONT_INFO_FIXED;
2881
Bram Moolenaar15d63192011-09-14 16:05:15 +02002882 if (enforce & PF_STYLE_BOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883 style |= PHFONT_INFO_BOLD;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002884 if (enforce & PF_STYLE_ANTIALIAS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 style |= PHFONT_INFO_ALIAS;
Bram Moolenaar15d63192011-09-14 16:05:15 +02002886 if (enforce & PF_STYLE_ITALIC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 style |= PHFONT_INFO_ITALIC;
2888
Bram Moolenaar15d63192011-09-14 16:05:15 +02002889 PfQueryFontInfo(font_tag, &info);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890
Bram Moolenaar15d63192011-09-14 16:05:15 +02002891 if (info.size == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 font_size = 0;
2893
2894 /* Make sure font size matches, and that the font style
2895 * at least has the bits we're checking for */
Bram Moolenaar15d63192011-09-14 16:05:15 +02002896 if (font_size == info.size &&
2897 style == (info.style & style))
Bram Moolenaard2221132011-07-27 14:09:09 +02002898 return (GuiFont)font_tag;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 }
Bram Moolenaar15d63192011-09-14 16:05:15 +02002900 vim_free(font_tag);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 }
Bram Moolenaard2221132011-07-27 14:09:09 +02002902 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903}
2904
2905/*
2906 * Split up the vim font name
2907 *
2908 * vim_font is in the form of
2909 * <name>:s<height>:a:b:i
2910 *
2911 * a = antialias
2912 * b = bold
2913 * i = italic
2914 *
2915 */
2916
2917 static int
2918gui_ph_parse_font_name(
2919 char_u *vim_font,
2920 char_u **font_name,
2921 int_u *font_flags,
Bram Moolenaar15d63192011-09-14 16:05:15 +02002922 int_u *font_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923{
2924 char_u *mark;
2925 int_u name_len, size;
2926
Bram Moolenaar15d63192011-09-14 16:05:15 +02002927 mark = vim_strchr(vim_font, ':');
2928 if (mark == NULL)
2929 name_len = STRLEN(vim_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 else
Bram Moolenaar15d63192011-09-14 16:05:15 +02002931 name_len = (int_u) (mark - vim_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932
Bram Moolenaar15d63192011-09-14 16:05:15 +02002933 *font_name = vim_strnsave(vim_font, name_len);
Bram Moolenaard0988c52011-08-10 12:19:04 +02002934 if (*font_name != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935 {
Bram Moolenaard0988c52011-08-10 12:19:04 +02002936 if (mark != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 {
Bram Moolenaard0988c52011-08-10 12:19:04 +02002938 while (*mark != NUL && *mark++ == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 {
Bram Moolenaard0988c52011-08-10 12:19:04 +02002940 switch (tolower(*mark++))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 {
2942 case 'a': *font_flags |= PF_STYLE_ANTIALIAS; break;
2943 case 'b': *font_flags |= PF_STYLE_BOLD; break;
2944 case 'i': *font_flags |= PF_STYLE_ITALIC; break;
2945
2946 case 's':
Bram Moolenaar15d63192011-09-14 16:05:15 +02002947 size = getdigits(&mark);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 /* Restrict the size to some vague limits */
Bram Moolenaard0988c52011-08-10 12:19:04 +02002949 if (size < 1 || size > 100)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 size = 8;
2951
2952 *font_size = size;
2953 break;
2954
2955 default:
2956 break;
2957 }
2958 }
2959 }
Bram Moolenaard2221132011-07-27 14:09:09 +02002960 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 }
Bram Moolenaard2221132011-07-27 14:09:09 +02002962 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963}
2964
2965 int
2966gui_mch_init_font(char_u *vim_font_name, int fontset)
2967{
2968 char_u *font_tag;
2969 char_u *font_name = NULL;
2970 int_u font_flags = 0;
2971 int_u font_size = 12;
2972
2973 FontQueryInfo info;
2974 PhRect_t extent;
2975
Bram Moolenaard0988c52011-08-10 12:19:04 +02002976 if (vim_font_name == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 {
2978 /* Default font */
Bram Moolenaara0b19972009-07-01 14:13:18 +00002979 vim_font_name = "PC Terminal";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 }
2981
Bram Moolenaar15d63192011-09-14 16:05:15 +02002982 if (STRCMP(vim_font_name, "*") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002984 font_tag = PtFontSelection(gui.vimWindow, NULL, NULL,
2985 "pcterm12", -1, PHFONT_FIXED, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986
Bram Moolenaard0988c52011-08-10 12:19:04 +02002987 if (font_tag == NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02002988 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989
Bram Moolenaar15d63192011-09-14 16:05:15 +02002990 gui_mch_free_font(gui.norm_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 gui.norm_font = font_tag;
2992
Bram Moolenaar15d63192011-09-14 16:05:15 +02002993 PfQueryFontInfo(font_tag, &info);
2994 font_name = vim_strsave(info.font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 }
2996 else
2997 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02002998 if (gui_ph_parse_font_name(vim_font_name, &font_name, &font_flags,
2999 &font_size) == FALSE)
Bram Moolenaard2221132011-07-27 14:09:09 +02003000 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001
Bram Moolenaar15d63192011-09-14 16:05:15 +02003002 font_tag = gui_ph_get_font(font_name, font_flags, font_size, 0);
Bram Moolenaard0988c52011-08-10 12:19:04 +02003003 if (font_tag == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02003005 vim_free(font_name);
Bram Moolenaard2221132011-07-27 14:09:09 +02003006 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 }
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003008
Bram Moolenaar15d63192011-09-14 16:05:15 +02003009 gui_mch_free_font(gui.norm_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 gui.norm_font = font_tag;
3011 }
3012
Bram Moolenaar15d63192011-09-14 16:05:15 +02003013 gui_mch_free_font(gui.bold_font);
3014 gui.bold_font = gui_ph_get_font(font_name, font_flags | PF_STYLE_BOLD,
3015 font_size, PF_STYLE_BOLD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016
Bram Moolenaar15d63192011-09-14 16:05:15 +02003017 gui_mch_free_font(gui.ital_font);
3018 gui.ital_font = gui_ph_get_font(font_name, font_flags | PF_STYLE_ITALIC,
3019 font_size, PF_STYLE_ITALIC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020
3021 /* This extent was brought to you by the letter 'g' */
Bram Moolenaar15d63192011-09-14 16:05:15 +02003022 PfExtentText(&extent, NULL, font_tag, "g", 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023
3024 gui.char_width = extent.lr.x - extent.ul.x + 1;
3025 gui.char_height = (- extent.ul.y) + extent.lr.y + 1;
3026 gui.char_ascent = - extent.ul.y;
3027
Bram Moolenaar15d63192011-09-14 16:05:15 +02003028 vim_free(font_name);
Bram Moolenaard2221132011-07-27 14:09:09 +02003029 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030}
3031
Bram Moolenaar02743632005-07-25 20:42:36 +00003032/*
3033 * Adjust gui.char_height (after 'linespace' was changed).
3034 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 int
Bram Moolenaar02743632005-07-25 20:42:36 +00003036gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037{
3038 FontQueryInfo info;
3039
Bram Moolenaar15d63192011-09-14 16:05:15 +02003040 PfQueryFontInfo(gui.norm_font, &info);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041
3042 gui.char_height = - info.ascender + info.descender + p_linespace;
3043 gui.char_ascent = - info.ascender + p_linespace / 2;
3044
Bram Moolenaard2221132011-07-27 14:09:09 +02003045 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046}
3047
3048 GuiFont
3049gui_mch_get_font(char_u *vim_font_name, int report_error)
3050{
3051 char_u *font_name;
3052 char_u *font_tag;
3053 int_u font_size = 12;
3054 int_u font_flags = 0;
3055
Bram Moolenaar15d63192011-09-14 16:05:15 +02003056 if (gui_ph_parse_font_name(vim_font_name, &font_name, &font_flags,
3057 &font_size) != FALSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 {
Bram Moolenaar15d63192011-09-14 16:05:15 +02003059 font_tag = gui_ph_get_font(font_name, font_flags, font_size, -1);
3060 vim_free(font_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061
Bram Moolenaard0988c52011-08-10 12:19:04 +02003062 if (font_tag != NULL)
Bram Moolenaard2221132011-07-27 14:09:09 +02003063 return (GuiFont)font_tag;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 }
3065
Bram Moolenaard0988c52011-08-10 12:19:04 +02003066 if (report_error)
Bram Moolenaar15d63192011-09-14 16:05:15 +02003067 EMSG2(e_font, vim_font_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068
Bram Moolenaard2221132011-07-27 14:09:09 +02003069 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070}
3071
Bram Moolenaardfccaf02004-12-31 20:56:11 +00003072#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003073/*
3074 * Return the name of font "font" in allocated memory.
3075 * Don't know how to get the actual name, thus use the provided name.
3076 */
3077 char_u *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003078gui_mch_get_fontname(GuiFont font, char_u *name)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003079{
3080 if (name == NULL)
3081 return NULL;
3082 return vim_strsave(name);
3083}
Bram Moolenaardfccaf02004-12-31 20:56:11 +00003084#endif
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003085
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 void
3087gui_mch_set_font(GuiFont font)
3088{
Bram Moolenaar15d63192011-09-14 16:05:15 +02003089 PgSetFont(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090}
3091
3092 void
3093gui_mch_free_font(GuiFont font)
3094{
Bram Moolenaar15d63192011-09-14 16:05:15 +02003095 vim_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096}
3097