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