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