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