Mercurial > vim
annotate src/gui_photon.c @ 13916:6789408b611e
Added tag v8.0.1828 for changeset 8314bb913e148a9d215b09be3e890608d26a6127
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 13 May 2018 14:45:06 +0200 |
parents | ac42c4b11dbc |
children | 27b9a84395b5 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9939
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 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 | |
3927 | 16 /* cproto fails on missing include files */ |
17 #ifndef PROTO | |
18 # ifdef FEAT_TOOLBAR | |
19 # include <photon/PxImage.h> | |
20 # endif | |
7 | 21 #endif |
22 | |
23 #if !defined(__QNX__) | |
24 /* Used when generating prototypes. */ | |
25 # define PgColor_t int | |
26 # define PhEvent_t int | |
27 # define PhPoint_t int | |
28 # define PtWidget_t int | |
29 # define Pg_BLACK 0 | |
30 # define PtCallbackF_t int | |
31 # define PtCallbackInfo_t int | |
32 # define PhTile_t int | |
33 # define PtWidget_t int | |
34 # define PhImage_t int | |
35 #endif | |
36 | |
37 #define ARRAY_LENGTH(a) (sizeof(a) / sizeof(a[0])) | |
2980 | 38 #define RGB(r, g, b) PgRGB(r, g, b) |
39 | |
40 #define EVENT_BUFFER_SIZE sizeof(PhEvent_t) + 1000 | |
7 | 41 |
42 /* Some defines for gui_mch_mousehide() */ | |
43 #define MOUSE_HIDE TRUE | |
44 #define MOUSE_SHOW FALSE | |
45 | |
46 /* Optional support for using a PtPanelGroup widget, needs work */ | |
47 #undef USE_PANEL_GROUP | |
48 | |
49 #ifdef USE_PANEL_GROUP | |
50 static char *empty_title = " "; | |
51 static char **panel_titles = NULL; | |
52 static ushort_t num_panels = 0; | |
53 static short pg_margin_left, pg_margin_right, pg_margin_top, pg_margin_bottom; | |
54 #endif | |
55 | |
56 #define GUI_PH_MARGIN 4 /* Size of the bevel */ | |
57 | |
58 #define GUI_PH_MOUSE_TYPE Ph_CURSOR_INSERT | |
59 static PgColor_t gui_ph_mouse_color = Pg_BLACK; | |
60 | |
61 static PhPoint_t gui_ph_raw_offset; | |
62 static PtWidget_t *gui_ph_timer_cursor; /* handle cursor blinking */ | |
63 static PtWidget_t *gui_ph_timer_timeout; /* used in gui_mch_wait_for_chars */ | |
4352 | 64 static short is_timeout; /* Has the timeout occurred? */ |
7 | 65 |
66 /* | |
67 * This is set inside the mouse callback for a right mouse | |
68 * button click, and used for the popup menus | |
69 */ | |
70 static PhPoint_t abs_mouse; | |
71 | |
72 /* Try and avoid redraws while a resize is in progress */ | |
73 static int is_ignore_draw = FALSE; | |
74 | |
75 /* Used for converting to/from utf-8 and other charsets */ | |
76 static struct PxTransCtrl *charset_translate; | |
77 | |
78 /* | |
79 * Cursor blink functions. | |
80 * | |
81 * This is a simple state machine: | |
82 * BLINK_NONE not blinking at all | |
83 * BLINK_OFF blinking, cursor is not shown | |
84 * BLINK_ON blinking, cursor is shown | |
85 */ | |
86 static enum { | |
87 BLINK_NONE, | |
88 BLINK_OFF, | |
89 BLINK_ON | |
90 } blink_state = BLINK_NONE; | |
91 | |
92 static long_u blink_waittime = 700; | |
93 static long_u blink_ontime = 400; | |
94 static long_u blink_offtime = 250; | |
95 | |
96 static struct | |
97 { | |
98 int key_sym; | |
99 char_u vim_code0; | |
100 char_u vim_code1; | |
101 } special_keys[] = | |
102 { | |
103 {Pk_Up, 'k', 'u'}, | |
104 {Pk_Down, 'k', 'd'}, | |
105 {Pk_Left, 'k', 'l'}, | |
106 {Pk_Right, 'k', 'r'}, | |
107 | |
108 {Pk_F1, 'k', '1'}, | |
109 {Pk_F2, 'k', '2'}, | |
110 {Pk_F3, 'k', '3'}, | |
111 {Pk_F4, 'k', '4'}, | |
112 {Pk_F5, 'k', '5'}, | |
113 {Pk_F6, 'k', '6'}, | |
114 {Pk_F7, 'k', '7'}, | |
115 {Pk_F8, 'k', '8'}, | |
116 {Pk_F9, 'k', '9'}, | |
117 {Pk_F10, 'k', ';'}, | |
118 | |
119 {Pk_F11, 'F', '1'}, | |
120 {Pk_F12, 'F', '2'}, | |
121 {Pk_F13, 'F', '3'}, | |
122 {Pk_F14, 'F', '4'}, | |
123 {Pk_F15, 'F', '5'}, | |
124 {Pk_F16, 'F', '6'}, | |
125 {Pk_F17, 'F', '7'}, | |
126 {Pk_F18, 'F', '8'}, | |
127 {Pk_F19, 'F', '9'}, | |
128 {Pk_F20, 'F', 'A'}, | |
129 | |
130 {Pk_F21, 'F', 'B'}, | |
131 {Pk_F22, 'F', 'C'}, | |
132 {Pk_F23, 'F', 'D'}, | |
133 {Pk_F24, 'F', 'E'}, | |
134 {Pk_F25, 'F', 'F'}, | |
135 {Pk_F26, 'F', 'G'}, | |
136 {Pk_F27, 'F', 'H'}, | |
137 {Pk_F28, 'F', 'I'}, | |
138 {Pk_F29, 'F', 'J'}, | |
139 | |
140 {Pk_F30, 'F', 'K'}, | |
141 {Pk_F31, 'F', 'L'}, | |
142 {Pk_F32, 'F', 'M'}, | |
143 {Pk_F33, 'F', 'N'}, | |
144 {Pk_F34, 'F', 'O'}, | |
145 {Pk_F35, 'F', 'P'}, | |
146 | |
147 {Pk_Help, '%', '1'}, | |
148 {Pk_BackSpace, 'k', 'b'}, | |
149 {Pk_Insert, 'k', 'I'}, | |
150 {Pk_Delete, 'k', 'D'}, | |
151 {Pk_Home, 'k', 'h'}, | |
152 {Pk_End, '@', '7'}, | |
153 {Pk_Prior, 'k', 'P'}, | |
154 {Pk_Next, 'k', 'N'}, | |
155 {Pk_Print, '%', '9'}, | |
156 | |
157 {Pk_KP_Add, 'K', '6'}, | |
158 {Pk_KP_Subtract,'K', '7'}, | |
159 {Pk_KP_Divide, 'K', '8'}, | |
160 {Pk_KP_Multiply,'K', '9'}, | |
161 {Pk_KP_Enter, 'K', 'A'}, | |
162 | |
163 {Pk_KP_0, KS_EXTRA, KE_KINS}, /* Insert */ | |
164 {Pk_KP_Decimal, KS_EXTRA, KE_KDEL}, /* Delete */ | |
165 | |
166 {Pk_KP_4, 'k', 'l'}, /* Left */ | |
167 {Pk_KP_6, 'k', 'r'}, /* Right */ | |
168 {Pk_KP_8, 'k', 'u'}, /* Up */ | |
169 {Pk_KP_2, 'k', 'd'}, /* Down */ | |
170 | |
171 {Pk_KP_7, 'K', '1'}, /* Home */ | |
172 {Pk_KP_1, 'K', '4'}, /* End */ | |
173 | |
174 {Pk_KP_9, 'K', '3'}, /* Page Up */ | |
175 {Pk_KP_3, 'K', '5'}, /* Page Down */ | |
176 | |
177 {Pk_KP_5, '&', '8'}, /* Undo */ | |
178 | |
179 /* Keys that we want to be able to use any modifier with: */ | |
180 {Pk_Return, CAR, NUL}, | |
181 {Pk_space, ' ', NUL}, | |
182 {Pk_Tab, TAB, NUL}, | |
183 {Pk_Escape, ESC, NUL}, | |
184 {NL, NL, NUL}, | |
185 {CAR, CAR, NUL}, | |
186 | |
187 /* End of list marker: */ | |
188 {0, 0, 0} | |
189 }; | |
190 | |
191 | |
192 /****************************************************************************/ | |
193 | |
194 static PtCallbackF_t gui_ph_handle_timer_cursor; | |
195 static PtCallbackF_t gui_ph_handle_timer_timeout; | |
196 | |
197 static PtCallbackF_t gui_ph_handle_window_cb; | |
198 | |
199 static PtCallbackF_t gui_ph_handle_scrollbar; | |
200 static PtCallbackF_t gui_ph_handle_keyboard; | |
201 static PtCallbackF_t gui_ph_handle_mouse; | |
202 static PtCallbackF_t gui_ph_handle_pulldown_menu; | |
203 static PtCallbackF_t gui_ph_handle_menu; | |
204 static PtCallbackF_t gui_ph_handle_focus; /* focus change of text area */ | |
205 | |
206 static PtCallbackF_t gui_ph_handle_menu_resize; | |
207 | |
208 /* When a menu is unrealized, give focus back to vimTextArea */ | |
209 static PtCallbackF_t gui_ph_handle_menu_unrealized; | |
210 | |
211 #ifdef USE_PANEL_GROUP | |
2980 | 212 static void gui_ph_get_panelgroup_margins(short*, short*, short*, short*); |
7 | 213 #endif |
214 | |
215 #ifdef FEAT_TOOLBAR | |
2980 | 216 static PhImage_t *gui_ph_toolbar_find_icon(vimmenu_T *menu); |
7 | 217 #endif |
218 | |
2980 | 219 static void gui_ph_draw_start(void); |
220 static void gui_ph_draw_end(void); | |
7 | 221 |
222 /* Set the text for the balloon */ | |
2980 | 223 static PtWidget_t * gui_ph_show_tooltip(PtWidget_t *window, |
7 | 224 PtWidget_t *widget, |
225 int position, | |
226 char *text, | |
227 char *font, | |
228 PgColor_t fill_color, | |
2980 | 229 PgColor_t text_color); |
7 | 230 |
231 /****************************************************************************/ | |
232 | |
2980 | 233 static PtWidget_t * gui_ph_show_tooltip(PtWidget_t *window, |
7 | 234 PtWidget_t *widget, |
235 int position, | |
236 char *text, | |
237 char *font, | |
238 PgColor_t fill_color, | |
2980 | 239 PgColor_t text_color) |
7 | 240 { |
241 PtArg_t arg; | |
242 vimmenu_T *menu; | |
243 char_u *tooltip; | |
244 | |
2980 | 245 PtSetArg(&arg, Pt_ARG_POINTER, &menu, 0); |
246 PtGetResources(widget, 1, &arg); | |
7 | 247 |
248 /* Override the text and position */ | |
249 | |
250 tooltip = text; | |
2980 | 251 if (menu != NULL) |
7 | 252 { |
253 int index = MENU_INDEX_TIP; | |
2980 | 254 if (menu->strings[ index ] != NULL) |
7 | 255 tooltip = menu->strings[ index ]; |
256 } | |
257 | |
2980 | 258 return PtInflateBalloon( |
7 | 259 window, |
260 widget, | |
261 /* Don't put the balloon at the bottom, | |
262 * it gets drawn over by gfx done in the PtRaw */ | |
263 Pt_BALLOON_TOP, | |
264 tooltip, | |
265 font, | |
266 fill_color, | |
2980 | 267 text_color); |
7 | 268 } |
269 | |
270 static void | |
2980 | 271 gui_ph_resize_container(void) |
7 | 272 { |
273 PhArea_t area; | |
274 | |
2980 | 275 PtWidgetArea(gui.vimWindow, &area); |
276 PtWidgetPos (gui.vimContainer, &area.pos); | |
277 | |
278 PtSetResource(gui.vimContainer, Pt_ARG_AREA, &area, 0); | |
7 | 279 } |
280 | |
281 static int | |
282 gui_ph_handle_menu_resize( | |
283 PtWidget_t *widget, | |
284 void *other, | |
2980 | 285 PtCallbackInfo_t *info) |
7 | 286 { |
287 PtContainerCallback_t *sizes = info->cbdata; | |
288 PtWidget_t *container; | |
289 PhPoint_t below_menu; | |
290 int_u height; | |
291 | |
292 height = sizes->new_dim.h; | |
293 | |
1214 | 294 /* Because vim treats the toolbar and menubar separately, |
7 | 295 * and here they're lumped together into a PtToolbarGroup, |
296 * we only need either menu_height or toolbar_height set at once */ | |
2980 | 297 if (gui.menu_is_active) |
7 | 298 { |
299 gui.menu_height = height; | |
300 gui.toolbar_height = 0; | |
301 } | |
302 #ifdef FEAT_TOOLBAR | |
303 else | |
304 gui.toolbar_height = height; | |
305 #endif | |
306 | |
307 below_menu.x = 0; | |
308 below_menu.y = height; | |
309 | |
310 #ifdef USE_PANEL_GROUP | |
311 container = gui.vimPanelGroup; | |
312 #else | |
313 container = gui.vimContainer; | |
314 #endif | |
315 | |
2980 | 316 PtSetResource(container, Pt_ARG_POS, &below_menu, 0); |
7 | 317 |
318 gui_ph_resize_container(); | |
319 | |
320 #ifdef USE_PANEL_GROUP | |
321 gui_ph_get_panelgroup_margins( | |
322 &pg_margin_top, &pg_margin_bottom, | |
2980 | 323 &pg_margin_left, &pg_margin_right); |
7 | 324 #endif |
2980 | 325 return Pt_CONTINUE; |
7 | 326 } |
327 | |
328 /* | |
329 * Pt_ARG_TIMER_REPEAT isn't used because the on & off times | |
330 * are different | |
331 */ | |
332 static int | |
333 gui_ph_handle_timer_cursor( | |
334 PtWidget_t *widget, | |
335 void *data, | |
2980 | 336 PtCallbackInfo_t *info) |
7 | 337 { |
2980 | 338 if (blink_state == BLINK_ON) |
7 | 339 { |
340 gui_undraw_cursor(); | |
341 blink_state = BLINK_OFF; | |
2980 | 342 PtSetResource(gui_ph_timer_cursor, Pt_ARG_TIMER_INITIAL, |
343 blink_offtime, 0); | |
7 | 344 } |
345 else | |
346 { | |
347 gui_update_cursor(TRUE, FALSE); | |
348 blink_state = BLINK_ON; | |
2980 | 349 PtSetResource(gui_ph_timer_cursor, Pt_ARG_TIMER_INITIAL, |
350 blink_ontime, 0); | |
7 | 351 } |
2980 | 352 return Pt_CONTINUE; |
7 | 353 } |
354 | |
355 static int | |
356 gui_ph_handle_timer_timeout(PtWidget_t *widget, void *data, PtCallbackInfo_t *info) | |
357 { | |
358 is_timeout = TRUE; | |
359 | |
2980 | 360 return Pt_CONTINUE; |
7 | 361 } |
362 | |
363 static int | |
2998 | 364 gui_ph_handle_window_cb(PtWidget_t *widget, void *data, PtCallbackInfo_t *info) |
7 | 365 { |
366 PhWindowEvent_t *we = info->cbdata; | |
367 ushort_t *width, *height; | |
368 | |
2998 | 369 switch (we->event_f) { |
7 | 370 case Ph_WM_CLOSE: |
371 gui_shell_closed(); | |
372 break; | |
373 | |
374 case Ph_WM_FOCUS: | |
375 /* Just in case it's hidden and needs to be shown */ | |
2998 | 376 gui_mch_mousehide(MOUSE_SHOW); |
377 | |
378 if (we->event_state == Ph_WM_EVSTATE_FOCUS) | |
7 | 379 { |
380 gui_focus_change(TRUE); | |
381 gui_mch_start_blink(); | |
382 } | |
383 else | |
384 { | |
385 gui_focus_change(FALSE); | |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
11745
diff
changeset
|
386 gui_mch_stop_blink(TRUE); |
7 | 387 } |
388 break; | |
389 | |
390 case Ph_WM_RESIZE: | |
2998 | 391 PtGetResource(gui.vimWindow, Pt_ARG_WIDTH, &width, 0); |
392 PtGetResource(gui.vimWindow, Pt_ARG_HEIGHT, &height, 0); | |
7 | 393 #ifdef USE_PANEL_GROUP |
394 width -= (pg_margin_left + pg_margin_right); | |
395 height -= (pg_margin_top + pg_margin_bottom); | |
396 #endif | |
2998 | 397 gui_resize_shell(*width, *height); |
398 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH); | |
7 | 399 is_ignore_draw = FALSE; |
2998 | 400 PtEndFlux(gui.vimContainer); |
401 PtContainerRelease(gui.vimContainer); | |
7 | 402 break; |
403 | |
404 default: | |
405 break; | |
406 } | |
407 | |
2980 | 408 return Pt_CONTINUE; |
7 | 409 } |
410 | |
411 static int | |
2998 | 412 gui_ph_handle_scrollbar(PtWidget_t *widget, void *data, PtCallbackInfo_t *info) |
7 | 413 { |
414 PtScrollbarCallback_t *scroll; | |
415 scrollbar_T *sb; | |
416 int value, dragging = FALSE; | |
417 | |
418 scroll = info->cbdata; | |
419 | |
420 sb = (scrollbar_T *) data; | |
2998 | 421 if (sb != NULL) |
7 | 422 { |
423 value = scroll->position; | |
2998 | 424 switch (scroll->action) |
7 | 425 { |
426 case Pt_SCROLL_DRAGGED: | |
427 dragging = TRUE; | |
428 break; | |
429 | |
430 case Pt_SCROLL_SET: | |
431 /* FIXME: return straight away here? */ | |
2980 | 432 return Pt_CONTINUE; |
7 | 433 break; |
434 } | |
435 | |
436 gui_drag_scrollbar(sb, value, dragging); | |
437 } | |
2980 | 438 return Pt_CONTINUE; |
7 | 439 } |
440 | |
441 static int | |
2998 | 442 gui_ph_handle_keyboard(PtWidget_t *widget, void *data, PtCallbackInfo_t *info) |
7 | 443 { |
444 PhKeyEvent_t *key; | |
445 unsigned char string[6]; | |
446 int len, i; | |
447 int ch, modifiers; | |
448 | |
2998 | 449 key = PhGetData(info->event); |
7 | 450 |
451 ch = modifiers = len = 0; | |
452 | |
2998 | 453 if (p_mh) |
454 gui_mch_mousehide(MOUSE_HIDE); | |
7 | 455 |
456 /* We're a good lil photon program, aren't we? yes we are, yeess wee arrr */ | |
2998 | 457 if (key->key_flags & Pk_KF_Compose) |
7 | 458 { |
2980 | 459 return Pt_CONTINUE; |
7 | 460 } |
461 | |
2998 | 462 if ((key->key_flags & Pk_KF_Cap_Valid) && |
463 PkIsKeyDown(key->key_flags)) | |
7 | 464 { |
465 #ifdef FEAT_MENU | |
466 /* | |
467 * Only show the menu if the Alt key is down, and the Shift & Ctrl | |
468 * keys aren't down, as well as the other conditions | |
469 */ | |
2998 | 470 if (((key->key_mods & Pk_KM_Alt) && |
471 !(key->key_mods & Pk_KM_Shift) && | |
472 !(key->key_mods & Pk_KM_Ctrl)) && | |
7 | 473 gui.menu_is_active && |
2998 | 474 (*p_wak == 'y' || |
475 (*p_wak == 'm' && | |
476 gui_is_menu_shortcut(key->key_cap)))) | |
7 | 477 { |
478 /* Fallthrough and let photon look for the hotkey */ | |
2980 | 479 return Pt_CONTINUE; |
7 | 480 } |
481 #endif | |
482 | |
3076 | 483 for (i = 0; special_keys[i].key_sym != 0; i++) |
7 | 484 { |
2998 | 485 if (special_keys[i].key_sym == key->key_cap) |
7 | 486 { |
487 len = 0; | |
2998 | 488 if (special_keys[i].vim_code1 == NUL) |
7 | 489 ch = special_keys[i].vim_code0; |
490 else | |
491 { | |
492 /* Detect if a keypad number key has been pressed | |
493 * and change the key if Num Lock is on */ | |
2998 | 494 if (key->key_cap >= Pk_KP_Enter && key->key_cap <= Pk_KP_9 |
495 && (key->key_mods & Pk_KM_Num_Lock)) | |
7 | 496 { |
497 /* FIXME: For now, just map the key to a ascii value | |
498 * (see <photon/PkKeyDef.h>) */ | |
499 ch = key->key_cap - 0xf080; | |
500 } | |
501 else | |
2998 | 502 ch = TO_SPECIAL(special_keys[i].vim_code0, |
503 special_keys[i].vim_code1); | |
7 | 504 } |
505 break; | |
506 } | |
507 } | |
508 | |
2998 | 509 if (key->key_mods & Pk_KM_Ctrl) |
7 | 510 modifiers |= MOD_MASK_CTRL; |
2998 | 511 if (key->key_mods & Pk_KM_Alt) |
7 | 512 modifiers |= MOD_MASK_ALT; |
2998 | 513 if (key->key_mods & Pk_KM_Shift) |
7 | 514 modifiers |= MOD_MASK_SHIFT; |
515 | |
516 /* Is this not a special key? */ | |
2998 | 517 if (special_keys[i].key_sym == 0) |
7 | 518 { |
2998 | 519 ch = PhTo8859_1(key); |
520 if (ch == -1 | |
7 | 521 #ifdef FEAT_MBYTE |
2998 | 522 || (enc_utf8 && ch > 127) |
7 | 523 #endif |
524 ) | |
525 { | |
526 #ifdef FEAT_MBYTE | |
2998 | 527 len = PhKeyToMb(string, key); |
528 if (len > 0) | |
7 | 529 { |
530 static char buf[6]; | |
531 int src_taken, dst_made; | |
2998 | 532 if (enc_utf8 != TRUE) |
7 | 533 { |
534 PxTranslateFromUTF( | |
535 charset_translate, | |
536 string, | |
537 len, | |
538 &src_taken, | |
539 buf, | |
540 6, | |
3054 | 541 &dst_made); |
542 | |
543 add_to_input_buf(buf, dst_made); | |
7 | 544 } |
545 else | |
546 { | |
3054 | 547 add_to_input_buf(string, len); |
7 | 548 } |
549 | |
2980 | 550 return Pt_CONSUME; |
7 | 551 } |
552 len = 0; | |
553 #endif | |
554 ch = key->key_cap; | |
3054 | 555 if (ch < 0xff) |
7 | 556 { |
557 /* FIXME: is this the right thing to do? */ | |
3054 | 558 if (modifiers & MOD_MASK_CTRL) |
7 | 559 { |
560 modifiers &= ~MOD_MASK_CTRL; | |
561 | |
3054 | 562 if ((ch >= 'a' && ch <= 'z') || |
7 | 563 ch == '[' || |
564 ch == ']' || | |
3054 | 565 ch == '\\') |
566 ch = Ctrl_chr(ch); | |
567 else if (ch == '2') | |
7 | 568 ch = NUL; |
3054 | 569 else if (ch == '6') |
7 | 570 ch = 0x1e; |
3054 | 571 else if (ch == '-') |
7 | 572 ch = 0x1f; |
573 else | |
574 modifiers |= MOD_MASK_CTRL; | |
575 } | |
576 | |
3054 | 577 if (modifiers & MOD_MASK_ALT) |
7 | 578 { |
3054 | 579 ch = Meta(ch); |
7 | 580 modifiers &= ~MOD_MASK_ALT; |
581 } | |
582 } | |
583 else | |
584 { | |
2980 | 585 return Pt_CONTINUE; |
7 | 586 } |
587 } | |
588 else | |
589 modifiers &= ~MOD_MASK_SHIFT; | |
590 } | |
591 | |
3054 | 592 ch = simplify_key(ch, &modifiers); |
593 if (modifiers) | |
7 | 594 { |
595 string[ len++ ] = CSI; | |
596 string[ len++ ] = KS_MODIFIER; | |
597 string[ len++ ] = modifiers; | |
598 } | |
599 | |
3054 | 600 if (IS_SPECIAL(ch)) |
7 | 601 { |
602 string[ len++ ] = CSI; | |
3054 | 603 string[ len++ ] = K_SECOND(ch); |
604 string[ len++ ] = K_THIRD(ch); | |
7 | 605 } |
606 else | |
607 { | |
608 string[ len++ ] = ch; | |
609 } | |
610 | |
611 if (len == 1 && ((ch == Ctrl_C && ctrl_c_interrupts) | |
612 || ch == intr_char)) | |
613 { | |
614 trash_input_buf(); | |
615 got_int = TRUE; | |
616 } | |
617 | |
618 if (len == 1 && string[0] == CSI) | |
619 { | |
620 /* Turn CSI into K_CSI. */ | |
621 string[ len++ ] = KS_EXTRA; | |
622 string[ len++ ] = KE_CSI; | |
623 } | |
624 | |
3054 | 625 if (len > 0) |
7 | 626 { |
3054 | 627 add_to_input_buf(string, len); |
2980 | 628 return Pt_CONSUME; |
7 | 629 } |
630 } | |
631 | |
2980 | 632 return Pt_CONTINUE; |
7 | 633 } |
634 | |
635 static int | |
3054 | 636 gui_ph_handle_mouse(PtWidget_t *widget, void *data, PtCallbackInfo_t *info) |
7 | 637 { |
638 PhPointerEvent_t *pointer; | |
639 PhRect_t *pos; | |
640 int button = 0, repeated_click, modifiers = 0x0; | |
641 short mouse_x, mouse_y; | |
642 | |
3054 | 643 pointer = PhGetData(info->event); |
644 pos = PhGetRects(info->event); | |
645 | |
646 gui_mch_mousehide(MOUSE_SHOW); | |
7 | 647 |
648 /* | |
649 * Coordinates need to be relative to the base window, | |
650 * not relative to the vimTextArea widget | |
651 */ | |
652 mouse_x = pos->ul.x + gui.border_width; | |
653 mouse_y = pos->ul.y + gui.border_width; | |
654 | |
3054 | 655 if (info->event->type == Ph_EV_PTR_MOTION_NOBUTTON) |
7 | 656 { |
3054 | 657 gui_mouse_moved(mouse_x, mouse_y); |
2980 | 658 return Pt_CONTINUE; |
7 | 659 } |
660 | |
3054 | 661 if (pointer->key_mods & Pk_KM_Shift) |
7 | 662 modifiers |= MOUSE_SHIFT; |
3054 | 663 if (pointer->key_mods & Pk_KM_Ctrl) |
7 | 664 modifiers |= MOUSE_CTRL; |
3054 | 665 if (pointer->key_mods & Pk_KM_Alt) |
7 | 666 modifiers |= MOUSE_ALT; |
667 | |
668 /* | |
669 * FIXME More than one button may be involved, but for | |
670 * now just deal with one | |
671 */ | |
3054 | 672 if (pointer->buttons & Ph_BUTTON_SELECT) |
7 | 673 button = MOUSE_LEFT; |
674 | |
3054 | 675 if (pointer->buttons & Ph_BUTTON_MENU) |
7 | 676 { |
677 button = MOUSE_RIGHT; | |
678 /* Need the absolute coordinates for the popup menu */ | |
679 abs_mouse.x = pointer->pos.x; | |
680 abs_mouse.y = pointer->pos.y; | |
681 } | |
682 | |
3054 | 683 if (pointer->buttons & Ph_BUTTON_ADJUST) |
7 | 684 button = MOUSE_MIDDLE; |
685 | |
686 /* Catch a real release (not phantom or other releases */ | |
3054 | 687 if (info->event->type == Ph_EV_BUT_RELEASE) |
7 | 688 button = MOUSE_RELEASE; |
689 | |
3054 | 690 if (info->event->type & Ph_EV_PTR_MOTION_BUTTON) |
7 | 691 button = MOUSE_DRAG; |
692 | |
693 #if 0 | |
694 /* Vim doesn't use button repeats */ | |
3054 | 695 if (info->event->type & Ph_EV_BUT_REPEAT) |
7 | 696 button = MOUSE_DRAG; |
697 #endif | |
698 | |
699 /* Don't do anything if it is one of the phantom mouse release events */ | |
3054 | 700 if ((button != MOUSE_RELEASE) || |
701 (info->event->subtype == Ph_EV_RELEASE_REAL)) | |
7 | 702 { |
703 repeated_click = (pointer->click_count >= 2) ? TRUE : FALSE; | |
704 | |
3054 | 705 gui_send_mouse_event(button , mouse_x, mouse_y, repeated_click, modifiers); |
7 | 706 } |
707 | |
2980 | 708 return Pt_CONTINUE; |
7 | 709 } |
710 | |
711 /* Handle a focus change of the PtRaw widget */ | |
712 static int | |
3054 | 713 gui_ph_handle_focus(PtWidget_t *widget, void *data, PtCallbackInfo_t *info) |
7 | 714 { |
3054 | 715 if (info->reason == Pt_CB_LOST_FOCUS) |
7 | 716 { |
3054 | 717 PtRemoveEventHandler(gui.vimTextArea, Ph_EV_PTR_MOTION_NOBUTTON, |
718 gui_ph_handle_mouse, NULL); | |
719 | |
720 gui_mch_mousehide(MOUSE_SHOW); | |
7 | 721 } |
722 else | |
723 { | |
3054 | 724 PtAddEventHandler(gui.vimTextArea, Ph_EV_PTR_MOTION_NOBUTTON, |
725 gui_ph_handle_mouse, NULL); | |
7 | 726 } |
2980 | 727 return Pt_CONTINUE; |
7 | 728 } |
729 | |
730 static void | |
3054 | 731 gui_ph_handle_raw_draw(PtWidget_t *widget, PhTile_t *damage) |
7 | 732 { |
733 PhRect_t *r; | |
734 PhPoint_t offset; | |
735 PhPoint_t translation; | |
736 | |
3054 | 737 if (is_ignore_draw == TRUE) |
7 | 738 return; |
739 | |
3054 | 740 PtSuperClassDraw(PtBasic, widget, damage); |
741 PgGetTranslation(&translation); | |
7 | 742 PgClearTranslation(); |
743 | |
744 #if 0 | |
745 /* | |
1214 | 746 * This causes some weird problems, with drawing being done from |
7 | 747 * within this raw drawing function (rather than just simple clearing |
748 * and text drawing done by gui_redraw) | |
749 * | |
750 * The main problem is when PhBlit is used, and the cursor appearing | |
751 * in places where it shouldn't | |
752 */ | |
753 out_flush(); | |
754 #endif | |
755 | |
3054 | 756 PtWidgetOffset(widget, &offset); |
757 PhTranslatePoint(&offset, PtWidgetPos(gui.vimTextArea, NULL)); | |
7 | 758 |
759 #if 1 | |
760 /* Redraw individual damage regions */ | |
3054 | 761 if (damage->next != NULL) |
7 | 762 damage = damage->next; |
763 | |
3076 | 764 while (damage != NULL) |
7 | 765 { |
766 r = &damage->rect; | |
767 gui_redraw( | |
768 r->ul.x - offset.x, r->ul.y - offset.y, | |
769 r->lr.x - r->ul.x + 1, | |
3054 | 770 r->lr.y - r->ul.y + 1); |
7 | 771 damage = damage->next; |
772 } | |
773 #else | |
774 /* Redraw the rectangle that covers all the damaged regions */ | |
775 r = &damage->rect; | |
776 gui_redraw( | |
777 r->ul.x - offset.x, r->ul.y - offset.y, | |
778 r->lr.x - r->ul.x + 1, | |
3054 | 779 r->lr.y - r->ul.y + 1); |
7 | 780 #endif |
781 | |
3054 | 782 PgSetTranslation(&translation, 0); |
7 | 783 } |
784 | |
785 static int | |
786 gui_ph_handle_pulldown_menu( | |
787 PtWidget_t *widget, | |
788 void *data, | |
3054 | 789 PtCallbackInfo_t *info) |
7 | 790 { |
3054 | 791 if (data != NULL) |
7 | 792 { |
793 vimmenu_T *menu = (vimmenu_T *) data; | |
794 | |
3054 | 795 PtPositionMenu(menu->submenu_id, NULL); |
796 PtRealizeWidget(menu->submenu_id); | |
7 | 797 } |
798 | |
2980 | 799 return Pt_CONTINUE; |
7 | 800 } |
801 | |
802 /* This is used for pulldown/popup menus and also toolbar buttons */ | |
803 static int | |
3076 | 804 gui_ph_handle_menu(PtWidget_t *widget, void *data, PtCallbackInfo_t *info) |
7 | 805 { |
3076 | 806 if (data != NULL) |
7 | 807 { |
808 vimmenu_T *menu = (vimmenu_T *) data; | |
3076 | 809 gui_menu_cb(menu); |
7 | 810 } |
2980 | 811 return Pt_CONTINUE; |
7 | 812 } |
813 | |
814 /* Stop focus from disappearing into the menubar... */ | |
815 static int | |
816 gui_ph_handle_menu_unrealized( | |
817 PtWidget_t *widget, | |
818 void *data, | |
3076 | 819 PtCallbackInfo_t *info) |
7 | 820 { |
3076 | 821 PtGiveFocus(gui.vimTextArea, NULL); |
2980 | 822 return Pt_CONTINUE; |
7 | 823 } |
824 | |
825 static int | |
826 gui_ph_handle_window_open( | |
827 PtWidget_t *widget, | |
828 void *data, | |
3076 | 829 PtCallbackInfo_t *info) |
7 | 830 { |
3076 | 831 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH); |
2980 | 832 return Pt_CONTINUE; |
7 | 833 } |
834 | |
835 /****************************************************************************/ | |
836 | |
837 #define DRAW_START gui_ph_draw_start() | |
838 #define DRAW_END gui_ph_draw_end() | |
839 | |
840 /* TODO: Set a clipping rect? */ | |
841 static void | |
3076 | 842 gui_ph_draw_start(void) |
7 | 843 { |
1922 | 844 PhGC_t *gc; |
845 | |
846 gc = PgGetGC(); | |
3076 | 847 PgSetRegion(PtWidgetRid(PtFindDisjoint(gui.vimTextArea))); |
848 PgClearClippingsCx(gc); | |
849 PgClearTranslationCx(gc); | |
850 | |
851 PtWidgetOffset(gui.vimTextArea, &gui_ph_raw_offset); | |
852 PhTranslatePoint(&gui_ph_raw_offset, PtWidgetPos(gui.vimTextArea, NULL)); | |
853 | |
854 PgSetTranslation(&gui_ph_raw_offset, Pg_RELATIVE); | |
7 | 855 } |
856 | |
857 static void | |
3076 | 858 gui_ph_draw_end(void) |
7 | 859 { |
860 gui_ph_raw_offset.x = -gui_ph_raw_offset.x; | |
861 gui_ph_raw_offset.y = -gui_ph_raw_offset.y; | |
3076 | 862 PgSetTranslation(&gui_ph_raw_offset, Pg_RELATIVE); |
7 | 863 } |
864 | |
865 #ifdef USE_PANEL_GROUP | |
866 static vimmenu_T * | |
3076 | 867 gui_ph_find_buffer_item(char_u *name) |
7 | 868 { |
869 vimmenu_T *top_level = root_menu; | |
870 vimmenu_T *items = NULL; | |
871 | |
3076 | 872 while (top_level != NULL && |
873 (STRCMP(top_level->dname, "Buffers") != 0)) | |
7 | 874 top_level = top_level->next; |
875 | |
3076 | 876 if (top_level != NULL) |
7 | 877 { |
878 items = top_level->children; | |
879 | |
3076 | 880 while (items != NULL && |
881 (STRCMP(items->dname, name) != 0)) | |
7 | 882 items = items->next; |
883 } | |
2980 | 884 return items; |
7 | 885 } |
886 | |
887 static void | |
3076 | 888 gui_ph_pg_set_buffer_num(int_u buf_num) |
7 | 889 { |
890 int i; | |
891 char search[16]; | |
892 char *mark; | |
893 | |
3076 | 894 if (gui.vimTextArea == NULL || buf_num == 0) |
7 | 895 return; |
896 | |
897 search[0] = '('; | |
3076 | 898 ultoa(buf_num, &search[1], 10); |
899 STRCAT(search, ")"); | |
900 | |
901 for (i = 0; i < num_panels; i++) | |
7 | 902 { |
903 /* find the last "(" in the panel title and see if the buffer | |
904 * number in the title matches the one we're looking for */ | |
3076 | 905 mark = STRRCHR(panel_titles[ i ], '('); |
906 if (mark != NULL && STRCMP(mark, search) == 0) | |
7 | 907 { |
3076 | 908 PtSetResource(gui.vimPanelGroup, Pt_ARG_PG_CURRENT_INDEX, |
909 i, 0); | |
7 | 910 } |
911 } | |
912 } | |
913 | |
914 static int | |
915 gui_ph_handle_pg_change( | |
916 PtWidget_t *widget, | |
917 void *data, | |
3076 | 918 PtCallbackInfo_t *info) |
7 | 919 { |
920 vimmenu_T *menu; | |
921 PtPanelGroupCallback_t *panel; | |
922 | |
3076 | 923 if (info->event != NULL) |
7 | 924 { |
925 panel = info->cbdata; | |
3076 | 926 if (panel->new_panel != NULL) |
7 | 927 { |
3076 | 928 menu = gui_ph_find_buffer_item(panel->new_panel); |
929 if (menu) | |
930 gui_menu_cb(menu); | |
7 | 931 } |
932 } | |
2980 | 933 return Pt_CONTINUE; |
7 | 934 } |
935 | |
936 static void | |
937 gui_ph_get_panelgroup_margins( | |
938 short *top, | |
939 short *bottom, | |
940 short *left, | |
3076 | 941 short *right) |
7 | 942 { |
943 unsigned short abs_raw_x, abs_raw_y, abs_panel_x, abs_panel_y; | |
944 const unsigned short *margin_top, *margin_bottom; | |
945 const unsigned short *margin_left, *margin_right; | |
946 | |
3076 | 947 PtGetAbsPosition(gui.vimTextArea, &abs_raw_x, &abs_raw_y); |
948 PtGetAbsPosition(gui.vimPanelGroup, &abs_panel_x, &abs_panel_y); | |
949 | |
950 PtGetResource(gui.vimPanelGroup, Pt_ARG_MARGIN_RIGHT, &margin_right, 0); | |
951 PtGetResource(gui.vimPanelGroup, Pt_ARG_MARGIN_BOTTOM, &margin_bottom, 0); | |
7 | 952 |
953 abs_raw_x -= abs_panel_x; | |
954 abs_raw_y -= abs_panel_y; | |
955 | |
956 *top = abs_raw_y; | |
957 *bottom = *margin_bottom; | |
958 | |
959 *left = abs_raw_x; | |
960 *right = *margin_right; | |
961 } | |
962 | |
963 /* Used for the tabs for PtPanelGroup */ | |
964 static int | |
3076 | 965 gui_ph_is_buffer_item(vimmenu_T *menu, vimmenu_T *parent) |
7 | 966 { |
967 char *mark; | |
968 | |
3076 | 969 if (STRCMP(parent->dname, "Buffers") == 0) |
7 | 970 { |
971 /* Look for '(' digits ')' */ | |
3076 | 972 mark = vim_strchr(menu->dname, '('); |
973 if (mark != NULL) | |
7 | 974 { |
975 mark++; | |
3076 | 976 while (isdigit(*mark)) |
7 | 977 mark++; |
978 | |
3076 | 979 if (*mark == ')') |
2980 | 980 return TRUE; |
7 | 981 } |
982 } | |
2980 | 983 return FALSE; |
7 | 984 } |
985 | |
986 static void | |
3076 | 987 gui_ph_pg_add_buffer(char *name) |
7 | 988 { |
989 char **new_titles = NULL; | |
990 | |
3076 | 991 new_titles = (char **) alloc((num_panels + 1) * sizeof(char **)); |
992 if (new_titles != NULL) | |
7 | 993 { |
3076 | 994 if (num_panels > 0) |
995 memcpy(new_titles, panel_titles, num_panels * sizeof(char **)); | |
7 | 996 |
997 new_titles[ num_panels++ ] = name; | |
998 | |
3076 | 999 PtSetResource(gui.vimPanelGroup, Pt_ARG_PG_PANEL_TITLES, new_titles, |
1000 num_panels); | |
1001 | |
1002 vim_free(panel_titles); | |
7 | 1003 panel_titles = new_titles; |
1004 } | |
1005 } | |
1006 | |
1007 static void | |
3076 | 1008 gui_ph_pg_remove_buffer(char *name) |
7 | 1009 { |
1010 int i; | |
1011 char **new_titles = NULL; | |
1012 | |
1013 /* If there is only 1 panel, we just use the temporary place holder */ | |
3076 | 1014 if (num_panels > 1) |
7 | 1015 { |
3076 | 1016 new_titles = (char **) alloc((num_panels - 1) * sizeof(char **)); |
1017 if (new_titles != NULL) | |
7 | 1018 { |
1019 char **s = new_titles; | |
1020 /* Copy all the titles except the one we're removing */ | |
3076 | 1021 for (i = 0; i < num_panels; i++) |
7 | 1022 { |
3076 | 1023 if (STRCMP(panel_titles[ i ], name) != 0) |
7 | 1024 { |
1025 *s++ = panel_titles[ i ]; | |
1026 } | |
1027 } | |
1028 num_panels--; | |
1029 | |
3076 | 1030 PtSetResource(gui.vimPanelGroup, Pt_ARG_PG_PANEL_TITLES, new_titles, |
1031 num_panels); | |
1032 | |
1033 vim_free(panel_titles); | |
7 | 1034 panel_titles = new_titles; |
1035 } | |
1036 } | |
1037 else | |
1038 { | |
1039 num_panels--; | |
3076 | 1040 PtSetResource(gui.vimPanelGroup, Pt_ARG_PG_PANEL_TITLES, &empty_title, |
1041 1); | |
1042 | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13152
diff
changeset
|
1043 VIM_CLEAR(panel_titles); |
7 | 1044 } |
1045 } | |
1046 | |
1047 /* When a buffer item is deleted from the buffer menu */ | |
1048 static int | |
1049 gui_ph_handle_buffer_remove( | |
1050 PtWidget_t *widget, | |
1051 void *data, | |
3076 | 1052 PtCallbackInfo_t *info) |
7 | 1053 { |
1054 vimmenu_T *menu; | |
1055 | |
3076 | 1056 if (data != NULL) |
7 | 1057 { |
1058 menu = (vimmenu_T *) data; | |
3076 | 1059 gui_ph_pg_remove_buffer(menu->dname); |
7 | 1060 } |
1061 | |
2980 | 1062 return Pt_CONTINUE; |
7 | 1063 } |
1064 #endif | |
1065 | |
1066 static int | |
3076 | 1067 gui_ph_pane_resize(PtWidget_t *widget, void *data, PtCallbackInfo_t *info) |
7 | 1068 { |
3076 | 1069 if (PtWidgetIsRealized(widget)) |
7 | 1070 { |
1071 is_ignore_draw = TRUE; | |
3076 | 1072 PtStartFlux(gui.vimContainer); |
1073 PtContainerHold(gui.vimContainer); | |
7 | 1074 } |
1075 | |
2980 | 1076 return Pt_CONTINUE; |
7 | 1077 } |
1078 | |
1079 /****************************************************************************/ | |
1080 | |
1081 #ifdef FEAT_MBYTE | |
1082 void | |
3076 | 1083 gui_ph_encoding_changed(int new_encoding) |
7 | 1084 { |
1085 /* Default encoding is latin1 */ | |
1086 char *charset = "latin1"; | |
1087 int i; | |
1088 | |
1089 struct { | |
1090 int encoding; | |
1091 char *name; | |
1092 } charsets[] = { | |
1093 { DBCS_JPN, "SHIFT_JIS" }, | |
1094 { DBCS_KOR, "csEUCKR" }, | |
1095 { DBCS_CHT, "big5" }, | |
1096 { DBCS_CHS, "gb" } | |
1097 }; | |
1098 | |
3076 | 1099 for (i = 0; i < ARRAY_LENGTH(charsets); i++) |
7 | 1100 { |
3076 | 1101 if (new_encoding == charsets[ i ].encoding) |
7 | 1102 charset = charsets[ i ].name; |
1103 } | |
1104 | |
3076 | 1105 charset_translate = PxTranslateSet(charset_translate, charset); |
7 | 1106 } |
1107 #endif | |
1108 | |
1109 /****************************************************************************/ | |
1110 /****************************************************************************/ | |
1111 | |
1112 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
4352
diff
changeset
|
1113 gui_mch_prepare(int *argc, char **argv) |
7 | 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 | |
4352 | 1156 /* Put in a temporary 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 | |
4352 | 1527 /* Count string length and number of separators */ |
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 | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
4352
diff
changeset
|
1720 gui_mch_set_foreground(void) |
7 | 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 | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
4352
diff
changeset
|
1860 mch_set_mouse_shape(int shape) |
7 | 1861 { |
1862 int id; | |
1863 | |
1864 if (!gui.in_use) | |
1865 return; | |
1866 | |
1867 if (shape == MSHAPE_HIDE || gui.pointer_hidden) | |
3076 | 1868 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_TYPE, Ph_CURSOR_NONE, |
1869 0); | |
7 | 1870 else |
1871 { | |
1872 if (shape >= MSHAPE_NUMBERED) | |
1873 id = Ph_CURSOR_POINTER; | |
1874 else | |
1875 id = mshape_ids[shape]; | |
1876 | |
3076 | 1877 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_TYPE, id, 0); |
7 | 1878 } |
1879 if (shape != MSHAPE_HIDE) | |
1880 last_shape = shape; | |
1881 } | |
1882 #endif | |
1883 | |
1884 void | |
1885 gui_mch_mousehide(int hide) | |
1886 { | |
3076 | 1887 if (gui.pointer_hidden != hide) |
7 | 1888 { |
1889 gui.pointer_hidden = hide; | |
1890 #ifdef FEAT_MOUSESHAPE | |
3076 | 1891 if (hide) |
1892 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_TYPE, | |
1893 Ph_CURSOR_NONE, 0); | |
7 | 1894 else |
3076 | 1895 mch_set_mouse_shape(last_shape); |
7 | 1896 #else |
3076 | 1897 PtSetResource(gui.vimTextArea, Pt_ARG_CURSOR_TYPE, |
1898 (hide == MOUSE_SHOW) ? GUI_PH_MOUSE_TYPE : Ph_CURSOR_NONE, | |
1899 0); | |
7 | 1900 #endif |
1901 } | |
1902 } | |
1903 | |
95 | 1904 void |
87 | 1905 gui_mch_getmouse(int *x, int *y) |
7 | 1906 { |
1907 PhCursorInfo_t info; | |
87 | 1908 short ix, iy; |
7 | 1909 |
1910 /* FIXME: does this return the correct position, | |
1911 * with respect to the border? */ | |
3076 | 1912 PhQueryCursor(PhInputGroup(NULL), &info); |
1913 PtGetAbsPosition(gui.vimTextArea , &ix, &iy); | |
87 | 1914 |
1915 *x = info.pos.x - ix; | |
1916 *y = info.pos.y - iy; | |
7 | 1917 } |
1918 | |
1919 void | |
1920 gui_mch_setmouse(int x, int y) | |
1921 { | |
1922 short abs_x, abs_y; | |
1923 | |
3076 | 1924 PtGetAbsPosition(gui.vimTextArea, &abs_x, &abs_y); |
7 | 1925 /* Add the border offset? */ |
3076 | 1926 PhMoveCursorAbs(PhInputGroup(NULL), abs_x + x, abs_y + y); |
7 | 1927 } |
1928 | |
1929 /****************************************************************************/ | |
1930 /* Colours */ | |
1931 | |
1932 /* | |
1933 * Return the RGB value of a pixel as a long. | |
1934 */ | |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
1935 guicolor_T |
7 | 1936 gui_mch_get_rgb(guicolor_T pixel) |
1937 { | |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
1938 return (guicolor_T)(PgRGB(PgRedValue(pixel), |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9428
diff
changeset
|
1939 PgGreenValue(pixel), PgBlueValue(pixel))); |
7 | 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 /* | |
1214 | 1975 * This should be split out into a separate file, |
7 | 1976 * every port does basically the same thing. |
1977 * | |
1978 * This is the gui_w32.c version (i think..) | |
1979 * Return INVALCOLOR when failed. | |
1980 */ | |
1981 | |
1982 guicolor_T | |
1983 gui_mch_get_color(char_u *name) | |
1984 { | |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
1985 return gui_get_color_cmn(name); |
7 | 1986 } |
1987 | |
11745
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1988 guicolor_T |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1989 gui_mch_get_rgb_color(int r, int g, int b) |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1990 { |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1991 return gui_get_rgb_color_cmn(r, g, b); |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1992 } |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1993 |
7 | 1994 void |
1995 gui_mch_set_fg_color(guicolor_T color) | |
1996 { | |
3076 | 1997 PgSetTextColor(color); |
7 | 1998 } |
1999 | |
2000 void | |
2001 gui_mch_set_bg_color(guicolor_T color) | |
2002 { | |
3076 | 2003 PgSetFillColor(color); |
7 | 2004 } |
2005 | |
2006 void | |
205 | 2007 gui_mch_set_sp_color(guicolor_T color) |
2008 { | |
2009 } | |
2010 | |
2011 void | |
7 | 2012 gui_mch_invert_rectangle(int row, int col, int nr, int nc) |
2013 { | |
2014 PhRect_t rect; | |
2015 | |
3076 | 2016 rect.ul.x = FILL_X(col); |
2017 rect.ul.y = FILL_Y(row); | |
7 | 2018 |
2019 /* FIXME: This has an off by one pixel problem */ | |
2020 rect.lr.x = rect.ul.x + nc * gui.char_width; | |
2021 rect.lr.y = rect.ul.y + nr * gui.char_height; | |
3076 | 2022 if (nc > 0) |
7 | 2023 rect.lr.x -= 1; |
3076 | 2024 if (nr > 0) |
7 | 2025 rect.lr.y -= 1; |
2026 | |
2027 DRAW_START; | |
3076 | 2028 PgSetDrawMode(Pg_DrawModeDSTINVERT); |
2029 PgDrawRect(&rect, Pg_DRAW_FILL); | |
2030 PgSetDrawMode(Pg_DrawModeSRCCOPY); | |
7 | 2031 DRAW_END; |
2032 } | |
2033 | |
2034 void | |
2035 gui_mch_clear_block(int row1, int col1, int row2, int col2) | |
2036 { | |
2037 PhRect_t block = { | |
3076 | 2038 { FILL_X(col1), FILL_Y(row1) }, |
2039 { FILL_X(col2 + 1) - 1, FILL_Y(row2 + 1) - 1} | |
7 | 2040 }; |
2041 | |
2042 DRAW_START; | |
3076 | 2043 gui_mch_set_bg_color(gui.back_pixel); |
2044 PgDrawRect(&block, Pg_DRAW_FILL); | |
7 | 2045 DRAW_END; |
2046 } | |
2047 | |
2048 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
4352
diff
changeset
|
2049 gui_mch_clear_all(void) |
7 | 2050 { |
2051 PhRect_t text_rect = { | |
2052 { gui.border_width, gui.border_width }, | |
2053 { Columns * gui.char_width + gui.border_width - 1 , | |
2054 Rows * gui.char_height + gui.border_width - 1 } | |
2055 }; | |
2056 | |
3076 | 2057 if (is_ignore_draw == TRUE) |
7 | 2058 return; |
2059 | |
2060 DRAW_START; | |
3076 | 2061 gui_mch_set_bg_color(gui.back_pixel); |
2062 PgDrawRect(&text_rect, Pg_DRAW_FILL); | |
7 | 2063 DRAW_END; |
2064 } | |
2065 | |
2066 void | |
2067 gui_mch_delete_lines(int row, int num_lines) | |
2068 { | |
2069 PhRect_t rect; | |
2070 PhPoint_t delta; | |
2071 | |
3076 | 2072 rect.ul.x = FILL_X(gui.scroll_region_left); |
2073 rect.ul.y = FILL_Y(row + num_lines); | |
2074 | |
2075 rect.lr.x = FILL_X(gui.scroll_region_right + 1) - 1; | |
2076 rect.lr.y = FILL_Y(gui.scroll_region_bot + 1) - 1; | |
2077 | |
2078 PtWidgetOffset(gui.vimTextArea, &gui_ph_raw_offset); | |
2079 PhTranslatePoint(&gui_ph_raw_offset, PtWidgetPos(gui.vimTextArea, NULL)); | |
2080 PhTranslateRect(&rect, &gui_ph_raw_offset); | |
7 | 2081 |
2082 delta.x = 0; | |
2083 delta.y = -num_lines * gui.char_height; | |
2084 | |
2085 PgFlush(); | |
2086 | |
3076 | 2087 PhBlit(PtWidgetRid(PtFindDisjoint(gui.vimTextArea)), &rect, &delta); |
7 | 2088 |
2089 gui_clear_block( | |
2090 gui.scroll_region_bot - num_lines + 1, | |
2091 gui.scroll_region_left, | |
2092 gui.scroll_region_bot, | |
3076 | 2093 gui.scroll_region_right); |
7 | 2094 } |
2095 | |
2096 void | |
2097 gui_mch_insert_lines(int row, int num_lines) | |
2098 { | |
2099 PhRect_t rect; | |
2100 PhPoint_t delta; | |
2101 | |
3076 | 2102 rect.ul.x = FILL_X(gui.scroll_region_left); |
2103 rect.ul.y = FILL_Y(row); | |
2104 | |
2105 rect.lr.x = FILL_X(gui.scroll_region_right + 1) - 1; | |
2106 rect.lr.y = FILL_Y(gui.scroll_region_bot - num_lines + 1) - 1; | |
2107 | |
2108 PtWidgetOffset(gui.vimTextArea, &gui_ph_raw_offset); | |
2109 PhTranslatePoint(&gui_ph_raw_offset, PtWidgetPos(gui.vimTextArea, NULL)); | |
2110 PhTranslateRect(&rect, &gui_ph_raw_offset); | |
7 | 2111 |
2112 delta.x = 0; | |
2113 delta.y = num_lines * gui.char_height; | |
2114 | |
2115 PgFlush(); | |
2116 | |
3076 | 2117 PhBlit(PtWidgetRid(PtFindDisjoint(gui.vimTextArea)) , &rect, &delta); |
2118 | |
2119 gui_clear_block(row, gui.scroll_region_left, | |
2120 row + num_lines - 1, gui.scroll_region_right); | |
7 | 2121 } |
2122 | |
2123 void | |
2124 gui_mch_draw_string(int row, int col, char_u *s, int len, int flags) | |
2125 { | |
2126 static char *utf8_buffer = NULL; | |
2127 static int utf8_len = 0; | |
2128 | |
3076 | 2129 PhPoint_t pos = { TEXT_X(col), TEXT_Y(row) }; |
7 | 2130 PhRect_t rect; |
2131 | |
3076 | 2132 if (is_ignore_draw == TRUE) |
7 | 2133 return; |
2134 | |
2135 DRAW_START; | |
2136 | |
3076 | 2137 if (!(flags & DRAW_TRANSP)) |
7 | 2138 { |
2139 PgDrawIRect( | |
3076 | 2140 FILL_X(col), FILL_Y(row), |
2141 FILL_X(col + len) - 1, FILL_Y(row + 1) - 1, | |
2142 Pg_DRAW_FILL); | |
7 | 2143 } |
2144 | |
3076 | 2145 if (flags & DRAW_UNDERL) |
2146 PgSetUnderline(gui.norm_pixel, Pg_TRANSPARENT, 0); | |
2147 | |
2148 if (charset_translate != NULL | |
7 | 2149 #ifdef FEAT_MBYTE |
2150 && enc_utf8 == 0 | |
2151 #endif | |
3076 | 2152 ) |
7 | 2153 { |
2154 int src_taken, dst_made; | |
2155 | |
2156 /* Use a static buffer to avoid large amounts of de/allocations */ | |
3076 | 2157 if (utf8_len < len) |
7 | 2158 { |
3076 | 2159 utf8_buffer = realloc(utf8_buffer, len * MB_LEN_MAX); |
7 | 2160 utf8_len = len; |
2161 } | |
2162 | |
2163 PxTranslateToUTF( | |
2164 charset_translate, | |
2165 s, | |
2166 len, | |
2167 &src_taken, | |
2168 utf8_buffer, | |
2169 utf8_len, | |
3076 | 2170 &dst_made); |
7 | 2171 s = utf8_buffer; |
2172 len = dst_made; | |
2173 } | |
2174 | |
3076 | 2175 PgDrawText(s, len, &pos, 0); |
2176 | |
2177 if (flags & DRAW_BOLD) | |
7 | 2178 { |
2179 /* FIXME: try and only calculate these values once... */ | |
3076 | 2180 rect.ul.x = FILL_X(col) + 1; |
2181 rect.ul.y = FILL_Y(row); | |
2182 rect.lr.x = FILL_X(col + len) - 1; | |
2183 rect.lr.y = FILL_Y(row + 1) - 1; | |
2184 /* PgSetUserClip(NULL) causes the scrollbar to not redraw... */ | |
7 | 2185 #if 0 |
2186 pos.x++; | |
2187 | |
3076 | 2188 PgSetUserClip(&rect); |
2189 PgDrawText(s, len, &pos, 0); | |
2190 PgSetUserClip(NULL); | |
7 | 2191 #else |
3076 | 2192 rect.lr.y -= (p_linespace + 1) / 2; |
7 | 2193 /* XXX: DrawTextArea doesn't work with phditto */ |
3076 | 2194 PgDrawTextArea(s, len, &rect, Pg_TEXT_BOTTOM); |
7 | 2195 #endif |
2196 } | |
2197 | |
3076 | 2198 if (flags & DRAW_UNDERL) |
2199 PgSetUnderline(Pg_TRANSPARENT, Pg_TRANSPARENT, 0); | |
7 | 2200 |
2201 DRAW_END; | |
2202 } | |
2203 | |
2204 /****************************************************************************/ | |
2205 /* Cursor */ | |
2206 | |
2207 void | |
2208 gui_mch_draw_hollow_cursor(guicolor_T color) | |
2209 { | |
2210 PhRect_t r; | |
2211 | |
2212 /* FIXME: Double width characters */ | |
2213 | |
3076 | 2214 r.ul.x = FILL_X(gui.col); |
2215 r.ul.y = FILL_Y(gui.row); | |
7 | 2216 r.lr.x = r.ul.x + gui.char_width - 1; |
2217 r.lr.y = r.ul.y + gui.char_height - 1; | |
2218 | |
2219 DRAW_START; | |
3076 | 2220 PgSetStrokeColor(color); |
2221 PgDrawRect(&r, Pg_DRAW_STROKE); | |
7 | 2222 DRAW_END; |
2223 } | |
2224 | |
2225 void | |
2226 gui_mch_draw_part_cursor(int w, int h, guicolor_T color) | |
2227 { | |
2228 PhRect_t r; | |
2229 | |
3076 | 2230 r.ul.x = FILL_X(gui.col); |
2231 r.ul.y = FILL_Y(gui.row) + gui.char_height - h; | |
7 | 2232 r.lr.x = r.ul.x + w - 1; |
2233 r.lr.y = r.ul.y + h - 1; | |
2234 | |
2235 DRAW_START; | |
3076 | 2236 gui_mch_set_bg_color(color); |
2237 PgDrawRect(&r, Pg_DRAW_FILL); | |
7 | 2238 DRAW_END; |
2239 } | |
2240 | |
9213
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9013
diff
changeset
|
2241 int |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9013
diff
changeset
|
2242 gui_mch_is_blinking(void) |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9013
diff
changeset
|
2243 { |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9013
diff
changeset
|
2244 return blink_state != BLINK_NONE; |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9013
diff
changeset
|
2245 } |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9013
diff
changeset
|
2246 |
9428
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
2247 int |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
2248 gui_mch_is_blink_off(void) |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
2249 { |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
2250 return blink_state == BLINK_OFF; |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
2251 } |
0c7f47088e55
commit https://github.com/vim/vim/commit/9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
2252 |
7 | 2253 void |
2254 gui_mch_set_blinking(long wait, long on, long off) | |
2255 { | |
2256 blink_waittime = wait; | |
2257 blink_ontime = on; | |
2258 blink_offtime = off; | |
2259 } | |
2260 | |
2261 void | |
2262 gui_mch_start_blink(void) | |
2263 { | |
2264 /* Only turn on the timer on if none of the times are zero */ | |
3076 | 2265 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus) |
7 | 2266 { |
3076 | 2267 PtSetResource(gui_ph_timer_cursor, Pt_ARG_TIMER_INITIAL, |
2268 blink_waittime, 0); | |
7 | 2269 blink_state = BLINK_ON; |
2270 gui_update_cursor(TRUE, FALSE); | |
2271 } | |
2272 } | |
2273 | |
2274 void | |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
11745
diff
changeset
|
2275 gui_mch_stop_blink(int may_call_gui_update_cursor) |
7 | 2276 { |
3076 | 2277 PtSetResource(gui_ph_timer_cursor, Pt_ARG_TIMER_INITIAL, 0, 0); |
2278 | |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
11745
diff
changeset
|
2279 if (blink_state == BLINK_OFF && may_call_gui_update_cursor) |
7 | 2280 gui_update_cursor(TRUE, FALSE); |
2281 | |
2282 blink_state = BLINK_NONE; | |
2283 } | |
2284 | |
2285 /****************************************************************************/ | |
2286 /* miscellaneous functions */ | |
2287 | |
2288 void | |
2289 gui_mch_beep(void) | |
2290 { | |
2291 PtBeep(); | |
2292 } | |
2293 | |
2294 void | |
2295 gui_mch_flash(int msec) | |
2296 { | |
3076 | 2297 PgSetFillXORColor(Pg_BLACK, Pg_WHITE); |
2298 PgSetDrawMode(Pg_DRAWMODE_XOR); | |
7 | 2299 gui_mch_clear_all(); |
2300 gui_mch_flush(); | |
2301 | |
3076 | 2302 ui_delay((long) msec, TRUE); |
7 | 2303 |
2304 gui_mch_clear_all(); | |
3076 | 2305 PgSetDrawMode(Pg_DRAWMODE_OPAQUE); |
7 | 2306 gui_mch_flush(); |
2307 } | |
2308 | |
2309 void | |
2310 gui_mch_flush(void) | |
2311 { | |
2312 PgFlush(); | |
2313 } | |
2314 | |
2315 void | |
2316 gui_mch_set_text_area_pos(int x, int y, int w, int h) | |
2317 { | |
2318 PhArea_t area = {{x, y}, {w, h}}; | |
2319 | |
3076 | 2320 PtSetResource(gui.vimTextArea, Pt_ARG_AREA, &area, 0); |
7 | 2321 } |
2322 | |
2323 int | |
2324 gui_mch_haskey(char_u *name) | |
2325 { | |
2326 int i; | |
2327 | |
2328 for (i = 0; special_keys[i].key_sym != 0; i++) | |
2329 if (name[0] == special_keys[i].vim_code0 && | |
2330 name[1] == special_keys[i].vim_code1) | |
2980 | 2331 return OK; |
2332 return FAIL; | |
7 | 2333 } |
2334 | |
2335 /****************************************************************************/ | |
2336 /* Menu */ | |
2337 | |
2338 #ifdef FEAT_TOOLBAR | |
2339 #include "toolbar.phi" | |
2340 | |
2341 static PhImage_t *gui_ph_toolbar_images[] = { | |
2342 &tb_new_phi, | |
2343 &tb_open_phi, | |
2344 &tb_save_phi, | |
2345 &tb_undo_phi, | |
2346 &tb_redo_phi, | |
2347 &tb_cut_phi, | |
2348 &tb_copy_phi, | |
2349 &tb_paste_phi, | |
2350 &tb_print_phi, | |
2351 &tb_help_phi, | |
2352 &tb_find_phi, | |
2353 &tb_save_all_phi, | |
2354 &tb_save_session_phi, | |
2355 &tb_new_session_phi, | |
2356 &tb_load_session_phi, | |
2357 &tb_macro_phi, | |
2358 &tb_replace_phi, | |
2359 &tb_close_phi, | |
2360 &tb_maximize_phi, | |
2361 &tb_minimize_phi, | |
2362 &tb_split_phi, | |
2363 &tb_shell_phi, | |
2364 &tb_find_prev_phi, | |
2365 &tb_find_next_phi, | |
2366 &tb_find_help_phi, | |
2367 &tb_make_phi, | |
2368 &tb_jump_phi, | |
2369 &tb_ctags_phi, | |
2370 &tb_vsplit_phi, | |
2371 &tb_maxwidth_phi, | |
2372 &tb_minwidth_phi | |
2373 }; | |
2374 | |
2375 static PhImage_t * | |
3076 | 2376 gui_ph_toolbar_load_icon(char_u *iconfile) |
7 | 2377 { |
2378 static PhImage_t external_icon; | |
2379 PhImage_t *temp_phi = NULL; | |
2380 | |
3076 | 2381 temp_phi = PxLoadImage(iconfile, NULL); |
2382 if (temp_phi != NULL) | |
7 | 2383 { |
2384 /* The label widget will free the image/palette/etc. for us when | |
2385 * it's destroyed */ | |
2386 temp_phi->flags |= Ph_RELEASE_IMAGE_ALL; | |
3076 | 2387 memcpy(&external_icon, temp_phi, sizeof(external_icon)); |
2388 free(temp_phi); | |
7 | 2389 |
2390 temp_phi = &external_icon; | |
2391 } | |
2980 | 2392 return temp_phi; |
7 | 2393 } |
2394 | |
2395 /* | |
2396 * This returns either a builtin icon image, an external image or NULL | |
2397 * if it can't find either. The caller can't and doesn't need to try and | |
2398 * free() the returned image, and it can't store the image pointer. | |
2399 * (When setting the Pt_ARG_LABEL_IMAGE resource, the contents of the | |
2400 * PhImage_t are copied, and the original PhImage_t aren't needed anymore). | |
2401 */ | |
2402 static PhImage_t * | |
3076 | 2403 gui_ph_toolbar_find_icon(vimmenu_T *menu) |
7 | 2404 { |
2405 char_u full_pathname[ MAXPATHL + 1 ]; | |
2406 PhImage_t *icon = NULL; | |
2407 | |
3076 | 2408 if (menu->icon_builtin == FALSE) |
7 | 2409 { |
3076 | 2410 if (menu->iconfile != NULL) |
7 | 2411 /* TODO: use gui_find_iconfile() */ |
3076 | 2412 icon = gui_ph_toolbar_load_icon(menu->iconfile); |
7 | 2413 |
2414 /* TODO: Restrict loading to just .png? Search for any format? */ | |
3076 | 2415 if ((icon == NULL) && |
2416 ((gui_find_bitmap(menu->name, full_pathname, "gif") == OK) || | |
2417 (gui_find_bitmap(menu->name, full_pathname, "png") == OK))) | |
2418 icon = gui_ph_toolbar_load_icon(full_pathname); | |
2419 | |
2420 if (icon != NULL) | |
2980 | 2421 return icon; |
7 | 2422 } |
2423 | |
3076 | 2424 if (menu->iconidx >= 0 && |
2425 (menu->iconidx < ARRAY_LENGTH(gui_ph_toolbar_images))) | |
7 | 2426 { |
2980 | 2427 return gui_ph_toolbar_images[menu->iconidx]; |
7 | 2428 } |
2429 | |
2980 | 2430 return NULL; |
7 | 2431 } |
2432 #endif | |
2433 | |
3076 | 2434 #if defined(FEAT_MENU) || defined(PROTO) |
7 | 2435 void |
2436 gui_mch_enable_menu(int flag) | |
2437 { | |
3076 | 2438 if (flag != 0) |
2439 PtRealizeWidget(gui.vimMenuBar); | |
7 | 2440 else |
3076 | 2441 PtUnrealizeWidget(gui.vimMenuBar); |
7 | 2442 } |
2443 | |
2444 void | |
2445 gui_mch_set_menu_pos(int x, int y, int w, int h) | |
2446 { | |
2447 /* Nothing */ | |
2448 } | |
2449 | |
2450 /* Change the position of a menu button in the parent */ | |
2451 static void | |
3076 | 2452 gui_ph_position_menu(PtWidget_t *widget, int priority) |
7 | 2453 { |
2454 PtWidget_t *traverse; | |
2455 vimmenu_T *menu; | |
2456 | |
3076 | 2457 traverse = PtWidgetChildBack(PtWidgetParent(widget)); |
7 | 2458 |
2459 /* Iterate through the list of widgets in traverse, until | |
2460 * we find the position we want to insert our widget into */ | |
2461 /* TODO: traverse from front to back, possible speedup? */ | |
3076 | 2462 while (traverse != NULL) |
7 | 2463 { |
3076 | 2464 PtGetResource(traverse, Pt_ARG_POINTER, &menu, 0); |
2465 | |
2466 if (menu != NULL && | |
7 | 2467 priority < menu->priority && |
3076 | 2468 widget != traverse) |
7 | 2469 { |
2470 /* Insert the widget before the current traverse widget */ | |
3076 | 2471 PtWidgetInsert(widget, traverse, 1); |
7 | 2472 return; |
2473 } | |
2474 | |
3076 | 2475 traverse = PtWidgetBrotherInFront(traverse); |
7 | 2476 } |
2477 } | |
2478 | |
2479 /* the index is ignored because it's not useful for our purposes */ | |
2480 void | |
2481 gui_mch_add_menu(vimmenu_T *menu, int index) | |
2482 { | |
2483 vimmenu_T *parent = menu->parent; | |
2484 char_u *accel_key; | |
2485 char_u mnemonic_str[MB_LEN_MAX]; | |
2486 int n; | |
2487 PtArg_t args[5]; | |
2488 | |
2489 menu->submenu_id = menu->id = NULL; | |
2490 | |
3076 | 2491 if (menu_is_menubar(menu->name)) |
7 | 2492 { |
2493 | |
3076 | 2494 accel_key = vim_strchr(menu->name, '&'); |
2495 if (accel_key != NULL) | |
7 | 2496 { |
2497 mnemonic_str[0] = accel_key[1]; | |
2498 mnemonic_str[1] = NUL; | |
2499 } | |
2500 | |
2501 /* Create the menu button */ | |
2502 n = 0; | |
3076 | 2503 PtSetArg(&args[ n++ ], Pt_ARG_TEXT_STRING, menu->dname, 0); |
2504 PtSetArg(&args[ n++ ], Pt_ARG_ACCEL_TEXT, menu->actext, 0); | |
2505 if (accel_key != NULL) | |
2506 PtSetArg(&args[ n++ ], Pt_ARG_ACCEL_KEY, mnemonic_str, 0); | |
2507 PtSetArg(&args[ n++ ], Pt_ARG_POINTER, menu, 0); | |
2508 | |
2509 if (parent != NULL) | |
2510 PtSetArg(&args[ n++ ], Pt_ARG_BUTTON_TYPE, Pt_MENU_RIGHT, 0); | |
2511 | |
2512 menu->id = PtCreateWidget(PtMenuButton, | |
7 | 2513 (parent == NULL) ? gui.vimMenuBar : parent->submenu_id, |
3076 | 2514 n, args); |
2515 | |
2516 PtAddCallback(menu->id, Pt_CB_ARM, gui_ph_handle_pulldown_menu, menu); | |
7 | 2517 |
2518 /* Create the actual menu */ | |
2519 n = 0; | |
3076 | 2520 if (parent != NULL) |
2521 PtSetArg(&args[ n++ ], Pt_ARG_MENU_FLAGS, Pt_TRUE, Pt_MENU_CHILD); | |
2522 | |
2523 menu->submenu_id = PtCreateWidget(PtMenu, menu->id, n, args); | |
2524 | |
2525 if (parent == NULL) | |
7 | 2526 { |
3076 | 2527 PtAddCallback(menu->submenu_id, Pt_CB_UNREALIZED, |
2528 gui_ph_handle_menu_unrealized, menu); | |
2529 | |
2530 if (menu->mnemonic != 0) | |
7 | 2531 { |
3076 | 2532 PtAddHotkeyHandler(gui.vimWindow, tolower(menu->mnemonic), |
2533 Pk_KM_Alt, 0, menu, gui_ph_handle_pulldown_menu); | |
7 | 2534 } |
2535 } | |
2536 | |
3076 | 2537 gui_ph_position_menu(menu->id, menu->priority); |
7 | 2538 |
2539 /* Redraw menubar here instead of gui_mch_draw_menubar */ | |
3076 | 2540 if (gui.menu_is_active) |
2541 PtRealizeWidget(menu->id); | |
7 | 2542 } |
3076 | 2543 else if (menu_is_popup(menu->name)) |
7 | 2544 { |
3076 | 2545 menu->submenu_id = PtCreateWidget(PtMenu, gui.vimWindow, 0, NULL); |
2546 PtAddCallback(menu->submenu_id, Pt_CB_UNREALIZED, | |
2547 gui_ph_handle_menu_unrealized, menu); | |
7 | 2548 } |
2549 } | |
2550 | |
2551 void | |
2552 gui_mch_add_menu_item(vimmenu_T *menu, int index) | |
2553 { | |
2554 vimmenu_T *parent = menu->parent; | |
2555 char_u *accel_key; | |
2556 char_u mnemonic_str[MB_LEN_MAX]; | |
2557 int n; | |
2558 PtArg_t args[13]; | |
2559 | |
2560 n = 0; | |
3076 | 2561 PtSetArg(&args[ n++ ], Pt_ARG_POINTER, menu, 0); |
7 | 2562 |
2563 #ifdef FEAT_TOOLBAR | |
3076 | 2564 if (menu_is_toolbar(parent->name)) |
7 | 2565 { |
3076 | 2566 if (menu_is_separator(menu->name)) |
7 | 2567 { |
3076 | 2568 PtSetArg(&args[ n++ ], Pt_ARG_SEP_FLAGS, |
2569 Pt_SEP_VERTICAL, Pt_SEP_ORIENTATION); | |
2570 PtSetArg(&args[ n++ ], Pt_ARG_SEP_TYPE, Pt_ETCHED_IN, 0); | |
2571 PtSetArg(&args[ n++ ], Pt_ARG_ANCHOR_FLAGS, | |
2572 Pt_TRUE, Pt_ANCHOR_TOP_BOTTOM); | |
2573 PtSetArg(&args[ n++ ], Pt_ARG_WIDTH, 2, 0); | |
2574 menu->id = PtCreateWidget(PtSeparator, gui.vimToolBar, n, args); | |
7 | 2575 } |
2576 else | |
2577 { | |
3076 | 2578 if (strstr((const char *) p_toolbar, "text") != NULL) |
7 | 2579 { |
3076 | 2580 PtSetArg(&args[ n++ ], Pt_ARG_BALLOON_POSITION, |
2581 Pt_BALLOON_BOTTOM, 0); | |
2582 PtSetArg(&args[ n++ ], Pt_ARG_TEXT_STRING, menu->dname, 0); | |
2583 PtSetArg(&args[ n++ ], Pt_ARG_TEXT_FONT, "TextFont08", 0); | |
7 | 2584 } |
3076 | 2585 if ((strstr((const char *) p_toolbar, "icons") != NULL) && |
2586 (gui_ph_toolbar_images != NULL)) | |
7 | 2587 { |
3076 | 2588 PtSetArg(&args[ n++ ], Pt_ARG_LABEL_IMAGE, |
2589 gui_ph_toolbar_find_icon(menu), 0); | |
2590 PtSetArg(&args[ n++ ], Pt_ARG_LABEL_TYPE, Pt_TEXT_IMAGE, 0); | |
2591 PtSetArg(&args[ n++ ], Pt_ARG_TEXT_IMAGE_SPACING, 0, 0); | |
7 | 2592 } |
3076 | 2593 if (strstr((const char *) p_toolbar, "tooltips") != NULL) |
7 | 2594 { |
3076 | 2595 PtSetArg(&args[ n++ ], Pt_ARG_LABEL_BALLOON, |
2596 gui_ph_show_tooltip, 0); | |
2597 PtSetArg(&args[ n++ ], Pt_ARG_LABEL_FLAGS, | |
2598 Pt_TRUE, Pt_SHOW_BALLOON); | |
7 | 2599 } |
3076 | 2600 PtSetArg(&args[ n++ ], Pt_ARG_MARGIN_HEIGHT, 1, 0); |
2601 PtSetArg(&args[ n++ ], Pt_ARG_MARGIN_WIDTH, 1, 0); | |
2602 PtSetArg(&args[ n++ ], Pt_ARG_FLAGS, Pt_FALSE, | |
2603 Pt_HIGHLIGHTED | Pt_GETS_FOCUS); | |
2604 PtSetArg(&args[ n++ ], Pt_ARG_FILL_COLOR, Pg_TRANSPARENT, 0); | |
2605 menu->id = PtCreateWidget(PtButton, gui.vimToolBar, n, args); | |
2606 | |
2607 PtAddCallback(menu->id, Pt_CB_ACTIVATE, gui_ph_handle_menu, menu); | |
7 | 2608 } |
2609 /* Update toolbar if it's open */ | |
3076 | 2610 if (PtWidgetIsRealized(gui.vimToolBar)) |
2611 PtRealizeWidget(menu->id); | |
7 | 2612 } |
2613 else | |
2614 #endif | |
3076 | 2615 if (menu_is_separator(menu->name)) |
7 | 2616 { |
3076 | 2617 menu->id = PtCreateWidget(PtSeparator, parent->submenu_id, n, args); |
7 | 2618 } |
2619 else | |
2620 { | |
3076 | 2621 accel_key = vim_strchr(menu->name, '&'); |
2622 if (accel_key != NULL) | |
7 | 2623 { |
2624 mnemonic_str[0] = accel_key[1]; | |
2625 mnemonic_str[1] = NUL; | |
2626 } | |
2627 | |
3076 | 2628 PtSetArg(&args[ n++ ], Pt_ARG_TEXT_STRING, menu->dname, 0); |
2629 if (accel_key != NULL) | |
2630 PtSetArg(&args[ n++ ], Pt_ARG_ACCEL_KEY, mnemonic_str, | |
2631 0); | |
2632 | |
2633 PtSetArg(&args[ n++ ], Pt_ARG_ACCEL_TEXT, menu->actext, 0); | |
2634 | |
2635 menu->id = PtCreateWidget(PtMenuButton, parent->submenu_id, n, args); | |
2636 | |
2637 PtAddCallback(menu->id, Pt_CB_ACTIVATE, gui_ph_handle_menu, menu); | |
7 | 2638 |
2639 #ifdef USE_PANEL_GROUP | |
3076 | 2640 if (gui_ph_is_buffer_item(menu, parent) == TRUE) |
7 | 2641 { |
3076 | 2642 PtAddCallback(menu->id, Pt_CB_DESTROYED, |
2643 gui_ph_handle_buffer_remove, menu); | |
2644 gui_ph_pg_add_buffer(menu->dname); | |
7 | 2645 } |
2646 #endif | |
2647 } | |
2648 | |
3076 | 2649 gui_ph_position_menu(menu->id, menu->priority); |
7 | 2650 } |
2651 | |
2652 void | |
2653 gui_mch_destroy_menu(vimmenu_T *menu) | |
2654 { | |
3076 | 2655 if (menu->submenu_id != NULL) |
2656 PtDestroyWidget(menu->submenu_id); | |
2657 if (menu->id != NULL) | |
2658 PtDestroyWidget(menu->id); | |
7 | 2659 |
2660 menu->submenu_id = NULL; | |
2661 menu->id = NULL; | |
2662 } | |
2663 | |
2664 void | |
2665 gui_mch_menu_grey(vimmenu_T *menu, int grey) | |
2666 { | |
2667 long flags, mask, fields; | |
2668 | |
3076 | 2669 if (menu->id == NULL) |
7 | 2670 return; |
2671 | |
3076 | 2672 flags = PtWidgetFlags(menu->id); |
2673 if (PtWidgetIsClass(menu->id, PtMenuButton) && | |
2674 PtWidgetIsClass(PtWidgetParent(menu->id), PtMenu)) | |
7 | 2675 { |
2676 fields = Pt_FALSE; | |
2677 mask = Pt_SELECTABLE | Pt_HIGHLIGHTED; | |
2678 } | |
2679 else | |
2680 { | |
2681 fields = Pt_TRUE; | |
2682 mask = Pt_BLOCKED | Pt_GHOST; | |
2683 } | |
2684 | |
3076 | 2685 if (! grey) |
7 | 2686 fields = ~fields; |
2687 | |
3076 | 2688 PtSetResource(menu->id, Pt_ARG_FLAGS, fields, |
2689 mask); | |
7 | 2690 } |
2691 | |
2692 void | |
2693 gui_mch_menu_hidden(vimmenu_T *menu, int hidden) | |
2694 { | |
2695 /* TODO: [un]realize the widget? */ | |
2696 } | |
2697 | |
2698 void | |
2699 gui_mch_draw_menubar(void) | |
2700 { | |
2701 /* The only time a redraw is needed is when a menu button | |
2702 * is added to the menubar, and that is detected and the bar | |
2703 * redrawn in gui_mch_add_menu_item | |
2704 */ | |
2705 } | |
2706 | |
2707 void | |
2708 gui_mch_show_popupmenu(vimmenu_T *menu) | |
2709 { | |
3076 | 2710 PtSetResource(menu->submenu_id, Pt_ARG_POS, &abs_mouse, 0); |
2711 PtRealizeWidget(menu->submenu_id); | |
7 | 2712 } |
2713 | |
2714 void | |
2715 gui_mch_toggle_tearoffs(int enable) | |
2716 { | |
2717 /* No tearoffs yet */ | |
2718 } | |
2719 | |
2720 #endif | |
2721 | |
3076 | 2722 #if defined(FEAT_TOOLBAR) || defined(PROTO) |
7 | 2723 void |
2724 gui_mch_show_toolbar(int showit) | |
2725 { | |
3076 | 2726 if (showit) |
2727 PtRealizeWidget(gui.vimToolBar); | |
7 | 2728 else |
3076 | 2729 PtUnrealizeWidget(gui.vimToolBar); |
7 | 2730 } |
2731 #endif | |
2732 | |
2733 /****************************************************************************/ | |
2734 /* Fonts */ | |
2735 | |
2736 static GuiFont | |
2737 gui_ph_get_font( | |
2738 char_u *font_name, | |
2739 int_u font_flags, | |
2740 int_u font_size, | |
2741 /* Check whether the resulting font has the font flags and size that | |
2742 * was asked for */ | |
2743 int_u enforce | |
2744 ) | |
2745 { | |
2746 char_u *font_tag; | |
2747 FontQueryInfo info; | |
2748 int_u style; | |
2749 | |
3076 | 2750 font_tag = alloc(MAX_FONT_TAG); |
2751 if (font_tag != NULL) | |
7 | 2752 { |
3076 | 2753 if (PfGenerateFontName(font_name, font_flags, font_size, |
2754 font_tag) != NULL) | |
7 | 2755 { |
2756 /* Enforce some limits on the font used */ | |
2757 style = PHFONT_INFO_FIXED; | |
2758 | |
3076 | 2759 if (enforce & PF_STYLE_BOLD) |
7 | 2760 style |= PHFONT_INFO_BOLD; |
3076 | 2761 if (enforce & PF_STYLE_ANTIALIAS) |
7 | 2762 style |= PHFONT_INFO_ALIAS; |
3076 | 2763 if (enforce & PF_STYLE_ITALIC) |
7 | 2764 style |= PHFONT_INFO_ITALIC; |
2765 | |
3076 | 2766 PfQueryFontInfo(font_tag, &info); |
2767 | |
2768 if (info.size == 0) | |
7 | 2769 font_size = 0; |
2770 | |
2771 /* Make sure font size matches, and that the font style | |
2772 * at least has the bits we're checking for */ | |
3076 | 2773 if (font_size == info.size && |
2774 style == (info.style & style)) | |
2980 | 2775 return (GuiFont)font_tag; |
7 | 2776 } |
3076 | 2777 vim_free(font_tag); |
7 | 2778 } |
2980 | 2779 return NULL; |
7 | 2780 } |
2781 | |
2782 /* | |
2783 * Split up the vim font name | |
2784 * | |
2785 * vim_font is in the form of | |
2786 * <name>:s<height>:a:b:i | |
2787 * | |
2788 * a = antialias | |
2789 * b = bold | |
2790 * i = italic | |
2791 * | |
2792 */ | |
2793 | |
2794 static int | |
2795 gui_ph_parse_font_name( | |
2796 char_u *vim_font, | |
2797 char_u **font_name, | |
2798 int_u *font_flags, | |
3076 | 2799 int_u *font_size) |
7 | 2800 { |
2801 char_u *mark; | |
2802 int_u name_len, size; | |
2803 | |
3076 | 2804 mark = vim_strchr(vim_font, ':'); |
2805 if (mark == NULL) | |
2806 name_len = STRLEN(vim_font); | |
7 | 2807 else |
3076 | 2808 name_len = (int_u) (mark - vim_font); |
2809 | |
2810 *font_name = vim_strnsave(vim_font, name_len); | |
2998 | 2811 if (*font_name != NULL) |
7 | 2812 { |
2998 | 2813 if (mark != NULL) |
7 | 2814 { |
2998 | 2815 while (*mark != NUL && *mark++ == ':') |
7 | 2816 { |
2998 | 2817 switch (tolower(*mark++)) |
7 | 2818 { |
2819 case 'a': *font_flags |= PF_STYLE_ANTIALIAS; break; | |
2820 case 'b': *font_flags |= PF_STYLE_BOLD; break; | |
2821 case 'i': *font_flags |= PF_STYLE_ITALIC; break; | |
2822 | |
2823 case 's': | |
3076 | 2824 size = getdigits(&mark); |
7 | 2825 /* Restrict the size to some vague limits */ |
2998 | 2826 if (size < 1 || size > 100) |
7 | 2827 size = 8; |
2828 | |
2829 *font_size = size; | |
2830 break; | |
2831 | |
2832 default: | |
2833 break; | |
2834 } | |
2835 } | |
2836 } | |
2980 | 2837 return TRUE; |
7 | 2838 } |
2980 | 2839 return FALSE; |
7 | 2840 } |
2841 | |
2842 int | |
2843 gui_mch_init_font(char_u *vim_font_name, int fontset) | |
2844 { | |
2845 char_u *font_tag; | |
2846 char_u *font_name = NULL; | |
2847 int_u font_flags = 0; | |
2848 int_u font_size = 12; | |
2849 | |
2850 FontQueryInfo info; | |
2851 PhRect_t extent; | |
2852 | |
2998 | 2853 if (vim_font_name == NULL) |
7 | 2854 { |
2855 /* Default font */ | |
1922 | 2856 vim_font_name = "PC Terminal"; |
7 | 2857 } |
2858 | |
3076 | 2859 if (STRCMP(vim_font_name, "*") == 0) |
7 | 2860 { |
3076 | 2861 font_tag = PtFontSelection(gui.vimWindow, NULL, NULL, |
2862 "pcterm12", -1, PHFONT_FIXED, NULL); | |
7 | 2863 |
2998 | 2864 if (font_tag == NULL) |
2980 | 2865 return FAIL; |
7 | 2866 |
3076 | 2867 gui_mch_free_font(gui.norm_font); |
7 | 2868 gui.norm_font = font_tag; |
2869 | |
3076 | 2870 PfQueryFontInfo(font_tag, &info); |
2871 font_name = vim_strsave(info.font); | |
7 | 2872 } |
2873 else | |
2874 { | |
3076 | 2875 if (gui_ph_parse_font_name(vim_font_name, &font_name, &font_flags, |
2876 &font_size) == FALSE) | |
2980 | 2877 return FAIL; |
7 | 2878 |
3076 | 2879 font_tag = gui_ph_get_font(font_name, font_flags, font_size, 0); |
2998 | 2880 if (font_tag == NULL) |
7 | 2881 { |
3076 | 2882 vim_free(font_name); |
2980 | 2883 return FAIL; |
7 | 2884 } |
37 | 2885 |
3076 | 2886 gui_mch_free_font(gui.norm_font); |
7 | 2887 gui.norm_font = font_tag; |
2888 } | |
2889 | |
3076 | 2890 gui_mch_free_font(gui.bold_font); |
2891 gui.bold_font = gui_ph_get_font(font_name, font_flags | PF_STYLE_BOLD, | |
2892 font_size, PF_STYLE_BOLD); | |
2893 | |
2894 gui_mch_free_font(gui.ital_font); | |
2895 gui.ital_font = gui_ph_get_font(font_name, font_flags | PF_STYLE_ITALIC, | |
2896 font_size, PF_STYLE_ITALIC); | |
7 | 2897 |
2898 /* This extent was brought to you by the letter 'g' */ | |
3076 | 2899 PfExtentText(&extent, NULL, font_tag, "g", 1); |
7 | 2900 |
2901 gui.char_width = extent.lr.x - extent.ul.x + 1; | |
2902 gui.char_height = (- extent.ul.y) + extent.lr.y + 1; | |
2903 gui.char_ascent = - extent.ul.y; | |
2904 | |
3076 | 2905 vim_free(font_name); |
2980 | 2906 return OK; |
7 | 2907 } |
2908 | |
444 | 2909 /* |
2910 * Adjust gui.char_height (after 'linespace' was changed). | |
2911 */ | |
7 | 2912 int |
444 | 2913 gui_mch_adjust_charheight(void) |
7 | 2914 { |
2915 FontQueryInfo info; | |
2916 | |
3076 | 2917 PfQueryFontInfo(gui.norm_font, &info); |
7 | 2918 |
2919 gui.char_height = - info.ascender + info.descender + p_linespace; | |
2920 gui.char_ascent = - info.ascender + p_linespace / 2; | |
2921 | |
2980 | 2922 return OK; |
7 | 2923 } |
2924 | |
2925 GuiFont | |
2926 gui_mch_get_font(char_u *vim_font_name, int report_error) | |
2927 { | |
2928 char_u *font_name; | |
2929 char_u *font_tag; | |
2930 int_u font_size = 12; | |
2931 int_u font_flags = 0; | |
2932 | |
3076 | 2933 if (gui_ph_parse_font_name(vim_font_name, &font_name, &font_flags, |
2934 &font_size) != FALSE) | |
7 | 2935 { |
3076 | 2936 font_tag = gui_ph_get_font(font_name, font_flags, font_size, -1); |
2937 vim_free(font_name); | |
7 | 2938 |
2998 | 2939 if (font_tag != NULL) |
2980 | 2940 return (GuiFont)font_tag; |
7 | 2941 } |
2942 | |
2998 | 2943 if (report_error) |
3076 | 2944 EMSG2(e_font, vim_font_name); |
7 | 2945 |
2980 | 2946 return FAIL; |
7 | 2947 } |
2948 | |
44 | 2949 #if defined(FEAT_EVAL) || defined(PROTO) |
37 | 2950 /* |
2951 * Return the name of font "font" in allocated memory. | |
2952 * Don't know how to get the actual name, thus use the provided name. | |
2953 */ | |
2954 char_u * | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
4352
diff
changeset
|
2955 gui_mch_get_fontname(GuiFont font, char_u *name) |
37 | 2956 { |
2957 if (name == NULL) | |
2958 return NULL; | |
2959 return vim_strsave(name); | |
2960 } | |
44 | 2961 #endif |
37 | 2962 |
7 | 2963 void |
2964 gui_mch_set_font(GuiFont font) | |
2965 { | |
3076 | 2966 PgSetFont(font); |
7 | 2967 } |
2968 | |
2969 void | |
2970 gui_mch_free_font(GuiFont font) | |
2971 { | |
3076 | 2972 vim_free(font); |
7 | 2973 } |
2974 |