7
|
1 /* 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
|
|
16 #ifdef FEAT_TOOLBAR
|
|
17 # include <photon/PxImage.h>
|
|
18 #endif
|
|
19
|
|
20 #if !defined(__QNX__)
|
|
21 /* Used when generating prototypes. */
|
|
22 # define PgColor_t int
|
|
23 # define PhEvent_t int
|
|
24 # define PhPoint_t int
|
|
25 # define PtWidget_t int
|
|
26 # define Pg_BLACK 0
|
|
27 # define PtCallbackF_t int
|
|
28 # define PtCallbackInfo_t int
|
|
29 # define PhTile_t int
|
|
30 # define PtWidget_t int
|
|
31 # define PhImage_t int
|
|
32 #endif
|
|
33
|
|
34 #define ARRAY_LENGTH(a) (sizeof(a) / sizeof(a[0]))
|
2980
|
35 #define RGB(r, g, b) PgRGB(r, g, b)
|
|
36
|
|
37 #define EVENT_BUFFER_SIZE sizeof(PhEvent_t) + 1000
|
7
|
38
|
|
39 /* Some defines for gui_mch_mousehide() */
|
|
40 #define MOUSE_HIDE TRUE
|
|
41 #define MOUSE_SHOW FALSE
|
|
42
|
|
43 /* Optional support for using a PtPanelGroup widget, needs work */
|
|
44 #undef USE_PANEL_GROUP
|
|
45
|
|
46 #ifdef USE_PANEL_GROUP
|
|
47 static char *empty_title = " ";
|
|
48 static char **panel_titles = NULL;
|
|
49 static ushort_t num_panels = 0;
|
|
50 static short pg_margin_left, pg_margin_right, pg_margin_top, pg_margin_bottom;
|
|
51 #endif
|
|
52
|
|
53 #define GUI_PH_MARGIN 4 /* Size of the bevel */
|
|
54
|
|
55 #define GUI_PH_MOUSE_TYPE Ph_CURSOR_INSERT
|
|
56 static PgColor_t gui_ph_mouse_color = Pg_BLACK;
|
|
57
|
|
58 static PhPoint_t gui_ph_raw_offset;
|
|
59 static PtWidget_t *gui_ph_timer_cursor; /* handle cursor blinking */
|
|
60 static PtWidget_t *gui_ph_timer_timeout; /* used in gui_mch_wait_for_chars */
|
|
61 static short is_timeout; /* Has the timeout occured? */
|
|
62
|
|
63 /*
|
|
64 * This is set inside the mouse callback for a right mouse
|
|
65 * button click, and used for the popup menus
|
|
66 */
|
|
67 static PhPoint_t abs_mouse;
|
|
68
|
|
69 /* Try and avoid redraws while a resize is in progress */
|
|
70 static int is_ignore_draw = FALSE;
|
|
71
|
|
72 /* Used for converting to/from utf-8 and other charsets */
|
|
73 static struct PxTransCtrl *charset_translate;
|
|
74
|
|
75 /*
|
|
76 * Cursor blink functions.
|
|
77 *
|
|
78 * This is a simple state machine:
|
|
79 * BLINK_NONE not blinking at all
|
|
80 * BLINK_OFF blinking, cursor is not shown
|
|
81 * BLINK_ON blinking, cursor is shown
|
|
82 */
|
|
83 static enum {
|
|
84 BLINK_NONE,
|
|
85 BLINK_OFF,
|
|
86 BLINK_ON
|
|
87 } blink_state = BLINK_NONE;
|
|
88
|
|
89 static long_u blink_waittime = 700;
|
|
90 static long_u blink_ontime = 400;
|
|
91 static long_u blink_offtime = 250;
|
|
92
|
|
93 static struct
|
|
94 {
|
|
95 int key_sym;
|
|
96 char_u vim_code0;
|
|
97 char_u vim_code1;
|
|
98 } special_keys[] =
|
|
99 {
|
|
100 {Pk_Up, 'k', 'u'},
|
|
101 {Pk_Down, 'k', 'd'},
|
|
102 {Pk_Left, 'k', 'l'},
|
|
103 {Pk_Right, 'k', 'r'},
|
|
104
|
|
105 {Pk_F1, 'k', '1'},
|
|
106 {Pk_F2, 'k', '2'},
|
|
107 {Pk_F3, 'k', '3'},
|
|
108 {Pk_F4, 'k', '4'},
|
|
109 {Pk_F5, 'k', '5'},
|
|
110 {Pk_F6, 'k', '6'},
|
|
111 {Pk_F7, 'k', '7'},
|
|
112 {Pk_F8, 'k', '8'},
|
|
113 {Pk_F9, 'k', '9'},
|
|
114 {Pk_F10, 'k', ';'},
|
|
115
|
|
116 {Pk_F11, 'F', '1'},
|
|
117 {Pk_F12, 'F', '2'},
|
|
118 {Pk_F13, 'F', '3'},
|
|
119 {Pk_F14, 'F', '4'},
|
|
120 {Pk_F15, 'F', '5'},
|
|
121 {Pk_F16, 'F', '6'},
|
|
122 {Pk_F17, 'F', '7'},
|
|
123 {Pk_F18, 'F', '8'},
|
|
124 {Pk_F19, 'F', '9'},
|
|
125 {Pk_F20, 'F', 'A'},
|
|
126
|
|
127 {Pk_F21, 'F', 'B'},
|
|
128 {Pk_F22, 'F', 'C'},
|
|
129 {Pk_F23, 'F', 'D'},
|
|
130 {Pk_F24, 'F', 'E'},
|
|
131 {Pk_F25, 'F', 'F'},
|
|
132 {Pk_F26, 'F', 'G'},
|
|
133 {Pk_F27, 'F', 'H'},
|
|
134 {Pk_F28, 'F', 'I'},
|
|
135 {Pk_F29, 'F', 'J'},
|
|
136
|
|
137 {Pk_F30, 'F', 'K'},
|
|
138 {Pk_F31, 'F', 'L'},
|
|
139 {Pk_F32, 'F', 'M'},
|
|
140 {Pk_F33, 'F', 'N'},
|
|
141 {Pk_F34, 'F', 'O'},
|
|
142 {Pk_F35, 'F', 'P'},
|
|
143
|
|
144 {Pk_Help, '%', '1'},
|
|
145 {Pk_BackSpace, 'k', 'b'},
|
|
146 {Pk_Insert, 'k', 'I'},
|
|
147 {Pk_Delete, 'k', 'D'},
|
|
148 {Pk_Home, 'k', 'h'},
|
|
149 {Pk_End, '@', '7'},
|
|
150 {Pk_Prior, 'k', 'P'},
|
|
151 {Pk_Next, 'k', 'N'},
|
|
152 {Pk_Print, '%', '9'},
|
|
153
|
|
154 {Pk_KP_Add, 'K', '6'},
|
|
155 {Pk_KP_Subtract,'K', '7'},
|
|
156 {Pk_KP_Divide, 'K', '8'},
|
|
157 {Pk_KP_Multiply,'K', '9'},
|
|
158 {Pk_KP_Enter, 'K', 'A'},
|
|
159
|
|
160 {Pk_KP_0, KS_EXTRA, KE_KINS}, /* Insert */
|
|
161 {Pk_KP_Decimal, KS_EXTRA, KE_KDEL}, /* Delete */
|
|
162
|
|
163 {Pk_KP_4, 'k', 'l'}, /* Left */
|
|
164 {Pk_KP_6, 'k', 'r'}, /* Right */
|
|
165 {Pk_KP_8, 'k', 'u'}, /* Up */
|
|
166 {Pk_KP_2, 'k', 'd'}, /* Down */
|
|
167
|
|
168 {Pk_KP_7, 'K', '1'}, /* Home */
|
|
169 {Pk_KP_1, 'K', '4'}, /* End */
|
|
170
|
|
171 {Pk_KP_9, 'K', '3'}, /* Page Up */
|
|
172 {Pk_KP_3, 'K', '5'}, /* Page Down */
|
|
173
|
|
174 {Pk_KP_5, '&', '8'}, /* Undo */
|
|
175
|
|
176 /* Keys that we want to be able to use any modifier with: */
|
|
177 {Pk_Return, CAR, NUL},
|
|
178 {Pk_space, ' ', NUL},
|
|
179 {Pk_Tab, TAB, NUL},
|
|
180 {Pk_Escape, ESC, NUL},
|
|
181 {NL, NL, NUL},
|
|
182 {CAR, CAR, NUL},
|
|
183
|
|
184 /* End of list marker: */
|
|
185 {0, 0, 0}
|
|
186 };
|
|
187
|
|
188
|
|
189 /****************************************************************************/
|
|
190
|
|
191 static PtCallbackF_t gui_ph_handle_timer_cursor;
|
|
192 static PtCallbackF_t gui_ph_handle_timer_timeout;
|
|
193
|
|
194 static PtCallbackF_t gui_ph_handle_window_cb;
|
|
195
|
|
196 static PtCallbackF_t gui_ph_handle_scrollbar;
|
|
197 static PtCallbackF_t gui_ph_handle_keyboard;
|
|
198 static PtCallbackF_t gui_ph_handle_mouse;
|
|
199 static PtCallbackF_t gui_ph_handle_pulldown_menu;
|
|
200 static PtCallbackF_t gui_ph_handle_menu;
|
|
201 static PtCallbackF_t gui_ph_handle_focus; /* focus change of text area */
|
|
202
|
|
203 static PtCallbackF_t gui_ph_handle_menu_resize;
|
|
204
|
|
205 /* When a menu is unrealized, give focus back to vimTextArea */
|
|
206 static PtCallbackF_t gui_ph_handle_menu_unrealized;
|
|
207
|
|
208 #ifdef USE_PANEL_GROUP
|
2980
|
209 static void gui_ph_get_panelgroup_margins(short*, short*, short*, short*);
|
7
|
210 #endif
|
|
211
|
|
212 #ifdef FEAT_TOOLBAR
|
2980
|
213 static PhImage_t *gui_ph_toolbar_find_icon(vimmenu_T *menu);
|
7
|
214 #endif
|
|
215
|
2980
|
216 static void gui_ph_draw_start(void);
|
|
217 static void gui_ph_draw_end(void);
|
7
|
218
|
|
219 /* Set the text for the balloon */
|
2980
|
220 static PtWidget_t * gui_ph_show_tooltip(PtWidget_t *window,
|
7
|
221 PtWidget_t *widget,
|
|
222 int position,
|
|
223 char *text,
|
|
224 char *font,
|
|
225 PgColor_t fill_color,
|
2980
|
226 PgColor_t text_color);
|
7
|
227
|
|
228 /****************************************************************************/
|
|
229
|
2980
|
230 static PtWidget_t * gui_ph_show_tooltip(PtWidget_t *window,
|
7
|
231 PtWidget_t *widget,
|
|
232 int position,
|
|
233 char *text,
|
|
234 char *font,
|
|
235 PgColor_t fill_color,
|
2980
|
236 PgColor_t text_color)
|
7
|
237 {
|
|
238 PtArg_t arg;
|
|
239 vimmenu_T *menu;
|
|
240 char_u *tooltip;
|
|
241
|
2980
|
242 PtSetArg(&arg, Pt_ARG_POINTER, &menu, 0);
|
|
243 PtGetResources(widget, 1, &arg);
|
7
|
244
|
|
245 /* Override the text and position */
|
|
246
|
|
247 tooltip = text;
|
2980
|
248 if (menu != NULL)
|
7
|
249 {
|
|
250 int index = MENU_INDEX_TIP;
|
2980
|
251 if (menu->strings[ index ] != NULL)
|
7
|
252 tooltip = menu->strings[ index ];
|
|
253 }
|
|
254
|
2980
|
255 return PtInflateBalloon(
|
7
|
256 window,
|
|
257 widget,
|
|
258 /* Don't put the balloon at the bottom,
|
|
259 * it gets drawn over by gfx done in the PtRaw */
|
|
260 Pt_BALLOON_TOP,
|
|
261 tooltip,
|
|
262 font,
|
|
263 fill_color,
|
2980
|
264 text_color);
|
7
|
265 }
|
|
266
|
|
267 static void
|
2980
|
268 gui_ph_resize_container(void)
|
7
|
269 {
|
|
270 PhArea_t area;
|
|
271
|
2980
|
272 PtWidgetArea(gui.vimWindow, &area);
|
|
273 PtWidgetPos (gui.vimContainer, &area.pos);
|
|
274
|
|
275 PtSetResource(gui.vimContainer, Pt_ARG_AREA, &area, 0);
|
7
|
276 }
|
|
277
|
|
278 static int
|
|
279 gui_ph_handle_menu_resize(
|
|
280 PtWidget_t *widget,
|
|
281 void *other,
|
2980
|
282 PtCallbackInfo_t *info)
|
7
|
283 {
|
|
284 PtContainerCallback_t *sizes = info->cbdata;
|
|
285 PtWidget_t *container;
|
|
286 PhPoint_t below_menu;
|
|
287 int_u height;
|
|
288
|
|
289 height = sizes->new_dim.h;
|
|
290
|
1214
|
291 /* Because vim treats the toolbar and menubar separately,
|
7
|
292 * and here they're lumped together into a PtToolbarGroup,
|
|
293 * we only need either menu_height or toolbar_height set at once */
|
2980
|
294 if (gui.menu_is_active)
|
7
|
295 {
|
|
296 gui.menu_height = height;
|
|
297 gui.toolbar_height = 0;
|
|
298 }
|
|
299 #ifdef FEAT_TOOLBAR
|
|
300 else
|
|
301 gui.toolbar_height = height;
|
|
302 #endif
|
|
303
|
|
304 below_menu.x = 0;
|
|
305 below_menu.y = height;
|
|
306
|
|
307 #ifdef USE_PANEL_GROUP
|
|
308 container = gui.vimPanelGroup;
|
|
309 #else
|
|
310 container = gui.vimContainer;
|
|
311 #endif
|
|
312
|
2980
|
313 PtSetResource(container, Pt_ARG_POS, &below_menu, 0);
|
7
|
314
|
|
315 gui_ph_resize_container();
|
|
316
|
|
317 #ifdef USE_PANEL_GROUP
|
|
318 gui_ph_get_panelgroup_margins(
|
|
319 &pg_margin_top, &pg_margin_bottom,
|
2980
|
320 &pg_margin_left, &pg_margin_right);
|
7
|
321 #endif
|
2980
|
322 return Pt_CONTINUE;
|
7
|
323 }
|
|
324
|
|
325 /*
|
|
326 * Pt_ARG_TIMER_REPEAT isn't used because the on & off times
|
|
327 * are different
|
|
328 */
|
|
329 static int
|
|
330 gui_ph_handle_timer_cursor(
|
|
331 PtWidget_t *widget,
|
|
332 void *data,
|
2980
|
333 PtCallbackInfo_t *info)
|
7
|
334 {
|
2980
|
335 if (blink_state == BLINK_ON)
|
7
|
336 {
|
|
337 gui_undraw_cursor();
|
|
338 blink_state = BLINK_OFF;
|
2980
|
339 PtSetResource(gui_ph_timer_cursor, Pt_ARG_TIMER_INITIAL,
|
|
340 blink_offtime, 0);
|
7
|
341 }
|
|
342 else
|
|
343 {
|
|
344 gui_update_cursor(TRUE, FALSE);
|
|
345 blink_state = BLINK_ON;
|
2980
|
346 PtSetResource(gui_ph_timer_cursor, Pt_ARG_TIMER_INITIAL,
|
|
347 blink_ontime, 0);
|
7
|
348 }
|
2980
|
349 return Pt_CONTINUE;
|
7
|
350 }
|
|
351
|
|
352 static int
|
|
353 gui_ph_handle_timer_timeout(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
|
|
354 {
|
|
355 is_timeout = TRUE;
|
|
356
|
2980
|
357 return Pt_CONTINUE;
|
7
|
358 }
|
|
359
|
|
360 static int
|
2998
|
361 gui_ph_handle_window_cb(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
|
7
|
362 {
|
|
363 PhWindowEvent_t *we = info->cbdata;
|
|
364 ushort_t *width, *height;
|
|
365
|
2998
|
366 switch (we->event_f) {
|
7
|
367 case Ph_WM_CLOSE:
|
|
368 gui_shell_closed();
|
|
369 break;
|
|
370
|
|
371 case Ph_WM_FOCUS:
|
|
372 /* Just in case it's hidden and needs to be shown */
|
2998
|
373 gui_mch_mousehide(MOUSE_SHOW);
|
|
374
|
|
375 if (we->event_state == Ph_WM_EVSTATE_FOCUS)
|
7
|
376 {
|
|
377 gui_focus_change(TRUE);
|
|
378 gui_mch_start_blink();
|
|
379 }
|
|
380 else
|
|
381 {
|
|
382 gui_focus_change(FALSE);
|
|
383 gui_mch_stop_blink();
|
|
384 }
|
|
385 break;
|
|
386
|
|
387 case Ph_WM_RESIZE:
|
2998
|
388 PtGetResource(gui.vimWindow, Pt_ARG_WIDTH, &width, 0);
|
|
389 PtGetResource(gui.vimWindow, Pt_ARG_HEIGHT, &height, 0);
|
7
|
390 #ifdef USE_PANEL_GROUP
|
|
391 width -= (pg_margin_left + pg_margin_right);
|
|
392 height -= (pg_margin_top + pg_margin_bottom);
|
|
393 #endif
|
2998
|
394 gui_resize_shell(*width, *height);
|
|
395 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
|
7
|
396 is_ignore_draw = FALSE;
|
2998
|
397 PtEndFlux(gui.vimContainer);
|
|
398 PtContainerRelease(gui.vimContainer);
|
7
|
399 break;
|
|
400
|
|
401 default:
|
|
402 break;
|
|
403 }
|
|
404
|
2980
|
405 return Pt_CONTINUE;
|
7
|
406 }
|
|
407
|
|
408 static int
|
2998
|
409 gui_ph_handle_scrollbar(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
|
7
|
410 {
|
|
411 PtScrollbarCallback_t *scroll;
|
|
412 scrollbar_T *sb;
|
|
413 int value, dragging = FALSE;
|
|
414
|
|
415 scroll = info->cbdata;
|
|
416
|
|
417 sb = (scrollbar_T *) data;
|
2998
|
418 if (sb != NULL)
|
7
|
419 {
|
|
420 value = scroll->position;
|
2998
|
421 switch (scroll->action)
|
7
|
422 {
|
|
423 case Pt_SCROLL_DRAGGED:
|
|
424 dragging = TRUE;
|
|
425 break;
|
|
426
|
|
427 case Pt_SCROLL_SET:
|
|
428 /* FIXME: return straight away here? */
|
2980
|
429 return Pt_CONTINUE;
|
7
|
430 break;
|
|
431 }
|
|
432
|
|
433 gui_drag_scrollbar(sb, value, dragging);
|
|
434 }
|
2980
|
435 return Pt_CONTINUE;
|
7
|
436 }
|
|
437
|
|
438 static int
|
2998
|
439 gui_ph_handle_keyboard(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
|
7
|
440 {
|
|
441 PhKeyEvent_t *key;
|
|
442 unsigned char string[6];
|
|
443 int len, i;
|
|
444 int ch, modifiers;
|
|
445
|
2998
|
446 key = PhGetData(info->event);
|
7
|
447
|
|
448 ch = modifiers = len = 0;
|
|
449
|
2998
|
450 if (p_mh)
|
|
451 gui_mch_mousehide(MOUSE_HIDE);
|
7
|
452
|
|
453 /* We're a good lil photon program, aren't we? yes we are, yeess wee arrr */
|
2998
|
454 if (key->key_flags & Pk_KF_Compose)
|
7
|
455 {
|
2980
|
456 return Pt_CONTINUE;
|
7
|
457 }
|
|
458
|
2998
|
459 if ((key->key_flags & Pk_KF_Cap_Valid) &&
|
|
460 PkIsKeyDown(key->key_flags))
|
7
|
461 {
|
|
462 #ifdef FEAT_MENU
|
|
463 /*
|
|
464 * Only show the menu if the Alt key is down, and the Shift & Ctrl
|
|
465 * keys aren't down, as well as the other conditions
|
|
466 */
|
2998
|
467 if (((key->key_mods & Pk_KM_Alt) &&
|
|
468 !(key->key_mods & Pk_KM_Shift) &&
|
|
469 !(key->key_mods & Pk_KM_Ctrl)) &&
|
7
|
470 gui.menu_is_active &&
|
2998
|
471 (*p_wak == 'y' ||
|
|
472 (*p_wak == 'm' &&
|
|
473 gui_is_menu_shortcut(key->key_cap))))
|
7
|
474 {
|
|
475 /* Fallthrough and let photon look for the hotkey */
|
2980
|
476 return Pt_CONTINUE;
|
7
|
477 }
|
|
478 #endif
|
|
479
|
3076
|
480 for (i = 0; special_keys[i].key_sym != 0; i++)
|
7
|
481 {
|
2998
|
482 if (special_keys[i].key_sym == key->key_cap)
|
7
|
483 {
|
|
484 len = 0;
|
2998
|
485 if (special_keys[i].vim_code1 == NUL)
|
7
|
486 ch = special_keys[i].vim_code0;
|
|
487 else
|
|
488 {
|
|
489 /* Detect if a keypad number key has been pressed
|
|
490 * and change the key if Num Lock is on */
|
2998
|
491 if (key->key_cap >= Pk_KP_Enter && key->key_cap <= Pk_KP_9
|
|
492 && (key->key_mods & Pk_KM_Num_Lock))
|
7
|
493 {
|
|
494 /* FIXME: For now, just map the key to a ascii value
|
|
495 * (see <photon/PkKeyDef.h>) */
|
|
496 ch = key->key_cap - 0xf080;
|
|
497 }
|
|
498 else
|
2998
|
499 ch = TO_SPECIAL(special_keys[i].vim_code0,
|
|
500 special_keys[i].vim_code1);
|
7
|
501 }
|
|
502 break;
|
|
503 }
|
|
504 }
|
|
505
|
2998
|
506 if (key->key_mods & Pk_KM_Ctrl)
|
7
|
507 modifiers |= MOD_MASK_CTRL;
|
2998
|
508 if (key->key_mods & Pk_KM_Alt)
|
7
|
509 modifiers |= MOD_MASK_ALT;
|
2998
|
510 if (key->key_mods & Pk_KM_Shift)
|
7
|
511 modifiers |= MOD_MASK_SHIFT;
|
|
512
|
|
513 /* Is this not a special key? */
|
2998
|
514 if (special_keys[i].key_sym == 0)
|
7
|
515 {
|
2998
|
516 ch = PhTo8859_1(key);
|
|
517 if (ch == -1
|
7
|
518 #ifdef FEAT_MBYTE
|
2998
|
519 || (enc_utf8 && ch > 127)
|
7
|
520 #endif
|
|
521 )
|
|
522 {
|
|
523 #ifdef FEAT_MBYTE
|
2998
|
524 len = PhKeyToMb(string, key);
|
|
525 if (len > 0)
|
7
|
526 {
|
|
527 static char buf[6];
|
|
528 int src_taken, dst_made;
|
2998
|
529 if (enc_utf8 != TRUE)
|
7
|
530 {
|
|
531 PxTranslateFromUTF(
|
|
532 charset_translate,
|
|
533 string,
|
|
534 len,
|
|
535 &src_taken,
|
|
536 buf,
|
|
537 6,
|
3054
|
538 &dst_made);
|
|
539
|
|
540 add_to_input_buf(buf, dst_made);
|
7
|
541 }
|
|
542 else
|
|
543 {
|
3054
|
544 add_to_input_buf(string, len);
|
7
|
545 }
|
|
546
|
2980
|
547 return Pt_CONSUME;
|
7
|
548 }
|
|
549 len = 0;
|
|
550 #endif
|
|
551 ch = key->key_cap;
|
3054
|
552 if (ch < 0xff)
|
7
|
553 {
|
|
554 /* FIXME: is this the right thing to do? */
|
3054
|
555 if (modifiers & MOD_MASK_CTRL)
|
7
|
556 {
|
|
557 modifiers &= ~MOD_MASK_CTRL;
|
|
558
|
3054
|
559 if ((ch >= 'a' && ch <= 'z') ||
|
7
|
560 ch == '[' ||
|
|
561 ch == ']' ||
|
3054
|
562 ch == '\\')
|
|
563 ch = Ctrl_chr(ch);
|
|
564 else if (ch == '2')
|
7
|
565 ch = NUL;
|
3054
|
566 else if (ch == '6')
|
7
|
567 ch = 0x1e;
|
3054
|
568 else if (ch == '-')
|
7
|
569 ch = 0x1f;
|
|
570 else
|
|
571 modifiers |= MOD_MASK_CTRL;
|
|
572 }
|
|
573
|
3054
|
574 if (modifiers & MOD_MASK_ALT)
|
7
|
575 {
|
3054
|
576 ch = Meta(ch);
|
7
|
577 modifiers &= ~MOD_MASK_ALT;
|
|
578 }
|
|
579 }
|
|
580 else
|
|
581 {
|
2980
|
582 return Pt_CONTINUE;
|
7
|
583 }
|
|
584 }
|
|
585 else
|
|
586 modifiers &= ~MOD_MASK_SHIFT;
|
|
587 }
|
|
588
|
3054
|
589 ch = simplify_key(ch, &modifiers);
|
|
590 if (modifiers)
|
7
|
591 {
|
|
592 string[ len++ ] = CSI;
|
|
593 string[ len++ ] = KS_MODIFIER;
|
|
594 string[ len++ ] = modifiers;
|
|
595 }
|
|
596
|
3054
|
597 if (IS_SPECIAL(ch))
|
7
|
598 {
|
|
599 string[ len++ ] = CSI;
|
3054
|
600 string[ len++ ] = K_SECOND(ch);
|
|
601 string[ len++ ] = K_THIRD(ch);
|
7
|
602 }
|
|
603 else
|
|
604 {
|
|
605 string[ len++ ] = ch;
|
|
606 }
|
|
607
|
|
608 if (len == 1 && ((ch == Ctrl_C && ctrl_c_interrupts)
|
|
609 || ch == intr_char))
|
|
610 {
|
|
611 trash_input_buf();
|
|
612 got_int = TRUE;
|
|
613 }
|
|
614
|
|
615 if (len == 1 && string[0] == CSI)
|
|
616 {
|
|
617 /* Turn CSI into K_CSI. */
|
|
618 string[ len++ ] = KS_EXTRA;
|
|
619 string[ len++ ] = KE_CSI;
|
|
620 }
|
|
621
|
3054
|
622 if (len > 0)
|
7
|
623 {
|
3054
|
624 add_to_input_buf(string, len);
|
2980
|
625 return Pt_CONSUME;
|
7
|
626 }
|
|
627 }
|
|
628
|
2980
|
629 return Pt_CONTINUE;
|
7
|
630 }
|
|
631
|
|
632 static int
|
3054
|
633 gui_ph_handle_mouse(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
|
7
|
634 {
|
|
635 PhPointerEvent_t *pointer;
|
|
636 PhRect_t *pos;
|
|
637 int button = 0, repeated_click, modifiers = 0x0;
|
|
638 short mouse_x, mouse_y;
|
|
639
|
3054
|
640 pointer = PhGetData(info->event);
|
|
641 pos = PhGetRects(info->event);
|
|
642
|
|
643 gui_mch_mousehide(MOUSE_SHOW);
|
7
|
644
|
|
645 /*
|
|
646 * Coordinates need to be relative to the base window,
|
|
647 * not relative to the vimTextArea widget
|
|
648 */
|
|
649 mouse_x = pos->ul.x + gui.border_width;
|
|
650 mouse_y = pos->ul.y + gui.border_width;
|
|
651
|
3054
|
652 if (info->event->type == Ph_EV_PTR_MOTION_NOBUTTON)
|
7
|
653 {
|
3054
|
654 gui_mouse_moved(mouse_x, mouse_y);
|
2980
|
655 return Pt_CONTINUE;
|
7
|
656 }
|
|
657
|
3054
|
658 if (pointer->key_mods & Pk_KM_Shift)
|
7
|
659 modifiers |= MOUSE_SHIFT;
|
3054
|
660 if (pointer->key_mods & Pk_KM_Ctrl)
|
7
|
661 modifiers |= MOUSE_CTRL;
|
3054
|
662 if (pointer->key_mods & Pk_KM_Alt)
|
7
|
663 modifiers |= MOUSE_ALT;
|
|
664
|
|
665 /*
|
|
666 * FIXME More than one button may be involved, but for
|
|
667 * now just deal with one
|
|
668 */
|
3054
|
669 if (pointer->buttons & Ph_BUTTON_SELECT)
|
7
|
670 button = MOUSE_LEFT;
|
|
671
|
3054
|
672 if (pointer->buttons & Ph_BUTTON_MENU)
|
7
|
673 {
|
|
674 button = MOUSE_RIGHT;
|
|
675 /* Need the absolute coordinates for the popup menu */
|
|
676 abs_mouse.x = pointer->pos.x;
|
|
677 abs_mouse.y = pointer->pos.y;
|
|
678 }
|
|
679
|
3054
|
680 if (pointer->buttons & Ph_BUTTON_ADJUST)
|
7
|
681 button = MOUSE_MIDDLE;
|
|
682
|
|
683 /* Catch a real release (not phantom or other releases */
|
3054
|
684 if (info->event->type == Ph_EV_BUT_RELEASE)
|
7
|
685 button = MOUSE_RELEASE;
|
|
686
|
3054
|
687 if (info->event->type & Ph_EV_PTR_MOTION_BUTTON)
|
7
|
688 button = MOUSE_DRAG;
|
|
689
|
|
690 #if 0
|
|
691 /* Vim doesn't use button repeats */
|
3054
|
692 if (info->event->type & Ph_EV_BUT_REPEAT)
|
7
|
693 button = MOUSE_DRAG;
|
|
694 #endif
|
|
695
|
|
696 /* Don't do anything if it is one of the phantom mouse release events */
|
3054
|
697 if ((button != MOUSE_RELEASE) ||
|
|
698 (info->event->subtype == Ph_EV_RELEASE_REAL))
|
7
|
699 {
|
|
700 repeated_click = (pointer->click_count >= 2) ? TRUE : FALSE;
|
|
701
|
3054
|
702 gui_send_mouse_event(button , mouse_x, mouse_y, repeated_click, modifiers);
|
7
|
703 }
|
|
704
|
2980
|
705 return Pt_CONTINUE;
|
7
|
706 }
|
|
707
|
|
708 /* Handle a focus change of the PtRaw widget */
|
|
709 static int
|
3054
|
710 gui_ph_handle_focus(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
|
7
|
711 {
|
3054
|
712 if (info->reason == Pt_CB_LOST_FOCUS)
|
7
|
713 {
|
3054
|
714 PtRemoveEventHandler(gui.vimTextArea, Ph_EV_PTR_MOTION_NOBUTTON,
|
|
715 gui_ph_handle_mouse, NULL);
|
|
716
|
|
717 gui_mch_mousehide(MOUSE_SHOW);
|
7
|
718 }
|
|
719 else
|
|
720 {
|
3054
|
721 PtAddEventHandler(gui.vimTextArea, Ph_EV_PTR_MOTION_NOBUTTON,
|
|
722 gui_ph_handle_mouse, NULL);
|
7
|
723 }
|
2980
|
724 return Pt_CONTINUE;
|
7
|
725 }
|
|
726
|
|
727 static void
|
3054
|
728 gui_ph_handle_raw_draw(PtWidget_t *widget, PhTile_t *damage)
|
7
|
729 {
|
|
730 PhRect_t *r;
|
|
731 PhPoint_t offset;
|
|
732 PhPoint_t translation;
|
|
733
|
3054
|
734 if (is_ignore_draw == TRUE)
|
7
|
735 return;
|
|
736
|
3054
|
737 PtSuperClassDraw(PtBasic, widget, damage);
|
|
738 PgGetTranslation(&translation);
|
7
|
739 PgClearTranslation();
|
|
740
|
|
741 #if 0
|
|
742 /*
|
1214
|
743 * This causes some weird problems, with drawing being done from
|
7
|
744 * within this raw drawing function (rather than just simple clearing
|
|
745 * and text drawing done by gui_redraw)
|
|
746 *
|
|
747 * The main problem is when PhBlit is used, and the cursor appearing
|
|
748 * in places where it shouldn't
|
|
749 */
|
|
750 out_flush();
|
|
751 #endif
|
|
752
|
3054
|
753 PtWidgetOffset(widget, &offset);
|
|
754 PhTranslatePoint(&offset, PtWidgetPos(gui.vimTextArea, NULL));
|
7
|
755
|
|
756 #if 1
|
|
757 /* Redraw individual damage regions */
|
3054
|
758 if (damage->next != NULL)
|
7
|
759 damage = damage->next;
|
|
760
|
3076
|
761 while (damage != NULL)
|
7
|
762 {
|
|
763 r = &damage->rect;
|
|
764 gui_redraw(
|
|
765 r->ul.x - offset.x, r->ul.y - offset.y,
|
|
766 r->lr.x - r->ul.x + 1,
|
3054
|
767 r->lr.y - r->ul.y + 1);
|
7
|
768 damage = damage->next;
|
|
769 }
|
|
770 #else
|
|
771 /* Redraw the rectangle that covers all the damaged regions */
|
|
772 r = &damage->rect;
|
|
773 gui_redraw(
|
|
774 r->ul.x - offset.x, r->ul.y - offset.y,
|
|
775 r->lr.x - r->ul.x + 1,
|
3054
|
776 r->lr.y - r->ul.y + 1);
|
7
|
777 #endif
|
|
778
|
3054
|
779 PgSetTranslation(&translation, 0);
|
7
|
780 }
|
|
781
|
|
782 static int
|
|
783 gui_ph_handle_pulldown_menu(
|
|
784 PtWidget_t *widget,
|
|
785 void *data,
|
3054
|
786 PtCallbackInfo_t *info)
|
7
|
787 {
|
3054
|
788 if (data != NULL)
|
7
|
789 {
|
|
790 vimmenu_T *menu = (vimmenu_T *) data;
|
|
791
|
3054
|
792 PtPositionMenu(menu->submenu_id, NULL);
|
|
793 PtRealizeWidget(menu->submenu_id);
|
7
|
794 }
|
|
795
|
2980
|
796 return Pt_CONTINUE;
|
7
|
797 }
|
|
798
|
|
799 /* This is used for pulldown/popup menus and also toolbar buttons */
|
|
800 static int
|
3076
|
801 gui_ph_handle_menu(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
|
7
|
802 {
|
3076
|
803 if (data != NULL)
|
7
|
804 {
|
|
805 vimmenu_T *menu = (vimmenu_T *) data;
|
3076
|
806 gui_menu_cb(menu);
|
7
|
807 }
|
2980
|
808 return Pt_CONTINUE;
|
7
|
809 }
|
|
810
|
|
811 /* Stop focus from disappearing into the menubar... */
|
|
812 static int
|
|
813 gui_ph_handle_menu_unrealized(
|
|
814 PtWidget_t *widget,
|
|
815 void *data,
|
3076
|
816 PtCallbackInfo_t *info)
|
7
|
817 {
|
3076
|
818 PtGiveFocus(gui.vimTextArea, NULL);
|
2980
|
819 return Pt_CONTINUE;
|
7
|
820 }
|
|
821
|
|
822 static int
|
|
823 gui_ph_handle_window_open(
|
|
824 PtWidget_t *widget,
|
|
825 void *data,
|
3076
|
826 PtCallbackInfo_t *info)
|
7
|
827 {
|
3076
|
828 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
|
2980
|
829 return Pt_CONTINUE;
|
7
|
830 }
|
|
831
|
|
832 /****************************************************************************/
|
|
833
|
|
834 #define DRAW_START gui_ph_draw_start()
|
|
835 #define DRAW_END gui_ph_draw_end()
|
|
836
|
|
837 /* TODO: Set a clipping rect? */
|
|
838 static void
|
3076
|
839 gui_ph_draw_start(void)
|
7
|
840 {
|
1922
|
841 PhGC_t *gc;
|
|
842
|
|
843 gc = PgGetGC();
|
3076
|
844 PgSetRegion(PtWidgetRid(PtFindDisjoint(gui.vimTextArea)));
|
|
845 PgClearClippingsCx(gc);
|
|
846 PgClearTranslationCx(gc);
|
|
847
|
|
848 PtWidgetOffset(gui.vimTextArea, &gui_ph_raw_offset);
|
|
849 PhTranslatePoint(&gui_ph_raw_offset, PtWidgetPos(gui.vimTextArea, NULL));
|
|
850
|
|
851 PgSetTranslation(&gui_ph_raw_offset, Pg_RELATIVE);
|
7
|
852 }
|
|
853
|
|
854 static void
|
3076
|
855 gui_ph_draw_end(void)
|
7
|
856 {
|
|
857 gui_ph_raw_offset.x = -gui_ph_raw_offset.x;
|
|
858 gui_ph_raw_offset.y = -gui_ph_raw_offset.y;
|
3076
|
859 PgSetTranslation(&gui_ph_raw_offset, Pg_RELATIVE);
|
7
|
860 }
|
|
861
|
|
862 #ifdef USE_PANEL_GROUP
|
|
863 static vimmenu_T *
|
3076
|
864 gui_ph_find_buffer_item(char_u *name)
|
7
|
865 {
|
|
866 vimmenu_T *top_level = root_menu;
|
|
867 vimmenu_T *items = NULL;
|
|
868
|
3076
|
869 while (top_level != NULL &&
|
|
870 (STRCMP(top_level->dname, "Buffers") != 0))
|
7
|
871 top_level = top_level->next;
|
|
872
|
3076
|
873 if (top_level != NULL)
|
7
|
874 {
|
|
875 items = top_level->children;
|
|
876
|
3076
|
877 while (items != NULL &&
|
|
878 (STRCMP(items->dname, name) != 0))
|
7
|
879 items = items->next;
|
|
880 }
|
2980
|
881 return items;
|
7
|
882 }
|
|
883
|
|
884 static void
|
3076
|
885 gui_ph_pg_set_buffer_num(int_u buf_num)
|
7
|
886 {
|
|
887 int i;
|
|
888 char search[16];
|
|
889 char *mark;
|
|
890
|
3076
|
891 if (gui.vimTextArea == NULL || buf_num == 0)
|
7
|
892 return;
|
|
893
|
|
894 search[0] = '(';
|
3076
|
895 ultoa(buf_num, &search[1], 10);
|
|
896 STRCAT(search, ")");
|
|
897
|
|
898 for (i = 0; i < num_panels; i++)
|
7
|
899 {
|
|
900 /* find the last "(" in the panel title and see if the buffer
|
|
901 * number in the title matches the one we're looking for */
|
3076
|
902 mark = STRRCHR(panel_titles[ i ], '(');
|
|
903 if (mark != NULL && STRCMP(mark, search) == 0)
|
7
|
904 {
|
3076
|
905 PtSetResource(gui.vimPanelGroup, Pt_ARG_PG_CURRENT_INDEX,
|
|
906 i, 0);
|
7
|
907 }
|
|
908 }
|
|
909 }
|
|
910
|
|
911 static int
|
|
912 gui_ph_handle_pg_change(
|
|
913 PtWidget_t *widget,
|
|
914 void *data,
|
3076
|
915 PtCallbackInfo_t *info)
|
7
|
916 {
|
|
917 vimmenu_T *menu;
|
|
918 PtPanelGroupCallback_t *panel;
|
|
919
|
3076
|
920 if (info->event != NULL)
|
7
|
921 {
|
|
922 panel = info->cbdata;
|
3076
|
923 if (panel->new_panel != NULL)
|
7
|
924 {
|
3076
|
925 menu = gui_ph_find_buffer_item(panel->new_panel);
|
|
926 if (menu)
|
|
927 gui_menu_cb(menu);
|
7
|
928 }
|
|
929 }
|
2980
|
930 return Pt_CONTINUE;
|
7
|
931 }
|
|
932
|
|
933 static void
|
|
934 gui_ph_get_panelgroup_margins(
|
|
935 short *top,
|
|
936 short *bottom,
|
|
937 short *left,
|
3076
|
938 short *right)
|
7
|
939 {
|
|
940 unsigned short abs_raw_x, abs_raw_y, abs_panel_x, abs_panel_y;
|
|
941 const unsigned short *margin_top, *margin_bottom;
|
|
942 const unsigned short *margin_left, *margin_right;
|
|
943
|
3076
|
944 PtGetAbsPosition(gui.vimTextArea, &abs_raw_x, &abs_raw_y);
|
|
945 PtGetAbsPosition(gui.vimPanelGroup, &abs_panel_x, &abs_panel_y);
|
|
946
|
|
947 PtGetResource(gui.vimPanelGroup, Pt_ARG_MARGIN_RIGHT, &margin_right, 0);
|
|
948 PtGetResource(gui.vimPanelGroup, Pt_ARG_MARGIN_BOTTOM, &margin_bottom, 0);
|
7
|
949
|
|
950 abs_raw_x -= abs_panel_x;
|
|
951 abs_raw_y -= abs_panel_y;
|
|
952
|
|
953 *top = abs_raw_y;
|
|
954 *bottom = *margin_bottom;
|
|
955
|
|
956 *left = abs_raw_x;
|
|
957 *right = *margin_right;
|
|
958 }
|
|
959
|
|
960 /* Used for the tabs for PtPanelGroup */
|
|
961 static int
|
3076
|
962 gui_ph_is_buffer_item(vimmenu_T *menu, vimmenu_T *parent)
|
7
|
963 {
|
|
964 char *mark;
|
|
965
|
3076
|
966 if (STRCMP(parent->dname, "Buffers") == 0)
|
7
|
967 {
|
|
968 /* Look for '(' digits ')' */
|
3076
|
969 mark = vim_strchr(menu->dname, '(');
|
|
970 if (mark != NULL)
|
7
|
971 {
|
|
972 mark++;
|
3076
|
973 while (isdigit(*mark))
|
7
|
974 mark++;
|
|
975
|
3076
|
976 if (*mark == ')')
|
2980
|
977 return TRUE;
|
7
|
978 }
|
|
979 }
|
2980
|
980 return FALSE;
|
7
|
981 }
|
|
982
|
|
983 static void
|
3076
|
984 gui_ph_pg_add_buffer(char *name)
|
7
|
985 {
|
|
986 char **new_titles = NULL;
|
|
987
|
3076
|
988 new_titles = (char **) alloc((num_panels + 1) * sizeof(char **));
|
|
989 if (new_titles != NULL)
|
7
|
990 {
|
3076
|
991 if (num_panels > 0)
|
|
992 memcpy(new_titles, panel_titles, num_panels * sizeof(char **));
|
7
|
993
|
|
994 new_titles[ num_panels++ ] = name;
|
|
995
|
3076
|
996 PtSetResource(gui.vimPanelGroup, Pt_ARG_PG_PANEL_TITLES, new_titles,
|
|
997 num_panels);
|
|
998
|
|
999 vim_free(panel_titles);
|
7
|
1000 panel_titles = new_titles;
|
|
1001 }
|
|
1002 }
|
|
1003
|
|
1004 static void
|
3076
|
1005 gui_ph_pg_remove_buffer(char *name)
|
7
|
1006 {
|
|
1007 int i;
|
|
1008 char **new_titles = NULL;
|
|
1009
|
|
1010 /* If there is only 1 panel, we just use the temporary place holder */
|
3076
|
1011 if (num_panels > 1)
|
7
|
1012 {
|
3076
|
1013 new_titles = (char **) alloc((num_panels - 1) * sizeof(char **));
|
|
1014 if (new_titles != NULL)
|
7
|
1015 {
|
|
1016 char **s = new_titles;
|
|
1017 /* Copy all the titles except the one we're removing */
|
3076
|
1018 for (i = 0; i < num_panels; i++)
|
7
|
1019 {
|
3076
|
1020 if (STRCMP(panel_titles[ i ], name) != 0)
|
7
|
1021 {
|
|
1022 *s++ = panel_titles[ i ];
|
|
1023 }
|
|
1024 }
|
|
1025 num_panels--;
|
|
1026
|
3076
|
1027 PtSetResource(gui.vimPanelGroup, Pt_ARG_PG_PANEL_TITLES, new_titles,
|
|
1028 num_panels);
|
|
1029
|
|
1030 vim_free(panel_titles);
|
7
|
1031 panel_titles = new_titles;
|
|
1032 }
|
|
1033 }
|
|
1034 else
|
|
1035 {
|
|
1036 num_panels--;
|
3076
|
1037 PtSetResource(gui.vimPanelGroup, Pt_ARG_PG_PANEL_TITLES, &empty_title,
|
|
1038 1);
|
|
1039
|
|
1040 vim_free(panel_titles);
|
7
|
1041 panel_titles = NULL;
|
|
1042 }
|
|
1043 }
|
|
1044
|
|
1045 /* When a buffer item is deleted from the buffer menu */
|
|
1046 static int
|
|
1047 gui_ph_handle_buffer_remove(
|
|
1048 PtWidget_t *widget,
|
|
1049 void *data,
|
3076
|
1050 PtCallbackInfo_t *info)
|
7
|
1051 {
|
|
1052 vimmenu_T *menu;
|
|
1053
|
3076
|
1054 if (data != NULL)
|
7
|
1055 {
|
|
1056 menu = (vimmenu_T *) data;
|
3076
|
1057 gui_ph_pg_remove_buffer(menu->dname);
|
7
|
1058 }
|
|
1059
|
2980
|
1060 return Pt_CONTINUE;
|
7
|
1061 }
|
|
1062 #endif
|
|
1063
|
|
1064 static int
|
3076
|
1065 gui_ph_pane_resize(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
|
7
|
1066 {
|
3076
|
1067 if (PtWidgetIsRealized(widget))
|
7
|
1068 {
|
|
1069 is_ignore_draw = TRUE;
|
3076
|
1070 PtStartFlux(gui.vimContainer);
|
|
1071 PtContainerHold(gui.vimContainer);
|
7
|
1072 }
|
|
1073
|
2980
|
1074 return Pt_CONTINUE;
|
7
|
1075 }
|
|
1076
|
|
1077 /****************************************************************************/
|
|
1078
|
|
1079 #ifdef FEAT_MBYTE
|
|
1080 void
|
3076
|
1081 gui_ph_encoding_changed(int new_encoding)
|
7
|
1082 {
|
|
1083 /* Default encoding is latin1 */
|
|
1084 char *charset = "latin1";
|
|
1085 int i;
|
|
1086
|
|
1087 struct {
|
|
1088 int encoding;
|
|
1089 char *name;
|
|
1090 } charsets[] = {
|
|
1091 { DBCS_JPN, "SHIFT_JIS" },
|
|
1092 { DBCS_KOR, "csEUCKR" },
|
|
1093 { DBCS_CHT, "big5" },
|
|
1094 { DBCS_CHS, "gb" }
|
|
1095 };
|
|
1096
|
3076
|
1097 for (i = 0; i < ARRAY_LENGTH(charsets); i++)
|
7
|
1098 {
|
3076
|
1099 if (new_encoding == charsets[ i ].encoding)
|
7
|
1100 charset = charsets[ i ].name;
|
|
1101 }
|
|
1102
|
3076
|
1103 charset_translate = PxTranslateSet(charset_translate, charset);
|
7
|
1104 }
|
|
1105 #endif
|
|
1106
|
|
1107 /****************************************************************************/
|
|
1108 /****************************************************************************/
|
|
1109
|
|
1110 void
|
|
1111 gui_mch_prepare(argc, argv)
|
|
1112 int *argc;
|
|
1113 char **argv;
|
|
1114 {
|
3076
|
1115 PtInit(NULL);
|
7
|
1116 }
|
|
1117
|
|
1118 int
|
|
1119 gui_mch_init(void)
|
|
1120 {
|
|
1121 PtArg_t args[10];
|
|
1122 int flags = 0, n = 0;
|
|
1123
|
1214
|
1124 PhDim_t window_size = {100, 100}; /* Arbitrary values */
|
7
|
1125 PhPoint_t pos = {0, 0};
|
|
1126
|
3076
|
1127 gui.event_buffer = (PhEvent_t *) alloc(EVENT_BUFFER_SIZE);
|
|
1128 if (gui.event_buffer == NULL)
|
2980
|
1129 return FAIL;
|
7
|
1130
|
|
1131 /* Get a translation so we can convert from ISO Latin-1 to UTF */
|
3076
|
1132 charset_translate = PxTranslateSet(NULL, "latin1");
|
7
|
1133
|
|
1134 /* The +2 is for the 1 pixel dark line on each side */
|
|
1135 gui.border_offset = gui.border_width = GUI_PH_MARGIN + 2;
|
|
1136
|
|
1137 /* Handle close events ourselves */
|
3076
|
1138 PtSetArg(&args[ n++ ], Pt_ARG_WINDOW_MANAGED_FLAGS, Pt_FALSE, Ph_WM_CLOSE);
|
|
1139 PtSetArg(&args[ n++ ], Pt_ARG_WINDOW_NOTIFY_FLAGS, Pt_TRUE,
|
|
1140 Ph_WM_CLOSE | Ph_WM_RESIZE | Ph_WM_FOCUS);
|
|
1141 PtSetArg(&args[ n++ ], Pt_ARG_DIM, &window_size, 0);
|
|
1142 gui.vimWindow = PtCreateWidget(PtWindow, NULL, n, args);
|
|
1143 if (gui.vimWindow == NULL)
|
2980
|
1144 return FAIL;
|
7
|
1145
|
3076
|
1146 PtAddCallback(gui.vimWindow, Pt_CB_WINDOW, gui_ph_handle_window_cb, NULL);
|
|
1147 PtAddCallback(gui.vimWindow, Pt_CB_WINDOW_OPENING,
|
|
1148 gui_ph_handle_window_open, NULL);
|
7
|
1149
|
|
1150 n = 0;
|
3076
|
1151 PtSetArg(&args[ n++ ], Pt_ARG_ANCHOR_FLAGS, Pt_ANCHOR_ALL, Pt_IS_ANCHORED);
|
|
1152 PtSetArg(&args[ n++ ], Pt_ARG_DIM, &window_size, 0);
|
|
1153 PtSetArg(&args[ n++ ], Pt_ARG_POS, &pos, 0);
|
7
|
1154
|
|
1155 #ifdef USE_PANEL_GROUP
|
|
1156 /* Put in a temprary place holder title */
|
3076
|
1157 PtSetArg(&args[ n++ ], Pt_ARG_PG_PANEL_TITLES, &empty_title, 1);
|
|
1158
|
|
1159 gui.vimPanelGroup = PtCreateWidget(PtPanelGroup, gui.vimWindow, n, args);
|
|
1160 if (gui.vimPanelGroup == NULL)
|
2980
|
1161 return FAIL;
|
7
|
1162
|
3076
|
1163 PtAddCallback(gui.vimPanelGroup, Pt_CB_PG_PANEL_SWITCHING,
|
|
1164 gui_ph_handle_pg_change, NULL);
|
7
|
1165 #else
|
|
1166 /* Turn off all edge decorations */
|
3076
|
1167 PtSetArg(&args[ n++ ], Pt_ARG_BASIC_FLAGS, Pt_FALSE, Pt_ALL);
|
|
1168 PtSetArg(&args[ n++ ], Pt_ARG_BEVEL_WIDTH, 0, 0);
|
|
1169 PtSetArg(&args[ n++ ], Pt_ARG_MARGIN_WIDTH, 0, 0);
|
|
1170 PtSetArg(&args[ n++ ], Pt_ARG_MARGIN_HEIGHT, 0, 0);
|
|
1171 PtSetArg(&args[ n++ ], Pt_ARG_CONTAINER_FLAGS, Pt_TRUE, Pt_AUTO_EXTENT);
|
|
1172
|
|
1173 gui.vimContainer = PtCreateWidget(PtPane, gui.vimWindow, n, args);
|
|
1174 if (gui.vimContainer == NULL)
|
2980
|
1175 return FAIL;
|
7
|
1176
|
3076
|
1177 PtAddCallback(gui.vimContainer, Pt_CB_RESIZE, gui_ph_pane_resize, NULL);
|
7
|
1178 #endif
|
|
1179
|
|
1180 /* Size for the text area is set in gui_mch_set_text_area_pos */
|
|
1181 n = 0;
|
|
1182
|
3076
|
1183 PtSetArg(&args[ n++ ], Pt_ARG_RAW_DRAW_F, gui_ph_handle_raw_draw, 1);
|
|
1184 PtSetArg(&args[ n++ ], Pt_ARG_BEVEL_WIDTH, GUI_PH_MARGIN, 0);
|
7
|
1185 /*
|
|
1186 * Using focus render also causes the whole widget to be redrawn
|
|
1187 * whenever it changes focus, which is very annoying :p
|
|
1188 */
|
3076
|
1189 PtSetArg(&args[ n++ ], Pt_ARG_FLAGS, Pt_TRUE,
|
|
1190 Pt_GETS_FOCUS | Pt_HIGHLIGHTED);
|
7
|
1191 #ifndef FEAT_MOUSESHAPE
|
3076
|
1192 PtSetArg(&args[ n++ ], Pt_ARG_CURSOR_TYPE, GUI_PH_MOUSE_TYPE, 0);
|
|
1193 PtSetArg(&args[ n++ ], Pt_ARG_CURSOR_COLOR, gui_ph_mouse_color, 0);
|
7
|
1194 #endif
|
|
1195
|
3076
|
1196 gui.vimTextArea = PtCreateWidget(PtRaw, Pt_DFLT_PARENT, n, args);
|
|
1197 if (gui.vimTextArea == NULL)
|
2980
|
1198 return FAIL;
|
7
|
1199
|
|
1200 /* TODO: use PtAddEventHandlers instead? */
|
|
1201 /* Not using Ph_EV_BUT_REPEAT because vim wouldn't use it anyway */
|
3076
|
1202 PtAddEventHandler(gui.vimTextArea,
|
7
|
1203 Ph_EV_BUT_PRESS | Ph_EV_BUT_RELEASE | Ph_EV_PTR_MOTION_BUTTON,
|
3076
|
1204 gui_ph_handle_mouse, NULL);
|
|
1205 PtAddEventHandler(gui.vimTextArea, Ph_EV_KEY,
|
|
1206 gui_ph_handle_keyboard, NULL);
|
|
1207 PtAddCallback(gui.vimTextArea, Pt_CB_GOT_FOCUS,
|
|
1208 gui_ph_handle_focus, NULL);
|
|
1209 PtAddCallback(gui.vimTextArea, Pt_CB_LOST_FOCUS,
|
|
1210 gui_ph_handle_focus, NULL);
|
7
|
1211
|
|
1212 /*
|
|
1213 * Now that the text area widget has been created, set up the colours,
|
|
1214 * which wil call PtSetResource from gui_mch_new_colors
|
|
1215 */
|
|
1216
|
|
1217 /*
|
|
1218 * Create the two timers, not as accurate as using the kernel timer
|
|
1219 * functions, but good enough
|
|
1220 */
|
3076
|
1221 gui_ph_timer_cursor = PtCreateWidget(PtTimer, gui.vimWindow, 0, NULL);
|
|
1222 if (gui_ph_timer_cursor == NULL)
|
2980
|
1223 return FAIL;
|
7
|
1224
|
3076
|
1225 gui_ph_timer_timeout = PtCreateWidget(PtTimer, gui.vimWindow, 0, NULL);
|
|
1226 if (gui_ph_timer_timeout == NULL)
|
2980
|
1227 return FAIL;
|
7
|
1228
|
3076
|
1229 PtAddCallback(gui_ph_timer_cursor, Pt_CB_TIMER_ACTIVATE,
|
7
|
1230 gui_ph_handle_timer_cursor, NULL);
|
3076
|
1231 PtAddCallback(gui_ph_timer_timeout, Pt_CB_TIMER_ACTIVATE,
|
7
|
1232 gui_ph_handle_timer_timeout, NULL);
|
|
1233
|
|
1234 #ifdef FEAT_MENU
|
|
1235 n = 0;
|
3076
|
1236 PtSetArg(&args[ n++ ], Pt_ARG_WIDTH, window_size.w, 0);
|
|
1237 PtSetArg(&args[ n++ ], Pt_ARG_ANCHOR_FLAGS, Pt_ANCHOR_LEFT_RIGHT,
|
|
1238 Pt_IS_ANCHORED);
|
|
1239 gui.vimToolBarGroup = PtCreateWidget(PtToolbarGroup, gui.vimWindow,
|
|
1240 n, args);
|
|
1241 if (gui.vimToolBarGroup == NULL)
|
2980
|
1242 return FAIL;
|
7
|
1243
|
3076
|
1244 PtAddCallback(gui.vimToolBarGroup, Pt_CB_RESIZE,
|
|
1245 gui_ph_handle_menu_resize, NULL);
|
7
|
1246
|
|
1247 n = 0;
|
|
1248 flags = 0;
|
3076
|
1249 PtSetArg(&args[ n++ ], Pt_ARG_WIDTH, window_size.w, 0);
|
|
1250 if (! vim_strchr(p_go, GO_MENUS))
|
7
|
1251 {
|
|
1252 flags |= Pt_DELAY_REALIZE;
|
3076
|
1253 PtSetArg(&args[ n++ ], Pt_ARG_FLAGS, Pt_TRUE, flags);
|
7
|
1254 }
|
3076
|
1255 gui.vimMenuBar = PtCreateWidget(PtMenuBar, gui.vimToolBarGroup, n, args);
|
|
1256 if (gui.vimMenuBar == NULL)
|
2980
|
1257 return FAIL;
|
7
|
1258
|
|
1259 # ifdef FEAT_TOOLBAR
|
|
1260 n = 0;
|
|
1261
|
3076
|
1262 PtSetArg(&args[ n++ ], Pt_ARG_ANCHOR_FLAGS,
|
|
1263 Pt_ANCHOR_LEFT_RIGHT |Pt_TOP_ANCHORED_TOP, Pt_IS_ANCHORED);
|
|
1264 PtSetArg(&args[ n++ ], Pt_ARG_RESIZE_FLAGS, Pt_TRUE,
|
|
1265 Pt_RESIZE_Y_AS_REQUIRED);
|
|
1266 PtSetArg(&args[ n++ ], Pt_ARG_WIDTH, window_size.w, 0);
|
7
|
1267
|
|
1268 flags = Pt_GETS_FOCUS;
|
3076
|
1269 if (! vim_strchr(p_go, GO_TOOLBAR))
|
7
|
1270 flags |= Pt_DELAY_REALIZE;
|
|
1271
|
3076
|
1272 PtSetArg(&args[ n++ ], Pt_ARG_FLAGS, Pt_DELAY_REALIZE, flags);
|
|
1273
|
|
1274 gui.vimToolBar = PtCreateWidget(PtToolbar, gui.vimToolBarGroup, n, args);
|
|
1275 if (gui.vimToolBar == NULL)
|
2980
|
1276 return FAIL;
|
7
|
1277
|
|
1278 /*
|
|
1279 * Size for the toolbar is fetched in gui_mch_show_toolbar, after
|
|
1280 * the buttons have been added and the toolbar has resized it's height
|
|
1281 * for the buttons to fit
|
|
1282 */
|
|
1283 # endif
|
|
1284
|
|
1285 #endif
|
|
1286
|
2980
|
1287 return OK;
|
7
|
1288 }
|
|
1289
|
|
1290 int
|
|
1291 gui_mch_init_check(void)
|
|
1292 {
|
2980
|
1293 return (is_photon_available == TRUE) ? OK : FAIL;
|
7
|
1294 }
|
|
1295
|
|
1296 int
|
|
1297 gui_mch_open(void)
|
|
1298 {
|
|
1299 gui.norm_pixel = Pg_BLACK;
|
|
1300 gui.back_pixel = Pg_WHITE;
|
|
1301
|
|
1302 set_normal_colors();
|
|
1303
|
|
1304 gui_check_colors();
|
|
1305 gui.def_norm_pixel = gui.norm_pixel;
|
|
1306 gui.def_back_pixel = gui.back_pixel;
|
|
1307
|
|
1308 highlight_gui_started();
|
|
1309
|
|
1310 if (gui_win_x != -1 && gui_win_y != -1)
|
|
1311 gui_mch_set_winpos(gui_win_x, gui_win_y);
|
|
1312
|
3076
|
1313 return (PtRealizeWidget(gui.vimWindow) == 0) ? OK : FAIL;
|
7
|
1314 }
|
|
1315
|
|
1316 void
|
|
1317 gui_mch_exit(int rc)
|
|
1318 {
|
3076
|
1319 PtDestroyWidget(gui.vimWindow);
|
|
1320
|
|
1321 PxTranslateSet(charset_translate, NULL);
|
|
1322
|
|
1323 vim_free(gui.event_buffer);
|
7
|
1324
|
|
1325 #ifdef USE_PANEL_GROUPS
|
3076
|
1326 vim_free(panel_titles);
|
7
|
1327 #endif
|
|
1328 }
|
|
1329
|
|
1330 /****************************************************************************/
|
|
1331 /* events */
|
|
1332
|
|
1333 /* When no events are available, photon will call this function, working is
|
|
1334 * set to FALSE, and the gui_mch_update loop will exit. */
|
|
1335 static int
|
3076
|
1336 exit_gui_mch_update(void *data)
|
7
|
1337 {
|
|
1338 *(int *)data = FALSE;
|
2980
|
1339 return Pt_END;
|
7
|
1340 }
|
|
1341
|
|
1342 void
|
|
1343 gui_mch_update(void)
|
|
1344 {
|
|
1345 int working = TRUE;
|
|
1346
|
3076
|
1347 PtAppAddWorkProc(NULL, exit_gui_mch_update, &working);
|
|
1348 while ((working == TRUE) && !vim_is_input_buf_full())
|
7
|
1349 {
|
|
1350 PtProcessEvent();
|
|
1351 }
|
|
1352 }
|
|
1353
|
|
1354 int
|
|
1355 gui_mch_wait_for_chars(int wtime)
|
|
1356 {
|
|
1357 is_timeout = FALSE;
|
|
1358
|
3076
|
1359 if (wtime > 0)
|
|
1360 PtSetResource(gui_ph_timer_timeout, Pt_ARG_TIMER_INITIAL, wtime, 0);
|
|
1361
|
|
1362 while (1)
|
7
|
1363 {
|
|
1364 PtProcessEvent();
|
3076
|
1365 if (input_available())
|
7
|
1366 {
|
3076
|
1367 PtSetResource(gui_ph_timer_timeout, Pt_ARG_TIMER_INITIAL, 0, 0);
|
2980
|
1368 return OK;
|
7
|
1369 }
|
3076
|
1370 else if (is_timeout == TRUE)
|
2980
|
1371 return FAIL;
|
7
|
1372 }
|
|
1373 }
|
|
1374
|
3076
|
1375 #if defined(FEAT_BROWSE) || defined(PROTO)
|
7
|
1376 /*
|
|
1377 * Put up a file requester.
|
|
1378 * Returns the selected name in allocated memory, or NULL for Cancel.
|
|
1379 * saving, select file to write
|
|
1380 * title title for the window
|
|
1381 * default_name default name (well duh!)
|
|
1382 * ext not used (extension added)
|
|
1383 * initdir initial directory, NULL for current dir
|
|
1384 * filter not used (file name filter)
|
|
1385 */
|
|
1386 char_u *
|
|
1387 gui_mch_browse(
|
|
1388 int saving,
|
|
1389 char_u *title,
|
|
1390 char_u *default_name,
|
|
1391 char_u *ext,
|
|
1392 char_u *initdir,
|
|
1393 char_u *filter)
|
|
1394 {
|
|
1395 PtFileSelectionInfo_t file;
|
|
1396 int flags;
|
|
1397 char_u *default_path;
|
|
1398 char_u *open_text = NULL;
|
|
1399
|
|
1400 flags = 0;
|
3076
|
1401 memset(&file, 0, sizeof(file));
|
|
1402
|
|
1403 default_path = alloc(MAXPATHL + 1 + NAME_MAX + 1);
|
|
1404 if (default_path != NULL)
|
7
|
1405 {
|
3076
|
1406 if (saving == TRUE)
|
7
|
1407 {
|
|
1408 /* Don't need Pt_FSR_CONFIRM_EXISTING, vim will ask anyway */
|
|
1409 flags |= Pt_FSR_NO_FCHECK;
|
|
1410 open_text = "&Save";
|
|
1411 }
|
|
1412
|
|
1413 /* combine the directory and filename into a single path */
|
3076
|
1414 if (initdir == NULL || *initdir == NUL)
|
7
|
1415 {
|
3076
|
1416 mch_dirname(default_path, MAXPATHL);
|
7
|
1417 initdir = default_path;
|
|
1418 }
|
|
1419 else
|
|
1420 {
|
3076
|
1421 STRCPY(default_path, initdir);
|
7
|
1422 initdir = default_path;
|
|
1423 }
|
|
1424
|
3076
|
1425 if (default_name != NULL)
|
7
|
1426 {
|
3076
|
1427 if (default_path[ STRLEN(default_path) - 1 ] != '/')
|
|
1428 STRCAT(default_path, "/");
|
|
1429
|
|
1430 STRCAT(default_path, default_name);
|
7
|
1431 }
|
|
1432
|
|
1433 /* TODO: add a filter? */
|
|
1434 PtFileSelection(
|
|
1435 gui.vimWindow,
|
|
1436 NULL,
|
|
1437 title,
|
|
1438 default_path,
|
|
1439 NULL,
|
|
1440 open_text,
|
|
1441 NULL,
|
|
1442 NULL,
|
|
1443 &file,
|
3076
|
1444 flags);
|
|
1445
|
|
1446 vim_free(default_path);
|
|
1447
|
|
1448 if (file.ret == Pt_FSDIALOG_BTN1)
|
2980
|
1449 return vim_strsave(file.path);
|
7
|
1450 }
|
2980
|
1451 return NULL;
|
7
|
1452 }
|
|
1453 #endif
|
|
1454
|
3076
|
1455 #if defined(FEAT_GUI_DIALOG) || defined(PROTO)
|
7
|
1456 static PtWidget_t *gui_ph_dialog_text = NULL;
|
|
1457
|
|
1458 static int
|
3076
|
1459 gui_ph_dialog_close(int button, void *data)
|
7
|
1460 {
|
|
1461 PtModalCtrl_t *modal_ctrl = data;
|
|
1462 char_u *dialog_text, *vim_text;
|
|
1463
|
3076
|
1464 if (gui_ph_dialog_text != NULL)
|
7
|
1465 {
|
3076
|
1466 PtGetResource(gui_ph_dialog_text, Pt_ARG_TEXT_STRING, &dialog_text, 0);
|
|
1467 PtGetResource(gui_ph_dialog_text, Pt_ARG_POINTER, &vim_text, 0);
|
|
1468 STRNCPY(vim_text, dialog_text, IOSIZE - 1);
|
7
|
1469 }
|
|
1470
|
3076
|
1471 PtModalUnblock(modal_ctrl, (void *) button);
|
7
|
1472
|
2980
|
1473 return Pt_TRUE;
|
7
|
1474 }
|
|
1475
|
|
1476 static int
|
3076
|
1477 gui_ph_dialog_text_enter(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
|
7
|
1478 {
|
3076
|
1479 if (info->reason_subtype == Pt_EDIT_ACTIVATE)
|
|
1480 gui_ph_dialog_close(1, data);
|
2980
|
1481 return Pt_CONTINUE;
|
7
|
1482 }
|
|
1483
|
|
1484 static int
|
3076
|
1485 gui_ph_dialog_esc(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
|
7
|
1486 {
|
|
1487 PhKeyEvent_t *key;
|
|
1488
|
3076
|
1489 key = PhGetData(info->event);
|
|
1490 if ((key->key_flags & Pk_KF_Cap_Valid) && (key->key_cap == Pk_Escape))
|
7
|
1491 {
|
3076
|
1492 gui_ph_dialog_close(0, data);
|
2980
|
1493 return Pt_CONSUME;
|
7
|
1494 }
|
2980
|
1495 return Pt_PROCESS;
|
7
|
1496 }
|
|
1497
|
|
1498 int
|
|
1499 gui_mch_dialog(
|
|
1500 int type,
|
|
1501 char_u *title,
|
|
1502 char_u *message,
|
|
1503 char_u *buttons,
|
|
1504 int default_button,
|
2684
|
1505 char_u *textfield,
|
|
1506 int ex_cmd)
|
7
|
1507 {
|
|
1508 char_u *str;
|
|
1509 char_u **button_array;
|
|
1510 char_u *buttons_copy;
|
|
1511
|
|
1512 int button_count;
|
|
1513 int i, len;
|
|
1514 int dialog_result = -1;
|
|
1515
|
|
1516 /* FIXME: the vertical option in guioptions is blatantly ignored */
|
|
1517 /* FIXME: so is the type */
|
|
1518
|
|
1519 button_count = len = i = 0;
|
|
1520
|
3076
|
1521 if (buttons == NULL || *buttons == NUL)
|
2980
|
1522 return -1;
|
7
|
1523
|
|
1524 /* There is one less separator than buttons, so bump up the button count */
|
|
1525 button_count = 1;
|
|
1526
|
|
1527 /* Count string length and number of seperators */
|
3076
|
1528 for (str = buttons; *str; str++)
|
7
|
1529 {
|
|
1530 len++;
|
3076
|
1531 if (*str == DLG_BUTTON_SEP)
|
7
|
1532 button_count++;
|
|
1533 }
|
|
1534
|
3076
|
1535 if (title == NULL)
|
7
|
1536 title = "Vim";
|
|
1537
|
3076
|
1538 buttons_copy = alloc(len + 1);
|
|
1539 button_array = (char_u **) alloc(button_count * sizeof(char_u *));
|
|
1540 if (buttons_copy != NULL && button_array != NULL)
|
7
|
1541 {
|
3076
|
1542 STRCPY(buttons_copy, buttons);
|
7
|
1543
|
|
1544 /*
|
|
1545 * Convert DLG_BUTTON_SEP into NUL's and fill in
|
|
1546 * button_array with the pointer to each NUL terminated string
|
|
1547 */
|
|
1548 str = buttons_copy;
|
3076
|
1549 for (i = 0; i < button_count; i++)
|
7
|
1550 {
|
|
1551 button_array[ i ] = str;
|
3076
|
1552 for (; *str; str++)
|
7
|
1553 {
|
3076
|
1554 if (*str == DLG_BUTTON_SEP)
|
7
|
1555 {
|
|
1556 *str++ = NUL;
|
|
1557 break;
|
|
1558 }
|
|
1559 }
|
|
1560 }
|
|
1561 #ifndef FEAT_GUI_TEXTDIALOG
|
|
1562 dialog_result = PtAlert(
|
|
1563 gui.vimWindow, NULL,
|
|
1564 title,
|
|
1565 NULL,
|
|
1566 message, NULL,
|
|
1567 button_count, (const char **) button_array, NULL,
|
3076
|
1568 default_button, 0, Pt_MODAL);
|
7
|
1569 #else
|
|
1570 /* Writing the dialog ourselves lets us add extra features, like
|
|
1571 * trapping the escape key and returning 0 to vim */
|
|
1572 {
|
|
1573 int n;
|
|
1574 PtArg_t args[5];
|
|
1575 PtWidget_t *dialog, *pane;
|
|
1576 PtModalCtrl_t modal_ctrl;
|
|
1577 PtDialogInfo_t di;
|
|
1578
|
3076
|
1579 memset(&di, 0, sizeof(di));
|
|
1580 memset(&modal_ctrl, 0, sizeof(modal_ctrl));
|
7
|
1581
|
|
1582 n = 0;
|
3076
|
1583 PtSetArg(&args[n++], Pt_ARG_GROUP_ROWS_COLS, 0, 0);
|
|
1584 PtSetArg(&args[n++], Pt_ARG_WIDTH, 350, 0);
|
|
1585 PtSetArg(&args[n++], Pt_ARG_GROUP_ORIENTATION,
|
|
1586 Pt_GROUP_VERTICAL, 0);
|
|
1587 PtSetArg(&args[n++], Pt_ARG_GROUP_FLAGS,
|
|
1588 Pt_TRUE, Pt_GROUP_NO_KEYS | Pt_GROUP_STRETCH_HORIZONTAL);
|
|
1589 PtSetArg(&args[n++], Pt_ARG_CONTAINER_FLAGS, Pt_FALSE, Pt_TRUE);
|
|
1590 pane = PtCreateWidget(PtGroup, NULL, n, args);
|
7
|
1591
|
|
1592 n = 0;
|
3076
|
1593 PtSetArg(&args[n++], Pt_ARG_TEXT_STRING, message, 0);
|
|
1594 PtCreateWidget(PtLabel, pane, n, args);
|
|
1595
|
|
1596 if (textfield != NULL)
|
7
|
1597 {
|
|
1598 n = 0;
|
3076
|
1599 PtSetArg(&args[n++], Pt_ARG_MAX_LENGTH, IOSIZE - 1, 0);
|
|
1600 PtSetArg(&args[n++], Pt_ARG_TEXT_STRING, textfield, 0);
|
|
1601 PtSetArg(&args[n++], Pt_ARG_POINTER, textfield, 0);
|
|
1602 gui_ph_dialog_text = PtCreateWidget(PtText, pane, n, args);
|
|
1603 PtAddCallback(gui_ph_dialog_text, Pt_CB_ACTIVATE,
|
|
1604 gui_ph_dialog_text_enter, &modal_ctrl);
|
7
|
1605 }
|
|
1606
|
|
1607 di.parent = gui.vimWindow;
|
|
1608 di.pane = pane;
|
|
1609 di.title = title;
|
|
1610 di.buttons = (const char **) button_array;
|
|
1611 di.nbtns = button_count;
|
|
1612 di.def_btn = default_button;
|
|
1613 /* This is just to give the dialog the close button.
|
|
1614 * We check for the Escape key ourselves and return 0 */
|
|
1615 di.esc_btn = button_count;
|
|
1616 di.callback = gui_ph_dialog_close;
|
|
1617 di.data = &modal_ctrl;
|
|
1618
|
3076
|
1619 dialog = PtCreateDialog(&di);
|
|
1620 PtAddFilterCallback(dialog, Ph_EV_KEY,
|
|
1621 gui_ph_dialog_esc, &modal_ctrl);
|
|
1622
|
|
1623 if (gui_ph_dialog_text != NULL)
|
|
1624 PtGiveFocus(gui_ph_dialog_text, NULL);
|
7
|
1625
|
|
1626 /* Open dialog, block the vim window and wait for the dialog to close */
|
3076
|
1627 PtRealizeWidget(dialog);
|
|
1628 PtMakeModal(dialog, Ph_CURSOR_NOINPUT, Ph_CURSOR_DEFAULT_COLOR);
|
|
1629 dialog_result = (int) PtModalBlock(&modal_ctrl, 0);
|
|
1630
|
|
1631 PtDestroyWidget(dialog);
|
7
|
1632 gui_ph_dialog_text = NULL;
|
|
1633 }
|
|
1634 #endif
|
|
1635 }
|
|
1636
|
3076
|
1637 vim_free(button_array);
|
|
1638 vim_free(buttons_copy);
|
7
|
1639
|
2980
|
1640 return dialog_result;
|
7
|
1641 }
|
|
1642 #endif
|
|
1643 /****************************************************************************/
|
|
1644 /* window size/position/state */
|
|
1645
|
|
1646 int
|
|
1647 gui_mch_get_winpos(int *x, int *y)
|
|
1648 {
|
|
1649 PhPoint_t *pos;
|
|
1650
|
3076
|
1651 pos = PtWidgetPos(gui.vimWindow, NULL);
|
7
|
1652
|
|
1653 *x = pos->x;
|
|
1654 *y = pos->y;
|
|
1655
|
2980
|
1656 return OK;
|
7
|
1657 }
|
|
1658
|
|
1659 void
|
|
1660 gui_mch_set_winpos(int x, int y)
|
|
1661 {
|
|
1662 PhPoint_t pos = { x, y };
|
|
1663
|
3076
|
1664 PtSetResource(gui.vimWindow, Pt_ARG_POS, &pos, 0);
|
7
|
1665 }
|
|
1666
|
|
1667 void
|
|
1668 gui_mch_set_shellsize(int width, int height,
|
812
|
1669 int min_width, int min_height, int base_width, int base_height,
|
|
1670 int direction)
|
7
|
1671 {
|
|
1672 PhDim_t window_size = { width, height };
|
|
1673 PhDim_t min_size = { min_width, min_height };
|
|
1674
|
|
1675 #ifdef USE_PANEL_GROUP
|
|
1676 window_size.w += pg_margin_left + pg_margin_right;
|
|
1677 window_size.h += pg_margin_top + pg_margin_bottom;
|
|
1678 #endif
|
|
1679
|
3076
|
1680 PtSetResource(gui.vimWindow, Pt_ARG_MINIMUM_DIM, &min_size, 0);
|
|
1681 PtSetResource(gui.vimWindow, Pt_ARG_DIM, &window_size, 0);
|
|
1682
|
|
1683 if (! PtWidgetIsRealized(gui.vimWindow))
|
7
|
1684 gui_ph_resize_container();
|
|
1685 }
|
|
1686
|
|
1687 /*
|
|
1688 * Return the amount of screen space that hasn't been allocated (such as
|
|
1689 * by the shelf).
|
|
1690 */
|
|
1691 void
|
|
1692 gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
|
|
1693 {
|
|
1694 PhRect_t console;
|
|
1695
|
3076
|
1696 PhWindowQueryVisible(Ph_QUERY_WORKSPACE, 0,
|
|
1697 PhInputGroup(NULL), &console);
|
7
|
1698
|
|
1699 *screen_w = console.lr.x - console.ul.x + 1;
|
|
1700 *screen_h = console.lr.y - console.ul.y + 1;
|
|
1701 }
|
|
1702
|
|
1703 void
|
|
1704 gui_mch_iconify(void)
|
|
1705 {
|
|
1706 PhWindowEvent_t event;
|
|
1707
|
3076
|
1708 memset(&event, 0, sizeof (event));
|
7
|
1709 event.event_f = Ph_WM_HIDE;
|
|
1710 event.event_state = Ph_WM_EVSTATE_HIDE;
|
3076
|
1711 event.rid = PtWidgetRid(gui.vimWindow);
|
|
1712 PtForwardWindowEvent(&event);
|
7
|
1713 }
|
|
1714
|
|
1715 #if defined(FEAT_EVAL) || defined(PROTO)
|
|
1716 /*
|
|
1717 * Bring the Vim window to the foreground.
|
|
1718 */
|
|
1719 void
|
|
1720 gui_mch_set_foreground()
|
|
1721 {
|
|
1722 PhWindowEvent_t event;
|
|
1723
|
3076
|
1724 memset(&event, 0, sizeof (event));
|
7
|
1725 event.event_f = Ph_WM_TOFRONT;
|
|
1726 event.event_state = Ph_WM_EVSTATE_FFRONT;
|
3076
|
1727 event.rid = PtWidgetRid(gui.vimWindow);
|
|
1728 PtForwardWindowEvent(&event);
|
7
|
1729 }
|
|
1730 #endif
|
|
1731
|
|
1732 void
|
|
1733 gui_mch_settitle(char_u *title, char_u *icon)
|
|
1734 {
|
|
1735 #ifdef USE_PANEL_GROUP
|
3076
|
1736 gui_ph_pg_set_buffer_num(curwin->w_buffer->b_fnum);
|
7
|
1737 #endif
|
3076
|
1738 PtSetResource(gui.vimWindow, Pt_ARG_WINDOW_TITLE, title, 0);
|
7
|
1739 /* Not sure what to do with the icon text, set balloon text somehow? */
|
|
1740 }
|
|
1741
|
|
1742 /****************************************************************************/
|
|
1743 /* Scrollbar */
|
|
1744
|
|
1745 void
|
|
1746 gui_mch_set_scrollbar_thumb(scrollbar_T *sb, int val, int size, int max)
|
|
1747 {
|
|
1748 int n = 0;
|
|
1749 PtArg_t args[3];
|
|
1750
|
3076
|
1751 PtSetArg(&args[ n++ ], Pt_ARG_MAXIMUM, max, 0);
|
|
1752 PtSetArg(&args[ n++ ], Pt_ARG_SLIDER_SIZE, size, 0);
|
|
1753 PtSetArg(&args[ n++ ], Pt_ARG_GAUGE_VALUE, val, 0);
|
|
1754 PtSetResources(sb->id, n, args);
|
7
|
1755 }
|
|
1756
|
|
1757 void
|
|
1758 gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h)
|
|
1759 {
|
|
1760 PhArea_t area = {{ x, y }, { w, h }};
|
|
1761
|
3076
|
1762 PtSetResource(sb->id, Pt_ARG_AREA, &area, 0);
|
7
|
1763 }
|
|
1764
|
|
1765 void
|
|
1766 gui_mch_create_scrollbar(scrollbar_T *sb, int orient)
|
|
1767 {
|
|
1768 int n = 0;
|
|
1769 /* int anchor_flags = 0;*/
|
|
1770 PtArg_t args[4];
|
|
1771
|
|
1772 /*
|
|
1773 * Stop the scrollbar from being realized when the parent
|
|
1774 * is realized, so it can be explicitly realized by vim.
|
|
1775 *
|
|
1776 * Also, don't let the scrollbar get focus
|
|
1777 */
|
3076
|
1778 PtSetArg(&args[ n++ ], Pt_ARG_FLAGS, Pt_DELAY_REALIZE,
|
|
1779 Pt_DELAY_REALIZE | Pt_GETS_FOCUS);
|
|
1780 PtSetArg(&args[ n++ ], Pt_ARG_SCROLLBAR_FLAGS, Pt_SCROLLBAR_SHOW_ARROWS, 0);
|
7
|
1781 #if 0
|
|
1782 /* Don't need this anchoring for the scrollbars */
|
3076
|
1783 if (orient == SBAR_HORIZ)
|
7
|
1784 {
|
|
1785 anchor_flags = Pt_BOTTOM_ANCHORED_BOTTOM |
|
|
1786 Pt_LEFT_ANCHORED_LEFT | Pt_RIGHT_ANCHORED_RIGHT;
|
|
1787 }
|
|
1788 else
|
|
1789 {
|
|
1790 anchor_flags = Pt_BOTTOM_ANCHORED_BOTTOM | Pt_TOP_ANCHORED_TOP;
|
3076
|
1791 if (sb->wp != NULL)
|
7
|
1792 {
|
3076
|
1793 if (sb == &sb->wp->w_scrollbars[ SBAR_LEFT ])
|
7
|
1794 anchor_flags |= Pt_LEFT_ANCHORED_LEFT;
|
|
1795 else
|
|
1796 anchor_flags |= Pt_RIGHT_ANCHORED_RIGHT;
|
|
1797 }
|
|
1798 }
|
3076
|
1799 PtSetArg(&args[ n++ ], Pt_ARG_ANCHOR_FLAGS, anchor_flags, Pt_IS_ANCHORED);
|
7
|
1800 #endif
|
3076
|
1801 PtSetArg(&args[ n++ ], Pt_ARG_ORIENTATION,
|
|
1802 (orient == SBAR_HORIZ) ? Pt_HORIZONTAL : Pt_VERTICAL, 0);
|
7
|
1803 #ifdef USE_PANEL_GROUP
|
3076
|
1804 sb->id = PtCreateWidget(PtScrollbar, gui.vimPanelGroup, n, args);
|
7
|
1805 #else
|
3076
|
1806 sb->id = PtCreateWidget(PtScrollbar, gui.vimContainer, n, args);
|
7
|
1807 #endif
|
|
1808
|
3076
|
1809 PtAddCallback(sb->id, Pt_CB_SCROLLBAR_MOVE, gui_ph_handle_scrollbar, sb);
|
7
|
1810 }
|
|
1811
|
|
1812 void
|
|
1813 gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
|
|
1814 {
|
3076
|
1815 if (flag != 0)
|
|
1816 PtRealizeWidget(sb->id);
|
7
|
1817 else
|
3076
|
1818 PtUnrealizeWidget(sb->id);
|
7
|
1819 }
|
|
1820
|
|
1821 void
|
|
1822 gui_mch_destroy_scrollbar(scrollbar_T *sb)
|
|
1823 {
|
3076
|
1824 PtDestroyWidget(sb->id);
|
7
|
1825 sb->id = NULL;
|
|
1826 }
|
|
1827
|
|
1828 /****************************************************************************/
|
|
1829 /* Mouse functions */
|
|
1830
|
|
1831 #if defined(FEAT_MOUSESHAPE) || defined(PROTO)
|
|
1832 /* The last set mouse pointer shape is remembered, to be used when it goes
|
|
1833 * from hidden to not hidden. */
|
|
1834 static int last_shape = 0;
|
|
1835
|
|
1836 /* Table for shape IDs. Keep in sync with the mshape_names[] table in
|
|
1837 * misc2.c! */
|
|
1838 static int mshape_ids[] =
|
|
1839 {
|
|
1840 Ph_CURSOR_POINTER, /* arrow */
|
|
1841 Ph_CURSOR_NONE, /* blank */
|
|
1842 Ph_CURSOR_INSERT, /* beam */
|
|
1843 Ph_CURSOR_DRAG_VERTICAL, /* updown */
|
|
1844 Ph_CURSOR_DRAG_VERTICAL, /* udsizing */
|
|
1845 Ph_CURSOR_DRAG_HORIZONTAL, /* leftright */
|
|
1846 Ph_CURSOR_DRAG_HORIZONTAL, /* lrsizing */
|
|
1847 Ph_CURSOR_WAIT, /* busy */
|
|
1848 Ph_CURSOR_DONT, /* no */
|
|
1849 Ph_CURSOR_CROSSHAIR, /* crosshair */
|
|
1850 Ph_CURSOR_FINGER, /* hand1 */
|
|
1851 Ph_CURSOR_FINGER, /* hand2 */
|
|
1852 Ph_CURSOR_FINGER, /* pencil */
|
|
1853 Ph_CURSOR_QUESTION_POINT, /* question */
|
|
1854 Ph_CURSOR_POINTER, /* right-arrow */
|
|
1855 Ph_CURSOR_POINTER, /* up-arrow */
|
|
1856 Ph_CURSOR_POINTER /* last one */
|
|
1857 };
|
|
1858
|
|
1859 void
|
|
1860 mch_set_mouse_shape(shape)
|
|
1861 int shape;
|
|
1862 {
|
|
1863 int id;
|
|
1864
|
|
1865 if (!gui.in_use)
|
|
1866 return;
|
|
1867
|
|
1868 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
|
3076
|
1869 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_TYPE, Ph_CURSOR_NONE,
|
|
1870 0);
|
7
|
1871 else
|
|
1872 {
|
|
1873 if (shape >= MSHAPE_NUMBERED)
|
|
1874 id = Ph_CURSOR_POINTER;
|
|
1875 else
|
|
1876 id = mshape_ids[shape];
|
|
1877
|
3076
|
1878 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_TYPE, id, 0);
|
7
|
1879 }
|
|
1880 if (shape != MSHAPE_HIDE)
|
|
1881 last_shape = shape;
|
|
1882 }
|
|
1883 #endif
|
|
1884
|
|
1885 void
|
|
1886 gui_mch_mousehide(int hide)
|
|
1887 {
|
3076
|
1888 if (gui.pointer_hidden != hide)
|
7
|
1889 {
|
|
1890 gui.pointer_hidden = hide;
|
|
1891 #ifdef FEAT_MOUSESHAPE
|
3076
|
1892 if (hide)
|
|
1893 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_TYPE,
|
|
1894 Ph_CURSOR_NONE, 0);
|
7
|
1895 else
|
3076
|
1896 mch_set_mouse_shape(last_shape);
|
7
|
1897 #else
|
3076
|
1898 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_TYPE,
|
|
1899 (hide == MOUSE_SHOW) ? GUI_PH_MOUSE_TYPE : Ph_CURSOR_NONE,
|
|
1900 0);
|
7
|
1901 #endif
|
|
1902 }
|
|
1903 }
|
|
1904
|
95
|
1905 void
|
87
|
1906 gui_mch_getmouse(int *x, int *y)
|
7
|
1907 {
|
|
1908 PhCursorInfo_t info;
|
87
|
1909 short ix, iy;
|
7
|
1910
|
|
1911 /* FIXME: does this return the correct position,
|
|
1912 * with respect to the border? */
|
3076
|
1913 PhQueryCursor(PhInputGroup(NULL), &info);
|
|
1914 PtGetAbsPosition(gui.vimTextArea , &ix, &iy);
|
87
|
1915
|
|
1916 *x = info.pos.x - ix;
|
|
1917 *y = info.pos.y - iy;
|
7
|
1918 }
|
|
1919
|
|
1920 void
|
|
1921 gui_mch_setmouse(int x, int y)
|
|
1922 {
|
|
1923 short abs_x, abs_y;
|
|
1924
|
3076
|
1925 PtGetAbsPosition(gui.vimTextArea, &abs_x, &abs_y);
|
7
|
1926 /* Add the border offset? */
|
3076
|
1927 PhMoveCursorAbs(PhInputGroup(NULL), abs_x + x, abs_y + y);
|
7
|
1928 }
|
|
1929
|
|
1930 /****************************************************************************/
|
|
1931 /* Colours */
|
|
1932
|
|
1933 /*
|
|
1934 * Return the RGB value of a pixel as a long.
|
|
1935 */
|
|
1936 long_u
|
|
1937 gui_mch_get_rgb(guicolor_T pixel)
|
|
1938 {
|
|
1939 return PgRGB(PgRedValue(pixel), PgGreenValue(pixel), PgBlueValue(pixel));
|
|
1940 }
|
|
1941
|
|
1942 void
|
|
1943 gui_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
|
3076
|
1955 if (abs(color_diff) < 64)
|
7
|
1956 {
|
|
1957 short r, g, b;
|
|
1958 /* not a great algorithm... */
|
3076
|
1959 r = PgRedValue(gui_ph_mouse_color) ^ 255;
|
|
1960 g = PgGreenValue(gui_ph_mouse_color) ^ 255;
|
|
1961 b = PgBlueValue(gui_ph_mouse_color) ^ 255;
|
7
|
1962
|
|
1963 #ifndef FEAT_MOUSESHAPE
|
3076
|
1964 gui_ph_mouse_color = PgRGB(r, g, b);
|
|
1965 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_COLOR,
|
|
1966 gui_ph_mouse_color, 0);
|
7
|
1967 #endif
|
|
1968 }
|
|
1969 #endif
|
|
1970
|
3076
|
1971 PtSetResource(gui.vimTextArea, Pt_ARG_FILL_COLOR, gui.back_pixel, 0);
|
7
|
1972 }
|
|
1973
|
|
1974 static int
|
|
1975 hex_digit(int c)
|
|
1976 {
|
|
1977 if (VIM_ISDIGIT(c))
|
2980
|
1978 return c - '0';
|
7
|
1979 c = TOLOWER_ASC(c);
|
|
1980 if (c >= 'a' && c <= 'f')
|
2980
|
1981 return c - 'a' + 10;
|
|
1982 return -1000;
|
7
|
1983 }
|
|
1984
|
|
1985
|
|
1986 /*
|
1214
|
1987 * This should be split out into a separate file,
|
7
|
1988 * 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
|
|
1995 gui_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)},
|
3052
|
2010 {"DarkGray", RGB(0xA9, 0xA9, 0xA9)},
|
|
2011 {"DarkGrey", RGB(0xA9, 0xA9, 0xA9)},
|
7
|
2012 {"Gray", RGB(0xC0, 0xC0, 0xC0)},
|
|
2013 {"Grey", RGB(0xC0, 0xC0, 0xC0)},
|
|
2014 {"LightGray", RGB(0xD3, 0xD3, 0xD3)},
|
|
2015 {"LightGrey", RGB(0xD3, 0xD3, 0xD3)},
|
834
|
2016 {"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)},
|
818
|
2032 {"Gray90", RGB(0xE5, 0xE5, 0xE5)},
|
|
2033 {"Grey90", RGB(0xE5, 0xE5, 0xE5)},
|
7
|
2034 {"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)},
|
3052
|
2040 {"LightBlue", RGB(0xAD, 0xD8, 0xE6)},
|
7
|
2041 {"DarkGreen", RGB(0x00, 0x80, 0x00)},
|
|
2042 {"Green", RGB(0x00, 0xFF, 0x00)},
|
3052
|
2043 {"LightGreen", RGB(0x90, 0xEE, 0x90)},
|
7
|
2044 {"DarkCyan", RGB(0x00, 0x80, 0x80)},
|
|
2045 {"Cyan", RGB(0x00, 0xFF, 0xFF)},
|
3052
|
2046 {"LightCyan", RGB(0xE0, 0xFF, 0xFF)},
|
7
|
2047 {"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)},
|
3052
|
2052 {"LightYellow", RGB(0xFF, 0xFF, 0xE0)},
|
7
|
2053 {"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? */
|
3076
|
2061 if (name[0] == '#' && STRLEN(name) == 7)
|
7
|
2062 {
|
3076
|
2063 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)
|
7
|
2067 return INVALCOLOR;
|
2980
|
2068 return RGB(r, g, b);
|
7
|
2069 }
|
|
2070
|
3076
|
2071 for (i = 0; i < ARRAY_LENGTH(table); i++)
|
7
|
2072 {
|
3076
|
2073 if (STRICMP(name, table[i].name) == 0)
|
2980
|
2074 return table[i].colour;
|
7
|
2075 }
|
|
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);
|
2980
|
2118 return (guicolor_T)RGB(r, g, b);
|
7
|
2119 }
|
|
2120 }
|
|
2121
|
|
2122 fclose(fd);
|
|
2123 }
|
|
2124
|
|
2125
|
|
2126 return INVALCOLOR;
|
|
2127 }
|
|
2128
|
|
2129 void
|
|
2130 gui_mch_set_fg_color(guicolor_T color)
|
|
2131 {
|
3076
|
2132 PgSetTextColor(color);
|
7
|
2133 }
|
|
2134
|
|
2135 void
|
|
2136 gui_mch_set_bg_color(guicolor_T color)
|
|
2137 {
|
3076
|
2138 PgSetFillColor(color);
|
7
|
2139 }
|
|
2140
|
|
2141 void
|
205
|
2142 gui_mch_set_sp_color(guicolor_T color)
|
|
2143 {
|
|
2144 }
|
|
2145
|
|
2146 void
|
7
|
2147 gui_mch_invert_rectangle(int row, int col, int nr, int nc)
|
|
2148 {
|
|
2149 PhRect_t rect;
|
|
2150
|
3076
|
2151 rect.ul.x = FILL_X(col);
|
|
2152 rect.ul.y = FILL_Y(row);
|
7
|
2153
|
|
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;
|
3076
|
2157 if (nc > 0)
|
7
|
2158 rect.lr.x -= 1;
|
3076
|
2159 if (nr > 0)
|
7
|
2160 rect.lr.y -= 1;
|
|
2161
|
|
2162 DRAW_START;
|
3076
|
2163 PgSetDrawMode(Pg_DrawModeDSTINVERT);
|
|
2164 PgDrawRect(&rect, Pg_DRAW_FILL);
|
|
2165 PgSetDrawMode(Pg_DrawModeSRCCOPY);
|
7
|
2166 DRAW_END;
|
|
2167 }
|
|
2168
|
|
2169 void
|
|
2170 gui_mch_clear_block(int row1, int col1, int row2, int col2)
|
|
2171 {
|
|
2172 PhRect_t block = {
|
3076
|
2173 { FILL_X(col1), FILL_Y(row1) },
|
|
2174 { FILL_X(col2 + 1) - 1, FILL_Y(row2 + 1) - 1}
|
7
|
2175 };
|
|
2176
|
|
2177 DRAW_START;
|
3076
|
2178 gui_mch_set_bg_color(gui.back_pixel);
|
|
2179 PgDrawRect(&block, Pg_DRAW_FILL);
|
7
|
2180 DRAW_END;
|
|
2181 }
|
|
2182
|
|
2183 void
|
|
2184 gui_mch_clear_all()
|
|
2185 {
|
|
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
|
3076
|
2192 if (is_ignore_draw == TRUE)
|
7
|
2193 return;
|
|
2194
|
|
2195 DRAW_START;
|
3076
|
2196 gui_mch_set_bg_color(gui.back_pixel);
|
|
2197 PgDrawRect(&text_rect, Pg_DRAW_FILL);
|
7
|
2198 DRAW_END;
|
|
2199 }
|
|
2200
|
|
2201 void
|
|
2202 gui_mch_delete_lines(int row, int num_lines)
|
|
2203 {
|
|
2204 PhRect_t rect;
|
|
2205 PhPoint_t delta;
|
|
2206
|
3076
|
2207 rect.ul.x = FILL_X(gui.scroll_region_left);
|
|
2208 rect.ul.y = FILL_Y(row + num_lines);
|
|
2209
|
|
2210 rect.lr.x = FILL_X(gui.scroll_region_right + 1) - 1;
|
|
2211 rect.lr.y = FILL_Y(gui.scroll_region_bot + 1) - 1;
|
|
2212
|
|
2213 PtWidgetOffset(gui.vimTextArea, &gui_ph_raw_offset);
|
|
2214 PhTranslatePoint(&gui_ph_raw_offset, PtWidgetPos(gui.vimTextArea, NULL));
|
|
2215 PhTranslateRect(&rect, &gui_ph_raw_offset);
|
7
|
2216
|
|
2217 delta.x = 0;
|
|
2218 delta.y = -num_lines * gui.char_height;
|
|
2219
|
|
2220 PgFlush();
|
|
2221
|
3076
|
2222 PhBlit(PtWidgetRid(PtFindDisjoint(gui.vimTextArea)), &rect, &delta);
|
7
|
2223
|
|
2224 gui_clear_block(
|
|
2225 gui.scroll_region_bot - num_lines + 1,
|
|
2226 gui.scroll_region_left,
|
|
2227 gui.scroll_region_bot,
|
3076
|
2228 gui.scroll_region_right);
|
7
|
2229 }
|
|
2230
|
|
2231 void
|
|
2232 gui_mch_insert_lines(int row, int num_lines)
|
|
2233 {
|
|
2234 PhRect_t rect;
|
|
2235 PhPoint_t delta;
|
|
2236
|
3076
|
2237 rect.ul.x = FILL_X(gui.scroll_region_left);
|
|
2238 rect.ul.y = FILL_Y(row);
|
|
2239
|
|
2240 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;
|
|
2242
|
|
2243 PtWidgetOffset(gui.vimTextArea, &gui_ph_raw_offset);
|
|
2244 PhTranslatePoint(&gui_ph_raw_offset, PtWidgetPos(gui.vimTextArea, NULL));
|
|
2245 PhTranslateRect(&rect, &gui_ph_raw_offset);
|
7
|
2246
|
|
2247 delta.x = 0;
|
|
2248 delta.y = num_lines * gui.char_height;
|
|
2249
|
|
2250 PgFlush();
|
|
2251
|
3076
|
2252 PhBlit(PtWidgetRid(PtFindDisjoint(gui.vimTextArea)) , &rect, &delta);
|
|
2253
|
|
2254 gui_clear_block(row, gui.scroll_region_left,
|
|
2255 row + num_lines - 1, gui.scroll_region_right);
|
7
|
2256 }
|
|
2257
|
|
2258 void
|
|
2259 gui_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
|
3076
|
2264 PhPoint_t pos = { TEXT_X(col), TEXT_Y(row) };
|
7
|
2265 PhRect_t rect;
|
|
2266
|
3076
|
2267 if (is_ignore_draw == TRUE)
|
7
|
2268 return;
|
|
2269
|
|
2270 DRAW_START;
|
|
2271
|
3076
|
2272 if (!(flags & DRAW_TRANSP))
|
7
|
2273 {
|
|
2274 PgDrawIRect(
|
3076
|
2275 FILL_X(col), FILL_Y(row),
|
|
2276 FILL_X(col + len) - 1, FILL_Y(row + 1) - 1,
|
|
2277 Pg_DRAW_FILL);
|
7
|
2278 }
|
|
2279
|
3076
|
2280 if (flags & DRAW_UNDERL)
|
|
2281 PgSetUnderline(gui.norm_pixel, Pg_TRANSPARENT, 0);
|
|
2282
|
|
2283 if (charset_translate != NULL
|
7
|
2284 #ifdef FEAT_MBYTE
|
|
2285 && enc_utf8 == 0
|
|
2286 #endif
|
3076
|
2287 )
|
7
|
2288 {
|
|
2289 int src_taken, dst_made;
|
|
2290
|
|
2291 /* Use a static buffer to avoid large amounts of de/allocations */
|
3076
|
2292 if (utf8_len < len)
|
7
|
2293 {
|
3076
|
2294 utf8_buffer = realloc(utf8_buffer, len * MB_LEN_MAX);
|
7
|
2295 utf8_len = len;
|
|
2296 }
|
|
2297
|
|
2298 PxTranslateToUTF(
|
|
2299 charset_translate,
|
|
2300 s,
|
|
2301 len,
|
|
2302 &src_taken,
|
|
2303 utf8_buffer,
|
|
2304 utf8_len,
|
3076
|
2305 &dst_made);
|
7
|
2306 s = utf8_buffer;
|
|
2307 len = dst_made;
|
|
2308 }
|
|
2309
|
3076
|
2310 PgDrawText(s, len, &pos, 0);
|
|
2311
|
|
2312 if (flags & DRAW_BOLD)
|
7
|
2313 {
|
|
2314 /* FIXME: try and only calculate these values once... */
|
3076
|
2315 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... */
|
7
|
2320 #if 0
|
|
2321 pos.x++;
|
|
2322
|
3076
|
2323 PgSetUserClip(&rect);
|
|
2324 PgDrawText(s, len, &pos, 0);
|
|
2325 PgSetUserClip(NULL);
|
7
|
2326 #else
|
3076
|
2327 rect.lr.y -= (p_linespace + 1) / 2;
|
7
|
2328 /* XXX: DrawTextArea doesn't work with phditto */
|
3076
|
2329 PgDrawTextArea(s, len, &rect, Pg_TEXT_BOTTOM);
|
7
|
2330 #endif
|
|
2331 }
|
|
2332
|
3076
|
2333 if (flags & DRAW_UNDERL)
|
|
2334 PgSetUnderline(Pg_TRANSPARENT, Pg_TRANSPARENT, 0);
|
7
|
2335
|
|
2336 DRAW_END;
|
|
2337 }
|
|
2338
|
|
2339 /****************************************************************************/
|
|
2340 /* Cursor */
|
|
2341
|
|
2342 void
|
|
2343 gui_mch_draw_hollow_cursor(guicolor_T color)
|
|
2344 {
|
|
2345 PhRect_t r;
|
|
2346
|
|
2347 /* FIXME: Double width characters */
|
|
2348
|
3076
|
2349 r.ul.x = FILL_X(gui.col);
|
|
2350 r.ul.y = FILL_Y(gui.row);
|
7
|
2351 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;
|
3076
|
2355 PgSetStrokeColor(color);
|
|
2356 PgDrawRect(&r, Pg_DRAW_STROKE);
|
7
|
2357 DRAW_END;
|
|
2358 }
|
|
2359
|
|
2360 void
|
|
2361 gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
|
|
2362 {
|
|
2363 PhRect_t r;
|
|
2364
|
3076
|
2365 r.ul.x = FILL_X(gui.col);
|
|
2366 r.ul.y = FILL_Y(gui.row) + gui.char_height - h;
|
7
|
2367 r.lr.x = r.ul.x + w - 1;
|
|
2368 r.lr.y = r.ul.y + h - 1;
|
|
2369
|
|
2370 DRAW_START;
|
3076
|
2371 gui_mch_set_bg_color(color);
|
|
2372 PgDrawRect(&r, Pg_DRAW_FILL);
|
7
|
2373 DRAW_END;
|
|
2374 }
|
|
2375
|
|
2376 void
|
|
2377 gui_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
|
|
2385 gui_mch_start_blink(void)
|
|
2386 {
|
|
2387 /* Only turn on the timer on if none of the times are zero */
|
3076
|
2388 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
|
7
|
2389 {
|
3076
|
2390 PtSetResource(gui_ph_timer_cursor, Pt_ARG_TIMER_INITIAL,
|
|
2391 blink_waittime, 0);
|
7
|
2392 blink_state = BLINK_ON;
|
|
2393 gui_update_cursor(TRUE, FALSE);
|
|
2394 }
|
|
2395 }
|
|
2396
|
|
2397 void
|
|
2398 gui_mch_stop_blink(void)
|
|
2399 {
|
3076
|
2400 PtSetResource(gui_ph_timer_cursor, Pt_ARG_TIMER_INITIAL, 0, 0);
|
|
2401
|
|
2402 if (blink_state == BLINK_OFF)
|
7
|
2403 gui_update_cursor(TRUE, FALSE);
|
|
2404
|
|
2405 blink_state = BLINK_NONE;
|
|
2406 }
|
|
2407
|
|
2408 /****************************************************************************/
|
|
2409 /* miscellaneous functions */
|
|
2410
|
|
2411 void
|
|
2412 gui_mch_beep(void)
|
|
2413 {
|
|
2414 PtBeep();
|
|
2415 }
|
|
2416
|
|
2417 void
|
|
2418 gui_mch_flash(int msec)
|
|
2419 {
|
3076
|
2420 PgSetFillXORColor(Pg_BLACK, Pg_WHITE);
|
|
2421 PgSetDrawMode(Pg_DRAWMODE_XOR);
|
7
|
2422 gui_mch_clear_all();
|
|
2423 gui_mch_flush();
|
|
2424
|
3076
|
2425 ui_delay((long) msec, TRUE);
|
7
|
2426
|
|
2427 gui_mch_clear_all();
|
3076
|
2428 PgSetDrawMode(Pg_DRAWMODE_OPAQUE);
|
7
|
2429 gui_mch_flush();
|
|
2430 }
|
|
2431
|
|
2432 void
|
|
2433 gui_mch_flush(void)
|
|
2434 {
|
|
2435 PgFlush();
|
|
2436 }
|
|
2437
|
|
2438 void
|
|
2439 gui_mch_set_text_area_pos(int x, int y, int w, int h)
|
|
2440 {
|
|
2441 PhArea_t area = {{x, y}, {w, h}};
|
|
2442
|
3076
|
2443 PtSetResource(gui.vimTextArea, Pt_ARG_AREA, &area, 0);
|
7
|
2444 }
|
|
2445
|
|
2446 int
|
|
2447 gui_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)
|
2980
|
2454 return OK;
|
|
2455 return FAIL;
|
7
|
2456 }
|
|
2457
|
|
2458 /****************************************************************************/
|
|
2459 /* Menu */
|
|
2460
|
|
2461 #ifdef FEAT_TOOLBAR
|
|
2462 #include "toolbar.phi"
|
|
2463
|
|
2464 static 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
|
|
2498 static PhImage_t *
|
3076
|
2499 gui_ph_toolbar_load_icon(char_u *iconfile)
|
7
|
2500 {
|
|
2501 static PhImage_t external_icon;
|
|
2502 PhImage_t *temp_phi = NULL;
|
|
2503
|
3076
|
2504 temp_phi = PxLoadImage(iconfile, NULL);
|
|
2505 if (temp_phi != NULL)
|
7
|
2506 {
|
|
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;
|
3076
|
2510 memcpy(&external_icon, temp_phi, sizeof(external_icon));
|
|
2511 free(temp_phi);
|
7
|
2512
|
|
2513 temp_phi = &external_icon;
|
|
2514 }
|
2980
|
2515 return temp_phi;
|
7
|
2516 }
|
|
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 */
|
|
2525 static PhImage_t *
|
3076
|
2526 gui_ph_toolbar_find_icon(vimmenu_T *menu)
|
7
|
2527 {
|
|
2528 char_u full_pathname[ MAXPATHL + 1 ];
|
|
2529 PhImage_t *icon = NULL;
|
|
2530
|
3076
|
2531 if (menu->icon_builtin == FALSE)
|
7
|
2532 {
|
3076
|
2533 if (menu->iconfile != NULL)
|
7
|
2534 /* TODO: use gui_find_iconfile() */
|
3076
|
2535 icon = gui_ph_toolbar_load_icon(menu->iconfile);
|
7
|
2536
|
|
2537 /* TODO: Restrict loading to just .png? Search for any format? */
|
3076
|
2538 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);
|
|
2542
|
|
2543 if (icon != NULL)
|
2980
|
2544 return icon;
|
7
|
2545 }
|
|
2546
|
3076
|
2547 if (menu->iconidx >= 0 &&
|
|
2548 (menu->iconidx < ARRAY_LENGTH(gui_ph_toolbar_images)))
|
7
|
2549 {
|
2980
|
2550 return gui_ph_toolbar_images[menu->iconidx];
|
7
|
2551 }
|
|
2552
|
2980
|
2553 return NULL;
|
7
|
2554 }
|
|
2555 #endif
|
|
2556
|
3076
|
2557 #if defined(FEAT_MENU) || defined(PROTO)
|
7
|
2558 void
|
|
2559 gui_mch_enable_menu(int flag)
|
|
2560 {
|
3076
|
2561 if (flag != 0)
|
|
2562 PtRealizeWidget(gui.vimMenuBar);
|
7
|
2563 else
|
3076
|
2564 PtUnrealizeWidget(gui.vimMenuBar);
|
7
|
2565 }
|
|
2566
|
|
2567 void
|
|
2568 gui_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
|
3076
|
2575 gui_ph_position_menu(PtWidget_t *widget, int priority)
|
7
|
2576 {
|
|
2577 PtWidget_t *traverse;
|
|
2578 vimmenu_T *menu;
|
|
2579
|
3076
|
2580 traverse = PtWidgetChildBack(PtWidgetParent(widget));
|
7
|
2581
|
|
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? */
|
3076
|
2585 while (traverse != NULL)
|
7
|
2586 {
|
3076
|
2587 PtGetResource(traverse, Pt_ARG_POINTER, &menu, 0);
|
|
2588
|
|
2589 if (menu != NULL &&
|
7
|
2590 priority < menu->priority &&
|
3076
|
2591 widget != traverse)
|
7
|
2592 {
|
|
2593 /* Insert the widget before the current traverse widget */
|
3076
|
2594 PtWidgetInsert(widget, traverse, 1);
|
7
|
2595 return;
|
|
2596 }
|
|
2597
|
3076
|
2598 traverse = PtWidgetBrotherInFront(traverse);
|
7
|
2599 }
|
|
2600 }
|
|
2601
|
|
2602 /* the index is ignored because it's not useful for our purposes */
|
|
2603 void
|
|
2604 gui_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
|
3076
|
2614 if (menu_is_menubar(menu->name))
|
7
|
2615 {
|
|
2616
|
3076
|
2617 accel_key = vim_strchr(menu->name, '&');
|
|
2618 if (accel_key != NULL)
|
7
|
2619 {
|
|
2620 mnemonic_str[0] = accel_key[1];
|
|
2621 mnemonic_str[1] = NUL;
|
|
2622 }
|
|
2623
|
|
2624 /* Create the menu button */
|
|
2625 n = 0;
|
3076
|
2626 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);
|
|
2631
|
|
2632 if (parent != NULL)
|
|
2633 PtSetArg(&args[ n++ ], Pt_ARG_BUTTON_TYPE, Pt_MENU_RIGHT, 0);
|
|
2634
|
|
2635 menu->id = PtCreateWidget(PtMenuButton,
|
7
|
2636 (parent == NULL) ? gui.vimMenuBar : parent->submenu_id,
|
3076
|
2637 n, args);
|
|
2638
|
|
2639 PtAddCallback(menu->id, Pt_CB_ARM, gui_ph_handle_pulldown_menu, menu);
|
7
|
2640
|
|
2641 /* Create the actual menu */
|
|
2642 n = 0;
|
3076
|
2643 if (parent != NULL)
|
|
2644 PtSetArg(&args[ n++ ], Pt_ARG_MENU_FLAGS, Pt_TRUE, Pt_MENU_CHILD);
|
|
2645
|
|
2646 menu->submenu_id = PtCreateWidget(PtMenu, menu->id, n, args);
|
|
2647
|
|
2648 if (parent == NULL)
|
7
|
2649 {
|
3076
|
2650 PtAddCallback(menu->submenu_id, Pt_CB_UNREALIZED,
|
|
2651 gui_ph_handle_menu_unrealized, menu);
|
|
2652
|
|
2653 if (menu->mnemonic != 0)
|
7
|
2654 {
|
3076
|
2655 PtAddHotkeyHandler(gui.vimWindow, tolower(menu->mnemonic),
|
|
2656 Pk_KM_Alt, 0, menu, gui_ph_handle_pulldown_menu);
|
7
|
2657 }
|
|
2658 }
|
|
2659
|
3076
|
2660 gui_ph_position_menu(menu->id, menu->priority);
|
7
|
2661
|
|
2662 /* Redraw menubar here instead of gui_mch_draw_menubar */
|
3076
|
2663 if (gui.menu_is_active)
|
|
2664 PtRealizeWidget(menu->id);
|
7
|
2665 }
|
3076
|
2666 else if (menu_is_popup(menu->name))
|
7
|
2667 {
|
3076
|
2668 menu->submenu_id = PtCreateWidget(PtMenu, gui.vimWindow, 0, NULL);
|
|
2669 PtAddCallback(menu->submenu_id, Pt_CB_UNREALIZED,
|
|
2670 gui_ph_handle_menu_unrealized, menu);
|
7
|
2671 }
|
|
2672 }
|
|
2673
|
|
2674 void
|
|
2675 gui_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;
|
3076
|
2684 PtSetArg(&args[ n++ ], Pt_ARG_POINTER, menu, 0);
|
7
|
2685
|
|
2686 #ifdef FEAT_TOOLBAR
|
3076
|
2687 if (menu_is_toolbar(parent->name))
|
7
|
2688 {
|
3076
|
2689 if (menu_is_separator(menu->name))
|
7
|
2690 {
|
3076
|
2691 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);
|
7
|
2698 }
|
|
2699 else
|
|
2700 {
|
3076
|
2701 if (strstr((const char *) p_toolbar, "text") != NULL)
|
7
|
2702 {
|
3076
|
2703 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);
|
7
|
2707 }
|
3076
|
2708 if ((strstr((const char *) p_toolbar, "icons") != NULL) &&
|
|
2709 (gui_ph_toolbar_images != NULL))
|
7
|
2710 {
|
3076
|
2711 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);
|
7
|
2715 }
|
3076
|
2716 if (strstr((const char *) p_toolbar, "tooltips") != NULL)
|
7
|
2717 {
|
3076
|
2718 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);
|
7
|
2722 }
|
3076
|
2723 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);
|
|
2729
|
|
2730 PtAddCallback(menu->id, Pt_CB_ACTIVATE, gui_ph_handle_menu, menu);
|
7
|
2731 }
|
|
2732 /* Update toolbar if it's open */
|
3076
|
2733 if (PtWidgetIsRealized(gui.vimToolBar))
|
|
2734 PtRealizeWidget(menu->id);
|
7
|
2735 }
|
|
2736 else
|
|
2737 #endif
|
3076
|
2738 if (menu_is_separator(menu->name))
|
7
|
2739 {
|
3076
|
2740 menu->id = PtCreateWidget(PtSeparator, parent->submenu_id, n, args);
|
7
|
2741 }
|
|
2742 else
|
|
2743 {
|
3076
|
2744 accel_key = vim_strchr(menu->name, '&');
|
|
2745 if (accel_key != NULL)
|
7
|
2746 {
|
|
2747 mnemonic_str[0] = accel_key[1];
|
|
2748 mnemonic_str[1] = NUL;
|
|
2749 }
|
|
2750
|
3076
|
2751 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);
|
|
2755
|
|
2756 PtSetArg(&args[ n++ ], Pt_ARG_ACCEL_TEXT, menu->actext, 0);
|
|
2757
|
|
2758 menu->id = PtCreateWidget(PtMenuButton, parent->submenu_id, n, args);
|
|
2759
|
|
2760 PtAddCallback(menu->id, Pt_CB_ACTIVATE, gui_ph_handle_menu, menu);
|
7
|
2761
|
|
2762 #ifdef USE_PANEL_GROUP
|
3076
|
2763 if (gui_ph_is_buffer_item(menu, parent) == TRUE)
|
7
|
2764 {
|
3076
|
2765 PtAddCallback(menu->id, Pt_CB_DESTROYED,
|
|
2766 gui_ph_handle_buffer_remove, menu);
|
|
2767 gui_ph_pg_add_buffer(menu->dname);
|
7
|
2768 }
|
|
2769 #endif
|
|
2770 }
|
|
2771
|
3076
|
2772 gui_ph_position_menu(menu->id, menu->priority);
|
7
|
2773 }
|
|
2774
|
|
2775 void
|
|
2776 gui_mch_destroy_menu(vimmenu_T *menu)
|
|
2777 {
|
3076
|
2778 if (menu->submenu_id != NULL)
|
|
2779 PtDestroyWidget(menu->submenu_id);
|
|
2780 if (menu->id != NULL)
|
|
2781 PtDestroyWidget(menu->id);
|
7
|
2782
|
|
2783 menu->submenu_id = NULL;
|
|
2784 menu->id = NULL;
|
|
2785 }
|
|
2786
|
|
2787 void
|
|
2788 gui_mch_menu_grey(vimmenu_T *menu, int grey)
|
|
2789 {
|
|
2790 long flags, mask, fields;
|
|
2791
|
3076
|
2792 if (menu->id == NULL)
|
7
|
2793 return;
|
|
2794
|
3076
|
2795 flags = PtWidgetFlags(menu->id);
|
|
2796 if (PtWidgetIsClass(menu->id, PtMenuButton) &&
|
|
2797 PtWidgetIsClass(PtWidgetParent(menu->id), PtMenu))
|
7
|
2798 {
|
|
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
|
3076
|
2808 if (! grey)
|
7
|
2809 fields = ~fields;
|
|
2810
|
3076
|
2811 PtSetResource(menu->id, Pt_ARG_FLAGS, fields,
|
|
2812 mask);
|
7
|
2813 }
|
|
2814
|
|
2815 void
|
|
2816 gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
|
|
2817 {
|
|
2818 /* TODO: [un]realize the widget? */
|
|
2819 }
|
|
2820
|
|
2821 void
|
|
2822 gui_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
|
|
2831 gui_mch_show_popupmenu(vimmenu_T *menu)
|
|
2832 {
|
3076
|
2833 PtSetResource(menu->submenu_id, Pt_ARG_POS, &abs_mouse, 0);
|
|
2834 PtRealizeWidget(menu->submenu_id);
|
7
|
2835 }
|
|
2836
|
|
2837 void
|
|
2838 gui_mch_toggle_tearoffs(int enable)
|
|
2839 {
|
|
2840 /* No tearoffs yet */
|
|
2841 }
|
|
2842
|
|
2843 #endif
|
|
2844
|
3076
|
2845 #if defined(FEAT_TOOLBAR) || defined(PROTO)
|
7
|
2846 void
|
|
2847 gui_mch_show_toolbar(int showit)
|
|
2848 {
|
3076
|
2849 if (showit)
|
|
2850 PtRealizeWidget(gui.vimToolBar);
|
7
|
2851 else
|
3076
|
2852 PtUnrealizeWidget(gui.vimToolBar);
|
7
|
2853 }
|
|
2854 #endif
|
|
2855
|
|
2856 /****************************************************************************/
|
|
2857 /* Fonts */
|
|
2858
|
|
2859 static GuiFont
|
|
2860 gui_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
|
3076
|
2873 font_tag = alloc(MAX_FONT_TAG);
|
|
2874 if (font_tag != NULL)
|
7
|
2875 {
|
3076
|
2876 if (PfGenerateFontName(font_name, font_flags, font_size,
|
|
2877 font_tag) != NULL)
|
7
|
2878 {
|
|
2879 /* Enforce some limits on the font used */
|
|
2880 style = PHFONT_INFO_FIXED;
|
|
2881
|
3076
|
2882 if (enforce & PF_STYLE_BOLD)
|
7
|
2883 style |= PHFONT_INFO_BOLD;
|
3076
|
2884 if (enforce & PF_STYLE_ANTIALIAS)
|
7
|
2885 style |= PHFONT_INFO_ALIAS;
|
3076
|
2886 if (enforce & PF_STYLE_ITALIC)
|
7
|
2887 style |= PHFONT_INFO_ITALIC;
|
|
2888
|
3076
|
2889 PfQueryFontInfo(font_tag, &info);
|
|
2890
|
|
2891 if (info.size == 0)
|
7
|
2892 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 */
|
3076
|
2896 if (font_size == info.size &&
|
|
2897 style == (info.style & style))
|
2980
|
2898 return (GuiFont)font_tag;
|
7
|
2899 }
|
3076
|
2900 vim_free(font_tag);
|
7
|
2901 }
|
2980
|
2902 return NULL;
|
7
|
2903 }
|
|
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
|
|
2918 gui_ph_parse_font_name(
|
|
2919 char_u *vim_font,
|
|
2920 char_u **font_name,
|
|
2921 int_u *font_flags,
|
3076
|
2922 int_u *font_size)
|
7
|
2923 {
|
|
2924 char_u *mark;
|
|
2925 int_u name_len, size;
|
|
2926
|
3076
|
2927 mark = vim_strchr(vim_font, ':');
|
|
2928 if (mark == NULL)
|
|
2929 name_len = STRLEN(vim_font);
|
7
|
2930 else
|
3076
|
2931 name_len = (int_u) (mark - vim_font);
|
|
2932
|
|
2933 *font_name = vim_strnsave(vim_font, name_len);
|
2998
|
2934 if (*font_name != NULL)
|
7
|
2935 {
|
2998
|
2936 if (mark != NULL)
|
7
|
2937 {
|
2998
|
2938 while (*mark != NUL && *mark++ == ':')
|
7
|
2939 {
|
2998
|
2940 switch (tolower(*mark++))
|
7
|
2941 {
|
|
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':
|
3076
|
2947 size = getdigits(&mark);
|
7
|
2948 /* Restrict the size to some vague limits */
|
2998
|
2949 if (size < 1 || size > 100)
|
7
|
2950 size = 8;
|
|
2951
|
|
2952 *font_size = size;
|
|
2953 break;
|
|
2954
|
|
2955 default:
|
|
2956 break;
|
|
2957 }
|
|
2958 }
|
|
2959 }
|
2980
|
2960 return TRUE;
|
7
|
2961 }
|
2980
|
2962 return FALSE;
|
7
|
2963 }
|
|
2964
|
|
2965 int
|
|
2966 gui_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
|
2998
|
2976 if (vim_font_name == NULL)
|
7
|
2977 {
|
|
2978 /* Default font */
|
1922
|
2979 vim_font_name = "PC Terminal";
|
7
|
2980 }
|
|
2981
|
3076
|
2982 if (STRCMP(vim_font_name, "*") == 0)
|
7
|
2983 {
|
3076
|
2984 font_tag = PtFontSelection(gui.vimWindow, NULL, NULL,
|
|
2985 "pcterm12", -1, PHFONT_FIXED, NULL);
|
7
|
2986
|
2998
|
2987 if (font_tag == NULL)
|
2980
|
2988 return FAIL;
|
7
|
2989
|
3076
|
2990 gui_mch_free_font(gui.norm_font);
|
7
|
2991 gui.norm_font = font_tag;
|
|
2992
|
3076
|
2993 PfQueryFontInfo(font_tag, &info);
|
|
2994 font_name = vim_strsave(info.font);
|
7
|
2995 }
|
|
2996 else
|
|
2997 {
|
3076
|
2998 if (gui_ph_parse_font_name(vim_font_name, &font_name, &font_flags,
|
|
2999 &font_size) == FALSE)
|
2980
|
3000 return FAIL;
|
7
|
3001
|
3076
|
3002 font_tag = gui_ph_get_font(font_name, font_flags, font_size, 0);
|
2998
|
3003 if (font_tag == NULL)
|
7
|
3004 {
|
3076
|
3005 vim_free(font_name);
|
2980
|
3006 return FAIL;
|
7
|
3007 }
|
37
|
3008
|
3076
|
3009 gui_mch_free_font(gui.norm_font);
|
7
|
3010 gui.norm_font = font_tag;
|
|
3011 }
|
|
3012
|
3076
|
3013 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);
|
|
3016
|
|
3017 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);
|
7
|
3020
|
|
3021 /* This extent was brought to you by the letter 'g' */
|
3076
|
3022 PfExtentText(&extent, NULL, font_tag, "g", 1);
|
7
|
3023
|
|
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
|
3076
|
3028 vim_free(font_name);
|
2980
|
3029 return OK;
|
7
|
3030 }
|
|
3031
|
444
|
3032 /*
|
|
3033 * Adjust gui.char_height (after 'linespace' was changed).
|
|
3034 */
|
7
|
3035 int
|
444
|
3036 gui_mch_adjust_charheight(void)
|
7
|
3037 {
|
|
3038 FontQueryInfo info;
|
|
3039
|
3076
|
3040 PfQueryFontInfo(gui.norm_font, &info);
|
7
|
3041
|
|
3042 gui.char_height = - info.ascender + info.descender + p_linespace;
|
|
3043 gui.char_ascent = - info.ascender + p_linespace / 2;
|
|
3044
|
2980
|
3045 return OK;
|
7
|
3046 }
|
|
3047
|
|
3048 GuiFont
|
|
3049 gui_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
|
3076
|
3056 if (gui_ph_parse_font_name(vim_font_name, &font_name, &font_flags,
|
|
3057 &font_size) != FALSE)
|
7
|
3058 {
|
3076
|
3059 font_tag = gui_ph_get_font(font_name, font_flags, font_size, -1);
|
|
3060 vim_free(font_name);
|
7
|
3061
|
2998
|
3062 if (font_tag != NULL)
|
2980
|
3063 return (GuiFont)font_tag;
|
7
|
3064 }
|
|
3065
|
2998
|
3066 if (report_error)
|
3076
|
3067 EMSG2(e_font, vim_font_name);
|
7
|
3068
|
2980
|
3069 return FAIL;
|
7
|
3070 }
|
|
3071
|
44
|
3072 #if defined(FEAT_EVAL) || defined(PROTO)
|
37
|
3073 /*
|
|
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 *
|
|
3078 gui_mch_get_fontname(font, name)
|
|
3079 GuiFont font;
|
|
3080 char_u *name;
|
|
3081 {
|
|
3082 if (name == NULL)
|
|
3083 return NULL;
|
|
3084 return vim_strsave(name);
|
|
3085 }
|
44
|
3086 #endif
|
37
|
3087
|
7
|
3088 void
|
|
3089 gui_mch_set_font(GuiFont font)
|
|
3090 {
|
3076
|
3091 PgSetFont(font);
|
7
|
3092 }
|
|
3093
|
|
3094 void
|
|
3095 gui_mch_free_font(GuiFont font)
|
|
3096 {
|
3076
|
3097 vim_free(font);
|
7
|
3098 }
|
|
3099
|