blob: 78aba03be1154efbdced3b2942992fb94ccb18a7 [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;
180#endif
181
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000182#ifdef FEAT_GUI_TABLINE
183static HWND s_tabhwnd = NULL;
184static int showing_tabline = 0;
185#endif
186
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187static WPARAM s_wParam = 0;
188static LPARAM s_lParam = 0;
189
190static HWND s_textArea = NULL;
191static UINT s_uMsg = 0;
192
193static char_u *s_textfield; /* Used by dialogs to pass back strings */
194
195static int s_need_activate = FALSE;
196
197/* This variable is set when waiting for an event, which is the only moment
198 * scrollbar dragging can be done directly. It's not allowed while commands
199 * are executed, because it may move the cursor and that may cause unexpected
200 * problems (e.g., while ":s" is working).
201 */
202static int allow_scrollbar = FALSE;
203
204#ifdef GLOBAL_IME
205# define MyTranslateMessage(x) global_ime_TranslateMessage(x)
206#else
207# define MyTranslateMessage(x) TranslateMessage(x)
208#endif
209
210#if (defined(WIN3264) && defined(FEAT_MBYTE)) || defined(GLOBAL_IME)
211 /* use of WindowProc depends on wide_WindowProc */
212# define MyWindowProc vim_WindowProc
213#else
214 /* use ordinary WindowProc */
215# define MyWindowProc DefWindowProc
216#endif
217
218extern int current_font_height; /* this is in os_mswin.c */
219
220static struct
221{
222 UINT key_sym;
223 char_u vim_code0;
224 char_u vim_code1;
225} special_keys[] =
226{
227 {VK_UP, 'k', 'u'},
228 {VK_DOWN, 'k', 'd'},
229 {VK_LEFT, 'k', 'l'},
230 {VK_RIGHT, 'k', 'r'},
231
232 {VK_F1, 'k', '1'},
233 {VK_F2, 'k', '2'},
234 {VK_F3, 'k', '3'},
235 {VK_F4, 'k', '4'},
236 {VK_F5, 'k', '5'},
237 {VK_F6, 'k', '6'},
238 {VK_F7, 'k', '7'},
239 {VK_F8, 'k', '8'},
240 {VK_F9, 'k', '9'},
241 {VK_F10, 'k', ';'},
242
243 {VK_F11, 'F', '1'},
244 {VK_F12, 'F', '2'},
245 {VK_F13, 'F', '3'},
246 {VK_F14, 'F', '4'},
247 {VK_F15, 'F', '5'},
248 {VK_F16, 'F', '6'},
249 {VK_F17, 'F', '7'},
250 {VK_F18, 'F', '8'},
251 {VK_F19, 'F', '9'},
252 {VK_F20, 'F', 'A'},
253
254 {VK_F21, 'F', 'B'},
255#ifdef FEAT_NETBEANS_INTG
256 {VK_PAUSE, 'F', 'B'}, /* Pause == F21 (see gui_gtk_x11.c) */
257#endif
258 {VK_F22, 'F', 'C'},
259 {VK_F23, 'F', 'D'},
260 {VK_F24, 'F', 'E'}, /* winuser.h defines up to F24 */
261
262 {VK_HELP, '%', '1'},
263 {VK_BACK, 'k', 'b'},
264 {VK_INSERT, 'k', 'I'},
265 {VK_DELETE, 'k', 'D'},
266 {VK_HOME, 'k', 'h'},
267 {VK_END, '@', '7'},
268 {VK_PRIOR, 'k', 'P'},
269 {VK_NEXT, 'k', 'N'},
270 {VK_PRINT, '%', '9'},
271 {VK_ADD, 'K', '6'},
272 {VK_SUBTRACT, 'K', '7'},
273 {VK_DIVIDE, 'K', '8'},
274 {VK_MULTIPLY, 'K', '9'},
275 {VK_SEPARATOR, 'K', 'A'}, /* Keypad Enter */
276 {VK_DECIMAL, 'K', 'B'},
277
278 {VK_NUMPAD0, 'K', 'C'},
279 {VK_NUMPAD1, 'K', 'D'},
280 {VK_NUMPAD2, 'K', 'E'},
281 {VK_NUMPAD3, 'K', 'F'},
282 {VK_NUMPAD4, 'K', 'G'},
283 {VK_NUMPAD5, 'K', 'H'},
284 {VK_NUMPAD6, 'K', 'I'},
285 {VK_NUMPAD7, 'K', 'J'},
286 {VK_NUMPAD8, 'K', 'K'},
287 {VK_NUMPAD9, 'K', 'L'},
288
289 /* Keys that we want to be able to use any modifier with: */
290 {VK_SPACE, ' ', NUL},
291 {VK_TAB, TAB, NUL},
292 {VK_ESCAPE, ESC, NUL},
293 {NL, NL, NUL},
294 {CAR, CAR, NUL},
295
296 /* End of list marker: */
297 {0, 0, 0}
298};
299
300/* Local variables */
301static int s_button_pending = -1;
Bram Moolenaarea408882007-12-03 21:21:03 +0000302
303/* s_getting_focus is set when we got focus but didn't see mouse-up event yet,
304 * so don't reset s_button_pending. */
305static int s_getting_focus = FALSE;
306
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307static int s_x_pending;
308static int s_y_pending;
309static UINT s_kFlags_pending;
310static UINT s_wait_timer = 0; /* Timer for get char from user */
311static int s_timed_out = FALSE;
312static int dead_key = 0; /* 0 - no dead key, 1 - dead key pressed */
313
314#ifdef WIN3264
315static OSVERSIONINFO os_version; /* like it says. Init in gui_mch_init() */
316#endif
317
318#ifdef FEAT_BEVAL
319/* balloon-eval WM_NOTIFY_HANDLER */
320static void Handle_WM_Notify __ARGS((HWND hwnd, LPNMHDR pnmh));
321static void TrackUserActivity __ARGS((UINT uMsg));
322#endif
323
324/*
325 * For control IME.
Bram Moolenaar0f272122013-01-23 18:37:40 +0100326 *
327 * These LOGFONT used for IME.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328 */
329#ifdef FEAT_MBYTE
330# ifdef USE_IM_CONTROL
Bram Moolenaar0f272122013-01-23 18:37:40 +0100331/* holds LOGFONT for 'guifontwide' if available, otherwise 'guifont' */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332static LOGFONT norm_logfont;
Bram Moolenaar0f272122013-01-23 18:37:40 +0100333/* holds LOGFONT for 'guifont' always. */
334static LOGFONT sub_logfont;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335# endif
336#endif
337
338#ifdef FEAT_MBYTE_IME
339static LRESULT _OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData);
340#endif
341
Bram Moolenaar3ef7cdf2012-01-20 17:57:51 +0100342#if defined(FEAT_MBYTE) && defined(WIN3264)
343static char_u *convert_filter(char_u *s);
344#endif
345
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000346#ifdef DEBUG_PRINT_ERROR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347/*
348 * Print out the last Windows error message
349 */
350 static void
351print_windows_error(void)
352{
353 LPVOID lpMsgBuf;
354
355 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
356 NULL, GetLastError(),
357 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
358 (LPTSTR) &lpMsgBuf, 0, NULL);
359 TRACE1("Error: %s\n", lpMsgBuf);
360 LocalFree(lpMsgBuf);
361}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000362#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363
364/*
365 * Cursor blink functions.
366 *
367 * This is a simple state machine:
368 * BLINK_NONE not blinking at all
369 * BLINK_OFF blinking, cursor is not shown
370 * BLINK_ON blinking, cursor is shown
371 */
372
373#define BLINK_NONE 0
374#define BLINK_OFF 1
375#define BLINK_ON 2
376
377static int blink_state = BLINK_NONE;
378static long_u blink_waittime = 700;
379static long_u blink_ontime = 400;
380static long_u blink_offtime = 250;
381static UINT blink_timer = 0;
382
383 void
384gui_mch_set_blinking(long wait, long on, long off)
385{
386 blink_waittime = wait;
387 blink_ontime = on;
388 blink_offtime = off;
389}
390
391/* ARGSUSED */
392 static VOID CALLBACK
393_OnBlinkTimer(
394 HWND hwnd,
395 UINT uMsg,
396 UINT idEvent,
397 DWORD dwTime)
398{
399 MSG msg;
400
401 /*
402 TRACE2("Got timer event, id %d, blink_timer %d\n", idEvent, blink_timer);
403 */
404
405 KillTimer(NULL, idEvent);
406
407 /* Eat spurious WM_TIMER messages */
Bram Moolenaar8c85fa32011-08-10 17:08:03 +0200408 while (pPeekMessage(&msg, hwnd, WM_TIMER, WM_TIMER, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 ;
410
411 if (blink_state == BLINK_ON)
412 {
413 gui_undraw_cursor();
414 blink_state = BLINK_OFF;
415 blink_timer = (UINT) SetTimer(NULL, 0, (UINT)blink_offtime,
416 (TIMERPROC)_OnBlinkTimer);
417 }
418 else
419 {
420 gui_update_cursor(TRUE, FALSE);
421 blink_state = BLINK_ON;
422 blink_timer = (UINT) SetTimer(NULL, 0, (UINT)blink_ontime,
423 (TIMERPROC)_OnBlinkTimer);
424 }
425}
426
427 static void
428gui_mswin_rm_blink_timer(void)
429{
430 MSG msg;
431
432 if (blink_timer != 0)
433 {
434 KillTimer(NULL, blink_timer);
435 /* Eat spurious WM_TIMER messages */
Bram Moolenaar8c85fa32011-08-10 17:08:03 +0200436 while (pPeekMessage(&msg, s_hwnd, WM_TIMER, WM_TIMER, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437 ;
438 blink_timer = 0;
439 }
440}
441
442/*
443 * Stop the cursor blinking. Show the cursor if it wasn't shown.
444 */
445 void
446gui_mch_stop_blink(void)
447{
448 gui_mswin_rm_blink_timer();
449 if (blink_state == BLINK_OFF)
450 gui_update_cursor(TRUE, FALSE);
451 blink_state = BLINK_NONE;
452}
453
454/*
455 * Start the cursor blinking. If it was already blinking, this restarts the
456 * waiting time and shows the cursor.
457 */
458 void
459gui_mch_start_blink(void)
460{
461 gui_mswin_rm_blink_timer();
462
463 /* Only switch blinking on if none of the times is zero */
464 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
465 {
466 blink_timer = (UINT)SetTimer(NULL, 0, (UINT)blink_waittime,
467 (TIMERPROC)_OnBlinkTimer);
468 blink_state = BLINK_ON;
469 gui_update_cursor(TRUE, FALSE);
470 }
471}
472
473/*
474 * Call-back routines.
475 */
476
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000477/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 static VOID CALLBACK
479_OnTimer(
480 HWND hwnd,
481 UINT uMsg,
482 UINT idEvent,
483 DWORD dwTime)
484{
485 MSG msg;
486
487 /*
488 TRACE2("Got timer event, id %d, s_wait_timer %d\n", idEvent, s_wait_timer);
489 */
490 KillTimer(NULL, idEvent);
491 s_timed_out = TRUE;
492
493 /* Eat spurious WM_TIMER messages */
Bram Moolenaar8c85fa32011-08-10 17:08:03 +0200494 while (pPeekMessage(&msg, hwnd, WM_TIMER, WM_TIMER, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 ;
496 if (idEvent == s_wait_timer)
497 s_wait_timer = 0;
498}
499
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000500/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 static void
502_OnDeadChar(
503 HWND hwnd,
504 UINT ch,
505 int cRepeat)
506{
507 dead_key = 1;
508}
509
510/*
511 * Convert Unicode character "ch" to bytes in "string[slen]".
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +0000512 * When "had_alt" is TRUE the ALT key was included in "ch".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 * Return the length.
514 */
515 static int
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +0000516char_to_string(int ch, char_u *string, int slen, int had_alt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517{
518 int len;
519 int i;
520#ifdef FEAT_MBYTE
521 WCHAR wstring[2];
522 char_u *ws = NULL;;
523
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000524 if (os_version.dwPlatformId != VER_PLATFORM_WIN32_NT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000526 /* On Windows 95/98 we apparently get the character in the active
527 * codepage, not in UCS-2. If conversion is needed convert it to
528 * UCS-2 first. */
529 if ((int)GetACP() == enc_codepage)
530 len = 0; /* no conversion required */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 else
532 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000533 string[0] = ch;
534 len = MultiByteToWideChar(GetACP(), 0, string, 1, wstring, 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 }
536 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000537 else
538 {
539 wstring[0] = ch;
540 len = 1;
541 }
542
543 if (len > 0)
544 {
545 /* "ch" is a UTF-16 character. Convert it to a string of bytes. When
546 * "enc_codepage" is non-zero use the standard Win32 function,
547 * otherwise use our own conversion function (e.g., for UTF-8). */
548 if (enc_codepage > 0)
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +0000549 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000550 len = WideCharToMultiByte(enc_codepage, 0, wstring, len,
551 string, slen, 0, NULL);
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +0000552 /* If we had included the ALT key into the character but now the
553 * upper bit is no longer set, that probably means the conversion
554 * failed. Convert the original character and set the upper bit
555 * afterwards. */
556 if (had_alt && len == 1 && ch >= 0x80 && string[0] < 0x80)
557 {
558 wstring[0] = ch & 0x7f;
559 len = WideCharToMultiByte(enc_codepage, 0, wstring, len,
560 string, slen, 0, NULL);
561 if (len == 1) /* safety check */
562 string[0] |= 0x80;
563 }
564 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000565 else
566 {
567 len = 1;
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000568 ws = utf16_to_enc(wstring, &len);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000569 if (ws == NULL)
570 len = 0;
571 else
572 {
573 if (len > slen) /* just in case */
574 len = slen;
575 mch_memmove(string, ws, len);
576 vim_free(ws);
577 }
578 }
579 }
580
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 if (len == 0)
582#endif
583 {
584 string[0] = ch;
585 len = 1;
586 }
587
588 for (i = 0; i < len; ++i)
589 if (string[i] == CSI && len <= slen - 2)
590 {
591 /* Insert CSI as K_CSI. */
592 mch_memmove(string + i + 3, string + i + 1, len - i - 1);
593 string[++i] = KS_EXTRA;
594 string[++i] = (int)KE_CSI;
595 len += 2;
596 }
597
598 return len;
599}
600
601/*
602 * Key hit, add it to the input buffer.
603 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000604/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 static void
606_OnChar(
607 HWND hwnd,
608 UINT ch,
609 int cRepeat)
610{
611 char_u string[40];
612 int len = 0;
613
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +0000614 len = char_to_string(ch, string, 40, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 if (len == 1 && string[0] == Ctrl_C && ctrl_c_interrupts)
616 {
617 trash_input_buf();
618 got_int = TRUE;
619 }
620
621 add_to_input_buf(string, len);
622}
623
624/*
625 * Alt-Key hit, add it to the input buffer.
626 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000627/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 static void
629_OnSysChar(
630 HWND hwnd,
631 UINT cch,
632 int cRepeat)
633{
634 char_u string[40]; /* Enough for multibyte character */
635 int len;
636 int modifiers;
637 int ch = cch; /* special keys are negative */
638
639 /* TRACE("OnSysChar(%d, %c)\n", ch, ch); */
640
641 /* OK, we have a character key (given by ch) which was entered with the
642 * ALT key pressed. Eg, if the user presses Alt-A, then ch == 'A'. Note
643 * that the system distinguishes Alt-a and Alt-A (Alt-Shift-a unless
644 * CAPSLOCK is pressed) at this point.
645 */
646 modifiers = MOD_MASK_ALT;
647 if (GetKeyState(VK_SHIFT) & 0x8000)
648 modifiers |= MOD_MASK_SHIFT;
649 if (GetKeyState(VK_CONTROL) & 0x8000)
650 modifiers |= MOD_MASK_CTRL;
651
652 ch = simplify_key(ch, &modifiers);
653 /* remove the SHIFT modifier for keys where it's already included, e.g.,
654 * '(' and '*' */
655 if (ch < 0x100 && !isalpha(ch) && isprint(ch))
656 modifiers &= ~MOD_MASK_SHIFT;
657
658 /* Interpret the ALT key as making the key META, include SHIFT, etc. */
659 ch = extract_modifiers(ch, &modifiers);
660 if (ch == CSI)
661 ch = K_CSI;
662
663 len = 0;
664 if (modifiers)
665 {
666 string[len++] = CSI;
667 string[len++] = KS_MODIFIER;
668 string[len++] = modifiers;
669 }
670
671 if (IS_SPECIAL((int)ch))
672 {
673 string[len++] = CSI;
674 string[len++] = K_SECOND((int)ch);
675 string[len++] = K_THIRD((int)ch);
676 }
677 else
678 {
679 /* Although the documentation isn't clear about it, we assume "ch" is
680 * a Unicode character. */
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +0000681 len += char_to_string(ch, string + len, 40 - len, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 }
683
684 add_to_input_buf(string, len);
685}
686
687 static void
688_OnMouseEvent(
689 int button,
690 int x,
691 int y,
692 int repeated_click,
693 UINT keyFlags)
694{
695 int vim_modifiers = 0x0;
696
Bram Moolenaarea408882007-12-03 21:21:03 +0000697 s_getting_focus = FALSE;
698
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 if (keyFlags & MK_SHIFT)
700 vim_modifiers |= MOUSE_SHIFT;
701 if (keyFlags & MK_CONTROL)
702 vim_modifiers |= MOUSE_CTRL;
703 if (GetKeyState(VK_MENU) & 0x8000)
704 vim_modifiers |= MOUSE_ALT;
705
706 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
707}
708
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000709/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 static void
711_OnMouseButtonDown(
712 HWND hwnd,
713 BOOL fDoubleClick,
714 int x,
715 int y,
716 UINT keyFlags)
717{
718 static LONG s_prevTime = 0;
719
720 LONG currentTime = GetMessageTime();
721 int button = -1;
722 int repeated_click;
723
724 /* Give main window the focus: this is so the cursor isn't hollow. */
725 (void)SetFocus(s_hwnd);
726
727 if (s_uMsg == WM_LBUTTONDOWN || s_uMsg == WM_LBUTTONDBLCLK)
728 button = MOUSE_LEFT;
729 else if (s_uMsg == WM_MBUTTONDOWN || s_uMsg == WM_MBUTTONDBLCLK)
730 button = MOUSE_MIDDLE;
731 else if (s_uMsg == WM_RBUTTONDOWN || s_uMsg == WM_RBUTTONDBLCLK)
732 button = MOUSE_RIGHT;
733#ifndef WIN16 /*<VN>*/
734 else if (s_uMsg == WM_XBUTTONDOWN || s_uMsg == WM_XBUTTONDBLCLK)
735 {
736#ifndef GET_XBUTTON_WPARAM
737# define GET_XBUTTON_WPARAM(wParam) (HIWORD(wParam))
738#endif
739 button = ((GET_XBUTTON_WPARAM(s_wParam) == 1) ? MOUSE_X1 : MOUSE_X2);
740 }
741 else if (s_uMsg == WM_CAPTURECHANGED)
742 {
743 /* on W95/NT4, somehow you get in here with an odd Msg
744 * if you press one button while holding down the other..*/
745 if (s_button_pending == MOUSE_LEFT)
746 button = MOUSE_RIGHT;
747 else
748 button = MOUSE_LEFT;
749 }
750#endif
751 if (button >= 0)
752 {
753 repeated_click = ((int)(currentTime - s_prevTime) < p_mouset);
754
755 /*
756 * Holding down the left and right buttons simulates pushing the middle
757 * button.
758 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000759 if (repeated_click
760 && ((button == MOUSE_LEFT && s_button_pending == MOUSE_RIGHT)
761 || (button == MOUSE_RIGHT
762 && s_button_pending == MOUSE_LEFT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 {
764 /*
765 * Hmm, gui.c will ignore more than one button down at a time, so
766 * pretend we let go of it first.
767 */
768 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, 0x0);
769 button = MOUSE_MIDDLE;
770 repeated_click = FALSE;
771 s_button_pending = -1;
772 _OnMouseEvent(button, x, y, repeated_click, keyFlags);
773 }
774 else if ((repeated_click)
775 || (mouse_model_popup() && (button == MOUSE_RIGHT)))
776 {
777 if (s_button_pending > -1)
778 {
779 _OnMouseEvent(s_button_pending, x, y, FALSE, keyFlags);
780 s_button_pending = -1;
781 }
782 /* TRACE("Button down at x %d, y %d\n", x, y); */
783 _OnMouseEvent(button, x, y, repeated_click, keyFlags);
784 }
785 else
786 {
787 /*
788 * If this is the first press (i.e. not a multiple click) don't
789 * action immediately, but store and wait for:
790 * i) button-up
791 * ii) mouse move
792 * iii) another button press
793 * before using it.
794 * This enables us to make left+right simulate middle button,
795 * without left or right being actioned first. The side-effect is
796 * that if you click and hold the mouse without dragging, the
797 * cursor doesn't move until you release the button. In practice
798 * this is hardly a problem.
799 */
800 s_button_pending = button;
801 s_x_pending = x;
802 s_y_pending = y;
803 s_kFlags_pending = keyFlags;
804 }
805
806 s_prevTime = currentTime;
807 }
808}
809
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000810/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 static void
812_OnMouseMoveOrRelease(
813 HWND hwnd,
814 int x,
815 int y,
816 UINT keyFlags)
817{
818 int button;
819
Bram Moolenaarea408882007-12-03 21:21:03 +0000820 s_getting_focus = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 if (s_button_pending > -1)
822 {
823 /* Delayed action for mouse down event */
824 _OnMouseEvent(s_button_pending, s_x_pending,
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000825 s_y_pending, FALSE, s_kFlags_pending);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 s_button_pending = -1;
827 }
828 if (s_uMsg == WM_MOUSEMOVE)
829 {
830 /*
831 * It's only a MOUSE_DRAG if one or more mouse buttons are being held
832 * down.
833 */
834 if (!(keyFlags & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON
835 | MK_XBUTTON1 | MK_XBUTTON2)))
836 {
837 gui_mouse_moved(x, y);
838 return;
839 }
840
841 /*
842 * While button is down, keep grabbing mouse move events when
843 * the mouse goes outside the window
844 */
845 SetCapture(s_textArea);
846 button = MOUSE_DRAG;
847 /* TRACE(" move at x %d, y %d\n", x, y); */
848 }
849 else
850 {
851 ReleaseCapture();
852 button = MOUSE_RELEASE;
853 /* TRACE(" up at x %d, y %d\n", x, y); */
854 }
855
856 _OnMouseEvent(button, x, y, FALSE, keyFlags);
857}
858
859#ifdef FEAT_MENU
860/*
861 * Find the vimmenu_T with the given id
862 */
863 static vimmenu_T *
864gui_mswin_find_menu(
865 vimmenu_T *pMenu,
866 int id)
867{
868 vimmenu_T *pChildMenu;
869
870 while (pMenu)
871 {
872 if (pMenu->id == (UINT)id)
873 break;
874 if (pMenu->children != NULL)
875 {
876 pChildMenu = gui_mswin_find_menu(pMenu->children, id);
877 if (pChildMenu)
878 {
879 pMenu = pChildMenu;
880 break;
881 }
882 }
883 pMenu = pMenu->next;
884 }
885 return pMenu;
886}
887
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000888/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 static void
890_OnMenu(
891 HWND hwnd,
892 int id,
893 HWND hwndCtl,
894 UINT codeNotify)
895{
896 vimmenu_T *pMenu;
897
898 pMenu = gui_mswin_find_menu(root_menu, id);
899 if (pMenu)
900 gui_menu_cb(pMenu);
901}
902#endif
903
904#ifdef MSWIN_FIND_REPLACE
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +0000905# if defined(FEAT_MBYTE) && defined(WIN3264)
906/*
907 * copy useful data from structure LPFINDREPLACE to structure LPFINDREPLACEW
908 */
909 static void
910findrep_atow(LPFINDREPLACEW lpfrw, LPFINDREPLACE lpfr)
911{
912 WCHAR *wp;
913
914 lpfrw->hwndOwner = lpfr->hwndOwner;
915 lpfrw->Flags = lpfr->Flags;
916
917 wp = enc_to_utf16(lpfr->lpstrFindWhat, NULL);
918 wcsncpy(lpfrw->lpstrFindWhat, wp, lpfrw->wFindWhatLen - 1);
919 vim_free(wp);
920
921 /* the field "lpstrReplaceWith" doesn't need to be copied */
922}
923
924/*
925 * copy useful data from structure LPFINDREPLACEW to structure LPFINDREPLACE
926 */
927 static void
928findrep_wtoa(LPFINDREPLACE lpfr, LPFINDREPLACEW lpfrw)
929{
930 char_u *p;
931
932 lpfr->Flags = lpfrw->Flags;
933
934 p = utf16_to_enc(lpfrw->lpstrFindWhat, NULL);
935 vim_strncpy(lpfr->lpstrFindWhat, p, lpfr->wFindWhatLen - 1);
936 vim_free(p);
937
938 p = utf16_to_enc(lpfrw->lpstrReplaceWith, NULL);
939 vim_strncpy(lpfr->lpstrReplaceWith, p, lpfr->wReplaceWithLen - 1);
940 vim_free(p);
941}
942# endif
943
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944/*
945 * Handle a Find/Replace window message.
946 */
947 static void
948_OnFindRepl(void)
949{
950 int flags = 0;
951 int down;
952
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +0000953# if defined(FEAT_MBYTE) && defined(WIN3264)
954 /* If the OS is Windows NT, and 'encoding' differs from active codepage:
955 * convert text from wide string. */
956 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
957 && enc_codepage >= 0 && (int)GetACP() != enc_codepage)
958 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200959 findrep_wtoa(&s_findrep_struct, &s_findrep_struct_w);
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +0000960 }
961# endif
962
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 if (s_findrep_struct.Flags & FR_DIALOGTERM)
964 /* Give main window the focus back. */
965 (void)SetFocus(s_hwnd);
966
967 if (s_findrep_struct.Flags & FR_FINDNEXT)
968 {
969 flags = FRD_FINDNEXT;
970
971 /* Give main window the focus back: this is so the cursor isn't
972 * hollow. */
973 (void)SetFocus(s_hwnd);
974 }
975 else if (s_findrep_struct.Flags & FR_REPLACE)
976 {
977 flags = FRD_REPLACE;
978
979 /* Give main window the focus back: this is so the cursor isn't
980 * hollow. */
981 (void)SetFocus(s_hwnd);
982 }
983 else if (s_findrep_struct.Flags & FR_REPLACEALL)
984 {
985 flags = FRD_REPLACEALL;
986 }
987
988 if (flags != 0)
989 {
990 /* Call the generic GUI function to do the actual work. */
991 if (s_findrep_struct.Flags & FR_WHOLEWORD)
992 flags |= FRD_WHOLE_WORD;
993 if (s_findrep_struct.Flags & FR_MATCHCASE)
994 flags |= FRD_MATCH_CASE;
995 down = (s_findrep_struct.Flags & FR_DOWN) != 0;
996 gui_do_findrepl(flags, s_findrep_struct.lpstrFindWhat,
997 s_findrep_struct.lpstrReplaceWith, down);
998 }
999}
1000#endif
1001
1002 static void
1003HandleMouseHide(UINT uMsg, LPARAM lParam)
1004{
1005 static LPARAM last_lParam = 0L;
1006
1007 /* We sometimes get a mousemove when the mouse didn't move... */
1008 if (uMsg == WM_MOUSEMOVE)
1009 {
1010 if (lParam == last_lParam)
1011 return;
1012 last_lParam = lParam;
1013 }
1014
1015 /* Handle specially, to centralise coding. We need to be sure we catch all
1016 * possible events which should cause us to restore the cursor (as it is a
1017 * shared resource, we take full responsibility for it).
1018 */
1019 switch (uMsg)
1020 {
1021 case WM_KEYUP:
1022 case WM_CHAR:
1023 /*
1024 * blank out the pointer if necessary
1025 */
1026 if (p_mh)
1027 gui_mch_mousehide(TRUE);
1028 break;
1029
1030 case WM_SYSKEYUP: /* show the pointer when a system-key is pressed */
1031 case WM_SYSCHAR:
1032 case WM_MOUSEMOVE: /* show the pointer on any mouse action */
1033 case WM_LBUTTONDOWN:
1034 case WM_LBUTTONUP:
1035 case WM_MBUTTONDOWN:
1036 case WM_MBUTTONUP:
1037 case WM_RBUTTONDOWN:
1038 case WM_RBUTTONUP:
1039 case WM_XBUTTONDOWN:
1040 case WM_XBUTTONUP:
1041 case WM_NCMOUSEMOVE:
1042 case WM_NCLBUTTONDOWN:
1043 case WM_NCLBUTTONUP:
1044 case WM_NCMBUTTONDOWN:
1045 case WM_NCMBUTTONUP:
1046 case WM_NCRBUTTONDOWN:
1047 case WM_NCRBUTTONUP:
1048 case WM_KILLFOCUS:
1049 /*
1050 * if the pointer is currently hidden, then we should show it.
1051 */
1052 gui_mch_mousehide(FALSE);
1053 break;
1054 }
1055}
1056
1057 static LRESULT CALLBACK
1058_TextAreaWndProc(
1059 HWND hwnd,
1060 UINT uMsg,
1061 WPARAM wParam,
1062 LPARAM lParam)
1063{
1064 /*
1065 TRACE("TextAreaWndProc: hwnd = %08x, msg = %x, wParam = %x, lParam = %x\n",
1066 hwnd, uMsg, wParam, lParam);
1067 */
1068
1069 HandleMouseHide(uMsg, lParam);
1070
1071 s_uMsg = uMsg;
1072 s_wParam = wParam;
1073 s_lParam = lParam;
1074
1075#ifdef FEAT_BEVAL
1076 TrackUserActivity(uMsg);
1077#endif
1078
1079 switch (uMsg)
1080 {
1081 HANDLE_MSG(hwnd, WM_LBUTTONDBLCLK,_OnMouseButtonDown);
1082 HANDLE_MSG(hwnd, WM_LBUTTONDOWN,_OnMouseButtonDown);
1083 HANDLE_MSG(hwnd, WM_LBUTTONUP, _OnMouseMoveOrRelease);
1084 HANDLE_MSG(hwnd, WM_MBUTTONDBLCLK,_OnMouseButtonDown);
1085 HANDLE_MSG(hwnd, WM_MBUTTONDOWN,_OnMouseButtonDown);
1086 HANDLE_MSG(hwnd, WM_MBUTTONUP, _OnMouseMoveOrRelease);
1087 HANDLE_MSG(hwnd, WM_MOUSEMOVE, _OnMouseMoveOrRelease);
1088 HANDLE_MSG(hwnd, WM_PAINT, _OnPaint);
1089 HANDLE_MSG(hwnd, WM_RBUTTONDBLCLK,_OnMouseButtonDown);
1090 HANDLE_MSG(hwnd, WM_RBUTTONDOWN,_OnMouseButtonDown);
1091 HANDLE_MSG(hwnd, WM_RBUTTONUP, _OnMouseMoveOrRelease);
1092#ifndef WIN16 /*<VN>*/
1093 HANDLE_MSG(hwnd, WM_XBUTTONDBLCLK,_OnMouseButtonDown);
1094 HANDLE_MSG(hwnd, WM_XBUTTONDOWN,_OnMouseButtonDown);
1095 HANDLE_MSG(hwnd, WM_XBUTTONUP, _OnMouseMoveOrRelease);
1096#endif
1097
1098#ifdef FEAT_BEVAL
1099 case WM_NOTIFY: Handle_WM_Notify(hwnd, (LPNMHDR)lParam);
1100 return TRUE;
1101#endif
Bram Moolenaar4d526ad2010-02-03 12:23:24 +01001102 default:
1103 return MyWindowProc(hwnd, uMsg, wParam, lParam);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104 }
1105}
1106
1107#if (defined(WIN3264) && defined(FEAT_MBYTE)) \
1108 || defined(GLOBAL_IME) \
1109 || defined(PROTO)
1110# ifdef PROTO
1111typedef int WINAPI;
1112# endif
1113
1114 LRESULT WINAPI
1115vim_WindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
1116{
1117# ifdef GLOBAL_IME
1118 return global_ime_DefWindowProc(hwnd, message, wParam, lParam);
1119# else
1120 if (wide_WindowProc)
1121 return DefWindowProcW(hwnd, message, wParam, lParam);
1122 return DefWindowProc(hwnd, message, wParam, lParam);
1123#endif
1124}
1125#endif
1126
1127/*
1128 * Called when the foreground or background color has been changed.
1129 */
1130 void
1131gui_mch_new_colors(void)
1132{
1133 /* nothing to do? */
1134}
1135
1136/*
1137 * Set the colors to their default values.
1138 */
1139 void
1140gui_mch_def_colors()
1141{
1142 gui.norm_pixel = GetSysColor(COLOR_WINDOWTEXT);
1143 gui.back_pixel = GetSysColor(COLOR_WINDOW);
1144 gui.def_norm_pixel = gui.norm_pixel;
1145 gui.def_back_pixel = gui.back_pixel;
1146}
1147
1148/*
1149 * Open the GUI window which was created by a call to gui_mch_init().
1150 */
1151 int
1152gui_mch_open(void)
1153{
1154#ifndef SW_SHOWDEFAULT
1155# define SW_SHOWDEFAULT 10 /* Borland 5.0 doesn't have it */
1156#endif
1157 /* Actually open the window, if not already visible
1158 * (may be done already in gui_mch_set_shellsize) */
1159 if (!IsWindowVisible(s_hwnd))
1160 ShowWindow(s_hwnd, SW_SHOWDEFAULT);
1161
Bram Moolenaare2f98b92006-03-29 21:18:24 +00001162#ifdef MSWIN_FIND_REPLACE
1163 /* Init replace string here, so that we keep it when re-opening the
1164 * dialog. */
1165 s_findrep_struct.lpstrReplaceWith[0] = NUL;
1166#endif
1167
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 return OK;
1169}
1170
1171/*
1172 * Get the position of the top left corner of the window.
1173 */
1174 int
1175gui_mch_get_winpos(int *x, int *y)
1176{
1177 RECT rect;
1178
1179 GetWindowRect(s_hwnd, &rect);
1180 *x = rect.left;
1181 *y = rect.top;
1182 return OK;
1183}
1184
1185/*
1186 * Set the position of the top left corner of the window to the given
1187 * coordinates.
1188 */
1189 void
1190gui_mch_set_winpos(int x, int y)
1191{
1192 SetWindowPos(s_hwnd, NULL, x, y, 0, 0,
1193 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
1194}
1195 void
1196gui_mch_set_text_area_pos(int x, int y, int w, int h)
1197{
1198 static int oldx = 0;
1199 static int oldy = 0;
1200
1201 SetWindowPos(s_textArea, NULL, x, y, w, h, SWP_NOZORDER | SWP_NOACTIVATE);
1202
1203#ifdef FEAT_TOOLBAR
1204 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1205 SendMessage(s_toolbarhwnd, WM_SIZE,
Bram Moolenaar5555acc2006-04-07 21:33:12 +00001206 (WPARAM)0, (LPARAM)(w + ((long)(TOOLBAR_BUTTON_HEIGHT+8)<<16)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207#endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001208#if defined(FEAT_GUI_TABLINE)
1209 if (showing_tabline)
1210 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001211 int top = 0;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001212 RECT rect;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001213
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001214# ifdef FEAT_TOOLBAR
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001215 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1216 top = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001217# endif
Bram Moolenaar5555acc2006-04-07 21:33:12 +00001218 GetClientRect(s_hwnd, &rect);
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001219 MoveWindow(s_tabhwnd, 0, top, rect.right, gui.tabline_height, TRUE);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001220 }
1221#endif
1222
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 /* When side scroll bar is unshown, the size of window will change.
1224 * then, the text area move left or right. thus client rect should be
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001225 * forcedly redrawn. (Yasuhiro Matsumoto) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 if (oldx != x || oldy != y)
1227 {
1228 InvalidateRect(s_hwnd, NULL, FALSE);
1229 oldx = x;
1230 oldy = y;
1231 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232}
1233
1234
1235/*
1236 * Scrollbar stuff:
1237 */
1238
1239 void
1240gui_mch_enable_scrollbar(
1241 scrollbar_T *sb,
1242 int flag)
1243{
1244 ShowScrollBar(sb->id, SB_CTL, flag);
1245
1246 /* TODO: When the window is maximized, the size of the window stays the
1247 * same, thus the size of the text area changes. On Win98 it's OK, on Win
1248 * NT 4.0 it's not... */
1249}
1250
1251 void
1252gui_mch_set_scrollbar_pos(
1253 scrollbar_T *sb,
1254 int x,
1255 int y,
1256 int w,
1257 int h)
1258{
Bram Moolenaar02743632005-07-25 20:42:36 +00001259 SetWindowPos(sb->id, NULL, x, y, w, h,
1260 SWP_NOZORDER | SWP_NOACTIVATE | SWP_SHOWWINDOW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261}
1262
1263 void
1264gui_mch_create_scrollbar(
1265 scrollbar_T *sb,
1266 int orient) /* SBAR_VERT or SBAR_HORIZ */
1267{
1268 sb->id = CreateWindow(
1269 "SCROLLBAR", "Scrollbar",
1270 WS_CHILD | ((orient == SBAR_VERT) ? SBS_VERT : SBS_HORZ), 0, 0,
1271 10, /* Any value will do for now */
1272 10, /* Any value will do for now */
1273 s_hwnd, NULL,
1274 s_hinst, NULL);
1275}
1276
1277/*
1278 * Find the scrollbar with the given hwnd.
1279 */
1280 static scrollbar_T *
1281gui_mswin_find_scrollbar(HWND hwnd)
1282{
1283 win_T *wp;
1284
1285 if (gui.bottom_sbar.id == hwnd)
1286 return &gui.bottom_sbar;
1287 FOR_ALL_WINDOWS(wp)
1288 {
1289 if (wp->w_scrollbars[SBAR_LEFT].id == hwnd)
1290 return &wp->w_scrollbars[SBAR_LEFT];
1291 if (wp->w_scrollbars[SBAR_RIGHT].id == hwnd)
1292 return &wp->w_scrollbars[SBAR_RIGHT];
1293 }
1294 return NULL;
1295}
1296
1297/*
1298 * Get the character size of a font.
1299 */
1300 static void
1301GetFontSize(GuiFont font)
1302{
1303 HWND hwnd = GetDesktopWindow();
1304 HDC hdc = GetWindowDC(hwnd);
1305 HFONT hfntOld = SelectFont(hdc, (HFONT)font);
1306 TEXTMETRIC tm;
1307
1308 GetTextMetrics(hdc, &tm);
1309 gui.char_width = tm.tmAveCharWidth + tm.tmOverhang;
1310
1311 gui.char_height = tm.tmHeight
1312#ifndef MSWIN16_FASTTEXT
Bram Moolenaar02743632005-07-25 20:42:36 +00001313 + p_linespace
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314#endif
Bram Moolenaar02743632005-07-25 20:42:36 +00001315 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316
1317 SelectFont(hdc, hfntOld);
1318
1319 ReleaseDC(hwnd, hdc);
1320}
1321
Bram Moolenaar02743632005-07-25 20:42:36 +00001322/*
1323 * Adjust gui.char_height (after 'linespace' was changed).
1324 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 int
Bram Moolenaar02743632005-07-25 20:42:36 +00001326gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327{
1328 GetFontSize(gui.norm_font);
1329 return OK;
1330}
1331
1332 static GuiFont
1333get_font_handle(LOGFONT *lf)
1334{
1335 HFONT font = NULL;
1336
1337 /* Load the font */
1338 font = CreateFontIndirect(lf);
1339
1340 if (font == NULL)
1341 return NOFONT;
1342
1343 return (GuiFont)font;
1344}
1345
1346 static int
1347pixels_to_points(int pixels, int vertical)
1348{
1349 int points;
1350 HWND hwnd;
1351 HDC hdc;
1352
1353 hwnd = GetDesktopWindow();
1354 hdc = GetWindowDC(hwnd);
1355
1356 points = MulDiv(pixels, 72,
1357 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX));
1358
1359 ReleaseDC(hwnd, hdc);
1360
1361 return points;
1362}
1363
1364 GuiFont
1365gui_mch_get_font(
1366 char_u *name,
1367 int giveErrorIfMissing)
1368{
1369 LOGFONT lf;
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001370 GuiFont font = NOFONT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001372 if (get_logfont(&lf, name, NULL, giveErrorIfMissing) == OK)
1373 font = get_font_handle(&lf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 if (font == NOFONT && giveErrorIfMissing)
1375 EMSG2(_(e_font), name);
1376 return font;
1377}
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001378
Bram Moolenaardfccaf02004-12-31 20:56:11 +00001379#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001380/*
1381 * Return the name of font "font" in allocated memory.
1382 * Don't know how to get the actual name, thus use the provided name.
1383 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001384/*ARGSUSED*/
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001385 char_u *
1386gui_mch_get_fontname(font, name)
1387 GuiFont font;
1388 char_u *name;
1389{
1390 if (name == NULL)
1391 return NULL;
1392 return vim_strsave(name);
1393}
Bram Moolenaardfccaf02004-12-31 20:56:11 +00001394#endif
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001395
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 void
1397gui_mch_free_font(GuiFont font)
1398{
1399 if (font)
1400 DeleteObject((HFONT)font);
1401}
1402
1403 static int
1404hex_digit(int c)
1405{
1406 if (VIM_ISDIGIT(c))
1407 return c - '0';
1408 c = TOLOWER_ASC(c);
1409 if (c >= 'a' && c <= 'f')
1410 return c - 'a' + 10;
1411 return -1000;
1412}
1413/*
1414 * Return the Pixel value (color) for the given color name.
1415 * Return INVALCOLOR for error.
1416 */
1417 guicolor_T
1418gui_mch_get_color(char_u *name)
1419{
1420 typedef struct guicolor_tTable
1421 {
1422 char *name;
1423 COLORREF color;
1424 } guicolor_tTable;
1425
1426 static guicolor_tTable table[] =
1427 {
1428 {"Black", RGB(0x00, 0x00, 0x00)},
Bram Moolenaar092e3c82011-09-07 18:58:29 +02001429 {"DarkGray", RGB(0xA9, 0xA9, 0xA9)},
1430 {"DarkGrey", RGB(0xA9, 0xA9, 0xA9)},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431 {"Gray", RGB(0xC0, 0xC0, 0xC0)},
1432 {"Grey", RGB(0xC0, 0xC0, 0xC0)},
Bram Moolenaar092e3c82011-09-07 18:58:29 +02001433 {"LightGray", RGB(0xD3, 0xD3, 0xD3)},
1434 {"LightGrey", RGB(0xD3, 0xD3, 0xD3)},
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001435 {"Gray10", RGB(0x1A, 0x1A, 0x1A)},
1436 {"Grey10", RGB(0x1A, 0x1A, 0x1A)},
1437 {"Gray20", RGB(0x33, 0x33, 0x33)},
1438 {"Grey20", RGB(0x33, 0x33, 0x33)},
1439 {"Gray30", RGB(0x4D, 0x4D, 0x4D)},
1440 {"Grey30", RGB(0x4D, 0x4D, 0x4D)},
1441 {"Gray40", RGB(0x66, 0x66, 0x66)},
1442 {"Grey40", RGB(0x66, 0x66, 0x66)},
1443 {"Gray50", RGB(0x7F, 0x7F, 0x7F)},
1444 {"Grey50", RGB(0x7F, 0x7F, 0x7F)},
1445 {"Gray60", RGB(0x99, 0x99, 0x99)},
1446 {"Grey60", RGB(0x99, 0x99, 0x99)},
1447 {"Gray70", RGB(0xB3, 0xB3, 0xB3)},
1448 {"Grey70", RGB(0xB3, 0xB3, 0xB3)},
1449 {"Gray80", RGB(0xCC, 0xCC, 0xCC)},
1450 {"Grey80", RGB(0xCC, 0xCC, 0xCC)},
Bram Moolenaare2f98b92006-03-29 21:18:24 +00001451 {"Gray90", RGB(0xE5, 0xE5, 0xE5)},
1452 {"Grey90", RGB(0xE5, 0xE5, 0xE5)},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453 {"White", RGB(0xFF, 0xFF, 0xFF)},
1454 {"DarkRed", RGB(0x80, 0x00, 0x00)},
1455 {"Red", RGB(0xFF, 0x00, 0x00)},
1456 {"LightRed", RGB(0xFF, 0xA0, 0xA0)},
1457 {"DarkBlue", RGB(0x00, 0x00, 0x80)},
1458 {"Blue", RGB(0x00, 0x00, 0xFF)},
Bram Moolenaar092e3c82011-09-07 18:58:29 +02001459 {"LightBlue", RGB(0xAD, 0xD8, 0xE6)},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460 {"DarkGreen", RGB(0x00, 0x80, 0x00)},
1461 {"Green", RGB(0x00, 0xFF, 0x00)},
Bram Moolenaar092e3c82011-09-07 18:58:29 +02001462 {"LightGreen", RGB(0x90, 0xEE, 0x90)},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 {"DarkCyan", RGB(0x00, 0x80, 0x80)},
1464 {"Cyan", RGB(0x00, 0xFF, 0xFF)},
Bram Moolenaar092e3c82011-09-07 18:58:29 +02001465 {"LightCyan", RGB(0xE0, 0xFF, 0xFF)},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 {"DarkMagenta", RGB(0x80, 0x00, 0x80)},
1467 {"Magenta", RGB(0xFF, 0x00, 0xFF)},
1468 {"LightMagenta", RGB(0xFF, 0xA0, 0xFF)},
1469 {"Brown", RGB(0x80, 0x40, 0x40)},
1470 {"Yellow", RGB(0xFF, 0xFF, 0x00)},
Bram Moolenaar092e3c82011-09-07 18:58:29 +02001471 {"LightYellow", RGB(0xFF, 0xFF, 0xE0)},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 {"DarkYellow", RGB(0xBB, 0xBB, 0x00)},
1473 {"SeaGreen", RGB(0x2E, 0x8B, 0x57)},
1474 {"Orange", RGB(0xFF, 0xA5, 0x00)},
1475 {"Purple", RGB(0xA0, 0x20, 0xF0)},
1476 {"SlateBlue", RGB(0x6A, 0x5A, 0xCD)},
1477 {"Violet", RGB(0xEE, 0x82, 0xEE)},
1478 };
1479
1480 typedef struct SysColorTable
1481 {
1482 char *name;
1483 int color;
1484 } SysColorTable;
1485
1486 static SysColorTable sys_table[] =
1487 {
1488#ifdef WIN3264
1489 {"SYS_3DDKSHADOW", COLOR_3DDKSHADOW},
1490 {"SYS_3DHILIGHT", COLOR_3DHILIGHT},
1491#ifndef __MINGW32__
1492 {"SYS_3DHIGHLIGHT", COLOR_3DHIGHLIGHT},
1493#endif
1494 {"SYS_BTNHILIGHT", COLOR_BTNHILIGHT},
1495 {"SYS_BTNHIGHLIGHT", COLOR_BTNHIGHLIGHT},
1496 {"SYS_3DLIGHT", COLOR_3DLIGHT},
1497 {"SYS_3DSHADOW", COLOR_3DSHADOW},
1498 {"SYS_DESKTOP", COLOR_DESKTOP},
1499 {"SYS_INFOBK", COLOR_INFOBK},
1500 {"SYS_INFOTEXT", COLOR_INFOTEXT},
1501 {"SYS_3DFACE", COLOR_3DFACE},
1502#endif
1503 {"SYS_BTNFACE", COLOR_BTNFACE},
1504 {"SYS_BTNSHADOW", COLOR_BTNSHADOW},
1505 {"SYS_ACTIVEBORDER", COLOR_ACTIVEBORDER},
1506 {"SYS_ACTIVECAPTION", COLOR_ACTIVECAPTION},
1507 {"SYS_APPWORKSPACE", COLOR_APPWORKSPACE},
1508 {"SYS_BACKGROUND", COLOR_BACKGROUND},
1509 {"SYS_BTNTEXT", COLOR_BTNTEXT},
1510 {"SYS_CAPTIONTEXT", COLOR_CAPTIONTEXT},
1511 {"SYS_GRAYTEXT", COLOR_GRAYTEXT},
1512 {"SYS_HIGHLIGHT", COLOR_HIGHLIGHT},
1513 {"SYS_HIGHLIGHTTEXT", COLOR_HIGHLIGHTTEXT},
1514 {"SYS_INACTIVEBORDER", COLOR_INACTIVEBORDER},
1515 {"SYS_INACTIVECAPTION", COLOR_INACTIVECAPTION},
1516 {"SYS_INACTIVECAPTIONTEXT", COLOR_INACTIVECAPTIONTEXT},
1517 {"SYS_MENU", COLOR_MENU},
1518 {"SYS_MENUTEXT", COLOR_MENUTEXT},
1519 {"SYS_SCROLLBAR", COLOR_SCROLLBAR},
1520 {"SYS_WINDOW", COLOR_WINDOW},
1521 {"SYS_WINDOWFRAME", COLOR_WINDOWFRAME},
1522 {"SYS_WINDOWTEXT", COLOR_WINDOWTEXT}
1523 };
1524
1525 int r, g, b;
1526 int i;
1527
1528 if (name[0] == '#' && strlen(name) == 7)
1529 {
1530 /* Name is in "#rrggbb" format */
1531 r = hex_digit(name[1]) * 16 + hex_digit(name[2]);
1532 g = hex_digit(name[3]) * 16 + hex_digit(name[4]);
1533 b = hex_digit(name[5]) * 16 + hex_digit(name[6]);
1534 if (r < 0 || g < 0 || b < 0)
1535 return INVALCOLOR;
1536 return RGB(r, g, b);
1537 }
1538 else
1539 {
1540 /* Check if the name is one of the colors we know */
1541 for (i = 0; i < sizeof(table) / sizeof(table[0]); i++)
1542 if (STRICMP(name, table[i].name) == 0)
1543 return table[i].color;
1544 }
1545
1546 /*
1547 * Try to look up a system colour.
1548 */
1549 for (i = 0; i < sizeof(sys_table) / sizeof(sys_table[0]); i++)
1550 if (STRICMP(name, sys_table[i].name) == 0)
1551 return GetSysColor(sys_table[i].color);
1552
1553 /*
1554 * Last attempt. Look in the file "$VIMRUNTIME/rgb.txt".
1555 */
1556 {
1557#define LINE_LEN 100
1558 FILE *fd;
1559 char line[LINE_LEN];
1560 char_u *fname;
1561
1562 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt");
1563 if (fname == NULL)
1564 return INVALCOLOR;
1565
Bram Moolenaar5555acc2006-04-07 21:33:12 +00001566 fd = mch_fopen((char *)fname, "rt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 vim_free(fname);
1568 if (fd == NULL)
1569 return INVALCOLOR;
1570
1571 while (!feof(fd))
1572 {
1573 int len;
1574 int pos;
1575 char *color;
1576
1577 fgets(line, LINE_LEN, fd);
1578 len = (int)STRLEN(line);
1579
1580 if (len <= 1 || line[len-1] != '\n')
1581 continue;
1582
1583 line[len-1] = '\0';
1584
1585 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos);
1586 if (i != 3)
1587 continue;
1588
1589 color = line + pos;
1590
1591 if (STRICMP(color, name) == 0)
1592 {
1593 fclose(fd);
1594 return (guicolor_T) RGB(r, g, b);
1595 }
1596 }
1597
1598 fclose(fd);
1599 }
1600
1601 return INVALCOLOR;
1602}
1603/*
1604 * Return OK if the key with the termcap name "name" is supported.
1605 */
1606 int
1607gui_mch_haskey(char_u *name)
1608{
1609 int i;
1610
1611 for (i = 0; special_keys[i].vim_code1 != NUL; i++)
1612 if (name[0] == special_keys[i].vim_code0 &&
1613 name[1] == special_keys[i].vim_code1)
1614 return OK;
1615 return FAIL;
1616}
1617
1618 void
1619gui_mch_beep(void)
1620{
1621 MessageBeep(MB_OK);
1622}
1623/*
1624 * Invert a rectangle from row r, column c, for nr rows and nc columns.
1625 */
1626 void
1627gui_mch_invert_rectangle(
1628 int r,
1629 int c,
1630 int nr,
1631 int nc)
1632{
1633 RECT rc;
1634
1635 /*
1636 * Note: InvertRect() excludes right and bottom of rectangle.
1637 */
1638 rc.left = FILL_X(c);
1639 rc.top = FILL_Y(r);
1640 rc.right = rc.left + nc * gui.char_width;
1641 rc.bottom = rc.top + nr * gui.char_height;
1642 InvertRect(s_hdc, &rc);
1643}
1644
1645/*
1646 * Iconify the GUI window.
1647 */
1648 void
1649gui_mch_iconify(void)
1650{
1651 ShowWindow(s_hwnd, SW_MINIMIZE);
1652}
1653
1654/*
1655 * Draw a cursor without focus.
1656 */
1657 void
1658gui_mch_draw_hollow_cursor(guicolor_T color)
1659{
1660 HBRUSH hbr;
1661 RECT rc;
1662
1663 /*
1664 * Note: FrameRect() excludes right and bottom of rectangle.
1665 */
1666 rc.left = FILL_X(gui.col);
1667 rc.top = FILL_Y(gui.row);
1668 rc.right = rc.left + gui.char_width;
1669#ifdef FEAT_MBYTE
1670 if (mb_lefthalve(gui.row, gui.col))
1671 rc.right += gui.char_width;
1672#endif
1673 rc.bottom = rc.top + gui.char_height;
1674 hbr = CreateSolidBrush(color);
1675 FrameRect(s_hdc, &rc, hbr);
1676 DeleteBrush(hbr);
1677}
1678/*
1679 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
1680 * color "color".
1681 */
1682 void
1683gui_mch_draw_part_cursor(
1684 int w,
1685 int h,
1686 guicolor_T color)
1687{
1688 HBRUSH hbr;
1689 RECT rc;
1690
1691 /*
1692 * Note: FillRect() excludes right and bottom of rectangle.
1693 */
1694 rc.left =
1695#ifdef FEAT_RIGHTLEFT
1696 /* vertical line should be on the right of current point */
1697 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
1698#endif
1699 FILL_X(gui.col);
1700 rc.top = FILL_Y(gui.row) + gui.char_height - h;
1701 rc.right = rc.left + w;
1702 rc.bottom = rc.top + h;
1703 hbr = CreateSolidBrush(color);
1704 FillRect(s_hdc, &rc, hbr);
1705 DeleteBrush(hbr);
1706}
1707
1708/*
1709 * Process a single Windows message.
1710 * If one is not available we hang until one is.
1711 */
1712 static void
1713process_message(void)
1714{
1715 MSG msg;
1716 UINT vk = 0; /* Virtual key */
1717 char_u string[40];
1718 int i;
1719 int modifiers = 0;
1720 int key;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001721#ifdef FEAT_MENU
1722 static char_u k10[] = {K_SPECIAL, 'k', ';', 0};
1723#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001725 pGetMessage(&msg, NULL, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726
1727#ifdef FEAT_OLE
1728 /* Look after OLE Automation commands */
1729 if (msg.message == WM_OLE)
1730 {
1731 char_u *str = (char_u *)msg.lParam;
Bram Moolenaar370feaf2009-01-28 13:18:26 +00001732 if (str == NULL || *str == NUL)
1733 {
1734 /* Message can't be ours, forward it. Fixes problem with Ultramon
1735 * 3.0.4 */
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001736 pDispatchMessage(&msg);
Bram Moolenaar370feaf2009-01-28 13:18:26 +00001737 }
1738 else
1739 {
1740 add_to_input_buf(str, (int)STRLEN(str));
1741 vim_free(str); /* was allocated in CVim::SendKeys() */
1742 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 return;
1744 }
1745#endif
1746
1747#ifdef FEAT_NETBEANS_INTG
1748 if (msg.message == WM_NETBEANS)
1749 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001750 netbeans_read();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 return;
1752 }
1753#endif
1754
1755#ifdef FEAT_SNIFF
1756 if (sniff_request_waiting && want_sniff_request)
1757 {
1758 static char_u bytes[3] = {CSI, (char_u)KS_EXTRA, (char_u)KE_SNIFF};
1759 add_to_input_buf(bytes, 3); /* K_SNIFF */
1760 sniff_request_waiting = 0;
1761 want_sniff_request = 0;
1762 /* request is handled in normal.c */
1763 }
1764 if (msg.message == WM_USER)
Bram Moolenaar35c92912006-06-22 17:34:26 +00001765 {
Bram Moolenaard8a92d72006-06-23 14:44:06 +00001766 MyTranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001767 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 return;
Bram Moolenaar35c92912006-06-22 17:34:26 +00001769 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770#endif
1771
1772#ifdef MSWIN_FIND_REPLACE
1773 /* Don't process messages used by the dialog */
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001774 if (s_findrep_hwnd != NULL && pIsDialogMessage(s_findrep_hwnd, &msg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 {
1776 HandleMouseHide(msg.message, msg.lParam);
1777 return;
1778 }
1779#endif
1780
1781 /*
1782 * Check if it's a special key that we recognise. If not, call
1783 * TranslateMessage().
1784 */
1785 if (msg.message == WM_KEYDOWN || msg.message == WM_SYSKEYDOWN)
1786 {
1787 vk = (int) msg.wParam;
1788 /* handle key after dead key, but ignore shift, alt and control */
1789 if (dead_key && vk != VK_SHIFT && vk != VK_MENU && vk != VK_CONTROL)
1790 {
1791 dead_key = 0;
1792 /* handle non-alphabetic keys (ones that hopefully cannot generate
1793 * umlaut-characters), unless when control is down */
1794 if (vk < 'A' || vk > 'Z' || (GetKeyState(VK_CONTROL) & 0x8000))
1795 {
1796 MSG dm;
1797
1798 dm.message = msg.message;
1799 dm.hwnd = msg.hwnd;
1800 dm.wParam = VK_SPACE;
1801 MyTranslateMessage(&dm); /* generate dead character */
1802 if (vk != VK_SPACE) /* and send current character once more */
1803 PostMessage(msg.hwnd, msg.message, msg.wParam, msg.lParam);
1804 return;
1805 }
1806 }
1807
1808 /* Check for CTRL-BREAK */
1809 if (vk == VK_CANCEL)
1810 {
1811 trash_input_buf();
1812 got_int = TRUE;
1813 string[0] = Ctrl_C;
1814 add_to_input_buf(string, 1);
1815 }
1816
1817 for (i = 0; special_keys[i].key_sym != 0; i++)
1818 {
1819 /* ignore VK_SPACE when ALT key pressed: system menu */
1820 if (special_keys[i].key_sym == vk
1821 && (vk != VK_SPACE || !(GetKeyState(VK_MENU) & 0x8000)))
1822 {
1823#ifdef FEAT_MENU
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001824 /* Check for <F10>: Windows selects the menu. When <F10> is
1825 * mapped we want to use the mapping instead. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 if (vk == VK_F10
1827 && gui.menu_is_active
Bram Moolenaarbd743252010-10-20 21:23:33 +02001828 && check_map(k10, State, FALSE, TRUE, FALSE,
1829 NULL, NULL) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 break;
1831#endif
1832 if (GetKeyState(VK_SHIFT) & 0x8000)
1833 modifiers |= MOD_MASK_SHIFT;
1834 /*
1835 * Don't use caps-lock as shift, because these are special keys
1836 * being considered here, and we only want letters to get
1837 * shifted -- webb
1838 */
1839 /*
1840 if (GetKeyState(VK_CAPITAL) & 0x0001)
1841 modifiers ^= MOD_MASK_SHIFT;
1842 */
1843 if (GetKeyState(VK_CONTROL) & 0x8000)
1844 modifiers |= MOD_MASK_CTRL;
1845 if (GetKeyState(VK_MENU) & 0x8000)
1846 modifiers |= MOD_MASK_ALT;
1847
1848 if (special_keys[i].vim_code1 == NUL)
1849 key = special_keys[i].vim_code0;
1850 else
1851 key = TO_SPECIAL(special_keys[i].vim_code0,
1852 special_keys[i].vim_code1);
1853 key = simplify_key(key, &modifiers);
1854 if (key == CSI)
1855 key = K_CSI;
1856
1857 if (modifiers)
1858 {
1859 string[0] = CSI;
1860 string[1] = KS_MODIFIER;
1861 string[2] = modifiers;
1862 add_to_input_buf(string, 3);
1863 }
1864
1865 if (IS_SPECIAL(key))
1866 {
1867 string[0] = CSI;
1868 string[1] = K_SECOND(key);
1869 string[2] = K_THIRD(key);
1870 add_to_input_buf(string, 3);
1871 }
1872 else
1873 {
1874 int len;
1875
1876 /* Handle "key" as a Unicode character. */
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00001877 len = char_to_string(key, string, 40, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 add_to_input_buf(string, len);
1879 }
1880 break;
1881 }
1882 }
1883 if (special_keys[i].key_sym == 0)
1884 {
1885 /* Some keys need C-S- where they should only need C-.
1886 * Ignore 0xff, Windows XP sends it when NUMLOCK has changed since
1887 * system startup (Helmut Stiegler, 2003 Oct 3). */
1888 if (vk != 0xff
1889 && (GetKeyState(VK_CONTROL) & 0x8000)
1890 && !(GetKeyState(VK_SHIFT) & 0x8000)
1891 && !(GetKeyState(VK_MENU) & 0x8000))
1892 {
1893 /* CTRL-6 is '^'; Japanese keyboard maps '^' to vk == 0xDE */
1894 if (vk == '6' || MapVirtualKey(vk, 2) == (UINT)'^')
1895 {
1896 string[0] = Ctrl_HAT;
1897 add_to_input_buf(string, 1);
1898 }
1899 /* vk == 0xBD AZERTY for CTRL-'-', but CTRL-[ for * QWERTY! */
1900 else if (vk == 0xBD) /* QWERTY for CTRL-'-' */
1901 {
1902 string[0] = Ctrl__;
1903 add_to_input_buf(string, 1);
1904 }
1905 /* CTRL-2 is '@'; Japanese keyboard maps '@' to vk == 0xC0 */
1906 else if (vk == '2' || MapVirtualKey(vk, 2) == (UINT)'@')
1907 {
1908 string[0] = Ctrl_AT;
1909 add_to_input_buf(string, 1);
1910 }
1911 else
1912 MyTranslateMessage(&msg);
1913 }
1914 else
1915 MyTranslateMessage(&msg);
1916 }
1917 }
1918#ifdef FEAT_MBYTE_IME
1919 else if (msg.message == WM_IME_NOTIFY)
1920 _OnImeNotify(msg.hwnd, (DWORD)msg.wParam, (DWORD)msg.lParam);
1921 else if (msg.message == WM_KEYUP && im_get_status())
1922 /* added for non-MS IME (Yasuhiro Matsumoto) */
1923 MyTranslateMessage(&msg);
1924#endif
1925#if !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME)
1926/* GIME_TEST */
1927 else if (msg.message == WM_IME_STARTCOMPOSITION)
1928 {
1929 POINT point;
1930
1931 global_ime_set_font(&norm_logfont);
1932 point.x = FILL_X(gui.col);
1933 point.y = FILL_Y(gui.row);
1934 MapWindowPoints(s_textArea, s_hwnd, &point, 1);
1935 global_ime_set_position(&point);
1936 }
1937#endif
1938
1939#ifdef FEAT_MENU
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001940 /* Check for <F10>: Default effect is to select the menu. When <F10> is
1941 * mapped we need to stop it here to avoid strange effects (e.g., for the
1942 * key-up event) */
Bram Moolenaarbd743252010-10-20 21:23:33 +02001943 if (vk != VK_F10 || check_map(k10, State, FALSE, TRUE, FALSE,
1944 NULL, NULL) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945#endif
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001946 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947}
1948
1949/*
1950 * Catch up with any queued events. This may put keyboard input into the
1951 * input buffer, call resize call-backs, trigger timers etc. If there is
1952 * nothing in the event queue (& no timers pending), then we return
1953 * immediately.
1954 */
1955 void
1956gui_mch_update(void)
1957{
1958 MSG msg;
1959
1960 if (!s_busy_processing)
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001961 while (pPeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 && !vim_is_input_buf_full())
1963 process_message();
1964}
1965
1966/*
1967 * GUI input routine called by gui_wait_for_chars(). Waits for a character
1968 * from the keyboard.
1969 * wtime == -1 Wait forever.
1970 * wtime == 0 This should never happen.
1971 * wtime > 0 Wait wtime milliseconds for a character.
1972 * Returns OK if a character was found to be available within the given time,
1973 * or FAIL otherwise.
1974 */
1975 int
1976gui_mch_wait_for_chars(int wtime)
1977{
1978 MSG msg;
1979 int focus;
1980
1981 s_timed_out = FALSE;
1982
1983 if (wtime > 0)
1984 {
1985 /* Don't do anything while processing a (scroll) message. */
1986 if (s_busy_processing)
1987 return FAIL;
1988 s_wait_timer = (UINT)SetTimer(NULL, 0, (UINT)wtime,
1989 (TIMERPROC)_OnTimer);
1990 }
1991
1992 allow_scrollbar = TRUE;
1993
1994 focus = gui.in_focus;
1995 while (!s_timed_out)
1996 {
1997 /* Stop or start blinking when focus changes */
1998 if (gui.in_focus != focus)
1999 {
2000 if (gui.in_focus)
2001 gui_mch_start_blink();
2002 else
2003 gui_mch_stop_blink();
2004 focus = gui.in_focus;
2005 }
2006
2007 if (s_need_activate)
2008 {
2009#ifdef WIN32
2010 (void)SetForegroundWindow(s_hwnd);
2011#else
2012 (void)SetActiveWindow(s_hwnd);
2013#endif
2014 s_need_activate = FALSE;
2015 }
2016
Bram Moolenaar61665aa2008-12-24 11:20:53 +00002017#ifdef FEAT_NETBEANS_INTG
2018 /* Process the queued netbeans messages. */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002019 netbeans_parse_messages();
Bram Moolenaar61665aa2008-12-24 11:20:53 +00002020#endif
2021
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 /*
2023 * Don't use gui_mch_update() because then we will spin-lock until a
2024 * char arrives, instead we use GetMessage() to hang until an
2025 * event arrives. No need to check for input_buf_full because we are
2026 * returning as soon as it contains a single char -- webb
2027 */
2028 process_message();
2029
2030 if (input_available())
2031 {
2032 if (s_wait_timer != 0 && !s_timed_out)
2033 {
2034 KillTimer(NULL, s_wait_timer);
2035
2036 /* Eat spurious WM_TIMER messages */
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002037 while (pPeekMessage(&msg, s_hwnd, WM_TIMER, WM_TIMER, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 ;
2039 s_wait_timer = 0;
2040 }
2041 allow_scrollbar = FALSE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002042
2043 /* Clear pending mouse button, the release event may have been
Bram Moolenaarea408882007-12-03 21:21:03 +00002044 * taken by the dialog window. But don't do this when getting
2045 * focus, we need the mouse-up event then. */
2046 if (!s_getting_focus)
2047 s_button_pending = -1;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002048
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 return OK;
2050 }
2051 }
2052 allow_scrollbar = FALSE;
2053 return FAIL;
2054}
2055
2056/*
2057 * Clear a rectangular region of the screen from text pos (row1, col1) to
2058 * (row2, col2) inclusive.
2059 */
2060 void
2061gui_mch_clear_block(
2062 int row1,
2063 int col1,
2064 int row2,
2065 int col2)
2066{
2067 RECT rc;
2068
2069 /*
2070 * Clear one extra pixel at the far right, for when bold characters have
2071 * spilled over to the window border.
2072 * Note: FillRect() excludes right and bottom of rectangle.
2073 */
2074 rc.left = FILL_X(col1);
2075 rc.top = FILL_Y(row1);
2076 rc.right = FILL_X(col2 + 1) + (col2 == Columns - 1);
2077 rc.bottom = FILL_Y(row2 + 1);
2078 clear_rect(&rc);
2079}
2080
2081/*
2082 * Clear the whole text window.
2083 */
2084 void
2085gui_mch_clear_all(void)
2086{
2087 RECT rc;
2088
2089 rc.left = 0;
2090 rc.top = 0;
2091 rc.right = Columns * gui.char_width + 2 * gui.border_width;
2092 rc.bottom = Rows * gui.char_height + 2 * gui.border_width;
2093 clear_rect(&rc);
2094}
2095/*
2096 * Menu stuff.
2097 */
2098
2099 void
2100gui_mch_enable_menu(int flag)
2101{
2102#ifdef FEAT_MENU
2103 SetMenu(s_hwnd, flag ? s_menuBar : NULL);
2104#endif
2105}
2106
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002107/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 void
2109gui_mch_set_menu_pos(
2110 int x,
2111 int y,
2112 int w,
2113 int h)
2114{
2115 /* It will be in the right place anyway */
2116}
2117
2118#if defined(FEAT_MENU) || defined(PROTO)
2119/*
2120 * Make menu item hidden or not hidden
2121 */
2122 void
2123gui_mch_menu_hidden(
2124 vimmenu_T *menu,
2125 int hidden)
2126{
2127 /*
2128 * This doesn't do what we want. Hmm, just grey the menu items for now.
2129 */
2130 /*
2131 if (hidden)
2132 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_DISABLED);
2133 else
2134 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_ENABLED);
2135 */
2136 gui_mch_menu_grey(menu, hidden);
2137}
2138
2139/*
2140 * This is called after setting all the menus to grey/hidden or not.
2141 */
2142 void
2143gui_mch_draw_menubar(void)
2144{
2145 DrawMenuBar(s_hwnd);
2146}
2147#endif /*FEAT_MENU*/
2148
2149#ifndef PROTO
2150void
2151#ifdef VIMDLL
2152_export
2153#endif
2154_cdecl
2155SaveInst(HINSTANCE hInst)
2156{
2157 s_hinst = hInst;
2158}
2159#endif
2160
2161/*
2162 * Return the RGB value of a pixel as a long.
2163 */
2164 long_u
2165gui_mch_get_rgb(guicolor_T pixel)
2166{
2167 return (GetRValue(pixel) << 16) + (GetGValue(pixel) << 8)
2168 + GetBValue(pixel);
2169}
2170
2171#if defined(FEAT_GUI_DIALOG) || defined(PROTO)
2172/* Convert pixels in X to dialog units */
2173 static WORD
2174PixelToDialogX(int numPixels)
2175{
2176 return (WORD)((numPixels * 4) / s_dlgfntwidth);
2177}
2178
2179/* Convert pixels in Y to dialog units */
2180 static WORD
2181PixelToDialogY(int numPixels)
2182{
2183 return (WORD)((numPixels * 8) / s_dlgfntheight);
2184}
2185
2186/* Return the width in pixels of the given text in the given DC. */
2187 static int
2188GetTextWidth(HDC hdc, char_u *str, int len)
2189{
2190 SIZE size;
2191
2192 GetTextExtentPoint(hdc, str, len, &size);
2193 return size.cx;
2194}
2195
2196#ifdef FEAT_MBYTE
2197/*
2198 * Return the width in pixels of the given text in the given DC, taking care
2199 * of 'encoding' to active codepage conversion.
2200 */
2201 static int
2202GetTextWidthEnc(HDC hdc, char_u *str, int len)
2203{
2204 SIZE size;
2205 WCHAR *wstr;
2206 int n;
2207 int wlen = len;
2208
2209 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2210 {
2211 /* 'encoding' differs from active codepage: convert text and use wide
2212 * function */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002213 wstr = enc_to_utf16(str, &wlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 if (wstr != NULL)
2215 {
2216 n = GetTextExtentPointW(hdc, wstr, wlen, &size);
2217 vim_free(wstr);
2218 if (n)
2219 return size.cx;
2220 }
2221 }
2222
2223 return GetTextWidth(hdc, str, len);
2224}
2225#else
2226# define GetTextWidthEnc(h, s, l) GetTextWidth((h), (s), (l))
2227#endif
2228
2229/*
2230 * A quick little routine that will center one window over another, handy for
2231 * dialog boxes. Taken from the Win32SDK samples.
2232 */
2233 static BOOL
2234CenterWindow(
2235 HWND hwndChild,
2236 HWND hwndParent)
2237{
2238 RECT rChild, rParent;
2239 int wChild, hChild, wParent, hParent;
2240 int wScreen, hScreen, xNew, yNew;
2241 HDC hdc;
2242
2243 GetWindowRect(hwndChild, &rChild);
2244 wChild = rChild.right - rChild.left;
2245 hChild = rChild.bottom - rChild.top;
2246
2247 /* If Vim is minimized put the window in the middle of the screen. */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002248 if (hwndParent == NULL || IsMinimized(hwndParent))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 {
2250#ifdef WIN16
2251 rParent.left = 0;
2252 rParent.top = 0;
2253 rParent.right = GetSystemMetrics(SM_CXSCREEN);
2254 rParent.bottom = GetSystemMetrics(SM_CYFULLSCREEN);
2255#else
2256 SystemParametersInfo(SPI_GETWORKAREA, 0, &rParent, 0);
2257#endif
2258 }
2259 else
2260 GetWindowRect(hwndParent, &rParent);
2261 wParent = rParent.right - rParent.left;
2262 hParent = rParent.bottom - rParent.top;
2263
2264 hdc = GetDC(hwndChild);
2265 wScreen = GetDeviceCaps (hdc, HORZRES);
2266 hScreen = GetDeviceCaps (hdc, VERTRES);
2267 ReleaseDC(hwndChild, hdc);
2268
2269 xNew = rParent.left + ((wParent - wChild) /2);
2270 if (xNew < 0)
2271 {
2272 xNew = 0;
2273 }
2274 else if ((xNew+wChild) > wScreen)
2275 {
2276 xNew = wScreen - wChild;
2277 }
2278
2279 yNew = rParent.top + ((hParent - hChild) /2);
2280 if (yNew < 0)
2281 yNew = 0;
2282 else if ((yNew+hChild) > hScreen)
2283 yNew = hScreen - hChild;
2284
2285 return SetWindowPos(hwndChild, NULL, xNew, yNew, 0, 0,
2286 SWP_NOSIZE | SWP_NOZORDER);
2287}
2288#endif /* FEAT_GUI_DIALOG */
2289
2290void
2291gui_mch_activate_window(void)
2292{
2293 (void)SetActiveWindow(s_hwnd);
2294}
2295
2296#if defined(FEAT_TOOLBAR) || defined(PROTO)
2297 void
2298gui_mch_show_toolbar(int showit)
2299{
2300 if (s_toolbarhwnd == NULL)
2301 return;
2302
2303 if (showit)
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00002304 {
2305# ifdef FEAT_MBYTE
2306# ifndef TB_SETUNICODEFORMAT
2307 /* For older compilers. We assume this never changes. */
2308# define TB_SETUNICODEFORMAT 0x2005
2309# endif
2310 /* Enable/disable unicode support */
2311 int uu = (enc_codepage >= 0 && (int)GetACP() != enc_codepage);
2312 SendMessage(s_toolbarhwnd, TB_SETUNICODEFORMAT, (WPARAM)uu, (LPARAM)0);
2313# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 ShowWindow(s_toolbarhwnd, SW_SHOW);
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00002315 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 else
2317 ShowWindow(s_toolbarhwnd, SW_HIDE);
2318}
2319
2320/* Then number of bitmaps is fixed. Exit is missing! */
2321#define TOOLBAR_BITMAP_COUNT 31
2322
2323#endif
2324
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002325#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00002326 static void
Bram Moolenaar908d53a2006-11-07 18:05:31 +00002327add_tabline_popup_menu_entry(HMENU pmenu, UINT item_id, char_u *item_text)
2328{
2329#ifdef FEAT_MBYTE
2330 WCHAR *wn = NULL;
2331 int n;
2332
2333 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2334 {
2335 /* 'encoding' differs from active codepage: convert menu name
2336 * and use wide function */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002337 wn = enc_to_utf16(item_text, NULL);
Bram Moolenaar908d53a2006-11-07 18:05:31 +00002338 if (wn != NULL)
2339 {
2340 MENUITEMINFOW infow;
2341
2342 infow.cbSize = sizeof(infow);
2343 infow.fMask = MIIM_TYPE | MIIM_ID;
2344 infow.wID = item_id;
2345 infow.fType = MFT_STRING;
2346 infow.dwTypeData = wn;
2347 infow.cch = (UINT)wcslen(wn);
2348 n = InsertMenuItemW(pmenu, item_id, FALSE, &infow);
2349 vim_free(wn);
2350 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2351 /* Failed, try using non-wide function. */
2352 wn = NULL;
2353 }
2354 }
2355
2356 if (wn == NULL)
2357#endif
2358 {
2359 MENUITEMINFO info;
2360
2361 info.cbSize = sizeof(info);
2362 info.fMask = MIIM_TYPE | MIIM_ID;
2363 info.wID = item_id;
2364 info.fType = MFT_STRING;
2365 info.dwTypeData = item_text;
2366 info.cch = (UINT)STRLEN(item_text);
2367 InsertMenuItem(pmenu, item_id, FALSE, &info);
2368 }
2369}
2370
2371 static void
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00002372show_tabline_popup_menu(void)
2373{
2374 HMENU tab_pmenu;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00002375 long rval;
2376 POINT pt;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00002377
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002378 /* When ignoring events don't show the menu. */
2379 if (hold_gui_events
2380# ifdef FEAT_CMDWIN
2381 || cmdwin_type != 0
2382# endif
2383 )
2384 return;
2385
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00002386 tab_pmenu = CreatePopupMenu();
2387 if (tab_pmenu == NULL)
2388 return;
2389
Bram Moolenaar908d53a2006-11-07 18:05:31 +00002390 add_tabline_popup_menu_entry(tab_pmenu, TABLINE_MENU_CLOSE, _("Close tab"));
2391 add_tabline_popup_menu_entry(tab_pmenu, TABLINE_MENU_NEW, _("New tab"));
2392 add_tabline_popup_menu_entry(tab_pmenu, TABLINE_MENU_OPEN,
2393 _("Open tab..."));
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00002394
2395 GetCursorPos(&pt);
2396 rval = TrackPopupMenuEx(tab_pmenu, TPM_RETURNCMD, pt.x, pt.y, s_tabhwnd,
2397 NULL);
2398
2399 DestroyMenu(tab_pmenu);
2400
2401 /* Add the string cmd into input buffer */
2402 if (rval > 0)
2403 {
2404 TCHITTESTINFO htinfo;
2405 int idx;
2406
2407 if (ScreenToClient(s_tabhwnd, &pt) == 0)
2408 return;
2409
2410 htinfo.pt.x = pt.x;
2411 htinfo.pt.y = pt.y;
2412 idx = TabCtrl_HitTest(s_tabhwnd, &htinfo);
2413 if (idx == -1)
2414 idx = 0;
2415 else
2416 idx += 1;
2417
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00002418 send_tabline_menu_event(idx, (int)rval);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00002419 }
2420}
2421
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002422/*
2423 * Show or hide the tabline.
2424 */
2425 void
2426gui_mch_show_tabline(int showit)
2427{
2428 if (s_tabhwnd == NULL)
2429 return;
2430
2431 if (!showit != !showing_tabline)
2432 {
2433 if (showit)
2434 ShowWindow(s_tabhwnd, SW_SHOW);
2435 else
2436 ShowWindow(s_tabhwnd, SW_HIDE);
2437 showing_tabline = showit;
2438 }
2439}
2440
2441/*
2442 * Return TRUE when tabline is displayed.
2443 */
2444 int
2445gui_mch_showing_tabline(void)
2446{
2447 return s_tabhwnd != NULL && showing_tabline;
2448}
2449
2450/*
2451 * Update the labels of the tabline.
2452 */
2453 void
2454gui_mch_update_tabline(void)
2455{
2456 tabpage_T *tp;
2457 TCITEM tie;
2458 int nr = 0;
2459 int curtabidx = 0;
Bram Moolenaar8424a622006-04-19 21:23:36 +00002460#ifdef FEAT_MBYTE
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002461 static int use_unicode = FALSE;
2462 int uu;
Bram Moolenaar8424a622006-04-19 21:23:36 +00002463 WCHAR *wstr = NULL;
2464#endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002465
2466 if (s_tabhwnd == NULL)
2467 return;
2468
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002469#if defined(FEAT_MBYTE)
2470# ifndef CCM_SETUNICODEFORMAT
2471 /* For older compilers. We assume this never changes. */
2472# define CCM_SETUNICODEFORMAT 0x2005
2473# endif
2474 uu = (enc_codepage >= 0 && (int)GetACP() != enc_codepage);
2475 if (uu != use_unicode)
2476 {
2477 /* Enable/disable unicode support */
2478 SendMessage(s_tabhwnd, CCM_SETUNICODEFORMAT, (WPARAM)uu, (LPARAM)0);
2479 use_unicode = uu;
2480 }
Bram Moolenaar8424a622006-04-19 21:23:36 +00002481#endif
2482
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002483 tie.mask = TCIF_TEXT;
2484 tie.iImage = -1;
2485
Bram Moolenaar4b166d02012-12-12 17:12:25 +01002486 /* Disable redraw for tab updates to eliminate O(N^2) draws. */
2487 SendMessage(s_tabhwnd, WM_SETREDRAW, (WPARAM)FALSE, 0);
2488
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002489 /* Add a label for each tab page. They all contain the same text area. */
2490 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
2491 {
2492 if (tp == curtab)
2493 curtabidx = nr;
2494
Bram Moolenaar4b166d02012-12-12 17:12:25 +01002495 if (nr >= TabCtrl_GetItemCount(s_tabhwnd))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002496 {
2497 /* Add the tab */
2498 tie.pszText = "-Empty-";
2499 TabCtrl_InsertItem(s_tabhwnd, nr, &tie);
2500 }
2501
Bram Moolenaar57657d82006-04-21 22:12:41 +00002502 get_tabline_label(tp, FALSE);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002503 tie.pszText = NameBuff;
Bram Moolenaar8424a622006-04-19 21:23:36 +00002504#ifdef FEAT_MBYTE
2505 wstr = NULL;
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002506 if (use_unicode)
Bram Moolenaar8424a622006-04-19 21:23:36 +00002507 {
2508 /* Need to go through Unicode. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002509 wstr = enc_to_utf16(NameBuff, NULL);
Bram Moolenaar8424a622006-04-19 21:23:36 +00002510 if (wstr != NULL)
2511 {
2512 TCITEMW tiw;
2513
2514 tiw.mask = TCIF_TEXT;
2515 tiw.iImage = -1;
2516 tiw.pszText = wstr;
Bram Moolenaar85f868c2006-11-28 16:16:58 +00002517 SendMessage(s_tabhwnd, TCM_SETITEMW, (WPARAM)nr, (LPARAM)&tiw);
Bram Moolenaar8424a622006-04-19 21:23:36 +00002518 vim_free(wstr);
2519 }
2520 }
2521 if (wstr == NULL)
2522#endif
2523 {
2524 TabCtrl_SetItem(s_tabhwnd, nr, &tie);
2525 }
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002526 }
2527
2528 /* Remove any old labels. */
Bram Moolenaar4b166d02012-12-12 17:12:25 +01002529 while (nr < TabCtrl_GetItemCount(s_tabhwnd))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002530 TabCtrl_DeleteItem(s_tabhwnd, nr);
2531
2532 if (TabCtrl_GetCurSel(s_tabhwnd) != curtabidx)
2533 TabCtrl_SetCurSel(s_tabhwnd, curtabidx);
Bram Moolenaar4b166d02012-12-12 17:12:25 +01002534
Bram Moolenaar14e28812012-12-16 12:50:39 +01002535 /* Re-enable redraw and redraw. */
Bram Moolenaar4b166d02012-12-12 17:12:25 +01002536 SendMessage(s_tabhwnd, WM_SETREDRAW, (WPARAM)TRUE, 0);
Bram Moolenaar14e28812012-12-16 12:50:39 +01002537 RedrawWindow(s_tabhwnd, NULL, NULL,
2538 RDW_ERASE | RDW_FRAME | RDW_INVALIDATE | RDW_ALLCHILDREN);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002539}
2540
2541/*
2542 * Set the current tab to "nr". First tab is 1.
2543 */
2544 void
2545gui_mch_set_curtab(nr)
2546 int nr;
2547{
2548 if (s_tabhwnd == NULL)
2549 return;
2550
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00002551 if (TabCtrl_GetCurSel(s_tabhwnd) != nr -1)
2552 TabCtrl_SetCurSel(s_tabhwnd, nr -1);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002553}
2554
2555#endif
2556
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557/*
2558 * ":simalt" command.
2559 */
2560 void
2561ex_simalt(exarg_T *eap)
2562{
2563 char_u *keys = eap->arg;
2564
2565 PostMessage(s_hwnd, WM_SYSCOMMAND, (WPARAM)SC_KEYMENU, (LPARAM)0);
2566 while (*keys)
2567 {
2568 if (*keys == '~')
2569 *keys = ' '; /* for showing system menu */
2570 PostMessage(s_hwnd, WM_CHAR, (WPARAM)*keys, (LPARAM)0);
2571 keys++;
2572 }
2573}
2574
2575/*
2576 * Create the find & replace dialogs.
2577 * You can't have both at once: ":find" when replace is showing, destroys
2578 * the replace dialog first, and the other way around.
2579 */
2580#ifdef MSWIN_FIND_REPLACE
2581 static void
2582initialise_findrep(char_u *initial_string)
2583{
2584 int wword = FALSE;
2585 int mcase = !p_ic;
2586 char_u *entry_text;
2587
2588 /* Get the search string to use. */
2589 entry_text = get_find_dialog_text(initial_string, &wword, &mcase);
2590
2591 s_findrep_struct.hwndOwner = s_hwnd;
2592 s_findrep_struct.Flags = FR_DOWN;
2593 if (mcase)
2594 s_findrep_struct.Flags |= FR_MATCHCASE;
2595 if (wword)
2596 s_findrep_struct.Flags |= FR_WHOLEWORD;
2597 if (entry_text != NULL && *entry_text != NUL)
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00002598 vim_strncpy(s_findrep_struct.lpstrFindWhat, entry_text,
2599 s_findrep_struct.wFindWhatLen - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 vim_free(entry_text);
2601}
2602#endif
2603
Bram Moolenaar908d53a2006-11-07 18:05:31 +00002604 static void
2605set_window_title(HWND hwnd, char *title)
2606{
2607#ifdef FEAT_MBYTE
2608 if (title != NULL && enc_codepage >= 0 && enc_codepage != (int)GetACP())
2609 {
2610 WCHAR *wbuf;
2611 int n;
2612
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002613 /* Convert the title from 'encoding' to UTF-16. */
2614 wbuf = (WCHAR *)enc_to_utf16((char_u *)title, NULL);
Bram Moolenaar908d53a2006-11-07 18:05:31 +00002615 if (wbuf != NULL)
2616 {
2617 n = SetWindowTextW(hwnd, wbuf);
2618 vim_free(wbuf);
2619 if (n != 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
2620 return;
2621 /* Retry with non-wide function (for Windows 98). */
2622 }
2623 }
2624#endif
2625 (void)SetWindowText(hwnd, (LPCSTR)title);
2626}
2627
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 void
2629gui_mch_find_dialog(exarg_T *eap)
2630{
2631#ifdef MSWIN_FIND_REPLACE
2632 if (s_findrep_msg != 0)
2633 {
2634 if (IsWindow(s_findrep_hwnd) && !s_findrep_is_find)
2635 DestroyWindow(s_findrep_hwnd);
2636
2637 if (!IsWindow(s_findrep_hwnd))
2638 {
2639 initialise_findrep(eap->arg);
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002640# if defined(FEAT_MBYTE) && defined(WIN3264)
2641 /* If the OS is Windows NT, and 'encoding' differs from active
2642 * codepage: convert text and use wide function. */
2643 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2644 && enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2645 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002646 findrep_atow(&s_findrep_struct_w, &s_findrep_struct);
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002647 s_findrep_hwnd = FindTextW(
2648 (LPFINDREPLACEW) &s_findrep_struct_w);
2649 }
2650 else
2651# endif
2652 s_findrep_hwnd = FindText((LPFINDREPLACE) &s_findrep_struct);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 }
2654
Bram Moolenaar908d53a2006-11-07 18:05:31 +00002655 set_window_title(s_findrep_hwnd,
2656 _("Find string (use '\\\\' to find a '\\')"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 (void)SetFocus(s_findrep_hwnd);
2658
2659 s_findrep_is_find = TRUE;
2660 }
2661#endif
2662}
2663
2664
2665 void
2666gui_mch_replace_dialog(exarg_T *eap)
2667{
2668#ifdef MSWIN_FIND_REPLACE
2669 if (s_findrep_msg != 0)
2670 {
2671 if (IsWindow(s_findrep_hwnd) && s_findrep_is_find)
2672 DestroyWindow(s_findrep_hwnd);
2673
2674 if (!IsWindow(s_findrep_hwnd))
2675 {
2676 initialise_findrep(eap->arg);
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002677# if defined(FEAT_MBYTE) && defined(WIN3264)
2678 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2679 && enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2680 {
2681 findrep_atow(&s_findrep_struct_w, &s_findrep_struct);
2682 s_findrep_hwnd = ReplaceTextW(
2683 (LPFINDREPLACEW) &s_findrep_struct_w);
2684 }
2685 else
2686# endif
2687 s_findrep_hwnd = ReplaceText(
2688 (LPFINDREPLACE) &s_findrep_struct);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 }
2690
Bram Moolenaar908d53a2006-11-07 18:05:31 +00002691 set_window_title(s_findrep_hwnd,
2692 _("Find & Replace (use '\\\\' to find a '\\')"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 (void)SetFocus(s_findrep_hwnd);
2694
2695 s_findrep_is_find = FALSE;
2696 }
2697#endif
2698}
2699
2700
2701/*
2702 * Set visibility of the pointer.
2703 */
2704 void
2705gui_mch_mousehide(int hide)
2706{
2707 if (hide != gui.pointer_hidden)
2708 {
2709 ShowCursor(!hide);
2710 gui.pointer_hidden = hide;
2711 }
2712}
2713
2714#ifdef FEAT_MENU
2715 static void
2716gui_mch_show_popupmenu_at(vimmenu_T *menu, int x, int y)
2717{
2718 /* Unhide the mouse, we don't get move events here. */
2719 gui_mch_mousehide(FALSE);
2720
2721 (void)TrackPopupMenu(
2722 (HMENU)menu->submenu_id,
2723 TPM_LEFTALIGN | TPM_LEFTBUTTON,
2724 x, y,
2725 (int)0, /*reserved param*/
2726 s_hwnd,
2727 NULL);
2728 /*
2729 * NOTE: The pop-up menu can eat the mouse up event.
2730 * We deal with this in normal.c.
2731 */
2732}
2733#endif
2734
2735/*
2736 * Got a message when the system will go down.
2737 */
2738 static void
2739_OnEndSession(void)
2740{
2741 getout_preserve_modified(1);
2742}
2743
2744/*
2745 * Get this message when the user clicks on the cross in the top right corner
2746 * of a Windows95 window.
2747 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002748/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 static void
2750_OnClose(
2751 HWND hwnd)
2752{
2753 gui_shell_closed();
2754}
2755
2756/*
2757 * Get a message when the window is being destroyed.
2758 */
2759 static void
2760_OnDestroy(
2761 HWND hwnd)
2762{
2763#ifdef WIN16_3DLOOK
2764 Ctl3dUnregister(s_hinst);
2765#endif
2766 if (!destroying)
2767 _OnClose(hwnd);
2768}
2769
2770 static void
2771_OnPaint(
2772 HWND hwnd)
2773{
2774 if (!IsMinimized(hwnd))
2775 {
2776 PAINTSTRUCT ps;
2777
2778 out_flush(); /* make sure all output has been processed */
2779 (void)BeginPaint(hwnd, &ps);
2780
2781#ifdef FEAT_MBYTE
2782 /* prevent multi-byte characters from misprinting on an invalid
2783 * rectangle */
2784 if (has_mbyte)
2785 {
2786 RECT rect;
2787
2788 GetClientRect(hwnd, &rect);
2789 ps.rcPaint.left = rect.left;
2790 ps.rcPaint.right = rect.right;
2791 }
2792#endif
2793
2794 if (!IsRectEmpty(&ps.rcPaint))
2795 gui_redraw(ps.rcPaint.left, ps.rcPaint.top,
2796 ps.rcPaint.right - ps.rcPaint.left + 1,
2797 ps.rcPaint.bottom - ps.rcPaint.top + 1);
2798 EndPaint(hwnd, &ps);
2799 }
2800}
2801
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002802/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 static void
2804_OnSize(
2805 HWND hwnd,
2806 UINT state,
2807 int cx,
2808 int cy)
2809{
2810 if (!IsMinimized(hwnd))
2811 {
2812 gui_resize_shell(cx, cy);
2813
2814#ifdef FEAT_MENU
2815 /* Menu bar may wrap differently now */
2816 gui_mswin_get_menu_height(TRUE);
2817#endif
2818 }
2819}
2820
2821 static void
2822_OnSetFocus(
2823 HWND hwnd,
2824 HWND hwndOldFocus)
2825{
2826 gui_focus_change(TRUE);
Bram Moolenaarea408882007-12-03 21:21:03 +00002827 s_getting_focus = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 (void)MyWindowProc(hwnd, WM_SETFOCUS, (WPARAM)hwndOldFocus, 0);
2829}
2830
2831 static void
2832_OnKillFocus(
2833 HWND hwnd,
2834 HWND hwndNewFocus)
2835{
2836 gui_focus_change(FALSE);
Bram Moolenaarea408882007-12-03 21:21:03 +00002837 s_getting_focus = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 (void)MyWindowProc(hwnd, WM_KILLFOCUS, (WPARAM)hwndNewFocus, 0);
2839}
2840
2841/*
2842 * Get a message when the user switches back to vim
2843 */
2844#ifdef WIN16
2845 static BOOL
2846#else
2847 static LRESULT
2848#endif
2849_OnActivateApp(
2850 HWND hwnd,
2851 BOOL fActivate,
2852#ifdef WIN16
2853 HTASK dwThreadId
2854#else
2855 DWORD dwThreadId
2856#endif
2857 )
2858{
2859 /* we call gui_focus_change() in _OnSetFocus() */
2860 /* gui_focus_change((int)fActivate); */
2861 return MyWindowProc(hwnd, WM_ACTIVATEAPP, fActivate, (DWORD)dwThreadId);
2862}
2863
2864#if defined(FEAT_WINDOWS) || defined(PROTO)
2865 void
2866gui_mch_destroy_scrollbar(scrollbar_T *sb)
2867{
2868 DestroyWindow(sb->id);
2869}
2870#endif
2871
2872/*
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002873 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 */
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002875 void
Bram Moolenaara40c5002005-01-09 21:16:21 +00002876gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877{
2878 RECT rct;
2879 POINT mp;
2880
2881 (void)GetWindowRect(s_textArea, &rct);
2882 (void)GetCursorPos((LPPOINT)&mp);
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002883 *x = (int)(mp.x - rct.left);
2884 *y = (int)(mp.y - rct.top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885}
2886
2887/*
2888 * Move mouse pointer to character at (x, y).
2889 */
2890 void
2891gui_mch_setmouse(int x, int y)
2892{
2893 RECT rct;
2894
2895 (void)GetWindowRect(s_textArea, &rct);
2896 (void)SetCursorPos(x + gui.border_offset + rct.left,
2897 y + gui.border_offset + rct.top);
2898}
2899
2900 static void
2901gui_mswin_get_valid_dimensions(
2902 int w,
2903 int h,
2904 int *valid_w,
2905 int *valid_h)
2906{
2907 int base_width, base_height;
2908
2909 base_width = gui_get_base_width()
2910 + GetSystemMetrics(SM_CXFRAME) * 2;
2911 base_height = gui_get_base_height()
2912 + GetSystemMetrics(SM_CYFRAME) * 2
2913 + GetSystemMetrics(SM_CYCAPTION)
2914#ifdef FEAT_MENU
2915 + gui_mswin_get_menu_height(FALSE)
2916#endif
2917 ;
2918 *valid_w = base_width +
2919 ((w - base_width) / gui.char_width) * gui.char_width;
2920 *valid_h = base_height +
2921 ((h - base_height) / gui.char_height) * gui.char_height;
2922}
2923
2924 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925gui_mch_flash(int msec)
2926{
2927 RECT rc;
2928
2929 /*
2930 * Note: InvertRect() excludes right and bottom of rectangle.
2931 */
2932 rc.left = 0;
2933 rc.top = 0;
2934 rc.right = gui.num_cols * gui.char_width;
2935 rc.bottom = gui.num_rows * gui.char_height;
2936 InvertRect(s_hdc, &rc);
2937 gui_mch_flush(); /* make sure it's displayed */
2938
2939 ui_delay((long)msec, TRUE); /* wait for a few msec */
2940
2941 InvertRect(s_hdc, &rc);
2942}
2943
2944/*
2945 * Return flags used for scrolling.
2946 * The SW_INVALIDATE is required when part of the window is covered or
2947 * off-screen. Refer to MS KB Q75236.
2948 */
2949 static int
2950get_scroll_flags(void)
2951{
2952 HWND hwnd;
2953 RECT rcVim, rcOther, rcDest;
2954
2955 GetWindowRect(s_hwnd, &rcVim);
Bram Moolenaar0d406992005-05-22 22:03:39 +00002956
2957 /* Check if the window is partly above or below the screen. We don't care
2958 * about partly left or right of the screen, it is not relevant when
2959 * scrolling up or down. */
2960 if (rcVim.top < 0 || rcVim.bottom > GetSystemMetrics(SM_CYFULLSCREEN))
2961 return SW_INVALIDATE;
2962
2963 /* Check if there is an window (partly) on top of us. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 for (hwnd = s_hwnd; (hwnd = GetWindow(hwnd, GW_HWNDPREV)) != (HWND)0; )
2965 if (IsWindowVisible(hwnd))
2966 {
2967 GetWindowRect(hwnd, &rcOther);
2968 if (IntersectRect(&rcDest, &rcVim, &rcOther))
2969 return SW_INVALIDATE;
2970 }
2971 return 0;
2972}
2973
2974/*
2975 * Delete the given number of lines from the given row, scrolling up any
2976 * text further down within the scroll region.
2977 */
2978 void
2979gui_mch_delete_lines(
2980 int row,
2981 int num_lines)
2982{
2983 RECT rc;
2984
2985 rc.left = FILL_X(gui.scroll_region_left);
2986 rc.right = FILL_X(gui.scroll_region_right + 1);
2987 rc.top = FILL_Y(row);
2988 rc.bottom = FILL_Y(gui.scroll_region_bot + 1);
2989
2990 ScrollWindowEx(s_textArea, 0, -num_lines * gui.char_height,
2991 &rc, &rc, NULL, NULL, get_scroll_flags());
2992
2993 UpdateWindow(s_textArea);
2994 /* This seems to be required to avoid the cursor disappearing when
2995 * scrolling such that the cursor ends up in the top-left character on
2996 * the screen... But why? (Webb) */
2997 /* It's probably fixed by disabling drawing the cursor while scrolling. */
2998 /* gui.cursor_is_valid = FALSE; */
2999
3000 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
3001 gui.scroll_region_left,
3002 gui.scroll_region_bot, gui.scroll_region_right);
3003}
3004
3005/*
3006 * Insert the given number of lines before the given row, scrolling down any
3007 * following text within the scroll region.
3008 */
3009 void
3010gui_mch_insert_lines(
3011 int row,
3012 int num_lines)
3013{
3014 RECT rc;
3015
3016 rc.left = FILL_X(gui.scroll_region_left);
3017 rc.right = FILL_X(gui.scroll_region_right + 1);
3018 rc.top = FILL_Y(row);
3019 rc.bottom = FILL_Y(gui.scroll_region_bot + 1);
3020 /* The SW_INVALIDATE is required when part of the window is covered or
3021 * off-screen. How do we avoid it when it's not needed? */
3022 ScrollWindowEx(s_textArea, 0, num_lines * gui.char_height,
3023 &rc, &rc, NULL, NULL, get_scroll_flags());
3024
3025 UpdateWindow(s_textArea);
3026
3027 gui_clear_block(row, gui.scroll_region_left,
3028 row + num_lines - 1, gui.scroll_region_right);
3029}
3030
3031
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003032/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 void
3034gui_mch_exit(int rc)
3035{
3036 ReleaseDC(s_textArea, s_hdc);
3037 DeleteObject(s_brush);
3038
3039#ifdef FEAT_TEAROFF
3040 /* Unload the tearoff bitmap */
3041 (void)DeleteObject((HGDIOBJ)s_htearbitmap);
3042#endif
3043
3044 /* Destroy our window (if we have one). */
3045 if (s_hwnd != NULL)
3046 {
3047 destroying = TRUE; /* ignore WM_DESTROY message now */
3048 DestroyWindow(s_hwnd);
3049 }
3050
3051#ifdef GLOBAL_IME
3052 global_ime_end();
3053#endif
3054}
3055
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003056 static char_u *
3057logfont2name(LOGFONT lf)
3058{
3059 char *p;
3060 char *res;
3061 char *charset_name;
3062
3063 charset_name = charset_id2name((int)lf.lfCharSet);
3064 res = alloc((unsigned)(strlen(lf.lfFaceName) + 20
3065 + (charset_name == NULL ? 0 : strlen(charset_name) + 2)));
3066 if (res != NULL)
3067 {
3068 p = res;
3069 /* make a normal font string out of the lf thing:*/
3070 sprintf((char *)p, "%s:h%d", lf.lfFaceName, pixels_to_points(
3071 lf.lfHeight < 0 ? -lf.lfHeight : lf.lfHeight, TRUE));
3072 while (*p)
3073 {
3074 if (*p == ' ')
3075 *p = '_';
3076 ++p;
3077 }
3078#ifndef MSWIN16_FASTTEXT
3079 if (lf.lfItalic)
3080 STRCAT(p, ":i");
3081 if (lf.lfWeight >= FW_BOLD)
3082 STRCAT(p, ":b");
3083#endif
3084 if (lf.lfUnderline)
3085 STRCAT(p, ":u");
3086 if (lf.lfStrikeOut)
3087 STRCAT(p, ":s");
3088 if (charset_name != NULL)
3089 {
3090 STRCAT(p, ":c");
3091 STRCAT(p, charset_name);
3092 }
3093 }
3094
3095 return res;
3096}
3097
Bram Moolenaar0f272122013-01-23 18:37:40 +01003098
3099#ifdef FEAT_MBYTE_IME
3100/*
3101 * Set correct LOGFONT to IME. Use 'guifontwide' if available, otherwise use
3102 * 'guifont'
3103 */
3104 static void
Bram Moolenaarfb97f282013-07-09 17:42:46 +02003105update_im_font(void)
Bram Moolenaar0f272122013-01-23 18:37:40 +01003106{
3107 LOGFONT lf_wide;
3108
3109 if (p_guifontwide != NULL && *p_guifontwide != NUL
Bram Moolenaar826763f2013-01-25 19:28:38 +01003110 && gui.wide_font != NOFONT
3111 && GetObject((HFONT)gui.wide_font, sizeof(lf_wide), &lf_wide))
Bram Moolenaar0f272122013-01-23 18:37:40 +01003112 norm_logfont = lf_wide;
3113 else
3114 norm_logfont = sub_logfont;
3115 im_set_font(&norm_logfont);
3116}
3117#endif
3118
3119#ifdef FEAT_MBYTE
3120/*
3121 * Handler of gui.wide_font (p_guifontwide) changed notification.
3122 */
3123 void
3124gui_mch_wide_font_changed()
3125{
Bram Moolenaardb250522013-06-17 22:43:25 +02003126# ifndef MSWIN16_FASTTEXT
3127 LOGFONT lf;
3128# endif
3129
Bram Moolenaar0f272122013-01-23 18:37:40 +01003130# ifdef FEAT_MBYTE_IME
3131 update_im_font();
3132# endif
Bram Moolenaardb250522013-06-17 22:43:25 +02003133
3134# ifndef MSWIN16_FASTTEXT
3135 gui_mch_free_font(gui.wide_ital_font);
3136 gui.wide_ital_font = NOFONT;
3137 gui_mch_free_font(gui.wide_bold_font);
3138 gui.wide_bold_font = NOFONT;
3139 gui_mch_free_font(gui.wide_boldital_font);
3140 gui.wide_boldital_font = NOFONT;
3141
3142 if (gui.wide_font
3143 && GetObject((HFONT)gui.wide_font, sizeof(lf), &lf))
3144 {
3145 if (!lf.lfItalic)
3146 {
3147 lf.lfItalic = TRUE;
3148 gui.wide_ital_font = get_font_handle(&lf);
3149 lf.lfItalic = FALSE;
3150 }
3151 if (lf.lfWeight < FW_BOLD)
3152 {
3153 lf.lfWeight = FW_BOLD;
3154 gui.wide_bold_font = get_font_handle(&lf);
3155 if (!lf.lfItalic)
3156 {
3157 lf.lfItalic = TRUE;
3158 gui.wide_boldital_font = get_font_handle(&lf);
3159 }
3160 }
3161 }
3162# endif
Bram Moolenaar0f272122013-01-23 18:37:40 +01003163}
3164#endif
3165
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003167 * Initialise vim to use the font with the given name.
3168 * Return FAIL if the font could not be loaded, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003170/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 int
3172gui_mch_init_font(char_u *font_name, int fontset)
3173{
3174 LOGFONT lf;
3175 GuiFont font = NOFONT;
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003176 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177
3178 /* Load the font */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003179 if (get_logfont(&lf, font_name, NULL, TRUE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 font = get_font_handle(&lf);
3181 if (font == NOFONT)
3182 return FAIL;
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003183
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 if (font_name == NULL)
3185 font_name = lf.lfFaceName;
3186#if defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME)
3187 norm_logfont = lf;
Bram Moolenaar0f272122013-01-23 18:37:40 +01003188 sub_logfont = lf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189#endif
3190#ifdef FEAT_MBYTE_IME
Bram Moolenaar0f272122013-01-23 18:37:40 +01003191 update_im_font();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192#endif
3193 gui_mch_free_font(gui.norm_font);
3194 gui.norm_font = font;
3195 current_font_height = lf.lfHeight;
3196 GetFontSize(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003198 p = logfont2name(lf);
3199 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003201 hl_set_font_name(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003203 /* When setting 'guifont' to "*" replace it with the actual font name.
3204 * */
3205 if (STRCMP(font_name, "*") == 0 && STRCMP(p_guifont, "*") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003207 vim_free(p_guifont);
3208 p_guifont = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209 }
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003210 else
3211 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 }
3213
3214#ifndef MSWIN16_FASTTEXT
3215 gui_mch_free_font(gui.ital_font);
3216 gui.ital_font = NOFONT;
3217 gui_mch_free_font(gui.bold_font);
3218 gui.bold_font = NOFONT;
3219 gui_mch_free_font(gui.boldital_font);
3220 gui.boldital_font = NOFONT;
3221
3222 if (!lf.lfItalic)
3223 {
3224 lf.lfItalic = TRUE;
3225 gui.ital_font = get_font_handle(&lf);
3226 lf.lfItalic = FALSE;
3227 }
3228 if (lf.lfWeight < FW_BOLD)
3229 {
3230 lf.lfWeight = FW_BOLD;
3231 gui.bold_font = get_font_handle(&lf);
3232 if (!lf.lfItalic)
3233 {
3234 lf.lfItalic = TRUE;
3235 gui.boldital_font = get_font_handle(&lf);
3236 }
3237 }
3238#endif
3239
3240 return OK;
3241}
3242
Bram Moolenaar85f868c2006-11-28 16:16:58 +00003243#ifndef WPF_RESTORETOMAXIMIZED
3244# define WPF_RESTORETOMAXIMIZED 2 /* just in case someone doesn't have it */
3245#endif
3246
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247/*
3248 * Return TRUE if the GUI window is maximized, filling the whole screen.
3249 */
3250 int
3251gui_mch_maximized()
3252{
Bram Moolenaar85f868c2006-11-28 16:16:58 +00003253 WINDOWPLACEMENT wp;
3254
3255 wp.length = sizeof(WINDOWPLACEMENT);
3256 if (GetWindowPlacement(s_hwnd, &wp))
3257 return wp.showCmd == SW_SHOWMAXIMIZED
3258 || (wp.showCmd == SW_SHOWMINIMIZED
3259 && wp.flags == WPF_RESTORETOMAXIMIZED);
3260
3261 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262}
3263
3264/*
3265 * Called when the font changed while the window is maximized. Compute the
3266 * new Rows and Columns. This is like resizing the window.
3267 */
3268 void
3269gui_mch_newfont()
3270{
3271 RECT rect;
3272
3273 GetWindowRect(s_hwnd, &rect);
3274 gui_resize_shell(rect.right - rect.left
3275 - GetSystemMetrics(SM_CXFRAME) * 2,
3276 rect.bottom - rect.top
3277 - GetSystemMetrics(SM_CYFRAME) * 2
3278 - GetSystemMetrics(SM_CYCAPTION)
3279#ifdef FEAT_MENU
3280 - gui_mswin_get_menu_height(FALSE)
3281#endif
3282 );
3283}
3284
3285/*
3286 * Set the window title
3287 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003288/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 void
3290gui_mch_settitle(
3291 char_u *title,
3292 char_u *icon)
3293{
Bram Moolenaar908d53a2006-11-07 18:05:31 +00003294 set_window_title(s_hwnd, (title == NULL ? "VIM" : (char *)title));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295}
3296
3297#ifdef FEAT_MOUSESHAPE
3298/* Table for shape IDCs. Keep in sync with the mshape_names[] table in
3299 * misc2.c! */
3300static LPCSTR mshape_idcs[] =
3301{
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01003302 IDC_ARROW, /* arrow */
3303 MAKEINTRESOURCE(0), /* blank */
3304 IDC_IBEAM, /* beam */
3305 IDC_SIZENS, /* updown */
3306 IDC_SIZENS, /* udsizing */
3307 IDC_SIZEWE, /* leftright */
3308 IDC_SIZEWE, /* lrsizing */
3309 IDC_WAIT, /* busy */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310#ifdef WIN3264
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01003311 IDC_NO, /* no */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312#else
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01003313 IDC_ICON, /* no */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314#endif
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01003315 IDC_ARROW, /* crosshair */
3316 IDC_ARROW, /* hand1 */
3317 IDC_ARROW, /* hand2 */
3318 IDC_ARROW, /* pencil */
3319 IDC_ARROW, /* question */
3320 IDC_ARROW, /* right-arrow */
3321 IDC_UPARROW, /* up-arrow */
3322 IDC_ARROW /* last one */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323};
3324
3325 void
3326mch_set_mouse_shape(int shape)
3327{
3328 LPCSTR idc;
3329
3330 if (shape == MSHAPE_HIDE)
3331 ShowCursor(FALSE);
3332 else
3333 {
3334 if (shape >= MSHAPE_NUMBERED)
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01003335 idc = IDC_ARROW;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 else
3337 idc = mshape_idcs[shape];
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00003338#ifdef SetClassLongPtr
3339 SetClassLongPtr(s_textArea, GCLP_HCURSOR, (__int3264)(LONG_PTR)LoadCursor(NULL, idc));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340#else
3341# ifdef WIN32
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00003342 SetClassLong(s_textArea, GCL_HCURSOR, (long_u)LoadCursor(NULL, idc));
3343# else /* Win16 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 SetClassWord(s_textArea, GCW_HCURSOR, (WORD)LoadCursor(NULL, idc));
3345# endif
3346#endif
3347 if (!p_mh)
3348 {
3349 POINT mp;
3350
3351 /* Set the position to make it redrawn with the new shape. */
3352 (void)GetCursorPos((LPPOINT)&mp);
3353 (void)SetCursorPos(mp.x, mp.y);
3354 ShowCursor(TRUE);
3355 }
3356 }
3357}
3358#endif
3359
3360#ifdef FEAT_BROWSE
3361/*
3362 * The file browser exists in two versions: with "W" uses wide characters,
3363 * without "W" the current codepage. When FEAT_MBYTE is defined and on
3364 * Windows NT/2000/XP the "W" functions are used.
3365 */
3366
3367# if defined(FEAT_MBYTE) && defined(WIN3264)
3368/*
Bram Moolenaar3ef7cdf2012-01-20 17:57:51 +01003369 * Wide version of convert_filter().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 */
3371 static WCHAR *
3372convert_filterW(char_u *s)
3373{
Bram Moolenaar3ef7cdf2012-01-20 17:57:51 +01003374 char_u *tmp;
3375 int len;
Bram Moolenaar90b28002012-01-20 20:54:19 +01003376 WCHAR *res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377
Bram Moolenaar3ef7cdf2012-01-20 17:57:51 +01003378 tmp = convert_filter(s);
3379 if (tmp == NULL)
3380 return NULL;
3381 len = (int)STRLEN(s) + 3;
3382 res = enc_to_utf16(tmp, &len);
3383 vim_free(tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 return res;
3385}
3386
3387/*
3388 * Wide version of gui_mch_browse(). Keep in sync!
3389 */
3390 static char_u *
3391gui_mch_browseW(
3392 int saving,
3393 char_u *title,
3394 char_u *dflt,
3395 char_u *ext,
3396 char_u *initdir,
3397 char_u *filter)
3398{
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003399 /* We always use the wide function. This means enc_to_utf16() must work,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 * otherwise it fails miserably! */
3401 OPENFILENAMEW fileStruct;
3402 WCHAR fileBuf[MAXPATHL];
3403 WCHAR *wp;
3404 int i;
3405 WCHAR *titlep = NULL;
3406 WCHAR *extp = NULL;
3407 WCHAR *initdirp = NULL;
3408 WCHAR *filterp;
3409 char_u *p;
3410
3411 if (dflt == NULL)
3412 fileBuf[0] = NUL;
3413 else
3414 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003415 wp = enc_to_utf16(dflt, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 if (wp == NULL)
3417 fileBuf[0] = NUL;
3418 else
3419 {
3420 for (i = 0; wp[i] != NUL && i < MAXPATHL - 1; ++i)
3421 fileBuf[i] = wp[i];
3422 fileBuf[i] = NUL;
3423 vim_free(wp);
3424 }
3425 }
3426
3427 /* Convert the filter to Windows format. */
3428 filterp = convert_filterW(filter);
3429
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003430 vim_memset(&fileStruct, 0, sizeof(OPENFILENAMEW));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431#ifdef OPENFILENAME_SIZE_VERSION_400
3432 /* be compatible with Windows NT 4.0 */
3433 /* TODO: what to use for OPENFILENAMEW??? */
Bram Moolenaar8c83ac32010-02-17 17:34:43 +01003434 fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435#else
3436 fileStruct.lStructSize = sizeof(fileStruct);
3437#endif
3438
3439 if (title != NULL)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003440 titlep = enc_to_utf16(title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 fileStruct.lpstrTitle = titlep;
3442
3443 if (ext != NULL)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003444 extp = enc_to_utf16(ext, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 fileStruct.lpstrDefExt = extp;
3446
3447 fileStruct.lpstrFile = fileBuf;
3448 fileStruct.nMaxFile = MAXPATHL;
3449 fileStruct.lpstrFilter = filterp;
3450 fileStruct.hwndOwner = s_hwnd; /* main Vim window is owner*/
3451 /* has an initial dir been specified? */
3452 if (initdir != NULL && *initdir != NUL)
3453 {
3454 /* Must have backslashes here, no matter what 'shellslash' says */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003455 initdirp = enc_to_utf16(initdir, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 if (initdirp != NULL)
3457 {
3458 for (wp = initdirp; *wp != NUL; ++wp)
3459 if (*wp == '/')
3460 *wp = '\\';
3461 }
3462 fileStruct.lpstrInitialDir = initdirp;
3463 }
3464
3465 /*
3466 * TODO: Allow selection of multiple files. Needs another arg to this
3467 * function to ask for it, and need to use OFN_ALLOWMULTISELECT below.
3468 * Also, should we use OFN_FILEMUSTEXIST when opening? Vim can edit on
3469 * files that don't exist yet, so I haven't put it in. What about
3470 * OFN_PATHMUSTEXIST?
3471 * Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog.
3472 */
3473 fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY);
3474#ifdef FEAT_SHORTCUT
3475 if (curbuf->b_p_bin)
3476 fileStruct.Flags |= OFN_NODEREFERENCELINKS;
3477#endif
3478 if (saving)
3479 {
3480 if (!GetSaveFileNameW(&fileStruct))
3481 return NULL;
3482 }
3483 else
3484 {
3485 if (!GetOpenFileNameW(&fileStruct))
3486 return NULL;
3487 }
3488
3489 vim_free(filterp);
3490 vim_free(initdirp);
3491 vim_free(titlep);
3492 vim_free(extp);
3493
3494 /* Convert from UCS2 to 'encoding'. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003495 p = utf16_to_enc(fileBuf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 if (p != NULL)
3497 /* when out of memory we get garbage for non-ASCII chars */
3498 STRCPY(fileBuf, p);
3499 vim_free(p);
3500
3501 /* Give focus back to main window (when using MDI). */
3502 SetFocus(s_hwnd);
3503
3504 /* Shorten the file name if possible */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003505 return vim_strsave(shorten_fname1((char_u *)fileBuf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506}
3507# endif /* FEAT_MBYTE */
3508
3509
3510/*
3511 * Convert the string s to the proper format for a filter string by replacing
Bram Moolenaar12806c82008-11-12 12:36:30 +00003512 * the \t and \n delimiters with \0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 * Returns the converted string in allocated memory.
3514 *
3515 * Keep in sync with convert_filterW() above!
3516 */
3517 static char_u *
3518convert_filter(char_u *s)
3519{
3520 char_u *res;
3521 unsigned s_len = (unsigned)STRLEN(s);
3522 unsigned i;
3523
3524 res = alloc(s_len + 3);
3525 if (res != NULL)
3526 {
3527 for (i = 0; i < s_len; ++i)
3528 if (s[i] == '\t' || s[i] == '\n')
3529 res[i] = '\0';
3530 else
3531 res[i] = s[i];
3532 res[s_len] = NUL;
3533 /* Add two extra NULs to make sure it's properly terminated. */
3534 res[s_len + 1] = NUL;
3535 res[s_len + 2] = NUL;
3536 }
3537 return res;
3538}
3539
3540/*
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003541 * Select a directory.
3542 */
3543 char_u *
3544gui_mch_browsedir(char_u *title, char_u *initdir)
3545{
3546 /* We fake this: Use a filter that doesn't select anything and a default
3547 * file name that won't be used. */
3548 return gui_mch_browse(0, title, (char_u *)_("Not Used"), NULL,
3549 initdir, (char_u *)_("Directory\t*.nothing\n"));
3550}
3551
3552/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 * Pop open a file browser and return the file selected, in allocated memory,
3554 * or NULL if Cancel is hit.
3555 * saving - TRUE if the file will be saved to, FALSE if it will be opened.
3556 * title - Title message for the file browser dialog.
3557 * dflt - Default name of file.
3558 * ext - Default extension to be added to files without extensions.
3559 * initdir - directory in which to open the browser (NULL = current dir)
3560 * filter - Filter for matched files to choose from.
3561 *
3562 * Keep in sync with gui_mch_browseW() above!
3563 */
3564 char_u *
3565gui_mch_browse(
3566 int saving,
3567 char_u *title,
3568 char_u *dflt,
3569 char_u *ext,
3570 char_u *initdir,
3571 char_u *filter)
3572{
3573 OPENFILENAME fileStruct;
3574 char_u fileBuf[MAXPATHL];
3575 char_u *initdirp = NULL;
3576 char_u *filterp;
3577 char_u *p;
3578
3579# if defined(FEAT_MBYTE) && defined(WIN3264)
3580 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT)
3581 return gui_mch_browseW(saving, title, dflt, ext, initdir, filter);
3582# endif
3583
3584 if (dflt == NULL)
3585 fileBuf[0] = NUL;
3586 else
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003587 vim_strncpy(fileBuf, dflt, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588
3589 /* Convert the filter to Windows format. */
3590 filterp = convert_filter(filter);
3591
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003592 vim_memset(&fileStruct, 0, sizeof(OPENFILENAME));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593#ifdef OPENFILENAME_SIZE_VERSION_400
3594 /* be compatible with Windows NT 4.0 */
Bram Moolenaar8c83ac32010-02-17 17:34:43 +01003595 fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596#else
3597 fileStruct.lStructSize = sizeof(fileStruct);
3598#endif
3599
3600 fileStruct.lpstrTitle = title;
3601 fileStruct.lpstrDefExt = ext;
3602
3603 fileStruct.lpstrFile = fileBuf;
3604 fileStruct.nMaxFile = MAXPATHL;
3605 fileStruct.lpstrFilter = filterp;
3606 fileStruct.hwndOwner = s_hwnd; /* main Vim window is owner*/
3607 /* has an initial dir been specified? */
3608 if (initdir != NULL && *initdir != NUL)
3609 {
3610 /* Must have backslashes here, no matter what 'shellslash' says */
3611 initdirp = vim_strsave(initdir);
3612 if (initdirp != NULL)
3613 for (p = initdirp; *p != NUL; ++p)
3614 if (*p == '/')
3615 *p = '\\';
3616 fileStruct.lpstrInitialDir = initdirp;
3617 }
3618
3619 /*
3620 * TODO: Allow selection of multiple files. Needs another arg to this
3621 * function to ask for it, and need to use OFN_ALLOWMULTISELECT below.
3622 * Also, should we use OFN_FILEMUSTEXIST when opening? Vim can edit on
3623 * files that don't exist yet, so I haven't put it in. What about
3624 * OFN_PATHMUSTEXIST?
3625 * Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog.
3626 */
3627 fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY);
3628#ifdef FEAT_SHORTCUT
3629 if (curbuf->b_p_bin)
3630 fileStruct.Flags |= OFN_NODEREFERENCELINKS;
3631#endif
3632 if (saving)
3633 {
3634 if (!GetSaveFileName(&fileStruct))
3635 return NULL;
3636 }
3637 else
3638 {
3639 if (!GetOpenFileName(&fileStruct))
3640 return NULL;
3641 }
3642
3643 vim_free(filterp);
3644 vim_free(initdirp);
3645
3646 /* Give focus back to main window (when using MDI). */
3647 SetFocus(s_hwnd);
3648
3649 /* Shorten the file name if possible */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003650 return vim_strsave(shorten_fname1((char_u *)fileBuf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651}
3652#endif /* FEAT_BROWSE */
3653
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003654/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 static void
3656_OnDropFiles(
3657 HWND hwnd,
3658 HDROP hDrop)
3659{
3660#ifdef FEAT_WINDOWS
3661#ifdef WIN3264
3662# define BUFPATHLEN _MAX_PATH
3663# define DRAGQVAL 0xFFFFFFFF
3664#else
3665# define BUFPATHLEN MAXPATHL
3666# define DRAGQVAL 0xFFFF
3667#endif
3668#ifdef FEAT_MBYTE
3669 WCHAR wszFile[BUFPATHLEN];
3670#endif
3671 char szFile[BUFPATHLEN];
3672 UINT cFiles = DragQueryFile(hDrop, DRAGQVAL, NULL, 0);
3673 UINT i;
3674 char_u **fnames;
3675 POINT pt;
3676 int_u modifiers = 0;
3677
3678 /* TRACE("_OnDropFiles: %d files dropped\n", cFiles); */
3679
3680 /* Obtain dropped position */
3681 DragQueryPoint(hDrop, &pt);
3682 MapWindowPoints(s_hwnd, s_textArea, &pt, 1);
3683
3684# ifdef FEAT_VISUAL
3685 reset_VIsual();
3686# endif
3687
3688 fnames = (char_u **)alloc(cFiles * sizeof(char_u *));
3689
3690 if (fnames != NULL)
3691 for (i = 0; i < cFiles; ++i)
3692 {
3693#ifdef FEAT_MBYTE
3694 if (DragQueryFileW(hDrop, i, wszFile, BUFPATHLEN) > 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003695 fnames[i] = utf16_to_enc(wszFile, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 else
3697#endif
3698 {
3699 DragQueryFile(hDrop, i, szFile, BUFPATHLEN);
3700 fnames[i] = vim_strsave(szFile);
3701 }
3702 }
3703
3704 DragFinish(hDrop);
3705
3706 if (fnames != NULL)
3707 {
3708 if ((GetKeyState(VK_SHIFT) & 0x8000) != 0)
3709 modifiers |= MOUSE_SHIFT;
3710 if ((GetKeyState(VK_CONTROL) & 0x8000) != 0)
3711 modifiers |= MOUSE_CTRL;
3712 if ((GetKeyState(VK_MENU) & 0x8000) != 0)
3713 modifiers |= MOUSE_ALT;
3714
3715 gui_handle_drop(pt.x, pt.y, modifiers, fnames, cFiles);
3716
3717 s_need_activate = TRUE;
3718 }
3719#endif
3720}
3721
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003722/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 static int
3724_OnScroll(
3725 HWND hwnd,
3726 HWND hwndCtl,
3727 UINT code,
3728 int pos)
3729{
3730 static UINT prev_code = 0; /* code of previous call */
3731 scrollbar_T *sb, *sb_info;
3732 long val;
3733 int dragging = FALSE;
3734 int dont_scroll_save = dont_scroll;
3735#ifndef WIN3264
3736 int nPos;
3737#else
3738 SCROLLINFO si;
3739
3740 si.cbSize = sizeof(si);
3741 si.fMask = SIF_POS;
3742#endif
3743
3744 sb = gui_mswin_find_scrollbar(hwndCtl);
3745 if (sb == NULL)
3746 return 0;
3747
3748 if (sb->wp != NULL) /* Left or right scrollbar */
3749 {
3750 /*
3751 * Careful: need to get scrollbar info out of first (left) scrollbar
3752 * for window, but keep real scrollbar too because we must pass it to
3753 * gui_drag_scrollbar().
3754 */
3755 sb_info = &sb->wp->w_scrollbars[0];
3756 }
3757 else /* Bottom scrollbar */
3758 sb_info = sb;
3759 val = sb_info->value;
3760
3761 switch (code)
3762 {
3763 case SB_THUMBTRACK:
3764 val = pos;
3765 dragging = TRUE;
3766 if (sb->scroll_shift > 0)
3767 val <<= sb->scroll_shift;
3768 break;
3769 case SB_LINEDOWN:
3770 val++;
3771 break;
3772 case SB_LINEUP:
3773 val--;
3774 break;
3775 case SB_PAGEDOWN:
3776 val += (sb_info->size > 2 ? sb_info->size - 2 : 1);
3777 break;
3778 case SB_PAGEUP:
3779 val -= (sb_info->size > 2 ? sb_info->size - 2 : 1);
3780 break;
3781 case SB_TOP:
3782 val = 0;
3783 break;
3784 case SB_BOTTOM:
3785 val = sb_info->max;
3786 break;
3787 case SB_ENDSCROLL:
3788 if (prev_code == SB_THUMBTRACK)
3789 {
3790 /*
3791 * "pos" only gives us 16-bit data. In case of large file,
3792 * use GetScrollPos() which returns 32-bit. Unfortunately it
3793 * is not valid while the scrollbar is being dragged.
3794 */
3795 val = GetScrollPos(hwndCtl, SB_CTL);
3796 if (sb->scroll_shift > 0)
3797 val <<= sb->scroll_shift;
3798 }
3799 break;
3800
3801 default:
3802 /* TRACE("Unknown scrollbar event %d\n", code); */
3803 return 0;
3804 }
3805 prev_code = code;
3806
3807#ifdef WIN3264
3808 si.nPos = (sb->scroll_shift > 0) ? val >> sb->scroll_shift : val;
3809 SetScrollInfo(hwndCtl, SB_CTL, &si, TRUE);
3810#else
3811 nPos = (sb->scroll_shift > 0) ? val >> sb->scroll_shift : val;
3812 SetScrollPos(hwndCtl, SB_CTL, nPos, TRUE);
3813#endif
3814
3815 /*
3816 * When moving a vertical scrollbar, move the other vertical scrollbar too.
3817 */
3818 if (sb->wp != NULL)
3819 {
3820 scrollbar_T *sba = sb->wp->w_scrollbars;
3821 HWND id = sba[ (sb == sba + SBAR_LEFT) ? SBAR_RIGHT : SBAR_LEFT].id;
3822
3823#ifdef WIN3264
3824 SetScrollInfo(id, SB_CTL, &si, TRUE);
3825#else
3826 SetScrollPos(id, SB_CTL, nPos, TRUE);
3827#endif
3828 }
3829
3830 /* Don't let us be interrupted here by another message. */
3831 s_busy_processing = TRUE;
3832
3833 /* When "allow_scrollbar" is FALSE still need to remember the new
3834 * position, but don't actually scroll by setting "dont_scroll". */
3835 dont_scroll = !allow_scrollbar;
3836
3837 gui_drag_scrollbar(sb, val, dragging);
3838
3839 s_busy_processing = FALSE;
3840 dont_scroll = dont_scroll_save;
3841
3842 return 0;
3843}
3844
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003845
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846/*
3847 * Get command line arguments.
3848 * Use "prog" as the name of the program and "cmdline" as the arguments.
3849 * Copy the arguments to allocated memory.
3850 * Return the number of arguments (including program name).
Bram Moolenaar12806c82008-11-12 12:36:30 +00003851 * Return pointers to the arguments in "argvp". Memory is allocated with
3852 * malloc(), use free() instead of vim_free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 * Return pointer to buffer in "tofree".
3854 * Returns zero when out of memory.
3855 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003856/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 int
3858get_cmd_args(char *prog, char *cmdline, char ***argvp, char **tofree)
3859{
3860 int i;
3861 char *p;
3862 char *progp;
3863 char *pnew = NULL;
3864 char *newcmdline;
3865 int inquote;
3866 int argc;
3867 char **argv = NULL;
3868 int round;
3869
Bram Moolenaar12806c82008-11-12 12:36:30 +00003870 *tofree = NULL;
3871
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003872#ifdef FEAT_MBYTE
3873 /* Try using the Unicode version first, it takes care of conversion when
3874 * 'encoding' is changed. */
3875 argc = get_cmd_argsW(&argv);
3876 if (argc != 0)
3877 goto done;
3878#endif
3879
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 /* Handle the program name. Remove the ".exe" extension, and find the 1st
3881 * non-space. */
3882 p = strrchr(prog, '.');
3883 if (p != NULL)
3884 *p = NUL;
3885 for (progp = prog; *progp == ' '; ++progp)
3886 ;
3887
3888 /* The command line is copied to allocated memory, so that we can change
3889 * it. Add the size of the string, the separating NUL and a terminating
3890 * NUL. */
3891 newcmdline = malloc(STRLEN(cmdline) + STRLEN(progp) + 2);
3892 if (newcmdline == NULL)
3893 return 0;
3894
3895 /*
3896 * First round: count the number of arguments ("pnew" == NULL).
3897 * Second round: produce the arguments.
3898 */
3899 for (round = 1; round <= 2; ++round)
3900 {
3901 /* First argument is the program name. */
3902 if (pnew != NULL)
3903 {
3904 argv[0] = pnew;
3905 strcpy(pnew, progp);
3906 pnew += strlen(pnew);
3907 *pnew++ = NUL;
3908 }
3909
3910 /*
3911 * Isolate each argument and put it in argv[].
3912 */
3913 p = cmdline;
3914 argc = 1;
3915 while (*p != NUL)
3916 {
3917 inquote = FALSE;
3918 if (pnew != NULL)
3919 argv[argc] = pnew;
3920 ++argc;
3921 while (*p != NUL && (inquote || (*p != ' ' && *p != '\t')))
3922 {
3923 /* Backslashes are only special when followed by a double
3924 * quote. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003925 i = (int)strspn(p, "\\");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 if (p[i] == '"')
3927 {
3928 /* Halve the number of backslashes. */
3929 if (i > 1 && pnew != NULL)
3930 {
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003931 vim_memset(pnew, '\\', i / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 pnew += i / 2;
3933 }
3934
3935 /* Even nr of backslashes toggles quoting, uneven copies
3936 * the double quote. */
3937 if ((i & 1) == 0)
3938 inquote = !inquote;
3939 else if (pnew != NULL)
3940 *pnew++ = '"';
3941 p += i + 1;
3942 }
3943 else if (i > 0)
3944 {
3945 /* Copy span of backslashes unmodified. */
3946 if (pnew != NULL)
3947 {
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003948 vim_memset(pnew, '\\', i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 pnew += i;
3950 }
3951 p += i;
3952 }
3953 else
3954 {
3955 if (pnew != NULL)
3956 *pnew++ = *p;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003957#ifdef FEAT_MBYTE
3958 /* Can't use mb_* functions, because 'encoding' is not
3959 * initialized yet here. */
3960 if (IsDBCSLeadByte(*p))
3961 {
3962 ++p;
3963 if (pnew != NULL)
3964 *pnew++ = *p;
3965 }
3966#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 ++p;
3968 }
3969 }
3970
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003971 if (pnew != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 *pnew++ = NUL;
3973 while (*p == ' ' || *p == '\t')
3974 ++p; /* advance until a non-space */
3975 }
3976
3977 if (round == 1)
3978 {
3979 argv = (char **)malloc((argc + 1) * sizeof(char *));
3980 if (argv == NULL )
Bram Moolenaare6b165e2005-06-30 21:56:01 +00003981 {
Bram Moolenaar12806c82008-11-12 12:36:30 +00003982 free(newcmdline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 return 0; /* malloc error */
Bram Moolenaare6b165e2005-06-30 21:56:01 +00003984 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 pnew = newcmdline;
Bram Moolenaar12806c82008-11-12 12:36:30 +00003986 *tofree = newcmdline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 }
3988 }
3989
Bram Moolenaar8765a4a2010-07-27 22:41:43 +02003990#ifdef FEAT_MBYTE
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003991done:
Bram Moolenaar8765a4a2010-07-27 22:41:43 +02003992#endif
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003993 argv[argc] = NULL; /* NULL-terminated list */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 *argvp = argv;
3995 return argc;
3996}