Mercurial > vim
annotate src/gui_w48.c @ 8044:0468a9228c99
Added tag v7.4.1316 for changeset 167e22951df44a2894c1c54ce264e7fedc61c116
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 14 Feb 2016 00:00:05 +0100 |
parents | c6443e78cf2d |
children | 7c74cafac0a1 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * GUI support by Robert Webb | |
5 * | |
6 * Do ":help uganda" in Vim to read copying and usage conditions. | |
7 * Do ":help credits" in Vim to see a list of people who contributed. | |
8 * See README.txt for an overview of the Vim source code. | |
9 */ | |
10 /* | |
11 * gui_w48.c: This file is included in gui_w16.c and gui_w32.c. | |
12 * | |
13 * GUI support for Microsoft Windows (Win16 + Win32 = Win48 :-) | |
14 * | |
15 * The combined efforts of: | |
16 * George V. Reilly <george@reilly.org> | |
17 * Robert Webb | |
18 * Vince Negri | |
19 * ...and contributions from many others | |
20 * | |
21 */ | |
22 | |
23 #include "vim.h" | |
24 #include "version.h" /* used by dialog box routine for default title */ | |
25 #ifdef DEBUG | |
26 # include <tchar.h> | |
27 #endif | |
3927 | 28 |
29 /* cproto fails on missing include files */ | |
30 #ifndef PROTO | |
31 | |
7 | 32 #ifndef __MINGW32__ |
33 # include <shellapi.h> | |
34 #endif | |
810 | 35 #if defined(FEAT_TOOLBAR) || defined(FEAT_BEVAL) || defined(FEAT_GUI_TABLINE) |
7 | 36 # include <commctrl.h> |
37 #endif | |
38 #ifdef WIN16 | |
39 # include <commdlg.h> | |
40 # include <shellapi.h> | |
41 # ifdef WIN16_3DLOOK | |
42 # include <ctl3d.h> | |
43 # endif | |
44 #endif | |
45 #include <windowsx.h> | |
46 | |
47 #ifdef GLOBAL_IME | |
48 # include "glbl_ime.h" | |
49 #endif | |
50 | |
3927 | 51 #endif /* PROTO */ |
52 | |
7 | 53 #ifdef FEAT_MENU |
54 # define MENUHINTS /* show menu hints in command line */ | |
55 #endif | |
56 | |
57 /* Some parameters for dialog boxes. All in pixels. */ | |
58 #define DLG_PADDING_X 10 | |
59 #define DLG_PADDING_Y 10 | |
60 #define DLG_OLD_STYLE_PADDING_X 5 | |
61 #define DLG_OLD_STYLE_PADDING_Y 5 | |
62 #define DLG_VERT_PADDING_X 4 /* For vertical buttons */ | |
63 #define DLG_VERT_PADDING_Y 4 | |
64 #define DLG_ICON_WIDTH 34 | |
65 #define DLG_ICON_HEIGHT 34 | |
66 #define DLG_MIN_WIDTH 150 | |
67 #define DLG_FONT_NAME "MS Sans Serif" | |
68 #define DLG_FONT_POINT_SIZE 8 | |
69 #define DLG_MIN_MAX_WIDTH 400 | |
153 | 70 #define DLG_MIN_MAX_HEIGHT 400 |
7 | 71 |
72 #define DLG_NONBUTTON_CONTROL 5000 /* First ID of non-button controls */ | |
73 | |
74 #ifndef WM_XBUTTONDOWN /* For Win2K / winME ONLY */ | |
75 # define WM_XBUTTONDOWN 0x020B | |
76 # define WM_XBUTTONUP 0x020C | |
77 # define WM_XBUTTONDBLCLK 0x020D | |
78 # define MK_XBUTTON1 0x0020 | |
79 # define MK_XBUTTON2 0x0040 | |
80 #endif | |
81 | |
82 #ifdef PROTO | |
83 /* | |
84 * Define a few things for generating prototypes. This is just to avoid | |
85 * syntax errors, the defines do not need to be correct. | |
86 */ | |
87 # define APIENTRY | |
88 # define CALLBACK | |
89 # define CONST | |
90 # define FAR | |
91 # define NEAR | |
92 # define _cdecl | |
93 typedef int BOOL; | |
94 typedef int BYTE; | |
95 typedef int DWORD; | |
96 typedef int WCHAR; | |
97 typedef int ENUMLOGFONT; | |
98 typedef int FINDREPLACE; | |
99 typedef int HANDLE; | |
100 typedef int HBITMAP; | |
101 typedef int HBRUSH; | |
102 typedef int HDROP; | |
103 typedef int INT; | |
104 typedef int LOGFONT[]; | |
105 typedef int LPARAM; | |
106 typedef int LPCREATESTRUCT; | |
107 typedef int LPCSTR; | |
108 typedef int LPCTSTR; | |
109 typedef int LPRECT; | |
110 typedef int LPSTR; | |
111 typedef int LPWINDOWPOS; | |
112 typedef int LPWORD; | |
113 typedef int LRESULT; | |
502 | 114 typedef int HRESULT; |
7 | 115 # undef MSG |
116 typedef int MSG; | |
117 typedef int NEWTEXTMETRIC; | |
118 typedef int OSVERSIONINFO; | |
119 typedef int PWORD; | |
120 typedef int RECT; | |
121 typedef int UINT; | |
122 typedef int WORD; | |
123 typedef int WPARAM; | |
124 typedef int POINT; | |
125 typedef void *HINSTANCE; | |
126 typedef void *HMENU; | |
127 typedef void *HWND; | |
128 typedef void *HDC; | |
129 typedef void VOID; | |
130 typedef int LPNMHDR; | |
131 typedef int LONG; | |
5294 | 132 typedef int WNDPROC; |
7 | 133 #endif |
134 | |
135 #ifndef GET_X_LPARAM | |
136 # define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp)) | |
137 #endif | |
138 | |
139 static void _OnPaint( HWND hwnd); | |
140 static void clear_rect(RECT *rcp); | |
141 static int gui_mswin_get_menu_height(int fix_window); | |
142 | |
143 static WORD s_dlgfntheight; /* height of the dialog font */ | |
144 static WORD s_dlgfntwidth; /* width of the dialog font */ | |
145 | |
146 #ifdef FEAT_MENU | |
147 static HMENU s_menuBar = NULL; | |
148 #endif | |
149 #ifdef FEAT_TEAROFF | |
150 static void rebuild_tearoff(vimmenu_T *menu); | |
151 static HBITMAP s_htearbitmap; /* bitmap used to indicate tearoff */ | |
152 #endif | |
153 | |
1198 | 154 /* Flag that is set while processing a message that must not be interrupted by |
7 | 155 * processing another message. */ |
156 static int s_busy_processing = FALSE; | |
157 | |
158 static int destroying = FALSE; /* call DestroyWindow() ourselves */ | |
159 | |
160 #ifdef MSWIN_FIND_REPLACE | |
161 static UINT s_findrep_msg = 0; /* set in gui_w[16/32].c */ | |
162 static FINDREPLACE s_findrep_struct; | |
1795 | 163 # if defined(FEAT_MBYTE) && defined(WIN3264) |
164 static FINDREPLACEW s_findrep_struct_w; | |
165 # endif | |
7 | 166 static HWND s_findrep_hwnd = NULL; |
167 static int s_findrep_is_find; /* TRUE for find dialog, FALSE | |
168 for find/replace dialog */ | |
169 #endif | |
170 | |
171 static HINSTANCE s_hinst = NULL; | |
172 #if !defined(FEAT_SNIFF) && !defined(FEAT_GUI) | |
173 static | |
174 #endif | |
175 HWND s_hwnd = NULL; | |
176 static HDC s_hdc = NULL; | |
177 static HBRUSH s_brush = NULL; | |
178 | |
179 #ifdef FEAT_TOOLBAR | |
180 static HWND s_toolbarhwnd = NULL; | |
5223
91d478da863e
updated for version 7.4a.037
Bram Moolenaar <bram@vim.org>
parents:
5216
diff
changeset
|
181 static WNDPROC s_toolbar_wndproc = NULL; |
7 | 182 #endif |
183 | |
810 | 184 #ifdef FEAT_GUI_TABLINE |
185 static HWND s_tabhwnd = NULL; | |
5223
91d478da863e
updated for version 7.4a.037
Bram Moolenaar <bram@vim.org>
parents:
5216
diff
changeset
|
186 static WNDPROC s_tabline_wndproc = NULL; |
810 | 187 static int showing_tabline = 0; |
188 #endif | |
189 | |
7 | 190 static WPARAM s_wParam = 0; |
191 static LPARAM s_lParam = 0; | |
192 | |
193 static HWND s_textArea = NULL; | |
194 static UINT s_uMsg = 0; | |
195 | |
196 static char_u *s_textfield; /* Used by dialogs to pass back strings */ | |
197 | |
198 static int s_need_activate = FALSE; | |
199 | |
200 /* This variable is set when waiting for an event, which is the only moment | |
201 * scrollbar dragging can be done directly. It's not allowed while commands | |
202 * are executed, because it may move the cursor and that may cause unexpected | |
203 * problems (e.g., while ":s" is working). | |
204 */ | |
205 static int allow_scrollbar = FALSE; | |
206 | |
207 #ifdef GLOBAL_IME | |
208 # define MyTranslateMessage(x) global_ime_TranslateMessage(x) | |
209 #else | |
210 # define MyTranslateMessage(x) TranslateMessage(x) | |
211 #endif | |
212 | |
213 #if (defined(WIN3264) && defined(FEAT_MBYTE)) || defined(GLOBAL_IME) | |
214 /* use of WindowProc depends on wide_WindowProc */ | |
215 # define MyWindowProc vim_WindowProc | |
216 #else | |
217 /* use ordinary WindowProc */ | |
218 # define MyWindowProc DefWindowProc | |
219 #endif | |
220 | |
221 extern int current_font_height; /* this is in os_mswin.c */ | |
222 | |
223 static struct | |
224 { | |
225 UINT key_sym; | |
226 char_u vim_code0; | |
227 char_u vim_code1; | |
228 } special_keys[] = | |
229 { | |
230 {VK_UP, 'k', 'u'}, | |
231 {VK_DOWN, 'k', 'd'}, | |
232 {VK_LEFT, 'k', 'l'}, | |
233 {VK_RIGHT, 'k', 'r'}, | |
234 | |
235 {VK_F1, 'k', '1'}, | |
236 {VK_F2, 'k', '2'}, | |
237 {VK_F3, 'k', '3'}, | |
238 {VK_F4, 'k', '4'}, | |
239 {VK_F5, 'k', '5'}, | |
240 {VK_F6, 'k', '6'}, | |
241 {VK_F7, 'k', '7'}, | |
242 {VK_F8, 'k', '8'}, | |
243 {VK_F9, 'k', '9'}, | |
244 {VK_F10, 'k', ';'}, | |
245 | |
246 {VK_F11, 'F', '1'}, | |
247 {VK_F12, 'F', '2'}, | |
248 {VK_F13, 'F', '3'}, | |
249 {VK_F14, 'F', '4'}, | |
250 {VK_F15, 'F', '5'}, | |
251 {VK_F16, 'F', '6'}, | |
252 {VK_F17, 'F', '7'}, | |
253 {VK_F18, 'F', '8'}, | |
254 {VK_F19, 'F', '9'}, | |
255 {VK_F20, 'F', 'A'}, | |
256 | |
257 {VK_F21, 'F', 'B'}, | |
258 #ifdef FEAT_NETBEANS_INTG | |
259 {VK_PAUSE, 'F', 'B'}, /* Pause == F21 (see gui_gtk_x11.c) */ | |
260 #endif | |
261 {VK_F22, 'F', 'C'}, | |
262 {VK_F23, 'F', 'D'}, | |
263 {VK_F24, 'F', 'E'}, /* winuser.h defines up to F24 */ | |
264 | |
265 {VK_HELP, '%', '1'}, | |
266 {VK_BACK, 'k', 'b'}, | |
267 {VK_INSERT, 'k', 'I'}, | |
268 {VK_DELETE, 'k', 'D'}, | |
269 {VK_HOME, 'k', 'h'}, | |
270 {VK_END, '@', '7'}, | |
271 {VK_PRIOR, 'k', 'P'}, | |
272 {VK_NEXT, 'k', 'N'}, | |
273 {VK_PRINT, '%', '9'}, | |
274 {VK_ADD, 'K', '6'}, | |
275 {VK_SUBTRACT, 'K', '7'}, | |
276 {VK_DIVIDE, 'K', '8'}, | |
277 {VK_MULTIPLY, 'K', '9'}, | |
278 {VK_SEPARATOR, 'K', 'A'}, /* Keypad Enter */ | |
279 {VK_DECIMAL, 'K', 'B'}, | |
280 | |
281 {VK_NUMPAD0, 'K', 'C'}, | |
282 {VK_NUMPAD1, 'K', 'D'}, | |
283 {VK_NUMPAD2, 'K', 'E'}, | |
284 {VK_NUMPAD3, 'K', 'F'}, | |
285 {VK_NUMPAD4, 'K', 'G'}, | |
286 {VK_NUMPAD5, 'K', 'H'}, | |
287 {VK_NUMPAD6, 'K', 'I'}, | |
288 {VK_NUMPAD7, 'K', 'J'}, | |
289 {VK_NUMPAD8, 'K', 'K'}, | |
290 {VK_NUMPAD9, 'K', 'L'}, | |
291 | |
292 /* Keys that we want to be able to use any modifier with: */ | |
293 {VK_SPACE, ' ', NUL}, | |
294 {VK_TAB, TAB, NUL}, | |
295 {VK_ESCAPE, ESC, NUL}, | |
296 {NL, NL, NUL}, | |
297 {CAR, CAR, NUL}, | |
298 | |
299 /* End of list marker: */ | |
300 {0, 0, 0} | |
301 }; | |
302 | |
303 /* Local variables */ | |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
304 static int s_button_pending = -1; |
1453 | 305 |
306 /* s_getting_focus is set when we got focus but didn't see mouse-up event yet, | |
307 * so don't reset s_button_pending. */ | |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
308 static int s_getting_focus = FALSE; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
309 |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
310 static int s_x_pending; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
311 static int s_y_pending; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
312 static UINT s_kFlags_pending; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
313 static UINT s_wait_timer = 0; /* Timer for get char from user */ |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
314 static int s_timed_out = FALSE; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
315 static int dead_key = 0; /* 0: no dead key, 1: dead key pressed */ |
7 | 316 |
317 #ifdef WIN3264 | |
318 static OSVERSIONINFO os_version; /* like it says. Init in gui_mch_init() */ | |
319 #endif | |
320 | |
321 #ifdef FEAT_BEVAL | |
322 /* balloon-eval WM_NOTIFY_HANDLER */ | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
323 static void Handle_WM_Notify(HWND hwnd, LPNMHDR pnmh); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
324 static void TrackUserActivity(UINT uMsg); |
7 | 325 #endif |
326 | |
327 /* | |
328 * For control IME. | |
4055 | 329 * |
330 * These LOGFONT used for IME. | |
7 | 331 */ |
332 #ifdef FEAT_MBYTE | |
333 # ifdef USE_IM_CONTROL | |
4055 | 334 /* holds LOGFONT for 'guifontwide' if available, otherwise 'guifont' */ |
7 | 335 static LOGFONT norm_logfont; |
4055 | 336 /* holds LOGFONT for 'guifont' always. */ |
337 static LOGFONT sub_logfont; | |
7 | 338 # endif |
339 #endif | |
340 | |
341 #ifdef FEAT_MBYTE_IME | |
342 static LRESULT _OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData); | |
343 #endif | |
344 | |
3275 | 345 #if defined(FEAT_MBYTE) && defined(WIN3264) |
346 static char_u *convert_filter(char_u *s); | |
347 #endif | |
348 | |
323 | 349 #ifdef DEBUG_PRINT_ERROR |
7 | 350 /* |
351 * Print out the last Windows error message | |
352 */ | |
353 static void | |
354 print_windows_error(void) | |
355 { | |
356 LPVOID lpMsgBuf; | |
357 | |
358 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, | |
359 NULL, GetLastError(), | |
360 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), | |
361 (LPTSTR) &lpMsgBuf, 0, NULL); | |
362 TRACE1("Error: %s\n", lpMsgBuf); | |
363 LocalFree(lpMsgBuf); | |
364 } | |
323 | 365 #endif |
7 | 366 |
367 /* | |
368 * Cursor blink functions. | |
369 * | |
370 * This is a simple state machine: | |
371 * BLINK_NONE not blinking at all | |
372 * BLINK_OFF blinking, cursor is not shown | |
373 * BLINK_ON blinking, cursor is shown | |
374 */ | |
375 | |
376 #define BLINK_NONE 0 | |
377 #define BLINK_OFF 1 | |
378 #define BLINK_ON 2 | |
379 | |
380 static int blink_state = BLINK_NONE; | |
381 static long_u blink_waittime = 700; | |
382 static long_u blink_ontime = 400; | |
383 static long_u blink_offtime = 250; | |
384 static UINT blink_timer = 0; | |
385 | |
386 void | |
387 gui_mch_set_blinking(long wait, long on, long off) | |
388 { | |
389 blink_waittime = wait; | |
390 blink_ontime = on; | |
391 blink_offtime = off; | |
392 } | |
393 | |
394 /* ARGSUSED */ | |
395 static VOID CALLBACK | |
396 _OnBlinkTimer( | |
397 HWND hwnd, | |
398 UINT uMsg, | |
399 UINT idEvent, | |
400 DWORD dwTime) | |
401 { | |
402 MSG msg; | |
403 | |
404 /* | |
405 TRACE2("Got timer event, id %d, blink_timer %d\n", idEvent, blink_timer); | |
406 */ | |
407 | |
408 KillTimer(NULL, idEvent); | |
409 | |
410 /* Eat spurious WM_TIMER messages */ | |
3010 | 411 while (pPeekMessage(&msg, hwnd, WM_TIMER, WM_TIMER, PM_REMOVE)) |
7 | 412 ; |
413 | |
414 if (blink_state == BLINK_ON) | |
415 { | |
416 gui_undraw_cursor(); | |
417 blink_state = BLINK_OFF; | |
418 blink_timer = (UINT) SetTimer(NULL, 0, (UINT)blink_offtime, | |
419 (TIMERPROC)_OnBlinkTimer); | |
420 } | |
421 else | |
422 { | |
423 gui_update_cursor(TRUE, FALSE); | |
424 blink_state = BLINK_ON; | |
425 blink_timer = (UINT) SetTimer(NULL, 0, (UINT)blink_ontime, | |
426 (TIMERPROC)_OnBlinkTimer); | |
427 } | |
428 } | |
429 | |
430 static void | |
431 gui_mswin_rm_blink_timer(void) | |
432 { | |
433 MSG msg; | |
434 | |
435 if (blink_timer != 0) | |
436 { | |
437 KillTimer(NULL, blink_timer); | |
438 /* Eat spurious WM_TIMER messages */ | |
3010 | 439 while (pPeekMessage(&msg, s_hwnd, WM_TIMER, WM_TIMER, PM_REMOVE)) |
7 | 440 ; |
441 blink_timer = 0; | |
442 } | |
443 } | |
444 | |
445 /* | |
446 * Stop the cursor blinking. Show the cursor if it wasn't shown. | |
447 */ | |
448 void | |
449 gui_mch_stop_blink(void) | |
450 { | |
451 gui_mswin_rm_blink_timer(); | |
452 if (blink_state == BLINK_OFF) | |
453 gui_update_cursor(TRUE, FALSE); | |
454 blink_state = BLINK_NONE; | |
455 } | |
456 | |
457 /* | |
458 * Start the cursor blinking. If it was already blinking, this restarts the | |
459 * waiting time and shows the cursor. | |
460 */ | |
461 void | |
462 gui_mch_start_blink(void) | |
463 { | |
464 gui_mswin_rm_blink_timer(); | |
465 | |
466 /* Only switch blinking on if none of the times is zero */ | |
467 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus) | |
468 { | |
469 blink_timer = (UINT)SetTimer(NULL, 0, (UINT)blink_waittime, | |
470 (TIMERPROC)_OnBlinkTimer); | |
471 blink_state = BLINK_ON; | |
472 gui_update_cursor(TRUE, FALSE); | |
473 } | |
474 } | |
475 | |
476 /* | |
477 * Call-back routines. | |
478 */ | |
479 | |
323 | 480 /*ARGSUSED*/ |
7 | 481 static VOID CALLBACK |
482 _OnTimer( | |
483 HWND hwnd, | |
484 UINT uMsg, | |
485 UINT idEvent, | |
486 DWORD dwTime) | |
487 { | |
488 MSG msg; | |
489 | |
490 /* | |
491 TRACE2("Got timer event, id %d, s_wait_timer %d\n", idEvent, s_wait_timer); | |
492 */ | |
493 KillTimer(NULL, idEvent); | |
494 s_timed_out = TRUE; | |
495 | |
496 /* Eat spurious WM_TIMER messages */ | |
3010 | 497 while (pPeekMessage(&msg, hwnd, WM_TIMER, WM_TIMER, PM_REMOVE)) |
7 | 498 ; |
499 if (idEvent == s_wait_timer) | |
500 s_wait_timer = 0; | |
501 } | |
502 | |
323 | 503 /*ARGSUSED*/ |
7 | 504 static void |
505 _OnDeadChar( | |
506 HWND hwnd, | |
507 UINT ch, | |
508 int cRepeat) | |
509 { | |
510 dead_key = 1; | |
511 } | |
512 | |
513 /* | |
514 * Convert Unicode character "ch" to bytes in "string[slen]". | |
1443 | 515 * When "had_alt" is TRUE the ALT key was included in "ch". |
7 | 516 * Return the length. |
517 */ | |
518 static int | |
1443 | 519 char_to_string(int ch, char_u *string, int slen, int had_alt) |
7 | 520 { |
521 int len; | |
522 int i; | |
523 #ifdef FEAT_MBYTE | |
524 WCHAR wstring[2]; | |
525 char_u *ws = NULL;; | |
526 | |
36 | 527 if (os_version.dwPlatformId != VER_PLATFORM_WIN32_NT) |
528 { | |
529 /* On Windows 95/98 we apparently get the character in the active | |
530 * codepage, not in UCS-2. If conversion is needed convert it to | |
531 * UCS-2 first. */ | |
532 if ((int)GetACP() == enc_codepage) | |
533 len = 0; /* no conversion required */ | |
534 else | |
535 { | |
536 string[0] = ch; | |
537 len = MultiByteToWideChar(GetACP(), 0, string, 1, wstring, 2); | |
538 } | |
539 } | |
7 | 540 else |
541 { | |
36 | 542 wstring[0] = ch; |
7 | 543 len = 1; |
36 | 544 } |
545 | |
546 if (len > 0) | |
547 { | |
548 /* "ch" is a UTF-16 character. Convert it to a string of bytes. When | |
549 * "enc_codepage" is non-zero use the standard Win32 function, | |
550 * otherwise use our own conversion function (e.g., for UTF-8). */ | |
551 if (enc_codepage > 0) | |
1443 | 552 { |
36 | 553 len = WideCharToMultiByte(enc_codepage, 0, wstring, len, |
554 string, slen, 0, NULL); | |
1443 | 555 /* If we had included the ALT key into the character but now the |
556 * upper bit is no longer set, that probably means the conversion | |
557 * failed. Convert the original character and set the upper bit | |
558 * afterwards. */ | |
559 if (had_alt && len == 1 && ch >= 0x80 && string[0] < 0x80) | |
560 { | |
561 wstring[0] = ch & 0x7f; | |
562 len = WideCharToMultiByte(enc_codepage, 0, wstring, len, | |
563 string, slen, 0, NULL); | |
564 if (len == 1) /* safety check */ | |
565 string[0] |= 0x80; | |
566 } | |
567 } | |
7 | 568 else |
569 { | |
36 | 570 len = 1; |
1752 | 571 ws = utf16_to_enc(wstring, &len); |
36 | 572 if (ws == NULL) |
573 len = 0; | |
574 else | |
575 { | |
576 if (len > slen) /* just in case */ | |
577 len = slen; | |
578 mch_memmove(string, ws, len); | |
579 vim_free(ws); | |
580 } | |
7 | 581 } |
582 } | |
36 | 583 |
7 | 584 if (len == 0) |
585 #endif | |
586 { | |
587 string[0] = ch; | |
588 len = 1; | |
589 } | |
590 | |
591 for (i = 0; i < len; ++i) | |
592 if (string[i] == CSI && len <= slen - 2) | |
593 { | |
594 /* Insert CSI as K_CSI. */ | |
595 mch_memmove(string + i + 3, string + i + 1, len - i - 1); | |
596 string[++i] = KS_EXTRA; | |
597 string[++i] = (int)KE_CSI; | |
598 len += 2; | |
599 } | |
600 | |
601 return len; | |
602 } | |
603 | |
604 /* | |
605 * Key hit, add it to the input buffer. | |
606 */ | |
323 | 607 /*ARGSUSED*/ |
7 | 608 static void |
609 _OnChar( | |
610 HWND hwnd, | |
611 UINT ch, | |
612 int cRepeat) | |
613 { | |
614 char_u string[40]; | |
615 int len = 0; | |
616 | |
6151 | 617 dead_key = 0; |
618 | |
1443 | 619 len = char_to_string(ch, string, 40, FALSE); |
7 | 620 if (len == 1 && string[0] == Ctrl_C && ctrl_c_interrupts) |
621 { | |
622 trash_input_buf(); | |
623 got_int = TRUE; | |
624 } | |
625 | |
626 add_to_input_buf(string, len); | |
627 } | |
628 | |
629 /* | |
630 * Alt-Key hit, add it to the input buffer. | |
631 */ | |
323 | 632 /*ARGSUSED*/ |
7 | 633 static void |
634 _OnSysChar( | |
635 HWND hwnd, | |
636 UINT cch, | |
637 int cRepeat) | |
638 { | |
639 char_u string[40]; /* Enough for multibyte character */ | |
640 int len; | |
641 int modifiers; | |
642 int ch = cch; /* special keys are negative */ | |
643 | |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
644 dead_key = 0; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
645 |
7 | 646 /* TRACE("OnSysChar(%d, %c)\n", ch, ch); */ |
647 | |
648 /* OK, we have a character key (given by ch) which was entered with the | |
649 * ALT key pressed. Eg, if the user presses Alt-A, then ch == 'A'. Note | |
650 * that the system distinguishes Alt-a and Alt-A (Alt-Shift-a unless | |
651 * CAPSLOCK is pressed) at this point. | |
652 */ | |
653 modifiers = MOD_MASK_ALT; | |
654 if (GetKeyState(VK_SHIFT) & 0x8000) | |
655 modifiers |= MOD_MASK_SHIFT; | |
656 if (GetKeyState(VK_CONTROL) & 0x8000) | |
657 modifiers |= MOD_MASK_CTRL; | |
658 | |
659 ch = simplify_key(ch, &modifiers); | |
660 /* remove the SHIFT modifier for keys where it's already included, e.g., | |
661 * '(' and '*' */ | |
662 if (ch < 0x100 && !isalpha(ch) && isprint(ch)) | |
663 modifiers &= ~MOD_MASK_SHIFT; | |
664 | |
665 /* Interpret the ALT key as making the key META, include SHIFT, etc. */ | |
666 ch = extract_modifiers(ch, &modifiers); | |
667 if (ch == CSI) | |
668 ch = K_CSI; | |
669 | |
670 len = 0; | |
671 if (modifiers) | |
672 { | |
673 string[len++] = CSI; | |
674 string[len++] = KS_MODIFIER; | |
675 string[len++] = modifiers; | |
676 } | |
677 | |
678 if (IS_SPECIAL((int)ch)) | |
679 { | |
680 string[len++] = CSI; | |
681 string[len++] = K_SECOND((int)ch); | |
682 string[len++] = K_THIRD((int)ch); | |
683 } | |
684 else | |
685 { | |
686 /* Although the documentation isn't clear about it, we assume "ch" is | |
687 * a Unicode character. */ | |
1443 | 688 len += char_to_string(ch, string + len, 40 - len, TRUE); |
7 | 689 } |
690 | |
691 add_to_input_buf(string, len); | |
692 } | |
693 | |
694 static void | |
695 _OnMouseEvent( | |
696 int button, | |
697 int x, | |
698 int y, | |
699 int repeated_click, | |
700 UINT keyFlags) | |
701 { | |
702 int vim_modifiers = 0x0; | |
703 | |
1453 | 704 s_getting_focus = FALSE; |
705 | |
7 | 706 if (keyFlags & MK_SHIFT) |
707 vim_modifiers |= MOUSE_SHIFT; | |
708 if (keyFlags & MK_CONTROL) | |
709 vim_modifiers |= MOUSE_CTRL; | |
710 if (GetKeyState(VK_MENU) & 0x8000) | |
711 vim_modifiers |= MOUSE_ALT; | |
712 | |
713 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers); | |
714 } | |
715 | |
323 | 716 /*ARGSUSED*/ |
7 | 717 static void |
718 _OnMouseButtonDown( | |
719 HWND hwnd, | |
720 BOOL fDoubleClick, | |
721 int x, | |
722 int y, | |
723 UINT keyFlags) | |
724 { | |
725 static LONG s_prevTime = 0; | |
726 | |
727 LONG currentTime = GetMessageTime(); | |
728 int button = -1; | |
729 int repeated_click; | |
730 | |
731 /* Give main window the focus: this is so the cursor isn't hollow. */ | |
732 (void)SetFocus(s_hwnd); | |
733 | |
734 if (s_uMsg == WM_LBUTTONDOWN || s_uMsg == WM_LBUTTONDBLCLK) | |
735 button = MOUSE_LEFT; | |
736 else if (s_uMsg == WM_MBUTTONDOWN || s_uMsg == WM_MBUTTONDBLCLK) | |
737 button = MOUSE_MIDDLE; | |
738 else if (s_uMsg == WM_RBUTTONDOWN || s_uMsg == WM_RBUTTONDBLCLK) | |
739 button = MOUSE_RIGHT; | |
740 #ifndef WIN16 /*<VN>*/ | |
741 else if (s_uMsg == WM_XBUTTONDOWN || s_uMsg == WM_XBUTTONDBLCLK) | |
742 { | |
743 #ifndef GET_XBUTTON_WPARAM | |
744 # define GET_XBUTTON_WPARAM(wParam) (HIWORD(wParam)) | |
745 #endif | |
746 button = ((GET_XBUTTON_WPARAM(s_wParam) == 1) ? MOUSE_X1 : MOUSE_X2); | |
747 } | |
748 else if (s_uMsg == WM_CAPTURECHANGED) | |
749 { | |
750 /* on W95/NT4, somehow you get in here with an odd Msg | |
751 * if you press one button while holding down the other..*/ | |
752 if (s_button_pending == MOUSE_LEFT) | |
753 button = MOUSE_RIGHT; | |
754 else | |
755 button = MOUSE_LEFT; | |
756 } | |
757 #endif | |
758 if (button >= 0) | |
759 { | |
760 repeated_click = ((int)(currentTime - s_prevTime) < p_mouset); | |
761 | |
762 /* | |
763 * Holding down the left and right buttons simulates pushing the middle | |
764 * button. | |
765 */ | |
36 | 766 if (repeated_click |
767 && ((button == MOUSE_LEFT && s_button_pending == MOUSE_RIGHT) | |
768 || (button == MOUSE_RIGHT | |
769 && s_button_pending == MOUSE_LEFT))) | |
7 | 770 { |
771 /* | |
772 * Hmm, gui.c will ignore more than one button down at a time, so | |
773 * pretend we let go of it first. | |
774 */ | |
775 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, 0x0); | |
776 button = MOUSE_MIDDLE; | |
777 repeated_click = FALSE; | |
778 s_button_pending = -1; | |
779 _OnMouseEvent(button, x, y, repeated_click, keyFlags); | |
780 } | |
781 else if ((repeated_click) | |
782 || (mouse_model_popup() && (button == MOUSE_RIGHT))) | |
783 { | |
784 if (s_button_pending > -1) | |
785 { | |
786 _OnMouseEvent(s_button_pending, x, y, FALSE, keyFlags); | |
787 s_button_pending = -1; | |
788 } | |
789 /* TRACE("Button down at x %d, y %d\n", x, y); */ | |
790 _OnMouseEvent(button, x, y, repeated_click, keyFlags); | |
791 } | |
792 else | |
793 { | |
794 /* | |
795 * If this is the first press (i.e. not a multiple click) don't | |
796 * action immediately, but store and wait for: | |
797 * i) button-up | |
798 * ii) mouse move | |
799 * iii) another button press | |
800 * before using it. | |
801 * This enables us to make left+right simulate middle button, | |
802 * without left or right being actioned first. The side-effect is | |
803 * that if you click and hold the mouse without dragging, the | |
804 * cursor doesn't move until you release the button. In practice | |
805 * this is hardly a problem. | |
806 */ | |
807 s_button_pending = button; | |
808 s_x_pending = x; | |
809 s_y_pending = y; | |
810 s_kFlags_pending = keyFlags; | |
811 } | |
812 | |
813 s_prevTime = currentTime; | |
814 } | |
815 } | |
816 | |
323 | 817 /*ARGSUSED*/ |
7 | 818 static void |
819 _OnMouseMoveOrRelease( | |
820 HWND hwnd, | |
821 int x, | |
822 int y, | |
823 UINT keyFlags) | |
824 { | |
825 int button; | |
826 | |
1453 | 827 s_getting_focus = FALSE; |
7 | 828 if (s_button_pending > -1) |
829 { | |
830 /* Delayed action for mouse down event */ | |
831 _OnMouseEvent(s_button_pending, s_x_pending, | |
36 | 832 s_y_pending, FALSE, s_kFlags_pending); |
7 | 833 s_button_pending = -1; |
834 } | |
835 if (s_uMsg == WM_MOUSEMOVE) | |
836 { | |
837 /* | |
838 * It's only a MOUSE_DRAG if one or more mouse buttons are being held | |
839 * down. | |
840 */ | |
841 if (!(keyFlags & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON | |
842 | MK_XBUTTON1 | MK_XBUTTON2))) | |
843 { | |
844 gui_mouse_moved(x, y); | |
845 return; | |
846 } | |
847 | |
848 /* | |
849 * While button is down, keep grabbing mouse move events when | |
850 * the mouse goes outside the window | |
851 */ | |
852 SetCapture(s_textArea); | |
853 button = MOUSE_DRAG; | |
854 /* TRACE(" move at x %d, y %d\n", x, y); */ | |
855 } | |
856 else | |
857 { | |
858 ReleaseCapture(); | |
859 button = MOUSE_RELEASE; | |
860 /* TRACE(" up at x %d, y %d\n", x, y); */ | |
861 } | |
862 | |
863 _OnMouseEvent(button, x, y, FALSE, keyFlags); | |
864 } | |
865 | |
866 #ifdef FEAT_MENU | |
867 /* | |
868 * Find the vimmenu_T with the given id | |
869 */ | |
870 static vimmenu_T * | |
871 gui_mswin_find_menu( | |
872 vimmenu_T *pMenu, | |
873 int id) | |
874 { | |
875 vimmenu_T *pChildMenu; | |
876 | |
877 while (pMenu) | |
878 { | |
879 if (pMenu->id == (UINT)id) | |
880 break; | |
881 if (pMenu->children != NULL) | |
882 { | |
883 pChildMenu = gui_mswin_find_menu(pMenu->children, id); | |
884 if (pChildMenu) | |
885 { | |
886 pMenu = pChildMenu; | |
887 break; | |
888 } | |
889 } | |
890 pMenu = pMenu->next; | |
891 } | |
892 return pMenu; | |
893 } | |
894 | |
323 | 895 /*ARGSUSED*/ |
7 | 896 static void |
897 _OnMenu( | |
898 HWND hwnd, | |
899 int id, | |
900 HWND hwndCtl, | |
901 UINT codeNotify) | |
902 { | |
903 vimmenu_T *pMenu; | |
904 | |
905 pMenu = gui_mswin_find_menu(root_menu, id); | |
906 if (pMenu) | |
907 gui_menu_cb(pMenu); | |
908 } | |
909 #endif | |
910 | |
911 #ifdef MSWIN_FIND_REPLACE | |
1795 | 912 # if defined(FEAT_MBYTE) && defined(WIN3264) |
913 /* | |
914 * copy useful data from structure LPFINDREPLACE to structure LPFINDREPLACEW | |
915 */ | |
916 static void | |
917 findrep_atow(LPFINDREPLACEW lpfrw, LPFINDREPLACE lpfr) | |
918 { | |
919 WCHAR *wp; | |
920 | |
921 lpfrw->hwndOwner = lpfr->hwndOwner; | |
922 lpfrw->Flags = lpfr->Flags; | |
923 | |
924 wp = enc_to_utf16(lpfr->lpstrFindWhat, NULL); | |
925 wcsncpy(lpfrw->lpstrFindWhat, wp, lpfrw->wFindWhatLen - 1); | |
926 vim_free(wp); | |
927 | |
928 /* the field "lpstrReplaceWith" doesn't need to be copied */ | |
929 } | |
930 | |
931 /* | |
932 * copy useful data from structure LPFINDREPLACEW to structure LPFINDREPLACE | |
933 */ | |
934 static void | |
935 findrep_wtoa(LPFINDREPLACE lpfr, LPFINDREPLACEW lpfrw) | |
936 { | |
937 char_u *p; | |
938 | |
939 lpfr->Flags = lpfrw->Flags; | |
940 | |
941 p = utf16_to_enc(lpfrw->lpstrFindWhat, NULL); | |
942 vim_strncpy(lpfr->lpstrFindWhat, p, lpfr->wFindWhatLen - 1); | |
943 vim_free(p); | |
944 | |
945 p = utf16_to_enc(lpfrw->lpstrReplaceWith, NULL); | |
946 vim_strncpy(lpfr->lpstrReplaceWith, p, lpfr->wReplaceWithLen - 1); | |
947 vim_free(p); | |
948 } | |
949 # endif | |
950 | |
7 | 951 /* |
952 * Handle a Find/Replace window message. | |
953 */ | |
954 static void | |
955 _OnFindRepl(void) | |
956 { | |
957 int flags = 0; | |
958 int down; | |
959 | |
1795 | 960 # if defined(FEAT_MBYTE) && defined(WIN3264) |
961 /* If the OS is Windows NT, and 'encoding' differs from active codepage: | |
962 * convert text from wide string. */ | |
963 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT | |
964 && enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
965 { | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
966 findrep_wtoa(&s_findrep_struct, &s_findrep_struct_w); |
1795 | 967 } |
968 # endif | |
969 | |
7 | 970 if (s_findrep_struct.Flags & FR_DIALOGTERM) |
971 /* Give main window the focus back. */ | |
972 (void)SetFocus(s_hwnd); | |
973 | |
974 if (s_findrep_struct.Flags & FR_FINDNEXT) | |
975 { | |
976 flags = FRD_FINDNEXT; | |
977 | |
978 /* Give main window the focus back: this is so the cursor isn't | |
979 * hollow. */ | |
980 (void)SetFocus(s_hwnd); | |
981 } | |
982 else if (s_findrep_struct.Flags & FR_REPLACE) | |
983 { | |
984 flags = FRD_REPLACE; | |
985 | |
986 /* Give main window the focus back: this is so the cursor isn't | |
987 * hollow. */ | |
988 (void)SetFocus(s_hwnd); | |
989 } | |
990 else if (s_findrep_struct.Flags & FR_REPLACEALL) | |
991 { | |
992 flags = FRD_REPLACEALL; | |
993 } | |
994 | |
995 if (flags != 0) | |
996 { | |
997 /* Call the generic GUI function to do the actual work. */ | |
998 if (s_findrep_struct.Flags & FR_WHOLEWORD) | |
999 flags |= FRD_WHOLE_WORD; | |
1000 if (s_findrep_struct.Flags & FR_MATCHCASE) | |
1001 flags |= FRD_MATCH_CASE; | |
1002 down = (s_findrep_struct.Flags & FR_DOWN) != 0; | |
1003 gui_do_findrepl(flags, s_findrep_struct.lpstrFindWhat, | |
1004 s_findrep_struct.lpstrReplaceWith, down); | |
1005 } | |
1006 } | |
1007 #endif | |
1008 | |
1009 static void | |
1010 HandleMouseHide(UINT uMsg, LPARAM lParam) | |
1011 { | |
1012 static LPARAM last_lParam = 0L; | |
1013 | |
1014 /* We sometimes get a mousemove when the mouse didn't move... */ | |
5367 | 1015 if (uMsg == WM_MOUSEMOVE || uMsg == WM_NCMOUSEMOVE) |
7 | 1016 { |
1017 if (lParam == last_lParam) | |
1018 return; | |
1019 last_lParam = lParam; | |
1020 } | |
1021 | |
1022 /* Handle specially, to centralise coding. We need to be sure we catch all | |
1023 * possible events which should cause us to restore the cursor (as it is a | |
1024 * shared resource, we take full responsibility for it). | |
1025 */ | |
1026 switch (uMsg) | |
1027 { | |
1028 case WM_KEYUP: | |
1029 case WM_CHAR: | |
1030 /* | |
1031 * blank out the pointer if necessary | |
1032 */ | |
1033 if (p_mh) | |
1034 gui_mch_mousehide(TRUE); | |
1035 break; | |
1036 | |
1037 case WM_SYSKEYUP: /* show the pointer when a system-key is pressed */ | |
1038 case WM_SYSCHAR: | |
1039 case WM_MOUSEMOVE: /* show the pointer on any mouse action */ | |
1040 case WM_LBUTTONDOWN: | |
1041 case WM_LBUTTONUP: | |
1042 case WM_MBUTTONDOWN: | |
1043 case WM_MBUTTONUP: | |
1044 case WM_RBUTTONDOWN: | |
1045 case WM_RBUTTONUP: | |
1046 case WM_XBUTTONDOWN: | |
1047 case WM_XBUTTONUP: | |
1048 case WM_NCMOUSEMOVE: | |
1049 case WM_NCLBUTTONDOWN: | |
1050 case WM_NCLBUTTONUP: | |
1051 case WM_NCMBUTTONDOWN: | |
1052 case WM_NCMBUTTONUP: | |
1053 case WM_NCRBUTTONDOWN: | |
1054 case WM_NCRBUTTONUP: | |
1055 case WM_KILLFOCUS: | |
1056 /* | |
1057 * if the pointer is currently hidden, then we should show it. | |
1058 */ | |
1059 gui_mch_mousehide(FALSE); | |
1060 break; | |
1061 } | |
1062 } | |
1063 | |
1064 static LRESULT CALLBACK | |
1065 _TextAreaWndProc( | |
1066 HWND hwnd, | |
1067 UINT uMsg, | |
1068 WPARAM wParam, | |
1069 LPARAM lParam) | |
1070 { | |
1071 /* | |
1072 TRACE("TextAreaWndProc: hwnd = %08x, msg = %x, wParam = %x, lParam = %x\n", | |
1073 hwnd, uMsg, wParam, lParam); | |
1074 */ | |
1075 | |
1076 HandleMouseHide(uMsg, lParam); | |
1077 | |
1078 s_uMsg = uMsg; | |
1079 s_wParam = wParam; | |
1080 s_lParam = lParam; | |
1081 | |
1082 #ifdef FEAT_BEVAL | |
1083 TrackUserActivity(uMsg); | |
1084 #endif | |
1085 | |
1086 switch (uMsg) | |
1087 { | |
1088 HANDLE_MSG(hwnd, WM_LBUTTONDBLCLK,_OnMouseButtonDown); | |
1089 HANDLE_MSG(hwnd, WM_LBUTTONDOWN,_OnMouseButtonDown); | |
1090 HANDLE_MSG(hwnd, WM_LBUTTONUP, _OnMouseMoveOrRelease); | |
1091 HANDLE_MSG(hwnd, WM_MBUTTONDBLCLK,_OnMouseButtonDown); | |
1092 HANDLE_MSG(hwnd, WM_MBUTTONDOWN,_OnMouseButtonDown); | |
1093 HANDLE_MSG(hwnd, WM_MBUTTONUP, _OnMouseMoveOrRelease); | |
1094 HANDLE_MSG(hwnd, WM_MOUSEMOVE, _OnMouseMoveOrRelease); | |
1095 HANDLE_MSG(hwnd, WM_PAINT, _OnPaint); | |
1096 HANDLE_MSG(hwnd, WM_RBUTTONDBLCLK,_OnMouseButtonDown); | |
1097 HANDLE_MSG(hwnd, WM_RBUTTONDOWN,_OnMouseButtonDown); | |
1098 HANDLE_MSG(hwnd, WM_RBUTTONUP, _OnMouseMoveOrRelease); | |
1099 #ifndef WIN16 /*<VN>*/ | |
1100 HANDLE_MSG(hwnd, WM_XBUTTONDBLCLK,_OnMouseButtonDown); | |
1101 HANDLE_MSG(hwnd, WM_XBUTTONDOWN,_OnMouseButtonDown); | |
1102 HANDLE_MSG(hwnd, WM_XBUTTONUP, _OnMouseMoveOrRelease); | |
1103 #endif | |
1104 | |
1105 #ifdef FEAT_BEVAL | |
1106 case WM_NOTIFY: Handle_WM_Notify(hwnd, (LPNMHDR)lParam); | |
1107 return TRUE; | |
1108 #endif | |
2067
8e2d14a3e7d2
updated for version 7.2.352
Bram Moolenaar <bram@zimbu.org>
parents:
1795
diff
changeset
|
1109 default: |
8e2d14a3e7d2
updated for version 7.2.352
Bram Moolenaar <bram@zimbu.org>
parents:
1795
diff
changeset
|
1110 return MyWindowProc(hwnd, uMsg, wParam, lParam); |
7 | 1111 } |
1112 } | |
1113 | |
1114 #if (defined(WIN3264) && defined(FEAT_MBYTE)) \ | |
1115 || defined(GLOBAL_IME) \ | |
1116 || defined(PROTO) | |
1117 # ifdef PROTO | |
1118 typedef int WINAPI; | |
1119 # endif | |
1120 | |
1121 LRESULT WINAPI | |
1122 vim_WindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) | |
1123 { | |
1124 # ifdef GLOBAL_IME | |
1125 return global_ime_DefWindowProc(hwnd, message, wParam, lParam); | |
1126 # else | |
1127 if (wide_WindowProc) | |
1128 return DefWindowProcW(hwnd, message, wParam, lParam); | |
1129 return DefWindowProc(hwnd, message, wParam, lParam); | |
1130 #endif | |
1131 } | |
1132 #endif | |
1133 | |
1134 /* | |
1135 * Called when the foreground or background color has been changed. | |
1136 */ | |
1137 void | |
1138 gui_mch_new_colors(void) | |
1139 { | |
1140 /* nothing to do? */ | |
1141 } | |
1142 | |
1143 /* | |
1144 * Set the colors to their default values. | |
1145 */ | |
1146 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1147 gui_mch_def_colors(void) |
7 | 1148 { |
1149 gui.norm_pixel = GetSysColor(COLOR_WINDOWTEXT); | |
1150 gui.back_pixel = GetSysColor(COLOR_WINDOW); | |
1151 gui.def_norm_pixel = gui.norm_pixel; | |
1152 gui.def_back_pixel = gui.back_pixel; | |
1153 } | |
1154 | |
1155 /* | |
1156 * Open the GUI window which was created by a call to gui_mch_init(). | |
1157 */ | |
1158 int | |
1159 gui_mch_open(void) | |
1160 { | |
1161 #ifndef SW_SHOWDEFAULT | |
1162 # define SW_SHOWDEFAULT 10 /* Borland 5.0 doesn't have it */ | |
1163 #endif | |
1164 /* Actually open the window, if not already visible | |
1165 * (may be done already in gui_mch_set_shellsize) */ | |
1166 if (!IsWindowVisible(s_hwnd)) | |
1167 ShowWindow(s_hwnd, SW_SHOWDEFAULT); | |
1168 | |
818 | 1169 #ifdef MSWIN_FIND_REPLACE |
1170 /* Init replace string here, so that we keep it when re-opening the | |
1171 * dialog. */ | |
1172 s_findrep_struct.lpstrReplaceWith[0] = NUL; | |
1173 #endif | |
1174 | |
7 | 1175 return OK; |
1176 } | |
1177 | |
1178 /* | |
1179 * Get the position of the top left corner of the window. | |
1180 */ | |
1181 int | |
1182 gui_mch_get_winpos(int *x, int *y) | |
1183 { | |
1184 RECT rect; | |
1185 | |
1186 GetWindowRect(s_hwnd, &rect); | |
1187 *x = rect.left; | |
1188 *y = rect.top; | |
1189 return OK; | |
1190 } | |
1191 | |
1192 /* | |
1193 * Set the position of the top left corner of the window to the given | |
1194 * coordinates. | |
1195 */ | |
1196 void | |
1197 gui_mch_set_winpos(int x, int y) | |
1198 { | |
1199 SetWindowPos(s_hwnd, NULL, x, y, 0, 0, | |
1200 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE); | |
1201 } | |
1202 void | |
1203 gui_mch_set_text_area_pos(int x, int y, int w, int h) | |
1204 { | |
1205 static int oldx = 0; | |
1206 static int oldy = 0; | |
1207 | |
1208 SetWindowPos(s_textArea, NULL, x, y, w, h, SWP_NOZORDER | SWP_NOACTIVATE); | |
1209 | |
1210 #ifdef FEAT_TOOLBAR | |
1211 if (vim_strchr(p_go, GO_TOOLBAR) != NULL) | |
1212 SendMessage(s_toolbarhwnd, WM_SIZE, | |
822 | 1213 (WPARAM)0, (LPARAM)(w + ((long)(TOOLBAR_BUTTON_HEIGHT+8)<<16))); |
7 | 1214 #endif |
810 | 1215 #if defined(FEAT_GUI_TABLINE) |
1216 if (showing_tabline) | |
1217 { | |
811 | 1218 int top = 0; |
824 | 1219 RECT rect; |
810 | 1220 |
843 | 1221 # ifdef FEAT_TOOLBAR |
810 | 1222 if (vim_strchr(p_go, GO_TOOLBAR) != NULL) |
1223 top = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT; | |
843 | 1224 # endif |
822 | 1225 GetClientRect(s_hwnd, &rect); |
843 | 1226 MoveWindow(s_tabhwnd, 0, top, rect.right, gui.tabline_height, TRUE); |
810 | 1227 } |
1228 #endif | |
1229 | |
7 | 1230 /* When side scroll bar is unshown, the size of window will change. |
1231 * then, the text area move left or right. thus client rect should be | |
4352 | 1232 * forcedly redrawn. (Yasuhiro Matsumoto) */ |
7 | 1233 if (oldx != x || oldy != y) |
1234 { | |
1235 InvalidateRect(s_hwnd, NULL, FALSE); | |
1236 oldx = x; | |
1237 oldy = y; | |
1238 } | |
1239 } | |
1240 | |
1241 | |
1242 /* | |
1243 * Scrollbar stuff: | |
1244 */ | |
1245 | |
1246 void | |
1247 gui_mch_enable_scrollbar( | |
1248 scrollbar_T *sb, | |
1249 int flag) | |
1250 { | |
1251 ShowScrollBar(sb->id, SB_CTL, flag); | |
1252 | |
1253 /* TODO: When the window is maximized, the size of the window stays the | |
1254 * same, thus the size of the text area changes. On Win98 it's OK, on Win | |
1255 * NT 4.0 it's not... */ | |
1256 } | |
1257 | |
1258 void | |
1259 gui_mch_set_scrollbar_pos( | |
1260 scrollbar_T *sb, | |
1261 int x, | |
1262 int y, | |
1263 int w, | |
1264 int h) | |
1265 { | |
444 | 1266 SetWindowPos(sb->id, NULL, x, y, w, h, |
1267 SWP_NOZORDER | SWP_NOACTIVATE | SWP_SHOWWINDOW); | |
7 | 1268 } |
1269 | |
1270 void | |
1271 gui_mch_create_scrollbar( | |
1272 scrollbar_T *sb, | |
1273 int orient) /* SBAR_VERT or SBAR_HORIZ */ | |
1274 { | |
1275 sb->id = CreateWindow( | |
1276 "SCROLLBAR", "Scrollbar", | |
1277 WS_CHILD | ((orient == SBAR_VERT) ? SBS_VERT : SBS_HORZ), 0, 0, | |
1278 10, /* Any value will do for now */ | |
1279 10, /* Any value will do for now */ | |
1280 s_hwnd, NULL, | |
1281 s_hinst, NULL); | |
1282 } | |
1283 | |
1284 /* | |
1285 * Find the scrollbar with the given hwnd. | |
1286 */ | |
1287 static scrollbar_T * | |
1288 gui_mswin_find_scrollbar(HWND hwnd) | |
1289 { | |
1290 win_T *wp; | |
1291 | |
1292 if (gui.bottom_sbar.id == hwnd) | |
1293 return &gui.bottom_sbar; | |
1294 FOR_ALL_WINDOWS(wp) | |
1295 { | |
1296 if (wp->w_scrollbars[SBAR_LEFT].id == hwnd) | |
1297 return &wp->w_scrollbars[SBAR_LEFT]; | |
1298 if (wp->w_scrollbars[SBAR_RIGHT].id == hwnd) | |
1299 return &wp->w_scrollbars[SBAR_RIGHT]; | |
1300 } | |
1301 return NULL; | |
1302 } | |
1303 | |
1304 /* | |
1305 * Get the character size of a font. | |
1306 */ | |
1307 static void | |
1308 GetFontSize(GuiFont font) | |
1309 { | |
1310 HWND hwnd = GetDesktopWindow(); | |
1311 HDC hdc = GetWindowDC(hwnd); | |
1312 HFONT hfntOld = SelectFont(hdc, (HFONT)font); | |
1313 TEXTMETRIC tm; | |
1314 | |
1315 GetTextMetrics(hdc, &tm); | |
1316 gui.char_width = tm.tmAveCharWidth + tm.tmOverhang; | |
1317 | |
1318 gui.char_height = tm.tmHeight | |
1319 #ifndef MSWIN16_FASTTEXT | |
444 | 1320 + p_linespace |
7 | 1321 #endif |
444 | 1322 ; |
7 | 1323 |
1324 SelectFont(hdc, hfntOld); | |
1325 | |
1326 ReleaseDC(hwnd, hdc); | |
1327 } | |
1328 | |
444 | 1329 /* |
1330 * Adjust gui.char_height (after 'linespace' was changed). | |
1331 */ | |
7 | 1332 int |
444 | 1333 gui_mch_adjust_charheight(void) |
7 | 1334 { |
1335 GetFontSize(gui.norm_font); | |
1336 return OK; | |
1337 } | |
1338 | |
1339 static GuiFont | |
1340 get_font_handle(LOGFONT *lf) | |
1341 { | |
1342 HFONT font = NULL; | |
1343 | |
1344 /* Load the font */ | |
1345 font = CreateFontIndirect(lf); | |
1346 | |
1347 if (font == NULL) | |
1348 return NOFONT; | |
1349 | |
1350 return (GuiFont)font; | |
1351 } | |
1352 | |
1353 static int | |
1354 pixels_to_points(int pixels, int vertical) | |
1355 { | |
1356 int points; | |
1357 HWND hwnd; | |
1358 HDC hdc; | |
1359 | |
1360 hwnd = GetDesktopWindow(); | |
1361 hdc = GetWindowDC(hwnd); | |
1362 | |
1363 points = MulDiv(pixels, 72, | |
1364 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX)); | |
1365 | |
1366 ReleaseDC(hwnd, hdc); | |
1367 | |
1368 return points; | |
1369 } | |
1370 | |
1371 GuiFont | |
1372 gui_mch_get_font( | |
1373 char_u *name, | |
1374 int giveErrorIfMissing) | |
1375 { | |
1376 LOGFONT lf; | |
37 | 1377 GuiFont font = NOFONT; |
1378 | |
1379 if (get_logfont(&lf, name, NULL, giveErrorIfMissing) == OK) | |
1380 font = get_font_handle(&lf); | |
7 | 1381 if (font == NOFONT && giveErrorIfMissing) |
1382 EMSG2(_(e_font), name); | |
1383 return font; | |
1384 } | |
37 | 1385 |
44 | 1386 #if defined(FEAT_EVAL) || defined(PROTO) |
37 | 1387 /* |
1388 * Return the name of font "font" in allocated memory. | |
1389 * Don't know how to get the actual name, thus use the provided name. | |
1390 */ | |
323 | 1391 /*ARGSUSED*/ |
37 | 1392 char_u * |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1393 gui_mch_get_fontname(GuiFont font, char_u *name) |
37 | 1394 { |
1395 if (name == NULL) | |
1396 return NULL; | |
1397 return vim_strsave(name); | |
1398 } | |
44 | 1399 #endif |
37 | 1400 |
7 | 1401 void |
1402 gui_mch_free_font(GuiFont font) | |
1403 { | |
1404 if (font) | |
1405 DeleteObject((HFONT)font); | |
1406 } | |
1407 | |
1408 static int | |
1409 hex_digit(int c) | |
1410 { | |
1411 if (VIM_ISDIGIT(c)) | |
1412 return c - '0'; | |
1413 c = TOLOWER_ASC(c); | |
1414 if (c >= 'a' && c <= 'f') | |
1415 return c - 'a' + 10; | |
1416 return -1000; | |
1417 } | |
1418 /* | |
1419 * Return the Pixel value (color) for the given color name. | |
1420 * Return INVALCOLOR for error. | |
1421 */ | |
1422 guicolor_T | |
1423 gui_mch_get_color(char_u *name) | |
1424 { | |
1425 typedef struct guicolor_tTable | |
1426 { | |
1427 char *name; | |
1428 COLORREF color; | |
1429 } guicolor_tTable; | |
1430 | |
1431 static guicolor_tTable table[] = | |
1432 { | |
1433 {"Black", RGB(0x00, 0x00, 0x00)}, | |
3052 | 1434 {"DarkGray", RGB(0xA9, 0xA9, 0xA9)}, |
1435 {"DarkGrey", RGB(0xA9, 0xA9, 0xA9)}, | |
7 | 1436 {"Gray", RGB(0xC0, 0xC0, 0xC0)}, |
1437 {"Grey", RGB(0xC0, 0xC0, 0xC0)}, | |
3052 | 1438 {"LightGray", RGB(0xD3, 0xD3, 0xD3)}, |
1439 {"LightGrey", RGB(0xD3, 0xD3, 0xD3)}, | |
834 | 1440 {"Gray10", RGB(0x1A, 0x1A, 0x1A)}, |
1441 {"Grey10", RGB(0x1A, 0x1A, 0x1A)}, | |
1442 {"Gray20", RGB(0x33, 0x33, 0x33)}, | |
1443 {"Grey20", RGB(0x33, 0x33, 0x33)}, | |
1444 {"Gray30", RGB(0x4D, 0x4D, 0x4D)}, | |
1445 {"Grey30", RGB(0x4D, 0x4D, 0x4D)}, | |
1446 {"Gray40", RGB(0x66, 0x66, 0x66)}, | |
1447 {"Grey40", RGB(0x66, 0x66, 0x66)}, | |
1448 {"Gray50", RGB(0x7F, 0x7F, 0x7F)}, | |
1449 {"Grey50", RGB(0x7F, 0x7F, 0x7F)}, | |
1450 {"Gray60", RGB(0x99, 0x99, 0x99)}, | |
1451 {"Grey60", RGB(0x99, 0x99, 0x99)}, | |
1452 {"Gray70", RGB(0xB3, 0xB3, 0xB3)}, | |
1453 {"Grey70", RGB(0xB3, 0xB3, 0xB3)}, | |
1454 {"Gray80", RGB(0xCC, 0xCC, 0xCC)}, | |
1455 {"Grey80", RGB(0xCC, 0xCC, 0xCC)}, | |
818 | 1456 {"Gray90", RGB(0xE5, 0xE5, 0xE5)}, |
1457 {"Grey90", RGB(0xE5, 0xE5, 0xE5)}, | |
7 | 1458 {"White", RGB(0xFF, 0xFF, 0xFF)}, |
1459 {"DarkRed", RGB(0x80, 0x00, 0x00)}, | |
1460 {"Red", RGB(0xFF, 0x00, 0x00)}, | |
1461 {"LightRed", RGB(0xFF, 0xA0, 0xA0)}, | |
1462 {"DarkBlue", RGB(0x00, 0x00, 0x80)}, | |
1463 {"Blue", RGB(0x00, 0x00, 0xFF)}, | |
3052 | 1464 {"LightBlue", RGB(0xAD, 0xD8, 0xE6)}, |
7 | 1465 {"DarkGreen", RGB(0x00, 0x80, 0x00)}, |
1466 {"Green", RGB(0x00, 0xFF, 0x00)}, | |
3052 | 1467 {"LightGreen", RGB(0x90, 0xEE, 0x90)}, |
7 | 1468 {"DarkCyan", RGB(0x00, 0x80, 0x80)}, |
1469 {"Cyan", RGB(0x00, 0xFF, 0xFF)}, | |
3052 | 1470 {"LightCyan", RGB(0xE0, 0xFF, 0xFF)}, |
7 | 1471 {"DarkMagenta", RGB(0x80, 0x00, 0x80)}, |
1472 {"Magenta", RGB(0xFF, 0x00, 0xFF)}, | |
1473 {"LightMagenta", RGB(0xFF, 0xA0, 0xFF)}, | |
1474 {"Brown", RGB(0x80, 0x40, 0x40)}, | |
1475 {"Yellow", RGB(0xFF, 0xFF, 0x00)}, | |
3052 | 1476 {"LightYellow", RGB(0xFF, 0xFF, 0xE0)}, |
7 | 1477 {"DarkYellow", RGB(0xBB, 0xBB, 0x00)}, |
1478 {"SeaGreen", RGB(0x2E, 0x8B, 0x57)}, | |
1479 {"Orange", RGB(0xFF, 0xA5, 0x00)}, | |
1480 {"Purple", RGB(0xA0, 0x20, 0xF0)}, | |
1481 {"SlateBlue", RGB(0x6A, 0x5A, 0xCD)}, | |
1482 {"Violet", RGB(0xEE, 0x82, 0xEE)}, | |
1483 }; | |
1484 | |
1485 typedef struct SysColorTable | |
1486 { | |
1487 char *name; | |
1488 int color; | |
1489 } SysColorTable; | |
1490 | |
1491 static SysColorTable sys_table[] = | |
1492 { | |
1493 #ifdef WIN3264 | |
1494 {"SYS_3DDKSHADOW", COLOR_3DDKSHADOW}, | |
1495 {"SYS_3DHILIGHT", COLOR_3DHILIGHT}, | |
1496 #ifndef __MINGW32__ | |
1497 {"SYS_3DHIGHLIGHT", COLOR_3DHIGHLIGHT}, | |
1498 #endif | |
1499 {"SYS_BTNHILIGHT", COLOR_BTNHILIGHT}, | |
1500 {"SYS_BTNHIGHLIGHT", COLOR_BTNHIGHLIGHT}, | |
1501 {"SYS_3DLIGHT", COLOR_3DLIGHT}, | |
1502 {"SYS_3DSHADOW", COLOR_3DSHADOW}, | |
1503 {"SYS_DESKTOP", COLOR_DESKTOP}, | |
1504 {"SYS_INFOBK", COLOR_INFOBK}, | |
1505 {"SYS_INFOTEXT", COLOR_INFOTEXT}, | |
1506 {"SYS_3DFACE", COLOR_3DFACE}, | |
1507 #endif | |
1508 {"SYS_BTNFACE", COLOR_BTNFACE}, | |
1509 {"SYS_BTNSHADOW", COLOR_BTNSHADOW}, | |
1510 {"SYS_ACTIVEBORDER", COLOR_ACTIVEBORDER}, | |
1511 {"SYS_ACTIVECAPTION", COLOR_ACTIVECAPTION}, | |
1512 {"SYS_APPWORKSPACE", COLOR_APPWORKSPACE}, | |
1513 {"SYS_BACKGROUND", COLOR_BACKGROUND}, | |
1514 {"SYS_BTNTEXT", COLOR_BTNTEXT}, | |
1515 {"SYS_CAPTIONTEXT", COLOR_CAPTIONTEXT}, | |
1516 {"SYS_GRAYTEXT", COLOR_GRAYTEXT}, | |
1517 {"SYS_HIGHLIGHT", COLOR_HIGHLIGHT}, | |
1518 {"SYS_HIGHLIGHTTEXT", COLOR_HIGHLIGHTTEXT}, | |
1519 {"SYS_INACTIVEBORDER", COLOR_INACTIVEBORDER}, | |
1520 {"SYS_INACTIVECAPTION", COLOR_INACTIVECAPTION}, | |
1521 {"SYS_INACTIVECAPTIONTEXT", COLOR_INACTIVECAPTIONTEXT}, | |
1522 {"SYS_MENU", COLOR_MENU}, | |
1523 {"SYS_MENUTEXT", COLOR_MENUTEXT}, | |
1524 {"SYS_SCROLLBAR", COLOR_SCROLLBAR}, | |
1525 {"SYS_WINDOW", COLOR_WINDOW}, | |
1526 {"SYS_WINDOWFRAME", COLOR_WINDOWFRAME}, | |
1527 {"SYS_WINDOWTEXT", COLOR_WINDOWTEXT} | |
1528 }; | |
1529 | |
1530 int r, g, b; | |
1531 int i; | |
1532 | |
1533 if (name[0] == '#' && strlen(name) == 7) | |
1534 { | |
1535 /* Name is in "#rrggbb" format */ | |
1536 r = hex_digit(name[1]) * 16 + hex_digit(name[2]); | |
1537 g = hex_digit(name[3]) * 16 + hex_digit(name[4]); | |
1538 b = hex_digit(name[5]) * 16 + hex_digit(name[6]); | |
1539 if (r < 0 || g < 0 || b < 0) | |
1540 return INVALCOLOR; | |
1541 return RGB(r, g, b); | |
1542 } | |
1543 else | |
1544 { | |
1545 /* Check if the name is one of the colors we know */ | |
1546 for (i = 0; i < sizeof(table) / sizeof(table[0]); i++) | |
1547 if (STRICMP(name, table[i].name) == 0) | |
1548 return table[i].color; | |
1549 } | |
1550 | |
1551 /* | |
1552 * Try to look up a system colour. | |
1553 */ | |
1554 for (i = 0; i < sizeof(sys_table) / sizeof(sys_table[0]); i++) | |
1555 if (STRICMP(name, sys_table[i].name) == 0) | |
1556 return GetSysColor(sys_table[i].color); | |
1557 | |
1558 /* | |
1559 * Last attempt. Look in the file "$VIMRUNTIME/rgb.txt". | |
1560 */ | |
1561 { | |
1562 #define LINE_LEN 100 | |
1563 FILE *fd; | |
1564 char line[LINE_LEN]; | |
1565 char_u *fname; | |
1566 | |
1567 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt"); | |
1568 if (fname == NULL) | |
1569 return INVALCOLOR; | |
1570 | |
822 | 1571 fd = mch_fopen((char *)fname, "rt"); |
7 | 1572 vim_free(fname); |
1573 if (fd == NULL) | |
1574 return INVALCOLOR; | |
1575 | |
1576 while (!feof(fd)) | |
1577 { | |
1578 int len; | |
1579 int pos; | |
1580 char *color; | |
1581 | |
1582 fgets(line, LINE_LEN, fd); | |
1583 len = (int)STRLEN(line); | |
1584 | |
1585 if (len <= 1 || line[len-1] != '\n') | |
1586 continue; | |
1587 | |
1588 line[len-1] = '\0'; | |
1589 | |
1590 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos); | |
1591 if (i != 3) | |
1592 continue; | |
1593 | |
1594 color = line + pos; | |
1595 | |
1596 if (STRICMP(color, name) == 0) | |
1597 { | |
1598 fclose(fd); | |
1599 return (guicolor_T) RGB(r, g, b); | |
1600 } | |
1601 } | |
1602 | |
1603 fclose(fd); | |
1604 } | |
1605 | |
1606 return INVALCOLOR; | |
1607 } | |
1608 /* | |
1609 * Return OK if the key with the termcap name "name" is supported. | |
1610 */ | |
1611 int | |
1612 gui_mch_haskey(char_u *name) | |
1613 { | |
1614 int i; | |
1615 | |
1616 for (i = 0; special_keys[i].vim_code1 != NUL; i++) | |
1617 if (name[0] == special_keys[i].vim_code0 && | |
1618 name[1] == special_keys[i].vim_code1) | |
1619 return OK; | |
1620 return FAIL; | |
1621 } | |
1622 | |
1623 void | |
1624 gui_mch_beep(void) | |
1625 { | |
1626 MessageBeep(MB_OK); | |
1627 } | |
1628 /* | |
1629 * Invert a rectangle from row r, column c, for nr rows and nc columns. | |
1630 */ | |
1631 void | |
1632 gui_mch_invert_rectangle( | |
1633 int r, | |
1634 int c, | |
1635 int nr, | |
1636 int nc) | |
1637 { | |
1638 RECT rc; | |
1639 | |
1640 /* | |
1641 * Note: InvertRect() excludes right and bottom of rectangle. | |
1642 */ | |
1643 rc.left = FILL_X(c); | |
1644 rc.top = FILL_Y(r); | |
1645 rc.right = rc.left + nc * gui.char_width; | |
1646 rc.bottom = rc.top + nr * gui.char_height; | |
1647 InvertRect(s_hdc, &rc); | |
1648 } | |
1649 | |
1650 /* | |
1651 * Iconify the GUI window. | |
1652 */ | |
1653 void | |
1654 gui_mch_iconify(void) | |
1655 { | |
1656 ShowWindow(s_hwnd, SW_MINIMIZE); | |
1657 } | |
1658 | |
1659 /* | |
1660 * Draw a cursor without focus. | |
1661 */ | |
1662 void | |
1663 gui_mch_draw_hollow_cursor(guicolor_T color) | |
1664 { | |
1665 HBRUSH hbr; | |
1666 RECT rc; | |
1667 | |
1668 /* | |
1669 * Note: FrameRect() excludes right and bottom of rectangle. | |
1670 */ | |
1671 rc.left = FILL_X(gui.col); | |
1672 rc.top = FILL_Y(gui.row); | |
1673 rc.right = rc.left + gui.char_width; | |
1674 #ifdef FEAT_MBYTE | |
1675 if (mb_lefthalve(gui.row, gui.col)) | |
1676 rc.right += gui.char_width; | |
1677 #endif | |
1678 rc.bottom = rc.top + gui.char_height; | |
1679 hbr = CreateSolidBrush(color); | |
1680 FrameRect(s_hdc, &rc, hbr); | |
1681 DeleteBrush(hbr); | |
1682 } | |
1683 /* | |
1684 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using | |
1685 * color "color". | |
1686 */ | |
1687 void | |
1688 gui_mch_draw_part_cursor( | |
1689 int w, | |
1690 int h, | |
1691 guicolor_T color) | |
1692 { | |
1693 HBRUSH hbr; | |
1694 RECT rc; | |
1695 | |
1696 /* | |
1697 * Note: FillRect() excludes right and bottom of rectangle. | |
1698 */ | |
1699 rc.left = | |
1700 #ifdef FEAT_RIGHTLEFT | |
1701 /* vertical line should be on the right of current point */ | |
1702 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : | |
1703 #endif | |
1704 FILL_X(gui.col); | |
1705 rc.top = FILL_Y(gui.row) + gui.char_height - h; | |
1706 rc.right = rc.left + w; | |
1707 rc.bottom = rc.top + h; | |
1708 hbr = CreateSolidBrush(color); | |
1709 FillRect(s_hdc, &rc, hbr); | |
1710 DeleteBrush(hbr); | |
1711 } | |
1712 | |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1713 |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1714 /* |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1715 * Generates a VK_SPACE when the internal dead_key flag is set to output the |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1716 * dead key's nominal character and re-post the original message. |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1717 */ |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1718 static void |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1719 outputDeadKey_rePost(MSG originalMsg) |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1720 { |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1721 static MSG deadCharExpel; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1722 |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1723 if (!dead_key) |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1724 return; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1725 |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1726 dead_key = 0; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1727 |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1728 /* Make Windows generate the dead key's character */ |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1729 deadCharExpel.message = originalMsg.message; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1730 deadCharExpel.hwnd = originalMsg.hwnd; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1731 deadCharExpel.wParam = VK_SPACE; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1732 |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1733 MyTranslateMessage(&deadCharExpel); |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1734 |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1735 /* re-generate the current character free of the dead char influence */ |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1736 PostMessage(originalMsg.hwnd, originalMsg.message, originalMsg.wParam, |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1737 originalMsg.lParam); |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1738 } |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1739 |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1740 |
7 | 1741 /* |
1742 * Process a single Windows message. | |
1743 * If one is not available we hang until one is. | |
1744 */ | |
1745 static void | |
1746 process_message(void) | |
1747 { | |
1748 MSG msg; | |
1749 UINT vk = 0; /* Virtual key */ | |
1750 char_u string[40]; | |
1751 int i; | |
1752 int modifiers = 0; | |
1753 int key; | |
36 | 1754 #ifdef FEAT_MENU |
1755 static char_u k10[] = {K_SPECIAL, 'k', ';', 0}; | |
1756 #endif | |
7 | 1757 |
3010 | 1758 pGetMessage(&msg, NULL, 0, 0); |
7 | 1759 |
1760 #ifdef FEAT_OLE | |
1761 /* Look after OLE Automation commands */ | |
1762 if (msg.message == WM_OLE) | |
1763 { | |
1764 char_u *str = (char_u *)msg.lParam; | |
1791 | 1765 if (str == NULL || *str == NUL) |
1766 { | |
1767 /* Message can't be ours, forward it. Fixes problem with Ultramon | |
1768 * 3.0.4 */ | |
3010 | 1769 pDispatchMessage(&msg); |
1791 | 1770 } |
1771 else | |
1772 { | |
1773 add_to_input_buf(str, (int)STRLEN(str)); | |
1774 vim_free(str); /* was allocated in CVim::SendKeys() */ | |
1775 } | |
7 | 1776 return; |
1777 } | |
1778 #endif | |
1779 | |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7649
diff
changeset
|
1780 #ifdef FEAT_CHANNEL |
7 | 1781 if (msg.message == WM_NETBEANS) |
1782 { | |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
8037
diff
changeset
|
1783 channel_T *channel = channel_fd2channel((sock_T)msg.wParam); |
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
8037
diff
changeset
|
1784 |
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
8037
diff
changeset
|
1785 if (channel != NULL) |
8037
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1786 { |
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1787 /* Disable error messages, they can mess up the display and throw |
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1788 * an exception. */ |
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1789 ++emsg_off; |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
8037
diff
changeset
|
1790 channel_read(channel, FALSE, "process_message"); |
8037
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1791 --emsg_off; |
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1792 } |
7 | 1793 return; |
1794 } | |
1795 #endif | |
1796 | |
1797 #ifdef FEAT_SNIFF | |
1798 if (sniff_request_waiting && want_sniff_request) | |
1799 { | |
1800 static char_u bytes[3] = {CSI, (char_u)KS_EXTRA, (char_u)KE_SNIFF}; | |
1801 add_to_input_buf(bytes, 3); /* K_SNIFF */ | |
1802 sniff_request_waiting = 0; | |
1803 want_sniff_request = 0; | |
1804 /* request is handled in normal.c */ | |
1805 } | |
1806 if (msg.message == WM_USER) | |
901 | 1807 { |
906 | 1808 MyTranslateMessage(&msg); |
3010 | 1809 pDispatchMessage(&msg); |
7 | 1810 return; |
901 | 1811 } |
7 | 1812 #endif |
1813 | |
1814 #ifdef MSWIN_FIND_REPLACE | |
1815 /* Don't process messages used by the dialog */ | |
3010 | 1816 if (s_findrep_hwnd != NULL && pIsDialogMessage(s_findrep_hwnd, &msg)) |
7 | 1817 { |
1818 HandleMouseHide(msg.message, msg.lParam); | |
1819 return; | |
1820 } | |
1821 #endif | |
1822 | |
1823 /* | |
1824 * Check if it's a special key that we recognise. If not, call | |
1825 * TranslateMessage(). | |
1826 */ | |
1827 if (msg.message == WM_KEYDOWN || msg.message == WM_SYSKEYDOWN) | |
1828 { | |
1829 vk = (int) msg.wParam; | |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1830 |
6151 | 1831 /* |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1832 * Handle dead keys in special conditions in other cases we let Windows |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1833 * handle them and do not interfere. |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1834 * |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1835 * The dead_key flag must be reset on several occasions: |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1836 * - in _OnChar() (or _OnSysChar()) as any dead key was necessarily |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1837 * consumed at that point (This is when we let Windows combine the |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1838 * dead character on its own) |
6151 | 1839 * |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1840 * - Before doing something special such as regenerating keypresses to |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1841 * expel the dead character as this could trigger an infinite loop if |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1842 * for some reason MyTranslateMessage() do not trigger a call |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1843 * immediately to _OnChar() (or _OnSysChar()). |
6151 | 1844 */ |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1845 if (dead_key) |
7 | 1846 { |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1847 /* |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1848 * If a dead key was pressed and the user presses VK_SPACE, |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1849 * VK_BACK, or VK_ESCAPE it means that he actually wants to deal |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1850 * with the dead char now, so do nothing special and let Windows |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1851 * handle it. |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1852 * |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1853 * Note that VK_SPACE combines with the dead_key's character and |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1854 * only one WM_CHAR will be generated by TranslateMessage(), in |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1855 * the two other cases two WM_CHAR will be generated: the dead |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1856 * char and VK_BACK or VK_ESCAPE. That is most likely what the |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1857 * user expects. |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1858 */ |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1859 if ((vk == VK_SPACE || vk == VK_BACK || vk == VK_ESCAPE)) |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1860 { |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1861 dead_key = 0; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1862 MyTranslateMessage(&msg); |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1863 return; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1864 } |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1865 /* In modes where we are not typing, dead keys should behave |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1866 * normally */ |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1867 else if (!(get_real_state() & (INSERT | CMDLINE | SELECTMODE))) |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1868 { |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1869 outputDeadKey_rePost(msg); |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1870 return; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1871 } |
7 | 1872 } |
1873 | |
1874 /* Check for CTRL-BREAK */ | |
1875 if (vk == VK_CANCEL) | |
1876 { | |
1877 trash_input_buf(); | |
1878 got_int = TRUE; | |
1879 string[0] = Ctrl_C; | |
1880 add_to_input_buf(string, 1); | |
1881 } | |
1882 | |
1883 for (i = 0; special_keys[i].key_sym != 0; i++) | |
1884 { | |
1885 /* ignore VK_SPACE when ALT key pressed: system menu */ | |
1886 if (special_keys[i].key_sym == vk | |
1887 && (vk != VK_SPACE || !(GetKeyState(VK_MENU) & 0x8000))) | |
1888 { | |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1889 /* |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1890 * Behave as exected if we have a dead key and the special key |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1891 * is a key that would normally trigger the dead key nominal |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1892 * character output (such as a NUMPAD printable character or |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1893 * the TAB key, etc...). |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1894 */ |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1895 if (dead_key && (special_keys[i].vim_code0 == 'K' |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1896 || vk == VK_TAB || vk == CAR)) |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1897 { |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1898 outputDeadKey_rePost(msg); |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1899 return; |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1900 } |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1901 |
7 | 1902 #ifdef FEAT_MENU |
36 | 1903 /* Check for <F10>: Windows selects the menu. When <F10> is |
1904 * mapped we want to use the mapping instead. */ | |
7 | 1905 if (vk == VK_F10 |
1906 && gui.menu_is_active | |
2610 | 1907 && check_map(k10, State, FALSE, TRUE, FALSE, |
1908 NULL, NULL) == NULL) | |
7 | 1909 break; |
1910 #endif | |
1911 if (GetKeyState(VK_SHIFT) & 0x8000) | |
1912 modifiers |= MOD_MASK_SHIFT; | |
1913 /* | |
1914 * Don't use caps-lock as shift, because these are special keys | |
1915 * being considered here, and we only want letters to get | |
1916 * shifted -- webb | |
1917 */ | |
1918 /* | |
1919 if (GetKeyState(VK_CAPITAL) & 0x0001) | |
1920 modifiers ^= MOD_MASK_SHIFT; | |
1921 */ | |
1922 if (GetKeyState(VK_CONTROL) & 0x8000) | |
1923 modifiers |= MOD_MASK_CTRL; | |
1924 if (GetKeyState(VK_MENU) & 0x8000) | |
1925 modifiers |= MOD_MASK_ALT; | |
1926 | |
1927 if (special_keys[i].vim_code1 == NUL) | |
1928 key = special_keys[i].vim_code0; | |
1929 else | |
1930 key = TO_SPECIAL(special_keys[i].vim_code0, | |
1931 special_keys[i].vim_code1); | |
1932 key = simplify_key(key, &modifiers); | |
1933 if (key == CSI) | |
1934 key = K_CSI; | |
1935 | |
1936 if (modifiers) | |
1937 { | |
1938 string[0] = CSI; | |
1939 string[1] = KS_MODIFIER; | |
1940 string[2] = modifiers; | |
1941 add_to_input_buf(string, 3); | |
1942 } | |
1943 | |
1944 if (IS_SPECIAL(key)) | |
1945 { | |
1946 string[0] = CSI; | |
1947 string[1] = K_SECOND(key); | |
1948 string[2] = K_THIRD(key); | |
1949 add_to_input_buf(string, 3); | |
1950 } | |
1951 else | |
1952 { | |
1953 int len; | |
1954 | |
1955 /* Handle "key" as a Unicode character. */ | |
1443 | 1956 len = char_to_string(key, string, 40, FALSE); |
7 | 1957 add_to_input_buf(string, len); |
1958 } | |
1959 break; | |
1960 } | |
1961 } | |
1962 if (special_keys[i].key_sym == 0) | |
1963 { | |
1964 /* Some keys need C-S- where they should only need C-. | |
1965 * Ignore 0xff, Windows XP sends it when NUMLOCK has changed since | |
1966 * system startup (Helmut Stiegler, 2003 Oct 3). */ | |
1967 if (vk != 0xff | |
1968 && (GetKeyState(VK_CONTROL) & 0x8000) | |
1969 && !(GetKeyState(VK_SHIFT) & 0x8000) | |
1970 && !(GetKeyState(VK_MENU) & 0x8000)) | |
1971 { | |
1972 /* CTRL-6 is '^'; Japanese keyboard maps '^' to vk == 0xDE */ | |
1973 if (vk == '6' || MapVirtualKey(vk, 2) == (UINT)'^') | |
1974 { | |
1975 string[0] = Ctrl_HAT; | |
1976 add_to_input_buf(string, 1); | |
1977 } | |
1978 /* vk == 0xBD AZERTY for CTRL-'-', but CTRL-[ for * QWERTY! */ | |
1979 else if (vk == 0xBD) /* QWERTY for CTRL-'-' */ | |
1980 { | |
1981 string[0] = Ctrl__; | |
1982 add_to_input_buf(string, 1); | |
1983 } | |
1984 /* CTRL-2 is '@'; Japanese keyboard maps '@' to vk == 0xC0 */ | |
1985 else if (vk == '2' || MapVirtualKey(vk, 2) == (UINT)'@') | |
1986 { | |
1987 string[0] = Ctrl_AT; | |
1988 add_to_input_buf(string, 1); | |
1989 } | |
1990 else | |
1991 MyTranslateMessage(&msg); | |
1992 } | |
1993 else | |
1994 MyTranslateMessage(&msg); | |
1995 } | |
1996 } | |
1997 #ifdef FEAT_MBYTE_IME | |
1998 else if (msg.message == WM_IME_NOTIFY) | |
1999 _OnImeNotify(msg.hwnd, (DWORD)msg.wParam, (DWORD)msg.lParam); | |
2000 else if (msg.message == WM_KEYUP && im_get_status()) | |
2001 /* added for non-MS IME (Yasuhiro Matsumoto) */ | |
2002 MyTranslateMessage(&msg); | |
2003 #endif | |
2004 #if !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME) | |
2005 /* GIME_TEST */ | |
2006 else if (msg.message == WM_IME_STARTCOMPOSITION) | |
2007 { | |
2008 POINT point; | |
2009 | |
2010 global_ime_set_font(&norm_logfont); | |
2011 point.x = FILL_X(gui.col); | |
2012 point.y = FILL_Y(gui.row); | |
2013 MapWindowPoints(s_textArea, s_hwnd, &point, 1); | |
2014 global_ime_set_position(&point); | |
2015 } | |
2016 #endif | |
2017 | |
2018 #ifdef FEAT_MENU | |
36 | 2019 /* Check for <F10>: Default effect is to select the menu. When <F10> is |
2020 * mapped we need to stop it here to avoid strange effects (e.g., for the | |
2021 * key-up event) */ | |
2610 | 2022 if (vk != VK_F10 || check_map(k10, State, FALSE, TRUE, FALSE, |
2023 NULL, NULL) == NULL) | |
7 | 2024 #endif |
3010 | 2025 pDispatchMessage(&msg); |
7 | 2026 } |
2027 | |
2028 /* | |
2029 * Catch up with any queued events. This may put keyboard input into the | |
2030 * input buffer, call resize call-backs, trigger timers etc. If there is | |
2031 * nothing in the event queue (& no timers pending), then we return | |
2032 * immediately. | |
2033 */ | |
2034 void | |
2035 gui_mch_update(void) | |
2036 { | |
2037 MSG msg; | |
2038 | |
2039 if (!s_busy_processing) | |
3010 | 2040 while (pPeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) |
7 | 2041 && !vim_is_input_buf_full()) |
2042 process_message(); | |
2043 } | |
2044 | |
2045 /* | |
2046 * GUI input routine called by gui_wait_for_chars(). Waits for a character | |
2047 * from the keyboard. | |
2048 * wtime == -1 Wait forever. | |
2049 * wtime == 0 This should never happen. | |
2050 * wtime > 0 Wait wtime milliseconds for a character. | |
2051 * Returns OK if a character was found to be available within the given time, | |
2052 * or FAIL otherwise. | |
2053 */ | |
2054 int | |
2055 gui_mch_wait_for_chars(int wtime) | |
2056 { | |
2057 MSG msg; | |
2058 int focus; | |
2059 | |
2060 s_timed_out = FALSE; | |
2061 | |
2062 if (wtime > 0) | |
2063 { | |
2064 /* Don't do anything while processing a (scroll) message. */ | |
2065 if (s_busy_processing) | |
2066 return FAIL; | |
2067 s_wait_timer = (UINT)SetTimer(NULL, 0, (UINT)wtime, | |
2068 (TIMERPROC)_OnTimer); | |
2069 } | |
2070 | |
2071 allow_scrollbar = TRUE; | |
2072 | |
2073 focus = gui.in_focus; | |
2074 while (!s_timed_out) | |
2075 { | |
2076 /* Stop or start blinking when focus changes */ | |
2077 if (gui.in_focus != focus) | |
2078 { | |
2079 if (gui.in_focus) | |
2080 gui_mch_start_blink(); | |
2081 else | |
2082 gui_mch_stop_blink(); | |
2083 focus = gui.in_focus; | |
2084 } | |
2085 | |
2086 if (s_need_activate) | |
2087 { | |
2088 #ifdef WIN32 | |
2089 (void)SetForegroundWindow(s_hwnd); | |
2090 #else | |
2091 (void)SetActiveWindow(s_hwnd); | |
2092 #endif | |
2093 s_need_activate = FALSE; | |
2094 } | |
2095 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
2096 #ifdef MESSAGE_QUEUE |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
2097 parse_queued_messages(); |
1773 | 2098 #endif |
2099 | |
7 | 2100 /* |
2101 * Don't use gui_mch_update() because then we will spin-lock until a | |
2102 * char arrives, instead we use GetMessage() to hang until an | |
2103 * event arrives. No need to check for input_buf_full because we are | |
2104 * returning as soon as it contains a single char -- webb | |
2105 */ | |
2106 process_message(); | |
2107 | |
2108 if (input_available()) | |
2109 { | |
2110 if (s_wait_timer != 0 && !s_timed_out) | |
2111 { | |
2112 KillTimer(NULL, s_wait_timer); | |
2113 | |
2114 /* Eat spurious WM_TIMER messages */ | |
3010 | 2115 while (pPeekMessage(&msg, s_hwnd, WM_TIMER, WM_TIMER, PM_REMOVE)) |
7 | 2116 ; |
2117 s_wait_timer = 0; | |
2118 } | |
2119 allow_scrollbar = FALSE; | |
36 | 2120 |
2121 /* Clear pending mouse button, the release event may have been | |
1453 | 2122 * taken by the dialog window. But don't do this when getting |
2123 * focus, we need the mouse-up event then. */ | |
2124 if (!s_getting_focus) | |
2125 s_button_pending = -1; | |
36 | 2126 |
7 | 2127 return OK; |
2128 } | |
2129 } | |
2130 allow_scrollbar = FALSE; | |
2131 return FAIL; | |
2132 } | |
2133 | |
2134 /* | |
2135 * Clear a rectangular region of the screen from text pos (row1, col1) to | |
2136 * (row2, col2) inclusive. | |
2137 */ | |
2138 void | |
2139 gui_mch_clear_block( | |
2140 int row1, | |
2141 int col1, | |
2142 int row2, | |
2143 int col2) | |
2144 { | |
2145 RECT rc; | |
2146 | |
2147 /* | |
2148 * Clear one extra pixel at the far right, for when bold characters have | |
2149 * spilled over to the window border. | |
2150 * Note: FillRect() excludes right and bottom of rectangle. | |
2151 */ | |
2152 rc.left = FILL_X(col1); | |
2153 rc.top = FILL_Y(row1); | |
2154 rc.right = FILL_X(col2 + 1) + (col2 == Columns - 1); | |
2155 rc.bottom = FILL_Y(row2 + 1); | |
2156 clear_rect(&rc); | |
2157 } | |
2158 | |
2159 /* | |
2160 * Clear the whole text window. | |
2161 */ | |
2162 void | |
2163 gui_mch_clear_all(void) | |
2164 { | |
2165 RECT rc; | |
2166 | |
2167 rc.left = 0; | |
2168 rc.top = 0; | |
2169 rc.right = Columns * gui.char_width + 2 * gui.border_width; | |
2170 rc.bottom = Rows * gui.char_height + 2 * gui.border_width; | |
2171 clear_rect(&rc); | |
2172 } | |
2173 /* | |
2174 * Menu stuff. | |
2175 */ | |
2176 | |
2177 void | |
2178 gui_mch_enable_menu(int flag) | |
2179 { | |
2180 #ifdef FEAT_MENU | |
2181 SetMenu(s_hwnd, flag ? s_menuBar : NULL); | |
2182 #endif | |
2183 } | |
2184 | |
323 | 2185 /*ARGSUSED*/ |
7 | 2186 void |
2187 gui_mch_set_menu_pos( | |
2188 int x, | |
2189 int y, | |
2190 int w, | |
2191 int h) | |
2192 { | |
2193 /* It will be in the right place anyway */ | |
2194 } | |
2195 | |
2196 #if defined(FEAT_MENU) || defined(PROTO) | |
2197 /* | |
2198 * Make menu item hidden or not hidden | |
2199 */ | |
2200 void | |
2201 gui_mch_menu_hidden( | |
2202 vimmenu_T *menu, | |
2203 int hidden) | |
2204 { | |
2205 /* | |
2206 * This doesn't do what we want. Hmm, just grey the menu items for now. | |
2207 */ | |
2208 /* | |
2209 if (hidden) | |
2210 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_DISABLED); | |
2211 else | |
2212 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_ENABLED); | |
2213 */ | |
2214 gui_mch_menu_grey(menu, hidden); | |
2215 } | |
2216 | |
2217 /* | |
2218 * This is called after setting all the menus to grey/hidden or not. | |
2219 */ | |
2220 void | |
2221 gui_mch_draw_menubar(void) | |
2222 { | |
2223 DrawMenuBar(s_hwnd); | |
2224 } | |
2225 #endif /*FEAT_MENU*/ | |
2226 | |
2227 #ifndef PROTO | |
2228 void | |
2229 #ifdef VIMDLL | |
2230 _export | |
2231 #endif | |
2232 _cdecl | |
2233 SaveInst(HINSTANCE hInst) | |
2234 { | |
2235 s_hinst = hInst; | |
2236 } | |
2237 #endif | |
2238 | |
2239 /* | |
2240 * Return the RGB value of a pixel as a long. | |
2241 */ | |
2242 long_u | |
2243 gui_mch_get_rgb(guicolor_T pixel) | |
2244 { | |
2245 return (GetRValue(pixel) << 16) + (GetGValue(pixel) << 8) | |
2246 + GetBValue(pixel); | |
2247 } | |
2248 | |
2249 #if defined(FEAT_GUI_DIALOG) || defined(PROTO) | |
2250 /* Convert pixels in X to dialog units */ | |
2251 static WORD | |
2252 PixelToDialogX(int numPixels) | |
2253 { | |
2254 return (WORD)((numPixels * 4) / s_dlgfntwidth); | |
2255 } | |
2256 | |
2257 /* Convert pixels in Y to dialog units */ | |
2258 static WORD | |
2259 PixelToDialogY(int numPixels) | |
2260 { | |
2261 return (WORD)((numPixels * 8) / s_dlgfntheight); | |
2262 } | |
2263 | |
2264 /* Return the width in pixels of the given text in the given DC. */ | |
2265 static int | |
2266 GetTextWidth(HDC hdc, char_u *str, int len) | |
2267 { | |
2268 SIZE size; | |
2269 | |
2270 GetTextExtentPoint(hdc, str, len, &size); | |
2271 return size.cx; | |
2272 } | |
2273 | |
2274 #ifdef FEAT_MBYTE | |
2275 /* | |
2276 * Return the width in pixels of the given text in the given DC, taking care | |
2277 * of 'encoding' to active codepage conversion. | |
2278 */ | |
2279 static int | |
2280 GetTextWidthEnc(HDC hdc, char_u *str, int len) | |
2281 { | |
2282 SIZE size; | |
2283 WCHAR *wstr; | |
2284 int n; | |
2285 int wlen = len; | |
2286 | |
2287 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2288 { | |
2289 /* 'encoding' differs from active codepage: convert text and use wide | |
2290 * function */ | |
1752 | 2291 wstr = enc_to_utf16(str, &wlen); |
7 | 2292 if (wstr != NULL) |
2293 { | |
2294 n = GetTextExtentPointW(hdc, wstr, wlen, &size); | |
2295 vim_free(wstr); | |
2296 if (n) | |
2297 return size.cx; | |
2298 } | |
2299 } | |
2300 | |
2301 return GetTextWidth(hdc, str, len); | |
2302 } | |
2303 #else | |
2304 # define GetTextWidthEnc(h, s, l) GetTextWidth((h), (s), (l)) | |
2305 #endif | |
2306 | |
2307 /* | |
2308 * A quick little routine that will center one window over another, handy for | |
2309 * dialog boxes. Taken from the Win32SDK samples. | |
2310 */ | |
2311 static BOOL | |
2312 CenterWindow( | |
2313 HWND hwndChild, | |
2314 HWND hwndParent) | |
2315 { | |
2316 RECT rChild, rParent; | |
2317 int wChild, hChild, wParent, hParent; | |
2318 int wScreen, hScreen, xNew, yNew; | |
2319 HDC hdc; | |
2320 | |
2321 GetWindowRect(hwndChild, &rChild); | |
2322 wChild = rChild.right - rChild.left; | |
2323 hChild = rChild.bottom - rChild.top; | |
2324 | |
2325 /* If Vim is minimized put the window in the middle of the screen. */ | |
829 | 2326 if (hwndParent == NULL || IsMinimized(hwndParent)) |
7 | 2327 { |
2328 #ifdef WIN16 | |
2329 rParent.left = 0; | |
2330 rParent.top = 0; | |
2331 rParent.right = GetSystemMetrics(SM_CXSCREEN); | |
2332 rParent.bottom = GetSystemMetrics(SM_CYFULLSCREEN); | |
2333 #else | |
2334 SystemParametersInfo(SPI_GETWORKAREA, 0, &rParent, 0); | |
2335 #endif | |
2336 } | |
2337 else | |
2338 GetWindowRect(hwndParent, &rParent); | |
2339 wParent = rParent.right - rParent.left; | |
2340 hParent = rParent.bottom - rParent.top; | |
2341 | |
2342 hdc = GetDC(hwndChild); | |
2343 wScreen = GetDeviceCaps (hdc, HORZRES); | |
2344 hScreen = GetDeviceCaps (hdc, VERTRES); | |
2345 ReleaseDC(hwndChild, hdc); | |
2346 | |
2347 xNew = rParent.left + ((wParent - wChild) /2); | |
2348 if (xNew < 0) | |
2349 { | |
2350 xNew = 0; | |
2351 } | |
2352 else if ((xNew+wChild) > wScreen) | |
2353 { | |
2354 xNew = wScreen - wChild; | |
2355 } | |
2356 | |
2357 yNew = rParent.top + ((hParent - hChild) /2); | |
2358 if (yNew < 0) | |
2359 yNew = 0; | |
2360 else if ((yNew+hChild) > hScreen) | |
2361 yNew = hScreen - hChild; | |
2362 | |
2363 return SetWindowPos(hwndChild, NULL, xNew, yNew, 0, 0, | |
2364 SWP_NOSIZE | SWP_NOZORDER); | |
2365 } | |
2366 #endif /* FEAT_GUI_DIALOG */ | |
2367 | |
2368 void | |
2369 gui_mch_activate_window(void) | |
2370 { | |
2371 (void)SetActiveWindow(s_hwnd); | |
2372 } | |
2373 | |
2374 #if defined(FEAT_TOOLBAR) || defined(PROTO) | |
2375 void | |
2376 gui_mch_show_toolbar(int showit) | |
2377 { | |
2378 if (s_toolbarhwnd == NULL) | |
2379 return; | |
2380 | |
2381 if (showit) | |
948 | 2382 { |
2383 # ifdef FEAT_MBYTE | |
2384 # ifndef TB_SETUNICODEFORMAT | |
2385 /* For older compilers. We assume this never changes. */ | |
2386 # define TB_SETUNICODEFORMAT 0x2005 | |
2387 # endif | |
2388 /* Enable/disable unicode support */ | |
2389 int uu = (enc_codepage >= 0 && (int)GetACP() != enc_codepage); | |
2390 SendMessage(s_toolbarhwnd, TB_SETUNICODEFORMAT, (WPARAM)uu, (LPARAM)0); | |
2391 # endif | |
7 | 2392 ShowWindow(s_toolbarhwnd, SW_SHOW); |
948 | 2393 } |
7 | 2394 else |
2395 ShowWindow(s_toolbarhwnd, SW_HIDE); | |
2396 } | |
2397 | |
2398 /* Then number of bitmaps is fixed. Exit is missing! */ | |
2399 #define TOOLBAR_BITMAP_COUNT 31 | |
2400 | |
2401 #endif | |
2402 | |
810 | 2403 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
811 | 2404 static void |
1035 | 2405 add_tabline_popup_menu_entry(HMENU pmenu, UINT item_id, char_u *item_text) |
2406 { | |
2407 #ifdef FEAT_MBYTE | |
2408 WCHAR *wn = NULL; | |
2409 int n; | |
2410 | |
2411 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2412 { | |
2413 /* 'encoding' differs from active codepage: convert menu name | |
2414 * and use wide function */ | |
1752 | 2415 wn = enc_to_utf16(item_text, NULL); |
1035 | 2416 if (wn != NULL) |
2417 { | |
2418 MENUITEMINFOW infow; | |
2419 | |
2420 infow.cbSize = sizeof(infow); | |
2421 infow.fMask = MIIM_TYPE | MIIM_ID; | |
2422 infow.wID = item_id; | |
2423 infow.fType = MFT_STRING; | |
2424 infow.dwTypeData = wn; | |
2425 infow.cch = (UINT)wcslen(wn); | |
2426 n = InsertMenuItemW(pmenu, item_id, FALSE, &infow); | |
2427 vim_free(wn); | |
2428 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED) | |
2429 /* Failed, try using non-wide function. */ | |
2430 wn = NULL; | |
2431 } | |
2432 } | |
2433 | |
2434 if (wn == NULL) | |
2435 #endif | |
2436 { | |
2437 MENUITEMINFO info; | |
2438 | |
2439 info.cbSize = sizeof(info); | |
2440 info.fMask = MIIM_TYPE | MIIM_ID; | |
2441 info.wID = item_id; | |
2442 info.fType = MFT_STRING; | |
2443 info.dwTypeData = item_text; | |
2444 info.cch = (UINT)STRLEN(item_text); | |
2445 InsertMenuItem(pmenu, item_id, FALSE, &info); | |
2446 } | |
2447 } | |
2448 | |
2449 static void | |
811 | 2450 show_tabline_popup_menu(void) |
2451 { | |
2452 HMENU tab_pmenu; | |
2453 long rval; | |
2454 POINT pt; | |
2455 | |
844 | 2456 /* When ignoring events don't show the menu. */ |
2457 if (hold_gui_events | |
2458 # ifdef FEAT_CMDWIN | |
2459 || cmdwin_type != 0 | |
2460 # endif | |
2461 ) | |
2462 return; | |
2463 | |
811 | 2464 tab_pmenu = CreatePopupMenu(); |
2465 if (tab_pmenu == NULL) | |
2466 return; | |
2467 | |
6819 | 2468 if (first_tabpage->tp_next != NULL) |
7115
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2469 add_tabline_popup_menu_entry(tab_pmenu, |
6819 | 2470 TABLINE_MENU_CLOSE, _("Close tab")); |
1035 | 2471 add_tabline_popup_menu_entry(tab_pmenu, TABLINE_MENU_NEW, _("New tab")); |
2472 add_tabline_popup_menu_entry(tab_pmenu, TABLINE_MENU_OPEN, | |
2473 _("Open tab...")); | |
811 | 2474 |
2475 GetCursorPos(&pt); | |
2476 rval = TrackPopupMenuEx(tab_pmenu, TPM_RETURNCMD, pt.x, pt.y, s_tabhwnd, | |
2477 NULL); | |
2478 | |
2479 DestroyMenu(tab_pmenu); | |
2480 | |
2481 /* Add the string cmd into input buffer */ | |
2482 if (rval > 0) | |
2483 { | |
2484 TCHITTESTINFO htinfo; | |
2485 int idx; | |
2486 | |
2487 if (ScreenToClient(s_tabhwnd, &pt) == 0) | |
2488 return; | |
2489 | |
2490 htinfo.pt.x = pt.x; | |
2491 htinfo.pt.y = pt.y; | |
2492 idx = TabCtrl_HitTest(s_tabhwnd, &htinfo); | |
2493 if (idx == -1) | |
2494 idx = 0; | |
2495 else | |
2496 idx += 1; | |
2497 | |
824 | 2498 send_tabline_menu_event(idx, (int)rval); |
811 | 2499 } |
2500 } | |
2501 | |
810 | 2502 /* |
2503 * Show or hide the tabline. | |
2504 */ | |
2505 void | |
2506 gui_mch_show_tabline(int showit) | |
2507 { | |
2508 if (s_tabhwnd == NULL) | |
2509 return; | |
2510 | |
2511 if (!showit != !showing_tabline) | |
2512 { | |
2513 if (showit) | |
2514 ShowWindow(s_tabhwnd, SW_SHOW); | |
2515 else | |
2516 ShowWindow(s_tabhwnd, SW_HIDE); | |
2517 showing_tabline = showit; | |
2518 } | |
2519 } | |
2520 | |
2521 /* | |
2522 * Return TRUE when tabline is displayed. | |
2523 */ | |
2524 int | |
2525 gui_mch_showing_tabline(void) | |
2526 { | |
2527 return s_tabhwnd != NULL && showing_tabline; | |
2528 } | |
2529 | |
2530 /* | |
2531 * Update the labels of the tabline. | |
2532 */ | |
2533 void | |
2534 gui_mch_update_tabline(void) | |
2535 { | |
2536 tabpage_T *tp; | |
2537 TCITEM tie; | |
2538 int nr = 0; | |
2539 int curtabidx = 0; | |
5286
74a211a0d3a3
updated for version 7.4b.019
Bram Moolenaar <bram@vim.org>
parents:
5225
diff
changeset
|
2540 int tabadded = 0; |
837 | 2541 #ifdef FEAT_MBYTE |
838 | 2542 static int use_unicode = FALSE; |
2543 int uu; | |
837 | 2544 WCHAR *wstr = NULL; |
2545 #endif | |
810 | 2546 |
2547 if (s_tabhwnd == NULL) | |
2548 return; | |
2549 | |
838 | 2550 #if defined(FEAT_MBYTE) |
2551 # ifndef CCM_SETUNICODEFORMAT | |
2552 /* For older compilers. We assume this never changes. */ | |
2553 # define CCM_SETUNICODEFORMAT 0x2005 | |
2554 # endif | |
2555 uu = (enc_codepage >= 0 && (int)GetACP() != enc_codepage); | |
2556 if (uu != use_unicode) | |
2557 { | |
2558 /* Enable/disable unicode support */ | |
2559 SendMessage(s_tabhwnd, CCM_SETUNICODEFORMAT, (WPARAM)uu, (LPARAM)0); | |
2560 use_unicode = uu; | |
2561 } | |
837 | 2562 #endif |
2563 | |
810 | 2564 tie.mask = TCIF_TEXT; |
2565 tie.iImage = -1; | |
2566 | |
4009 | 2567 /* Disable redraw for tab updates to eliminate O(N^2) draws. */ |
2568 SendMessage(s_tabhwnd, WM_SETREDRAW, (WPARAM)FALSE, 0); | |
2569 | |
810 | 2570 /* Add a label for each tab page. They all contain the same text area. */ |
2571 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) | |
2572 { | |
2573 if (tp == curtab) | |
2574 curtabidx = nr; | |
2575 | |
4009 | 2576 if (nr >= TabCtrl_GetItemCount(s_tabhwnd)) |
810 | 2577 { |
2578 /* Add the tab */ | |
2579 tie.pszText = "-Empty-"; | |
2580 TabCtrl_InsertItem(s_tabhwnd, nr, &tie); | |
5286
74a211a0d3a3
updated for version 7.4b.019
Bram Moolenaar <bram@vim.org>
parents:
5225
diff
changeset
|
2581 tabadded = 1; |
810 | 2582 } |
2583 | |
839 | 2584 get_tabline_label(tp, FALSE); |
810 | 2585 tie.pszText = NameBuff; |
837 | 2586 #ifdef FEAT_MBYTE |
2587 wstr = NULL; | |
838 | 2588 if (use_unicode) |
837 | 2589 { |
2590 /* Need to go through Unicode. */ | |
1752 | 2591 wstr = enc_to_utf16(NameBuff, NULL); |
837 | 2592 if (wstr != NULL) |
2593 { | |
2594 TCITEMW tiw; | |
2595 | |
2596 tiw.mask = TCIF_TEXT; | |
2597 tiw.iImage = -1; | |
2598 tiw.pszText = wstr; | |
1044 | 2599 SendMessage(s_tabhwnd, TCM_SETITEMW, (WPARAM)nr, (LPARAM)&tiw); |
837 | 2600 vim_free(wstr); |
2601 } | |
2602 } | |
2603 if (wstr == NULL) | |
2604 #endif | |
2605 { | |
2606 TabCtrl_SetItem(s_tabhwnd, nr, &tie); | |
2607 } | |
810 | 2608 } |
2609 | |
2610 /* Remove any old labels. */ | |
4009 | 2611 while (nr < TabCtrl_GetItemCount(s_tabhwnd)) |
810 | 2612 TabCtrl_DeleteItem(s_tabhwnd, nr); |
2613 | |
5286
74a211a0d3a3
updated for version 7.4b.019
Bram Moolenaar <bram@vim.org>
parents:
5225
diff
changeset
|
2614 if (!tabadded && TabCtrl_GetCurSel(s_tabhwnd) != curtabidx) |
74a211a0d3a3
updated for version 7.4b.019
Bram Moolenaar <bram@vim.org>
parents:
5225
diff
changeset
|
2615 TabCtrl_SetCurSel(s_tabhwnd, curtabidx); |
74a211a0d3a3
updated for version 7.4b.019
Bram Moolenaar <bram@vim.org>
parents:
5225
diff
changeset
|
2616 |
4015 | 2617 /* Re-enable redraw and redraw. */ |
4009 | 2618 SendMessage(s_tabhwnd, WM_SETREDRAW, (WPARAM)TRUE, 0); |
4015 | 2619 RedrawWindow(s_tabhwnd, NULL, NULL, |
2620 RDW_ERASE | RDW_FRAME | RDW_INVALIDATE | RDW_ALLCHILDREN); | |
5216
947edb6335d1
updated for version 7.4a.034
Bram Moolenaar <bram@vim.org>
parents:
5166
diff
changeset
|
2621 |
5286
74a211a0d3a3
updated for version 7.4b.019
Bram Moolenaar <bram@vim.org>
parents:
5225
diff
changeset
|
2622 if (tabadded && TabCtrl_GetCurSel(s_tabhwnd) != curtabidx) |
5216
947edb6335d1
updated for version 7.4a.034
Bram Moolenaar <bram@vim.org>
parents:
5166
diff
changeset
|
2623 TabCtrl_SetCurSel(s_tabhwnd, curtabidx); |
810 | 2624 } |
2625 | |
2626 /* | |
2627 * Set the current tab to "nr". First tab is 1. | |
2628 */ | |
2629 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2630 gui_mch_set_curtab(int nr) |
810 | 2631 { |
2632 if (s_tabhwnd == NULL) | |
2633 return; | |
2634 | |
5216
947edb6335d1
updated for version 7.4a.034
Bram Moolenaar <bram@vim.org>
parents:
5166
diff
changeset
|
2635 if (TabCtrl_GetCurSel(s_tabhwnd) != nr - 1) |
947edb6335d1
updated for version 7.4a.034
Bram Moolenaar <bram@vim.org>
parents:
5166
diff
changeset
|
2636 TabCtrl_SetCurSel(s_tabhwnd, nr - 1); |
810 | 2637 } |
2638 | |
2639 #endif | |
2640 | |
7 | 2641 /* |
2642 * ":simalt" command. | |
2643 */ | |
2644 void | |
2645 ex_simalt(exarg_T *eap) | |
2646 { | |
2647 char_u *keys = eap->arg; | |
2648 | |
2649 PostMessage(s_hwnd, WM_SYSCOMMAND, (WPARAM)SC_KEYMENU, (LPARAM)0); | |
2650 while (*keys) | |
2651 { | |
2652 if (*keys == '~') | |
2653 *keys = ' '; /* for showing system menu */ | |
2654 PostMessage(s_hwnd, WM_CHAR, (WPARAM)*keys, (LPARAM)0); | |
2655 keys++; | |
2656 } | |
2657 } | |
2658 | |
2659 /* | |
2660 * Create the find & replace dialogs. | |
2661 * You can't have both at once: ":find" when replace is showing, destroys | |
2662 * the replace dialog first, and the other way around. | |
2663 */ | |
2664 #ifdef MSWIN_FIND_REPLACE | |
2665 static void | |
2666 initialise_findrep(char_u *initial_string) | |
2667 { | |
2668 int wword = FALSE; | |
2669 int mcase = !p_ic; | |
2670 char_u *entry_text; | |
2671 | |
2672 /* Get the search string to use. */ | |
2673 entry_text = get_find_dialog_text(initial_string, &wword, &mcase); | |
2674 | |
2675 s_findrep_struct.hwndOwner = s_hwnd; | |
2676 s_findrep_struct.Flags = FR_DOWN; | |
2677 if (mcase) | |
2678 s_findrep_struct.Flags |= FR_MATCHCASE; | |
2679 if (wword) | |
2680 s_findrep_struct.Flags |= FR_WHOLEWORD; | |
2681 if (entry_text != NULL && *entry_text != NUL) | |
417 | 2682 vim_strncpy(s_findrep_struct.lpstrFindWhat, entry_text, |
2683 s_findrep_struct.wFindWhatLen - 1); | |
7 | 2684 vim_free(entry_text); |
2685 } | |
2686 #endif | |
2687 | |
1035 | 2688 static void |
2689 set_window_title(HWND hwnd, char *title) | |
2690 { | |
2691 #ifdef FEAT_MBYTE | |
2692 if (title != NULL && enc_codepage >= 0 && enc_codepage != (int)GetACP()) | |
2693 { | |
2694 WCHAR *wbuf; | |
2695 int n; | |
2696 | |
1752 | 2697 /* Convert the title from 'encoding' to UTF-16. */ |
2698 wbuf = (WCHAR *)enc_to_utf16((char_u *)title, NULL); | |
1035 | 2699 if (wbuf != NULL) |
2700 { | |
2701 n = SetWindowTextW(hwnd, wbuf); | |
2702 vim_free(wbuf); | |
2703 if (n != 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED) | |
2704 return; | |
2705 /* Retry with non-wide function (for Windows 98). */ | |
2706 } | |
2707 } | |
2708 #endif | |
2709 (void)SetWindowText(hwnd, (LPCSTR)title); | |
2710 } | |
2711 | |
7 | 2712 void |
2713 gui_mch_find_dialog(exarg_T *eap) | |
2714 { | |
2715 #ifdef MSWIN_FIND_REPLACE | |
2716 if (s_findrep_msg != 0) | |
2717 { | |
2718 if (IsWindow(s_findrep_hwnd) && !s_findrep_is_find) | |
2719 DestroyWindow(s_findrep_hwnd); | |
2720 | |
2721 if (!IsWindow(s_findrep_hwnd)) | |
2722 { | |
2723 initialise_findrep(eap->arg); | |
1795 | 2724 # if defined(FEAT_MBYTE) && defined(WIN3264) |
2725 /* If the OS is Windows NT, and 'encoding' differs from active | |
2726 * codepage: convert text and use wide function. */ | |
2727 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT | |
2728 && enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2729 { | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2730 findrep_atow(&s_findrep_struct_w, &s_findrep_struct); |
1795 | 2731 s_findrep_hwnd = FindTextW( |
2732 (LPFINDREPLACEW) &s_findrep_struct_w); | |
2733 } | |
2734 else | |
2735 # endif | |
2736 s_findrep_hwnd = FindText((LPFINDREPLACE) &s_findrep_struct); | |
7 | 2737 } |
2738 | |
1035 | 2739 set_window_title(s_findrep_hwnd, |
2740 _("Find string (use '\\\\' to find a '\\')")); | |
7 | 2741 (void)SetFocus(s_findrep_hwnd); |
2742 | |
2743 s_findrep_is_find = TRUE; | |
2744 } | |
2745 #endif | |
2746 } | |
2747 | |
2748 | |
2749 void | |
2750 gui_mch_replace_dialog(exarg_T *eap) | |
2751 { | |
2752 #ifdef MSWIN_FIND_REPLACE | |
2753 if (s_findrep_msg != 0) | |
2754 { | |
2755 if (IsWindow(s_findrep_hwnd) && s_findrep_is_find) | |
2756 DestroyWindow(s_findrep_hwnd); | |
2757 | |
2758 if (!IsWindow(s_findrep_hwnd)) | |
2759 { | |
2760 initialise_findrep(eap->arg); | |
1795 | 2761 # if defined(FEAT_MBYTE) && defined(WIN3264) |
2762 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT | |
2763 && enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2764 { | |
2765 findrep_atow(&s_findrep_struct_w, &s_findrep_struct); | |
2766 s_findrep_hwnd = ReplaceTextW( | |
2767 (LPFINDREPLACEW) &s_findrep_struct_w); | |
2768 } | |
2769 else | |
2770 # endif | |
2771 s_findrep_hwnd = ReplaceText( | |
2772 (LPFINDREPLACE) &s_findrep_struct); | |
7 | 2773 } |
2774 | |
1035 | 2775 set_window_title(s_findrep_hwnd, |
2776 _("Find & Replace (use '\\\\' to find a '\\')")); | |
7 | 2777 (void)SetFocus(s_findrep_hwnd); |
2778 | |
2779 s_findrep_is_find = FALSE; | |
2780 } | |
2781 #endif | |
2782 } | |
2783 | |
2784 | |
2785 /* | |
2786 * Set visibility of the pointer. | |
2787 */ | |
2788 void | |
2789 gui_mch_mousehide(int hide) | |
2790 { | |
2791 if (hide != gui.pointer_hidden) | |
2792 { | |
2793 ShowCursor(!hide); | |
2794 gui.pointer_hidden = hide; | |
2795 } | |
2796 } | |
2797 | |
2798 #ifdef FEAT_MENU | |
2799 static void | |
2800 gui_mch_show_popupmenu_at(vimmenu_T *menu, int x, int y) | |
2801 { | |
2802 /* Unhide the mouse, we don't get move events here. */ | |
2803 gui_mch_mousehide(FALSE); | |
2804 | |
2805 (void)TrackPopupMenu( | |
2806 (HMENU)menu->submenu_id, | |
2807 TPM_LEFTALIGN | TPM_LEFTBUTTON, | |
2808 x, y, | |
2809 (int)0, /*reserved param*/ | |
2810 s_hwnd, | |
2811 NULL); | |
2812 /* | |
2813 * NOTE: The pop-up menu can eat the mouse up event. | |
2814 * We deal with this in normal.c. | |
2815 */ | |
2816 } | |
2817 #endif | |
2818 | |
2819 /* | |
2820 * Got a message when the system will go down. | |
2821 */ | |
2822 static void | |
2823 _OnEndSession(void) | |
2824 { | |
2825 getout_preserve_modified(1); | |
2826 } | |
2827 | |
2828 /* | |
2829 * Get this message when the user clicks on the cross in the top right corner | |
2830 * of a Windows95 window. | |
2831 */ | |
323 | 2832 /*ARGSUSED*/ |
7 | 2833 static void |
2834 _OnClose( | |
2835 HWND hwnd) | |
2836 { | |
2837 gui_shell_closed(); | |
2838 } | |
2839 | |
2840 /* | |
2841 * Get a message when the window is being destroyed. | |
2842 */ | |
2843 static void | |
2844 _OnDestroy( | |
2845 HWND hwnd) | |
2846 { | |
2847 #ifdef WIN16_3DLOOK | |
2848 Ctl3dUnregister(s_hinst); | |
2849 #endif | |
2850 if (!destroying) | |
2851 _OnClose(hwnd); | |
2852 } | |
2853 | |
2854 static void | |
2855 _OnPaint( | |
2856 HWND hwnd) | |
2857 { | |
2858 if (!IsMinimized(hwnd)) | |
2859 { | |
2860 PAINTSTRUCT ps; | |
2861 | |
2862 out_flush(); /* make sure all output has been processed */ | |
2863 (void)BeginPaint(hwnd, &ps); | |
6110 | 2864 #if defined(FEAT_DIRECTX) |
2865 if (IS_ENABLE_DIRECTX()) | |
2866 DWriteContext_BeginDraw(s_dwc); | |
2867 #endif | |
7 | 2868 |
2869 #ifdef FEAT_MBYTE | |
2870 /* prevent multi-byte characters from misprinting on an invalid | |
2871 * rectangle */ | |
2872 if (has_mbyte) | |
2873 { | |
2874 RECT rect; | |
2875 | |
2876 GetClientRect(hwnd, &rect); | |
2877 ps.rcPaint.left = rect.left; | |
2878 ps.rcPaint.right = rect.right; | |
2879 } | |
2880 #endif | |
2881 | |
2882 if (!IsRectEmpty(&ps.rcPaint)) | |
6110 | 2883 { |
2884 #if defined(FEAT_DIRECTX) | |
2885 if (IS_ENABLE_DIRECTX()) | |
2886 DWriteContext_BindDC(s_dwc, s_hdc, &ps.rcPaint); | |
2887 #endif | |
7 | 2888 gui_redraw(ps.rcPaint.left, ps.rcPaint.top, |
2889 ps.rcPaint.right - ps.rcPaint.left + 1, | |
2890 ps.rcPaint.bottom - ps.rcPaint.top + 1); | |
6110 | 2891 } |
2892 | |
2893 #if defined(FEAT_DIRECTX) | |
2894 if (IS_ENABLE_DIRECTX()) | |
2895 DWriteContext_EndDraw(s_dwc); | |
2896 #endif | |
7 | 2897 EndPaint(hwnd, &ps); |
2898 } | |
2899 } | |
2900 | |
323 | 2901 /*ARGSUSED*/ |
7 | 2902 static void |
2903 _OnSize( | |
2904 HWND hwnd, | |
2905 UINT state, | |
2906 int cx, | |
2907 int cy) | |
2908 { | |
2909 if (!IsMinimized(hwnd)) | |
2910 { | |
2911 gui_resize_shell(cx, cy); | |
2912 | |
2913 #ifdef FEAT_MENU | |
2914 /* Menu bar may wrap differently now */ | |
2915 gui_mswin_get_menu_height(TRUE); | |
2916 #endif | |
2917 } | |
2918 } | |
2919 | |
2920 static void | |
2921 _OnSetFocus( | |
2922 HWND hwnd, | |
2923 HWND hwndOldFocus) | |
2924 { | |
2925 gui_focus_change(TRUE); | |
1453 | 2926 s_getting_focus = TRUE; |
7 | 2927 (void)MyWindowProc(hwnd, WM_SETFOCUS, (WPARAM)hwndOldFocus, 0); |
2928 } | |
2929 | |
2930 static void | |
2931 _OnKillFocus( | |
2932 HWND hwnd, | |
2933 HWND hwndNewFocus) | |
2934 { | |
2935 gui_focus_change(FALSE); | |
1453 | 2936 s_getting_focus = FALSE; |
7 | 2937 (void)MyWindowProc(hwnd, WM_KILLFOCUS, (WPARAM)hwndNewFocus, 0); |
2938 } | |
2939 | |
2940 /* | |
2941 * Get a message when the user switches back to vim | |
2942 */ | |
2943 #ifdef WIN16 | |
2944 static BOOL | |
2945 #else | |
2946 static LRESULT | |
2947 #endif | |
2948 _OnActivateApp( | |
2949 HWND hwnd, | |
2950 BOOL fActivate, | |
2951 #ifdef WIN16 | |
2952 HTASK dwThreadId | |
2953 #else | |
2954 DWORD dwThreadId | |
2955 #endif | |
2956 ) | |
2957 { | |
2958 /* we call gui_focus_change() in _OnSetFocus() */ | |
2959 /* gui_focus_change((int)fActivate); */ | |
2960 return MyWindowProc(hwnd, WM_ACTIVATEAPP, fActivate, (DWORD)dwThreadId); | |
2961 } | |
2962 | |
2963 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
2964 void | |
2965 gui_mch_destroy_scrollbar(scrollbar_T *sb) | |
2966 { | |
2967 DestroyWindow(sb->id); | |
2968 } | |
2969 #endif | |
2970 | |
2971 /* | |
87 | 2972 * Get current mouse coordinates in text window. |
7 | 2973 */ |
87 | 2974 void |
89 | 2975 gui_mch_getmouse(int *x, int *y) |
7 | 2976 { |
2977 RECT rct; | |
2978 POINT mp; | |
2979 | |
2980 (void)GetWindowRect(s_textArea, &rct); | |
2981 (void)GetCursorPos((LPPOINT)&mp); | |
87 | 2982 *x = (int)(mp.x - rct.left); |
2983 *y = (int)(mp.y - rct.top); | |
7 | 2984 } |
2985 | |
2986 /* | |
2987 * Move mouse pointer to character at (x, y). | |
2988 */ | |
2989 void | |
2990 gui_mch_setmouse(int x, int y) | |
2991 { | |
2992 RECT rct; | |
2993 | |
2994 (void)GetWindowRect(s_textArea, &rct); | |
2995 (void)SetCursorPos(x + gui.border_offset + rct.left, | |
2996 y + gui.border_offset + rct.top); | |
2997 } | |
2998 | |
2999 static void | |
3000 gui_mswin_get_valid_dimensions( | |
3001 int w, | |
3002 int h, | |
3003 int *valid_w, | |
3004 int *valid_h) | |
3005 { | |
3006 int base_width, base_height; | |
3007 | |
3008 base_width = gui_get_base_width() | |
5225
8f983df0299f
updated for version 7.4a.038
Bram Moolenaar <bram@vim.org>
parents:
5223
diff
changeset
|
3009 + (GetSystemMetrics(SM_CXFRAME) + |
7115
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3010 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2; |
7 | 3011 base_height = gui_get_base_height() |
5225
8f983df0299f
updated for version 7.4a.038
Bram Moolenaar <bram@vim.org>
parents:
5223
diff
changeset
|
3012 + (GetSystemMetrics(SM_CYFRAME) + |
7115
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3013 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2 |
7 | 3014 + GetSystemMetrics(SM_CYCAPTION) |
3015 #ifdef FEAT_MENU | |
3016 + gui_mswin_get_menu_height(FALSE) | |
3017 #endif | |
3018 ; | |
3019 *valid_w = base_width + | |
3020 ((w - base_width) / gui.char_width) * gui.char_width; | |
3021 *valid_h = base_height + | |
3022 ((h - base_height) / gui.char_height) * gui.char_height; | |
3023 } | |
3024 | |
3025 void | |
3026 gui_mch_flash(int msec) | |
3027 { | |
3028 RECT rc; | |
3029 | |
3030 /* | |
3031 * Note: InvertRect() excludes right and bottom of rectangle. | |
3032 */ | |
3033 rc.left = 0; | |
3034 rc.top = 0; | |
3035 rc.right = gui.num_cols * gui.char_width; | |
3036 rc.bottom = gui.num_rows * gui.char_height; | |
3037 InvertRect(s_hdc, &rc); | |
3038 gui_mch_flush(); /* make sure it's displayed */ | |
3039 | |
3040 ui_delay((long)msec, TRUE); /* wait for a few msec */ | |
3041 | |
3042 InvertRect(s_hdc, &rc); | |
3043 } | |
3044 | |
3045 /* | |
3046 * Return flags used for scrolling. | |
3047 * The SW_INVALIDATE is required when part of the window is covered or | |
3048 * off-screen. Refer to MS KB Q75236. | |
3049 */ | |
3050 static int | |
3051 get_scroll_flags(void) | |
3052 { | |
3053 HWND hwnd; | |
3054 RECT rcVim, rcOther, rcDest; | |
3055 | |
3056 GetWindowRect(s_hwnd, &rcVim); | |
281 | 3057 |
3058 /* Check if the window is partly above or below the screen. We don't care | |
3059 * about partly left or right of the screen, it is not relevant when | |
3060 * scrolling up or down. */ | |
3061 if (rcVim.top < 0 || rcVim.bottom > GetSystemMetrics(SM_CYFULLSCREEN)) | |
3062 return SW_INVALIDATE; | |
3063 | |
3064 /* Check if there is an window (partly) on top of us. */ | |
7 | 3065 for (hwnd = s_hwnd; (hwnd = GetWindow(hwnd, GW_HWNDPREV)) != (HWND)0; ) |
3066 if (IsWindowVisible(hwnd)) | |
3067 { | |
3068 GetWindowRect(hwnd, &rcOther); | |
3069 if (IntersectRect(&rcDest, &rcVim, &rcOther)) | |
3070 return SW_INVALIDATE; | |
3071 } | |
3072 return 0; | |
3073 } | |
3074 | |
3075 /* | |
7115
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3076 * On some Intel GPUs, the regions drawn just prior to ScrollWindowEx() |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3077 * may not be scrolled out properly. |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3078 * For gVim, when _OnScroll() is repeated, the character at the |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3079 * previous cursor position may be left drawn after scroll. |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3080 * The problem can be avoided by calling GetPixel() to get a pixel in |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3081 * the region before ScrollWindowEx(). |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3082 */ |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3083 static void |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3084 intel_gpu_workaround(void) |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3085 { |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3086 GetPixel(s_hdc, FILL_X(gui.col), FILL_Y(gui.row)); |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3087 } |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3088 |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3089 /* |
7 | 3090 * Delete the given number of lines from the given row, scrolling up any |
3091 * text further down within the scroll region. | |
3092 */ | |
3093 void | |
3094 gui_mch_delete_lines( | |
3095 int row, | |
3096 int num_lines) | |
3097 { | |
3098 RECT rc; | |
3099 | |
7115
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3100 intel_gpu_workaround(); |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3101 |
7 | 3102 rc.left = FILL_X(gui.scroll_region_left); |
3103 rc.right = FILL_X(gui.scroll_region_right + 1); | |
3104 rc.top = FILL_Y(row); | |
3105 rc.bottom = FILL_Y(gui.scroll_region_bot + 1); | |
3106 | |
3107 ScrollWindowEx(s_textArea, 0, -num_lines * gui.char_height, | |
3108 &rc, &rc, NULL, NULL, get_scroll_flags()); | |
3109 | |
3110 UpdateWindow(s_textArea); | |
3111 /* This seems to be required to avoid the cursor disappearing when | |
3112 * scrolling such that the cursor ends up in the top-left character on | |
3113 * the screen... But why? (Webb) */ | |
3114 /* It's probably fixed by disabling drawing the cursor while scrolling. */ | |
3115 /* gui.cursor_is_valid = FALSE; */ | |
3116 | |
3117 gui_clear_block(gui.scroll_region_bot - num_lines + 1, | |
3118 gui.scroll_region_left, | |
3119 gui.scroll_region_bot, gui.scroll_region_right); | |
3120 } | |
3121 | |
3122 /* | |
3123 * Insert the given number of lines before the given row, scrolling down any | |
3124 * following text within the scroll region. | |
3125 */ | |
3126 void | |
3127 gui_mch_insert_lines( | |
3128 int row, | |
3129 int num_lines) | |
3130 { | |
3131 RECT rc; | |
3132 | |
7115
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3133 intel_gpu_workaround(); |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
3134 |
7 | 3135 rc.left = FILL_X(gui.scroll_region_left); |
3136 rc.right = FILL_X(gui.scroll_region_right + 1); | |
3137 rc.top = FILL_Y(row); | |
3138 rc.bottom = FILL_Y(gui.scroll_region_bot + 1); | |
3139 /* The SW_INVALIDATE is required when part of the window is covered or | |
3140 * off-screen. How do we avoid it when it's not needed? */ | |
3141 ScrollWindowEx(s_textArea, 0, num_lines * gui.char_height, | |
3142 &rc, &rc, NULL, NULL, get_scroll_flags()); | |
3143 | |
3144 UpdateWindow(s_textArea); | |
3145 | |
3146 gui_clear_block(row, gui.scroll_region_left, | |
3147 row + num_lines - 1, gui.scroll_region_right); | |
3148 } | |
3149 | |
3150 | |
323 | 3151 /*ARGSUSED*/ |
7 | 3152 void |
3153 gui_mch_exit(int rc) | |
3154 { | |
6110 | 3155 #if defined(FEAT_DIRECTX) |
3156 DWriteContext_Close(s_dwc); | |
3157 DWrite_Final(); | |
3158 s_dwc = NULL; | |
3159 #endif | |
3160 | |
7 | 3161 ReleaseDC(s_textArea, s_hdc); |
3162 DeleteObject(s_brush); | |
3163 | |
3164 #ifdef FEAT_TEAROFF | |
3165 /* Unload the tearoff bitmap */ | |
3166 (void)DeleteObject((HGDIOBJ)s_htearbitmap); | |
3167 #endif | |
3168 | |
3169 /* Destroy our window (if we have one). */ | |
3170 if (s_hwnd != NULL) | |
3171 { | |
3172 destroying = TRUE; /* ignore WM_DESTROY message now */ | |
3173 DestroyWindow(s_hwnd); | |
3174 } | |
3175 | |
3176 #ifdef GLOBAL_IME | |
3177 global_ime_end(); | |
3178 #endif | |
3179 } | |
3180 | |
37 | 3181 static char_u * |
3182 logfont2name(LOGFONT lf) | |
3183 { | |
3184 char *p; | |
3185 char *res; | |
3186 char *charset_name; | |
5714 | 3187 char *font_name = lf.lfFaceName; |
37 | 3188 |
3189 charset_name = charset_id2name((int)lf.lfCharSet); | |
5714 | 3190 #ifdef FEAT_MBYTE |
3191 /* Convert a font name from the current codepage to 'encoding'. | |
3192 * TODO: Use Wide APIs (including LOGFONTW) instead of ANSI APIs. */ | |
3193 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
3194 { | |
3195 int len; | |
5722 | 3196 acp_to_enc(lf.lfFaceName, (int)strlen(lf.lfFaceName), |
5714 | 3197 (char_u **)&font_name, &len); |
3198 } | |
3199 #endif | |
3200 res = alloc((unsigned)(strlen(font_name) + 20 | |
37 | 3201 + (charset_name == NULL ? 0 : strlen(charset_name) + 2))); |
3202 if (res != NULL) | |
3203 { | |
3204 p = res; | |
3205 /* make a normal font string out of the lf thing:*/ | |
5714 | 3206 sprintf((char *)p, "%s:h%d", font_name, pixels_to_points( |
37 | 3207 lf.lfHeight < 0 ? -lf.lfHeight : lf.lfHeight, TRUE)); |
3208 while (*p) | |
3209 { | |
3210 if (*p == ' ') | |
3211 *p = '_'; | |
3212 ++p; | |
3213 } | |
3214 #ifndef MSWIN16_FASTTEXT | |
3215 if (lf.lfItalic) | |
3216 STRCAT(p, ":i"); | |
3217 if (lf.lfWeight >= FW_BOLD) | |
3218 STRCAT(p, ":b"); | |
3219 #endif | |
3220 if (lf.lfUnderline) | |
3221 STRCAT(p, ":u"); | |
3222 if (lf.lfStrikeOut) | |
3223 STRCAT(p, ":s"); | |
3224 if (charset_name != NULL) | |
3225 { | |
3226 STRCAT(p, ":c"); | |
3227 STRCAT(p, charset_name); | |
3228 } | |
3229 } | |
3230 | |
5714 | 3231 #ifdef FEAT_MBYTE |
3232 if (font_name != lf.lfFaceName) | |
3233 vim_free(font_name); | |
3234 #endif | |
37 | 3235 return res; |
3236 } | |
3237 | |
4055 | 3238 |
3239 #ifdef FEAT_MBYTE_IME | |
3240 /* | |
3241 * Set correct LOGFONT to IME. Use 'guifontwide' if available, otherwise use | |
3242 * 'guifont' | |
3243 */ | |
3244 static void | |
5166
467efeee8f9e
updated for version 7.4a.009
Bram Moolenaar <bram@vim.org>
parents:
4950
diff
changeset
|
3245 update_im_font(void) |
4055 | 3246 { |
3247 LOGFONT lf_wide; | |
3248 | |
3249 if (p_guifontwide != NULL && *p_guifontwide != NUL | |
4059 | 3250 && gui.wide_font != NOFONT |
3251 && GetObject((HFONT)gui.wide_font, sizeof(lf_wide), &lf_wide)) | |
4055 | 3252 norm_logfont = lf_wide; |
3253 else | |
3254 norm_logfont = sub_logfont; | |
3255 im_set_font(&norm_logfont); | |
3256 } | |
3257 #endif | |
3258 | |
3259 #ifdef FEAT_MBYTE | |
3260 /* | |
3261 * Handler of gui.wide_font (p_guifontwide) changed notification. | |
3262 */ | |
3263 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3264 gui_mch_wide_font_changed(void) |
4055 | 3265 { |
4950
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3266 # ifndef MSWIN16_FASTTEXT |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3267 LOGFONT lf; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3268 # endif |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3269 |
4055 | 3270 # ifdef FEAT_MBYTE_IME |
3271 update_im_font(); | |
3272 # endif | |
4950
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3273 |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3274 # ifndef MSWIN16_FASTTEXT |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3275 gui_mch_free_font(gui.wide_ital_font); |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3276 gui.wide_ital_font = NOFONT; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3277 gui_mch_free_font(gui.wide_bold_font); |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3278 gui.wide_bold_font = NOFONT; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3279 gui_mch_free_font(gui.wide_boldital_font); |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3280 gui.wide_boldital_font = NOFONT; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3281 |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3282 if (gui.wide_font |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3283 && GetObject((HFONT)gui.wide_font, sizeof(lf), &lf)) |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3284 { |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3285 if (!lf.lfItalic) |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3286 { |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3287 lf.lfItalic = TRUE; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3288 gui.wide_ital_font = get_font_handle(&lf); |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3289 lf.lfItalic = FALSE; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3290 } |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3291 if (lf.lfWeight < FW_BOLD) |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3292 { |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3293 lf.lfWeight = FW_BOLD; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3294 gui.wide_bold_font = get_font_handle(&lf); |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3295 if (!lf.lfItalic) |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3296 { |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3297 lf.lfItalic = TRUE; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3298 gui.wide_boldital_font = get_font_handle(&lf); |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3299 } |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3300 } |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3301 } |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3302 # endif |
4055 | 3303 } |
3304 #endif | |
3305 | |
7 | 3306 /* |
37 | 3307 * Initialise vim to use the font with the given name. |
3308 * Return FAIL if the font could not be loaded, OK otherwise. | |
7 | 3309 */ |
323 | 3310 /*ARGSUSED*/ |
7 | 3311 int |
3312 gui_mch_init_font(char_u *font_name, int fontset) | |
3313 { | |
3314 LOGFONT lf; | |
3315 GuiFont font = NOFONT; | |
37 | 3316 char_u *p; |
7 | 3317 |
3318 /* Load the font */ | |
37 | 3319 if (get_logfont(&lf, font_name, NULL, TRUE) == OK) |
7 | 3320 font = get_font_handle(&lf); |
3321 if (font == NOFONT) | |
3322 return FAIL; | |
37 | 3323 |
7 | 3324 if (font_name == NULL) |
3325 font_name = lf.lfFaceName; | |
3326 #if defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME) | |
3327 norm_logfont = lf; | |
4055 | 3328 sub_logfont = lf; |
7 | 3329 #endif |
3330 #ifdef FEAT_MBYTE_IME | |
4055 | 3331 update_im_font(); |
7 | 3332 #endif |
3333 gui_mch_free_font(gui.norm_font); | |
3334 gui.norm_font = font; | |
3335 current_font_height = lf.lfHeight; | |
3336 GetFontSize(font); | |
37 | 3337 |
3338 p = logfont2name(lf); | |
3339 if (p != NULL) | |
7 | 3340 { |
37 | 3341 hl_set_font_name(p); |
3342 | |
3343 /* When setting 'guifont' to "*" replace it with the actual font name. | |
3344 * */ | |
3345 if (STRCMP(font_name, "*") == 0 && STRCMP(p_guifont, "*") == 0) | |
7 | 3346 { |
3347 vim_free(p_guifont); | |
3348 p_guifont = p; | |
3349 } | |
37 | 3350 else |
3351 vim_free(p); | |
7 | 3352 } |
3353 | |
3354 #ifndef MSWIN16_FASTTEXT | |
3355 gui_mch_free_font(gui.ital_font); | |
3356 gui.ital_font = NOFONT; | |
3357 gui_mch_free_font(gui.bold_font); | |
3358 gui.bold_font = NOFONT; | |
3359 gui_mch_free_font(gui.boldital_font); | |
3360 gui.boldital_font = NOFONT; | |
3361 | |
3362 if (!lf.lfItalic) | |
3363 { | |
3364 lf.lfItalic = TRUE; | |
3365 gui.ital_font = get_font_handle(&lf); | |
3366 lf.lfItalic = FALSE; | |
3367 } | |
3368 if (lf.lfWeight < FW_BOLD) | |
3369 { | |
3370 lf.lfWeight = FW_BOLD; | |
3371 gui.bold_font = get_font_handle(&lf); | |
3372 if (!lf.lfItalic) | |
3373 { | |
3374 lf.lfItalic = TRUE; | |
3375 gui.boldital_font = get_font_handle(&lf); | |
3376 } | |
3377 } | |
3378 #endif | |
3379 | |
3380 return OK; | |
3381 } | |
3382 | |
1044 | 3383 #ifndef WPF_RESTORETOMAXIMIZED |
3384 # define WPF_RESTORETOMAXIMIZED 2 /* just in case someone doesn't have it */ | |
3385 #endif | |
3386 | |
7 | 3387 /* |
3388 * Return TRUE if the GUI window is maximized, filling the whole screen. | |
3389 */ | |
3390 int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3391 gui_mch_maximized(void) |
7 | 3392 { |
1044 | 3393 WINDOWPLACEMENT wp; |
3394 | |
3395 wp.length = sizeof(WINDOWPLACEMENT); | |
3396 if (GetWindowPlacement(s_hwnd, &wp)) | |
3397 return wp.showCmd == SW_SHOWMAXIMIZED | |
3398 || (wp.showCmd == SW_SHOWMINIMIZED | |
3399 && wp.flags == WPF_RESTORETOMAXIMIZED); | |
3400 | |
3401 return 0; | |
7 | 3402 } |
3403 | |
3404 /* | |
3405 * Called when the font changed while the window is maximized. Compute the | |
3406 * new Rows and Columns. This is like resizing the window. | |
3407 */ | |
3408 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3409 gui_mch_newfont(void) |
7 | 3410 { |
3411 RECT rect; | |
3412 | |
3413 GetWindowRect(s_hwnd, &rect); | |
7125
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3414 if (win_socket_id == 0) |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3415 { |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3416 gui_resize_shell(rect.right - rect.left |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3417 - (GetSystemMetrics(SM_CXFRAME) + |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3418 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2, |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3419 rect.bottom - rect.top |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3420 - (GetSystemMetrics(SM_CYFRAME) + |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3421 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2 |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3422 - GetSystemMetrics(SM_CYCAPTION) |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3423 #ifdef FEAT_MENU |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3424 - gui_mswin_get_menu_height(FALSE) |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3425 #endif |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3426 ); |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3427 } |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3428 else |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3429 { |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3430 /* Inside another window, don't use the frame and border. */ |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3431 gui_resize_shell(rect.right - rect.left, |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3432 rect.bottom - rect.top |
7 | 3433 #ifdef FEAT_MENU |
3434 - gui_mswin_get_menu_height(FALSE) | |
3435 #endif | |
7125
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3436 ); |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
3437 } |
7 | 3438 } |
3439 | |
3440 /* | |
3441 * Set the window title | |
3442 */ | |
323 | 3443 /*ARGSUSED*/ |
7 | 3444 void |
3445 gui_mch_settitle( | |
3446 char_u *title, | |
3447 char_u *icon) | |
3448 { | |
1035 | 3449 set_window_title(s_hwnd, (title == NULL ? "VIM" : (char *)title)); |
7 | 3450 } |
3451 | |
3452 #ifdef FEAT_MOUSESHAPE | |
3453 /* Table for shape IDCs. Keep in sync with the mshape_names[] table in | |
3454 * misc2.c! */ | |
3455 static LPCSTR mshape_idcs[] = | |
3456 { | |
4238 | 3457 IDC_ARROW, /* arrow */ |
3458 MAKEINTRESOURCE(0), /* blank */ | |
3459 IDC_IBEAM, /* beam */ | |
3460 IDC_SIZENS, /* updown */ | |
3461 IDC_SIZENS, /* udsizing */ | |
3462 IDC_SIZEWE, /* leftright */ | |
3463 IDC_SIZEWE, /* lrsizing */ | |
3464 IDC_WAIT, /* busy */ | |
7 | 3465 #ifdef WIN3264 |
4238 | 3466 IDC_NO, /* no */ |
7 | 3467 #else |
4238 | 3468 IDC_ICON, /* no */ |
7 | 3469 #endif |
4238 | 3470 IDC_ARROW, /* crosshair */ |
3471 IDC_ARROW, /* hand1 */ | |
3472 IDC_ARROW, /* hand2 */ | |
3473 IDC_ARROW, /* pencil */ | |
3474 IDC_ARROW, /* question */ | |
3475 IDC_ARROW, /* right-arrow */ | |
3476 IDC_UPARROW, /* up-arrow */ | |
3477 IDC_ARROW /* last one */ | |
7 | 3478 }; |
3479 | |
3480 void | |
3481 mch_set_mouse_shape(int shape) | |
3482 { | |
3483 LPCSTR idc; | |
3484 | |
3485 if (shape == MSHAPE_HIDE) | |
3486 ShowCursor(FALSE); | |
3487 else | |
3488 { | |
3489 if (shape >= MSHAPE_NUMBERED) | |
4238 | 3490 idc = IDC_ARROW; |
7 | 3491 else |
3492 idc = mshape_idcs[shape]; | |
1686 | 3493 #ifdef SetClassLongPtr |
3494 SetClassLongPtr(s_textArea, GCLP_HCURSOR, (__int3264)(LONG_PTR)LoadCursor(NULL, idc)); | |
7 | 3495 #else |
3496 # ifdef WIN32 | |
1686 | 3497 SetClassLong(s_textArea, GCL_HCURSOR, (long_u)LoadCursor(NULL, idc)); |
3498 # else /* Win16 */ | |
7 | 3499 SetClassWord(s_textArea, GCW_HCURSOR, (WORD)LoadCursor(NULL, idc)); |
3500 # endif | |
3501 #endif | |
3502 if (!p_mh) | |
3503 { | |
3504 POINT mp; | |
3505 | |
3506 /* Set the position to make it redrawn with the new shape. */ | |
3507 (void)GetCursorPos((LPPOINT)&mp); | |
3508 (void)SetCursorPos(mp.x, mp.y); | |
3509 ShowCursor(TRUE); | |
3510 } | |
3511 } | |
3512 } | |
3513 #endif | |
3514 | |
3515 #ifdef FEAT_BROWSE | |
3516 /* | |
3517 * The file browser exists in two versions: with "W" uses wide characters, | |
3518 * without "W" the current codepage. When FEAT_MBYTE is defined and on | |
3519 * Windows NT/2000/XP the "W" functions are used. | |
3520 */ | |
3521 | |
3522 # if defined(FEAT_MBYTE) && defined(WIN3264) | |
3523 /* | |
3275 | 3524 * Wide version of convert_filter(). |
7 | 3525 */ |
3526 static WCHAR * | |
3527 convert_filterW(char_u *s) | |
3528 { | |
3275 | 3529 char_u *tmp; |
3530 int len; | |
3279 | 3531 WCHAR *res; |
3275 | 3532 |
3533 tmp = convert_filter(s); | |
3534 if (tmp == NULL) | |
3535 return NULL; | |
3536 len = (int)STRLEN(s) + 3; | |
3537 res = enc_to_utf16(tmp, &len); | |
3538 vim_free(tmp); | |
7 | 3539 return res; |
3540 } | |
3541 | |
3542 /* | |
3543 * Wide version of gui_mch_browse(). Keep in sync! | |
3544 */ | |
3545 static char_u * | |
3546 gui_mch_browseW( | |
3547 int saving, | |
3548 char_u *title, | |
3549 char_u *dflt, | |
3550 char_u *ext, | |
3551 char_u *initdir, | |
3552 char_u *filter) | |
3553 { | |
1752 | 3554 /* We always use the wide function. This means enc_to_utf16() must work, |
7 | 3555 * otherwise it fails miserably! */ |
3556 OPENFILENAMEW fileStruct; | |
3557 WCHAR fileBuf[MAXPATHL]; | |
3558 WCHAR *wp; | |
3559 int i; | |
3560 WCHAR *titlep = NULL; | |
3561 WCHAR *extp = NULL; | |
3562 WCHAR *initdirp = NULL; | |
3563 WCHAR *filterp; | |
3564 char_u *p; | |
3565 | |
3566 if (dflt == NULL) | |
3567 fileBuf[0] = NUL; | |
3568 else | |
3569 { | |
1752 | 3570 wp = enc_to_utf16(dflt, NULL); |
7 | 3571 if (wp == NULL) |
3572 fileBuf[0] = NUL; | |
3573 else | |
3574 { | |
3575 for (i = 0; wp[i] != NUL && i < MAXPATHL - 1; ++i) | |
3576 fileBuf[i] = wp[i]; | |
3577 fileBuf[i] = NUL; | |
3578 vim_free(wp); | |
3579 } | |
3580 } | |
3581 | |
3582 /* Convert the filter to Windows format. */ | |
3583 filterp = convert_filterW(filter); | |
3584 | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3585 vim_memset(&fileStruct, 0, sizeof(OPENFILENAMEW)); |
7 | 3586 #ifdef OPENFILENAME_SIZE_VERSION_400 |
3587 /* be compatible with Windows NT 4.0 */ | |
3588 /* TODO: what to use for OPENFILENAMEW??? */ | |
2081
7b0e89b77216
updated for version 7.2.365
Bram Moolenaar <bram@zimbu.org>
parents:
2078
diff
changeset
|
3589 fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400; |
7 | 3590 #else |
3591 fileStruct.lStructSize = sizeof(fileStruct); | |
3592 #endif | |
3593 | |
3594 if (title != NULL) | |
1752 | 3595 titlep = enc_to_utf16(title, NULL); |
7 | 3596 fileStruct.lpstrTitle = titlep; |
3597 | |
3598 if (ext != NULL) | |
1752 | 3599 extp = enc_to_utf16(ext, NULL); |
7 | 3600 fileStruct.lpstrDefExt = extp; |
3601 | |
3602 fileStruct.lpstrFile = fileBuf; | |
3603 fileStruct.nMaxFile = MAXPATHL; | |
3604 fileStruct.lpstrFilter = filterp; | |
3605 fileStruct.hwndOwner = s_hwnd; /* main Vim window is owner*/ | |
3606 /* has an initial dir been specified? */ | |
3607 if (initdir != NULL && *initdir != NUL) | |
3608 { | |
3609 /* Must have backslashes here, no matter what 'shellslash' says */ | |
1752 | 3610 initdirp = enc_to_utf16(initdir, NULL); |
7 | 3611 if (initdirp != NULL) |
3612 { | |
3613 for (wp = initdirp; *wp != NUL; ++wp) | |
3614 if (*wp == '/') | |
3615 *wp = '\\'; | |
3616 } | |
3617 fileStruct.lpstrInitialDir = initdirp; | |
3618 } | |
3619 | |
3620 /* | |
3621 * TODO: Allow selection of multiple files. Needs another arg to this | |
3622 * function to ask for it, and need to use OFN_ALLOWMULTISELECT below. | |
3623 * Also, should we use OFN_FILEMUSTEXIST when opening? Vim can edit on | |
3624 * files that don't exist yet, so I haven't put it in. What about | |
3625 * OFN_PATHMUSTEXIST? | |
3626 * Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog. | |
3627 */ | |
3628 fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY); | |
3629 #ifdef FEAT_SHORTCUT | |
3630 if (curbuf->b_p_bin) | |
3631 fileStruct.Flags |= OFN_NODEREFERENCELINKS; | |
3632 #endif | |
3633 if (saving) | |
3634 { | |
3635 if (!GetSaveFileNameW(&fileStruct)) | |
3636 return NULL; | |
3637 } | |
3638 else | |
3639 { | |
3640 if (!GetOpenFileNameW(&fileStruct)) | |
3641 return NULL; | |
3642 } | |
3643 | |
3644 vim_free(filterp); | |
3645 vim_free(initdirp); | |
3646 vim_free(titlep); | |
3647 vim_free(extp); | |
3648 | |
3649 /* Convert from UCS2 to 'encoding'. */ | |
1752 | 3650 p = utf16_to_enc(fileBuf, NULL); |
7 | 3651 if (p != NULL) |
3652 /* when out of memory we get garbage for non-ASCII chars */ | |
3653 STRCPY(fileBuf, p); | |
3654 vim_free(p); | |
3655 | |
3656 /* Give focus back to main window (when using MDI). */ | |
3657 SetFocus(s_hwnd); | |
3658 | |
3659 /* Shorten the file name if possible */ | |
1411 | 3660 return vim_strsave(shorten_fname1((char_u *)fileBuf)); |
7 | 3661 } |
3662 # endif /* FEAT_MBYTE */ | |
3663 | |
3664 | |
3665 /* | |
3666 * Convert the string s to the proper format for a filter string by replacing | |
1738 | 3667 * the \t and \n delimiters with \0. |
7 | 3668 * Returns the converted string in allocated memory. |
3669 * | |
3670 * Keep in sync with convert_filterW() above! | |
3671 */ | |
3672 static char_u * | |
3673 convert_filter(char_u *s) | |
3674 { | |
3675 char_u *res; | |
3676 unsigned s_len = (unsigned)STRLEN(s); | |
3677 unsigned i; | |
3678 | |
3679 res = alloc(s_len + 3); | |
3680 if (res != NULL) | |
3681 { | |
3682 for (i = 0; i < s_len; ++i) | |
3683 if (s[i] == '\t' || s[i] == '\n') | |
3684 res[i] = '\0'; | |
3685 else | |
3686 res[i] = s[i]; | |
3687 res[s_len] = NUL; | |
3688 /* Add two extra NULs to make sure it's properly terminated. */ | |
3689 res[s_len + 1] = NUL; | |
3690 res[s_len + 2] = NUL; | |
3691 } | |
3692 return res; | |
3693 } | |
3694 | |
3695 /* | |
28 | 3696 * Select a directory. |
3697 */ | |
3698 char_u * | |
3699 gui_mch_browsedir(char_u *title, char_u *initdir) | |
3700 { | |
3701 /* We fake this: Use a filter that doesn't select anything and a default | |
3702 * file name that won't be used. */ | |
3703 return gui_mch_browse(0, title, (char_u *)_("Not Used"), NULL, | |
3704 initdir, (char_u *)_("Directory\t*.nothing\n")); | |
3705 } | |
3706 | |
3707 /* | |
7 | 3708 * Pop open a file browser and return the file selected, in allocated memory, |
3709 * or NULL if Cancel is hit. | |
3710 * saving - TRUE if the file will be saved to, FALSE if it will be opened. | |
3711 * title - Title message for the file browser dialog. | |
3712 * dflt - Default name of file. | |
3713 * ext - Default extension to be added to files without extensions. | |
3714 * initdir - directory in which to open the browser (NULL = current dir) | |
3715 * filter - Filter for matched files to choose from. | |
3716 * | |
3717 * Keep in sync with gui_mch_browseW() above! | |
3718 */ | |
3719 char_u * | |
3720 gui_mch_browse( | |
3721 int saving, | |
3722 char_u *title, | |
3723 char_u *dflt, | |
3724 char_u *ext, | |
3725 char_u *initdir, | |
3726 char_u *filter) | |
3727 { | |
3728 OPENFILENAME fileStruct; | |
3729 char_u fileBuf[MAXPATHL]; | |
3730 char_u *initdirp = NULL; | |
3731 char_u *filterp; | |
3732 char_u *p; | |
3733 | |
3734 # if defined(FEAT_MBYTE) && defined(WIN3264) | |
3735 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT) | |
3736 return gui_mch_browseW(saving, title, dflt, ext, initdir, filter); | |
3737 # endif | |
3738 | |
3739 if (dflt == NULL) | |
3740 fileBuf[0] = NUL; | |
3741 else | |
417 | 3742 vim_strncpy(fileBuf, dflt, MAXPATHL - 1); |
7 | 3743 |
3744 /* Convert the filter to Windows format. */ | |
3745 filterp = convert_filter(filter); | |
3746 | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3747 vim_memset(&fileStruct, 0, sizeof(OPENFILENAME)); |
7 | 3748 #ifdef OPENFILENAME_SIZE_VERSION_400 |
3749 /* be compatible with Windows NT 4.0 */ | |
2081
7b0e89b77216
updated for version 7.2.365
Bram Moolenaar <bram@zimbu.org>
parents:
2078
diff
changeset
|
3750 fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400; |
7 | 3751 #else |
3752 fileStruct.lStructSize = sizeof(fileStruct); | |
3753 #endif | |
3754 | |
3755 fileStruct.lpstrTitle = title; | |
3756 fileStruct.lpstrDefExt = ext; | |
3757 | |
3758 fileStruct.lpstrFile = fileBuf; | |
3759 fileStruct.nMaxFile = MAXPATHL; | |
3760 fileStruct.lpstrFilter = filterp; | |
3761 fileStruct.hwndOwner = s_hwnd; /* main Vim window is owner*/ | |
3762 /* has an initial dir been specified? */ | |
3763 if (initdir != NULL && *initdir != NUL) | |
3764 { | |
3765 /* Must have backslashes here, no matter what 'shellslash' says */ | |
3766 initdirp = vim_strsave(initdir); | |
3767 if (initdirp != NULL) | |
3768 for (p = initdirp; *p != NUL; ++p) | |
3769 if (*p == '/') | |
3770 *p = '\\'; | |
3771 fileStruct.lpstrInitialDir = initdirp; | |
3772 } | |
3773 | |
3774 /* | |
3775 * TODO: Allow selection of multiple files. Needs another arg to this | |
3776 * function to ask for it, and need to use OFN_ALLOWMULTISELECT below. | |
3777 * Also, should we use OFN_FILEMUSTEXIST when opening? Vim can edit on | |
3778 * files that don't exist yet, so I haven't put it in. What about | |
3779 * OFN_PATHMUSTEXIST? | |
3780 * Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog. | |
3781 */ | |
3782 fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY); | |
3783 #ifdef FEAT_SHORTCUT | |
3784 if (curbuf->b_p_bin) | |
3785 fileStruct.Flags |= OFN_NODEREFERENCELINKS; | |
3786 #endif | |
3787 if (saving) | |
3788 { | |
3789 if (!GetSaveFileName(&fileStruct)) | |
3790 return NULL; | |
3791 } | |
3792 else | |
3793 { | |
3794 if (!GetOpenFileName(&fileStruct)) | |
3795 return NULL; | |
3796 } | |
3797 | |
3798 vim_free(filterp); | |
3799 vim_free(initdirp); | |
3800 | |
3801 /* Give focus back to main window (when using MDI). */ | |
3802 SetFocus(s_hwnd); | |
3803 | |
3804 /* Shorten the file name if possible */ | |
1411 | 3805 return vim_strsave(shorten_fname1((char_u *)fileBuf)); |
7 | 3806 } |
3807 #endif /* FEAT_BROWSE */ | |
3808 | |
323 | 3809 /*ARGSUSED*/ |
7 | 3810 static void |
3811 _OnDropFiles( | |
3812 HWND hwnd, | |
3813 HDROP hDrop) | |
3814 { | |
3815 #ifdef FEAT_WINDOWS | |
3816 #ifdef WIN3264 | |
3817 # define BUFPATHLEN _MAX_PATH | |
3818 # define DRAGQVAL 0xFFFFFFFF | |
3819 #else | |
3820 # define BUFPATHLEN MAXPATHL | |
3821 # define DRAGQVAL 0xFFFF | |
3822 #endif | |
3823 #ifdef FEAT_MBYTE | |
3824 WCHAR wszFile[BUFPATHLEN]; | |
3825 #endif | |
3826 char szFile[BUFPATHLEN]; | |
3827 UINT cFiles = DragQueryFile(hDrop, DRAGQVAL, NULL, 0); | |
3828 UINT i; | |
3829 char_u **fnames; | |
3830 POINT pt; | |
3831 int_u modifiers = 0; | |
3832 | |
3833 /* TRACE("_OnDropFiles: %d files dropped\n", cFiles); */ | |
3834 | |
3835 /* Obtain dropped position */ | |
3836 DragQueryPoint(hDrop, &pt); | |
3837 MapWindowPoints(s_hwnd, s_textArea, &pt, 1); | |
3838 | |
3839 reset_VIsual(); | |
3840 | |
3841 fnames = (char_u **)alloc(cFiles * sizeof(char_u *)); | |
3842 | |
3843 if (fnames != NULL) | |
3844 for (i = 0; i < cFiles; ++i) | |
3845 { | |
3846 #ifdef FEAT_MBYTE | |
3847 if (DragQueryFileW(hDrop, i, wszFile, BUFPATHLEN) > 0) | |
1752 | 3848 fnames[i] = utf16_to_enc(wszFile, NULL); |
7 | 3849 else |
3850 #endif | |
3851 { | |
3852 DragQueryFile(hDrop, i, szFile, BUFPATHLEN); | |
3853 fnames[i] = vim_strsave(szFile); | |
3854 } | |
3855 } | |
3856 | |
3857 DragFinish(hDrop); | |
3858 | |
3859 if (fnames != NULL) | |
3860 { | |
3861 if ((GetKeyState(VK_SHIFT) & 0x8000) != 0) | |
3862 modifiers |= MOUSE_SHIFT; | |
3863 if ((GetKeyState(VK_CONTROL) & 0x8000) != 0) | |
3864 modifiers |= MOUSE_CTRL; | |
3865 if ((GetKeyState(VK_MENU) & 0x8000) != 0) | |
3866 modifiers |= MOUSE_ALT; | |
3867 | |
3868 gui_handle_drop(pt.x, pt.y, modifiers, fnames, cFiles); | |
3869 | |
3870 s_need_activate = TRUE; | |
3871 } | |
3872 #endif | |
3873 } | |
3874 | |
323 | 3875 /*ARGSUSED*/ |
7 | 3876 static int |
3877 _OnScroll( | |
3878 HWND hwnd, | |
3879 HWND hwndCtl, | |
3880 UINT code, | |
3881 int pos) | |
3882 { | |
3883 static UINT prev_code = 0; /* code of previous call */ | |
3884 scrollbar_T *sb, *sb_info; | |
3885 long val; | |
3886 int dragging = FALSE; | |
3887 int dont_scroll_save = dont_scroll; | |
3888 #ifndef WIN3264 | |
3889 int nPos; | |
3890 #else | |
3891 SCROLLINFO si; | |
3892 | |
3893 si.cbSize = sizeof(si); | |
3894 si.fMask = SIF_POS; | |
3895 #endif | |
3896 | |
3897 sb = gui_mswin_find_scrollbar(hwndCtl); | |
3898 if (sb == NULL) | |
3899 return 0; | |
3900 | |
3901 if (sb->wp != NULL) /* Left or right scrollbar */ | |
3902 { | |
3903 /* | |
3904 * Careful: need to get scrollbar info out of first (left) scrollbar | |
3905 * for window, but keep real scrollbar too because we must pass it to | |
3906 * gui_drag_scrollbar(). | |
3907 */ | |
3908 sb_info = &sb->wp->w_scrollbars[0]; | |
3909 } | |
3910 else /* Bottom scrollbar */ | |
3911 sb_info = sb; | |
3912 val = sb_info->value; | |
3913 | |
3914 switch (code) | |
3915 { | |
3916 case SB_THUMBTRACK: | |
3917 val = pos; | |
3918 dragging = TRUE; | |
3919 if (sb->scroll_shift > 0) | |
3920 val <<= sb->scroll_shift; | |
3921 break; | |
3922 case SB_LINEDOWN: | |
3923 val++; | |
3924 break; | |
3925 case SB_LINEUP: | |
3926 val--; | |
3927 break; | |
3928 case SB_PAGEDOWN: | |
3929 val += (sb_info->size > 2 ? sb_info->size - 2 : 1); | |
3930 break; | |
3931 case SB_PAGEUP: | |
3932 val -= (sb_info->size > 2 ? sb_info->size - 2 : 1); | |
3933 break; | |
3934 case SB_TOP: | |
3935 val = 0; | |
3936 break; | |
3937 case SB_BOTTOM: | |
3938 val = sb_info->max; | |
3939 break; | |
3940 case SB_ENDSCROLL: | |
3941 if (prev_code == SB_THUMBTRACK) | |
3942 { | |
3943 /* | |
3944 * "pos" only gives us 16-bit data. In case of large file, | |
3945 * use GetScrollPos() which returns 32-bit. Unfortunately it | |
3946 * is not valid while the scrollbar is being dragged. | |
3947 */ | |
3948 val = GetScrollPos(hwndCtl, SB_CTL); | |
3949 if (sb->scroll_shift > 0) | |
3950 val <<= sb->scroll_shift; | |
3951 } | |
3952 break; | |
3953 | |
3954 default: | |
3955 /* TRACE("Unknown scrollbar event %d\n", code); */ | |
3956 return 0; | |
3957 } | |
3958 prev_code = code; | |
3959 | |
3960 #ifdef WIN3264 | |
3961 si.nPos = (sb->scroll_shift > 0) ? val >> sb->scroll_shift : val; | |
3962 SetScrollInfo(hwndCtl, SB_CTL, &si, TRUE); | |
3963 #else | |
3964 nPos = (sb->scroll_shift > 0) ? val >> sb->scroll_shift : val; | |
3965 SetScrollPos(hwndCtl, SB_CTL, nPos, TRUE); | |
3966 #endif | |
3967 | |
3968 /* | |
3969 * When moving a vertical scrollbar, move the other vertical scrollbar too. | |
3970 */ | |
3971 if (sb->wp != NULL) | |
3972 { | |
3973 scrollbar_T *sba = sb->wp->w_scrollbars; | |
3974 HWND id = sba[ (sb == sba + SBAR_LEFT) ? SBAR_RIGHT : SBAR_LEFT].id; | |
3975 | |
3976 #ifdef WIN3264 | |
3977 SetScrollInfo(id, SB_CTL, &si, TRUE); | |
3978 #else | |
3979 SetScrollPos(id, SB_CTL, nPos, TRUE); | |
3980 #endif | |
3981 } | |
3982 | |
3983 /* Don't let us be interrupted here by another message. */ | |
3984 s_busy_processing = TRUE; | |
3985 | |
3986 /* When "allow_scrollbar" is FALSE still need to remember the new | |
3987 * position, but don't actually scroll by setting "dont_scroll". */ | |
3988 dont_scroll = !allow_scrollbar; | |
3989 | |
3990 gui_drag_scrollbar(sb, val, dragging); | |
3991 | |
3992 s_busy_processing = FALSE; | |
3993 dont_scroll = dont_scroll_save; | |
3994 | |
3995 return 0; | |
3996 } | |
3997 | |
26 | 3998 |
7 | 3999 /* |
4000 * Get command line arguments. | |
4001 * Use "prog" as the name of the program and "cmdline" as the arguments. | |
4002 * Copy the arguments to allocated memory. | |
4003 * Return the number of arguments (including program name). | |
1738 | 4004 * Return pointers to the arguments in "argvp". Memory is allocated with |
4005 * malloc(), use free() instead of vim_free(). | |
7 | 4006 * Return pointer to buffer in "tofree". |
4007 * Returns zero when out of memory. | |
4008 */ | |
323 | 4009 /*ARGSUSED*/ |
7 | 4010 int |
4011 get_cmd_args(char *prog, char *cmdline, char ***argvp, char **tofree) | |
4012 { | |
4013 int i; | |
4014 char *p; | |
4015 char *progp; | |
4016 char *pnew = NULL; | |
4017 char *newcmdline; | |
4018 int inquote; | |
4019 int argc; | |
4020 char **argv = NULL; | |
4021 int round; | |
4022 | |
1738 | 4023 *tofree = NULL; |
4024 | |
26 | 4025 #ifdef FEAT_MBYTE |
4026 /* Try using the Unicode version first, it takes care of conversion when | |
4027 * 'encoding' is changed. */ | |
4028 argc = get_cmd_argsW(&argv); | |
4029 if (argc != 0) | |
4030 goto done; | |
4031 #endif | |
4032 | |
7 | 4033 /* Handle the program name. Remove the ".exe" extension, and find the 1st |
4034 * non-space. */ | |
4035 p = strrchr(prog, '.'); | |
4036 if (p != NULL) | |
4037 *p = NUL; | |
4038 for (progp = prog; *progp == ' '; ++progp) | |
4039 ; | |
4040 | |
4041 /* The command line is copied to allocated memory, so that we can change | |
4042 * it. Add the size of the string, the separating NUL and a terminating | |
4043 * NUL. */ | |
4044 newcmdline = malloc(STRLEN(cmdline) + STRLEN(progp) + 2); | |
4045 if (newcmdline == NULL) | |
4046 return 0; | |
4047 | |
4048 /* | |
4049 * First round: count the number of arguments ("pnew" == NULL). | |
4050 * Second round: produce the arguments. | |
4051 */ | |
4052 for (round = 1; round <= 2; ++round) | |
4053 { | |
4054 /* First argument is the program name. */ | |
4055 if (pnew != NULL) | |
4056 { | |
4057 argv[0] = pnew; | |
4058 strcpy(pnew, progp); | |
4059 pnew += strlen(pnew); | |
4060 *pnew++ = NUL; | |
4061 } | |
4062 | |
4063 /* | |
4064 * Isolate each argument and put it in argv[]. | |
4065 */ | |
4066 p = cmdline; | |
4067 argc = 1; | |
4068 while (*p != NUL) | |
4069 { | |
4070 inquote = FALSE; | |
4071 if (pnew != NULL) | |
4072 argv[argc] = pnew; | |
4073 ++argc; | |
4074 while (*p != NUL && (inquote || (*p != ' ' && *p != '\t'))) | |
4075 { | |
4076 /* Backslashes are only special when followed by a double | |
4077 * quote. */ | |
835 | 4078 i = (int)strspn(p, "\\"); |
7 | 4079 if (p[i] == '"') |
4080 { | |
4081 /* Halve the number of backslashes. */ | |
4082 if (i > 1 && pnew != NULL) | |
4083 { | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4084 vim_memset(pnew, '\\', i / 2); |
7 | 4085 pnew += i / 2; |
4086 } | |
4087 | |
4088 /* Even nr of backslashes toggles quoting, uneven copies | |
4089 * the double quote. */ | |
4090 if ((i & 1) == 0) | |
4091 inquote = !inquote; | |
4092 else if (pnew != NULL) | |
4093 *pnew++ = '"'; | |
4094 p += i + 1; | |
4095 } | |
4096 else if (i > 0) | |
4097 { | |
4098 /* Copy span of backslashes unmodified. */ | |
4099 if (pnew != NULL) | |
4100 { | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4101 vim_memset(pnew, '\\', i); |
7 | 4102 pnew += i; |
4103 } | |
4104 p += i; | |
4105 } | |
4106 else | |
4107 { | |
4108 if (pnew != NULL) | |
4109 *pnew++ = *p; | |
23 | 4110 #ifdef FEAT_MBYTE |
4111 /* Can't use mb_* functions, because 'encoding' is not | |
4112 * initialized yet here. */ | |
4113 if (IsDBCSLeadByte(*p)) | |
4114 { | |
4115 ++p; | |
4116 if (pnew != NULL) | |
4117 *pnew++ = *p; | |
4118 } | |
4119 #endif | |
7 | 4120 ++p; |
4121 } | |
4122 } | |
4123 | |
323 | 4124 if (pnew != NULL) |
7 | 4125 *pnew++ = NUL; |
4126 while (*p == ' ' || *p == '\t') | |
4127 ++p; /* advance until a non-space */ | |
4128 } | |
4129 | |
4130 if (round == 1) | |
4131 { | |
4132 argv = (char **)malloc((argc + 1) * sizeof(char *)); | |
4133 if (argv == NULL ) | |
377 | 4134 { |
1738 | 4135 free(newcmdline); |
7 | 4136 return 0; /* malloc error */ |
377 | 4137 } |
7 | 4138 pnew = newcmdline; |
1738 | 4139 *tofree = newcmdline; |
7 | 4140 } |
4141 } | |
4142 | |
2419
f579b934f51d
Fix build warnings and problems for tiny/small Win32 build. (Mike Williams)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4143 #ifdef FEAT_MBYTE |
26 | 4144 done: |
2419
f579b934f51d
Fix build warnings and problems for tiny/small Win32 build. (Mike Williams)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4145 #endif |
7 | 4146 argv[argc] = NULL; /* NULL-terminated list */ |
4147 *argvp = argv; | |
4148 return argc; | |
4149 } |