blob: 2f92414d371ac72951cd8078252ec64af1e7cf57 [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 Moolenaar8424a622006-04-19 21:23:36 +00002462#ifdef FEAT_MBYTE
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002463 static int use_unicode = FALSE;
2464 int uu;
Bram Moolenaar8424a622006-04-19 21:23:36 +00002465 WCHAR *wstr = NULL;
2466#endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002467
2468 if (s_tabhwnd == NULL)
2469 return;
2470
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002471#if defined(FEAT_MBYTE)
2472# ifndef CCM_SETUNICODEFORMAT
2473 /* For older compilers. We assume this never changes. */
2474# define CCM_SETUNICODEFORMAT 0x2005
2475# endif
2476 uu = (enc_codepage >= 0 && (int)GetACP() != enc_codepage);
2477 if (uu != use_unicode)
2478 {
2479 /* Enable/disable unicode support */
2480 SendMessage(s_tabhwnd, CCM_SETUNICODEFORMAT, (WPARAM)uu, (LPARAM)0);
2481 use_unicode = uu;
2482 }
Bram Moolenaar8424a622006-04-19 21:23:36 +00002483#endif
2484
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002485 tie.mask = TCIF_TEXT;
2486 tie.iImage = -1;
2487
Bram Moolenaar4b166d02012-12-12 17:12:25 +01002488 /* Disable redraw for tab updates to eliminate O(N^2) draws. */
2489 SendMessage(s_tabhwnd, WM_SETREDRAW, (WPARAM)FALSE, 0);
2490
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002491 /* Add a label for each tab page. They all contain the same text area. */
2492 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
2493 {
2494 if (tp == curtab)
2495 curtabidx = nr;
2496
Bram Moolenaar4b166d02012-12-12 17:12:25 +01002497 if (nr >= TabCtrl_GetItemCount(s_tabhwnd))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002498 {
2499 /* Add the tab */
2500 tie.pszText = "-Empty-";
2501 TabCtrl_InsertItem(s_tabhwnd, nr, &tie);
2502 }
2503
Bram Moolenaar57657d82006-04-21 22:12:41 +00002504 get_tabline_label(tp, FALSE);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002505 tie.pszText = NameBuff;
Bram Moolenaar8424a622006-04-19 21:23:36 +00002506#ifdef FEAT_MBYTE
2507 wstr = NULL;
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002508 if (use_unicode)
Bram Moolenaar8424a622006-04-19 21:23:36 +00002509 {
2510 /* Need to go through Unicode. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002511 wstr = enc_to_utf16(NameBuff, NULL);
Bram Moolenaar8424a622006-04-19 21:23:36 +00002512 if (wstr != NULL)
2513 {
2514 TCITEMW tiw;
2515
2516 tiw.mask = TCIF_TEXT;
2517 tiw.iImage = -1;
2518 tiw.pszText = wstr;
Bram Moolenaar85f868c2006-11-28 16:16:58 +00002519 SendMessage(s_tabhwnd, TCM_SETITEMW, (WPARAM)nr, (LPARAM)&tiw);
Bram Moolenaar8424a622006-04-19 21:23:36 +00002520 vim_free(wstr);
2521 }
2522 }
2523 if (wstr == NULL)
2524#endif
2525 {
2526 TabCtrl_SetItem(s_tabhwnd, nr, &tie);
2527 }
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002528 }
2529
2530 /* Remove any old labels. */
Bram Moolenaar4b166d02012-12-12 17:12:25 +01002531 while (nr < TabCtrl_GetItemCount(s_tabhwnd))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002532 TabCtrl_DeleteItem(s_tabhwnd, nr);
2533
Bram Moolenaar14e28812012-12-16 12:50:39 +01002534 /* Re-enable redraw and redraw. */
Bram Moolenaar4b166d02012-12-12 17:12:25 +01002535 SendMessage(s_tabhwnd, WM_SETREDRAW, (WPARAM)TRUE, 0);
Bram Moolenaar14e28812012-12-16 12:50:39 +01002536 RedrawWindow(s_tabhwnd, NULL, NULL,
2537 RDW_ERASE | RDW_FRAME | RDW_INVALIDATE | RDW_ALLCHILDREN);
Bram Moolenaara8f96392013-07-17 21:59:13 +02002538
2539 if (TabCtrl_GetCurSel(s_tabhwnd) != curtabidx)
2540 TabCtrl_SetCurSel(s_tabhwnd, curtabidx);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002541}
2542
2543/*
2544 * Set the current tab to "nr". First tab is 1.
2545 */
2546 void
2547gui_mch_set_curtab(nr)
2548 int nr;
2549{
2550 if (s_tabhwnd == NULL)
2551 return;
2552
Bram Moolenaara8f96392013-07-17 21:59:13 +02002553 if (TabCtrl_GetCurSel(s_tabhwnd) != nr - 1)
2554 TabCtrl_SetCurSel(s_tabhwnd, nr - 1);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002555}
2556
2557#endif
2558
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559/*
2560 * ":simalt" command.
2561 */
2562 void
2563ex_simalt(exarg_T *eap)
2564{
2565 char_u *keys = eap->arg;
2566
2567 PostMessage(s_hwnd, WM_SYSCOMMAND, (WPARAM)SC_KEYMENU, (LPARAM)0);
2568 while (*keys)
2569 {
2570 if (*keys == '~')
2571 *keys = ' '; /* for showing system menu */
2572 PostMessage(s_hwnd, WM_CHAR, (WPARAM)*keys, (LPARAM)0);
2573 keys++;
2574 }
2575}
2576
2577/*
2578 * Create the find & replace dialogs.
2579 * You can't have both at once: ":find" when replace is showing, destroys
2580 * the replace dialog first, and the other way around.
2581 */
2582#ifdef MSWIN_FIND_REPLACE
2583 static void
2584initialise_findrep(char_u *initial_string)
2585{
2586 int wword = FALSE;
2587 int mcase = !p_ic;
2588 char_u *entry_text;
2589
2590 /* Get the search string to use. */
2591 entry_text = get_find_dialog_text(initial_string, &wword, &mcase);
2592
2593 s_findrep_struct.hwndOwner = s_hwnd;
2594 s_findrep_struct.Flags = FR_DOWN;
2595 if (mcase)
2596 s_findrep_struct.Flags |= FR_MATCHCASE;
2597 if (wword)
2598 s_findrep_struct.Flags |= FR_WHOLEWORD;
2599 if (entry_text != NULL && *entry_text != NUL)
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00002600 vim_strncpy(s_findrep_struct.lpstrFindWhat, entry_text,
2601 s_findrep_struct.wFindWhatLen - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 vim_free(entry_text);
2603}
2604#endif
2605
Bram Moolenaar908d53a2006-11-07 18:05:31 +00002606 static void
2607set_window_title(HWND hwnd, char *title)
2608{
2609#ifdef FEAT_MBYTE
2610 if (title != NULL && enc_codepage >= 0 && enc_codepage != (int)GetACP())
2611 {
2612 WCHAR *wbuf;
2613 int n;
2614
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002615 /* Convert the title from 'encoding' to UTF-16. */
2616 wbuf = (WCHAR *)enc_to_utf16((char_u *)title, NULL);
Bram Moolenaar908d53a2006-11-07 18:05:31 +00002617 if (wbuf != NULL)
2618 {
2619 n = SetWindowTextW(hwnd, wbuf);
2620 vim_free(wbuf);
2621 if (n != 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
2622 return;
2623 /* Retry with non-wide function (for Windows 98). */
2624 }
2625 }
2626#endif
2627 (void)SetWindowText(hwnd, (LPCSTR)title);
2628}
2629
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 void
2631gui_mch_find_dialog(exarg_T *eap)
2632{
2633#ifdef MSWIN_FIND_REPLACE
2634 if (s_findrep_msg != 0)
2635 {
2636 if (IsWindow(s_findrep_hwnd) && !s_findrep_is_find)
2637 DestroyWindow(s_findrep_hwnd);
2638
2639 if (!IsWindow(s_findrep_hwnd))
2640 {
2641 initialise_findrep(eap->arg);
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002642# if defined(FEAT_MBYTE) && defined(WIN3264)
2643 /* If the OS is Windows NT, and 'encoding' differs from active
2644 * codepage: convert text and use wide function. */
2645 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2646 && enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2647 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002648 findrep_atow(&s_findrep_struct_w, &s_findrep_struct);
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002649 s_findrep_hwnd = FindTextW(
2650 (LPFINDREPLACEW) &s_findrep_struct_w);
2651 }
2652 else
2653# endif
2654 s_findrep_hwnd = FindText((LPFINDREPLACE) &s_findrep_struct);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 }
2656
Bram Moolenaar908d53a2006-11-07 18:05:31 +00002657 set_window_title(s_findrep_hwnd,
2658 _("Find string (use '\\\\' to find a '\\')"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 (void)SetFocus(s_findrep_hwnd);
2660
2661 s_findrep_is_find = TRUE;
2662 }
2663#endif
2664}
2665
2666
2667 void
2668gui_mch_replace_dialog(exarg_T *eap)
2669{
2670#ifdef MSWIN_FIND_REPLACE
2671 if (s_findrep_msg != 0)
2672 {
2673 if (IsWindow(s_findrep_hwnd) && s_findrep_is_find)
2674 DestroyWindow(s_findrep_hwnd);
2675
2676 if (!IsWindow(s_findrep_hwnd))
2677 {
2678 initialise_findrep(eap->arg);
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002679# if defined(FEAT_MBYTE) && defined(WIN3264)
2680 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2681 && enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2682 {
2683 findrep_atow(&s_findrep_struct_w, &s_findrep_struct);
2684 s_findrep_hwnd = ReplaceTextW(
2685 (LPFINDREPLACEW) &s_findrep_struct_w);
2686 }
2687 else
2688# endif
2689 s_findrep_hwnd = ReplaceText(
2690 (LPFINDREPLACE) &s_findrep_struct);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 }
2692
Bram Moolenaar908d53a2006-11-07 18:05:31 +00002693 set_window_title(s_findrep_hwnd,
2694 _("Find & Replace (use '\\\\' to find a '\\')"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 (void)SetFocus(s_findrep_hwnd);
2696
2697 s_findrep_is_find = FALSE;
2698 }
2699#endif
2700}
2701
2702
2703/*
2704 * Set visibility of the pointer.
2705 */
2706 void
2707gui_mch_mousehide(int hide)
2708{
2709 if (hide != gui.pointer_hidden)
2710 {
2711 ShowCursor(!hide);
2712 gui.pointer_hidden = hide;
2713 }
2714}
2715
2716#ifdef FEAT_MENU
2717 static void
2718gui_mch_show_popupmenu_at(vimmenu_T *menu, int x, int y)
2719{
2720 /* Unhide the mouse, we don't get move events here. */
2721 gui_mch_mousehide(FALSE);
2722
2723 (void)TrackPopupMenu(
2724 (HMENU)menu->submenu_id,
2725 TPM_LEFTALIGN | TPM_LEFTBUTTON,
2726 x, y,
2727 (int)0, /*reserved param*/
2728 s_hwnd,
2729 NULL);
2730 /*
2731 * NOTE: The pop-up menu can eat the mouse up event.
2732 * We deal with this in normal.c.
2733 */
2734}
2735#endif
2736
2737/*
2738 * Got a message when the system will go down.
2739 */
2740 static void
2741_OnEndSession(void)
2742{
2743 getout_preserve_modified(1);
2744}
2745
2746/*
2747 * Get this message when the user clicks on the cross in the top right corner
2748 * of a Windows95 window.
2749 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002750/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 static void
2752_OnClose(
2753 HWND hwnd)
2754{
2755 gui_shell_closed();
2756}
2757
2758/*
2759 * Get a message when the window is being destroyed.
2760 */
2761 static void
2762_OnDestroy(
2763 HWND hwnd)
2764{
2765#ifdef WIN16_3DLOOK
2766 Ctl3dUnregister(s_hinst);
2767#endif
2768 if (!destroying)
2769 _OnClose(hwnd);
2770}
2771
2772 static void
2773_OnPaint(
2774 HWND hwnd)
2775{
2776 if (!IsMinimized(hwnd))
2777 {
2778 PAINTSTRUCT ps;
2779
2780 out_flush(); /* make sure all output has been processed */
2781 (void)BeginPaint(hwnd, &ps);
2782
2783#ifdef FEAT_MBYTE
2784 /* prevent multi-byte characters from misprinting on an invalid
2785 * rectangle */
2786 if (has_mbyte)
2787 {
2788 RECT rect;
2789
2790 GetClientRect(hwnd, &rect);
2791 ps.rcPaint.left = rect.left;
2792 ps.rcPaint.right = rect.right;
2793 }
2794#endif
2795
2796 if (!IsRectEmpty(&ps.rcPaint))
2797 gui_redraw(ps.rcPaint.left, ps.rcPaint.top,
2798 ps.rcPaint.right - ps.rcPaint.left + 1,
2799 ps.rcPaint.bottom - ps.rcPaint.top + 1);
2800 EndPaint(hwnd, &ps);
2801 }
2802}
2803
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002804/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 static void
2806_OnSize(
2807 HWND hwnd,
2808 UINT state,
2809 int cx,
2810 int cy)
2811{
2812 if (!IsMinimized(hwnd))
2813 {
2814 gui_resize_shell(cx, cy);
2815
2816#ifdef FEAT_MENU
2817 /* Menu bar may wrap differently now */
2818 gui_mswin_get_menu_height(TRUE);
2819#endif
2820 }
2821}
2822
2823 static void
2824_OnSetFocus(
2825 HWND hwnd,
2826 HWND hwndOldFocus)
2827{
2828 gui_focus_change(TRUE);
Bram Moolenaarea408882007-12-03 21:21:03 +00002829 s_getting_focus = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 (void)MyWindowProc(hwnd, WM_SETFOCUS, (WPARAM)hwndOldFocus, 0);
2831}
2832
2833 static void
2834_OnKillFocus(
2835 HWND hwnd,
2836 HWND hwndNewFocus)
2837{
2838 gui_focus_change(FALSE);
Bram Moolenaarea408882007-12-03 21:21:03 +00002839 s_getting_focus = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 (void)MyWindowProc(hwnd, WM_KILLFOCUS, (WPARAM)hwndNewFocus, 0);
2841}
2842
2843/*
2844 * Get a message when the user switches back to vim
2845 */
2846#ifdef WIN16
2847 static BOOL
2848#else
2849 static LRESULT
2850#endif
2851_OnActivateApp(
2852 HWND hwnd,
2853 BOOL fActivate,
2854#ifdef WIN16
2855 HTASK dwThreadId
2856#else
2857 DWORD dwThreadId
2858#endif
2859 )
2860{
2861 /* we call gui_focus_change() in _OnSetFocus() */
2862 /* gui_focus_change((int)fActivate); */
2863 return MyWindowProc(hwnd, WM_ACTIVATEAPP, fActivate, (DWORD)dwThreadId);
2864}
2865
2866#if defined(FEAT_WINDOWS) || defined(PROTO)
2867 void
2868gui_mch_destroy_scrollbar(scrollbar_T *sb)
2869{
2870 DestroyWindow(sb->id);
2871}
2872#endif
2873
2874/*
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002875 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876 */
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002877 void
Bram Moolenaara40c5002005-01-09 21:16:21 +00002878gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879{
2880 RECT rct;
2881 POINT mp;
2882
2883 (void)GetWindowRect(s_textArea, &rct);
2884 (void)GetCursorPos((LPPOINT)&mp);
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002885 *x = (int)(mp.x - rct.left);
2886 *y = (int)(mp.y - rct.top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887}
2888
2889/*
2890 * Move mouse pointer to character at (x, y).
2891 */
2892 void
2893gui_mch_setmouse(int x, int y)
2894{
2895 RECT rct;
2896
2897 (void)GetWindowRect(s_textArea, &rct);
2898 (void)SetCursorPos(x + gui.border_offset + rct.left,
2899 y + gui.border_offset + rct.top);
2900}
2901
2902 static void
2903gui_mswin_get_valid_dimensions(
2904 int w,
2905 int h,
2906 int *valid_w,
2907 int *valid_h)
2908{
2909 int base_width, base_height;
2910
2911 base_width = gui_get_base_width()
Bram Moolenaar9d488952013-07-21 17:53:58 +02002912 + (GetSystemMetrics(SM_CXFRAME) +
2913 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 base_height = gui_get_base_height()
Bram Moolenaar9d488952013-07-21 17:53:58 +02002915 + (GetSystemMetrics(SM_CYFRAME) +
2916 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 + GetSystemMetrics(SM_CYCAPTION)
2918#ifdef FEAT_MENU
2919 + gui_mswin_get_menu_height(FALSE)
2920#endif
2921 ;
2922 *valid_w = base_width +
2923 ((w - base_width) / gui.char_width) * gui.char_width;
2924 *valid_h = base_height +
2925 ((h - base_height) / gui.char_height) * gui.char_height;
2926}
2927
2928 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929gui_mch_flash(int msec)
2930{
2931 RECT rc;
2932
2933 /*
2934 * Note: InvertRect() excludes right and bottom of rectangle.
2935 */
2936 rc.left = 0;
2937 rc.top = 0;
2938 rc.right = gui.num_cols * gui.char_width;
2939 rc.bottom = gui.num_rows * gui.char_height;
2940 InvertRect(s_hdc, &rc);
2941 gui_mch_flush(); /* make sure it's displayed */
2942
2943 ui_delay((long)msec, TRUE); /* wait for a few msec */
2944
2945 InvertRect(s_hdc, &rc);
2946}
2947
2948/*
2949 * Return flags used for scrolling.
2950 * The SW_INVALIDATE is required when part of the window is covered or
2951 * off-screen. Refer to MS KB Q75236.
2952 */
2953 static int
2954get_scroll_flags(void)
2955{
2956 HWND hwnd;
2957 RECT rcVim, rcOther, rcDest;
2958
2959 GetWindowRect(s_hwnd, &rcVim);
Bram Moolenaar0d406992005-05-22 22:03:39 +00002960
2961 /* Check if the window is partly above or below the screen. We don't care
2962 * about partly left or right of the screen, it is not relevant when
2963 * scrolling up or down. */
2964 if (rcVim.top < 0 || rcVim.bottom > GetSystemMetrics(SM_CYFULLSCREEN))
2965 return SW_INVALIDATE;
2966
2967 /* Check if there is an window (partly) on top of us. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968 for (hwnd = s_hwnd; (hwnd = GetWindow(hwnd, GW_HWNDPREV)) != (HWND)0; )
2969 if (IsWindowVisible(hwnd))
2970 {
2971 GetWindowRect(hwnd, &rcOther);
2972 if (IntersectRect(&rcDest, &rcVim, &rcOther))
2973 return SW_INVALIDATE;
2974 }
2975 return 0;
2976}
2977
2978/*
2979 * Delete the given number of lines from the given row, scrolling up any
2980 * text further down within the scroll region.
2981 */
2982 void
2983gui_mch_delete_lines(
2984 int row,
2985 int num_lines)
2986{
2987 RECT rc;
2988
2989 rc.left = FILL_X(gui.scroll_region_left);
2990 rc.right = FILL_X(gui.scroll_region_right + 1);
2991 rc.top = FILL_Y(row);
2992 rc.bottom = FILL_Y(gui.scroll_region_bot + 1);
2993
2994 ScrollWindowEx(s_textArea, 0, -num_lines * gui.char_height,
2995 &rc, &rc, NULL, NULL, get_scroll_flags());
2996
2997 UpdateWindow(s_textArea);
2998 /* This seems to be required to avoid the cursor disappearing when
2999 * scrolling such that the cursor ends up in the top-left character on
3000 * the screen... But why? (Webb) */
3001 /* It's probably fixed by disabling drawing the cursor while scrolling. */
3002 /* gui.cursor_is_valid = FALSE; */
3003
3004 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
3005 gui.scroll_region_left,
3006 gui.scroll_region_bot, gui.scroll_region_right);
3007}
3008
3009/*
3010 * Insert the given number of lines before the given row, scrolling down any
3011 * following text within the scroll region.
3012 */
3013 void
3014gui_mch_insert_lines(
3015 int row,
3016 int num_lines)
3017{
3018 RECT rc;
3019
3020 rc.left = FILL_X(gui.scroll_region_left);
3021 rc.right = FILL_X(gui.scroll_region_right + 1);
3022 rc.top = FILL_Y(row);
3023 rc.bottom = FILL_Y(gui.scroll_region_bot + 1);
3024 /* The SW_INVALIDATE is required when part of the window is covered or
3025 * off-screen. How do we avoid it when it's not needed? */
3026 ScrollWindowEx(s_textArea, 0, num_lines * gui.char_height,
3027 &rc, &rc, NULL, NULL, get_scroll_flags());
3028
3029 UpdateWindow(s_textArea);
3030
3031 gui_clear_block(row, gui.scroll_region_left,
3032 row + num_lines - 1, gui.scroll_region_right);
3033}
3034
3035
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003036/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 void
3038gui_mch_exit(int rc)
3039{
3040 ReleaseDC(s_textArea, s_hdc);
3041 DeleteObject(s_brush);
3042
3043#ifdef FEAT_TEAROFF
3044 /* Unload the tearoff bitmap */
3045 (void)DeleteObject((HGDIOBJ)s_htearbitmap);
3046#endif
3047
3048 /* Destroy our window (if we have one). */
3049 if (s_hwnd != NULL)
3050 {
3051 destroying = TRUE; /* ignore WM_DESTROY message now */
3052 DestroyWindow(s_hwnd);
3053 }
3054
3055#ifdef GLOBAL_IME
3056 global_ime_end();
3057#endif
3058}
3059
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003060 static char_u *
3061logfont2name(LOGFONT lf)
3062{
3063 char *p;
3064 char *res;
3065 char *charset_name;
3066
3067 charset_name = charset_id2name((int)lf.lfCharSet);
3068 res = alloc((unsigned)(strlen(lf.lfFaceName) + 20
3069 + (charset_name == NULL ? 0 : strlen(charset_name) + 2)));
3070 if (res != NULL)
3071 {
3072 p = res;
3073 /* make a normal font string out of the lf thing:*/
3074 sprintf((char *)p, "%s:h%d", lf.lfFaceName, pixels_to_points(
3075 lf.lfHeight < 0 ? -lf.lfHeight : lf.lfHeight, TRUE));
3076 while (*p)
3077 {
3078 if (*p == ' ')
3079 *p = '_';
3080 ++p;
3081 }
3082#ifndef MSWIN16_FASTTEXT
3083 if (lf.lfItalic)
3084 STRCAT(p, ":i");
3085 if (lf.lfWeight >= FW_BOLD)
3086 STRCAT(p, ":b");
3087#endif
3088 if (lf.lfUnderline)
3089 STRCAT(p, ":u");
3090 if (lf.lfStrikeOut)
3091 STRCAT(p, ":s");
3092 if (charset_name != NULL)
3093 {
3094 STRCAT(p, ":c");
3095 STRCAT(p, charset_name);
3096 }
3097 }
3098
3099 return res;
3100}
3101
Bram Moolenaar0f272122013-01-23 18:37:40 +01003102
3103#ifdef FEAT_MBYTE_IME
3104/*
3105 * Set correct LOGFONT to IME. Use 'guifontwide' if available, otherwise use
3106 * 'guifont'
3107 */
3108 static void
Bram Moolenaarfb97f282013-07-09 17:42:46 +02003109update_im_font(void)
Bram Moolenaar0f272122013-01-23 18:37:40 +01003110{
3111 LOGFONT lf_wide;
3112
3113 if (p_guifontwide != NULL && *p_guifontwide != NUL
Bram Moolenaar826763f2013-01-25 19:28:38 +01003114 && gui.wide_font != NOFONT
3115 && GetObject((HFONT)gui.wide_font, sizeof(lf_wide), &lf_wide))
Bram Moolenaar0f272122013-01-23 18:37:40 +01003116 norm_logfont = lf_wide;
3117 else
3118 norm_logfont = sub_logfont;
3119 im_set_font(&norm_logfont);
3120}
3121#endif
3122
3123#ifdef FEAT_MBYTE
3124/*
3125 * Handler of gui.wide_font (p_guifontwide) changed notification.
3126 */
3127 void
3128gui_mch_wide_font_changed()
3129{
Bram Moolenaardb250522013-06-17 22:43:25 +02003130# ifndef MSWIN16_FASTTEXT
3131 LOGFONT lf;
3132# endif
3133
Bram Moolenaar0f272122013-01-23 18:37:40 +01003134# ifdef FEAT_MBYTE_IME
3135 update_im_font();
3136# endif
Bram Moolenaardb250522013-06-17 22:43:25 +02003137
3138# ifndef MSWIN16_FASTTEXT
3139 gui_mch_free_font(gui.wide_ital_font);
3140 gui.wide_ital_font = NOFONT;
3141 gui_mch_free_font(gui.wide_bold_font);
3142 gui.wide_bold_font = NOFONT;
3143 gui_mch_free_font(gui.wide_boldital_font);
3144 gui.wide_boldital_font = NOFONT;
3145
3146 if (gui.wide_font
3147 && GetObject((HFONT)gui.wide_font, sizeof(lf), &lf))
3148 {
3149 if (!lf.lfItalic)
3150 {
3151 lf.lfItalic = TRUE;
3152 gui.wide_ital_font = get_font_handle(&lf);
3153 lf.lfItalic = FALSE;
3154 }
3155 if (lf.lfWeight < FW_BOLD)
3156 {
3157 lf.lfWeight = FW_BOLD;
3158 gui.wide_bold_font = get_font_handle(&lf);
3159 if (!lf.lfItalic)
3160 {
3161 lf.lfItalic = TRUE;
3162 gui.wide_boldital_font = get_font_handle(&lf);
3163 }
3164 }
3165 }
3166# endif
Bram Moolenaar0f272122013-01-23 18:37:40 +01003167}
3168#endif
3169
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003171 * Initialise vim to use the font with the given name.
3172 * Return FAIL if the font could not be loaded, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003174/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 int
3176gui_mch_init_font(char_u *font_name, int fontset)
3177{
3178 LOGFONT lf;
3179 GuiFont font = NOFONT;
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003180 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181
3182 /* Load the font */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003183 if (get_logfont(&lf, font_name, NULL, TRUE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 font = get_font_handle(&lf);
3185 if (font == NOFONT)
3186 return FAIL;
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003187
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 if (font_name == NULL)
3189 font_name = lf.lfFaceName;
3190#if defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME)
3191 norm_logfont = lf;
Bram Moolenaar0f272122013-01-23 18:37:40 +01003192 sub_logfont = lf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193#endif
3194#ifdef FEAT_MBYTE_IME
Bram Moolenaar0f272122013-01-23 18:37:40 +01003195 update_im_font();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196#endif
3197 gui_mch_free_font(gui.norm_font);
3198 gui.norm_font = font;
3199 current_font_height = lf.lfHeight;
3200 GetFontSize(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003202 p = logfont2name(lf);
3203 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003205 hl_set_font_name(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003207 /* When setting 'guifont' to "*" replace it with the actual font name.
3208 * */
3209 if (STRCMP(font_name, "*") == 0 && STRCMP(p_guifont, "*") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211 vim_free(p_guifont);
3212 p_guifont = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 }
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003214 else
3215 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 }
3217
3218#ifndef MSWIN16_FASTTEXT
3219 gui_mch_free_font(gui.ital_font);
3220 gui.ital_font = NOFONT;
3221 gui_mch_free_font(gui.bold_font);
3222 gui.bold_font = NOFONT;
3223 gui_mch_free_font(gui.boldital_font);
3224 gui.boldital_font = NOFONT;
3225
3226 if (!lf.lfItalic)
3227 {
3228 lf.lfItalic = TRUE;
3229 gui.ital_font = get_font_handle(&lf);
3230 lf.lfItalic = FALSE;
3231 }
3232 if (lf.lfWeight < FW_BOLD)
3233 {
3234 lf.lfWeight = FW_BOLD;
3235 gui.bold_font = get_font_handle(&lf);
3236 if (!lf.lfItalic)
3237 {
3238 lf.lfItalic = TRUE;
3239 gui.boldital_font = get_font_handle(&lf);
3240 }
3241 }
3242#endif
3243
3244 return OK;
3245}
3246
Bram Moolenaar85f868c2006-11-28 16:16:58 +00003247#ifndef WPF_RESTORETOMAXIMIZED
3248# define WPF_RESTORETOMAXIMIZED 2 /* just in case someone doesn't have it */
3249#endif
3250
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251/*
3252 * Return TRUE if the GUI window is maximized, filling the whole screen.
3253 */
3254 int
3255gui_mch_maximized()
3256{
Bram Moolenaar85f868c2006-11-28 16:16:58 +00003257 WINDOWPLACEMENT wp;
3258
3259 wp.length = sizeof(WINDOWPLACEMENT);
3260 if (GetWindowPlacement(s_hwnd, &wp))
3261 return wp.showCmd == SW_SHOWMAXIMIZED
3262 || (wp.showCmd == SW_SHOWMINIMIZED
3263 && wp.flags == WPF_RESTORETOMAXIMIZED);
3264
3265 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266}
3267
3268/*
3269 * Called when the font changed while the window is maximized. Compute the
3270 * new Rows and Columns. This is like resizing the window.
3271 */
3272 void
3273gui_mch_newfont()
3274{
3275 RECT rect;
3276
3277 GetWindowRect(s_hwnd, &rect);
3278 gui_resize_shell(rect.right - rect.left
Bram Moolenaar9d488952013-07-21 17:53:58 +02003279 - (GetSystemMetrics(SM_CXFRAME) +
3280 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281 rect.bottom - rect.top
Bram Moolenaar9d488952013-07-21 17:53:58 +02003282 - (GetSystemMetrics(SM_CYFRAME) +
3283 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 - GetSystemMetrics(SM_CYCAPTION)
3285#ifdef FEAT_MENU
3286 - gui_mswin_get_menu_height(FALSE)
3287#endif
3288 );
3289}
3290
3291/*
3292 * Set the window title
3293 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003294/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 void
3296gui_mch_settitle(
3297 char_u *title,
3298 char_u *icon)
3299{
Bram Moolenaar908d53a2006-11-07 18:05:31 +00003300 set_window_title(s_hwnd, (title == NULL ? "VIM" : (char *)title));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301}
3302
3303#ifdef FEAT_MOUSESHAPE
3304/* Table for shape IDCs. Keep in sync with the mshape_names[] table in
3305 * misc2.c! */
3306static LPCSTR mshape_idcs[] =
3307{
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01003308 IDC_ARROW, /* arrow */
3309 MAKEINTRESOURCE(0), /* blank */
3310 IDC_IBEAM, /* beam */
3311 IDC_SIZENS, /* updown */
3312 IDC_SIZENS, /* udsizing */
3313 IDC_SIZEWE, /* leftright */
3314 IDC_SIZEWE, /* lrsizing */
3315 IDC_WAIT, /* busy */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316#ifdef WIN3264
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01003317 IDC_NO, /* no */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318#else
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01003319 IDC_ICON, /* no */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320#endif
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01003321 IDC_ARROW, /* crosshair */
3322 IDC_ARROW, /* hand1 */
3323 IDC_ARROW, /* hand2 */
3324 IDC_ARROW, /* pencil */
3325 IDC_ARROW, /* question */
3326 IDC_ARROW, /* right-arrow */
3327 IDC_UPARROW, /* up-arrow */
3328 IDC_ARROW /* last one */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329};
3330
3331 void
3332mch_set_mouse_shape(int shape)
3333{
3334 LPCSTR idc;
3335
3336 if (shape == MSHAPE_HIDE)
3337 ShowCursor(FALSE);
3338 else
3339 {
3340 if (shape >= MSHAPE_NUMBERED)
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01003341 idc = IDC_ARROW;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342 else
3343 idc = mshape_idcs[shape];
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00003344#ifdef SetClassLongPtr
3345 SetClassLongPtr(s_textArea, GCLP_HCURSOR, (__int3264)(LONG_PTR)LoadCursor(NULL, idc));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346#else
3347# ifdef WIN32
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00003348 SetClassLong(s_textArea, GCL_HCURSOR, (long_u)LoadCursor(NULL, idc));
3349# else /* Win16 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 SetClassWord(s_textArea, GCW_HCURSOR, (WORD)LoadCursor(NULL, idc));
3351# endif
3352#endif
3353 if (!p_mh)
3354 {
3355 POINT mp;
3356
3357 /* Set the position to make it redrawn with the new shape. */
3358 (void)GetCursorPos((LPPOINT)&mp);
3359 (void)SetCursorPos(mp.x, mp.y);
3360 ShowCursor(TRUE);
3361 }
3362 }
3363}
3364#endif
3365
3366#ifdef FEAT_BROWSE
3367/*
3368 * The file browser exists in two versions: with "W" uses wide characters,
3369 * without "W" the current codepage. When FEAT_MBYTE is defined and on
3370 * Windows NT/2000/XP the "W" functions are used.
3371 */
3372
3373# if defined(FEAT_MBYTE) && defined(WIN3264)
3374/*
Bram Moolenaar3ef7cdf2012-01-20 17:57:51 +01003375 * Wide version of convert_filter().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 */
3377 static WCHAR *
3378convert_filterW(char_u *s)
3379{
Bram Moolenaar3ef7cdf2012-01-20 17:57:51 +01003380 char_u *tmp;
3381 int len;
Bram Moolenaar90b28002012-01-20 20:54:19 +01003382 WCHAR *res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383
Bram Moolenaar3ef7cdf2012-01-20 17:57:51 +01003384 tmp = convert_filter(s);
3385 if (tmp == NULL)
3386 return NULL;
3387 len = (int)STRLEN(s) + 3;
3388 res = enc_to_utf16(tmp, &len);
3389 vim_free(tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 return res;
3391}
3392
3393/*
3394 * Wide version of gui_mch_browse(). Keep in sync!
3395 */
3396 static char_u *
3397gui_mch_browseW(
3398 int saving,
3399 char_u *title,
3400 char_u *dflt,
3401 char_u *ext,
3402 char_u *initdir,
3403 char_u *filter)
3404{
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003405 /* We always use the wide function. This means enc_to_utf16() must work,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 * otherwise it fails miserably! */
3407 OPENFILENAMEW fileStruct;
3408 WCHAR fileBuf[MAXPATHL];
3409 WCHAR *wp;
3410 int i;
3411 WCHAR *titlep = NULL;
3412 WCHAR *extp = NULL;
3413 WCHAR *initdirp = NULL;
3414 WCHAR *filterp;
3415 char_u *p;
3416
3417 if (dflt == NULL)
3418 fileBuf[0] = NUL;
3419 else
3420 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003421 wp = enc_to_utf16(dflt, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 if (wp == NULL)
3423 fileBuf[0] = NUL;
3424 else
3425 {
3426 for (i = 0; wp[i] != NUL && i < MAXPATHL - 1; ++i)
3427 fileBuf[i] = wp[i];
3428 fileBuf[i] = NUL;
3429 vim_free(wp);
3430 }
3431 }
3432
3433 /* Convert the filter to Windows format. */
3434 filterp = convert_filterW(filter);
3435
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003436 vim_memset(&fileStruct, 0, sizeof(OPENFILENAMEW));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437#ifdef OPENFILENAME_SIZE_VERSION_400
3438 /* be compatible with Windows NT 4.0 */
3439 /* TODO: what to use for OPENFILENAMEW??? */
Bram Moolenaar8c83ac32010-02-17 17:34:43 +01003440 fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441#else
3442 fileStruct.lStructSize = sizeof(fileStruct);
3443#endif
3444
3445 if (title != NULL)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003446 titlep = enc_to_utf16(title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 fileStruct.lpstrTitle = titlep;
3448
3449 if (ext != NULL)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003450 extp = enc_to_utf16(ext, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 fileStruct.lpstrDefExt = extp;
3452
3453 fileStruct.lpstrFile = fileBuf;
3454 fileStruct.nMaxFile = MAXPATHL;
3455 fileStruct.lpstrFilter = filterp;
3456 fileStruct.hwndOwner = s_hwnd; /* main Vim window is owner*/
3457 /* has an initial dir been specified? */
3458 if (initdir != NULL && *initdir != NUL)
3459 {
3460 /* Must have backslashes here, no matter what 'shellslash' says */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003461 initdirp = enc_to_utf16(initdir, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 if (initdirp != NULL)
3463 {
3464 for (wp = initdirp; *wp != NUL; ++wp)
3465 if (*wp == '/')
3466 *wp = '\\';
3467 }
3468 fileStruct.lpstrInitialDir = initdirp;
3469 }
3470
3471 /*
3472 * TODO: Allow selection of multiple files. Needs another arg to this
3473 * function to ask for it, and need to use OFN_ALLOWMULTISELECT below.
3474 * Also, should we use OFN_FILEMUSTEXIST when opening? Vim can edit on
3475 * files that don't exist yet, so I haven't put it in. What about
3476 * OFN_PATHMUSTEXIST?
3477 * Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog.
3478 */
3479 fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY);
3480#ifdef FEAT_SHORTCUT
3481 if (curbuf->b_p_bin)
3482 fileStruct.Flags |= OFN_NODEREFERENCELINKS;
3483#endif
3484 if (saving)
3485 {
3486 if (!GetSaveFileNameW(&fileStruct))
3487 return NULL;
3488 }
3489 else
3490 {
3491 if (!GetOpenFileNameW(&fileStruct))
3492 return NULL;
3493 }
3494
3495 vim_free(filterp);
3496 vim_free(initdirp);
3497 vim_free(titlep);
3498 vim_free(extp);
3499
3500 /* Convert from UCS2 to 'encoding'. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003501 p = utf16_to_enc(fileBuf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 if (p != NULL)
3503 /* when out of memory we get garbage for non-ASCII chars */
3504 STRCPY(fileBuf, p);
3505 vim_free(p);
3506
3507 /* Give focus back to main window (when using MDI). */
3508 SetFocus(s_hwnd);
3509
3510 /* Shorten the file name if possible */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003511 return vim_strsave(shorten_fname1((char_u *)fileBuf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512}
3513# endif /* FEAT_MBYTE */
3514
3515
3516/*
3517 * Convert the string s to the proper format for a filter string by replacing
Bram Moolenaar12806c82008-11-12 12:36:30 +00003518 * the \t and \n delimiters with \0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519 * Returns the converted string in allocated memory.
3520 *
3521 * Keep in sync with convert_filterW() above!
3522 */
3523 static char_u *
3524convert_filter(char_u *s)
3525{
3526 char_u *res;
3527 unsigned s_len = (unsigned)STRLEN(s);
3528 unsigned i;
3529
3530 res = alloc(s_len + 3);
3531 if (res != NULL)
3532 {
3533 for (i = 0; i < s_len; ++i)
3534 if (s[i] == '\t' || s[i] == '\n')
3535 res[i] = '\0';
3536 else
3537 res[i] = s[i];
3538 res[s_len] = NUL;
3539 /* Add two extra NULs to make sure it's properly terminated. */
3540 res[s_len + 1] = NUL;
3541 res[s_len + 2] = NUL;
3542 }
3543 return res;
3544}
3545
3546/*
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003547 * Select a directory.
3548 */
3549 char_u *
3550gui_mch_browsedir(char_u *title, char_u *initdir)
3551{
3552 /* We fake this: Use a filter that doesn't select anything and a default
3553 * file name that won't be used. */
3554 return gui_mch_browse(0, title, (char_u *)_("Not Used"), NULL,
3555 initdir, (char_u *)_("Directory\t*.nothing\n"));
3556}
3557
3558/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 * Pop open a file browser and return the file selected, in allocated memory,
3560 * or NULL if Cancel is hit.
3561 * saving - TRUE if the file will be saved to, FALSE if it will be opened.
3562 * title - Title message for the file browser dialog.
3563 * dflt - Default name of file.
3564 * ext - Default extension to be added to files without extensions.
3565 * initdir - directory in which to open the browser (NULL = current dir)
3566 * filter - Filter for matched files to choose from.
3567 *
3568 * Keep in sync with gui_mch_browseW() above!
3569 */
3570 char_u *
3571gui_mch_browse(
3572 int saving,
3573 char_u *title,
3574 char_u *dflt,
3575 char_u *ext,
3576 char_u *initdir,
3577 char_u *filter)
3578{
3579 OPENFILENAME fileStruct;
3580 char_u fileBuf[MAXPATHL];
3581 char_u *initdirp = NULL;
3582 char_u *filterp;
3583 char_u *p;
3584
3585# if defined(FEAT_MBYTE) && defined(WIN3264)
3586 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT)
3587 return gui_mch_browseW(saving, title, dflt, ext, initdir, filter);
3588# endif
3589
3590 if (dflt == NULL)
3591 fileBuf[0] = NUL;
3592 else
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003593 vim_strncpy(fileBuf, dflt, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594
3595 /* Convert the filter to Windows format. */
3596 filterp = convert_filter(filter);
3597
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003598 vim_memset(&fileStruct, 0, sizeof(OPENFILENAME));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599#ifdef OPENFILENAME_SIZE_VERSION_400
3600 /* be compatible with Windows NT 4.0 */
Bram Moolenaar8c83ac32010-02-17 17:34:43 +01003601 fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602#else
3603 fileStruct.lStructSize = sizeof(fileStruct);
3604#endif
3605
3606 fileStruct.lpstrTitle = title;
3607 fileStruct.lpstrDefExt = ext;
3608
3609 fileStruct.lpstrFile = fileBuf;
3610 fileStruct.nMaxFile = MAXPATHL;
3611 fileStruct.lpstrFilter = filterp;
3612 fileStruct.hwndOwner = s_hwnd; /* main Vim window is owner*/
3613 /* has an initial dir been specified? */
3614 if (initdir != NULL && *initdir != NUL)
3615 {
3616 /* Must have backslashes here, no matter what 'shellslash' says */
3617 initdirp = vim_strsave(initdir);
3618 if (initdirp != NULL)
3619 for (p = initdirp; *p != NUL; ++p)
3620 if (*p == '/')
3621 *p = '\\';
3622 fileStruct.lpstrInitialDir = initdirp;
3623 }
3624
3625 /*
3626 * TODO: Allow selection of multiple files. Needs another arg to this
3627 * function to ask for it, and need to use OFN_ALLOWMULTISELECT below.
3628 * Also, should we use OFN_FILEMUSTEXIST when opening? Vim can edit on
3629 * files that don't exist yet, so I haven't put it in. What about
3630 * OFN_PATHMUSTEXIST?
3631 * Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog.
3632 */
3633 fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY);
3634#ifdef FEAT_SHORTCUT
3635 if (curbuf->b_p_bin)
3636 fileStruct.Flags |= OFN_NODEREFERENCELINKS;
3637#endif
3638 if (saving)
3639 {
3640 if (!GetSaveFileName(&fileStruct))
3641 return NULL;
3642 }
3643 else
3644 {
3645 if (!GetOpenFileName(&fileStruct))
3646 return NULL;
3647 }
3648
3649 vim_free(filterp);
3650 vim_free(initdirp);
3651
3652 /* Give focus back to main window (when using MDI). */
3653 SetFocus(s_hwnd);
3654
3655 /* Shorten the file name if possible */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003656 return vim_strsave(shorten_fname1((char_u *)fileBuf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657}
3658#endif /* FEAT_BROWSE */
3659
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003660/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 static void
3662_OnDropFiles(
3663 HWND hwnd,
3664 HDROP hDrop)
3665{
3666#ifdef FEAT_WINDOWS
3667#ifdef WIN3264
3668# define BUFPATHLEN _MAX_PATH
3669# define DRAGQVAL 0xFFFFFFFF
3670#else
3671# define BUFPATHLEN MAXPATHL
3672# define DRAGQVAL 0xFFFF
3673#endif
3674#ifdef FEAT_MBYTE
3675 WCHAR wszFile[BUFPATHLEN];
3676#endif
3677 char szFile[BUFPATHLEN];
3678 UINT cFiles = DragQueryFile(hDrop, DRAGQVAL, NULL, 0);
3679 UINT i;
3680 char_u **fnames;
3681 POINT pt;
3682 int_u modifiers = 0;
3683
3684 /* TRACE("_OnDropFiles: %d files dropped\n", cFiles); */
3685
3686 /* Obtain dropped position */
3687 DragQueryPoint(hDrop, &pt);
3688 MapWindowPoints(s_hwnd, s_textArea, &pt, 1);
3689
3690# ifdef FEAT_VISUAL
3691 reset_VIsual();
3692# endif
3693
3694 fnames = (char_u **)alloc(cFiles * sizeof(char_u *));
3695
3696 if (fnames != NULL)
3697 for (i = 0; i < cFiles; ++i)
3698 {
3699#ifdef FEAT_MBYTE
3700 if (DragQueryFileW(hDrop, i, wszFile, BUFPATHLEN) > 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003701 fnames[i] = utf16_to_enc(wszFile, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 else
3703#endif
3704 {
3705 DragQueryFile(hDrop, i, szFile, BUFPATHLEN);
3706 fnames[i] = vim_strsave(szFile);
3707 }
3708 }
3709
3710 DragFinish(hDrop);
3711
3712 if (fnames != NULL)
3713 {
3714 if ((GetKeyState(VK_SHIFT) & 0x8000) != 0)
3715 modifiers |= MOUSE_SHIFT;
3716 if ((GetKeyState(VK_CONTROL) & 0x8000) != 0)
3717 modifiers |= MOUSE_CTRL;
3718 if ((GetKeyState(VK_MENU) & 0x8000) != 0)
3719 modifiers |= MOUSE_ALT;
3720
3721 gui_handle_drop(pt.x, pt.y, modifiers, fnames, cFiles);
3722
3723 s_need_activate = TRUE;
3724 }
3725#endif
3726}
3727
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003728/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 static int
3730_OnScroll(
3731 HWND hwnd,
3732 HWND hwndCtl,
3733 UINT code,
3734 int pos)
3735{
3736 static UINT prev_code = 0; /* code of previous call */
3737 scrollbar_T *sb, *sb_info;
3738 long val;
3739 int dragging = FALSE;
3740 int dont_scroll_save = dont_scroll;
3741#ifndef WIN3264
3742 int nPos;
3743#else
3744 SCROLLINFO si;
3745
3746 si.cbSize = sizeof(si);
3747 si.fMask = SIF_POS;
3748#endif
3749
3750 sb = gui_mswin_find_scrollbar(hwndCtl);
3751 if (sb == NULL)
3752 return 0;
3753
3754 if (sb->wp != NULL) /* Left or right scrollbar */
3755 {
3756 /*
3757 * Careful: need to get scrollbar info out of first (left) scrollbar
3758 * for window, but keep real scrollbar too because we must pass it to
3759 * gui_drag_scrollbar().
3760 */
3761 sb_info = &sb->wp->w_scrollbars[0];
3762 }
3763 else /* Bottom scrollbar */
3764 sb_info = sb;
3765 val = sb_info->value;
3766
3767 switch (code)
3768 {
3769 case SB_THUMBTRACK:
3770 val = pos;
3771 dragging = TRUE;
3772 if (sb->scroll_shift > 0)
3773 val <<= sb->scroll_shift;
3774 break;
3775 case SB_LINEDOWN:
3776 val++;
3777 break;
3778 case SB_LINEUP:
3779 val--;
3780 break;
3781 case SB_PAGEDOWN:
3782 val += (sb_info->size > 2 ? sb_info->size - 2 : 1);
3783 break;
3784 case SB_PAGEUP:
3785 val -= (sb_info->size > 2 ? sb_info->size - 2 : 1);
3786 break;
3787 case SB_TOP:
3788 val = 0;
3789 break;
3790 case SB_BOTTOM:
3791 val = sb_info->max;
3792 break;
3793 case SB_ENDSCROLL:
3794 if (prev_code == SB_THUMBTRACK)
3795 {
3796 /*
3797 * "pos" only gives us 16-bit data. In case of large file,
3798 * use GetScrollPos() which returns 32-bit. Unfortunately it
3799 * is not valid while the scrollbar is being dragged.
3800 */
3801 val = GetScrollPos(hwndCtl, SB_CTL);
3802 if (sb->scroll_shift > 0)
3803 val <<= sb->scroll_shift;
3804 }
3805 break;
3806
3807 default:
3808 /* TRACE("Unknown scrollbar event %d\n", code); */
3809 return 0;
3810 }
3811 prev_code = code;
3812
3813#ifdef WIN3264
3814 si.nPos = (sb->scroll_shift > 0) ? val >> sb->scroll_shift : val;
3815 SetScrollInfo(hwndCtl, SB_CTL, &si, TRUE);
3816#else
3817 nPos = (sb->scroll_shift > 0) ? val >> sb->scroll_shift : val;
3818 SetScrollPos(hwndCtl, SB_CTL, nPos, TRUE);
3819#endif
3820
3821 /*
3822 * When moving a vertical scrollbar, move the other vertical scrollbar too.
3823 */
3824 if (sb->wp != NULL)
3825 {
3826 scrollbar_T *sba = sb->wp->w_scrollbars;
3827 HWND id = sba[ (sb == sba + SBAR_LEFT) ? SBAR_RIGHT : SBAR_LEFT].id;
3828
3829#ifdef WIN3264
3830 SetScrollInfo(id, SB_CTL, &si, TRUE);
3831#else
3832 SetScrollPos(id, SB_CTL, nPos, TRUE);
3833#endif
3834 }
3835
3836 /* Don't let us be interrupted here by another message. */
3837 s_busy_processing = TRUE;
3838
3839 /* When "allow_scrollbar" is FALSE still need to remember the new
3840 * position, but don't actually scroll by setting "dont_scroll". */
3841 dont_scroll = !allow_scrollbar;
3842
3843 gui_drag_scrollbar(sb, val, dragging);
3844
3845 s_busy_processing = FALSE;
3846 dont_scroll = dont_scroll_save;
3847
3848 return 0;
3849}
3850
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003851
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852/*
3853 * Get command line arguments.
3854 * Use "prog" as the name of the program and "cmdline" as the arguments.
3855 * Copy the arguments to allocated memory.
3856 * Return the number of arguments (including program name).
Bram Moolenaar12806c82008-11-12 12:36:30 +00003857 * Return pointers to the arguments in "argvp". Memory is allocated with
3858 * malloc(), use free() instead of vim_free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 * Return pointer to buffer in "tofree".
3860 * Returns zero when out of memory.
3861 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003862/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863 int
3864get_cmd_args(char *prog, char *cmdline, char ***argvp, char **tofree)
3865{
3866 int i;
3867 char *p;
3868 char *progp;
3869 char *pnew = NULL;
3870 char *newcmdline;
3871 int inquote;
3872 int argc;
3873 char **argv = NULL;
3874 int round;
3875
Bram Moolenaar12806c82008-11-12 12:36:30 +00003876 *tofree = NULL;
3877
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003878#ifdef FEAT_MBYTE
3879 /* Try using the Unicode version first, it takes care of conversion when
3880 * 'encoding' is changed. */
3881 argc = get_cmd_argsW(&argv);
3882 if (argc != 0)
3883 goto done;
3884#endif
3885
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 /* Handle the program name. Remove the ".exe" extension, and find the 1st
3887 * non-space. */
3888 p = strrchr(prog, '.');
3889 if (p != NULL)
3890 *p = NUL;
3891 for (progp = prog; *progp == ' '; ++progp)
3892 ;
3893
3894 /* The command line is copied to allocated memory, so that we can change
3895 * it. Add the size of the string, the separating NUL and a terminating
3896 * NUL. */
3897 newcmdline = malloc(STRLEN(cmdline) + STRLEN(progp) + 2);
3898 if (newcmdline == NULL)
3899 return 0;
3900
3901 /*
3902 * First round: count the number of arguments ("pnew" == NULL).
3903 * Second round: produce the arguments.
3904 */
3905 for (round = 1; round <= 2; ++round)
3906 {
3907 /* First argument is the program name. */
3908 if (pnew != NULL)
3909 {
3910 argv[0] = pnew;
3911 strcpy(pnew, progp);
3912 pnew += strlen(pnew);
3913 *pnew++ = NUL;
3914 }
3915
3916 /*
3917 * Isolate each argument and put it in argv[].
3918 */
3919 p = cmdline;
3920 argc = 1;
3921 while (*p != NUL)
3922 {
3923 inquote = FALSE;
3924 if (pnew != NULL)
3925 argv[argc] = pnew;
3926 ++argc;
3927 while (*p != NUL && (inquote || (*p != ' ' && *p != '\t')))
3928 {
3929 /* Backslashes are only special when followed by a double
3930 * quote. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003931 i = (int)strspn(p, "\\");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 if (p[i] == '"')
3933 {
3934 /* Halve the number of backslashes. */
3935 if (i > 1 && pnew != NULL)
3936 {
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003937 vim_memset(pnew, '\\', i / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 pnew += i / 2;
3939 }
3940
3941 /* Even nr of backslashes toggles quoting, uneven copies
3942 * the double quote. */
3943 if ((i & 1) == 0)
3944 inquote = !inquote;
3945 else if (pnew != NULL)
3946 *pnew++ = '"';
3947 p += i + 1;
3948 }
3949 else if (i > 0)
3950 {
3951 /* Copy span of backslashes unmodified. */
3952 if (pnew != NULL)
3953 {
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003954 vim_memset(pnew, '\\', i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 pnew += i;
3956 }
3957 p += i;
3958 }
3959 else
3960 {
3961 if (pnew != NULL)
3962 *pnew++ = *p;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003963#ifdef FEAT_MBYTE
3964 /* Can't use mb_* functions, because 'encoding' is not
3965 * initialized yet here. */
3966 if (IsDBCSLeadByte(*p))
3967 {
3968 ++p;
3969 if (pnew != NULL)
3970 *pnew++ = *p;
3971 }
3972#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973 ++p;
3974 }
3975 }
3976
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003977 if (pnew != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 *pnew++ = NUL;
3979 while (*p == ' ' || *p == '\t')
3980 ++p; /* advance until a non-space */
3981 }
3982
3983 if (round == 1)
3984 {
3985 argv = (char **)malloc((argc + 1) * sizeof(char *));
3986 if (argv == NULL )
Bram Moolenaare6b165e2005-06-30 21:56:01 +00003987 {
Bram Moolenaar12806c82008-11-12 12:36:30 +00003988 free(newcmdline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 return 0; /* malloc error */
Bram Moolenaare6b165e2005-06-30 21:56:01 +00003990 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 pnew = newcmdline;
Bram Moolenaar12806c82008-11-12 12:36:30 +00003992 *tofree = newcmdline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 }
3994 }
3995
Bram Moolenaar8765a4a2010-07-27 22:41:43 +02003996#ifdef FEAT_MBYTE
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003997done:
Bram Moolenaar8765a4a2010-07-27 22:41:43 +02003998#endif
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003999 argv[argc] = NULL; /* NULL-terminated list */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000 *argvp = argv;
4001 return argc;
4002}