blob: c4a57e675a24cb61d01454f2cfa59af18ccfee75 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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 * Windows GUI.
12 *
Bram Moolenaarcf7164a2016-02-20 13:55:06 +010013 * GUI support for Microsoft Windows, aka Win32. Also for Win64.
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * George V. Reilly <george@reilly.org> wrote the original Win32 GUI.
16 * Robert Webb reworked it to use the existing GUI stuff and added menu,
17 * scrollbars, etc.
18 *
19 * Note: Clipboard stuff, for cutting and pasting text to other windows, is in
Bram Moolenaarcde88542015-08-11 19:14:00 +020020 * winclip.c. (It can also be done from the terminal version).
Bram Moolenaar071d4272004-06-13 20:20:40 +000021 *
22 * TODO: Some of the function signatures ought to be updated for Win64;
23 * e.g., replace LONG with LONG_PTR, etc.
24 */
25
Bram Moolenaar78e17622007-08-30 10:26:19 +000026#include "vim.h"
27
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +020028#if defined(FEAT_DIRECTX)
29# include "gui_dwrite.h"
30#endif
31
Bram Moolenaarb8e0bdb2014-11-12 16:10:48 +010032#if defined(FEAT_DIRECTX)
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +020033static DWriteContext *s_dwc = NULL;
34static int s_directx_enabled = 0;
35static int s_directx_load_attempted = 0;
36# define IS_ENABLE_DIRECTX() (s_directx_enabled && s_dwc != NULL)
Bram Moolenaarb8e0bdb2014-11-12 16:10:48 +010037#endif
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +020038
Bram Moolenaar065bbac2016-02-20 13:08:46 +010039#ifdef FEAT_MENU
40static int gui_mswin_get_menu_height(int fix_window);
41#endif
42
Bram Moolenaarb8e0bdb2014-11-12 16:10:48 +010043#if defined(FEAT_DIRECTX) || defined(PROTO)
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +020044 int
45directx_enabled(void)
46{
47 if (s_dwc != NULL)
48 return 1;
49 else if (s_directx_load_attempted)
50 return 0;
51 /* load DirectX */
52 DWrite_Init();
53 s_directx_load_attempted = 1;
54 s_dwc = DWriteContext_Open();
55 return s_dwc != NULL ? 1 : 0;
56}
57#endif
58
59#if defined(FEAT_RENDER_OPTIONS) || defined(PROTO)
60 int
61gui_mch_set_rendering_options(char_u *s)
62{
63#ifdef FEAT_DIRECTX
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +020064 char_u *p, *q;
65
66 int dx_enable = 0;
67 int dx_flags = 0;
68 float dx_gamma = 0.0f;
69 float dx_contrast = 0.0f;
70 float dx_level = 0.0f;
71 int dx_geom = 0;
72 int dx_renmode = 0;
73 int dx_taamode = 0;
74
75 /* parse string as rendering options. */
76 for (p = s; p != NULL && *p != NUL; )
77 {
78 char_u item[256];
79 char_u name[128];
80 char_u value[128];
81
Bram Moolenaarcde88542015-08-11 19:14:00 +020082 copy_option_part(&p, item, sizeof(item), ",");
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +020083 if (p == NULL)
84 break;
85 q = &item[0];
86 copy_option_part(&q, name, sizeof(name), ":");
87 if (q == NULL)
88 return FAIL;
89 copy_option_part(&q, value, sizeof(value), ":");
90
91 if (STRCMP(name, "type") == 0)
92 {
93 if (STRCMP(value, "directx") == 0)
94 dx_enable = 1;
95 else
96 return FAIL;
97 }
98 else if (STRCMP(name, "gamma") == 0)
99 {
100 dx_flags |= 1 << 0;
Bram Moolenaar7f0608f2016-02-18 20:46:39 +0100101 dx_gamma = (float)atof((char *)value);
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +0200102 }
103 else if (STRCMP(name, "contrast") == 0)
104 {
105 dx_flags |= 1 << 1;
Bram Moolenaar7f0608f2016-02-18 20:46:39 +0100106 dx_contrast = (float)atof((char *)value);
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +0200107 }
108 else if (STRCMP(name, "level") == 0)
109 {
110 dx_flags |= 1 << 2;
Bram Moolenaar7f0608f2016-02-18 20:46:39 +0100111 dx_level = (float)atof((char *)value);
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +0200112 }
113 else if (STRCMP(name, "geom") == 0)
114 {
115 dx_flags |= 1 << 3;
Bram Moolenaar7f0608f2016-02-18 20:46:39 +0100116 dx_geom = atoi((char *)value);
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +0200117 if (dx_geom < 0 || dx_geom > 2)
118 return FAIL;
119 }
120 else if (STRCMP(name, "renmode") == 0)
121 {
122 dx_flags |= 1 << 4;
Bram Moolenaar7f0608f2016-02-18 20:46:39 +0100123 dx_renmode = atoi((char *)value);
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +0200124 if (dx_renmode < 0 || dx_renmode > 6)
125 return FAIL;
126 }
127 else if (STRCMP(name, "taamode") == 0)
128 {
129 dx_flags |= 1 << 5;
Bram Moolenaar7f0608f2016-02-18 20:46:39 +0100130 dx_taamode = atoi((char *)value);
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +0200131 if (dx_taamode < 0 || dx_taamode > 3)
132 return FAIL;
133 }
134 else
135 return FAIL;
136 }
137
138 /* Enable DirectX/DirectWrite */
139 if (dx_enable)
140 {
141 if (!directx_enabled())
142 return FAIL;
143 DWriteContext_SetRenderingParams(s_dwc, NULL);
144 if (dx_flags)
145 {
146 DWriteRenderingParams param;
147 DWriteContext_GetRenderingParams(s_dwc, &param);
148 if (dx_flags & (1 << 0))
149 param.gamma = dx_gamma;
150 if (dx_flags & (1 << 1))
151 param.enhancedContrast = dx_contrast;
152 if (dx_flags & (1 << 2))
153 param.clearTypeLevel = dx_level;
154 if (dx_flags & (1 << 3))
155 param.pixelGeometry = dx_geom;
156 if (dx_flags & (1 << 4))
157 param.renderingMode = dx_renmode;
158 if (dx_flags & (1 << 5))
159 param.textAntialiasMode = dx_taamode;
160 DWriteContext_SetRenderingParams(s_dwc, &param);
161 }
162 }
163 s_directx_enabled = dx_enable;
164
165 return OK;
166#else
167 return FAIL;
168#endif
169}
170#endif
171
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172/*
173 * These are new in Windows ME/XP, only defined in recent compilers.
174 */
175#ifndef HANDLE_WM_XBUTTONUP
176# define HANDLE_WM_XBUTTONUP(hwnd, wParam, lParam, fn) \
177 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
178#endif
179#ifndef HANDLE_WM_XBUTTONDOWN
180# define HANDLE_WM_XBUTTONDOWN(hwnd, wParam, lParam, fn) \
181 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
182#endif
183#ifndef HANDLE_WM_XBUTTONDBLCLK
184# define HANDLE_WM_XBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
185 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
186#endif
187
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100188
189#include "version.h" /* used by dialog box routine for default title */
190#ifdef DEBUG
191# include <tchar.h>
192#endif
193
194/* cproto fails on missing include files */
195#ifndef PROTO
196
197#ifndef __MINGW32__
198# include <shellapi.h>
199#endif
200#if defined(FEAT_TOOLBAR) || defined(FEAT_BEVAL) || defined(FEAT_GUI_TABLINE)
201# include <commctrl.h>
202#endif
203#include <windowsx.h>
204
205#ifdef GLOBAL_IME
206# include "glbl_ime.h"
207#endif
208
209#endif /* PROTO */
210
211#ifdef FEAT_MENU
212# define MENUHINTS /* show menu hints in command line */
213#endif
214
215/* Some parameters for dialog boxes. All in pixels. */
216#define DLG_PADDING_X 10
217#define DLG_PADDING_Y 10
218#define DLG_OLD_STYLE_PADDING_X 5
219#define DLG_OLD_STYLE_PADDING_Y 5
220#define DLG_VERT_PADDING_X 4 /* For vertical buttons */
221#define DLG_VERT_PADDING_Y 4
222#define DLG_ICON_WIDTH 34
223#define DLG_ICON_HEIGHT 34
224#define DLG_MIN_WIDTH 150
225#define DLG_FONT_NAME "MS Sans Serif"
226#define DLG_FONT_POINT_SIZE 8
227#define DLG_MIN_MAX_WIDTH 400
228#define DLG_MIN_MAX_HEIGHT 400
229
230#define DLG_NONBUTTON_CONTROL 5000 /* First ID of non-button controls */
231
232#ifndef WM_XBUTTONDOWN /* For Win2K / winME ONLY */
233# define WM_XBUTTONDOWN 0x020B
234# define WM_XBUTTONUP 0x020C
235# define WM_XBUTTONDBLCLK 0x020D
236# define MK_XBUTTON1 0x0020
237# define MK_XBUTTON2 0x0040
238#endif
239
240#ifdef PROTO
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241/*
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100242 * Define a few things for generating prototypes. This is just to avoid
243 * syntax errors, the defines do not need to be correct.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244 */
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100245# define APIENTRY
246# define CALLBACK
247# define CONST
248# define FAR
249# define NEAR
Bram Moolenaara6b7a082016-08-10 20:53:05 +0200250# undef _cdecl
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100251# define _cdecl
252typedef int BOOL;
253typedef int BYTE;
254typedef int DWORD;
255typedef int WCHAR;
256typedef int ENUMLOGFONT;
257typedef int FINDREPLACE;
258typedef int HANDLE;
259typedef int HBITMAP;
260typedef int HBRUSH;
261typedef int HDROP;
262typedef int INT;
263typedef int LOGFONT[];
264typedef int LPARAM;
265typedef int LPCREATESTRUCT;
266typedef int LPCSTR;
267typedef int LPCTSTR;
268typedef int LPRECT;
269typedef int LPSTR;
270typedef int LPWINDOWPOS;
271typedef int LPWORD;
272typedef int LRESULT;
273typedef int HRESULT;
274# undef MSG
275typedef int MSG;
276typedef int NEWTEXTMETRIC;
277typedef int OSVERSIONINFO;
278typedef int PWORD;
279typedef int RECT;
280typedef int UINT;
281typedef int WORD;
282typedef int WPARAM;
283typedef int POINT;
284typedef void *HINSTANCE;
285typedef void *HMENU;
286typedef void *HWND;
287typedef void *HDC;
288typedef void VOID;
289typedef int LPNMHDR;
290typedef int LONG;
291typedef int WNDPROC;
Bram Moolenaara6b7a082016-08-10 20:53:05 +0200292typedef int UINT_PTR;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100293#endif
294
295#ifndef GET_X_LPARAM
296# define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp))
297#endif
298
299static void _OnPaint( HWND hwnd);
300static void clear_rect(RECT *rcp);
301
302static WORD s_dlgfntheight; /* height of the dialog font */
303static WORD s_dlgfntwidth; /* width of the dialog font */
304
305#ifdef FEAT_MENU
306static HMENU s_menuBar = NULL;
307#endif
308#ifdef FEAT_TEAROFF
309static void rebuild_tearoff(vimmenu_T *menu);
310static HBITMAP s_htearbitmap; /* bitmap used to indicate tearoff */
311#endif
312
313/* Flag that is set while processing a message that must not be interrupted by
314 * processing another message. */
315static int s_busy_processing = FALSE;
316
317static int destroying = FALSE; /* call DestroyWindow() ourselves */
318
319#ifdef MSWIN_FIND_REPLACE
320static UINT s_findrep_msg = 0; /* set in gui_w[16/32].c */
321static FINDREPLACE s_findrep_struct;
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200322# ifdef FEAT_MBYTE
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100323static FINDREPLACEW s_findrep_struct_w;
324# endif
325static HWND s_findrep_hwnd = NULL;
326static int s_findrep_is_find; /* TRUE for find dialog, FALSE
327 for find/replace dialog */
328#endif
329
330static HINSTANCE s_hinst = NULL;
Bram Moolenaar85b11762016-02-27 18:13:23 +0100331#if !defined(FEAT_GUI)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100332static
333#endif
334HWND s_hwnd = NULL;
335static HDC s_hdc = NULL;
336static HBRUSH s_brush = NULL;
337
338#ifdef FEAT_TOOLBAR
339static HWND s_toolbarhwnd = NULL;
340static WNDPROC s_toolbar_wndproc = NULL;
341#endif
342
343#ifdef FEAT_GUI_TABLINE
344static HWND s_tabhwnd = NULL;
345static WNDPROC s_tabline_wndproc = NULL;
346static int showing_tabline = 0;
347#endif
348
349static WPARAM s_wParam = 0;
350static LPARAM s_lParam = 0;
351
352static HWND s_textArea = NULL;
353static UINT s_uMsg = 0;
354
355static char_u *s_textfield; /* Used by dialogs to pass back strings */
356
357static int s_need_activate = FALSE;
358
359/* This variable is set when waiting for an event, which is the only moment
360 * scrollbar dragging can be done directly. It's not allowed while commands
361 * are executed, because it may move the cursor and that may cause unexpected
362 * problems (e.g., while ":s" is working).
363 */
364static int allow_scrollbar = FALSE;
365
366#ifdef GLOBAL_IME
367# define MyTranslateMessage(x) global_ime_TranslateMessage(x)
368#else
369# define MyTranslateMessage(x) TranslateMessage(x)
370#endif
371
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200372#if defined(FEAT_MBYTE) || defined(GLOBAL_IME)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100373 /* use of WindowProc depends on wide_WindowProc */
374# define MyWindowProc vim_WindowProc
375#else
376 /* use ordinary WindowProc */
377# define MyWindowProc DefWindowProc
378#endif
379
380extern int current_font_height; /* this is in os_mswin.c */
381
382static struct
383{
384 UINT key_sym;
385 char_u vim_code0;
386 char_u vim_code1;
387} special_keys[] =
388{
389 {VK_UP, 'k', 'u'},
390 {VK_DOWN, 'k', 'd'},
391 {VK_LEFT, 'k', 'l'},
392 {VK_RIGHT, 'k', 'r'},
393
394 {VK_F1, 'k', '1'},
395 {VK_F2, 'k', '2'},
396 {VK_F3, 'k', '3'},
397 {VK_F4, 'k', '4'},
398 {VK_F5, 'k', '5'},
399 {VK_F6, 'k', '6'},
400 {VK_F7, 'k', '7'},
401 {VK_F8, 'k', '8'},
402 {VK_F9, 'k', '9'},
403 {VK_F10, 'k', ';'},
404
405 {VK_F11, 'F', '1'},
406 {VK_F12, 'F', '2'},
407 {VK_F13, 'F', '3'},
408 {VK_F14, 'F', '4'},
409 {VK_F15, 'F', '5'},
410 {VK_F16, 'F', '6'},
411 {VK_F17, 'F', '7'},
412 {VK_F18, 'F', '8'},
413 {VK_F19, 'F', '9'},
414 {VK_F20, 'F', 'A'},
415
416 {VK_F21, 'F', 'B'},
417#ifdef FEAT_NETBEANS_INTG
418 {VK_PAUSE, 'F', 'B'}, /* Pause == F21 (see gui_gtk_x11.c) */
419#endif
420 {VK_F22, 'F', 'C'},
421 {VK_F23, 'F', 'D'},
422 {VK_F24, 'F', 'E'}, /* winuser.h defines up to F24 */
423
424 {VK_HELP, '%', '1'},
425 {VK_BACK, 'k', 'b'},
426 {VK_INSERT, 'k', 'I'},
427 {VK_DELETE, 'k', 'D'},
428 {VK_HOME, 'k', 'h'},
429 {VK_END, '@', '7'},
430 {VK_PRIOR, 'k', 'P'},
431 {VK_NEXT, 'k', 'N'},
432 {VK_PRINT, '%', '9'},
433 {VK_ADD, 'K', '6'},
434 {VK_SUBTRACT, 'K', '7'},
435 {VK_DIVIDE, 'K', '8'},
436 {VK_MULTIPLY, 'K', '9'},
437 {VK_SEPARATOR, 'K', 'A'}, /* Keypad Enter */
438 {VK_DECIMAL, 'K', 'B'},
439
440 {VK_NUMPAD0, 'K', 'C'},
441 {VK_NUMPAD1, 'K', 'D'},
442 {VK_NUMPAD2, 'K', 'E'},
443 {VK_NUMPAD3, 'K', 'F'},
444 {VK_NUMPAD4, 'K', 'G'},
445 {VK_NUMPAD5, 'K', 'H'},
446 {VK_NUMPAD6, 'K', 'I'},
447 {VK_NUMPAD7, 'K', 'J'},
448 {VK_NUMPAD8, 'K', 'K'},
449 {VK_NUMPAD9, 'K', 'L'},
450
451 /* Keys that we want to be able to use any modifier with: */
452 {VK_SPACE, ' ', NUL},
453 {VK_TAB, TAB, NUL},
454 {VK_ESCAPE, ESC, NUL},
455 {NL, NL, NUL},
456 {CAR, CAR, NUL},
457
458 /* End of list marker: */
459 {0, 0, 0}
460};
461
462/* Local variables */
463static int s_button_pending = -1;
464
465/* s_getting_focus is set when we got focus but didn't see mouse-up event yet,
466 * so don't reset s_button_pending. */
467static int s_getting_focus = FALSE;
468
469static int s_x_pending;
470static int s_y_pending;
471static UINT s_kFlags_pending;
472static UINT s_wait_timer = 0; /* Timer for get char from user */
473static int s_timed_out = FALSE;
474static int dead_key = 0; /* 0: no dead key, 1: dead key pressed */
475
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100476#ifdef FEAT_BEVAL
477/* balloon-eval WM_NOTIFY_HANDLER */
478static void Handle_WM_Notify(HWND hwnd, LPNMHDR pnmh);
479static void TrackUserActivity(UINT uMsg);
480#endif
481
482/*
483 * For control IME.
484 *
485 * These LOGFONT used for IME.
486 */
487#ifdef FEAT_MBYTE
488# ifdef USE_IM_CONTROL
489/* holds LOGFONT for 'guifontwide' if available, otherwise 'guifont' */
490static LOGFONT norm_logfont;
491/* holds LOGFONT for 'guifont' always. */
492static LOGFONT sub_logfont;
493# endif
494#endif
495
496#ifdef FEAT_MBYTE_IME
497static LRESULT _OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData);
498#endif
499
500#if defined(FEAT_BROWSE)
501static char_u *convert_filter(char_u *s);
502#endif
503
504#ifdef DEBUG_PRINT_ERROR
505/*
506 * Print out the last Windows error message
507 */
508 static void
509print_windows_error(void)
510{
511 LPVOID lpMsgBuf;
512
513 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
514 NULL, GetLastError(),
515 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
516 (LPTSTR) &lpMsgBuf, 0, NULL);
517 TRACE1("Error: %s\n", lpMsgBuf);
518 LocalFree(lpMsgBuf);
519}
520#endif
521
522/*
523 * Cursor blink functions.
524 *
525 * This is a simple state machine:
526 * BLINK_NONE not blinking at all
527 * BLINK_OFF blinking, cursor is not shown
528 * BLINK_ON blinking, cursor is shown
529 */
530
531#define BLINK_NONE 0
532#define BLINK_OFF 1
533#define BLINK_ON 2
534
535static int blink_state = BLINK_NONE;
536static long_u blink_waittime = 700;
537static long_u blink_ontime = 400;
538static long_u blink_offtime = 250;
539static UINT blink_timer = 0;
540
Bram Moolenaar703a8042016-06-04 16:24:32 +0200541 int
542gui_mch_is_blinking(void)
543{
544 return blink_state != BLINK_NONE;
545}
546
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200547 int
548gui_mch_is_blink_off(void)
549{
550 return blink_state == BLINK_OFF;
551}
552
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100553 void
554gui_mch_set_blinking(long wait, long on, long off)
555{
556 blink_waittime = wait;
557 blink_ontime = on;
558 blink_offtime = off;
559}
560
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100561 static VOID CALLBACK
562_OnBlinkTimer(
563 HWND hwnd,
Bram Moolenaar1266d672017-02-01 13:43:36 +0100564 UINT uMsg UNUSED,
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100565 UINT idEvent,
Bram Moolenaar1266d672017-02-01 13:43:36 +0100566 DWORD dwTime UNUSED)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100567{
568 MSG msg;
569
570 /*
571 TRACE2("Got timer event, id %d, blink_timer %d\n", idEvent, blink_timer);
572 */
573
574 KillTimer(NULL, idEvent);
575
576 /* Eat spurious WM_TIMER messages */
577 while (pPeekMessage(&msg, hwnd, WM_TIMER, WM_TIMER, PM_REMOVE))
578 ;
579
580 if (blink_state == BLINK_ON)
581 {
582 gui_undraw_cursor();
583 blink_state = BLINK_OFF;
584 blink_timer = (UINT) SetTimer(NULL, 0, (UINT)blink_offtime,
585 (TIMERPROC)_OnBlinkTimer);
586 }
587 else
588 {
589 gui_update_cursor(TRUE, FALSE);
590 blink_state = BLINK_ON;
591 blink_timer = (UINT) SetTimer(NULL, 0, (UINT)blink_ontime,
Bram Moolenaar1266d672017-02-01 13:43:36 +0100592 (TIMERPROC)_OnBlinkTimer);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100593 }
594}
595
596 static void
597gui_mswin_rm_blink_timer(void)
598{
599 MSG msg;
600
601 if (blink_timer != 0)
602 {
603 KillTimer(NULL, blink_timer);
604 /* Eat spurious WM_TIMER messages */
605 while (pPeekMessage(&msg, s_hwnd, WM_TIMER, WM_TIMER, PM_REMOVE))
606 ;
607 blink_timer = 0;
608 }
609}
610
611/*
612 * Stop the cursor blinking. Show the cursor if it wasn't shown.
613 */
614 void
615gui_mch_stop_blink(void)
616{
617 gui_mswin_rm_blink_timer();
618 if (blink_state == BLINK_OFF)
619 gui_update_cursor(TRUE, FALSE);
620 blink_state = BLINK_NONE;
621}
622
623/*
624 * Start the cursor blinking. If it was already blinking, this restarts the
625 * waiting time and shows the cursor.
626 */
627 void
628gui_mch_start_blink(void)
629{
630 gui_mswin_rm_blink_timer();
631
632 /* Only switch blinking on if none of the times is zero */
633 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
634 {
635 blink_timer = (UINT)SetTimer(NULL, 0, (UINT)blink_waittime,
636 (TIMERPROC)_OnBlinkTimer);
637 blink_state = BLINK_ON;
638 gui_update_cursor(TRUE, FALSE);
639 }
640}
641
642/*
643 * Call-back routines.
644 */
645
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100646 static VOID CALLBACK
647_OnTimer(
648 HWND hwnd,
Bram Moolenaar1266d672017-02-01 13:43:36 +0100649 UINT uMsg UNUSED,
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100650 UINT idEvent,
Bram Moolenaar1266d672017-02-01 13:43:36 +0100651 DWORD dwTime UNUSED)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100652{
653 MSG msg;
654
655 /*
656 TRACE2("Got timer event, id %d, s_wait_timer %d\n", idEvent, s_wait_timer);
657 */
658 KillTimer(NULL, idEvent);
659 s_timed_out = TRUE;
660
661 /* Eat spurious WM_TIMER messages */
662 while (pPeekMessage(&msg, hwnd, WM_TIMER, WM_TIMER, PM_REMOVE))
663 ;
664 if (idEvent == s_wait_timer)
665 s_wait_timer = 0;
666}
667
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100668 static void
669_OnDeadChar(
Bram Moolenaar1266d672017-02-01 13:43:36 +0100670 HWND hwnd UNUSED,
671 UINT ch UNUSED,
672 int cRepeat UNUSED)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100673{
674 dead_key = 1;
675}
676
677/*
678 * Convert Unicode character "ch" to bytes in "string[slen]".
679 * When "had_alt" is TRUE the ALT key was included in "ch".
680 * Return the length.
681 */
682 static int
683char_to_string(int ch, char_u *string, int slen, int had_alt)
684{
685 int len;
686 int i;
687#ifdef FEAT_MBYTE
688 WCHAR wstring[2];
Bram Moolenaar945ec092016-06-08 21:17:43 +0200689 char_u *ws = NULL;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100690
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200691 wstring[0] = ch;
692 len = 1;
693
694 /* "ch" is a UTF-16 character. Convert it to a string of bytes. When
695 * "enc_codepage" is non-zero use the standard Win32 function,
696 * otherwise use our own conversion function (e.g., for UTF-8). */
697 if (enc_codepage > 0)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100698 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200699 len = WideCharToMultiByte(enc_codepage, 0, wstring, len,
700 (LPSTR)string, slen, 0, NULL);
701 /* If we had included the ALT key into the character but now the
702 * upper bit is no longer set, that probably means the conversion
703 * failed. Convert the original character and set the upper bit
704 * afterwards. */
705 if (had_alt && len == 1 && ch >= 0x80 && string[0] < 0x80)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100706 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200707 wstring[0] = ch & 0x7f;
708 len = WideCharToMultiByte(enc_codepage, 0, wstring, len,
709 (LPSTR)string, slen, 0, NULL);
710 if (len == 1) /* safety check */
711 string[0] |= 0x80;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100712 }
713 }
714 else
715 {
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100716 len = 1;
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200717 ws = utf16_to_enc(wstring, &len);
718 if (ws == NULL)
719 len = 0;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100720 else
721 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200722 if (len > slen) /* just in case */
723 len = slen;
724 mch_memmove(string, ws, len);
725 vim_free(ws);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100726 }
727 }
728
729 if (len == 0)
730#endif
731 {
732 string[0] = ch;
733 len = 1;
734 }
735
736 for (i = 0; i < len; ++i)
737 if (string[i] == CSI && len <= slen - 2)
738 {
739 /* Insert CSI as K_CSI. */
740 mch_memmove(string + i + 3, string + i + 1, len - i - 1);
741 string[++i] = KS_EXTRA;
742 string[++i] = (int)KE_CSI;
743 len += 2;
744 }
745
746 return len;
747}
748
749/*
750 * Key hit, add it to the input buffer.
751 */
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100752 static void
753_OnChar(
Bram Moolenaar1266d672017-02-01 13:43:36 +0100754 HWND hwnd UNUSED,
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100755 UINT ch,
Bram Moolenaar1266d672017-02-01 13:43:36 +0100756 int cRepeat UNUSED)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100757{
758 char_u string[40];
759 int len = 0;
760
761 dead_key = 0;
762
763 len = char_to_string(ch, string, 40, FALSE);
764 if (len == 1 && string[0] == Ctrl_C && ctrl_c_interrupts)
765 {
766 trash_input_buf();
767 got_int = TRUE;
768 }
769
770 add_to_input_buf(string, len);
771}
772
773/*
774 * Alt-Key hit, add it to the input buffer.
775 */
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100776 static void
777_OnSysChar(
Bram Moolenaar1266d672017-02-01 13:43:36 +0100778 HWND hwnd UNUSED,
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100779 UINT cch,
Bram Moolenaar1266d672017-02-01 13:43:36 +0100780 int cRepeat UNUSED)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100781{
782 char_u string[40]; /* Enough for multibyte character */
783 int len;
784 int modifiers;
785 int ch = cch; /* special keys are negative */
786
787 dead_key = 0;
788
789 /* TRACE("OnSysChar(%d, %c)\n", ch, ch); */
790
791 /* OK, we have a character key (given by ch) which was entered with the
792 * ALT key pressed. Eg, if the user presses Alt-A, then ch == 'A'. Note
793 * that the system distinguishes Alt-a and Alt-A (Alt-Shift-a unless
794 * CAPSLOCK is pressed) at this point.
795 */
796 modifiers = MOD_MASK_ALT;
797 if (GetKeyState(VK_SHIFT) & 0x8000)
798 modifiers |= MOD_MASK_SHIFT;
799 if (GetKeyState(VK_CONTROL) & 0x8000)
800 modifiers |= MOD_MASK_CTRL;
801
802 ch = simplify_key(ch, &modifiers);
803 /* remove the SHIFT modifier for keys where it's already included, e.g.,
804 * '(' and '*' */
805 if (ch < 0x100 && !isalpha(ch) && isprint(ch))
806 modifiers &= ~MOD_MASK_SHIFT;
807
808 /* Interpret the ALT key as making the key META, include SHIFT, etc. */
809 ch = extract_modifiers(ch, &modifiers);
810 if (ch == CSI)
811 ch = K_CSI;
812
813 len = 0;
814 if (modifiers)
815 {
816 string[len++] = CSI;
817 string[len++] = KS_MODIFIER;
818 string[len++] = modifiers;
819 }
820
821 if (IS_SPECIAL((int)ch))
822 {
823 string[len++] = CSI;
824 string[len++] = K_SECOND((int)ch);
825 string[len++] = K_THIRD((int)ch);
826 }
827 else
828 {
829 /* Although the documentation isn't clear about it, we assume "ch" is
830 * a Unicode character. */
831 len += char_to_string(ch, string + len, 40 - len, TRUE);
832 }
833
834 add_to_input_buf(string, len);
835}
836
837 static void
838_OnMouseEvent(
839 int button,
840 int x,
841 int y,
842 int repeated_click,
843 UINT keyFlags)
844{
845 int vim_modifiers = 0x0;
846
847 s_getting_focus = FALSE;
848
849 if (keyFlags & MK_SHIFT)
850 vim_modifiers |= MOUSE_SHIFT;
851 if (keyFlags & MK_CONTROL)
852 vim_modifiers |= MOUSE_CTRL;
853 if (GetKeyState(VK_MENU) & 0x8000)
854 vim_modifiers |= MOUSE_ALT;
855
856 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
857}
858
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100859 static void
860_OnMouseButtonDown(
Bram Moolenaar1266d672017-02-01 13:43:36 +0100861 HWND hwnd UNUSED,
862 BOOL fDoubleClick UNUSED,
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100863 int x,
864 int y,
865 UINT keyFlags)
866{
867 static LONG s_prevTime = 0;
868
869 LONG currentTime = GetMessageTime();
870 int button = -1;
871 int repeated_click;
872
873 /* Give main window the focus: this is so the cursor isn't hollow. */
874 (void)SetFocus(s_hwnd);
875
876 if (s_uMsg == WM_LBUTTONDOWN || s_uMsg == WM_LBUTTONDBLCLK)
877 button = MOUSE_LEFT;
878 else if (s_uMsg == WM_MBUTTONDOWN || s_uMsg == WM_MBUTTONDBLCLK)
879 button = MOUSE_MIDDLE;
880 else if (s_uMsg == WM_RBUTTONDOWN || s_uMsg == WM_RBUTTONDBLCLK)
881 button = MOUSE_RIGHT;
882 else if (s_uMsg == WM_XBUTTONDOWN || s_uMsg == WM_XBUTTONDBLCLK)
883 {
884#ifndef GET_XBUTTON_WPARAM
885# define GET_XBUTTON_WPARAM(wParam) (HIWORD(wParam))
886#endif
887 button = ((GET_XBUTTON_WPARAM(s_wParam) == 1) ? MOUSE_X1 : MOUSE_X2);
888 }
889 else if (s_uMsg == WM_CAPTURECHANGED)
890 {
891 /* on W95/NT4, somehow you get in here with an odd Msg
892 * if you press one button while holding down the other..*/
893 if (s_button_pending == MOUSE_LEFT)
894 button = MOUSE_RIGHT;
895 else
896 button = MOUSE_LEFT;
897 }
898 if (button >= 0)
899 {
900 repeated_click = ((int)(currentTime - s_prevTime) < p_mouset);
901
902 /*
903 * Holding down the left and right buttons simulates pushing the middle
904 * button.
905 */
906 if (repeated_click
907 && ((button == MOUSE_LEFT && s_button_pending == MOUSE_RIGHT)
908 || (button == MOUSE_RIGHT
909 && s_button_pending == MOUSE_LEFT)))
910 {
911 /*
912 * Hmm, gui.c will ignore more than one button down at a time, so
913 * pretend we let go of it first.
914 */
915 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, 0x0);
916 button = MOUSE_MIDDLE;
917 repeated_click = FALSE;
918 s_button_pending = -1;
919 _OnMouseEvent(button, x, y, repeated_click, keyFlags);
920 }
921 else if ((repeated_click)
922 || (mouse_model_popup() && (button == MOUSE_RIGHT)))
923 {
924 if (s_button_pending > -1)
925 {
926 _OnMouseEvent(s_button_pending, x, y, FALSE, keyFlags);
927 s_button_pending = -1;
928 }
929 /* TRACE("Button down at x %d, y %d\n", x, y); */
930 _OnMouseEvent(button, x, y, repeated_click, keyFlags);
931 }
932 else
933 {
934 /*
935 * If this is the first press (i.e. not a multiple click) don't
936 * action immediately, but store and wait for:
937 * i) button-up
938 * ii) mouse move
939 * iii) another button press
940 * before using it.
941 * This enables us to make left+right simulate middle button,
942 * without left or right being actioned first. The side-effect is
943 * that if you click and hold the mouse without dragging, the
944 * cursor doesn't move until you release the button. In practice
945 * this is hardly a problem.
946 */
947 s_button_pending = button;
948 s_x_pending = x;
949 s_y_pending = y;
950 s_kFlags_pending = keyFlags;
951 }
952
953 s_prevTime = currentTime;
954 }
955}
956
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100957 static void
958_OnMouseMoveOrRelease(
Bram Moolenaar1266d672017-02-01 13:43:36 +0100959 HWND hwnd UNUSED,
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100960 int x,
961 int y,
962 UINT keyFlags)
963{
964 int button;
965
966 s_getting_focus = FALSE;
967 if (s_button_pending > -1)
968 {
969 /* Delayed action for mouse down event */
970 _OnMouseEvent(s_button_pending, s_x_pending,
971 s_y_pending, FALSE, s_kFlags_pending);
972 s_button_pending = -1;
973 }
974 if (s_uMsg == WM_MOUSEMOVE)
975 {
976 /*
977 * It's only a MOUSE_DRAG if one or more mouse buttons are being held
978 * down.
979 */
980 if (!(keyFlags & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON
981 | MK_XBUTTON1 | MK_XBUTTON2)))
982 {
983 gui_mouse_moved(x, y);
984 return;
985 }
986
987 /*
988 * While button is down, keep grabbing mouse move events when
989 * the mouse goes outside the window
990 */
991 SetCapture(s_textArea);
992 button = MOUSE_DRAG;
993 /* TRACE(" move at x %d, y %d\n", x, y); */
994 }
995 else
996 {
997 ReleaseCapture();
998 button = MOUSE_RELEASE;
999 /* TRACE(" up at x %d, y %d\n", x, y); */
1000 }
1001
1002 _OnMouseEvent(button, x, y, FALSE, keyFlags);
1003}
1004
1005#ifdef FEAT_MENU
1006/*
1007 * Find the vimmenu_T with the given id
1008 */
1009 static vimmenu_T *
1010gui_mswin_find_menu(
1011 vimmenu_T *pMenu,
1012 int id)
1013{
1014 vimmenu_T *pChildMenu;
1015
1016 while (pMenu)
1017 {
1018 if (pMenu->id == (UINT)id)
1019 break;
1020 if (pMenu->children != NULL)
1021 {
1022 pChildMenu = gui_mswin_find_menu(pMenu->children, id);
1023 if (pChildMenu)
1024 {
1025 pMenu = pChildMenu;
1026 break;
1027 }
1028 }
1029 pMenu = pMenu->next;
1030 }
1031 return pMenu;
1032}
1033
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001034 static void
1035_OnMenu(
Bram Moolenaar1266d672017-02-01 13:43:36 +01001036 HWND hwnd UNUSED,
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001037 int id,
Bram Moolenaar1266d672017-02-01 13:43:36 +01001038 HWND hwndCtl UNUSED,
1039 UINT codeNotify UNUSED)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001040{
1041 vimmenu_T *pMenu;
1042
1043 pMenu = gui_mswin_find_menu(root_menu, id);
1044 if (pMenu)
1045 gui_menu_cb(pMenu);
1046}
1047#endif
1048
1049#ifdef MSWIN_FIND_REPLACE
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001050# ifdef FEAT_MBYTE
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001051/*
1052 * copy useful data from structure LPFINDREPLACE to structure LPFINDREPLACEW
1053 */
1054 static void
1055findrep_atow(LPFINDREPLACEW lpfrw, LPFINDREPLACE lpfr)
1056{
1057 WCHAR *wp;
1058
1059 lpfrw->hwndOwner = lpfr->hwndOwner;
1060 lpfrw->Flags = lpfr->Flags;
1061
1062 wp = enc_to_utf16((char_u *)lpfr->lpstrFindWhat, NULL);
1063 wcsncpy(lpfrw->lpstrFindWhat, wp, lpfrw->wFindWhatLen - 1);
1064 vim_free(wp);
1065
1066 /* the field "lpstrReplaceWith" doesn't need to be copied */
1067}
1068
1069/*
1070 * copy useful data from structure LPFINDREPLACEW to structure LPFINDREPLACE
1071 */
1072 static void
1073findrep_wtoa(LPFINDREPLACE lpfr, LPFINDREPLACEW lpfrw)
1074{
1075 char_u *p;
1076
1077 lpfr->Flags = lpfrw->Flags;
1078
1079 p = utf16_to_enc((short_u*)lpfrw->lpstrFindWhat, NULL);
1080 vim_strncpy((char_u *)lpfr->lpstrFindWhat, p, lpfr->wFindWhatLen - 1);
1081 vim_free(p);
1082
1083 p = utf16_to_enc((short_u*)lpfrw->lpstrReplaceWith, NULL);
1084 vim_strncpy((char_u *)lpfr->lpstrReplaceWith, p, lpfr->wReplaceWithLen - 1);
1085 vim_free(p);
1086}
1087# endif
1088
1089/*
1090 * Handle a Find/Replace window message.
1091 */
1092 static void
1093_OnFindRepl(void)
1094{
1095 int flags = 0;
1096 int down;
1097
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001098# ifdef FEAT_MBYTE
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001099 /* If the OS is Windows NT, and 'encoding' differs from active codepage:
1100 * convert text from wide string. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001101 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001102 {
1103 findrep_wtoa(&s_findrep_struct, &s_findrep_struct_w);
1104 }
1105# endif
1106
1107 if (s_findrep_struct.Flags & FR_DIALOGTERM)
1108 /* Give main window the focus back. */
1109 (void)SetFocus(s_hwnd);
1110
1111 if (s_findrep_struct.Flags & FR_FINDNEXT)
1112 {
1113 flags = FRD_FINDNEXT;
1114
1115 /* Give main window the focus back: this is so the cursor isn't
1116 * hollow. */
1117 (void)SetFocus(s_hwnd);
1118 }
1119 else if (s_findrep_struct.Flags & FR_REPLACE)
1120 {
1121 flags = FRD_REPLACE;
1122
1123 /* Give main window the focus back: this is so the cursor isn't
1124 * hollow. */
1125 (void)SetFocus(s_hwnd);
1126 }
1127 else if (s_findrep_struct.Flags & FR_REPLACEALL)
1128 {
1129 flags = FRD_REPLACEALL;
1130 }
1131
1132 if (flags != 0)
1133 {
1134 /* Call the generic GUI function to do the actual work. */
1135 if (s_findrep_struct.Flags & FR_WHOLEWORD)
1136 flags |= FRD_WHOLE_WORD;
1137 if (s_findrep_struct.Flags & FR_MATCHCASE)
1138 flags |= FRD_MATCH_CASE;
1139 down = (s_findrep_struct.Flags & FR_DOWN) != 0;
1140 gui_do_findrepl(flags, (char_u *)s_findrep_struct.lpstrFindWhat,
1141 (char_u *)s_findrep_struct.lpstrReplaceWith, down);
1142 }
1143}
1144#endif
1145
1146 static void
1147HandleMouseHide(UINT uMsg, LPARAM lParam)
1148{
1149 static LPARAM last_lParam = 0L;
1150
1151 /* We sometimes get a mousemove when the mouse didn't move... */
1152 if (uMsg == WM_MOUSEMOVE || uMsg == WM_NCMOUSEMOVE)
1153 {
1154 if (lParam == last_lParam)
1155 return;
1156 last_lParam = lParam;
1157 }
1158
1159 /* Handle specially, to centralise coding. We need to be sure we catch all
1160 * possible events which should cause us to restore the cursor (as it is a
1161 * shared resource, we take full responsibility for it).
1162 */
1163 switch (uMsg)
1164 {
1165 case WM_KEYUP:
1166 case WM_CHAR:
1167 /*
1168 * blank out the pointer if necessary
1169 */
1170 if (p_mh)
1171 gui_mch_mousehide(TRUE);
1172 break;
1173
1174 case WM_SYSKEYUP: /* show the pointer when a system-key is pressed */
1175 case WM_SYSCHAR:
1176 case WM_MOUSEMOVE: /* show the pointer on any mouse action */
1177 case WM_LBUTTONDOWN:
1178 case WM_LBUTTONUP:
1179 case WM_MBUTTONDOWN:
1180 case WM_MBUTTONUP:
1181 case WM_RBUTTONDOWN:
1182 case WM_RBUTTONUP:
1183 case WM_XBUTTONDOWN:
1184 case WM_XBUTTONUP:
1185 case WM_NCMOUSEMOVE:
1186 case WM_NCLBUTTONDOWN:
1187 case WM_NCLBUTTONUP:
1188 case WM_NCMBUTTONDOWN:
1189 case WM_NCMBUTTONUP:
1190 case WM_NCRBUTTONDOWN:
1191 case WM_NCRBUTTONUP:
1192 case WM_KILLFOCUS:
1193 /*
1194 * if the pointer is currently hidden, then we should show it.
1195 */
1196 gui_mch_mousehide(FALSE);
1197 break;
1198 }
1199}
1200
1201 static LRESULT CALLBACK
1202_TextAreaWndProc(
1203 HWND hwnd,
1204 UINT uMsg,
1205 WPARAM wParam,
1206 LPARAM lParam)
1207{
1208 /*
1209 TRACE("TextAreaWndProc: hwnd = %08x, msg = %x, wParam = %x, lParam = %x\n",
1210 hwnd, uMsg, wParam, lParam);
1211 */
1212
1213 HandleMouseHide(uMsg, lParam);
1214
1215 s_uMsg = uMsg;
1216 s_wParam = wParam;
1217 s_lParam = lParam;
1218
1219#ifdef FEAT_BEVAL
1220 TrackUserActivity(uMsg);
1221#endif
1222
1223 switch (uMsg)
1224 {
1225 HANDLE_MSG(hwnd, WM_LBUTTONDBLCLK,_OnMouseButtonDown);
1226 HANDLE_MSG(hwnd, WM_LBUTTONDOWN,_OnMouseButtonDown);
1227 HANDLE_MSG(hwnd, WM_LBUTTONUP, _OnMouseMoveOrRelease);
1228 HANDLE_MSG(hwnd, WM_MBUTTONDBLCLK,_OnMouseButtonDown);
1229 HANDLE_MSG(hwnd, WM_MBUTTONDOWN,_OnMouseButtonDown);
1230 HANDLE_MSG(hwnd, WM_MBUTTONUP, _OnMouseMoveOrRelease);
1231 HANDLE_MSG(hwnd, WM_MOUSEMOVE, _OnMouseMoveOrRelease);
1232 HANDLE_MSG(hwnd, WM_PAINT, _OnPaint);
1233 HANDLE_MSG(hwnd, WM_RBUTTONDBLCLK,_OnMouseButtonDown);
1234 HANDLE_MSG(hwnd, WM_RBUTTONDOWN,_OnMouseButtonDown);
1235 HANDLE_MSG(hwnd, WM_RBUTTONUP, _OnMouseMoveOrRelease);
1236 HANDLE_MSG(hwnd, WM_XBUTTONDBLCLK,_OnMouseButtonDown);
1237 HANDLE_MSG(hwnd, WM_XBUTTONDOWN,_OnMouseButtonDown);
1238 HANDLE_MSG(hwnd, WM_XBUTTONUP, _OnMouseMoveOrRelease);
1239
1240#ifdef FEAT_BEVAL
1241 case WM_NOTIFY: Handle_WM_Notify(hwnd, (LPNMHDR)lParam);
1242 return TRUE;
1243#endif
1244 default:
1245 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1246 }
1247}
1248
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001249#if defined(FEAT_MBYTE) \
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001250 || defined(GLOBAL_IME) \
1251 || defined(PROTO)
1252# ifdef PROTO
1253typedef int WINAPI;
1254# endif
1255
1256 LRESULT WINAPI
1257vim_WindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
1258{
1259# ifdef GLOBAL_IME
1260 return global_ime_DefWindowProc(hwnd, message, wParam, lParam);
1261# else
1262 if (wide_WindowProc)
1263 return DefWindowProcW(hwnd, message, wParam, lParam);
1264 return DefWindowProc(hwnd, message, wParam, lParam);
1265#endif
1266}
1267#endif
1268
1269/*
1270 * Called when the foreground or background color has been changed.
1271 */
1272 void
1273gui_mch_new_colors(void)
1274{
1275 /* nothing to do? */
1276}
1277
1278/*
1279 * Set the colors to their default values.
1280 */
1281 void
1282gui_mch_def_colors(void)
1283{
1284 gui.norm_pixel = GetSysColor(COLOR_WINDOWTEXT);
1285 gui.back_pixel = GetSysColor(COLOR_WINDOW);
1286 gui.def_norm_pixel = gui.norm_pixel;
1287 gui.def_back_pixel = gui.back_pixel;
1288}
1289
1290/*
1291 * Open the GUI window which was created by a call to gui_mch_init().
1292 */
1293 int
1294gui_mch_open(void)
1295{
1296#ifndef SW_SHOWDEFAULT
1297# define SW_SHOWDEFAULT 10 /* Borland 5.0 doesn't have it */
1298#endif
1299 /* Actually open the window, if not already visible
1300 * (may be done already in gui_mch_set_shellsize) */
1301 if (!IsWindowVisible(s_hwnd))
1302 ShowWindow(s_hwnd, SW_SHOWDEFAULT);
1303
1304#ifdef MSWIN_FIND_REPLACE
1305 /* Init replace string here, so that we keep it when re-opening the
1306 * dialog. */
1307 s_findrep_struct.lpstrReplaceWith[0] = NUL;
1308#endif
1309
1310 return OK;
1311}
1312
1313/*
1314 * Get the position of the top left corner of the window.
1315 */
1316 int
1317gui_mch_get_winpos(int *x, int *y)
1318{
1319 RECT rect;
1320
1321 GetWindowRect(s_hwnd, &rect);
1322 *x = rect.left;
1323 *y = rect.top;
1324 return OK;
1325}
1326
1327/*
1328 * Set the position of the top left corner of the window to the given
1329 * coordinates.
1330 */
1331 void
1332gui_mch_set_winpos(int x, int y)
1333{
1334 SetWindowPos(s_hwnd, NULL, x, y, 0, 0,
1335 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
1336}
1337 void
1338gui_mch_set_text_area_pos(int x, int y, int w, int h)
1339{
1340 static int oldx = 0;
1341 static int oldy = 0;
1342
1343 SetWindowPos(s_textArea, NULL, x, y, w, h, SWP_NOZORDER | SWP_NOACTIVATE);
1344
1345#ifdef FEAT_TOOLBAR
1346 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1347 SendMessage(s_toolbarhwnd, WM_SIZE,
1348 (WPARAM)0, (LPARAM)(w + ((long)(TOOLBAR_BUTTON_HEIGHT+8)<<16)));
1349#endif
1350#if defined(FEAT_GUI_TABLINE)
1351 if (showing_tabline)
1352 {
1353 int top = 0;
1354 RECT rect;
1355
1356# ifdef FEAT_TOOLBAR
1357 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1358 top = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
1359# endif
1360 GetClientRect(s_hwnd, &rect);
1361 MoveWindow(s_tabhwnd, 0, top, rect.right, gui.tabline_height, TRUE);
1362 }
1363#endif
1364
1365 /* When side scroll bar is unshown, the size of window will change.
1366 * then, the text area move left or right. thus client rect should be
1367 * forcedly redrawn. (Yasuhiro Matsumoto) */
1368 if (oldx != x || oldy != y)
1369 {
1370 InvalidateRect(s_hwnd, NULL, FALSE);
1371 oldx = x;
1372 oldy = y;
1373 }
1374}
1375
1376
1377/*
1378 * Scrollbar stuff:
1379 */
1380
1381 void
1382gui_mch_enable_scrollbar(
1383 scrollbar_T *sb,
1384 int flag)
1385{
1386 ShowScrollBar(sb->id, SB_CTL, flag);
1387
1388 /* TODO: When the window is maximized, the size of the window stays the
1389 * same, thus the size of the text area changes. On Win98 it's OK, on Win
1390 * NT 4.0 it's not... */
1391}
1392
1393 void
1394gui_mch_set_scrollbar_pos(
1395 scrollbar_T *sb,
1396 int x,
1397 int y,
1398 int w,
1399 int h)
1400{
1401 SetWindowPos(sb->id, NULL, x, y, w, h,
1402 SWP_NOZORDER | SWP_NOACTIVATE | SWP_SHOWWINDOW);
1403}
1404
1405 void
1406gui_mch_create_scrollbar(
1407 scrollbar_T *sb,
1408 int orient) /* SBAR_VERT or SBAR_HORIZ */
1409{
1410 sb->id = CreateWindow(
1411 "SCROLLBAR", "Scrollbar",
1412 WS_CHILD | ((orient == SBAR_VERT) ? SBS_VERT : SBS_HORZ), 0, 0,
1413 10, /* Any value will do for now */
1414 10, /* Any value will do for now */
1415 s_hwnd, NULL,
1416 s_hinst, NULL);
1417}
1418
1419/*
1420 * Find the scrollbar with the given hwnd.
1421 */
1422 static scrollbar_T *
1423gui_mswin_find_scrollbar(HWND hwnd)
1424{
1425 win_T *wp;
1426
1427 if (gui.bottom_sbar.id == hwnd)
1428 return &gui.bottom_sbar;
1429 FOR_ALL_WINDOWS(wp)
1430 {
1431 if (wp->w_scrollbars[SBAR_LEFT].id == hwnd)
1432 return &wp->w_scrollbars[SBAR_LEFT];
1433 if (wp->w_scrollbars[SBAR_RIGHT].id == hwnd)
1434 return &wp->w_scrollbars[SBAR_RIGHT];
1435 }
1436 return NULL;
1437}
1438
1439/*
1440 * Get the character size of a font.
1441 */
1442 static void
1443GetFontSize(GuiFont font)
1444{
1445 HWND hwnd = GetDesktopWindow();
1446 HDC hdc = GetWindowDC(hwnd);
1447 HFONT hfntOld = SelectFont(hdc, (HFONT)font);
1448 TEXTMETRIC tm;
1449
1450 GetTextMetrics(hdc, &tm);
1451 gui.char_width = tm.tmAveCharWidth + tm.tmOverhang;
1452
1453 gui.char_height = tm.tmHeight + p_linespace;
1454
1455 SelectFont(hdc, hfntOld);
1456
1457 ReleaseDC(hwnd, hdc);
1458}
1459
1460/*
1461 * Adjust gui.char_height (after 'linespace' was changed).
1462 */
1463 int
1464gui_mch_adjust_charheight(void)
1465{
1466 GetFontSize(gui.norm_font);
1467 return OK;
1468}
1469
1470 static GuiFont
1471get_font_handle(LOGFONT *lf)
1472{
1473 HFONT font = NULL;
1474
1475 /* Load the font */
1476 font = CreateFontIndirect(lf);
1477
1478 if (font == NULL)
1479 return NOFONT;
1480
1481 return (GuiFont)font;
1482}
1483
1484 static int
1485pixels_to_points(int pixels, int vertical)
1486{
1487 int points;
1488 HWND hwnd;
1489 HDC hdc;
1490
1491 hwnd = GetDesktopWindow();
1492 hdc = GetWindowDC(hwnd);
1493
1494 points = MulDiv(pixels, 72,
1495 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX));
1496
1497 ReleaseDC(hwnd, hdc);
1498
1499 return points;
1500}
1501
1502 GuiFont
1503gui_mch_get_font(
1504 char_u *name,
1505 int giveErrorIfMissing)
1506{
1507 LOGFONT lf;
1508 GuiFont font = NOFONT;
1509
1510 if (get_logfont(&lf, name, NULL, giveErrorIfMissing) == OK)
1511 font = get_font_handle(&lf);
1512 if (font == NOFONT && giveErrorIfMissing)
1513 EMSG2(_(e_font), name);
1514 return font;
1515}
1516
1517#if defined(FEAT_EVAL) || defined(PROTO)
1518/*
1519 * Return the name of font "font" in allocated memory.
1520 * Don't know how to get the actual name, thus use the provided name.
1521 */
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001522 char_u *
Bram Moolenaar1266d672017-02-01 13:43:36 +01001523gui_mch_get_fontname(GuiFont font UNUSED, char_u *name)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001524{
1525 if (name == NULL)
1526 return NULL;
1527 return vim_strsave(name);
1528}
1529#endif
1530
1531 void
1532gui_mch_free_font(GuiFont font)
1533{
1534 if (font)
1535 DeleteObject((HFONT)font);
1536}
1537
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001538/*
1539 * Return the Pixel value (color) for the given color name.
1540 * Return INVALCOLOR for error.
1541 */
1542 guicolor_T
1543gui_mch_get_color(char_u *name)
1544{
Bram Moolenaarc285fe72016-04-26 21:51:48 +02001545 int i;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001546
1547 typedef struct SysColorTable
1548 {
1549 char *name;
1550 int color;
1551 } SysColorTable;
1552
1553 static SysColorTable sys_table[] =
1554 {
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001555 {"SYS_3DDKSHADOW", COLOR_3DDKSHADOW},
1556 {"SYS_3DHILIGHT", COLOR_3DHILIGHT},
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001557#ifdef COLOR_3DHIGHLIGHT
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001558 {"SYS_3DHIGHLIGHT", COLOR_3DHIGHLIGHT},
1559#endif
1560 {"SYS_BTNHILIGHT", COLOR_BTNHILIGHT},
1561 {"SYS_BTNHIGHLIGHT", COLOR_BTNHIGHLIGHT},
1562 {"SYS_3DLIGHT", COLOR_3DLIGHT},
1563 {"SYS_3DSHADOW", COLOR_3DSHADOW},
1564 {"SYS_DESKTOP", COLOR_DESKTOP},
1565 {"SYS_INFOBK", COLOR_INFOBK},
1566 {"SYS_INFOTEXT", COLOR_INFOTEXT},
1567 {"SYS_3DFACE", COLOR_3DFACE},
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001568 {"SYS_BTNFACE", COLOR_BTNFACE},
1569 {"SYS_BTNSHADOW", COLOR_BTNSHADOW},
1570 {"SYS_ACTIVEBORDER", COLOR_ACTIVEBORDER},
1571 {"SYS_ACTIVECAPTION", COLOR_ACTIVECAPTION},
1572 {"SYS_APPWORKSPACE", COLOR_APPWORKSPACE},
1573 {"SYS_BACKGROUND", COLOR_BACKGROUND},
1574 {"SYS_BTNTEXT", COLOR_BTNTEXT},
1575 {"SYS_CAPTIONTEXT", COLOR_CAPTIONTEXT},
1576 {"SYS_GRAYTEXT", COLOR_GRAYTEXT},
1577 {"SYS_HIGHLIGHT", COLOR_HIGHLIGHT},
1578 {"SYS_HIGHLIGHTTEXT", COLOR_HIGHLIGHTTEXT},
1579 {"SYS_INACTIVEBORDER", COLOR_INACTIVEBORDER},
1580 {"SYS_INACTIVECAPTION", COLOR_INACTIVECAPTION},
1581 {"SYS_INACTIVECAPTIONTEXT", COLOR_INACTIVECAPTIONTEXT},
1582 {"SYS_MENU", COLOR_MENU},
1583 {"SYS_MENUTEXT", COLOR_MENUTEXT},
1584 {"SYS_SCROLLBAR", COLOR_SCROLLBAR},
1585 {"SYS_WINDOW", COLOR_WINDOW},
1586 {"SYS_WINDOWFRAME", COLOR_WINDOWFRAME},
1587 {"SYS_WINDOWTEXT", COLOR_WINDOWTEXT}
1588 };
1589
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001590 /*
1591 * Try to look up a system colour.
1592 */
1593 for (i = 0; i < sizeof(sys_table) / sizeof(sys_table[0]); i++)
1594 if (STRICMP(name, sys_table[i].name) == 0)
1595 return GetSysColor(sys_table[i].color);
1596
Bram Moolenaarab302212016-04-26 20:59:29 +02001597 return gui_get_color_cmn(name);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001598}
Bram Moolenaarc285fe72016-04-26 21:51:48 +02001599
Bram Moolenaar26af85d2017-07-23 16:45:10 +02001600 guicolor_T
1601gui_mch_get_rgb_color(int r, int g, int b)
1602{
1603 return gui_get_rgb_color_cmn(r, g, b);
1604}
1605
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001606/*
1607 * Return OK if the key with the termcap name "name" is supported.
1608 */
1609 int
1610gui_mch_haskey(char_u *name)
1611{
1612 int i;
1613
1614 for (i = 0; special_keys[i].vim_code1 != NUL; i++)
1615 if (name[0] == special_keys[i].vim_code0 &&
1616 name[1] == special_keys[i].vim_code1)
1617 return OK;
1618 return FAIL;
1619}
1620
1621 void
1622gui_mch_beep(void)
1623{
1624 MessageBeep(MB_OK);
1625}
1626/*
1627 * Invert a rectangle from row r, column c, for nr rows and nc columns.
1628 */
1629 void
1630gui_mch_invert_rectangle(
1631 int r,
1632 int c,
1633 int nr,
1634 int nc)
1635{
1636 RECT rc;
1637
1638 /*
1639 * Note: InvertRect() excludes right and bottom of rectangle.
1640 */
1641 rc.left = FILL_X(c);
1642 rc.top = FILL_Y(r);
1643 rc.right = rc.left + nc * gui.char_width;
1644 rc.bottom = rc.top + nr * gui.char_height;
1645 InvertRect(s_hdc, &rc);
1646}
1647
1648/*
1649 * Iconify the GUI window.
1650 */
1651 void
1652gui_mch_iconify(void)
1653{
1654 ShowWindow(s_hwnd, SW_MINIMIZE);
1655}
1656
1657/*
1658 * Draw a cursor without focus.
1659 */
1660 void
1661gui_mch_draw_hollow_cursor(guicolor_T color)
1662{
1663 HBRUSH hbr;
1664 RECT rc;
1665
1666 /*
1667 * Note: FrameRect() excludes right and bottom of rectangle.
1668 */
1669 rc.left = FILL_X(gui.col);
1670 rc.top = FILL_Y(gui.row);
1671 rc.right = rc.left + gui.char_width;
1672#ifdef FEAT_MBYTE
1673 if (mb_lefthalve(gui.row, gui.col))
1674 rc.right += gui.char_width;
1675#endif
1676 rc.bottom = rc.top + gui.char_height;
1677 hbr = CreateSolidBrush(color);
1678 FrameRect(s_hdc, &rc, hbr);
1679 DeleteBrush(hbr);
1680}
1681/*
1682 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
1683 * color "color".
1684 */
1685 void
1686gui_mch_draw_part_cursor(
1687 int w,
1688 int h,
1689 guicolor_T color)
1690{
1691 HBRUSH hbr;
1692 RECT rc;
1693
1694 /*
1695 * Note: FillRect() excludes right and bottom of rectangle.
1696 */
1697 rc.left =
1698#ifdef FEAT_RIGHTLEFT
1699 /* vertical line should be on the right of current point */
1700 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
1701#endif
1702 FILL_X(gui.col);
1703 rc.top = FILL_Y(gui.row) + gui.char_height - h;
1704 rc.right = rc.left + w;
1705 rc.bottom = rc.top + h;
1706 hbr = CreateSolidBrush(color);
1707 FillRect(s_hdc, &rc, hbr);
1708 DeleteBrush(hbr);
1709}
1710
1711
1712/*
1713 * Generates a VK_SPACE when the internal dead_key flag is set to output the
1714 * dead key's nominal character and re-post the original message.
1715 */
1716 static void
1717outputDeadKey_rePost(MSG originalMsg)
1718{
1719 static MSG deadCharExpel;
1720
1721 if (!dead_key)
1722 return;
1723
1724 dead_key = 0;
1725
1726 /* Make Windows generate the dead key's character */
1727 deadCharExpel.message = originalMsg.message;
1728 deadCharExpel.hwnd = originalMsg.hwnd;
1729 deadCharExpel.wParam = VK_SPACE;
1730
1731 MyTranslateMessage(&deadCharExpel);
1732
1733 /* re-generate the current character free of the dead char influence */
1734 PostMessage(originalMsg.hwnd, originalMsg.message, originalMsg.wParam,
1735 originalMsg.lParam);
1736}
1737
1738
1739/*
1740 * Process a single Windows message.
1741 * If one is not available we hang until one is.
1742 */
1743 static void
1744process_message(void)
1745{
1746 MSG msg;
1747 UINT vk = 0; /* Virtual key */
1748 char_u string[40];
1749 int i;
1750 int modifiers = 0;
1751 int key;
1752#ifdef FEAT_MENU
1753 static char_u k10[] = {K_SPECIAL, 'k', ';', 0};
1754#endif
1755
1756 pGetMessage(&msg, NULL, 0, 0);
1757
1758#ifdef FEAT_OLE
1759 /* Look after OLE Automation commands */
1760 if (msg.message == WM_OLE)
1761 {
1762 char_u *str = (char_u *)msg.lParam;
1763 if (str == NULL || *str == NUL)
1764 {
1765 /* Message can't be ours, forward it. Fixes problem with Ultramon
1766 * 3.0.4 */
1767 pDispatchMessage(&msg);
1768 }
1769 else
1770 {
1771 add_to_input_buf(str, (int)STRLEN(str));
1772 vim_free(str); /* was allocated in CVim::SendKeys() */
1773 }
1774 return;
1775 }
1776#endif
1777
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001778#ifdef MSWIN_FIND_REPLACE
1779 /* Don't process messages used by the dialog */
1780 if (s_findrep_hwnd != NULL && pIsDialogMessage(s_findrep_hwnd, &msg))
1781 {
1782 HandleMouseHide(msg.message, msg.lParam);
1783 return;
1784 }
1785#endif
1786
1787 /*
1788 * Check if it's a special key that we recognise. If not, call
1789 * TranslateMessage().
1790 */
1791 if (msg.message == WM_KEYDOWN || msg.message == WM_SYSKEYDOWN)
1792 {
1793 vk = (int) msg.wParam;
1794
1795 /*
1796 * Handle dead keys in special conditions in other cases we let Windows
1797 * handle them and do not interfere.
1798 *
1799 * The dead_key flag must be reset on several occasions:
1800 * - in _OnChar() (or _OnSysChar()) as any dead key was necessarily
1801 * consumed at that point (This is when we let Windows combine the
1802 * dead character on its own)
1803 *
1804 * - Before doing something special such as regenerating keypresses to
1805 * expel the dead character as this could trigger an infinite loop if
1806 * for some reason MyTranslateMessage() do not trigger a call
1807 * immediately to _OnChar() (or _OnSysChar()).
1808 */
1809 if (dead_key)
1810 {
1811 /*
1812 * If a dead key was pressed and the user presses VK_SPACE,
1813 * VK_BACK, or VK_ESCAPE it means that he actually wants to deal
1814 * with the dead char now, so do nothing special and let Windows
1815 * handle it.
1816 *
1817 * Note that VK_SPACE combines with the dead_key's character and
1818 * only one WM_CHAR will be generated by TranslateMessage(), in
1819 * the two other cases two WM_CHAR will be generated: the dead
1820 * char and VK_BACK or VK_ESCAPE. That is most likely what the
1821 * user expects.
1822 */
1823 if ((vk == VK_SPACE || vk == VK_BACK || vk == VK_ESCAPE))
1824 {
1825 dead_key = 0;
1826 MyTranslateMessage(&msg);
1827 return;
1828 }
1829 /* In modes where we are not typing, dead keys should behave
1830 * normally */
1831 else if (!(get_real_state() & (INSERT | CMDLINE | SELECTMODE)))
1832 {
1833 outputDeadKey_rePost(msg);
1834 return;
1835 }
1836 }
1837
1838 /* Check for CTRL-BREAK */
1839 if (vk == VK_CANCEL)
1840 {
1841 trash_input_buf();
1842 got_int = TRUE;
Bram Moolenaar9698ad72017-08-12 14:52:15 +02001843 ctrl_break_was_pressed = TRUE;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001844 string[0] = Ctrl_C;
1845 add_to_input_buf(string, 1);
1846 }
1847
1848 for (i = 0; special_keys[i].key_sym != 0; i++)
1849 {
1850 /* ignore VK_SPACE when ALT key pressed: system menu */
1851 if (special_keys[i].key_sym == vk
1852 && (vk != VK_SPACE || !(GetKeyState(VK_MENU) & 0x8000)))
1853 {
1854 /*
Bram Moolenaar945ec092016-06-08 21:17:43 +02001855 * Behave as expected if we have a dead key and the special key
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001856 * is a key that would normally trigger the dead key nominal
1857 * character output (such as a NUMPAD printable character or
1858 * the TAB key, etc...).
1859 */
1860 if (dead_key && (special_keys[i].vim_code0 == 'K'
1861 || vk == VK_TAB || vk == CAR))
1862 {
1863 outputDeadKey_rePost(msg);
1864 return;
1865 }
1866
1867#ifdef FEAT_MENU
1868 /* Check for <F10>: Windows selects the menu. When <F10> is
1869 * mapped we want to use the mapping instead. */
1870 if (vk == VK_F10
1871 && gui.menu_is_active
1872 && check_map(k10, State, FALSE, TRUE, FALSE,
1873 NULL, NULL) == NULL)
1874 break;
1875#endif
1876 if (GetKeyState(VK_SHIFT) & 0x8000)
1877 modifiers |= MOD_MASK_SHIFT;
1878 /*
1879 * Don't use caps-lock as shift, because these are special keys
1880 * being considered here, and we only want letters to get
1881 * shifted -- webb
1882 */
1883 /*
1884 if (GetKeyState(VK_CAPITAL) & 0x0001)
1885 modifiers ^= MOD_MASK_SHIFT;
1886 */
1887 if (GetKeyState(VK_CONTROL) & 0x8000)
1888 modifiers |= MOD_MASK_CTRL;
1889 if (GetKeyState(VK_MENU) & 0x8000)
1890 modifiers |= MOD_MASK_ALT;
1891
1892 if (special_keys[i].vim_code1 == NUL)
1893 key = special_keys[i].vim_code0;
1894 else
1895 key = TO_SPECIAL(special_keys[i].vim_code0,
1896 special_keys[i].vim_code1);
1897 key = simplify_key(key, &modifiers);
1898 if (key == CSI)
1899 key = K_CSI;
1900
1901 if (modifiers)
1902 {
1903 string[0] = CSI;
1904 string[1] = KS_MODIFIER;
1905 string[2] = modifiers;
1906 add_to_input_buf(string, 3);
1907 }
1908
1909 if (IS_SPECIAL(key))
1910 {
1911 string[0] = CSI;
1912 string[1] = K_SECOND(key);
1913 string[2] = K_THIRD(key);
1914 add_to_input_buf(string, 3);
1915 }
1916 else
1917 {
1918 int len;
1919
1920 /* Handle "key" as a Unicode character. */
1921 len = char_to_string(key, string, 40, FALSE);
1922 add_to_input_buf(string, len);
1923 }
1924 break;
1925 }
1926 }
1927 if (special_keys[i].key_sym == 0)
1928 {
1929 /* Some keys need C-S- where they should only need C-.
1930 * Ignore 0xff, Windows XP sends it when NUMLOCK has changed since
1931 * system startup (Helmut Stiegler, 2003 Oct 3). */
1932 if (vk != 0xff
1933 && (GetKeyState(VK_CONTROL) & 0x8000)
1934 && !(GetKeyState(VK_SHIFT) & 0x8000)
1935 && !(GetKeyState(VK_MENU) & 0x8000))
1936 {
1937 /* CTRL-6 is '^'; Japanese keyboard maps '^' to vk == 0xDE */
1938 if (vk == '6' || MapVirtualKey(vk, 2) == (UINT)'^')
1939 {
1940 string[0] = Ctrl_HAT;
1941 add_to_input_buf(string, 1);
1942 }
1943 /* vk == 0xBD AZERTY for CTRL-'-', but CTRL-[ for * QWERTY! */
1944 else if (vk == 0xBD) /* QWERTY for CTRL-'-' */
1945 {
1946 string[0] = Ctrl__;
1947 add_to_input_buf(string, 1);
1948 }
1949 /* CTRL-2 is '@'; Japanese keyboard maps '@' to vk == 0xC0 */
1950 else if (vk == '2' || MapVirtualKey(vk, 2) == (UINT)'@')
1951 {
1952 string[0] = Ctrl_AT;
1953 add_to_input_buf(string, 1);
1954 }
1955 else
1956 MyTranslateMessage(&msg);
1957 }
1958 else
1959 MyTranslateMessage(&msg);
1960 }
1961 }
1962#ifdef FEAT_MBYTE_IME
1963 else if (msg.message == WM_IME_NOTIFY)
1964 _OnImeNotify(msg.hwnd, (DWORD)msg.wParam, (DWORD)msg.lParam);
1965 else if (msg.message == WM_KEYUP && im_get_status())
1966 /* added for non-MS IME (Yasuhiro Matsumoto) */
1967 MyTranslateMessage(&msg);
1968#endif
1969#if !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME)
1970/* GIME_TEST */
1971 else if (msg.message == WM_IME_STARTCOMPOSITION)
1972 {
1973 POINT point;
1974
1975 global_ime_set_font(&norm_logfont);
1976 point.x = FILL_X(gui.col);
1977 point.y = FILL_Y(gui.row);
1978 MapWindowPoints(s_textArea, s_hwnd, &point, 1);
1979 global_ime_set_position(&point);
1980 }
1981#endif
1982
1983#ifdef FEAT_MENU
1984 /* Check for <F10>: Default effect is to select the menu. When <F10> is
1985 * mapped we need to stop it here to avoid strange effects (e.g., for the
1986 * key-up event) */
1987 if (vk != VK_F10 || check_map(k10, State, FALSE, TRUE, FALSE,
1988 NULL, NULL) == NULL)
1989#endif
1990 pDispatchMessage(&msg);
1991}
1992
1993/*
1994 * Catch up with any queued events. This may put keyboard input into the
1995 * input buffer, call resize call-backs, trigger timers etc. If there is
1996 * nothing in the event queue (& no timers pending), then we return
1997 * immediately.
1998 */
1999 void
2000gui_mch_update(void)
2001{
2002 MSG msg;
2003
2004 if (!s_busy_processing)
2005 while (pPeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE)
2006 && !vim_is_input_buf_full())
2007 process_message();
2008}
2009
Bram Moolenaar4231da42016-06-02 14:30:04 +02002010 static void
2011remove_any_timer(void)
2012{
2013 MSG msg;
2014
2015 if (s_wait_timer != 0 && !s_timed_out)
2016 {
2017 KillTimer(NULL, s_wait_timer);
2018
2019 /* Eat spurious WM_TIMER messages */
2020 while (pPeekMessage(&msg, s_hwnd, WM_TIMER, WM_TIMER, PM_REMOVE))
2021 ;
2022 s_wait_timer = 0;
2023 }
2024}
2025
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002026/*
2027 * GUI input routine called by gui_wait_for_chars(). Waits for a character
2028 * from the keyboard.
2029 * wtime == -1 Wait forever.
2030 * wtime == 0 This should never happen.
2031 * wtime > 0 Wait wtime milliseconds for a character.
2032 * Returns OK if a character was found to be available within the given time,
2033 * or FAIL otherwise.
2034 */
2035 int
2036gui_mch_wait_for_chars(int wtime)
2037{
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002038 int focus;
2039
2040 s_timed_out = FALSE;
2041
2042 if (wtime > 0)
2043 {
2044 /* Don't do anything while processing a (scroll) message. */
2045 if (s_busy_processing)
2046 return FAIL;
2047 s_wait_timer = (UINT)SetTimer(NULL, 0, (UINT)wtime,
2048 (TIMERPROC)_OnTimer);
2049 }
2050
2051 allow_scrollbar = TRUE;
2052
2053 focus = gui.in_focus;
2054 while (!s_timed_out)
2055 {
2056 /* Stop or start blinking when focus changes */
2057 if (gui.in_focus != focus)
2058 {
2059 if (gui.in_focus)
2060 gui_mch_start_blink();
2061 else
2062 gui_mch_stop_blink();
2063 focus = gui.in_focus;
2064 }
2065
2066 if (s_need_activate)
2067 {
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002068 (void)SetForegroundWindow(s_hwnd);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002069 s_need_activate = FALSE;
2070 }
2071
Bram Moolenaar4231da42016-06-02 14:30:04 +02002072#ifdef FEAT_TIMERS
2073 did_add_timer = FALSE;
2074#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002075#ifdef MESSAGE_QUEUE
Bram Moolenaar62426e12017-08-13 15:37:58 +02002076 /* Check channel I/O while waiting for a message. */
Bram Moolenaar9186a272016-02-23 19:34:01 +01002077 for (;;)
2078 {
2079 MSG msg;
2080
2081 parse_queued_messages();
2082
Bram Moolenaar62426e12017-08-13 15:37:58 +02002083 if (pPeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE))
2084 {
2085 process_message();
2086 break;
2087 }
2088 else if (MsgWaitForMultipleObjects(0, NULL, FALSE, 100, QS_ALLINPUT)
2089 != WAIT_TIMEOUT)
Bram Moolenaar9186a272016-02-23 19:34:01 +01002090 break;
2091 }
Bram Moolenaar62426e12017-08-13 15:37:58 +02002092#else
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002093 /*
2094 * Don't use gui_mch_update() because then we will spin-lock until a
2095 * char arrives, instead we use GetMessage() to hang until an
2096 * event arrives. No need to check for input_buf_full because we are
2097 * returning as soon as it contains a single char -- webb
2098 */
2099 process_message();
Bram Moolenaar62426e12017-08-13 15:37:58 +02002100#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002101
2102 if (input_available())
2103 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02002104 remove_any_timer();
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002105 allow_scrollbar = FALSE;
2106
2107 /* Clear pending mouse button, the release event may have been
2108 * taken by the dialog window. But don't do this when getting
2109 * focus, we need the mouse-up event then. */
2110 if (!s_getting_focus)
2111 s_button_pending = -1;
2112
2113 return OK;
2114 }
Bram Moolenaar4231da42016-06-02 14:30:04 +02002115
2116#ifdef FEAT_TIMERS
2117 if (did_add_timer)
2118 {
2119 /* Need to recompute the waiting time. */
2120 remove_any_timer();
2121 break;
2122 }
2123#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002124 }
2125 allow_scrollbar = FALSE;
2126 return FAIL;
2127}
2128
2129/*
2130 * Clear a rectangular region of the screen from text pos (row1, col1) to
2131 * (row2, col2) inclusive.
2132 */
2133 void
2134gui_mch_clear_block(
2135 int row1,
2136 int col1,
2137 int row2,
2138 int col2)
2139{
2140 RECT rc;
2141
2142 /*
2143 * Clear one extra pixel at the far right, for when bold characters have
2144 * spilled over to the window border.
2145 * Note: FillRect() excludes right and bottom of rectangle.
2146 */
2147 rc.left = FILL_X(col1);
2148 rc.top = FILL_Y(row1);
2149 rc.right = FILL_X(col2 + 1) + (col2 == Columns - 1);
2150 rc.bottom = FILL_Y(row2 + 1);
2151 clear_rect(&rc);
2152}
2153
2154/*
2155 * Clear the whole text window.
2156 */
2157 void
2158gui_mch_clear_all(void)
2159{
2160 RECT rc;
2161
2162 rc.left = 0;
2163 rc.top = 0;
2164 rc.right = Columns * gui.char_width + 2 * gui.border_width;
2165 rc.bottom = Rows * gui.char_height + 2 * gui.border_width;
2166 clear_rect(&rc);
2167}
2168/*
2169 * Menu stuff.
2170 */
2171
2172 void
2173gui_mch_enable_menu(int flag)
2174{
2175#ifdef FEAT_MENU
2176 SetMenu(s_hwnd, flag ? s_menuBar : NULL);
2177#endif
2178}
2179
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002180 void
2181gui_mch_set_menu_pos(
Bram Moolenaar1266d672017-02-01 13:43:36 +01002182 int x UNUSED,
2183 int y UNUSED,
2184 int w UNUSED,
2185 int h UNUSED)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002186{
2187 /* It will be in the right place anyway */
2188}
2189
2190#if defined(FEAT_MENU) || defined(PROTO)
2191/*
2192 * Make menu item hidden or not hidden
2193 */
2194 void
2195gui_mch_menu_hidden(
2196 vimmenu_T *menu,
2197 int hidden)
2198{
2199 /*
2200 * This doesn't do what we want. Hmm, just grey the menu items for now.
2201 */
2202 /*
2203 if (hidden)
2204 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_DISABLED);
2205 else
2206 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_ENABLED);
2207 */
2208 gui_mch_menu_grey(menu, hidden);
2209}
2210
2211/*
2212 * This is called after setting all the menus to grey/hidden or not.
2213 */
2214 void
2215gui_mch_draw_menubar(void)
2216{
2217 DrawMenuBar(s_hwnd);
2218}
2219#endif /*FEAT_MENU*/
2220
2221#ifndef PROTO
2222void
2223#ifdef VIMDLL
2224_export
2225#endif
2226_cdecl
2227SaveInst(HINSTANCE hInst)
2228{
2229 s_hinst = hInst;
2230}
2231#endif
2232
2233/*
2234 * Return the RGB value of a pixel as a long.
2235 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002236 guicolor_T
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002237gui_mch_get_rgb(guicolor_T pixel)
2238{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002239 return (guicolor_T)((GetRValue(pixel) << 16) + (GetGValue(pixel) << 8)
2240 + GetBValue(pixel));
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002241}
2242
2243#if defined(FEAT_GUI_DIALOG) || defined(PROTO)
2244/* Convert pixels in X to dialog units */
2245 static WORD
2246PixelToDialogX(int numPixels)
2247{
2248 return (WORD)((numPixels * 4) / s_dlgfntwidth);
2249}
2250
2251/* Convert pixels in Y to dialog units */
2252 static WORD
2253PixelToDialogY(int numPixels)
2254{
2255 return (WORD)((numPixels * 8) / s_dlgfntheight);
2256}
2257
2258/* Return the width in pixels of the given text in the given DC. */
2259 static int
2260GetTextWidth(HDC hdc, char_u *str, int len)
2261{
2262 SIZE size;
2263
2264 GetTextExtentPoint(hdc, (LPCSTR)str, len, &size);
2265 return size.cx;
2266}
2267
2268#ifdef FEAT_MBYTE
2269/*
2270 * Return the width in pixels of the given text in the given DC, taking care
2271 * of 'encoding' to active codepage conversion.
2272 */
2273 static int
2274GetTextWidthEnc(HDC hdc, char_u *str, int len)
2275{
2276 SIZE size;
2277 WCHAR *wstr;
2278 int n;
2279 int wlen = len;
2280
2281 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2282 {
2283 /* 'encoding' differs from active codepage: convert text and use wide
2284 * function */
2285 wstr = enc_to_utf16(str, &wlen);
2286 if (wstr != NULL)
2287 {
2288 n = GetTextExtentPointW(hdc, wstr, wlen, &size);
2289 vim_free(wstr);
2290 if (n)
2291 return size.cx;
2292 }
2293 }
2294
2295 return GetTextWidth(hdc, str, len);
2296}
2297#else
2298# define GetTextWidthEnc(h, s, l) GetTextWidth((h), (s), (l))
2299#endif
2300
Bram Moolenaar87f3d202016-12-01 20:18:50 +01002301static void get_work_area(RECT *spi_rect);
2302
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002303/*
2304 * A quick little routine that will center one window over another, handy for
Bram Moolenaar87f3d202016-12-01 20:18:50 +01002305 * dialog boxes. Taken from the Win32SDK samples and modified for multiple
2306 * monitors.
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002307 */
2308 static BOOL
2309CenterWindow(
2310 HWND hwndChild,
2311 HWND hwndParent)
2312{
Bram Moolenaar87f3d202016-12-01 20:18:50 +01002313 HMONITOR mon;
2314 MONITORINFO moninfo;
2315 RECT rChild, rParent, rScreen;
2316 int wChild, hChild, wParent, hParent;
2317 int xNew, yNew;
2318 HDC hdc;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002319
2320 GetWindowRect(hwndChild, &rChild);
2321 wChild = rChild.right - rChild.left;
2322 hChild = rChild.bottom - rChild.top;
2323
2324 /* If Vim is minimized put the window in the middle of the screen. */
2325 if (hwndParent == NULL || IsMinimized(hwndParent))
Bram Moolenaar87f3d202016-12-01 20:18:50 +01002326 get_work_area(&rParent);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002327 else
2328 GetWindowRect(hwndParent, &rParent);
2329 wParent = rParent.right - rParent.left;
2330 hParent = rParent.bottom - rParent.top;
2331
Bram Moolenaar87f3d202016-12-01 20:18:50 +01002332 moninfo.cbSize = sizeof(MONITORINFO);
2333 mon = MonitorFromWindow(hwndChild, MONITOR_DEFAULTTOPRIMARY);
2334 if (mon != NULL && GetMonitorInfo(mon, &moninfo))
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002335 {
Bram Moolenaar87f3d202016-12-01 20:18:50 +01002336 rScreen = moninfo.rcWork;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002337 }
Bram Moolenaar87f3d202016-12-01 20:18:50 +01002338 else
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002339 {
Bram Moolenaar87f3d202016-12-01 20:18:50 +01002340 hdc = GetDC(hwndChild);
2341 rScreen.left = 0;
2342 rScreen.top = 0;
2343 rScreen.right = GetDeviceCaps(hdc, HORZRES);
2344 rScreen.bottom = GetDeviceCaps(hdc, VERTRES);
2345 ReleaseDC(hwndChild, hdc);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002346 }
2347
Bram Moolenaar87f3d202016-12-01 20:18:50 +01002348 xNew = rParent.left + ((wParent - wChild) / 2);
2349 if (xNew < rScreen.left)
2350 xNew = rScreen.left;
2351 else if ((xNew + wChild) > rScreen.right)
2352 xNew = rScreen.right - wChild;
2353
2354 yNew = rParent.top + ((hParent - hChild) / 2);
2355 if (yNew < rScreen.top)
2356 yNew = rScreen.top;
2357 else if ((yNew + hChild) > rScreen.bottom)
2358 yNew = rScreen.bottom - hChild;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002359
2360 return SetWindowPos(hwndChild, NULL, xNew, yNew, 0, 0,
2361 SWP_NOSIZE | SWP_NOZORDER);
2362}
2363#endif /* FEAT_GUI_DIALOG */
2364
2365void
2366gui_mch_activate_window(void)
2367{
2368 (void)SetActiveWindow(s_hwnd);
2369}
2370
2371#if defined(FEAT_TOOLBAR) || defined(PROTO)
2372 void
2373gui_mch_show_toolbar(int showit)
2374{
2375 if (s_toolbarhwnd == NULL)
2376 return;
2377
2378 if (showit)
2379 {
2380# ifdef FEAT_MBYTE
2381# ifndef TB_SETUNICODEFORMAT
2382 /* For older compilers. We assume this never changes. */
2383# define TB_SETUNICODEFORMAT 0x2005
2384# endif
2385 /* Enable/disable unicode support */
2386 int uu = (enc_codepage >= 0 && (int)GetACP() != enc_codepage);
2387 SendMessage(s_toolbarhwnd, TB_SETUNICODEFORMAT, (WPARAM)uu, (LPARAM)0);
2388# endif
2389 ShowWindow(s_toolbarhwnd, SW_SHOW);
2390 }
2391 else
2392 ShowWindow(s_toolbarhwnd, SW_HIDE);
2393}
2394
2395/* Then number of bitmaps is fixed. Exit is missing! */
2396#define TOOLBAR_BITMAP_COUNT 31
2397
2398#endif
2399
2400#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
2401 static void
2402add_tabline_popup_menu_entry(HMENU pmenu, UINT item_id, char_u *item_text)
2403{
2404#ifdef FEAT_MBYTE
2405 WCHAR *wn = NULL;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002406
2407 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2408 {
2409 /* 'encoding' differs from active codepage: convert menu name
2410 * and use wide function */
2411 wn = enc_to_utf16(item_text, NULL);
2412 if (wn != NULL)
2413 {
2414 MENUITEMINFOW infow;
2415
2416 infow.cbSize = sizeof(infow);
2417 infow.fMask = MIIM_TYPE | MIIM_ID;
2418 infow.wID = item_id;
2419 infow.fType = MFT_STRING;
2420 infow.dwTypeData = wn;
2421 infow.cch = (UINT)wcslen(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002422 InsertMenuItemW(pmenu, item_id, FALSE, &infow);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002423 vim_free(wn);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002424 }
2425 }
2426
2427 if (wn == NULL)
2428#endif
2429 {
2430 MENUITEMINFO info;
2431
2432 info.cbSize = sizeof(info);
2433 info.fMask = MIIM_TYPE | MIIM_ID;
2434 info.wID = item_id;
2435 info.fType = MFT_STRING;
2436 info.dwTypeData = (LPTSTR)item_text;
2437 info.cch = (UINT)STRLEN(item_text);
2438 InsertMenuItem(pmenu, item_id, FALSE, &info);
2439 }
2440}
2441
2442 static void
2443show_tabline_popup_menu(void)
2444{
2445 HMENU tab_pmenu;
2446 long rval;
2447 POINT pt;
2448
2449 /* When ignoring events don't show the menu. */
2450 if (hold_gui_events
2451# ifdef FEAT_CMDWIN
2452 || cmdwin_type != 0
2453# endif
2454 )
2455 return;
2456
2457 tab_pmenu = CreatePopupMenu();
2458 if (tab_pmenu == NULL)
2459 return;
2460
2461 if (first_tabpage->tp_next != NULL)
2462 add_tabline_popup_menu_entry(tab_pmenu,
2463 TABLINE_MENU_CLOSE, (char_u *)_("Close tab"));
2464 add_tabline_popup_menu_entry(tab_pmenu,
2465 TABLINE_MENU_NEW, (char_u *)_("New tab"));
2466 add_tabline_popup_menu_entry(tab_pmenu,
2467 TABLINE_MENU_OPEN, (char_u *)_("Open tab..."));
2468
2469 GetCursorPos(&pt);
2470 rval = TrackPopupMenuEx(tab_pmenu, TPM_RETURNCMD, pt.x, pt.y, s_tabhwnd,
2471 NULL);
2472
2473 DestroyMenu(tab_pmenu);
2474
2475 /* Add the string cmd into input buffer */
2476 if (rval > 0)
2477 {
2478 TCHITTESTINFO htinfo;
2479 int idx;
2480
2481 if (ScreenToClient(s_tabhwnd, &pt) == 0)
2482 return;
2483
2484 htinfo.pt.x = pt.x;
2485 htinfo.pt.y = pt.y;
2486 idx = TabCtrl_HitTest(s_tabhwnd, &htinfo);
2487 if (idx == -1)
2488 idx = 0;
2489 else
2490 idx += 1;
2491
2492 send_tabline_menu_event(idx, (int)rval);
2493 }
2494}
2495
2496/*
2497 * Show or hide the tabline.
2498 */
2499 void
2500gui_mch_show_tabline(int showit)
2501{
2502 if (s_tabhwnd == NULL)
2503 return;
2504
2505 if (!showit != !showing_tabline)
2506 {
2507 if (showit)
2508 ShowWindow(s_tabhwnd, SW_SHOW);
2509 else
2510 ShowWindow(s_tabhwnd, SW_HIDE);
2511 showing_tabline = showit;
2512 }
2513}
2514
2515/*
2516 * Return TRUE when tabline is displayed.
2517 */
2518 int
2519gui_mch_showing_tabline(void)
2520{
2521 return s_tabhwnd != NULL && showing_tabline;
2522}
2523
2524/*
2525 * Update the labels of the tabline.
2526 */
2527 void
2528gui_mch_update_tabline(void)
2529{
2530 tabpage_T *tp;
2531 TCITEM tie;
2532 int nr = 0;
2533 int curtabidx = 0;
2534 int tabadded = 0;
2535#ifdef FEAT_MBYTE
2536 static int use_unicode = FALSE;
2537 int uu;
2538 WCHAR *wstr = NULL;
2539#endif
2540
2541 if (s_tabhwnd == NULL)
2542 return;
2543
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002544#ifdef FEAT_MBYTE
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002545# ifndef CCM_SETUNICODEFORMAT
2546 /* For older compilers. We assume this never changes. */
2547# define CCM_SETUNICODEFORMAT 0x2005
2548# endif
2549 uu = (enc_codepage >= 0 && (int)GetACP() != enc_codepage);
2550 if (uu != use_unicode)
2551 {
2552 /* Enable/disable unicode support */
2553 SendMessage(s_tabhwnd, CCM_SETUNICODEFORMAT, (WPARAM)uu, (LPARAM)0);
2554 use_unicode = uu;
2555 }
2556#endif
2557
2558 tie.mask = TCIF_TEXT;
2559 tie.iImage = -1;
2560
2561 /* Disable redraw for tab updates to eliminate O(N^2) draws. */
2562 SendMessage(s_tabhwnd, WM_SETREDRAW, (WPARAM)FALSE, 0);
2563
2564 /* Add a label for each tab page. They all contain the same text area. */
2565 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
2566 {
2567 if (tp == curtab)
2568 curtabidx = nr;
2569
2570 if (nr >= TabCtrl_GetItemCount(s_tabhwnd))
2571 {
2572 /* Add the tab */
2573 tie.pszText = "-Empty-";
2574 TabCtrl_InsertItem(s_tabhwnd, nr, &tie);
2575 tabadded = 1;
2576 }
2577
2578 get_tabline_label(tp, FALSE);
2579 tie.pszText = (LPSTR)NameBuff;
2580#ifdef FEAT_MBYTE
2581 wstr = NULL;
2582 if (use_unicode)
2583 {
2584 /* Need to go through Unicode. */
2585 wstr = enc_to_utf16(NameBuff, NULL);
2586 if (wstr != NULL)
2587 {
2588 TCITEMW tiw;
2589
2590 tiw.mask = TCIF_TEXT;
2591 tiw.iImage = -1;
2592 tiw.pszText = wstr;
2593 SendMessage(s_tabhwnd, TCM_SETITEMW, (WPARAM)nr, (LPARAM)&tiw);
2594 vim_free(wstr);
2595 }
2596 }
2597 if (wstr == NULL)
2598#endif
2599 {
2600 TabCtrl_SetItem(s_tabhwnd, nr, &tie);
2601 }
2602 }
2603
2604 /* Remove any old labels. */
2605 while (nr < TabCtrl_GetItemCount(s_tabhwnd))
2606 TabCtrl_DeleteItem(s_tabhwnd, nr);
2607
2608 if (!tabadded && TabCtrl_GetCurSel(s_tabhwnd) != curtabidx)
2609 TabCtrl_SetCurSel(s_tabhwnd, curtabidx);
2610
2611 /* Re-enable redraw and redraw. */
2612 SendMessage(s_tabhwnd, WM_SETREDRAW, (WPARAM)TRUE, 0);
2613 RedrawWindow(s_tabhwnd, NULL, NULL,
2614 RDW_ERASE | RDW_FRAME | RDW_INVALIDATE | RDW_ALLCHILDREN);
2615
2616 if (tabadded && TabCtrl_GetCurSel(s_tabhwnd) != curtabidx)
2617 TabCtrl_SetCurSel(s_tabhwnd, curtabidx);
2618}
2619
2620/*
2621 * Set the current tab to "nr". First tab is 1.
2622 */
2623 void
2624gui_mch_set_curtab(int nr)
2625{
2626 if (s_tabhwnd == NULL)
2627 return;
2628
2629 if (TabCtrl_GetCurSel(s_tabhwnd) != nr - 1)
2630 TabCtrl_SetCurSel(s_tabhwnd, nr - 1);
2631}
2632
2633#endif
2634
2635/*
2636 * ":simalt" command.
2637 */
2638 void
2639ex_simalt(exarg_T *eap)
2640{
Bram Moolenaar7a85b0f2017-04-22 15:17:40 +02002641 char_u *keys = eap->arg;
2642 int fill_typebuf = FALSE;
2643 char_u key_name[4];
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002644
2645 PostMessage(s_hwnd, WM_SYSCOMMAND, (WPARAM)SC_KEYMENU, (LPARAM)0);
2646 while (*keys)
2647 {
2648 if (*keys == '~')
2649 *keys = ' '; /* for showing system menu */
2650 PostMessage(s_hwnd, WM_CHAR, (WPARAM)*keys, (LPARAM)0);
2651 keys++;
Bram Moolenaar7a85b0f2017-04-22 15:17:40 +02002652 fill_typebuf = TRUE;
2653 }
2654 if (fill_typebuf)
2655 {
Bram Moolenaara21ccb72017-04-29 17:40:22 +02002656 /* Put a NOP in the typeahead buffer so that the message will get
Bram Moolenaar7a85b0f2017-04-22 15:17:40 +02002657 * processed. */
2658 key_name[0] = K_SPECIAL;
2659 key_name[1] = KS_EXTRA;
Bram Moolenaara21ccb72017-04-29 17:40:22 +02002660 key_name[2] = KE_NOP;
Bram Moolenaar7a85b0f2017-04-22 15:17:40 +02002661 key_name[3] = NUL;
2662 typebuf_was_filled = TRUE;
2663 (void)ins_typebuf(key_name, REMAP_NONE, 0, TRUE, FALSE);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002664 }
2665}
2666
2667/*
2668 * Create the find & replace dialogs.
2669 * You can't have both at once: ":find" when replace is showing, destroys
2670 * the replace dialog first, and the other way around.
2671 */
2672#ifdef MSWIN_FIND_REPLACE
2673 static void
2674initialise_findrep(char_u *initial_string)
2675{
2676 int wword = FALSE;
2677 int mcase = !p_ic;
2678 char_u *entry_text;
2679
2680 /* Get the search string to use. */
2681 entry_text = get_find_dialog_text(initial_string, &wword, &mcase);
2682
2683 s_findrep_struct.hwndOwner = s_hwnd;
2684 s_findrep_struct.Flags = FR_DOWN;
2685 if (mcase)
2686 s_findrep_struct.Flags |= FR_MATCHCASE;
2687 if (wword)
2688 s_findrep_struct.Flags |= FR_WHOLEWORD;
2689 if (entry_text != NULL && *entry_text != NUL)
2690 vim_strncpy((char_u *)s_findrep_struct.lpstrFindWhat, entry_text,
2691 s_findrep_struct.wFindWhatLen - 1);
2692 vim_free(entry_text);
2693}
2694#endif
2695
2696 static void
2697set_window_title(HWND hwnd, char *title)
2698{
2699#ifdef FEAT_MBYTE
2700 if (title != NULL && enc_codepage >= 0 && enc_codepage != (int)GetACP())
2701 {
2702 WCHAR *wbuf;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002703
2704 /* Convert the title from 'encoding' to UTF-16. */
2705 wbuf = (WCHAR *)enc_to_utf16((char_u *)title, NULL);
2706 if (wbuf != NULL)
2707 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002708 SetWindowTextW(hwnd, wbuf);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002709 vim_free(wbuf);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002710 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002711 return;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002712 }
2713#endif
2714 (void)SetWindowText(hwnd, (LPCSTR)title);
2715}
2716
2717 void
2718gui_mch_find_dialog(exarg_T *eap)
2719{
2720#ifdef MSWIN_FIND_REPLACE
2721 if (s_findrep_msg != 0)
2722 {
2723 if (IsWindow(s_findrep_hwnd) && !s_findrep_is_find)
2724 DestroyWindow(s_findrep_hwnd);
2725
2726 if (!IsWindow(s_findrep_hwnd))
2727 {
2728 initialise_findrep(eap->arg);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002729# ifdef FEAT_MBYTE
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002730 /* If the OS is Windows NT, and 'encoding' differs from active
2731 * codepage: convert text and use wide function. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002732 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002733 {
2734 findrep_atow(&s_findrep_struct_w, &s_findrep_struct);
2735 s_findrep_hwnd = FindTextW(
2736 (LPFINDREPLACEW) &s_findrep_struct_w);
2737 }
2738 else
2739# endif
2740 s_findrep_hwnd = FindText((LPFINDREPLACE) &s_findrep_struct);
2741 }
2742
2743 set_window_title(s_findrep_hwnd,
2744 _("Find string (use '\\\\' to find a '\\')"));
2745 (void)SetFocus(s_findrep_hwnd);
2746
2747 s_findrep_is_find = TRUE;
2748 }
2749#endif
2750}
2751
2752
2753 void
2754gui_mch_replace_dialog(exarg_T *eap)
2755{
2756#ifdef MSWIN_FIND_REPLACE
2757 if (s_findrep_msg != 0)
2758 {
2759 if (IsWindow(s_findrep_hwnd) && s_findrep_is_find)
2760 DestroyWindow(s_findrep_hwnd);
2761
2762 if (!IsWindow(s_findrep_hwnd))
2763 {
2764 initialise_findrep(eap->arg);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002765# ifdef FEAT_MBYTE
2766 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002767 {
2768 findrep_atow(&s_findrep_struct_w, &s_findrep_struct);
2769 s_findrep_hwnd = ReplaceTextW(
2770 (LPFINDREPLACEW) &s_findrep_struct_w);
2771 }
2772 else
2773# endif
2774 s_findrep_hwnd = ReplaceText(
2775 (LPFINDREPLACE) &s_findrep_struct);
2776 }
2777
2778 set_window_title(s_findrep_hwnd,
2779 _("Find & Replace (use '\\\\' to find a '\\')"));
2780 (void)SetFocus(s_findrep_hwnd);
2781
2782 s_findrep_is_find = FALSE;
2783 }
2784#endif
2785}
2786
2787
2788/*
2789 * Set visibility of the pointer.
2790 */
2791 void
2792gui_mch_mousehide(int hide)
2793{
2794 if (hide != gui.pointer_hidden)
2795 {
2796 ShowCursor(!hide);
2797 gui.pointer_hidden = hide;
2798 }
2799}
2800
2801#ifdef FEAT_MENU
2802 static void
2803gui_mch_show_popupmenu_at(vimmenu_T *menu, int x, int y)
2804{
2805 /* Unhide the mouse, we don't get move events here. */
2806 gui_mch_mousehide(FALSE);
2807
2808 (void)TrackPopupMenu(
2809 (HMENU)menu->submenu_id,
2810 TPM_LEFTALIGN | TPM_LEFTBUTTON,
2811 x, y,
2812 (int)0, /*reserved param*/
2813 s_hwnd,
2814 NULL);
2815 /*
2816 * NOTE: The pop-up menu can eat the mouse up event.
2817 * We deal with this in normal.c.
2818 */
2819}
2820#endif
2821
2822/*
2823 * Got a message when the system will go down.
2824 */
2825 static void
2826_OnEndSession(void)
2827{
2828 getout_preserve_modified(1);
2829}
2830
2831/*
2832 * Get this message when the user clicks on the cross in the top right corner
2833 * of a Windows95 window.
2834 */
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002835 static void
Bram Moolenaar1266d672017-02-01 13:43:36 +01002836_OnClose(HWND hwnd UNUSED)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002837{
2838 gui_shell_closed();
2839}
2840
2841/*
2842 * Get a message when the window is being destroyed.
2843 */
2844 static void
Bram Moolenaar1266d672017-02-01 13:43:36 +01002845_OnDestroy(HWND hwnd)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002846{
2847 if (!destroying)
2848 _OnClose(hwnd);
2849}
2850
2851 static void
2852_OnPaint(
2853 HWND hwnd)
2854{
2855 if (!IsMinimized(hwnd))
2856 {
2857 PAINTSTRUCT ps;
2858
2859 out_flush(); /* make sure all output has been processed */
2860 (void)BeginPaint(hwnd, &ps);
2861#if defined(FEAT_DIRECTX)
2862 if (IS_ENABLE_DIRECTX())
2863 DWriteContext_BeginDraw(s_dwc);
2864#endif
2865
2866#ifdef FEAT_MBYTE
2867 /* prevent multi-byte characters from misprinting on an invalid
2868 * rectangle */
2869 if (has_mbyte)
2870 {
2871 RECT rect;
2872
2873 GetClientRect(hwnd, &rect);
2874 ps.rcPaint.left = rect.left;
2875 ps.rcPaint.right = rect.right;
2876 }
2877#endif
2878
2879 if (!IsRectEmpty(&ps.rcPaint))
2880 {
2881#if defined(FEAT_DIRECTX)
2882 if (IS_ENABLE_DIRECTX())
2883 DWriteContext_BindDC(s_dwc, s_hdc, &ps.rcPaint);
2884#endif
2885 gui_redraw(ps.rcPaint.left, ps.rcPaint.top,
2886 ps.rcPaint.right - ps.rcPaint.left + 1,
2887 ps.rcPaint.bottom - ps.rcPaint.top + 1);
2888 }
2889
2890#if defined(FEAT_DIRECTX)
2891 if (IS_ENABLE_DIRECTX())
2892 DWriteContext_EndDraw(s_dwc);
2893#endif
2894 EndPaint(hwnd, &ps);
2895 }
2896}
2897
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002898 static void
2899_OnSize(
2900 HWND hwnd,
Bram Moolenaar1266d672017-02-01 13:43:36 +01002901 UINT state UNUSED,
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002902 int cx,
2903 int cy)
2904{
2905 if (!IsMinimized(hwnd))
2906 {
2907 gui_resize_shell(cx, cy);
2908
2909#ifdef FEAT_MENU
2910 /* Menu bar may wrap differently now */
2911 gui_mswin_get_menu_height(TRUE);
2912#endif
2913 }
2914}
2915
2916 static void
2917_OnSetFocus(
2918 HWND hwnd,
2919 HWND hwndOldFocus)
2920{
2921 gui_focus_change(TRUE);
2922 s_getting_focus = TRUE;
2923 (void)MyWindowProc(hwnd, WM_SETFOCUS, (WPARAM)hwndOldFocus, 0);
2924}
2925
2926 static void
2927_OnKillFocus(
2928 HWND hwnd,
2929 HWND hwndNewFocus)
2930{
2931 gui_focus_change(FALSE);
2932 s_getting_focus = FALSE;
2933 (void)MyWindowProc(hwnd, WM_KILLFOCUS, (WPARAM)hwndNewFocus, 0);
2934}
2935
2936/*
2937 * Get a message when the user switches back to vim
2938 */
2939 static LRESULT
2940_OnActivateApp(
2941 HWND hwnd,
2942 BOOL fActivate,
2943 DWORD dwThreadId)
2944{
2945 /* we call gui_focus_change() in _OnSetFocus() */
2946 /* gui_focus_change((int)fActivate); */
2947 return MyWindowProc(hwnd, WM_ACTIVATEAPP, fActivate, (DWORD)dwThreadId);
2948}
2949
2950#if defined(FEAT_WINDOWS) || defined(PROTO)
2951 void
2952gui_mch_destroy_scrollbar(scrollbar_T *sb)
2953{
2954 DestroyWindow(sb->id);
2955}
2956#endif
2957
2958/*
2959 * Get current mouse coordinates in text window.
2960 */
2961 void
2962gui_mch_getmouse(int *x, int *y)
2963{
2964 RECT rct;
2965 POINT mp;
2966
2967 (void)GetWindowRect(s_textArea, &rct);
2968 (void)GetCursorPos((LPPOINT)&mp);
2969 *x = (int)(mp.x - rct.left);
2970 *y = (int)(mp.y - rct.top);
2971}
2972
2973/*
2974 * Move mouse pointer to character at (x, y).
2975 */
2976 void
2977gui_mch_setmouse(int x, int y)
2978{
2979 RECT rct;
2980
2981 (void)GetWindowRect(s_textArea, &rct);
2982 (void)SetCursorPos(x + gui.border_offset + rct.left,
2983 y + gui.border_offset + rct.top);
2984}
2985
2986 static void
2987gui_mswin_get_valid_dimensions(
2988 int w,
2989 int h,
2990 int *valid_w,
2991 int *valid_h)
2992{
2993 int base_width, base_height;
2994
2995 base_width = gui_get_base_width()
2996 + (GetSystemMetrics(SM_CXFRAME) +
2997 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2;
2998 base_height = gui_get_base_height()
2999 + (GetSystemMetrics(SM_CYFRAME) +
3000 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2
3001 + GetSystemMetrics(SM_CYCAPTION)
3002#ifdef FEAT_MENU
3003 + gui_mswin_get_menu_height(FALSE)
3004#endif
3005 ;
3006 *valid_w = base_width +
3007 ((w - base_width) / gui.char_width) * gui.char_width;
3008 *valid_h = base_height +
3009 ((h - base_height) / gui.char_height) * gui.char_height;
3010}
3011
3012 void
3013gui_mch_flash(int msec)
3014{
3015 RECT rc;
3016
3017 /*
3018 * Note: InvertRect() excludes right and bottom of rectangle.
3019 */
3020 rc.left = 0;
3021 rc.top = 0;
3022 rc.right = gui.num_cols * gui.char_width;
3023 rc.bottom = gui.num_rows * gui.char_height;
3024 InvertRect(s_hdc, &rc);
3025 gui_mch_flush(); /* make sure it's displayed */
3026
3027 ui_delay((long)msec, TRUE); /* wait for a few msec */
3028
3029 InvertRect(s_hdc, &rc);
3030}
3031
3032/*
3033 * Return flags used for scrolling.
3034 * The SW_INVALIDATE is required when part of the window is covered or
3035 * off-screen. Refer to MS KB Q75236.
3036 */
3037 static int
3038get_scroll_flags(void)
3039{
3040 HWND hwnd;
3041 RECT rcVim, rcOther, rcDest;
3042
3043 GetWindowRect(s_hwnd, &rcVim);
3044
3045 /* Check if the window is partly above or below the screen. We don't care
3046 * about partly left or right of the screen, it is not relevant when
3047 * scrolling up or down. */
3048 if (rcVim.top < 0 || rcVim.bottom > GetSystemMetrics(SM_CYFULLSCREEN))
3049 return SW_INVALIDATE;
3050
3051 /* Check if there is an window (partly) on top of us. */
3052 for (hwnd = s_hwnd; (hwnd = GetWindow(hwnd, GW_HWNDPREV)) != (HWND)0; )
3053 if (IsWindowVisible(hwnd))
3054 {
3055 GetWindowRect(hwnd, &rcOther);
3056 if (IntersectRect(&rcDest, &rcVim, &rcOther))
3057 return SW_INVALIDATE;
3058 }
3059 return 0;
3060}
3061
3062/*
3063 * On some Intel GPUs, the regions drawn just prior to ScrollWindowEx()
3064 * may not be scrolled out properly.
3065 * For gVim, when _OnScroll() is repeated, the character at the
3066 * previous cursor position may be left drawn after scroll.
3067 * The problem can be avoided by calling GetPixel() to get a pixel in
3068 * the region before ScrollWindowEx().
3069 */
3070 static void
3071intel_gpu_workaround(void)
3072{
3073 GetPixel(s_hdc, FILL_X(gui.col), FILL_Y(gui.row));
3074}
3075
3076/*
3077 * Delete the given number of lines from the given row, scrolling up any
3078 * text further down within the scroll region.
3079 */
3080 void
3081gui_mch_delete_lines(
3082 int row,
3083 int num_lines)
3084{
3085 RECT rc;
3086
3087 intel_gpu_workaround();
3088
3089 rc.left = FILL_X(gui.scroll_region_left);
3090 rc.right = FILL_X(gui.scroll_region_right + 1);
3091 rc.top = FILL_Y(row);
3092 rc.bottom = FILL_Y(gui.scroll_region_bot + 1);
3093
3094 ScrollWindowEx(s_textArea, 0, -num_lines * gui.char_height,
3095 &rc, &rc, NULL, NULL, get_scroll_flags());
3096
3097 UpdateWindow(s_textArea);
3098 /* This seems to be required to avoid the cursor disappearing when
3099 * scrolling such that the cursor ends up in the top-left character on
3100 * the screen... But why? (Webb) */
3101 /* It's probably fixed by disabling drawing the cursor while scrolling. */
3102 /* gui.cursor_is_valid = FALSE; */
3103
3104 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
3105 gui.scroll_region_left,
3106 gui.scroll_region_bot, gui.scroll_region_right);
3107}
3108
3109/*
3110 * Insert the given number of lines before the given row, scrolling down any
3111 * following text within the scroll region.
3112 */
3113 void
3114gui_mch_insert_lines(
3115 int row,
3116 int num_lines)
3117{
3118 RECT rc;
3119
3120 intel_gpu_workaround();
3121
3122 rc.left = FILL_X(gui.scroll_region_left);
3123 rc.right = FILL_X(gui.scroll_region_right + 1);
3124 rc.top = FILL_Y(row);
3125 rc.bottom = FILL_Y(gui.scroll_region_bot + 1);
3126 /* The SW_INVALIDATE is required when part of the window is covered or
3127 * off-screen. How do we avoid it when it's not needed? */
3128 ScrollWindowEx(s_textArea, 0, num_lines * gui.char_height,
3129 &rc, &rc, NULL, NULL, get_scroll_flags());
3130
3131 UpdateWindow(s_textArea);
3132
3133 gui_clear_block(row, gui.scroll_region_left,
3134 row + num_lines - 1, gui.scroll_region_right);
3135}
3136
3137
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003138 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01003139gui_mch_exit(int rc UNUSED)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003140{
3141#if defined(FEAT_DIRECTX)
3142 DWriteContext_Close(s_dwc);
3143 DWrite_Final();
3144 s_dwc = NULL;
3145#endif
3146
3147 ReleaseDC(s_textArea, s_hdc);
3148 DeleteObject(s_brush);
3149
3150#ifdef FEAT_TEAROFF
3151 /* Unload the tearoff bitmap */
3152 (void)DeleteObject((HGDIOBJ)s_htearbitmap);
3153#endif
3154
3155 /* Destroy our window (if we have one). */
3156 if (s_hwnd != NULL)
3157 {
3158 destroying = TRUE; /* ignore WM_DESTROY message now */
3159 DestroyWindow(s_hwnd);
3160 }
3161
3162#ifdef GLOBAL_IME
3163 global_ime_end();
3164#endif
3165}
3166
3167 static char_u *
3168logfont2name(LOGFONT lf)
3169{
3170 char *p;
3171 char *res;
3172 char *charset_name;
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02003173 char *quality_name;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003174 char *font_name = lf.lfFaceName;
3175
3176 charset_name = charset_id2name((int)lf.lfCharSet);
3177#ifdef FEAT_MBYTE
3178 /* Convert a font name from the current codepage to 'encoding'.
3179 * TODO: Use Wide APIs (including LOGFONTW) instead of ANSI APIs. */
3180 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3181 {
3182 int len;
3183 acp_to_enc((char_u *)lf.lfFaceName, (int)strlen(lf.lfFaceName),
3184 (char_u **)&font_name, &len);
3185 }
3186#endif
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02003187 quality_name = quality_id2name((int)lf.lfQuality);
3188
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003189 res = (char *)alloc((unsigned)(strlen(font_name) + 20
3190 + (charset_name == NULL ? 0 : strlen(charset_name) + 2)));
3191 if (res != NULL)
3192 {
3193 p = res;
3194 /* make a normal font string out of the lf thing:*/
3195 sprintf((char *)p, "%s:h%d", font_name, pixels_to_points(
3196 lf.lfHeight < 0 ? -lf.lfHeight : lf.lfHeight, TRUE));
3197 while (*p)
3198 {
3199 if (*p == ' ')
3200 *p = '_';
3201 ++p;
3202 }
3203 if (lf.lfItalic)
3204 STRCAT(p, ":i");
3205 if (lf.lfWeight >= FW_BOLD)
3206 STRCAT(p, ":b");
3207 if (lf.lfUnderline)
3208 STRCAT(p, ":u");
3209 if (lf.lfStrikeOut)
3210 STRCAT(p, ":s");
3211 if (charset_name != NULL)
3212 {
3213 STRCAT(p, ":c");
3214 STRCAT(p, charset_name);
3215 }
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02003216 if (quality_name != NULL)
3217 {
3218 STRCAT(p, ":q");
3219 STRCAT(p, quality_name);
3220 }
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003221 }
3222
3223#ifdef FEAT_MBYTE
3224 if (font_name != lf.lfFaceName)
3225 vim_free(font_name);
3226#endif
3227 return (char_u *)res;
3228}
3229
3230
3231#ifdef FEAT_MBYTE_IME
3232/*
3233 * Set correct LOGFONT to IME. Use 'guifontwide' if available, otherwise use
3234 * 'guifont'
3235 */
3236 static void
3237update_im_font(void)
3238{
3239 LOGFONT lf_wide;
3240
3241 if (p_guifontwide != NULL && *p_guifontwide != NUL
3242 && gui.wide_font != NOFONT
3243 && GetObject((HFONT)gui.wide_font, sizeof(lf_wide), &lf_wide))
3244 norm_logfont = lf_wide;
3245 else
3246 norm_logfont = sub_logfont;
3247 im_set_font(&norm_logfont);
3248}
3249#endif
3250
3251#ifdef FEAT_MBYTE
3252/*
3253 * Handler of gui.wide_font (p_guifontwide) changed notification.
3254 */
3255 void
3256gui_mch_wide_font_changed(void)
3257{
3258 LOGFONT lf;
3259
3260# ifdef FEAT_MBYTE_IME
3261 update_im_font();
3262# endif
3263
3264 gui_mch_free_font(gui.wide_ital_font);
3265 gui.wide_ital_font = NOFONT;
3266 gui_mch_free_font(gui.wide_bold_font);
3267 gui.wide_bold_font = NOFONT;
3268 gui_mch_free_font(gui.wide_boldital_font);
3269 gui.wide_boldital_font = NOFONT;
3270
3271 if (gui.wide_font
3272 && GetObject((HFONT)gui.wide_font, sizeof(lf), &lf))
3273 {
3274 if (!lf.lfItalic)
3275 {
3276 lf.lfItalic = TRUE;
3277 gui.wide_ital_font = get_font_handle(&lf);
3278 lf.lfItalic = FALSE;
3279 }
3280 if (lf.lfWeight < FW_BOLD)
3281 {
3282 lf.lfWeight = FW_BOLD;
3283 gui.wide_bold_font = get_font_handle(&lf);
3284 if (!lf.lfItalic)
3285 {
3286 lf.lfItalic = TRUE;
3287 gui.wide_boldital_font = get_font_handle(&lf);
3288 }
3289 }
3290 }
3291}
3292#endif
3293
3294/*
3295 * Initialise vim to use the font with the given name.
3296 * Return FAIL if the font could not be loaded, OK otherwise.
3297 */
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003298 int
Bram Moolenaar1266d672017-02-01 13:43:36 +01003299gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003300{
3301 LOGFONT lf;
3302 GuiFont font = NOFONT;
3303 char_u *p;
3304
3305 /* Load the font */
3306 if (get_logfont(&lf, font_name, NULL, TRUE) == OK)
3307 font = get_font_handle(&lf);
3308 if (font == NOFONT)
3309 return FAIL;
3310
3311 if (font_name == NULL)
3312 font_name = (char_u *)lf.lfFaceName;
3313#if defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME)
3314 norm_logfont = lf;
3315 sub_logfont = lf;
3316#endif
3317#ifdef FEAT_MBYTE_IME
3318 update_im_font();
3319#endif
3320 gui_mch_free_font(gui.norm_font);
3321 gui.norm_font = font;
3322 current_font_height = lf.lfHeight;
3323 GetFontSize(font);
3324
3325 p = logfont2name(lf);
3326 if (p != NULL)
3327 {
3328 hl_set_font_name(p);
3329
3330 /* When setting 'guifont' to "*" replace it with the actual font name.
3331 * */
3332 if (STRCMP(font_name, "*") == 0 && STRCMP(p_guifont, "*") == 0)
3333 {
3334 vim_free(p_guifont);
3335 p_guifont = p;
3336 }
3337 else
3338 vim_free(p);
3339 }
3340
3341 gui_mch_free_font(gui.ital_font);
3342 gui.ital_font = NOFONT;
3343 gui_mch_free_font(gui.bold_font);
3344 gui.bold_font = NOFONT;
3345 gui_mch_free_font(gui.boldital_font);
3346 gui.boldital_font = NOFONT;
3347
3348 if (!lf.lfItalic)
3349 {
3350 lf.lfItalic = TRUE;
3351 gui.ital_font = get_font_handle(&lf);
3352 lf.lfItalic = FALSE;
3353 }
3354 if (lf.lfWeight < FW_BOLD)
3355 {
3356 lf.lfWeight = FW_BOLD;
3357 gui.bold_font = get_font_handle(&lf);
3358 if (!lf.lfItalic)
3359 {
3360 lf.lfItalic = TRUE;
3361 gui.boldital_font = get_font_handle(&lf);
3362 }
3363 }
3364
3365 return OK;
3366}
3367
3368#ifndef WPF_RESTORETOMAXIMIZED
3369# define WPF_RESTORETOMAXIMIZED 2 /* just in case someone doesn't have it */
3370#endif
3371
3372/*
3373 * Return TRUE if the GUI window is maximized, filling the whole screen.
3374 */
3375 int
3376gui_mch_maximized(void)
3377{
3378 WINDOWPLACEMENT wp;
3379
3380 wp.length = sizeof(WINDOWPLACEMENT);
3381 if (GetWindowPlacement(s_hwnd, &wp))
3382 return wp.showCmd == SW_SHOWMAXIMIZED
3383 || (wp.showCmd == SW_SHOWMINIMIZED
3384 && wp.flags == WPF_RESTORETOMAXIMIZED);
3385
3386 return 0;
3387}
3388
3389/*
3390 * Called when the font changed while the window is maximized. Compute the
3391 * new Rows and Columns. This is like resizing the window.
3392 */
3393 void
3394gui_mch_newfont(void)
3395{
3396 RECT rect;
3397
3398 GetWindowRect(s_hwnd, &rect);
3399 if (win_socket_id == 0)
3400 {
3401 gui_resize_shell(rect.right - rect.left
3402 - (GetSystemMetrics(SM_CXFRAME) +
3403 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2,
3404 rect.bottom - rect.top
3405 - (GetSystemMetrics(SM_CYFRAME) +
3406 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2
3407 - GetSystemMetrics(SM_CYCAPTION)
3408#ifdef FEAT_MENU
3409 - gui_mswin_get_menu_height(FALSE)
3410#endif
3411 );
3412 }
3413 else
3414 {
3415 /* Inside another window, don't use the frame and border. */
3416 gui_resize_shell(rect.right - rect.left,
3417 rect.bottom - rect.top
3418#ifdef FEAT_MENU
3419 - gui_mswin_get_menu_height(FALSE)
3420#endif
3421 );
3422 }
3423}
3424
3425/*
3426 * Set the window title
3427 */
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003428 void
3429gui_mch_settitle(
3430 char_u *title,
Bram Moolenaar1266d672017-02-01 13:43:36 +01003431 char_u *icon UNUSED)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003432{
3433 set_window_title(s_hwnd, (title == NULL ? "VIM" : (char *)title));
3434}
3435
Bram Moolenaara6b7a082016-08-10 20:53:05 +02003436#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003437/* Table for shape IDCs. Keep in sync with the mshape_names[] table in
3438 * misc2.c! */
3439static LPCSTR mshape_idcs[] =
3440{
3441 IDC_ARROW, /* arrow */
3442 MAKEINTRESOURCE(0), /* blank */
3443 IDC_IBEAM, /* beam */
3444 IDC_SIZENS, /* updown */
3445 IDC_SIZENS, /* udsizing */
3446 IDC_SIZEWE, /* leftright */
3447 IDC_SIZEWE, /* lrsizing */
3448 IDC_WAIT, /* busy */
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003449 IDC_NO, /* no */
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003450 IDC_ARROW, /* crosshair */
3451 IDC_ARROW, /* hand1 */
3452 IDC_ARROW, /* hand2 */
3453 IDC_ARROW, /* pencil */
3454 IDC_ARROW, /* question */
3455 IDC_ARROW, /* right-arrow */
3456 IDC_UPARROW, /* up-arrow */
3457 IDC_ARROW /* last one */
3458};
3459
3460 void
3461mch_set_mouse_shape(int shape)
3462{
3463 LPCSTR idc;
3464
3465 if (shape == MSHAPE_HIDE)
3466 ShowCursor(FALSE);
3467 else
3468 {
3469 if (shape >= MSHAPE_NUMBERED)
3470 idc = IDC_ARROW;
3471 else
3472 idc = mshape_idcs[shape];
3473#ifdef SetClassLongPtr
3474 SetClassLongPtr(s_textArea, GCLP_HCURSOR, (__int3264)(LONG_PTR)LoadCursor(NULL, idc));
3475#else
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003476 SetClassLong(s_textArea, GCL_HCURSOR, (long_u)LoadCursor(NULL, idc));
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003477#endif
3478 if (!p_mh)
3479 {
3480 POINT mp;
3481
3482 /* Set the position to make it redrawn with the new shape. */
3483 (void)GetCursorPos((LPPOINT)&mp);
3484 (void)SetCursorPos(mp.x, mp.y);
3485 ShowCursor(TRUE);
3486 }
3487 }
3488}
3489#endif
3490
Bram Moolenaara6b7a082016-08-10 20:53:05 +02003491#if defined(FEAT_BROWSE) || defined(PROTO)
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003492/*
3493 * The file browser exists in two versions: with "W" uses wide characters,
3494 * without "W" the current codepage. When FEAT_MBYTE is defined and on
3495 * Windows NT/2000/XP the "W" functions are used.
3496 */
3497
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003498# ifdef FEAT_MBYTE
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003499/*
3500 * Wide version of convert_filter().
3501 */
3502 static WCHAR *
3503convert_filterW(char_u *s)
3504{
3505 char_u *tmp;
3506 int len;
3507 WCHAR *res;
3508
3509 tmp = convert_filter(s);
3510 if (tmp == NULL)
3511 return NULL;
3512 len = (int)STRLEN(s) + 3;
3513 res = enc_to_utf16(tmp, &len);
3514 vim_free(tmp);
3515 return res;
3516}
3517
3518/*
3519 * Wide version of gui_mch_browse(). Keep in sync!
3520 */
3521 static char_u *
3522gui_mch_browseW(
3523 int saving,
3524 char_u *title,
3525 char_u *dflt,
3526 char_u *ext,
3527 char_u *initdir,
3528 char_u *filter)
3529{
3530 /* We always use the wide function. This means enc_to_utf16() must work,
3531 * otherwise it fails miserably! */
3532 OPENFILENAMEW fileStruct;
3533 WCHAR fileBuf[MAXPATHL];
3534 WCHAR *wp;
3535 int i;
3536 WCHAR *titlep = NULL;
3537 WCHAR *extp = NULL;
3538 WCHAR *initdirp = NULL;
3539 WCHAR *filterp;
3540 char_u *p;
3541
3542 if (dflt == NULL)
3543 fileBuf[0] = NUL;
3544 else
3545 {
3546 wp = enc_to_utf16(dflt, NULL);
3547 if (wp == NULL)
3548 fileBuf[0] = NUL;
3549 else
3550 {
3551 for (i = 0; wp[i] != NUL && i < MAXPATHL - 1; ++i)
3552 fileBuf[i] = wp[i];
3553 fileBuf[i] = NUL;
3554 vim_free(wp);
3555 }
3556 }
3557
3558 /* Convert the filter to Windows format. */
3559 filterp = convert_filterW(filter);
3560
3561 vim_memset(&fileStruct, 0, sizeof(OPENFILENAMEW));
Bram Moolenaarb04a98f2016-12-01 20:32:29 +01003562# ifdef OPENFILENAME_SIZE_VERSION_400W
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003563 /* be compatible with Windows NT 4.0 */
Bram Moolenaar89e375a2016-03-15 18:09:57 +01003564 fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400W;
Bram Moolenaarb04a98f2016-12-01 20:32:29 +01003565# else
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003566 fileStruct.lStructSize = sizeof(fileStruct);
Bram Moolenaarb04a98f2016-12-01 20:32:29 +01003567# endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003568
3569 if (title != NULL)
3570 titlep = enc_to_utf16(title, NULL);
3571 fileStruct.lpstrTitle = titlep;
3572
3573 if (ext != NULL)
3574 extp = enc_to_utf16(ext, NULL);
3575 fileStruct.lpstrDefExt = extp;
3576
3577 fileStruct.lpstrFile = fileBuf;
3578 fileStruct.nMaxFile = MAXPATHL;
3579 fileStruct.lpstrFilter = filterp;
3580 fileStruct.hwndOwner = s_hwnd; /* main Vim window is owner*/
3581 /* has an initial dir been specified? */
3582 if (initdir != NULL && *initdir != NUL)
3583 {
3584 /* Must have backslashes here, no matter what 'shellslash' says */
3585 initdirp = enc_to_utf16(initdir, NULL);
3586 if (initdirp != NULL)
3587 {
3588 for (wp = initdirp; *wp != NUL; ++wp)
3589 if (*wp == '/')
3590 *wp = '\\';
3591 }
3592 fileStruct.lpstrInitialDir = initdirp;
3593 }
3594
3595 /*
3596 * TODO: Allow selection of multiple files. Needs another arg to this
3597 * function to ask for it, and need to use OFN_ALLOWMULTISELECT below.
3598 * Also, should we use OFN_FILEMUSTEXIST when opening? Vim can edit on
3599 * files that don't exist yet, so I haven't put it in. What about
3600 * OFN_PATHMUSTEXIST?
3601 * Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog.
3602 */
3603 fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY);
Bram Moolenaarb04a98f2016-12-01 20:32:29 +01003604# ifdef FEAT_SHORTCUT
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003605 if (curbuf->b_p_bin)
3606 fileStruct.Flags |= OFN_NODEREFERENCELINKS;
Bram Moolenaarb04a98f2016-12-01 20:32:29 +01003607# endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003608 if (saving)
3609 {
3610 if (!GetSaveFileNameW(&fileStruct))
3611 return NULL;
3612 }
3613 else
3614 {
3615 if (!GetOpenFileNameW(&fileStruct))
3616 return NULL;
3617 }
3618
3619 vim_free(filterp);
3620 vim_free(initdirp);
3621 vim_free(titlep);
3622 vim_free(extp);
3623
3624 /* Convert from UCS2 to 'encoding'. */
3625 p = utf16_to_enc(fileBuf, NULL);
3626 if (p != NULL)
3627 /* when out of memory we get garbage for non-ASCII chars */
3628 STRCPY(fileBuf, p);
3629 vim_free(p);
3630
3631 /* Give focus back to main window (when using MDI). */
3632 SetFocus(s_hwnd);
3633
3634 /* Shorten the file name if possible */
3635 return vim_strsave(shorten_fname1((char_u *)fileBuf));
3636}
3637# endif /* FEAT_MBYTE */
3638
3639
3640/*
3641 * Convert the string s to the proper format for a filter string by replacing
3642 * the \t and \n delimiters with \0.
3643 * Returns the converted string in allocated memory.
3644 *
3645 * Keep in sync with convert_filterW() above!
3646 */
3647 static char_u *
3648convert_filter(char_u *s)
3649{
3650 char_u *res;
3651 unsigned s_len = (unsigned)STRLEN(s);
3652 unsigned i;
3653
3654 res = alloc(s_len + 3);
3655 if (res != NULL)
3656 {
3657 for (i = 0; i < s_len; ++i)
3658 if (s[i] == '\t' || s[i] == '\n')
3659 res[i] = '\0';
3660 else
3661 res[i] = s[i];
3662 res[s_len] = NUL;
3663 /* Add two extra NULs to make sure it's properly terminated. */
3664 res[s_len + 1] = NUL;
3665 res[s_len + 2] = NUL;
3666 }
3667 return res;
3668}
3669
3670/*
3671 * Select a directory.
3672 */
3673 char_u *
3674gui_mch_browsedir(char_u *title, char_u *initdir)
3675{
3676 /* We fake this: Use a filter that doesn't select anything and a default
3677 * file name that won't be used. */
3678 return gui_mch_browse(0, title, (char_u *)_("Not Used"), NULL,
3679 initdir, (char_u *)_("Directory\t*.nothing\n"));
3680}
3681
3682/*
3683 * Pop open a file browser and return the file selected, in allocated memory,
3684 * or NULL if Cancel is hit.
3685 * saving - TRUE if the file will be saved to, FALSE if it will be opened.
3686 * title - Title message for the file browser dialog.
3687 * dflt - Default name of file.
3688 * ext - Default extension to be added to files without extensions.
3689 * initdir - directory in which to open the browser (NULL = current dir)
3690 * filter - Filter for matched files to choose from.
3691 *
3692 * Keep in sync with gui_mch_browseW() above!
3693 */
3694 char_u *
3695gui_mch_browse(
3696 int saving,
3697 char_u *title,
3698 char_u *dflt,
3699 char_u *ext,
3700 char_u *initdir,
3701 char_u *filter)
3702{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003703# ifdef FEAT_MBYTE
3704 return gui_mch_browseW(saving, title, dflt, ext, initdir, filter);
3705# else
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003706 OPENFILENAME fileStruct;
3707 char_u fileBuf[MAXPATHL];
3708 char_u *initdirp = NULL;
3709 char_u *filterp;
3710 char_u *p;
3711
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003712 if (dflt == NULL)
3713 fileBuf[0] = NUL;
3714 else
3715 vim_strncpy(fileBuf, dflt, MAXPATHL - 1);
3716
3717 /* Convert the filter to Windows format. */
3718 filterp = convert_filter(filter);
3719
3720 vim_memset(&fileStruct, 0, sizeof(OPENFILENAME));
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003721# ifdef OPENFILENAME_SIZE_VERSION_400
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003722 /* be compatible with Windows NT 4.0 */
3723 fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003724# else
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003725 fileStruct.lStructSize = sizeof(fileStruct);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003726# endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003727
3728 fileStruct.lpstrTitle = (LPSTR)title;
3729 fileStruct.lpstrDefExt = (LPSTR)ext;
3730
3731 fileStruct.lpstrFile = (LPSTR)fileBuf;
3732 fileStruct.nMaxFile = MAXPATHL;
3733 fileStruct.lpstrFilter = (LPSTR)filterp;
3734 fileStruct.hwndOwner = s_hwnd; /* main Vim window is owner*/
3735 /* has an initial dir been specified? */
3736 if (initdir != NULL && *initdir != NUL)
3737 {
3738 /* Must have backslashes here, no matter what 'shellslash' says */
3739 initdirp = vim_strsave(initdir);
3740 if (initdirp != NULL)
3741 for (p = initdirp; *p != NUL; ++p)
3742 if (*p == '/')
3743 *p = '\\';
3744 fileStruct.lpstrInitialDir = (LPSTR)initdirp;
3745 }
3746
3747 /*
3748 * TODO: Allow selection of multiple files. Needs another arg to this
3749 * function to ask for it, and need to use OFN_ALLOWMULTISELECT below.
3750 * Also, should we use OFN_FILEMUSTEXIST when opening? Vim can edit on
3751 * files that don't exist yet, so I haven't put it in. What about
3752 * OFN_PATHMUSTEXIST?
3753 * Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog.
3754 */
3755 fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003756# ifdef FEAT_SHORTCUT
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003757 if (curbuf->b_p_bin)
3758 fileStruct.Flags |= OFN_NODEREFERENCELINKS;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003759# endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003760 if (saving)
3761 {
3762 if (!GetSaveFileName(&fileStruct))
3763 return NULL;
3764 }
3765 else
3766 {
3767 if (!GetOpenFileName(&fileStruct))
3768 return NULL;
3769 }
3770
3771 vim_free(filterp);
3772 vim_free(initdirp);
3773
3774 /* Give focus back to main window (when using MDI). */
3775 SetFocus(s_hwnd);
3776
3777 /* Shorten the file name if possible */
3778 return vim_strsave(shorten_fname1((char_u *)fileBuf));
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003779# endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003780}
3781#endif /* FEAT_BROWSE */
3782
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003783 static void
3784_OnDropFiles(
Bram Moolenaar1266d672017-02-01 13:43:36 +01003785 HWND hwnd UNUSED,
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003786 HDROP hDrop)
3787{
3788#ifdef FEAT_WINDOWS
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003789# define BUFPATHLEN _MAX_PATH
3790# define DRAGQVAL 0xFFFFFFFF
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003791# ifdef FEAT_MBYTE
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003792 WCHAR wszFile[BUFPATHLEN];
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003793# endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003794 char szFile[BUFPATHLEN];
3795 UINT cFiles = DragQueryFile(hDrop, DRAGQVAL, NULL, 0);
3796 UINT i;
3797 char_u **fnames;
3798 POINT pt;
3799 int_u modifiers = 0;
3800
3801 /* TRACE("_OnDropFiles: %d files dropped\n", cFiles); */
3802
3803 /* Obtain dropped position */
3804 DragQueryPoint(hDrop, &pt);
3805 MapWindowPoints(s_hwnd, s_textArea, &pt, 1);
3806
3807 reset_VIsual();
3808
3809 fnames = (char_u **)alloc(cFiles * sizeof(char_u *));
3810
3811 if (fnames != NULL)
3812 for (i = 0; i < cFiles; ++i)
3813 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003814# ifdef FEAT_MBYTE
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003815 if (DragQueryFileW(hDrop, i, wszFile, BUFPATHLEN) > 0)
3816 fnames[i] = utf16_to_enc(wszFile, NULL);
3817 else
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003818# endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003819 {
3820 DragQueryFile(hDrop, i, szFile, BUFPATHLEN);
3821 fnames[i] = vim_strsave((char_u *)szFile);
3822 }
3823 }
3824
3825 DragFinish(hDrop);
3826
3827 if (fnames != NULL)
3828 {
3829 if ((GetKeyState(VK_SHIFT) & 0x8000) != 0)
3830 modifiers |= MOUSE_SHIFT;
3831 if ((GetKeyState(VK_CONTROL) & 0x8000) != 0)
3832 modifiers |= MOUSE_CTRL;
3833 if ((GetKeyState(VK_MENU) & 0x8000) != 0)
3834 modifiers |= MOUSE_ALT;
3835
3836 gui_handle_drop(pt.x, pt.y, modifiers, fnames, cFiles);
3837
3838 s_need_activate = TRUE;
3839 }
3840#endif
3841}
3842
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003843 static int
3844_OnScroll(
Bram Moolenaar1266d672017-02-01 13:43:36 +01003845 HWND hwnd UNUSED,
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003846 HWND hwndCtl,
3847 UINT code,
3848 int pos)
3849{
3850 static UINT prev_code = 0; /* code of previous call */
3851 scrollbar_T *sb, *sb_info;
3852 long val;
3853 int dragging = FALSE;
3854 int dont_scroll_save = dont_scroll;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003855 SCROLLINFO si;
3856
3857 si.cbSize = sizeof(si);
3858 si.fMask = SIF_POS;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003859
3860 sb = gui_mswin_find_scrollbar(hwndCtl);
3861 if (sb == NULL)
3862 return 0;
3863
3864 if (sb->wp != NULL) /* Left or right scrollbar */
3865 {
3866 /*
3867 * Careful: need to get scrollbar info out of first (left) scrollbar
3868 * for window, but keep real scrollbar too because we must pass it to
3869 * gui_drag_scrollbar().
3870 */
3871 sb_info = &sb->wp->w_scrollbars[0];
3872 }
3873 else /* Bottom scrollbar */
3874 sb_info = sb;
3875 val = sb_info->value;
3876
3877 switch (code)
3878 {
3879 case SB_THUMBTRACK:
3880 val = pos;
3881 dragging = TRUE;
3882 if (sb->scroll_shift > 0)
3883 val <<= sb->scroll_shift;
3884 break;
3885 case SB_LINEDOWN:
3886 val++;
3887 break;
3888 case SB_LINEUP:
3889 val--;
3890 break;
3891 case SB_PAGEDOWN:
3892 val += (sb_info->size > 2 ? sb_info->size - 2 : 1);
3893 break;
3894 case SB_PAGEUP:
3895 val -= (sb_info->size > 2 ? sb_info->size - 2 : 1);
3896 break;
3897 case SB_TOP:
3898 val = 0;
3899 break;
3900 case SB_BOTTOM:
3901 val = sb_info->max;
3902 break;
3903 case SB_ENDSCROLL:
3904 if (prev_code == SB_THUMBTRACK)
3905 {
3906 /*
3907 * "pos" only gives us 16-bit data. In case of large file,
3908 * use GetScrollPos() which returns 32-bit. Unfortunately it
3909 * is not valid while the scrollbar is being dragged.
3910 */
3911 val = GetScrollPos(hwndCtl, SB_CTL);
3912 if (sb->scroll_shift > 0)
3913 val <<= sb->scroll_shift;
3914 }
3915 break;
3916
3917 default:
3918 /* TRACE("Unknown scrollbar event %d\n", code); */
3919 return 0;
3920 }
3921 prev_code = code;
3922
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003923 si.nPos = (sb->scroll_shift > 0) ? val >> sb->scroll_shift : val;
3924 SetScrollInfo(hwndCtl, SB_CTL, &si, TRUE);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003925
3926 /*
3927 * When moving a vertical scrollbar, move the other vertical scrollbar too.
3928 */
3929 if (sb->wp != NULL)
3930 {
3931 scrollbar_T *sba = sb->wp->w_scrollbars;
3932 HWND id = sba[ (sb == sba + SBAR_LEFT) ? SBAR_RIGHT : SBAR_LEFT].id;
3933
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003934 SetScrollInfo(id, SB_CTL, &si, TRUE);
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003935 }
3936
3937 /* Don't let us be interrupted here by another message. */
3938 s_busy_processing = TRUE;
3939
3940 /* When "allow_scrollbar" is FALSE still need to remember the new
3941 * position, but don't actually scroll by setting "dont_scroll". */
3942 dont_scroll = !allow_scrollbar;
3943
3944 gui_drag_scrollbar(sb, val, dragging);
3945
3946 s_busy_processing = FALSE;
3947 dont_scroll = dont_scroll_save;
3948
3949 return 0;
3950}
3951
3952
3953/*
3954 * Get command line arguments.
3955 * Use "prog" as the name of the program and "cmdline" as the arguments.
3956 * Copy the arguments to allocated memory.
3957 * Return the number of arguments (including program name).
3958 * Return pointers to the arguments in "argvp". Memory is allocated with
3959 * malloc(), use free() instead of vim_free().
3960 * Return pointer to buffer in "tofree".
3961 * Returns zero when out of memory.
3962 */
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003963 int
3964get_cmd_args(char *prog, char *cmdline, char ***argvp, char **tofree)
3965{
3966 int i;
3967 char *p;
3968 char *progp;
3969 char *pnew = NULL;
3970 char *newcmdline;
3971 int inquote;
3972 int argc;
3973 char **argv = NULL;
3974 int round;
3975
3976 *tofree = NULL;
3977
3978#ifdef FEAT_MBYTE
3979 /* Try using the Unicode version first, it takes care of conversion when
3980 * 'encoding' is changed. */
3981 argc = get_cmd_argsW(&argv);
3982 if (argc != 0)
3983 goto done;
3984#endif
3985
3986 /* Handle the program name. Remove the ".exe" extension, and find the 1st
3987 * non-space. */
3988 p = strrchr(prog, '.');
3989 if (p != NULL)
3990 *p = NUL;
3991 for (progp = prog; *progp == ' '; ++progp)
3992 ;
3993
3994 /* The command line is copied to allocated memory, so that we can change
3995 * it. Add the size of the string, the separating NUL and a terminating
3996 * NUL. */
3997 newcmdline = malloc(STRLEN(cmdline) + STRLEN(progp) + 2);
3998 if (newcmdline == NULL)
3999 return 0;
4000
4001 /*
4002 * First round: count the number of arguments ("pnew" == NULL).
4003 * Second round: produce the arguments.
4004 */
4005 for (round = 1; round <= 2; ++round)
4006 {
4007 /* First argument is the program name. */
4008 if (pnew != NULL)
4009 {
4010 argv[0] = pnew;
4011 strcpy(pnew, progp);
4012 pnew += strlen(pnew);
4013 *pnew++ = NUL;
4014 }
4015
4016 /*
4017 * Isolate each argument and put it in argv[].
4018 */
4019 p = cmdline;
4020 argc = 1;
4021 while (*p != NUL)
4022 {
4023 inquote = FALSE;
4024 if (pnew != NULL)
4025 argv[argc] = pnew;
4026 ++argc;
4027 while (*p != NUL && (inquote || (*p != ' ' && *p != '\t')))
4028 {
4029 /* Backslashes are only special when followed by a double
4030 * quote. */
4031 i = (int)strspn(p, "\\");
4032 if (p[i] == '"')
4033 {
4034 /* Halve the number of backslashes. */
4035 if (i > 1 && pnew != NULL)
4036 {
4037 vim_memset(pnew, '\\', i / 2);
4038 pnew += i / 2;
4039 }
4040
4041 /* Even nr of backslashes toggles quoting, uneven copies
4042 * the double quote. */
4043 if ((i & 1) == 0)
4044 inquote = !inquote;
4045 else if (pnew != NULL)
4046 *pnew++ = '"';
4047 p += i + 1;
4048 }
4049 else if (i > 0)
4050 {
4051 /* Copy span of backslashes unmodified. */
4052 if (pnew != NULL)
4053 {
4054 vim_memset(pnew, '\\', i);
4055 pnew += i;
4056 }
4057 p += i;
4058 }
4059 else
4060 {
4061 if (pnew != NULL)
4062 *pnew++ = *p;
4063#ifdef FEAT_MBYTE
4064 /* Can't use mb_* functions, because 'encoding' is not
4065 * initialized yet here. */
4066 if (IsDBCSLeadByte(*p))
4067 {
4068 ++p;
4069 if (pnew != NULL)
4070 *pnew++ = *p;
4071 }
4072#endif
4073 ++p;
4074 }
4075 }
4076
4077 if (pnew != NULL)
4078 *pnew++ = NUL;
4079 while (*p == ' ' || *p == '\t')
4080 ++p; /* advance until a non-space */
4081 }
4082
4083 if (round == 1)
4084 {
4085 argv = (char **)malloc((argc + 1) * sizeof(char *));
4086 if (argv == NULL )
4087 {
4088 free(newcmdline);
4089 return 0; /* malloc error */
4090 }
4091 pnew = newcmdline;
4092 *tofree = newcmdline;
4093 }
4094 }
4095
4096#ifdef FEAT_MBYTE
4097done:
4098#endif
4099 argv[argc] = NULL; /* NULL-terminated list */
4100 *argvp = argv;
4101 return argc;
4102}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103
4104#ifdef FEAT_XPM_W32
4105# include "xpm_w32.h"
4106#endif
4107
4108#ifdef PROTO
4109# define WINAPI
4110#endif
4111
4112#ifdef __MINGW32__
4113/*
4114 * Add a lot of missing defines.
4115 * They are not always missing, we need the #ifndef's.
4116 */
4117# ifndef _cdecl
4118# define _cdecl
4119# endif
4120# ifndef IsMinimized
4121# define IsMinimized(hwnd) IsIconic(hwnd)
4122# endif
4123# ifndef IsMaximized
4124# define IsMaximized(hwnd) IsZoomed(hwnd)
4125# endif
4126# ifndef SelectFont
4127# define SelectFont(hdc, hfont) ((HFONT)SelectObject((hdc), (HGDIOBJ)(HFONT)(hfont)))
4128# endif
4129# ifndef GetStockBrush
4130# define GetStockBrush(i) ((HBRUSH)GetStockObject(i))
4131# endif
4132# ifndef DeleteBrush
4133# define DeleteBrush(hbr) DeleteObject((HGDIOBJ)(HBRUSH)(hbr))
4134# endif
4135
4136# ifndef HANDLE_WM_RBUTTONDBLCLK
4137# define HANDLE_WM_RBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
4138 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
4139# endif
4140# ifndef HANDLE_WM_MBUTTONUP
4141# define HANDLE_WM_MBUTTONUP(hwnd, wParam, lParam, fn) \
4142 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
4143# endif
4144# ifndef HANDLE_WM_MBUTTONDBLCLK
4145# define HANDLE_WM_MBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
4146 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
4147# endif
4148# ifndef HANDLE_WM_LBUTTONDBLCLK
4149# define HANDLE_WM_LBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
4150 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
4151# endif
4152# ifndef HANDLE_WM_RBUTTONDOWN
4153# define HANDLE_WM_RBUTTONDOWN(hwnd, wParam, lParam, fn) \
4154 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
4155# endif
4156# ifndef HANDLE_WM_MOUSEMOVE
4157# define HANDLE_WM_MOUSEMOVE(hwnd, wParam, lParam, fn) \
4158 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
4159# endif
4160# ifndef HANDLE_WM_RBUTTONUP
4161# define HANDLE_WM_RBUTTONUP(hwnd, wParam, lParam, fn) \
4162 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
4163# endif
4164# ifndef HANDLE_WM_MBUTTONDOWN
4165# define HANDLE_WM_MBUTTONDOWN(hwnd, wParam, lParam, fn) \
4166 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
4167# endif
4168# ifndef HANDLE_WM_LBUTTONUP
4169# define HANDLE_WM_LBUTTONUP(hwnd, wParam, lParam, fn) \
4170 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
4171# endif
4172# ifndef HANDLE_WM_LBUTTONDOWN
4173# define HANDLE_WM_LBUTTONDOWN(hwnd, wParam, lParam, fn) \
4174 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
4175# endif
4176# ifndef HANDLE_WM_SYSCHAR
4177# define HANDLE_WM_SYSCHAR(hwnd, wParam, lParam, fn) \
4178 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
4179# endif
4180# ifndef HANDLE_WM_ACTIVATEAPP
4181# define HANDLE_WM_ACTIVATEAPP(hwnd, wParam, lParam, fn) \
4182 ((fn)((hwnd), (BOOL)(wParam), (DWORD)(lParam)), 0L)
4183# endif
4184# ifndef HANDLE_WM_WINDOWPOSCHANGING
4185# define HANDLE_WM_WINDOWPOSCHANGING(hwnd, wParam, lParam, fn) \
4186 (LRESULT)(DWORD)(BOOL)(fn)((hwnd), (LPWINDOWPOS)(lParam))
4187# endif
4188# ifndef HANDLE_WM_VSCROLL
4189# define HANDLE_WM_VSCROLL(hwnd, wParam, lParam, fn) \
4190 ((fn)((hwnd), (HWND)(lParam), (UINT)(LOWORD(wParam)), (int)(short)HIWORD(wParam)), 0L)
4191# endif
4192# ifndef HANDLE_WM_SETFOCUS
4193# define HANDLE_WM_SETFOCUS(hwnd, wParam, lParam, fn) \
4194 ((fn)((hwnd), (HWND)(wParam)), 0L)
4195# endif
4196# ifndef HANDLE_WM_KILLFOCUS
4197# define HANDLE_WM_KILLFOCUS(hwnd, wParam, lParam, fn) \
4198 ((fn)((hwnd), (HWND)(wParam)), 0L)
4199# endif
4200# ifndef HANDLE_WM_HSCROLL
4201# define HANDLE_WM_HSCROLL(hwnd, wParam, lParam, fn) \
4202 ((fn)((hwnd), (HWND)(lParam), (UINT)(LOWORD(wParam)), (int)(short)HIWORD(wParam)), 0L)
4203# endif
4204# ifndef HANDLE_WM_DROPFILES
4205# define HANDLE_WM_DROPFILES(hwnd, wParam, lParam, fn) \
4206 ((fn)((hwnd), (HDROP)(wParam)), 0L)
4207# endif
4208# ifndef HANDLE_WM_CHAR
4209# define HANDLE_WM_CHAR(hwnd, wParam, lParam, fn) \
4210 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
4211# endif
4212# ifndef HANDLE_WM_SYSDEADCHAR
4213# define HANDLE_WM_SYSDEADCHAR(hwnd, wParam, lParam, fn) \
4214 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
4215# endif
4216# ifndef HANDLE_WM_DEADCHAR
4217# define HANDLE_WM_DEADCHAR(hwnd, wParam, lParam, fn) \
4218 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
4219# endif
4220#endif /* __MINGW32__ */
4221
4222
4223/* Some parameters for tearoff menus. All in pixels. */
4224#define TEAROFF_PADDING_X 2
4225#define TEAROFF_BUTTON_PAD_X 8
4226#define TEAROFF_MIN_WIDTH 200
4227#define TEAROFF_SUBMENU_LABEL ">>"
4228#define TEAROFF_COLUMN_PADDING 3 // # spaces to pad column with.
4229
4230
4231/* For the Intellimouse: */
4232#ifndef WM_MOUSEWHEEL
4233#define WM_MOUSEWHEEL 0x20a
4234#endif
4235
4236
4237#ifdef FEAT_BEVAL
4238# define ID_BEVAL_TOOLTIP 200
4239# define BEVAL_TEXT_LEN MAXPATHL
4240
Bram Moolenaar167632f2010-05-26 21:42:54 +02004241#if (defined(_MSC_VER) && _MSC_VER < 1300) || !defined(MAXULONG_PTR)
Bram Moolenaar446cb832008-06-24 21:56:24 +00004242/* Work around old versions of basetsd.h which wrongly declares
4243 * UINT_PTR as unsigned long. */
Bram Moolenaar167632f2010-05-26 21:42:54 +02004244# undef UINT_PTR
Bram Moolenaar8424a622006-04-19 21:23:36 +00004245# define UINT_PTR UINT
4246#endif
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004247
Bram Moolenaard25c16e2016-01-29 22:13:30 +01004248static void make_tooltip(BalloonEval *beval, char *text, POINT pt);
4249static void delete_tooltip(BalloonEval *beval);
4250static VOID CALLBACK BevalTimerProc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004251
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252static BalloonEval *cur_beval = NULL;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004253static UINT_PTR BevalTimerId = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254static DWORD LastActivity = 0;
Bram Moolenaar45360022005-07-21 21:08:21 +00004255
Bram Moolenaar82881492012-11-20 16:53:39 +01004256
4257/* cproto fails on missing include files */
4258#ifndef PROTO
4259
Bram Moolenaar45360022005-07-21 21:08:21 +00004260/*
4261 * excerpts from headers since this may not be presented
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004262 * in the extremely old compilers
Bram Moolenaar45360022005-07-21 21:08:21 +00004263 */
Bram Moolenaar82881492012-11-20 16:53:39 +01004264# include <pshpack1.h>
4265
4266#endif
Bram Moolenaar45360022005-07-21 21:08:21 +00004267
4268typedef struct _DllVersionInfo
4269{
4270 DWORD cbSize;
4271 DWORD dwMajorVersion;
4272 DWORD dwMinorVersion;
4273 DWORD dwBuildNumber;
4274 DWORD dwPlatformID;
4275} DLLVERSIONINFO;
4276
Bram Moolenaar82881492012-11-20 16:53:39 +01004277#ifndef PROTO
4278# include <poppack.h>
4279#endif
Bram Moolenaar281daf62009-12-24 15:11:40 +00004280
Bram Moolenaar45360022005-07-21 21:08:21 +00004281typedef struct tagTOOLINFOA_NEW
4282{
4283 UINT cbSize;
4284 UINT uFlags;
4285 HWND hwnd;
Bram Moolenaar281daf62009-12-24 15:11:40 +00004286 UINT_PTR uId;
Bram Moolenaar45360022005-07-21 21:08:21 +00004287 RECT rect;
4288 HINSTANCE hinst;
4289 LPSTR lpszText;
4290 LPARAM lParam;
4291} TOOLINFO_NEW;
4292
4293typedef struct tagNMTTDISPINFO_NEW
4294{
4295 NMHDR hdr;
Bram Moolenaar281daf62009-12-24 15:11:40 +00004296 LPSTR lpszText;
Bram Moolenaar45360022005-07-21 21:08:21 +00004297 char szText[80];
4298 HINSTANCE hinst;
4299 UINT uFlags;
4300 LPARAM lParam;
4301} NMTTDISPINFO_NEW;
4302
Bram Moolenaar45360022005-07-21 21:08:21 +00004303typedef HRESULT (WINAPI* DLLGETVERSIONPROC)(DLLVERSIONINFO *);
4304#ifndef TTM_SETMAXTIPWIDTH
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00004305# define TTM_SETMAXTIPWIDTH (WM_USER+24)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306#endif
4307
Bram Moolenaar45360022005-07-21 21:08:21 +00004308#ifndef TTF_DI_SETITEM
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00004309# define TTF_DI_SETITEM 0x8000
Bram Moolenaar45360022005-07-21 21:08:21 +00004310#endif
4311
4312#ifndef TTN_GETDISPINFO
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00004313# define TTN_GETDISPINFO (TTN_FIRST - 0)
Bram Moolenaar45360022005-07-21 21:08:21 +00004314#endif
4315
4316#endif /* defined(FEAT_BEVAL) */
4317
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00004318#if defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
4319/* Older MSVC compilers don't have LPNMTTDISPINFO[AW] thus we need to define
4320 * it here if LPNMTTDISPINFO isn't defined.
4321 * MingW doesn't define LPNMTTDISPINFO but typedefs it. Thus we need to check
4322 * _MSC_VER. */
4323# if !defined(LPNMTTDISPINFO) && defined(_MSC_VER)
4324typedef struct tagNMTTDISPINFOA {
4325 NMHDR hdr;
4326 LPSTR lpszText;
4327 char szText[80];
4328 HINSTANCE hinst;
4329 UINT uFlags;
4330 LPARAM lParam;
4331} NMTTDISPINFOA, *LPNMTTDISPINFOA;
4332# define LPNMTTDISPINFO LPNMTTDISPINFOA
4333
4334# ifdef FEAT_MBYTE
4335typedef struct tagNMTTDISPINFOW {
4336 NMHDR hdr;
4337 LPWSTR lpszText;
4338 WCHAR szText[80];
4339 HINSTANCE hinst;
4340 UINT uFlags;
4341 LPARAM lParam;
4342} NMTTDISPINFOW, *LPNMTTDISPINFOW;
4343# endif
4344# endif
4345#endif
4346
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00004347#ifndef TTN_GETDISPINFOW
4348# define TTN_GETDISPINFOW (TTN_FIRST - 10)
4349#endif
4350
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351/* Local variables: */
4352
4353#ifdef FEAT_MENU
4354static UINT s_menu_id = 100;
Bram Moolenaar786989b2010-10-27 12:15:33 +02004355#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356
4357/*
4358 * Use the system font for dialogs and tear-off menus. Remove this line to
4359 * use DLG_FONT_NAME.
4360 */
Bram Moolenaar786989b2010-10-27 12:15:33 +02004361#define USE_SYSMENU_FONT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362
4363#define VIM_NAME "vim"
4364#define VIM_CLASS "Vim"
4365#define VIM_CLASSW L"Vim"
4366
4367/* Initial size for the dialog template. For gui_mch_dialog() it's fixed,
4368 * thus there should be room for every dialog. For tearoffs it's made bigger
4369 * when needed. */
4370#define DLG_ALLOC_SIZE 16 * 1024
4371
4372/*
4373 * stuff for dialogs, menus, tearoffs etc.
4374 */
4375static LRESULT APIENTRY dialog_callback(HWND, UINT, WPARAM, LPARAM);
Bram Moolenaar065bbac2016-02-20 13:08:46 +01004376#ifdef FEAT_TEAROFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377static LRESULT APIENTRY tearoff_callback(HWND, UINT, WPARAM, LPARAM);
Bram Moolenaar065bbac2016-02-20 13:08:46 +01004378#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379static PWORD
4380add_dialog_element(
4381 PWORD p,
4382 DWORD lStyle,
4383 WORD x,
4384 WORD y,
4385 WORD w,
4386 WORD h,
4387 WORD Id,
4388 WORD clss,
4389 const char *caption);
4390static LPWORD lpwAlign(LPWORD);
4391static int nCopyAnsiToWideChar(LPWORD, LPSTR);
Bram Moolenaar065bbac2016-02-20 13:08:46 +01004392#if defined(FEAT_MENU) && defined(FEAT_TEAROFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393static void gui_mch_tearoff(char_u *title, vimmenu_T *menu, int initX, int initY);
Bram Moolenaar065bbac2016-02-20 13:08:46 +01004394#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395static void get_dialog_font_metrics(void);
4396
4397static int dialog_default_button = -1;
4398
4399/* Intellimouse support */
4400static int mouse_scroll_lines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401
4402static int s_usenewlook; /* emulate W95/NT4 non-bold dialogs */
4403#ifdef FEAT_TOOLBAR
4404static void initialise_toolbar(void);
Bram Moolenaar5f919ee2013-07-21 17:46:43 +02004405static LRESULT CALLBACK toolbar_wndproc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406static int get_toolbar_bitmap(vimmenu_T *menu);
4407#endif
4408
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004409#ifdef FEAT_GUI_TABLINE
4410static void initialise_tabline(void);
Bram Moolenaar5f919ee2013-07-21 17:46:43 +02004411static LRESULT CALLBACK tabline_wndproc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004412#endif
4413
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414#ifdef FEAT_MBYTE_IME
4415static LRESULT _OnImeComposition(HWND hwnd, WPARAM dbcs, LPARAM param);
4416static char_u *GetResultStr(HWND hwnd, int GCS, int *lenp);
4417#endif
4418#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
4419# ifdef NOIME
4420typedef struct tagCOMPOSITIONFORM {
4421 DWORD dwStyle;
4422 POINT ptCurrentPos;
4423 RECT rcArea;
4424} COMPOSITIONFORM, *PCOMPOSITIONFORM, NEAR *NPCOMPOSITIONFORM, FAR *LPCOMPOSITIONFORM;
4425typedef HANDLE HIMC;
4426# endif
4427
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004428static HINSTANCE hLibImm = NULL;
4429static LONG (WINAPI *pImmGetCompositionStringA)(HIMC, DWORD, LPVOID, DWORD);
4430static LONG (WINAPI *pImmGetCompositionStringW)(HIMC, DWORD, LPVOID, DWORD);
4431static HIMC (WINAPI *pImmGetContext)(HWND);
4432static HIMC (WINAPI *pImmAssociateContext)(HWND, HIMC);
4433static BOOL (WINAPI *pImmReleaseContext)(HWND, HIMC);
4434static BOOL (WINAPI *pImmGetOpenStatus)(HIMC);
4435static BOOL (WINAPI *pImmSetOpenStatus)(HIMC, BOOL);
4436static BOOL (WINAPI *pImmGetCompositionFont)(HIMC, LPLOGFONTA);
4437static BOOL (WINAPI *pImmSetCompositionFont)(HIMC, LPLOGFONTA);
4438static BOOL (WINAPI *pImmSetCompositionWindow)(HIMC, LPCOMPOSITIONFORM);
4439static BOOL (WINAPI *pImmGetConversionStatus)(HIMC, LPDWORD, LPDWORD);
Bram Moolenaarca003e12006-03-17 23:19:38 +00004440static BOOL (WINAPI *pImmSetConversionStatus)(HIMC, DWORD, DWORD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441static void dyn_imm_load(void);
4442#else
4443# define pImmGetCompositionStringA ImmGetCompositionStringA
4444# define pImmGetCompositionStringW ImmGetCompositionStringW
4445# define pImmGetContext ImmGetContext
4446# define pImmAssociateContext ImmAssociateContext
4447# define pImmReleaseContext ImmReleaseContext
4448# define pImmGetOpenStatus ImmGetOpenStatus
4449# define pImmSetOpenStatus ImmSetOpenStatus
4450# define pImmGetCompositionFont ImmGetCompositionFontA
4451# define pImmSetCompositionFont ImmSetCompositionFontA
4452# define pImmSetCompositionWindow ImmSetCompositionWindow
4453# define pImmGetConversionStatus ImmGetConversionStatus
Bram Moolenaarca003e12006-03-17 23:19:38 +00004454# define pImmSetConversionStatus ImmSetConversionStatus
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455#endif
4456
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457#ifdef FEAT_MENU
4458/*
4459 * Figure out how high the menu bar is at the moment.
4460 */
4461 static int
4462gui_mswin_get_menu_height(
4463 int fix_window) /* If TRUE, resize window if menu height changed */
4464{
4465 static int old_menu_height = -1;
4466
4467 RECT rc1, rc2;
4468 int num;
4469 int menu_height;
4470
4471 if (gui.menu_is_active)
4472 num = GetMenuItemCount(s_menuBar);
4473 else
4474 num = 0;
4475
4476 if (num == 0)
4477 menu_height = 0;
Bram Moolenaar71371b12015-03-24 17:57:12 +01004478 else if (IsMinimized(s_hwnd))
4479 {
4480 /* The height of the menu cannot be determined while the window is
4481 * minimized. Take the previous height if the menu is changed in that
4482 * state, to avoid that Vim's vertical window size accidentally
4483 * increases due to the unaccounted-for menu height. */
4484 menu_height = old_menu_height == -1 ? 0 : old_menu_height;
4485 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 else
4487 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004488 /*
4489 * In case 'lines' is set in _vimrc/_gvimrc window width doesn't
4490 * seem to have been set yet, so menu wraps in default window
4491 * width which is very narrow. Instead just return height of a
4492 * single menu item. Will still be wrong when the menu really
4493 * should wrap over more than one line.
4494 */
4495 GetMenuItemRect(s_hwnd, s_menuBar, 0, &rc1);
4496 if (gui.starting)
4497 menu_height = rc1.bottom - rc1.top + 1;
4498 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004500 GetMenuItemRect(s_hwnd, s_menuBar, num - 1, &rc2);
4501 menu_height = rc2.bottom - rc1.top + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 }
4503 }
4504
4505 if (fix_window && menu_height != old_menu_height)
4506 {
Bram Moolenaarafa24992006-03-27 20:58:26 +00004507 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 }
Bram Moolenaar71371b12015-03-24 17:57:12 +01004509 old_menu_height = menu_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510
4511 return menu_height;
4512}
4513#endif /*FEAT_MENU*/
4514
4515
4516/*
4517 * Setup for the Intellimouse
4518 */
4519 static void
4520init_mouse_wheel(void)
4521{
4522
4523#ifndef SPI_GETWHEELSCROLLLINES
4524# define SPI_GETWHEELSCROLLLINES 104
4525#endif
Bram Moolenaare7566042005-06-17 22:00:15 +00004526#ifndef SPI_SETWHEELSCROLLLINES
4527# define SPI_SETWHEELSCROLLLINES 105
4528#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529
4530#define VMOUSEZ_CLASSNAME "MouseZ" /* hidden wheel window class */
4531#define VMOUSEZ_TITLE "Magellan MSWHEEL" /* hidden wheel window title */
4532#define VMSH_MOUSEWHEEL "MSWHEEL_ROLLMSG"
4533#define VMSH_SCROLL_LINES "MSH_SCROLL_LINES_MSG"
4534
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 mouse_scroll_lines = 3; /* reasonable default */
4536
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004537 /* if NT 4.0+ (or Win98) get scroll lines directly from system */
4538 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
4539 &mouse_scroll_lines, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540}
4541
4542
4543/* Intellimouse wheel handler */
4544 static void
4545_OnMouseWheel(
4546 HWND hwnd,
4547 short zDelta)
4548{
4549/* Treat a mouse wheel event as if it were a scroll request */
4550 int i;
4551 int size;
4552 HWND hwndCtl;
4553
4554 if (curwin->w_scrollbars[SBAR_RIGHT].id != 0)
4555 {
4556 hwndCtl = curwin->w_scrollbars[SBAR_RIGHT].id;
4557 size = curwin->w_scrollbars[SBAR_RIGHT].size;
4558 }
4559 else if (curwin->w_scrollbars[SBAR_LEFT].id != 0)
4560 {
4561 hwndCtl = curwin->w_scrollbars[SBAR_LEFT].id;
4562 size = curwin->w_scrollbars[SBAR_LEFT].size;
4563 }
4564 else
4565 return;
4566
4567 size = curwin->w_height;
4568 if (mouse_scroll_lines == 0)
4569 init_mouse_wheel();
4570
4571 if (mouse_scroll_lines > 0
4572 && mouse_scroll_lines < (size > 2 ? size - 2 : 1))
4573 {
4574 for (i = mouse_scroll_lines; i > 0; --i)
4575 _OnScroll(hwnd, hwndCtl, zDelta >= 0 ? SB_LINEUP : SB_LINEDOWN, 0);
4576 }
4577 else
4578 _OnScroll(hwnd, hwndCtl, zDelta >= 0 ? SB_PAGEUP : SB_PAGEDOWN, 0);
4579}
4580
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004581#ifdef USE_SYSMENU_FONT
4582/*
4583 * Get Menu Font.
4584 * Return OK or FAIL.
4585 */
4586 static int
4587gui_w32_get_menu_font(LOGFONT *lf)
4588{
4589 NONCLIENTMETRICS nm;
4590
4591 nm.cbSize = sizeof(NONCLIENTMETRICS);
4592 if (!SystemParametersInfo(
4593 SPI_GETNONCLIENTMETRICS,
4594 sizeof(NONCLIENTMETRICS),
4595 &nm,
4596 0))
4597 return FAIL;
4598 *lf = nm.lfMenuFont;
4599 return OK;
4600}
4601#endif
4602
4603
4604#if defined(FEAT_GUI_TABLINE) && defined(USE_SYSMENU_FONT)
4605/*
4606 * Set the GUI tabline font to the system menu font
4607 */
4608 static void
4609set_tabline_font(void)
4610{
4611 LOGFONT lfSysmenu;
4612 HFONT font;
4613 HWND hwnd;
4614 HDC hdc;
4615 HFONT hfntOld;
4616 TEXTMETRIC tm;
4617
4618 if (gui_w32_get_menu_font(&lfSysmenu) != OK)
4619 return;
4620
4621 font = CreateFontIndirect(&lfSysmenu);
4622
4623 SendMessage(s_tabhwnd, WM_SETFONT, (WPARAM)font, TRUE);
4624
4625 /*
4626 * Compute the height of the font used for the tab text
4627 */
4628 hwnd = GetDesktopWindow();
4629 hdc = GetWindowDC(hwnd);
4630 hfntOld = SelectFont(hdc, font);
4631
4632 GetTextMetrics(hdc, &tm);
4633
4634 SelectFont(hdc, hfntOld);
4635 ReleaseDC(hwnd, hdc);
4636
4637 /*
4638 * The space used by the tab border and the space between the tab label
4639 * and the tab border is included as 7.
4640 */
4641 gui.tabline_height = tm.tmHeight + tm.tmInternalLeading + 7;
4642}
4643#endif
4644
Bram Moolenaar520470a2005-06-16 21:59:56 +00004645/*
4646 * Invoked when a setting was changed.
4647 */
4648 static LRESULT CALLBACK
4649_OnSettingChange(UINT n)
4650{
4651 if (n == SPI_SETWHEELSCROLLLINES)
4652 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
4653 &mouse_scroll_lines, 0);
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004654#if defined(FEAT_GUI_TABLINE) && defined(USE_SYSMENU_FONT)
4655 if (n == SPI_SETNONCLIENTMETRICS)
4656 set_tabline_font();
4657#endif
Bram Moolenaar520470a2005-06-16 21:59:56 +00004658 return 0;
4659}
4660
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661#ifdef FEAT_NETBEANS_INTG
4662 static void
4663_OnWindowPosChanged(
4664 HWND hwnd,
4665 const LPWINDOWPOS lpwpos)
4666{
4667 static int x = 0, y = 0, cx = 0, cy = 0;
Bram Moolenaarf12d9832016-01-29 21:11:25 +01004668 extern int WSInitialized;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669
4670 if (WSInitialized && (lpwpos->x != x || lpwpos->y != y
4671 || lpwpos->cx != cx || lpwpos->cy != cy))
4672 {
4673 x = lpwpos->x;
4674 y = lpwpos->y;
4675 cx = lpwpos->cx;
4676 cy = lpwpos->cy;
4677 netbeans_frame_moved(x, y);
4678 }
4679 /* Allow to send WM_SIZE and WM_MOVE */
4680 FORWARD_WM_WINDOWPOSCHANGED(hwnd, lpwpos, MyWindowProc);
4681}
4682#endif
4683
4684 static int
4685_DuringSizing(
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 UINT fwSide,
4687 LPRECT lprc)
4688{
4689 int w, h;
4690 int valid_w, valid_h;
4691 int w_offset, h_offset;
4692
4693 w = lprc->right - lprc->left;
4694 h = lprc->bottom - lprc->top;
4695 gui_mswin_get_valid_dimensions(w, h, &valid_w, &valid_h);
4696 w_offset = w - valid_w;
4697 h_offset = h - valid_h;
4698
4699 if (fwSide == WMSZ_LEFT || fwSide == WMSZ_TOPLEFT
4700 || fwSide == WMSZ_BOTTOMLEFT)
4701 lprc->left += w_offset;
4702 else if (fwSide == WMSZ_RIGHT || fwSide == WMSZ_TOPRIGHT
4703 || fwSide == WMSZ_BOTTOMRIGHT)
4704 lprc->right -= w_offset;
4705
4706 if (fwSide == WMSZ_TOP || fwSide == WMSZ_TOPLEFT
4707 || fwSide == WMSZ_TOPRIGHT)
4708 lprc->top += h_offset;
4709 else if (fwSide == WMSZ_BOTTOM || fwSide == WMSZ_BOTTOMLEFT
4710 || fwSide == WMSZ_BOTTOMRIGHT)
4711 lprc->bottom -= h_offset;
4712 return TRUE;
4713}
4714
4715
4716
4717 static LRESULT CALLBACK
4718_WndProc(
4719 HWND hwnd,
4720 UINT uMsg,
4721 WPARAM wParam,
4722 LPARAM lParam)
4723{
4724 /*
4725 TRACE("WndProc: hwnd = %08x, msg = %x, wParam = %x, lParam = %x\n",
4726 hwnd, uMsg, wParam, lParam);
4727 */
4728
4729 HandleMouseHide(uMsg, lParam);
4730
4731 s_uMsg = uMsg;
4732 s_wParam = wParam;
4733 s_lParam = lParam;
4734
4735 switch (uMsg)
4736 {
4737 HANDLE_MSG(hwnd, WM_DEADCHAR, _OnDeadChar);
4738 HANDLE_MSG(hwnd, WM_SYSDEADCHAR, _OnDeadChar);
4739 /* HANDLE_MSG(hwnd, WM_ACTIVATE, _OnActivate); */
4740 HANDLE_MSG(hwnd, WM_CLOSE, _OnClose);
4741 /* HANDLE_MSG(hwnd, WM_COMMAND, _OnCommand); */
4742 HANDLE_MSG(hwnd, WM_DESTROY, _OnDestroy);
4743 HANDLE_MSG(hwnd, WM_DROPFILES, _OnDropFiles);
4744 HANDLE_MSG(hwnd, WM_HSCROLL, _OnScroll);
4745 HANDLE_MSG(hwnd, WM_KILLFOCUS, _OnKillFocus);
4746#ifdef FEAT_MENU
4747 HANDLE_MSG(hwnd, WM_COMMAND, _OnMenu);
4748#endif
4749 /* HANDLE_MSG(hwnd, WM_MOVE, _OnMove); */
4750 /* HANDLE_MSG(hwnd, WM_NCACTIVATE, _OnNCActivate); */
4751 HANDLE_MSG(hwnd, WM_SETFOCUS, _OnSetFocus);
4752 HANDLE_MSG(hwnd, WM_SIZE, _OnSize);
4753 /* HANDLE_MSG(hwnd, WM_SYSCOMMAND, _OnSysCommand); */
4754 /* HANDLE_MSG(hwnd, WM_SYSKEYDOWN, _OnAltKey); */
4755 HANDLE_MSG(hwnd, WM_VSCROLL, _OnScroll);
4756 // HANDLE_MSG(hwnd, WM_WINDOWPOSCHANGING, _OnWindowPosChanging);
4757 HANDLE_MSG(hwnd, WM_ACTIVATEAPP, _OnActivateApp);
4758#ifdef FEAT_NETBEANS_INTG
4759 HANDLE_MSG(hwnd, WM_WINDOWPOSCHANGED, _OnWindowPosChanged);
4760#endif
4761
Bram Moolenaarafa24992006-03-27 20:58:26 +00004762#ifdef FEAT_GUI_TABLINE
4763 case WM_RBUTTONUP:
4764 {
4765 if (gui_mch_showing_tabline())
4766 {
4767 POINT pt;
4768 RECT rect;
4769
4770 /*
4771 * If the cursor is on the tabline, display the tab menu
4772 */
4773 GetCursorPos((LPPOINT)&pt);
4774 GetWindowRect(s_textArea, &rect);
4775 if (pt.y < rect.top)
4776 {
4777 show_tabline_popup_menu();
Bram Moolenaar213ae482011-12-15 21:51:36 +01004778 return 0L;
Bram Moolenaarafa24992006-03-27 20:58:26 +00004779 }
4780 }
4781 return MyWindowProc(hwnd, uMsg, wParam, lParam);
4782 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004783 case WM_LBUTTONDBLCLK:
4784 {
4785 /*
4786 * If the user double clicked the tabline, create a new tab
4787 */
4788 if (gui_mch_showing_tabline())
4789 {
4790 POINT pt;
4791 RECT rect;
4792
4793 GetCursorPos((LPPOINT)&pt);
4794 GetWindowRect(s_textArea, &rect);
4795 if (pt.y < rect.top)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00004796 send_tabline_menu_event(0, TABLINE_MENU_NEW);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004797 }
4798 return MyWindowProc(hwnd, uMsg, wParam, lParam);
4799 }
Bram Moolenaarafa24992006-03-27 20:58:26 +00004800#endif
4801
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 case WM_QUERYENDSESSION: /* System wants to go down. */
4803 gui_shell_closed(); /* Will exit when no changed buffers. */
4804 return FALSE; /* Do NOT allow system to go down. */
4805
4806 case WM_ENDSESSION:
4807 if (wParam) /* system only really goes down when wParam is TRUE */
Bram Moolenaar213ae482011-12-15 21:51:36 +01004808 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 _OnEndSession();
Bram Moolenaar213ae482011-12-15 21:51:36 +01004810 return 0L;
4811 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 break;
4813
4814 case WM_CHAR:
4815 /* Don't use HANDLE_MSG() for WM_CHAR, it truncates wParam to a single
4816 * byte while we want the UTF-16 character value. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004817 _OnChar(hwnd, (UINT)wParam, (int)(short)LOWORD(lParam));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 return 0L;
4819
4820 case WM_SYSCHAR:
4821 /*
4822 * if 'winaltkeys' is "no", or it's "menu" and it's not a menu
4823 * shortcut key, handle like a typed ALT key, otherwise call Windows
4824 * ALT key handling.
4825 */
4826#ifdef FEAT_MENU
4827 if ( !gui.menu_is_active
4828 || p_wak[0] == 'n'
4829 || (p_wak[0] == 'm' && !gui_is_menu_shortcut((int)wParam))
4830 )
4831#endif
4832 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004833 _OnSysChar(hwnd, (UINT)wParam, (int)(short)LOWORD(lParam));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 return 0L;
4835 }
4836#ifdef FEAT_MENU
4837 else
4838 return MyWindowProc(hwnd, uMsg, wParam, lParam);
4839#endif
4840
4841 case WM_SYSKEYUP:
4842#ifdef FEAT_MENU
4843 /* This used to be done only when menu is active: ALT key is used for
4844 * that. But that caused problems when menu is disabled and using
4845 * Alt-Tab-Esc: get into a strange state where no mouse-moved events
4846 * are received, mouse pointer remains hidden. */
4847 return MyWindowProc(hwnd, uMsg, wParam, lParam);
4848#else
Bram Moolenaar213ae482011-12-15 21:51:36 +01004849 return 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850#endif
4851
4852 case WM_SIZING: /* HANDLE_MSG doesn't seem to handle this one */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004853 return _DuringSizing((UINT)wParam, (LPRECT)lParam);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854
4855 case WM_MOUSEWHEEL:
4856 _OnMouseWheel(hwnd, HIWORD(wParam));
Bram Moolenaar213ae482011-12-15 21:51:36 +01004857 return 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858
Bram Moolenaar520470a2005-06-16 21:59:56 +00004859 /* Notification for change in SystemParametersInfo() */
4860 case WM_SETTINGCHANGE:
4861 return _OnSettingChange((UINT)wParam);
4862
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004863#if defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 case WM_NOTIFY:
4865 switch (((LPNMHDR) lParam)->code)
4866 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004867# ifdef FEAT_MBYTE
4868 case TTN_GETDISPINFOW:
4869# endif
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004870 case TTN_GETDISPINFO:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004872 LPNMHDR hdr = (LPNMHDR)lParam;
4873 char_u *str = NULL;
4874 static void *tt_text = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004875
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004876 vim_free(tt_text);
4877 tt_text = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004878
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004879# ifdef FEAT_GUI_TABLINE
4880 if (gui_mch_showing_tabline()
4881 && hdr->hwndFrom == TabCtrl_GetToolTips(s_tabhwnd))
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004882 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004883 POINT pt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004884 /*
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004885 * Mouse is over the GUI tabline. Display the
4886 * tooltip for the tab under the cursor
4887 *
4888 * Get the cursor position within the tab control
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004889 */
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004890 GetCursorPos(&pt);
4891 if (ScreenToClient(s_tabhwnd, &pt) != 0)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004892 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004893 TCHITTESTINFO htinfo;
4894 int idx;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004895
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004896 /*
4897 * Get the tab under the cursor
4898 */
4899 htinfo.pt.x = pt.x;
4900 htinfo.pt.y = pt.y;
4901 idx = TabCtrl_HitTest(s_tabhwnd, &htinfo);
4902 if (idx != -1)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004903 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004904 tabpage_T *tp;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004905
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004906 tp = find_tabpage(idx + 1);
4907 if (tp != NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004908 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004909 get_tabline_label(tp, TRUE);
4910 str = NameBuff;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004911 }
4912 }
4913 }
4914 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004915# endif
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004916# ifdef FEAT_TOOLBAR
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004917# ifdef FEAT_GUI_TABLINE
4918 else
4919# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004921 UINT idButton;
4922 vimmenu_T *pMenu;
4923
4924 idButton = (UINT) hdr->idFrom;
4925 pMenu = gui_mswin_find_menu(root_menu, idButton);
4926 if (pMenu)
4927 str = pMenu->strings[MENU_INDEX_TIP];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004929# endif
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004930 if (str != NULL)
4931 {
4932# ifdef FEAT_MBYTE
4933 if (hdr->code == TTN_GETDISPINFOW)
4934 {
4935 LPNMTTDISPINFOW lpdi = (LPNMTTDISPINFOW)lParam;
4936
Bram Moolenaar6c9176d2008-01-03 19:45:15 +00004937 /* Set the maximum width, this also enables using
4938 * \n for line break. */
4939 SendMessage(lpdi->hdr.hwndFrom, TTM_SETMAXTIPWIDTH,
4940 0, 500);
4941
Bram Moolenaar36f692d2008-11-20 16:10:17 +00004942 tt_text = enc_to_utf16(str, NULL);
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004943 lpdi->lpszText = tt_text;
4944 /* can't show tooltip if failed */
4945 }
4946 else
4947# endif
4948 {
4949 LPNMTTDISPINFO lpdi = (LPNMTTDISPINFO)lParam;
4950
Bram Moolenaar6c9176d2008-01-03 19:45:15 +00004951 /* Set the maximum width, this also enables using
4952 * \n for line break. */
4953 SendMessage(lpdi->hdr.hwndFrom, TTM_SETMAXTIPWIDTH,
4954 0, 500);
4955
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004956 if (STRLEN(str) < sizeof(lpdi->szText)
4957 || ((tt_text = vim_strsave(str)) == NULL))
Bram Moolenaar418f81b2016-02-16 20:12:02 +01004958 vim_strncpy((char_u *)lpdi->szText, str,
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00004959 sizeof(lpdi->szText) - 1);
4960 else
4961 lpdi->lpszText = tt_text;
4962 }
4963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 }
4965 break;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004966# ifdef FEAT_GUI_TABLINE
4967 case TCN_SELCHANGE:
4968 if (gui_mch_showing_tabline()
4969 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
Bram Moolenaar213ae482011-12-15 21:51:36 +01004970 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004971 send_tabline_event(TabCtrl_GetCurSel(s_tabhwnd) + 1);
Bram Moolenaar213ae482011-12-15 21:51:36 +01004972 return 0L;
4973 }
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004974 break;
Bram Moolenaarafa24992006-03-27 20:58:26 +00004975
4976 case NM_RCLICK:
4977 if (gui_mch_showing_tabline()
4978 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
Bram Moolenaar213ae482011-12-15 21:51:36 +01004979 {
Bram Moolenaarafa24992006-03-27 20:58:26 +00004980 show_tabline_popup_menu();
Bram Moolenaar213ae482011-12-15 21:51:36 +01004981 return 0L;
4982 }
Bram Moolenaarafa24992006-03-27 20:58:26 +00004983 break;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004984# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 default:
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004986# ifdef FEAT_GUI_TABLINE
4987 if (gui_mch_showing_tabline()
4988 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
4989 return MyWindowProc(hwnd, uMsg, wParam, lParam);
4990# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 break;
4992 }
4993 break;
4994#endif
4995#if defined(MENUHINTS) && defined(FEAT_MENU)
4996 case WM_MENUSELECT:
4997 if (((UINT) HIWORD(wParam)
4998 & (0xffff ^ (MF_MOUSESELECT + MF_BITMAP + MF_POPUP)))
4999 == MF_HILITE
5000 && (State & CMDLINE) == 0)
5001 {
5002 UINT idButton;
5003 vimmenu_T *pMenu;
5004 static int did_menu_tip = FALSE;
5005
5006 if (did_menu_tip)
5007 {
5008 msg_clr_cmdline();
5009 setcursor();
5010 out_flush();
5011 did_menu_tip = FALSE;
5012 }
5013
5014 idButton = (UINT)LOWORD(wParam);
5015 pMenu = gui_mswin_find_menu(root_menu, idButton);
5016 if (pMenu != NULL && pMenu->strings[MENU_INDEX_TIP] != 0
5017 && GetMenuState(s_menuBar, pMenu->id, MF_BYCOMMAND) != -1)
5018 {
Bram Moolenaar2d8ab992007-06-19 08:06:18 +00005019 ++msg_hist_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 msg(pMenu->strings[MENU_INDEX_TIP]);
Bram Moolenaar2d8ab992007-06-19 08:06:18 +00005021 --msg_hist_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 setcursor();
5023 out_flush();
5024 did_menu_tip = TRUE;
5025 }
Bram Moolenaar213ae482011-12-15 21:51:36 +01005026 return 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 }
5028 break;
5029#endif
5030 case WM_NCHITTEST:
5031 {
5032 LRESULT result;
5033 int x, y;
5034 int xPos = GET_X_LPARAM(lParam);
5035
5036 result = MyWindowProc(hwnd, uMsg, wParam, lParam);
5037 if (result == HTCLIENT)
5038 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +00005039#ifdef FEAT_GUI_TABLINE
5040 if (gui_mch_showing_tabline())
5041 {
5042 int yPos = GET_Y_LPARAM(lParam);
5043 RECT rct;
5044
5045 /* If the cursor is on the GUI tabline, don't process this
5046 * event */
5047 GetWindowRect(s_textArea, &rct);
5048 if (yPos < rct.top)
5049 return result;
5050 }
5051#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +02005052 (void)gui_mch_get_winpos(&x, &y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 xPos -= x;
5054
5055 if (xPos < 48) /* <VN> TODO should use system metric? */
5056 return HTBOTTOMLEFT;
5057 else
5058 return HTBOTTOMRIGHT;
5059 }
5060 else
5061 return result;
5062 }
5063 /* break; notreached */
5064
5065#ifdef FEAT_MBYTE_IME
5066 case WM_IME_NOTIFY:
5067 if (!_OnImeNotify(hwnd, (DWORD)wParam, (DWORD)lParam))
5068 return MyWindowProc(hwnd, uMsg, wParam, lParam);
Bram Moolenaar213ae482011-12-15 21:51:36 +01005069 return 1L;
5070
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 case WM_IME_COMPOSITION:
5072 if (!_OnImeComposition(hwnd, wParam, lParam))
5073 return MyWindowProc(hwnd, uMsg, wParam, lParam);
Bram Moolenaar213ae482011-12-15 21:51:36 +01005074 return 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075#endif
5076
5077 default:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078#ifdef MSWIN_FIND_REPLACE
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005079 if (uMsg == s_findrep_msg && s_findrep_msg != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 {
5081 _OnFindRepl();
5082 }
5083#endif
5084 return MyWindowProc(hwnd, uMsg, wParam, lParam);
5085 }
5086
Bram Moolenaar2787ab92011-12-14 15:23:59 +01005087 return DefWindowProc(hwnd, uMsg, wParam, lParam);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088}
5089
5090/*
5091 * End of call-back routines
5092 */
5093
5094/* parent window, if specified with -P */
5095HWND vim_parent_hwnd = NULL;
5096
5097 static BOOL CALLBACK
5098FindWindowTitle(HWND hwnd, LPARAM lParam)
5099{
5100 char buf[2048];
5101 char *title = (char *)lParam;
5102
5103 if (GetWindowText(hwnd, buf, sizeof(buf)))
5104 {
5105 if (strstr(buf, title) != NULL)
5106 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005107 /* Found it. Store the window ref. and quit searching if MDI
5108 * works. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 vim_parent_hwnd = FindWindowEx(hwnd, NULL, "MDIClient", NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005110 if (vim_parent_hwnd != NULL)
5111 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 }
5113 }
5114 return TRUE; /* continue searching */
5115}
5116
5117/*
5118 * Invoked for '-P "title"' argument: search for parent application to open
5119 * our window in.
5120 */
5121 void
5122gui_mch_set_parent(char *title)
5123{
5124 EnumWindows(FindWindowTitle, (LPARAM)title);
5125 if (vim_parent_hwnd == NULL)
5126 {
5127 EMSG2(_("E671: Cannot find window title \"%s\""), title);
5128 mch_exit(2);
5129 }
5130}
5131
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005132#ifndef FEAT_OLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 static void
5134ole_error(char *arg)
5135{
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00005136 char buf[IOSIZE];
5137
5138 /* Can't use EMSG() here, we have not finished initialisation yet. */
5139 vim_snprintf(buf, IOSIZE,
5140 _("E243: Argument not supported: \"-%s\"; Use the OLE version."),
5141 arg);
5142 mch_errmsg(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005144#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145
5146/*
5147 * Parse the GUI related command-line arguments. Any arguments used are
5148 * deleted from argv, and *argc is decremented accordingly. This is called
5149 * when vim is started, whether or not the GUI has been started.
5150 */
5151 void
5152gui_mch_prepare(int *argc, char **argv)
5153{
5154 int silent = FALSE;
5155 int idx;
5156
5157 /* Check for special OLE command line parameters */
5158 if ((*argc == 2 || *argc == 3) && (argv[1][0] == '-' || argv[1][0] == '/'))
5159 {
5160 /* Check for a "-silent" argument first. */
5161 if (*argc == 3 && STRICMP(argv[1] + 1, "silent") == 0
5162 && (argv[2][0] == '-' || argv[2][0] == '/'))
5163 {
5164 silent = TRUE;
5165 idx = 2;
5166 }
5167 else
5168 idx = 1;
5169
5170 /* Register Vim as an OLE Automation server */
5171 if (STRICMP(argv[idx] + 1, "register") == 0)
5172 {
5173#ifdef FEAT_OLE
5174 RegisterMe(silent);
5175 mch_exit(0);
5176#else
5177 if (!silent)
5178 ole_error("register");
5179 mch_exit(2);
5180#endif
5181 }
5182
5183 /* Unregister Vim as an OLE Automation server */
5184 if (STRICMP(argv[idx] + 1, "unregister") == 0)
5185 {
5186#ifdef FEAT_OLE
5187 UnregisterMe(!silent);
5188 mch_exit(0);
5189#else
5190 if (!silent)
5191 ole_error("unregister");
5192 mch_exit(2);
5193#endif
5194 }
5195
5196 /* Ignore an -embedding argument. It is only relevant if the
5197 * application wants to treat the case when it is started manually
5198 * differently from the case where it is started via automation (and
5199 * we don't).
5200 */
5201 if (STRICMP(argv[idx] + 1, "embedding") == 0)
5202 {
5203#ifdef FEAT_OLE
5204 *argc = 1;
5205#else
5206 ole_error("embedding");
5207 mch_exit(2);
5208#endif
5209 }
5210 }
5211
5212#ifdef FEAT_OLE
5213 {
5214 int bDoRestart = FALSE;
5215
5216 InitOLE(&bDoRestart);
5217 /* automatically exit after registering */
5218 if (bDoRestart)
5219 mch_exit(0);
5220 }
5221#endif
5222
5223#ifdef FEAT_NETBEANS_INTG
5224 {
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02005225 /* stolen from gui_x11.c */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 int arg;
5227
5228 for (arg = 1; arg < *argc; arg++)
5229 if (strncmp("-nb", argv[arg], 3) == 0)
5230 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 netbeansArg = argv[arg];
5232 mch_memmove(&argv[arg], &argv[arg + 1],
5233 (--*argc - arg) * sizeof(char *));
5234 argv[*argc] = NULL;
5235 break; /* enough? */
5236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 }
5238#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239}
5240
5241/*
5242 * Initialise the GUI. Create all the windows, set up all the call-backs
5243 * etc.
5244 */
5245 int
5246gui_mch_init(void)
5247{
5248 const char szVimWndClass[] = VIM_CLASS;
5249 const char szTextAreaClass[] = "VimTextArea";
5250 WNDCLASS wndclass;
5251#ifdef FEAT_MBYTE
5252 const WCHAR szVimWndClassW[] = VIM_CLASSW;
Bram Moolenaar33d0b692010-02-17 16:31:32 +01005253 const WCHAR szTextAreaClassW[] = L"VimTextArea";
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254 WNDCLASSW wndclassw;
5255#endif
5256#ifdef GLOBAL_IME
5257 ATOM atom;
5258#endif
5259
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 /* Return here if the window was already opened (happens when
5261 * gui_mch_dialog() is called early). */
5262 if (s_hwnd != NULL)
Bram Moolenaar748bf032005-02-02 23:04:36 +00005263 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264
5265 /*
5266 * Load the tearoff bitmap
5267 */
5268#ifdef FEAT_TEAROFF
5269 s_htearbitmap = LoadBitmap(s_hinst, "IDB_TEAROFF");
5270#endif
5271
5272 gui.scrollbar_width = GetSystemMetrics(SM_CXVSCROLL);
5273 gui.scrollbar_height = GetSystemMetrics(SM_CYHSCROLL);
5274#ifdef FEAT_MENU
5275 gui.menu_height = 0; /* Windows takes care of this */
5276#endif
5277 gui.border_width = 0;
5278
5279 s_brush = CreateSolidBrush(GetSysColor(COLOR_BTNFACE));
5280
5281#ifdef FEAT_MBYTE
5282 /* First try using the wide version, so that we can use any title.
5283 * Otherwise only characters in the active codepage will work. */
5284 if (GetClassInfoW(s_hinst, szVimWndClassW, &wndclassw) == 0)
5285 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005286 wndclassw.style = CS_DBLCLKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 wndclassw.lpfnWndProc = _WndProc;
5288 wndclassw.cbClsExtra = 0;
5289 wndclassw.cbWndExtra = 0;
5290 wndclassw.hInstance = s_hinst;
5291 wndclassw.hIcon = LoadIcon(wndclassw.hInstance, "IDR_VIM");
5292 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
5293 wndclassw.hbrBackground = s_brush;
5294 wndclassw.lpszMenuName = NULL;
5295 wndclassw.lpszClassName = szVimWndClassW;
5296
5297 if ((
5298#ifdef GLOBAL_IME
5299 atom =
5300#endif
5301 RegisterClassW(&wndclassw)) == 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005302 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 else
5304 wide_WindowProc = TRUE;
5305 }
5306
5307 if (!wide_WindowProc)
5308#endif
5309
5310 if (GetClassInfo(s_hinst, szVimWndClass, &wndclass) == 0)
5311 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005312 wndclass.style = CS_DBLCLKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 wndclass.lpfnWndProc = _WndProc;
5314 wndclass.cbClsExtra = 0;
5315 wndclass.cbWndExtra = 0;
5316 wndclass.hInstance = s_hinst;
5317 wndclass.hIcon = LoadIcon(wndclass.hInstance, "IDR_VIM");
5318 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
5319 wndclass.hbrBackground = s_brush;
5320 wndclass.lpszMenuName = NULL;
5321 wndclass.lpszClassName = szVimWndClass;
5322
5323 if ((
5324#ifdef GLOBAL_IME
5325 atom =
5326#endif
5327 RegisterClass(&wndclass)) == 0)
5328 return FAIL;
5329 }
5330
5331 if (vim_parent_hwnd != NULL)
5332 {
5333#ifdef HAVE_TRY_EXCEPT
5334 __try
5335 {
5336#endif
5337 /* Open inside the specified parent window.
5338 * TODO: last argument should point to a CLIENTCREATESTRUCT
5339 * structure. */
5340 s_hwnd = CreateWindowEx(
5341 WS_EX_MDICHILD,
5342 szVimWndClass, "Vim MSWindows GUI",
Bram Moolenaare78c2062011-08-10 15:56:27 +02005343 WS_OVERLAPPEDWINDOW | WS_CHILD
5344 | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | 0xC000,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
5346 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
5347 100, /* Any value will do */
5348 100, /* Any value will do */
5349 vim_parent_hwnd, NULL,
5350 s_hinst, NULL);
5351#ifdef HAVE_TRY_EXCEPT
5352 }
5353 __except(EXCEPTION_EXECUTE_HANDLER)
5354 {
5355 /* NOP */
5356 }
5357#endif
5358 if (s_hwnd == NULL)
5359 {
5360 EMSG(_("E672: Unable to open window inside MDI application"));
5361 mch_exit(2);
5362 }
5363 }
5364 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00005365 {
5366 /* If the provided windowid is not valid reset it to zero, so that it
5367 * is ignored and we open our own window. */
5368 if (IsWindow((HWND)win_socket_id) <= 0)
5369 win_socket_id = 0;
5370
5371 /* Create a window. If win_socket_id is not zero without border and
5372 * titlebar, it will be reparented below. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 s_hwnd = CreateWindow(
Bram Moolenaar78e17622007-08-30 10:26:19 +00005374 szVimWndClass, "Vim MSWindows GUI",
Bram Moolenaare78c2062011-08-10 15:56:27 +02005375 (win_socket_id == 0 ? WS_OVERLAPPEDWINDOW : WS_POPUP)
5376 | WS_CLIPSIBLINGS | WS_CLIPCHILDREN,
Bram Moolenaar78e17622007-08-30 10:26:19 +00005377 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
5378 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
5379 100, /* Any value will do */
5380 100, /* Any value will do */
5381 NULL, NULL,
5382 s_hinst, NULL);
5383 if (s_hwnd != NULL && win_socket_id != 0)
5384 {
5385 SetParent(s_hwnd, (HWND)win_socket_id);
5386 ShowWindow(s_hwnd, SW_SHOWMAXIMIZED);
5387 }
5388 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389
5390 if (s_hwnd == NULL)
5391 return FAIL;
5392
5393#ifdef GLOBAL_IME
5394 global_ime_init(atom, s_hwnd);
5395#endif
5396#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
5397 dyn_imm_load();
5398#endif
5399
5400 /* Create the text area window */
Bram Moolenaar33d0b692010-02-17 16:31:32 +01005401#ifdef FEAT_MBYTE
5402 if (wide_WindowProc)
5403 {
5404 if (GetClassInfoW(s_hinst, szTextAreaClassW, &wndclassw) == 0)
5405 {
5406 wndclassw.style = CS_OWNDC;
5407 wndclassw.lpfnWndProc = _TextAreaWndProc;
5408 wndclassw.cbClsExtra = 0;
5409 wndclassw.cbWndExtra = 0;
5410 wndclassw.hInstance = s_hinst;
5411 wndclassw.hIcon = NULL;
5412 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
5413 wndclassw.hbrBackground = NULL;
5414 wndclassw.lpszMenuName = NULL;
5415 wndclassw.lpszClassName = szTextAreaClassW;
5416
5417 if (RegisterClassW(&wndclassw) == 0)
5418 return FAIL;
5419 }
5420 }
5421 else
5422#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 if (GetClassInfo(s_hinst, szTextAreaClass, &wndclass) == 0)
5424 {
5425 wndclass.style = CS_OWNDC;
5426 wndclass.lpfnWndProc = _TextAreaWndProc;
5427 wndclass.cbClsExtra = 0;
5428 wndclass.cbWndExtra = 0;
5429 wndclass.hInstance = s_hinst;
5430 wndclass.hIcon = NULL;
5431 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
5432 wndclass.hbrBackground = NULL;
5433 wndclass.lpszMenuName = NULL;
5434 wndclass.lpszClassName = szTextAreaClass;
5435
5436 if (RegisterClass(&wndclass) == 0)
5437 return FAIL;
5438 }
5439 s_textArea = CreateWindowEx(
Bram Moolenaar97b0b0e2015-11-19 20:23:37 +01005440 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 szTextAreaClass, "Vim text area",
5442 WS_CHILD | WS_VISIBLE, 0, 0,
5443 100, /* Any value will do for now */
5444 100, /* Any value will do for now */
5445 s_hwnd, NULL,
5446 s_hinst, NULL);
5447
5448 if (s_textArea == NULL)
5449 return FAIL;
5450
Bram Moolenaar20321902016-02-17 12:30:17 +01005451#ifdef FEAT_LIBCALL
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02005452 /* Try loading an icon from $RUNTIMEPATH/bitmaps/vim.ico. */
5453 {
5454 HANDLE hIcon = NULL;
5455
5456 if (mch_icon_load(&hIcon) == OK && hIcon != NULL)
Bram Moolenaar0f519a02014-10-06 18:10:09 +02005457 SendMessage(s_hwnd, WM_SETICON, ICON_SMALL, (LPARAM)hIcon);
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02005458 }
Bram Moolenaar20321902016-02-17 12:30:17 +01005459#endif
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02005460
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461#ifdef FEAT_MENU
5462 s_menuBar = CreateMenu();
5463#endif
5464 s_hdc = GetDC(s_textArea);
5465
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466#ifdef FEAT_WINDOWS
5467 DragAcceptFiles(s_hwnd, TRUE);
5468#endif
5469
5470 /* Do we need to bother with this? */
5471 /* m_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT); */
5472
5473 /* Get background/foreground colors from the system */
5474 gui_mch_def_colors();
5475
5476 /* Get the colors from the "Normal" group (set in syntax.c or in a vimrc
5477 * file) */
5478 set_normal_colors();
5479
5480 /*
5481 * Check that none of the colors are the same as the background color.
5482 * Then store the current values as the defaults.
5483 */
5484 gui_check_colors();
5485 gui.def_norm_pixel = gui.norm_pixel;
5486 gui.def_back_pixel = gui.back_pixel;
5487
5488 /* Get the colors for the highlight groups (gui_check_colors() might have
5489 * changed them) */
5490 highlight_gui_started();
5491
5492 /*
Bram Moolenaar97b0b0e2015-11-19 20:23:37 +01005493 * Start out by adding the configured border width into the border offset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 */
Bram Moolenaar97b0b0e2015-11-19 20:23:37 +01005495 gui.border_offset = gui.border_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496
5497 /*
5498 * Set up for Intellimouse processing
5499 */
5500 init_mouse_wheel();
5501
5502 /*
5503 * compute a couple of metrics used for the dialogs
5504 */
5505 get_dialog_font_metrics();
5506#ifdef FEAT_TOOLBAR
5507 /*
5508 * Create the toolbar
5509 */
5510 initialise_toolbar();
5511#endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00005512#ifdef FEAT_GUI_TABLINE
5513 /*
5514 * Create the tabline
5515 */
5516 initialise_tabline();
5517#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518#ifdef MSWIN_FIND_REPLACE
5519 /*
5520 * Initialise the dialog box stuff
5521 */
5522 s_findrep_msg = RegisterWindowMessage(FINDMSGSTRING);
5523
5524 /* Initialise the struct */
5525 s_findrep_struct.lStructSize = sizeof(s_findrep_struct);
Bram Moolenaar418f81b2016-02-16 20:12:02 +01005526 s_findrep_struct.lpstrFindWhat = (LPSTR)alloc(MSWIN_FR_BUFSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 s_findrep_struct.lpstrFindWhat[0] = NUL;
Bram Moolenaar418f81b2016-02-16 20:12:02 +01005528 s_findrep_struct.lpstrReplaceWith = (LPSTR)alloc(MSWIN_FR_BUFSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 s_findrep_struct.lpstrReplaceWith[0] = NUL;
5530 s_findrep_struct.wFindWhatLen = MSWIN_FR_BUFSIZE;
5531 s_findrep_struct.wReplaceWithLen = MSWIN_FR_BUFSIZE;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005532# ifdef FEAT_MBYTE
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00005533 s_findrep_struct_w.lStructSize = sizeof(s_findrep_struct_w);
5534 s_findrep_struct_w.lpstrFindWhat =
5535 (LPWSTR)alloc(MSWIN_FR_BUFSIZE * sizeof(WCHAR));
5536 s_findrep_struct_w.lpstrFindWhat[0] = NUL;
5537 s_findrep_struct_w.lpstrReplaceWith =
5538 (LPWSTR)alloc(MSWIN_FR_BUFSIZE * sizeof(WCHAR));
5539 s_findrep_struct_w.lpstrReplaceWith[0] = NUL;
5540 s_findrep_struct_w.wFindWhatLen = MSWIN_FR_BUFSIZE;
5541 s_findrep_struct_w.wReplaceWithLen = MSWIN_FR_BUFSIZE;
5542# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02005545#ifdef FEAT_EVAL
Bram Moolenaarf32c5cd2016-01-10 16:07:44 +01005546# if !defined(_MSC_VER) || (_MSC_VER < 1400)
5547/* Define HandleToLong for old MS and non-MS compilers if not defined. */
5548# ifndef HandleToLong
Bram Moolenaara87e2c22016-02-17 20:48:19 +01005549# define HandleToLong(h) ((long)(intptr_t)(h))
Bram Moolenaarf32c5cd2016-01-10 16:07:44 +01005550# endif
Bram Moolenaar4da95d32011-07-07 17:43:41 +02005551# endif
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02005552 /* set the v:windowid variable */
Bram Moolenaar7154b322011-05-25 21:18:06 +02005553 set_vim_var_nr(VV_WINDOWID, HandleToLong(s_hwnd));
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02005554#endif
5555
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02005556#ifdef FEAT_RENDER_OPTIONS
5557 if (p_rop)
5558 (void)gui_mch_set_rendering_options(p_rop);
5559#endif
5560
Bram Moolenaar748bf032005-02-02 23:04:36 +00005561theend:
5562 /* Display any pending error messages */
5563 display_errors();
5564
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 return OK;
5566}
5567
5568/*
5569 * Get the size of the screen, taking position on multiple monitors into
5570 * account (if supported).
5571 */
5572 static void
5573get_work_area(RECT *spi_rect)
5574{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005575 HMONITOR mon;
5576 MONITORINFO moninfo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005578 /* work out which monitor the window is on, and get *it's* work area */
Bram Moolenaar87f3d202016-12-01 20:18:50 +01005579 mon = MonitorFromWindow(s_hwnd, MONITOR_DEFAULTTOPRIMARY);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005580 if (mon != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005582 moninfo.cbSize = sizeof(MONITORINFO);
5583 if (GetMonitorInfo(mon, &moninfo))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005585 *spi_rect = moninfo.rcWork;
5586 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 }
5588 }
5589 /* this is the old method... */
5590 SystemParametersInfo(SPI_GETWORKAREA, 0, spi_rect, 0);
5591}
5592
5593/*
5594 * Set the size of the window to the given width and height in pixels.
5595 */
5596 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01005597gui_mch_set_shellsize(
5598 int width,
5599 int height,
5600 int min_width UNUSED,
5601 int min_height UNUSED,
5602 int base_width UNUSED,
5603 int base_height UNUSED,
Bram Moolenaarafa24992006-03-27 20:58:26 +00005604 int direction)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605{
5606 RECT workarea_rect;
5607 int win_width, win_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 WINDOWPLACEMENT wndpl;
5609
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005610 /* Try to keep window completely on screen. */
5611 /* Get position of the screen work area. This is the part that is not
5612 * used by the taskbar or appbars. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613 get_work_area(&workarea_rect);
5614
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02005615 /* Get current position of our window. Note that the .left and .top are
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005616 * relative to the work area. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 wndpl.length = sizeof(WINDOWPLACEMENT);
5618 GetWindowPlacement(s_hwnd, &wndpl);
5619
5620 /* Resizing a maximized window looks very strange, unzoom it first.
5621 * But don't do it when still starting up, it may have been requested in
5622 * the shortcut. */
5623 if (wndpl.showCmd == SW_SHOWMAXIMIZED && starting == 0)
5624 {
5625 ShowWindow(s_hwnd, SW_SHOWNORMAL);
5626 /* Need to get the settings of the normal window. */
5627 GetWindowPlacement(s_hwnd, &wndpl);
5628 }
5629
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 /* compute the size of the outside of the window */
Bram Moolenaar9d488952013-07-21 17:53:58 +02005631 win_width = width + (GetSystemMetrics(SM_CXFRAME) +
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02005632 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2;
Bram Moolenaar9d488952013-07-21 17:53:58 +02005633 win_height = height + (GetSystemMetrics(SM_CYFRAME) +
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02005634 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635 + GetSystemMetrics(SM_CYCAPTION)
5636#ifdef FEAT_MENU
5637 + gui_mswin_get_menu_height(FALSE)
5638#endif
5639 ;
5640
Bram Moolenaar6ef47c22012-01-04 20:29:22 +01005641 /* The following should take care of keeping Vim on the same monitor, no
5642 * matter if the secondary monitor is left or right of the primary
5643 * monitor. */
5644 wndpl.rcNormalPosition.right = wndpl.rcNormalPosition.left + win_width;
5645 wndpl.rcNormalPosition.bottom = wndpl.rcNormalPosition.top + win_height;
Bram Moolenaar56a907a2006-05-06 21:44:30 +00005646
Bram Moolenaar6ef47c22012-01-04 20:29:22 +01005647 /* If the window is going off the screen, move it on to the screen. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005648 if ((direction & RESIZE_HOR)
Bram Moolenaar6ef47c22012-01-04 20:29:22 +01005649 && wndpl.rcNormalPosition.right > workarea_rect.right)
5650 OffsetRect(&wndpl.rcNormalPosition,
5651 workarea_rect.right - wndpl.rcNormalPosition.right, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652
Bram Moolenaar6ef47c22012-01-04 20:29:22 +01005653 if ((direction & RESIZE_HOR)
5654 && wndpl.rcNormalPosition.left < workarea_rect.left)
5655 OffsetRect(&wndpl.rcNormalPosition,
5656 workarea_rect.left - wndpl.rcNormalPosition.left, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657
Bram Moolenaarafa24992006-03-27 20:58:26 +00005658 if ((direction & RESIZE_VERT)
Bram Moolenaar6ef47c22012-01-04 20:29:22 +01005659 && wndpl.rcNormalPosition.bottom > workarea_rect.bottom)
5660 OffsetRect(&wndpl.rcNormalPosition,
5661 0, workarea_rect.bottom - wndpl.rcNormalPosition.bottom);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662
Bram Moolenaar6ef47c22012-01-04 20:29:22 +01005663 if ((direction & RESIZE_VERT)
5664 && wndpl.rcNormalPosition.top < workarea_rect.top)
5665 OffsetRect(&wndpl.rcNormalPosition,
5666 0, workarea_rect.top - wndpl.rcNormalPosition.top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005667
5668 /* set window position - we should use SetWindowPlacement rather than
5669 * SetWindowPos as the MSDN docs say the coord systems returned by
5670 * these two are not compatible. */
5671 SetWindowPlacement(s_hwnd, &wndpl);
5672
5673 SetActiveWindow(s_hwnd);
5674 SetFocus(s_hwnd);
5675
5676#ifdef FEAT_MENU
5677 /* Menu may wrap differently now */
5678 gui_mswin_get_menu_height(!gui.starting);
5679#endif
5680}
5681
5682
5683 void
5684gui_mch_set_scrollbar_thumb(
5685 scrollbar_T *sb,
5686 long val,
5687 long size,
5688 long max)
5689{
5690 SCROLLINFO info;
5691
5692 sb->scroll_shift = 0;
5693 while (max > 32767)
5694 {
5695 max = (max + 1) >> 1;
5696 val >>= 1;
5697 size >>= 1;
5698 ++sb->scroll_shift;
5699 }
5700
5701 if (sb->scroll_shift > 0)
5702 ++size;
5703
5704 info.cbSize = sizeof(info);
5705 info.fMask = SIF_POS | SIF_RANGE | SIF_PAGE;
5706 info.nPos = val;
5707 info.nMin = 0;
5708 info.nMax = max;
5709 info.nPage = size;
5710 SetScrollInfo(sb->id, SB_CTL, &info, TRUE);
5711}
5712
5713
5714/*
5715 * Set the current text font.
5716 */
5717 void
5718gui_mch_set_font(GuiFont font)
5719{
5720 gui.currFont = font;
5721}
5722
5723
5724/*
5725 * Set the current text foreground color.
5726 */
5727 void
5728gui_mch_set_fg_color(guicolor_T color)
5729{
5730 gui.currFgColor = color;
5731}
5732
5733/*
5734 * Set the current text background color.
5735 */
5736 void
5737gui_mch_set_bg_color(guicolor_T color)
5738{
5739 gui.currBgColor = color;
5740}
5741
Bram Moolenaare2cc9702005-03-15 22:43:58 +00005742/*
5743 * Set the current text special color.
5744 */
5745 void
5746gui_mch_set_sp_color(guicolor_T color)
5747{
5748 gui.currSpColor = color;
5749}
5750
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751#if defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)
5752/*
5753 * Multi-byte handling, originally by Sung-Hoon Baek.
5754 * First static functions (no prototypes generated).
5755 */
5756#ifdef _MSC_VER
5757# include <ime.h> /* Apparently not needed for Cygwin, MingW or Borland. */
5758#endif
5759#include <imm.h>
5760
5761/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 * handle WM_IME_NOTIFY message
5763 */
5764 static LRESULT
Bram Moolenaar1266d672017-02-01 13:43:36 +01005765_OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005766{
5767 LRESULT lResult = 0;
5768 HIMC hImc;
5769
5770 if (!pImmGetContext || (hImc = pImmGetContext(hWnd)) == (HIMC)0)
5771 return lResult;
5772 switch (dwCommand)
5773 {
5774 case IMN_SETOPENSTATUS:
5775 if (pImmGetOpenStatus(hImc))
5776 {
5777 pImmSetCompositionFont(hImc, &norm_logfont);
5778 im_set_position(gui.row, gui.col);
5779
5780 /* Disable langmap */
5781 State &= ~LANGMAP;
5782 if (State & INSERT)
5783 {
5784#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
5785 /* Unshown 'keymap' in status lines */
5786 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5787 {
5788 /* Save cursor position */
5789 int old_row = gui.row;
5790 int old_col = gui.col;
5791
5792 // This must be called here before
5793 // status_redraw_curbuf(), otherwise the mode
5794 // message may appear in the wrong position.
5795 showmode();
5796 status_redraw_curbuf();
5797 update_screen(0);
5798 /* Restore cursor position */
5799 gui.row = old_row;
5800 gui.col = old_col;
5801 }
5802#endif
5803 }
5804 }
5805 gui_update_cursor(TRUE, FALSE);
5806 lResult = 0;
5807 break;
5808 }
5809 pImmReleaseContext(hWnd, hImc);
5810 return lResult;
5811}
5812
5813 static LRESULT
Bram Moolenaar1266d672017-02-01 13:43:36 +01005814_OnImeComposition(HWND hwnd, WPARAM dbcs UNUSED, LPARAM param)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815{
5816 char_u *ret;
5817 int len;
5818
5819 if ((param & GCS_RESULTSTR) == 0) /* Composition unfinished. */
5820 return 0;
5821
5822 ret = GetResultStr(hwnd, GCS_RESULTSTR, &len);
5823 if (ret != NULL)
5824 {
5825 add_to_input_buf_csi(ret, len);
5826 vim_free(ret);
5827 return 1;
5828 }
5829 return 0;
5830}
5831
5832/*
5833 * get the current composition string, in UCS-2; *lenp is the number of
5834 * *lenp is the number of Unicode characters.
5835 */
5836 static short_u *
5837GetCompositionString_inUCS2(HIMC hIMC, DWORD GCS, int *lenp)
5838{
5839 LONG ret;
5840 LPWSTR wbuf = NULL;
5841 char_u *buf;
5842
5843 if (!pImmGetContext)
5844 return NULL; /* no imm32.dll */
5845
5846 /* Try Unicode; this'll always work on NT regardless of codepage. */
5847 ret = pImmGetCompositionStringW(hIMC, GCS, NULL, 0);
5848 if (ret == 0)
5849 return NULL; /* empty */
5850
5851 if (ret > 0)
5852 {
5853 /* Allocate the requested buffer plus space for the NUL character. */
5854 wbuf = (LPWSTR)alloc(ret + sizeof(WCHAR));
5855 if (wbuf != NULL)
5856 {
5857 pImmGetCompositionStringW(hIMC, GCS, wbuf, ret);
5858 *lenp = ret / sizeof(WCHAR);
5859 }
5860 return (short_u *)wbuf;
5861 }
5862
5863 /* ret < 0; we got an error, so try the ANSI version. This'll work
5864 * on 9x/ME, but only if the codepage happens to be set to whatever
5865 * we're inputting. */
5866 ret = pImmGetCompositionStringA(hIMC, GCS, NULL, 0);
5867 if (ret <= 0)
5868 return NULL; /* empty or error */
5869
5870 buf = alloc(ret);
5871 if (buf == NULL)
5872 return NULL;
5873 pImmGetCompositionStringA(hIMC, GCS, buf, ret);
5874
5875 /* convert from codepage to UCS-2 */
Bram Moolenaar418f81b2016-02-16 20:12:02 +01005876 MultiByteToWideChar_alloc(GetACP(), 0, (LPCSTR)buf, ret, &wbuf, lenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877 vim_free(buf);
5878
5879 return (short_u *)wbuf;
5880}
5881
5882/*
5883 * void GetResultStr()
5884 *
5885 * This handles WM_IME_COMPOSITION with GCS_RESULTSTR flag on.
5886 * get complete composition string
5887 */
5888 static char_u *
5889GetResultStr(HWND hwnd, int GCS, int *lenp)
5890{
5891 HIMC hIMC; /* Input context handle. */
5892 short_u *buf = NULL;
5893 char_u *convbuf = NULL;
5894
5895 if (!pImmGetContext || (hIMC = pImmGetContext(hwnd)) == (HIMC)0)
5896 return NULL;
5897
5898 /* Reads in the composition string. */
5899 buf = GetCompositionString_inUCS2(hIMC, GCS, lenp);
5900 if (buf == NULL)
5901 return NULL;
5902
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005903 convbuf = utf16_to_enc(buf, lenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 pImmReleaseContext(hwnd, hIMC);
5905 vim_free(buf);
5906 return convbuf;
5907}
5908#endif
5909
5910/* For global functions we need prototypes. */
5911#if (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) || defined(PROTO)
5912
5913/*
5914 * set font to IM.
5915 */
5916 void
5917im_set_font(LOGFONT *lf)
5918{
5919 HIMC hImc;
5920
5921 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
5922 {
5923 pImmSetCompositionFont(hImc, lf);
5924 pImmReleaseContext(s_hwnd, hImc);
5925 }
5926}
5927
5928/*
5929 * Notify cursor position to IM.
5930 */
5931 void
5932im_set_position(int row, int col)
5933{
5934 HIMC hImc;
5935
5936 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
5937 {
5938 COMPOSITIONFORM cfs;
5939
5940 cfs.dwStyle = CFS_POINT;
5941 cfs.ptCurrentPos.x = FILL_X(col);
5942 cfs.ptCurrentPos.y = FILL_Y(row);
5943 MapWindowPoints(s_textArea, s_hwnd, &cfs.ptCurrentPos, 1);
5944 pImmSetCompositionWindow(hImc, &cfs);
5945
5946 pImmReleaseContext(s_hwnd, hImc);
5947 }
5948}
5949
5950/*
5951 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
5952 */
5953 void
5954im_set_active(int active)
5955{
5956 HIMC hImc;
5957 static HIMC hImcOld = (HIMC)0;
5958
5959 if (pImmGetContext) /* if NULL imm32.dll wasn't loaded (yet) */
5960 {
5961 if (p_imdisable)
5962 {
5963 if (hImcOld == (HIMC)0)
5964 {
5965 hImcOld = pImmGetContext(s_hwnd);
5966 if (hImcOld)
5967 pImmAssociateContext(s_hwnd, (HIMC)0);
5968 }
5969 active = FALSE;
5970 }
5971 else if (hImcOld != (HIMC)0)
5972 {
5973 pImmAssociateContext(s_hwnd, hImcOld);
5974 hImcOld = (HIMC)0;
5975 }
5976
5977 hImc = pImmGetContext(s_hwnd);
5978 if (hImc)
5979 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00005980 /*
5981 * for Korean ime
5982 */
5983 HKL hKL = GetKeyboardLayout(0);
5984
5985 if (LOWORD(hKL) == MAKELANGID(LANG_KOREAN, SUBLANG_KOREAN))
5986 {
5987 static DWORD dwConversionSaved = 0, dwSentenceSaved = 0;
5988 static BOOL bSaved = FALSE;
5989
5990 if (active)
5991 {
5992 /* if we have a saved conversion status, restore it */
5993 if (bSaved)
5994 pImmSetConversionStatus(hImc, dwConversionSaved,
5995 dwSentenceSaved);
5996 bSaved = FALSE;
5997 }
5998 else
5999 {
6000 /* save conversion status and disable korean */
6001 if (pImmGetConversionStatus(hImc, &dwConversionSaved,
6002 &dwSentenceSaved))
6003 {
6004 bSaved = TRUE;
6005 pImmSetConversionStatus(hImc,
6006 dwConversionSaved & ~(IME_CMODE_NATIVE
6007 | IME_CMODE_FULLSHAPE),
6008 dwSentenceSaved);
6009 }
6010 }
6011 }
6012
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013 pImmSetOpenStatus(hImc, active);
6014 pImmReleaseContext(s_hwnd, hImc);
6015 }
6016 }
6017}
6018
6019/*
6020 * Get IM status. When IM is on, return not 0. Else return 0.
6021 */
6022 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01006023im_get_status(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024{
6025 int status = 0;
6026 HIMC hImc;
6027
6028 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
6029 {
6030 status = pImmGetOpenStatus(hImc) ? 1 : 0;
6031 pImmReleaseContext(s_hwnd, hImc);
6032 }
6033 return status;
6034}
6035
6036#endif /* FEAT_MBYTE && FEAT_MBYTE_IME */
6037
6038#if defined(FEAT_MBYTE) && !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME)
6039/* Win32 with GLOBAL IME */
6040
6041/*
6042 * Notify cursor position to IM.
6043 */
6044 void
6045im_set_position(int row, int col)
6046{
6047 /* Win32 with GLOBAL IME */
6048 POINT p;
6049
6050 p.x = FILL_X(col);
6051 p.y = FILL_Y(row);
6052 MapWindowPoints(s_textArea, s_hwnd, &p, 1);
6053 global_ime_set_position(&p);
6054}
6055
6056/*
6057 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
6058 */
6059 void
6060im_set_active(int active)
6061{
6062 global_ime_set_status(active);
6063}
6064
6065/*
6066 * Get IM status. When IM is on, return not 0. Else return 0.
6067 */
6068 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01006069im_get_status(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070{
6071 return global_ime_get_status();
6072}
6073#endif
6074
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006075#ifdef FEAT_MBYTE
6076/*
Bram Moolenaar39f05632006-03-19 22:15:26 +00006077 * Convert latin9 text "text[len]" to ucs-2 in "unicodebuf".
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006078 */
6079 static void
6080latin9_to_ucs(char_u *text, int len, WCHAR *unicodebuf)
6081{
6082 int c;
6083
Bram Moolenaarca003e12006-03-17 23:19:38 +00006084 while (--len >= 0)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006085 {
6086 c = *text++;
6087 switch (c)
6088 {
6089 case 0xa4: c = 0x20ac; break; /* euro */
6090 case 0xa6: c = 0x0160; break; /* S hat */
6091 case 0xa8: c = 0x0161; break; /* S -hat */
6092 case 0xb4: c = 0x017d; break; /* Z hat */
6093 case 0xb8: c = 0x017e; break; /* Z -hat */
6094 case 0xbc: c = 0x0152; break; /* OE */
6095 case 0xbd: c = 0x0153; break; /* oe */
6096 case 0xbe: c = 0x0178; break; /* Y */
6097 }
6098 *unicodebuf++ = c;
6099 }
6100}
6101#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102
6103#ifdef FEAT_RIGHTLEFT
6104/*
6105 * What is this for? In the case where you are using Win98 or Win2K or later,
6106 * and you are using a Hebrew font (or Arabic!), Windows does you a favor and
6107 * reverses the string sent to the TextOut... family. This sucks, because we
6108 * go to a lot of effort to do the right thing, and there doesn't seem to be a
6109 * way to tell Windblows not to do this!
6110 *
6111 * The short of it is that this 'RevOut' only gets called if you are running
6112 * one of the new, "improved" MS OSes, and only if you are running in
6113 * 'rightleft' mode. It makes display take *slightly* longer, but not
6114 * noticeably so.
6115 */
6116 static void
6117RevOut( HDC s_hdc,
6118 int col,
6119 int row,
6120 UINT foptions,
6121 CONST RECT *pcliprect,
6122 LPCTSTR text,
6123 UINT len,
6124 CONST INT *padding)
6125{
6126 int ix;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006128 for (ix = 0; ix < (int)len; ++ix)
6129 ExtTextOut(s_hdc, col + TEXT_X(ix), row, foptions,
6130 pcliprect, text + ix, 1, padding);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131}
6132#endif
6133
6134 void
6135gui_mch_draw_string(
6136 int row,
6137 int col,
6138 char_u *text,
6139 int len,
6140 int flags)
6141{
6142 static int *padding = NULL;
6143 static int pad_size = 0;
6144 int i;
6145 const RECT *pcliprect = NULL;
6146 UINT foptions = 0;
6147#ifdef FEAT_MBYTE
6148 static WCHAR *unicodebuf = NULL;
6149 static int *unicodepdy = NULL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006150 static int unibuflen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151 int n = 0;
6152#endif
6153 HPEN hpen, old_pen;
6154 int y;
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02006155#ifdef FEAT_DIRECTX
6156 int font_is_ttf_or_vector = 0;
6157#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006158
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 /*
6160 * Italic and bold text seems to have an extra row of pixels at the bottom
6161 * (below where the bottom of the character should be). If we draw the
6162 * characters with a solid background, the top row of pixels in the
6163 * character below will be overwritten. We can fix this by filling in the
6164 * background ourselves, to the correct character proportions, and then
6165 * writing the character in transparent mode. Still have a problem when
6166 * the character is "_", which gets written on to the character below.
6167 * New fix: set gui.char_ascent to -1. This shifts all characters up one
6168 * pixel in their slots, which fixes the problem with the bottom row of
6169 * pixels. We still need this code because otherwise the top row of pixels
6170 * becomes a problem. - webb.
6171 */
6172 static HBRUSH hbr_cache[2] = {NULL, NULL};
6173 static guicolor_T brush_color[2] = {INVALCOLOR, INVALCOLOR};
6174 static int brush_lru = 0;
6175 HBRUSH hbr;
6176 RECT rc;
6177
6178 if (!(flags & DRAW_TRANSP))
6179 {
6180 /*
6181 * Clear background first.
6182 * Note: FillRect() excludes right and bottom of rectangle.
6183 */
6184 rc.left = FILL_X(col);
6185 rc.top = FILL_Y(row);
6186#ifdef FEAT_MBYTE
6187 if (has_mbyte)
6188 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 /* Compute the length in display cells. */
Bram Moolenaar72597a52010-07-18 15:31:08 +02006190 rc.right = FILL_X(col + mb_string2cells(text, len));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191 }
6192 else
6193#endif
6194 rc.right = FILL_X(col + len);
6195 rc.bottom = FILL_Y(row + 1);
6196
6197 /* Cache the created brush, that saves a lot of time. We need two:
6198 * one for cursor background and one for the normal background. */
6199 if (gui.currBgColor == brush_color[0])
6200 {
6201 hbr = hbr_cache[0];
6202 brush_lru = 1;
6203 }
6204 else if (gui.currBgColor == brush_color[1])
6205 {
6206 hbr = hbr_cache[1];
6207 brush_lru = 0;
6208 }
6209 else
6210 {
6211 if (hbr_cache[brush_lru] != NULL)
6212 DeleteBrush(hbr_cache[brush_lru]);
6213 hbr_cache[brush_lru] = CreateSolidBrush(gui.currBgColor);
6214 brush_color[brush_lru] = gui.currBgColor;
6215 hbr = hbr_cache[brush_lru];
6216 brush_lru = !brush_lru;
6217 }
6218 FillRect(s_hdc, &rc, hbr);
6219
6220 SetBkMode(s_hdc, TRANSPARENT);
6221
6222 /*
6223 * When drawing block cursor, prevent inverted character spilling
6224 * over character cell (can happen with bold/italic)
6225 */
6226 if (flags & DRAW_CURSOR)
6227 {
6228 pcliprect = &rc;
6229 foptions = ETO_CLIPPED;
6230 }
6231 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232 SetTextColor(s_hdc, gui.currFgColor);
6233 SelectFont(s_hdc, gui.currFont);
6234
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02006235#ifdef FEAT_DIRECTX
6236 if (IS_ENABLE_DIRECTX())
6237 {
6238 TEXTMETRIC tm;
6239
6240 GetTextMetrics(s_hdc, &tm);
6241 if (tm.tmPitchAndFamily & (TMPF_TRUETYPE | TMPF_VECTOR))
6242 {
6243 font_is_ttf_or_vector = 1;
6244 DWriteContext_SetFont(s_dwc, (HFONT)gui.currFont);
6245 }
6246 }
6247#endif
6248
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 if (pad_size != Columns || padding == NULL || padding[0] != gui.char_width)
6250 {
6251 vim_free(padding);
6252 pad_size = Columns;
6253
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00006254 /* Don't give an out-of-memory message here, it would call us
6255 * recursively. */
6256 padding = (int *)lalloc(pad_size * sizeof(int), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 if (padding != NULL)
6258 for (i = 0; i < pad_size; i++)
6259 padding[i] = gui.char_width;
6260 }
6261
Bram Moolenaar071d4272004-06-13 20:20:40 +00006262 /*
6263 * We have to provide the padding argument because italic and bold versions
6264 * of fixed-width fonts are often one pixel or so wider than their normal
6265 * versions.
6266 * No check for DRAW_BOLD, Windows will have done it already.
6267 */
6268
6269#ifdef FEAT_MBYTE
6270 /* Check if there are any UTF-8 characters. If not, use normal text
6271 * output to speed up output. */
6272 if (enc_utf8)
6273 for (n = 0; n < len; ++n)
6274 if (text[n] >= 0x80)
6275 break;
6276
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02006277#if defined(FEAT_DIRECTX)
6278 /* Quick hack to enable DirectWrite. To use DirectWrite (antialias), it is
6279 * required that unicode drawing routine, currently. So this forces it
6280 * enabled. */
6281 if (enc_utf8 && IS_ENABLE_DIRECTX())
6282 n = 0; /* Keep n < len, to enter block for unicode. */
6283#endif
6284
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 /* Check if the Unicode buffer exists and is big enough. Create it
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006286 * with the same length as the multi-byte string, the number of wide
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287 * characters is always equal or smaller. */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006288 if ((enc_utf8
6289 || (enc_codepage > 0 && (int)GetACP() != enc_codepage)
6290 || enc_latin9)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291 && (unicodebuf == NULL || len > unibuflen))
6292 {
6293 vim_free(unicodebuf);
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00006294 unicodebuf = (WCHAR *)lalloc(len * sizeof(WCHAR), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006295
6296 vim_free(unicodepdy);
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00006297 unicodepdy = (int *)lalloc(len * sizeof(int), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006298
6299 unibuflen = len;
6300 }
6301
6302 if (enc_utf8 && n < len && unicodebuf != NULL)
6303 {
6304 /* Output UTF-8 characters. Caller has already separated
6305 * composing characters. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00006306 int i;
6307 int wlen; /* string length in words */
6308 int clen; /* string length in characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309 int cells; /* cell width of string up to composing char */
6310 int cw; /* width of current cell */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006311 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00006313 wlen = 0;
Bram Moolenaarca003e12006-03-17 23:19:38 +00006314 clen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 cells = 0;
Bram Moolenaarca003e12006-03-17 23:19:38 +00006316 for (i = 0; i < len; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006318 c = utf_ptr2char(text + i);
6319 if (c >= 0x10000)
6320 {
6321 /* Turn into UTF-16 encoding. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00006322 unicodebuf[wlen++] = ((c - 0x10000) >> 10) + 0xD800;
6323 unicodebuf[wlen++] = ((c - 0x10000) & 0x3ff) + 0xDC00;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006324 }
6325 else
6326 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00006327 unicodebuf[wlen++] = c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006328 }
6329 cw = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 if (cw > 2) /* don't use 4 for unprintable char */
6331 cw = 1;
6332 if (unicodepdy != NULL)
6333 {
6334 /* Use unicodepdy to make characters fit as we expect, even
6335 * when the font uses different widths (e.g., bold character
6336 * is wider). */
Bram Moolenaard804fdf2016-02-27 16:04:58 +01006337 if (c >= 0x10000)
6338 {
6339 unicodepdy[wlen - 2] = cw * gui.char_width;
6340 unicodepdy[wlen - 1] = 0;
6341 }
6342 else
6343 unicodepdy[wlen - 1] = cw * gui.char_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006344 }
6345 cells += cw;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006346 i += utfc_ptr2len_len(text + i, len - i);
Bram Moolenaarca003e12006-03-17 23:19:38 +00006347 ++clen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006348 }
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02006349#if defined(FEAT_DIRECTX)
6350 if (IS_ENABLE_DIRECTX() && font_is_ttf_or_vector)
6351 {
Bram Moolenaar9b352c42014-08-06 16:49:55 +02006352 /* Add one to "cells" for italics. */
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02006353 DWriteContext_DrawText(s_dwc, s_hdc, unicodebuf, wlen,
Bram Moolenaar9b352c42014-08-06 16:49:55 +02006354 TEXT_X(col), TEXT_Y(row), FILL_X(cells + 1), FILL_Y(1),
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02006355 gui.char_width, gui.currFgColor);
6356 }
6357 else
6358#endif
6359 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
6360 foptions, pcliprect, unicodebuf, wlen, unicodepdy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006361 len = cells; /* used for underlining */
6362 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006363 else if ((enc_codepage > 0 && (int)GetACP() != enc_codepage) || enc_latin9)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006364 {
6365 /* If we want to display codepage data, and the current CP is not the
6366 * ANSI one, we need to go via Unicode. */
6367 if (unicodebuf != NULL)
6368 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006369 if (enc_latin9)
6370 latin9_to_ucs(text, len, unicodebuf);
6371 else
6372 len = MultiByteToWideChar(enc_codepage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006373 MB_PRECOMPOSED,
6374 (char *)text, len,
6375 (LPWSTR)unicodebuf, unibuflen);
6376 if (len != 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006377 {
6378 /* Use unicodepdy to make characters fit as we expect, even
6379 * when the font uses different widths (e.g., bold character
6380 * is wider). */
6381 if (unicodepdy != NULL)
6382 {
6383 int i;
6384 int cw;
6385
6386 for (i = 0; i < len; ++i)
6387 {
6388 cw = utf_char2cells(unicodebuf[i]);
6389 if (cw > 2)
6390 cw = 1;
6391 unicodepdy[i] = cw * gui.char_width;
6392 }
6393 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006394 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006395 foptions, pcliprect, unicodebuf, len, unicodepdy);
6396 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006397 }
6398 }
6399 else
6400#endif
6401 {
6402#ifdef FEAT_RIGHTLEFT
Bram Moolenaar4ee40b02014-09-19 16:13:53 +02006403 /* Windows will mess up RL text, so we have to draw it character by
6404 * character. Only do this if RL is on, since it's slow. */
6405 if (curwin->w_p_rl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406 RevOut(s_hdc, TEXT_X(col), TEXT_Y(row),
6407 foptions, pcliprect, (char *)text, len, padding);
6408 else
6409#endif
6410 ExtTextOut(s_hdc, TEXT_X(col), TEXT_Y(row),
6411 foptions, pcliprect, (char *)text, len, padding);
6412 }
6413
Bram Moolenaare2cc9702005-03-15 22:43:58 +00006414 /* Underline */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415 if (flags & DRAW_UNDERL)
6416 {
6417 hpen = CreatePen(PS_SOLID, 1, gui.currFgColor);
6418 old_pen = SelectObject(s_hdc, hpen);
6419 /* When p_linespace is 0, overwrite the bottom row of pixels.
6420 * Otherwise put the line just below the character. */
6421 y = FILL_Y(row + 1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006422 if (p_linespace > 1)
6423 y -= p_linespace - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424 MoveToEx(s_hdc, FILL_X(col), y, NULL);
6425 /* Note: LineTo() excludes the last pixel in the line. */
6426 LineTo(s_hdc, FILL_X(col + len), y);
6427 DeleteObject(SelectObject(s_hdc, old_pen));
6428 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00006429
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02006430 /* Strikethrough */
6431 if (flags & DRAW_STRIKE)
6432 {
6433 hpen = CreatePen(PS_SOLID, 1, gui.currSpColor);
6434 old_pen = SelectObject(s_hdc, hpen);
6435 y = FILL_Y(row + 1) - gui.char_height/2;
6436 MoveToEx(s_hdc, FILL_X(col), y, NULL);
6437 /* Note: LineTo() excludes the last pixel in the line. */
6438 LineTo(s_hdc, FILL_X(col + len), y);
6439 DeleteObject(SelectObject(s_hdc, old_pen));
6440 }
6441
Bram Moolenaare2cc9702005-03-15 22:43:58 +00006442 /* Undercurl */
6443 if (flags & DRAW_UNDERC)
6444 {
6445 int x;
6446 int offset;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006447 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaare2cc9702005-03-15 22:43:58 +00006448
6449 y = FILL_Y(row + 1) - 1;
6450 for (x = FILL_X(col); x < FILL_X(col + len); ++x)
6451 {
6452 offset = val[x % 8];
6453 SetPixel(s_hdc, x, y - offset, gui.currSpColor);
6454 }
6455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456}
6457
6458
6459/*
6460 * Output routines.
6461 */
6462
6463/* Flush any output to the screen */
6464 void
6465gui_mch_flush(void)
6466{
6467# if defined(__BORLANDC__)
6468 /*
6469 * The GdiFlush declaration (in Borland C 5.01 <wingdi.h>) is not a
6470 * prototype declaration.
6471 * The compiler complains if __stdcall is not used in both declarations.
6472 */
6473 BOOL __stdcall GdiFlush(void);
6474# endif
6475
6476 GdiFlush();
6477}
6478
6479 static void
6480clear_rect(RECT *rcp)
6481{
6482 HBRUSH hbr;
6483
6484 hbr = CreateSolidBrush(gui.back_pixel);
6485 FillRect(s_hdc, rcp, hbr);
6486 DeleteBrush(hbr);
6487}
6488
6489
Bram Moolenaarc716c302006-01-21 22:12:51 +00006490 void
6491gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
6492{
6493 RECT workarea_rect;
6494
6495 get_work_area(&workarea_rect);
6496
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006497 *screen_w = workarea_rect.right - workarea_rect.left
Bram Moolenaar9d488952013-07-21 17:53:58 +02006498 - (GetSystemMetrics(SM_CXFRAME) +
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02006499 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2;
Bram Moolenaarc716c302006-01-21 22:12:51 +00006500
6501 /* FIXME: dirty trick: Because the gui_get_base_height() doesn't include
6502 * the menubar for MSwin, we subtract it from the screen height, so that
6503 * the window size can be made to fit on the screen. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006504 *screen_h = workarea_rect.bottom - workarea_rect.top
Bram Moolenaar9d488952013-07-21 17:53:58 +02006505 - (GetSystemMetrics(SM_CYFRAME) +
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02006506 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2
Bram Moolenaarc716c302006-01-21 22:12:51 +00006507 - GetSystemMetrics(SM_CYCAPTION)
6508#ifdef FEAT_MENU
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00006509 - gui_mswin_get_menu_height(FALSE)
Bram Moolenaarc716c302006-01-21 22:12:51 +00006510#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00006511 ;
Bram Moolenaarc716c302006-01-21 22:12:51 +00006512}
6513
6514
Bram Moolenaar071d4272004-06-13 20:20:40 +00006515#if defined(FEAT_MENU) || defined(PROTO)
6516/*
6517 * Add a sub menu to the menu bar.
6518 */
6519 void
6520gui_mch_add_menu(
6521 vimmenu_T *menu,
6522 int pos)
6523{
6524 vimmenu_T *parent = menu->parent;
6525
6526 menu->submenu_id = CreatePopupMenu();
6527 menu->id = s_menu_id++;
6528
6529 if (menu_is_menubar(menu->name))
6530 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006531#ifdef FEAT_MBYTE
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006532 WCHAR *wn = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006533
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006534 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
6535 {
6536 /* 'encoding' differs from active codepage: convert menu name
6537 * and use wide function */
6538 wn = enc_to_utf16(menu->name, NULL);
6539 if (wn != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006540 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006541 MENUITEMINFOW infow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006542
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006543 infow.cbSize = sizeof(infow);
6544 infow.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID
6545 | MIIM_SUBMENU;
6546 infow.dwItemData = (long_u)menu;
6547 infow.wID = menu->id;
6548 infow.fType = MFT_STRING;
6549 infow.dwTypeData = wn;
6550 infow.cch = (UINT)wcslen(wn);
6551 infow.hSubMenu = menu->submenu_id;
6552 InsertMenuItemW((parent == NULL)
6553 ? s_menuBar : parent->submenu_id,
6554 (UINT)pos, TRUE, &infow);
6555 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006557 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006559 if (wn == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006560#endif
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006561 {
6562 MENUITEMINFO info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006564 info.cbSize = sizeof(info);
6565 info.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID | MIIM_SUBMENU;
6566 info.dwItemData = (long_u)menu;
6567 info.wID = menu->id;
6568 info.fType = MFT_STRING;
6569 info.dwTypeData = (LPTSTR)menu->name;
6570 info.cch = (UINT)STRLEN(menu->name);
6571 info.hSubMenu = menu->submenu_id;
6572 InsertMenuItem((parent == NULL)
6573 ? s_menuBar : parent->submenu_id,
6574 (UINT)pos, TRUE, &info);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006575 }
6576 }
6577
6578 /* Fix window size if menu may have wrapped */
6579 if (parent == NULL)
6580 gui_mswin_get_menu_height(!gui.starting);
6581#ifdef FEAT_TEAROFF
6582 else if (IsWindow(parent->tearoff_handle))
6583 rebuild_tearoff(parent);
6584#endif
6585}
6586
6587 void
6588gui_mch_show_popupmenu(vimmenu_T *menu)
6589{
6590 POINT mp;
6591
6592 (void)GetCursorPos((LPPOINT)&mp);
6593 gui_mch_show_popupmenu_at(menu, (int)mp.x, (int)mp.y);
6594}
6595
6596 void
Bram Moolenaar045e82d2005-07-08 22:25:33 +00006597gui_make_popup(char_u *path_name, int mouse_pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006598{
6599 vimmenu_T *menu = gui_find_menu(path_name);
6600
6601 if (menu != NULL)
6602 {
6603 POINT p;
6604
6605 /* Find the position of the current cursor */
6606 GetDCOrgEx(s_hdc, &p);
Bram Moolenaar045e82d2005-07-08 22:25:33 +00006607 if (mouse_pos)
6608 {
6609 int mx, my;
6610
6611 gui_mch_getmouse(&mx, &my);
6612 p.x += mx;
6613 p.y += my;
6614 }
6615 else if (curwin != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006616 {
6617 p.x += TEXT_X(W_WINCOL(curwin) + curwin->w_wcol + 1);
6618 p.y += TEXT_Y(W_WINROW(curwin) + curwin->w_wrow + 1);
6619 }
6620 msg_scroll = FALSE;
6621 gui_mch_show_popupmenu_at(menu, (int)p.x, (int)p.y);
6622 }
6623}
6624
6625#if defined(FEAT_TEAROFF) || defined(PROTO)
6626/*
6627 * Given a menu descriptor, e.g. "File.New", find it in the menu hierarchy and
6628 * create it as a pseudo-"tearoff menu".
6629 */
6630 void
6631gui_make_tearoff(char_u *path_name)
6632{
6633 vimmenu_T *menu = gui_find_menu(path_name);
6634
6635 /* Found the menu, so tear it off. */
6636 if (menu != NULL)
6637 gui_mch_tearoff(menu->dname, menu, 0xffffL, 0xffffL);
6638}
6639#endif
6640
6641/*
6642 * Add a menu item to a menu
6643 */
6644 void
6645gui_mch_add_menu_item(
6646 vimmenu_T *menu,
6647 int idx)
6648{
6649 vimmenu_T *parent = menu->parent;
6650
6651 menu->id = s_menu_id++;
6652 menu->submenu_id = NULL;
6653
6654#ifdef FEAT_TEAROFF
6655 if (STRNCMP(menu->name, TEAR_STRING, TEAR_LEN) == 0)
6656 {
6657 InsertMenu(parent->submenu_id, (UINT)idx, MF_BITMAP|MF_BYPOSITION,
6658 (UINT)menu->id, (LPCTSTR) s_htearbitmap);
6659 }
6660 else
6661#endif
6662#ifdef FEAT_TOOLBAR
6663 if (menu_is_toolbar(parent->name))
6664 {
6665 TBBUTTON newtb;
6666
6667 vim_memset(&newtb, 0, sizeof(newtb));
6668 if (menu_is_separator(menu->name))
6669 {
6670 newtb.iBitmap = 0;
6671 newtb.fsStyle = TBSTYLE_SEP;
6672 }
6673 else
6674 {
6675 newtb.iBitmap = get_toolbar_bitmap(menu);
6676 newtb.fsStyle = TBSTYLE_BUTTON;
6677 }
6678 newtb.idCommand = menu->id;
6679 newtb.fsState = TBSTATE_ENABLED;
6680 newtb.iString = 0;
6681 SendMessage(s_toolbarhwnd, TB_INSERTBUTTON, (WPARAM)idx,
6682 (LPARAM)&newtb);
6683 menu->submenu_id = (HMENU)-1;
6684 }
6685 else
6686#endif
6687 {
6688#ifdef FEAT_MBYTE
6689 WCHAR *wn = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006690
6691 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
6692 {
6693 /* 'encoding' differs from active codepage: convert menu item name
6694 * and use wide function */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006695 wn = enc_to_utf16(menu->name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006696 if (wn != NULL)
6697 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006698 InsertMenuW(parent->submenu_id, (UINT)idx,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699 (menu_is_separator(menu->name)
6700 ? MF_SEPARATOR : MF_STRING) | MF_BYPOSITION,
6701 (UINT)menu->id, wn);
6702 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006703 }
6704 }
6705 if (wn == NULL)
6706#endif
6707 InsertMenu(parent->submenu_id, (UINT)idx,
6708 (menu_is_separator(menu->name) ? MF_SEPARATOR : MF_STRING)
6709 | MF_BYPOSITION,
6710 (UINT)menu->id, (LPCTSTR)menu->name);
6711#ifdef FEAT_TEAROFF
6712 if (IsWindow(parent->tearoff_handle))
6713 rebuild_tearoff(parent);
6714#endif
6715 }
6716}
6717
6718/*
6719 * Destroy the machine specific menu widget.
6720 */
6721 void
6722gui_mch_destroy_menu(vimmenu_T *menu)
6723{
6724#ifdef FEAT_TOOLBAR
6725 /*
6726 * is this a toolbar button?
6727 */
6728 if (menu->submenu_id == (HMENU)-1)
6729 {
6730 int iButton;
6731
6732 iButton = (int)SendMessage(s_toolbarhwnd, TB_COMMANDTOINDEX,
6733 (WPARAM)menu->id, 0);
6734 SendMessage(s_toolbarhwnd, TB_DELETEBUTTON, (WPARAM)iButton, 0);
6735 }
6736 else
6737#endif
6738 {
6739 if (menu->parent != NULL
6740 && menu_is_popup(menu->parent->dname)
6741 && menu->parent->submenu_id != NULL)
6742 RemoveMenu(menu->parent->submenu_id, menu->id, MF_BYCOMMAND);
6743 else
6744 RemoveMenu(s_menuBar, menu->id, MF_BYCOMMAND);
6745 if (menu->submenu_id != NULL)
6746 DestroyMenu(menu->submenu_id);
6747#ifdef FEAT_TEAROFF
6748 if (IsWindow(menu->tearoff_handle))
6749 DestroyWindow(menu->tearoff_handle);
6750 if (menu->parent != NULL
6751 && menu->parent->children != NULL
6752 && IsWindow(menu->parent->tearoff_handle))
6753 {
6754 /* This menu must not show up when rebuilding the tearoff window. */
6755 menu->modes = 0;
6756 rebuild_tearoff(menu->parent);
6757 }
6758#endif
6759 }
6760}
6761
6762#ifdef FEAT_TEAROFF
6763 static void
6764rebuild_tearoff(vimmenu_T *menu)
6765{
6766 /*hackish*/
6767 char_u tbuf[128];
6768 RECT trect;
6769 RECT rct;
6770 RECT roct;
6771 int x, y;
6772
6773 HWND thwnd = menu->tearoff_handle;
6774
Bram Moolenaar418f81b2016-02-16 20:12:02 +01006775 GetWindowText(thwnd, (LPSTR)tbuf, 127);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006776 if (GetWindowRect(thwnd, &trect)
6777 && GetWindowRect(s_hwnd, &rct)
6778 && GetClientRect(s_hwnd, &roct))
6779 {
6780 x = trect.left - rct.left;
6781 y = (trect.top - rct.bottom + roct.bottom);
6782 }
6783 else
6784 {
6785 x = y = 0xffffL;
6786 }
6787 DestroyWindow(thwnd);
6788 if (menu->children != NULL)
6789 {
6790 gui_mch_tearoff(tbuf, menu, x, y);
6791 if (IsWindow(menu->tearoff_handle))
6792 (void) SetWindowPos(menu->tearoff_handle,
6793 NULL,
6794 (int)trect.left,
6795 (int)trect.top,
6796 0, 0,
6797 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
6798 }
6799}
6800#endif /* FEAT_TEAROFF */
6801
6802/*
6803 * Make a menu either grey or not grey.
6804 */
6805 void
6806gui_mch_menu_grey(
6807 vimmenu_T *menu,
6808 int grey)
6809{
6810#ifdef FEAT_TOOLBAR
6811 /*
6812 * is this a toolbar button?
6813 */
6814 if (menu->submenu_id == (HMENU)-1)
6815 {
6816 SendMessage(s_toolbarhwnd, TB_ENABLEBUTTON,
6817 (WPARAM)menu->id, (LPARAM) MAKELONG((grey ? FALSE : TRUE), 0) );
6818 }
6819 else
6820#endif
Bram Moolenaar762f1752016-06-04 22:36:17 +02006821 (void)EnableMenuItem(menu->parent ? menu->parent->submenu_id : s_menuBar,
6822 menu->id, MF_BYCOMMAND | (grey ? MF_GRAYED : MF_ENABLED));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006823
6824#ifdef FEAT_TEAROFF
6825 if ((menu->parent != NULL) && (IsWindow(menu->parent->tearoff_handle)))
6826 {
6827 WORD menuID;
6828 HWND menuHandle;
6829
6830 /*
6831 * A tearoff button has changed state.
6832 */
6833 if (menu->children == NULL)
6834 menuID = (WORD)(menu->id);
6835 else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006836 menuID = (WORD)((long_u)(menu->submenu_id) | (DWORD)0x8000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006837 menuHandle = GetDlgItem(menu->parent->tearoff_handle, menuID);
6838 if (menuHandle)
6839 EnableWindow(menuHandle, !grey);
6840
6841 }
6842#endif
6843}
6844
6845#endif /* FEAT_MENU */
6846
6847
6848/* define some macros used to make the dialogue creation more readable */
6849
6850#define add_string(s) strcpy((LPSTR)p, s); (LPSTR)p += (strlen((LPSTR)p) + 1)
6851#define add_word(x) *p++ = (x)
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00006852#define add_long(x) dwp = (DWORD *)p; *dwp++ = (x); p = (WORD *)dwp
Bram Moolenaar071d4272004-06-13 20:20:40 +00006853
6854#if defined(FEAT_GUI_DIALOG) || defined(PROTO)
6855/*
6856 * stuff for dialogs
6857 */
6858
6859/*
6860 * The callback routine used by all the dialogs. Very simple. First,
6861 * acknowledges the INITDIALOG message so that Windows knows to do standard
6862 * dialog stuff (Return = default, Esc = cancel....) Second, if a button is
6863 * pressed, return that button's ID - IDCANCEL (2), which is the button's
6864 * number.
6865 */
6866 static LRESULT CALLBACK
6867dialog_callback(
6868 HWND hwnd,
6869 UINT message,
6870 WPARAM wParam,
Bram Moolenaar1266d672017-02-01 13:43:36 +01006871 LPARAM lParam UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006872{
6873 if (message == WM_INITDIALOG)
6874 {
6875 CenterWindow(hwnd, GetWindow(hwnd, GW_OWNER));
6876 /* Set focus to the dialog. Set the default button, if specified. */
6877 (void)SetFocus(hwnd);
6878 if (dialog_default_button > IDCANCEL)
6879 (void)SetFocus(GetDlgItem(hwnd, dialog_default_button));
Bram Moolenaar2b80e652007-08-14 14:57:55 +00006880 else
6881 /* We don't have a default, set focus on another element of the
6882 * dialog window, probably the icon */
6883 (void)SetFocus(GetDlgItem(hwnd, DLG_NONBUTTON_CONTROL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006884 return FALSE;
6885 }
6886
6887 if (message == WM_COMMAND)
6888 {
6889 int button = LOWORD(wParam);
6890
6891 /* Don't end the dialog if something was selected that was
6892 * not a button.
6893 */
6894 if (button >= DLG_NONBUTTON_CONTROL)
6895 return TRUE;
6896
6897 /* If the edit box exists, copy the string. */
6898 if (s_textfield != NULL)
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00006899 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006900# ifdef FEAT_MBYTE
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00006901 /* If the OS is Windows NT, and 'encoding' differs from active
6902 * codepage: use wide function and convert text. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006903 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02006904 {
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00006905 WCHAR *wp = (WCHAR *)alloc(IOSIZE * sizeof(WCHAR));
6906 char_u *p;
6907
6908 GetDlgItemTextW(hwnd, DLG_NONBUTTON_CONTROL + 2, wp, IOSIZE);
6909 p = utf16_to_enc(wp, NULL);
6910 vim_strncpy(s_textfield, p, IOSIZE);
6911 vim_free(p);
6912 vim_free(wp);
6913 }
6914 else
6915# endif
6916 GetDlgItemText(hwnd, DLG_NONBUTTON_CONTROL + 2,
Bram Moolenaar418f81b2016-02-16 20:12:02 +01006917 (LPSTR)s_textfield, IOSIZE);
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00006918 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006919
6920 /*
6921 * Need to check for IDOK because if the user just hits Return to
6922 * accept the default value, some reason this is what we get.
6923 */
6924 if (button == IDOK)
6925 {
6926 if (dialog_default_button > IDCANCEL)
6927 EndDialog(hwnd, dialog_default_button);
6928 }
6929 else
6930 EndDialog(hwnd, button - IDCANCEL);
6931 return TRUE;
6932 }
6933
6934 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
6935 {
6936 EndDialog(hwnd, 0);
6937 return TRUE;
6938 }
6939 return FALSE;
6940}
6941
6942/*
6943 * Create a dialog dynamically from the parameter strings.
6944 * type = type of dialog (question, alert, etc.)
6945 * title = dialog title. may be NULL for default title.
6946 * message = text to display. Dialog sizes to accommodate it.
6947 * buttons = '\n' separated list of button captions, default first.
6948 * dfltbutton = number of default button.
6949 *
6950 * This routine returns 1 if the first button is pressed,
6951 * 2 for the second, etc.
6952 *
6953 * 0 indicates Esc was pressed.
6954 * -1 for unexpected error
6955 *
6956 * If stubbing out this fn, return 1.
6957 */
6958
Bram Moolenaar418f81b2016-02-16 20:12:02 +01006959static const char *dlg_icons[] = /* must match names in resource file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006960{
6961 "IDR_VIM",
6962 "IDR_VIM_ERROR",
6963 "IDR_VIM_ALERT",
6964 "IDR_VIM_INFO",
6965 "IDR_VIM_QUESTION"
6966};
6967
Bram Moolenaar071d4272004-06-13 20:20:40 +00006968 int
6969gui_mch_dialog(
6970 int type,
6971 char_u *title,
6972 char_u *message,
6973 char_u *buttons,
6974 int dfltbutton,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01006975 char_u *textfield,
6976 int ex_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006977{
6978 WORD *p, *pdlgtemplate, *pnumitems;
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00006979 DWORD *dwp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980 int numButtons;
6981 int *buttonWidths, *buttonPositions;
6982 int buttonYpos;
6983 int nchar, i;
6984 DWORD lStyle;
6985 int dlgwidth = 0;
6986 int dlgheight;
6987 int editboxheight;
6988 int horizWidth = 0;
6989 int msgheight;
6990 char_u *pstart;
6991 char_u *pend;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00006992 char_u *last_white;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993 char_u *tbuffer;
6994 RECT rect;
6995 HWND hwnd;
6996 HDC hdc;
6997 HFONT font, oldFont;
6998 TEXTMETRIC fontInfo;
6999 int fontHeight;
7000 int textWidth, minButtonWidth, messageWidth;
7001 int maxDialogWidth;
Bram Moolenaar748bf032005-02-02 23:04:36 +00007002 int maxDialogHeight;
7003 int scroll_flag = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004 int vertical;
7005 int dlgPaddingX;
7006 int dlgPaddingY;
7007#ifdef USE_SYSMENU_FONT
7008 LOGFONT lfSysmenu;
7009 int use_lfSysmenu = FALSE;
7010#endif
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007011 garray_T ga;
7012 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013
7014#ifndef NO_CONSOLE
7015 /* Don't output anything in silent mode ("ex -s") */
7016 if (silent_mode)
7017 return dfltbutton; /* return default option */
7018#endif
7019
Bram Moolenaar748bf032005-02-02 23:04:36 +00007020 if (s_hwnd == NULL)
7021 get_dialog_font_metrics();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007022
7023 if ((type < 0) || (type > VIM_LAST_TYPE))
7024 type = 0;
7025
7026 /* allocate some memory for dialog template */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00007027 /* TODO should compute this really */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007028 pdlgtemplate = p = (PWORD)LocalAlloc(LPTR,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007029 DLG_ALLOC_SIZE + STRLEN(message) * 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007030
7031 if (p == NULL)
7032 return -1;
7033
7034 /*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02007035 * make a copy of 'buttons' to fiddle with it. compiler grizzles because
Bram Moolenaar071d4272004-06-13 20:20:40 +00007036 * vim_strsave() doesn't take a const arg (why not?), so cast away the
7037 * const.
7038 */
7039 tbuffer = vim_strsave(buttons);
7040 if (tbuffer == NULL)
7041 return -1;
7042
7043 --dfltbutton; /* Change from one-based to zero-based */
7044
7045 /* Count buttons */
7046 numButtons = 1;
7047 for (i = 0; tbuffer[i] != '\0'; i++)
7048 {
7049 if (tbuffer[i] == DLG_BUTTON_SEP)
7050 numButtons++;
7051 }
7052 if (dfltbutton >= numButtons)
7053 dfltbutton = -1;
7054
7055 /* Allocate array to hold the width of each button */
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00007056 buttonWidths = (int *)lalloc(numButtons * sizeof(int), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057 if (buttonWidths == NULL)
7058 return -1;
7059
7060 /* Allocate array to hold the X position of each button */
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00007061 buttonPositions = (int *)lalloc(numButtons * sizeof(int), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062 if (buttonPositions == NULL)
7063 return -1;
7064
7065 /*
7066 * Calculate how big the dialog must be.
7067 */
7068 hwnd = GetDesktopWindow();
7069 hdc = GetWindowDC(hwnd);
7070#ifdef USE_SYSMENU_FONT
7071 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
7072 {
7073 font = CreateFontIndirect(&lfSysmenu);
7074 use_lfSysmenu = TRUE;
7075 }
7076 else
7077#endif
7078 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7079 VARIABLE_PITCH , DLG_FONT_NAME);
7080 if (s_usenewlook)
7081 {
7082 oldFont = SelectFont(hdc, font);
7083 dlgPaddingX = DLG_PADDING_X;
7084 dlgPaddingY = DLG_PADDING_Y;
7085 }
7086 else
7087 {
7088 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
7089 dlgPaddingX = DLG_OLD_STYLE_PADDING_X;
7090 dlgPaddingY = DLG_OLD_STYLE_PADDING_Y;
7091 }
7092 GetTextMetrics(hdc, &fontInfo);
7093 fontHeight = fontInfo.tmHeight;
7094
7095 /* Minimum width for horizontal button */
Bram Moolenaar418f81b2016-02-16 20:12:02 +01007096 minButtonWidth = GetTextWidth(hdc, (char_u *)"Cancel", 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097
7098 /* Maximum width of a dialog, if possible */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007099 if (s_hwnd == NULL)
7100 {
7101 RECT workarea_rect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102
Bram Moolenaarc716c302006-01-21 22:12:51 +00007103 /* We don't have a window, use the desktop area. */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007104 get_work_area(&workarea_rect);
7105 maxDialogWidth = workarea_rect.right - workarea_rect.left - 100;
7106 if (maxDialogWidth > 600)
7107 maxDialogWidth = 600;
Bram Moolenaar1b1b0942013-08-01 13:20:42 +02007108 /* Leave some room for the taskbar. */
7109 maxDialogHeight = workarea_rect.bottom - workarea_rect.top - 150;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007110 }
7111 else
7112 {
Bram Moolenaara95d8232013-08-07 15:27:11 +02007113 /* Use our own window for the size, unless it's very small. */
7114 GetWindowRect(s_hwnd, &rect);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007115 maxDialogWidth = rect.right - rect.left
Bram Moolenaar9d488952013-07-21 17:53:58 +02007116 - (GetSystemMetrics(SM_CXFRAME) +
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02007117 GetSystemMetrics(SM_CXPADDEDBORDER)) * 2;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007118 if (maxDialogWidth < DLG_MIN_MAX_WIDTH)
7119 maxDialogWidth = DLG_MIN_MAX_WIDTH;
Bram Moolenaar748bf032005-02-02 23:04:36 +00007120
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007121 maxDialogHeight = rect.bottom - rect.top
Bram Moolenaar1b1b0942013-08-01 13:20:42 +02007122 - (GetSystemMetrics(SM_CYFRAME) +
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02007123 GetSystemMetrics(SM_CXPADDEDBORDER)) * 4
Bram Moolenaara95d8232013-08-07 15:27:11 +02007124 - GetSystemMetrics(SM_CYCAPTION);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007125 if (maxDialogHeight < DLG_MIN_MAX_HEIGHT)
7126 maxDialogHeight = DLG_MIN_MAX_HEIGHT;
7127 }
7128
7129 /* Set dlgwidth to width of message.
7130 * Copy the message into "ga", changing NL to CR-NL and inserting line
7131 * breaks where needed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007132 pstart = message;
7133 messageWidth = 0;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007134 msgheight = 0;
7135 ga_init2(&ga, sizeof(char), 500);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007136 do
7137 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007138 msgheight += fontHeight; /* at least one line */
7139
7140 /* Need to figure out where to break the string. The system does it
7141 * at a word boundary, which would mean we can't compute the number of
7142 * wrapped lines. */
7143 textWidth = 0;
7144 last_white = NULL;
7145 for (pend = pstart; *pend != NUL && *pend != '\n'; )
Bram Moolenaar748bf032005-02-02 23:04:36 +00007146 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007147#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007148 l = (*mb_ptr2len)(pend);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007149#else
7150 l = 1;
7151#endif
Bram Moolenaar1c465442017-03-12 20:10:05 +01007152 if (l == 1 && VIM_ISWHITE(*pend)
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007153 && textWidth > maxDialogWidth * 3 / 4)
7154 last_white = pend;
Bram Moolenaarf05d8112013-06-26 12:58:32 +02007155 textWidth += GetTextWidthEnc(hdc, pend, l);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007156 if (textWidth >= maxDialogWidth)
Bram Moolenaar748bf032005-02-02 23:04:36 +00007157 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007158 /* Line will wrap. */
7159 messageWidth = maxDialogWidth;
Bram Moolenaar748bf032005-02-02 23:04:36 +00007160 msgheight += fontHeight;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007161 textWidth = 0;
7162
7163 if (last_white != NULL)
7164 {
7165 /* break the line just after a space */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007166 ga.ga_len -= (int)(pend - (last_white + 1));
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007167 pend = last_white + 1;
7168 last_white = NULL;
7169 }
7170 ga_append(&ga, '\r');
7171 ga_append(&ga, '\n');
7172 continue;
Bram Moolenaar748bf032005-02-02 23:04:36 +00007173 }
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007174
7175 while (--l >= 0)
7176 ga_append(&ga, *pend++);
Bram Moolenaar748bf032005-02-02 23:04:36 +00007177 }
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007178 if (textWidth > messageWidth)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179 messageWidth = textWidth;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007180
7181 ga_append(&ga, '\r');
7182 ga_append(&ga, '\n');
Bram Moolenaar071d4272004-06-13 20:20:40 +00007183 pstart = pend + 1;
7184 } while (*pend != NUL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00007185
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007186 if (ga.ga_data != NULL)
7187 message = ga.ga_data;
7188
Bram Moolenaar748bf032005-02-02 23:04:36 +00007189 messageWidth += 10; /* roundoff space */
7190
Bram Moolenaar071d4272004-06-13 20:20:40 +00007191 /* Add width of icon to dlgwidth, and some space */
Bram Moolenaara95d8232013-08-07 15:27:11 +02007192 dlgwidth = messageWidth + DLG_ICON_WIDTH + 3 * dlgPaddingX
7193 + GetSystemMetrics(SM_CXVSCROLL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007194
7195 if (msgheight < DLG_ICON_HEIGHT)
7196 msgheight = DLG_ICON_HEIGHT;
7197
7198 /*
7199 * Check button names. A long one will make the dialog wider.
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00007200 * When called early (-register error message) p_go isn't initialized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201 */
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00007202 vertical = (p_go != NULL && vim_strchr(p_go, GO_VERTICAL) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203 if (!vertical)
7204 {
7205 // Place buttons horizontally if they fit.
7206 horizWidth = dlgPaddingX;
7207 pstart = tbuffer;
7208 i = 0;
7209 do
7210 {
7211 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
7212 if (pend == NULL)
7213 pend = pstart + STRLEN(pstart); // Last button name.
Bram Moolenaarb052fe02013-06-26 13:16:20 +02007214 textWidth = GetTextWidthEnc(hdc, pstart, (int)(pend - pstart));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007215 if (textWidth < minButtonWidth)
7216 textWidth = minButtonWidth;
7217 textWidth += dlgPaddingX; /* Padding within button */
7218 buttonWidths[i] = textWidth;
7219 buttonPositions[i++] = horizWidth;
7220 horizWidth += textWidth + dlgPaddingX; /* Pad between buttons */
7221 pstart = pend + 1;
7222 } while (*pend != NUL);
7223
7224 if (horizWidth > maxDialogWidth)
7225 vertical = TRUE; // Too wide to fit on the screen.
7226 else if (horizWidth > dlgwidth)
7227 dlgwidth = horizWidth;
7228 }
7229
7230 if (vertical)
7231 {
7232 // Stack buttons vertically.
7233 pstart = tbuffer;
7234 do
7235 {
7236 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
7237 if (pend == NULL)
7238 pend = pstart + STRLEN(pstart); // Last button name.
Bram Moolenaarb052fe02013-06-26 13:16:20 +02007239 textWidth = GetTextWidthEnc(hdc, pstart, (int)(pend - pstart));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007240 textWidth += dlgPaddingX; /* Padding within button */
7241 textWidth += DLG_VERT_PADDING_X * 2; /* Padding around button */
7242 if (textWidth > dlgwidth)
7243 dlgwidth = textWidth;
7244 pstart = pend + 1;
7245 } while (*pend != NUL);
7246 }
7247
7248 if (dlgwidth < DLG_MIN_WIDTH)
7249 dlgwidth = DLG_MIN_WIDTH; /* Don't allow a really thin dialog!*/
7250
7251 /* start to fill in the dlgtemplate information. addressing by WORDs */
7252 if (s_usenewlook)
7253 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE |DS_SETFONT;
7254 else
7255 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE;
7256
7257 add_long(lStyle);
7258 add_long(0); // (lExtendedStyle)
7259 pnumitems = p; /*save where the number of items must be stored*/
7260 add_word(0); // NumberOfItems(will change later)
7261 add_word(10); // x
7262 add_word(10); // y
7263 add_word(PixelToDialogX(dlgwidth)); // cx
7264
7265 // Dialog height.
7266 if (vertical)
Bram Moolenaara95d8232013-08-07 15:27:11 +02007267 dlgheight = msgheight + 2 * dlgPaddingY
7268 + DLG_VERT_PADDING_Y + 2 * fontHeight * numButtons;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007269 else
7270 dlgheight = msgheight + 3 * dlgPaddingY + 2 * fontHeight;
7271
7272 // Dialog needs to be taller if contains an edit box.
7273 editboxheight = fontHeight + dlgPaddingY + 4 * DLG_VERT_PADDING_Y;
7274 if (textfield != NULL)
7275 dlgheight += editboxheight;
7276
Bram Moolenaara95d8232013-08-07 15:27:11 +02007277 /* Restrict the size to a maximum. Causes a scrollbar to show up. */
7278 if (dlgheight > maxDialogHeight)
7279 {
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02007280 msgheight = msgheight - (dlgheight - maxDialogHeight);
7281 dlgheight = maxDialogHeight;
7282 scroll_flag = WS_VSCROLL;
7283 /* Make sure scrollbar doesn't appear in the middle of the dialog */
7284 messageWidth = dlgwidth - DLG_ICON_WIDTH - 3 * dlgPaddingX;
Bram Moolenaara95d8232013-08-07 15:27:11 +02007285 }
7286
Bram Moolenaar071d4272004-06-13 20:20:40 +00007287 add_word(PixelToDialogY(dlgheight));
7288
7289 add_word(0); // Menu
7290 add_word(0); // Class
7291
7292 /* copy the title of the dialog */
7293 nchar = nCopyAnsiToWideChar(p, (title ?
7294 (LPSTR)title :
7295 (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
7296 p += nchar;
7297
7298 if (s_usenewlook)
7299 {
7300 /* do the font, since DS_3DLOOK doesn't work properly */
7301#ifdef USE_SYSMENU_FONT
7302 if (use_lfSysmenu)
7303 {
7304 /* point size */
7305 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
7306 GetDeviceCaps(hdc, LOGPIXELSY));
7307 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
7308 }
7309 else
7310#endif
7311 {
7312 *p++ = DLG_FONT_POINT_SIZE; // point size
7313 nchar = nCopyAnsiToWideChar(p, TEXT(DLG_FONT_NAME));
7314 }
7315 p += nchar;
7316 }
7317
7318 buttonYpos = msgheight + 2 * dlgPaddingY;
7319
7320 if (textfield != NULL)
7321 buttonYpos += editboxheight;
7322
7323 pstart = tbuffer;
7324 if (!vertical)
7325 horizWidth = (dlgwidth - horizWidth) / 2; /* Now it's X offset */
7326 for (i = 0; i < numButtons; i++)
7327 {
7328 /* get end of this button. */
7329 for ( pend = pstart;
7330 *pend && (*pend != DLG_BUTTON_SEP);
7331 pend++)
7332 ;
7333
7334 if (*pend)
7335 *pend = '\0';
7336
7337 /*
7338 * old NOTE:
7339 * setting the BS_DEFPUSHBUTTON style doesn't work because Windows sets
7340 * the focus to the first tab-able button and in so doing makes that
7341 * the default!! Grrr. Workaround: Make the default button the only
7342 * one with WS_TABSTOP style. Means user can't tab between buttons, but
7343 * he/she can use arrow keys.
7344 *
7345 * new NOTE: BS_DEFPUSHBUTTON is required to be able to select the
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00007346 * right button when hitting <Enter>. E.g., for the ":confirm quit"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007347 * dialog. Also needed for when the textfield is the default control.
7348 * It appears to work now (perhaps not on Win95?).
7349 */
7350 if (vertical)
7351 {
7352 p = add_dialog_element(p,
7353 (i == dfltbutton
7354 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
7355 PixelToDialogX(DLG_VERT_PADDING_X),
7356 PixelToDialogY(buttonYpos /* TBK */
7357 + 2 * fontHeight * i),
7358 PixelToDialogX(dlgwidth - 2 * DLG_VERT_PADDING_X),
7359 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
Bram Moolenaar418f81b2016-02-16 20:12:02 +01007360 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, (char *)pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007361 }
7362 else
7363 {
7364 p = add_dialog_element(p,
7365 (i == dfltbutton
7366 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
7367 PixelToDialogX(horizWidth + buttonPositions[i]),
7368 PixelToDialogY(buttonYpos), /* TBK */
7369 PixelToDialogX(buttonWidths[i]),
7370 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
Bram Moolenaar418f81b2016-02-16 20:12:02 +01007371 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, (char *)pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007372 }
7373 pstart = pend + 1; /*next button*/
7374 }
7375 *pnumitems += numButtons;
7376
7377 /* Vim icon */
7378 p = add_dialog_element(p, SS_ICON,
7379 PixelToDialogX(dlgPaddingX),
7380 PixelToDialogY(dlgPaddingY),
7381 PixelToDialogX(DLG_ICON_WIDTH),
7382 PixelToDialogY(DLG_ICON_HEIGHT),
7383 DLG_NONBUTTON_CONTROL + 0, (WORD)0x0082,
7384 dlg_icons[type]);
7385
Bram Moolenaar748bf032005-02-02 23:04:36 +00007386 /* Dialog message */
7387 p = add_dialog_element(p, ES_LEFT|scroll_flag|ES_MULTILINE|ES_READONLY,
7388 PixelToDialogX(2 * dlgPaddingX + DLG_ICON_WIDTH),
7389 PixelToDialogY(dlgPaddingY),
7390 (WORD)(PixelToDialogX(messageWidth) + 1),
7391 PixelToDialogY(msgheight),
Bram Moolenaar418f81b2016-02-16 20:12:02 +01007392 DLG_NONBUTTON_CONTROL + 1, (WORD)0x0081, (char *)message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007393
7394 /* Edit box */
7395 if (textfield != NULL)
7396 {
7397 p = add_dialog_element(p, ES_LEFT|ES_AUTOHSCROLL|WS_TABSTOP|WS_BORDER,
7398 PixelToDialogX(2 * dlgPaddingX),
7399 PixelToDialogY(2 * dlgPaddingY + msgheight),
7400 PixelToDialogX(dlgwidth - 4 * dlgPaddingX),
7401 PixelToDialogY(fontHeight + dlgPaddingY),
Bram Moolenaar418f81b2016-02-16 20:12:02 +01007402 DLG_NONBUTTON_CONTROL + 2, (WORD)0x0081, (char *)textfield);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007403 *pnumitems += 1;
7404 }
7405
7406 *pnumitems += 2;
7407
7408 SelectFont(hdc, oldFont);
7409 DeleteObject(font);
7410 ReleaseDC(hwnd, hdc);
7411
7412 /* Let the dialog_callback() function know which button to make default
7413 * If we have an edit box, make that the default. We also need to tell
7414 * dialog_callback() if this dialog contains an edit box or not. We do
7415 * this by setting s_textfield if it does.
7416 */
7417 if (textfield != NULL)
7418 {
7419 dialog_default_button = DLG_NONBUTTON_CONTROL + 2;
7420 s_textfield = textfield;
7421 }
7422 else
7423 {
7424 dialog_default_button = IDCANCEL + 1 + dfltbutton;
7425 s_textfield = NULL;
7426 }
7427
7428 /* show the dialog box modally and get a return value */
7429 nchar = (int)DialogBoxIndirect(
7430 s_hinst,
7431 (LPDLGTEMPLATE)pdlgtemplate,
7432 s_hwnd,
7433 (DLGPROC)dialog_callback);
7434
7435 LocalFree(LocalHandle(pdlgtemplate));
7436 vim_free(tbuffer);
7437 vim_free(buttonWidths);
7438 vim_free(buttonPositions);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00007439 vim_free(ga.ga_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007440
7441 /* Focus back to our window (for when MDI is used). */
7442 (void)SetFocus(s_hwnd);
7443
7444 return nchar;
7445}
7446
7447#endif /* FEAT_GUI_DIALOG */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007448
Bram Moolenaar071d4272004-06-13 20:20:40 +00007449/*
7450 * Put a simple element (basic class) onto a dialog template in memory.
7451 * return a pointer to where the next item should be added.
7452 *
7453 * parameters:
7454 * lStyle = additional style flags
7455 * (be careful, NT3.51 & Win32s will ignore the new ones)
7456 * x,y = x & y positions IN DIALOG UNITS
7457 * w,h = width and height IN DIALOG UNITS
7458 * Id = ID used in messages
7459 * clss = class ID, e.g 0x0080 for a button, 0x0082 for a static
7460 * caption = usually text or resource name
7461 *
7462 * TODO: use the length information noted here to enable the dialog creation
7463 * routines to work out more exactly how much memory they need to alloc.
7464 */
7465 static PWORD
7466add_dialog_element(
7467 PWORD p,
7468 DWORD lStyle,
7469 WORD x,
7470 WORD y,
7471 WORD w,
7472 WORD h,
7473 WORD Id,
7474 WORD clss,
7475 const char *caption)
7476{
7477 int nchar;
7478
7479 p = lpwAlign(p); /* Align to dword boundary*/
7480 lStyle = lStyle | WS_VISIBLE | WS_CHILD;
7481 *p++ = LOWORD(lStyle);
7482 *p++ = HIWORD(lStyle);
7483 *p++ = 0; // LOWORD (lExtendedStyle)
7484 *p++ = 0; // HIWORD (lExtendedStyle)
7485 *p++ = x;
7486 *p++ = y;
7487 *p++ = w;
7488 *p++ = h;
7489 *p++ = Id; //9 or 10 words in all
7490
7491 *p++ = (WORD)0xffff;
7492 *p++ = clss; //2 more here
7493
7494 nchar = nCopyAnsiToWideChar(p, (LPSTR)caption); //strlen(caption)+1
7495 p += nchar;
7496
7497 *p++ = 0; // advance pointer over nExtraStuff WORD - 2 more
7498
7499 return p; //total = 15+ (strlen(caption)) words
7500 // = 30 + 2(strlen(caption) bytes reqd
7501}
7502
7503
7504/*
7505 * Helper routine. Take an input pointer, return closest pointer that is
7506 * aligned on a DWORD (4 byte) boundary. Taken from the Win32SDK samples.
7507 */
7508 static LPWORD
7509lpwAlign(
7510 LPWORD lpIn)
7511{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007512 long_u ul;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007513
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007514 ul = (long_u)lpIn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007515 ul += 3;
7516 ul >>= 2;
7517 ul <<= 2;
7518 return (LPWORD)ul;
7519}
7520
7521/*
7522 * Helper routine. Takes second parameter as Ansi string, copies it to first
7523 * parameter as wide character (16-bits / char) string, and returns integer
7524 * number of wide characters (words) in string (including the trailing wide
7525 * char NULL). Partly taken from the Win32SDK samples.
7526 */
7527 static int
7528nCopyAnsiToWideChar(
7529 LPWORD lpWCStr,
7530 LPSTR lpAnsiIn)
7531{
7532 int nChar = 0;
7533#ifdef FEAT_MBYTE
7534 int len = lstrlen(lpAnsiIn) + 1; /* include NUL character */
7535 int i;
7536 WCHAR *wn;
7537
7538 if (enc_codepage == 0 && (int)GetACP() != enc_codepage)
7539 {
7540 /* Not a codepage, use our own conversion function. */
Bram Moolenaar418f81b2016-02-16 20:12:02 +01007541 wn = enc_to_utf16((char_u *)lpAnsiIn, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007542 if (wn != NULL)
7543 {
7544 wcscpy(lpWCStr, wn);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007545 nChar = (int)wcslen(wn) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007546 vim_free(wn);
7547 }
7548 }
7549 if (nChar == 0)
7550 /* Use Win32 conversion function. */
7551 nChar = MultiByteToWideChar(
7552 enc_codepage > 0 ? enc_codepage : CP_ACP,
7553 MB_PRECOMPOSED,
7554 lpAnsiIn, len,
7555 lpWCStr, len);
7556 for (i = 0; i < nChar; ++i)
7557 if (lpWCStr[i] == (WORD)'\t') /* replace tabs with spaces */
7558 lpWCStr[i] = (WORD)' ';
7559#else
7560 do
7561 {
7562 if (*lpAnsiIn == '\t')
7563 *lpWCStr++ = (WORD)' ';
7564 else
7565 *lpWCStr++ = (WORD)*lpAnsiIn;
7566 nChar++;
7567 } while (*lpAnsiIn++);
7568#endif
7569
7570 return nChar;
7571}
7572
7573
7574#ifdef FEAT_TEAROFF
7575/*
7576 * The callback function for all the modeless dialogs that make up the
7577 * "tearoff menus" Very simple - forward button presses (to fool Vim into
7578 * thinking its menus have been clicked), and go away when closed.
7579 */
7580 static LRESULT CALLBACK
7581tearoff_callback(
7582 HWND hwnd,
7583 UINT message,
7584 WPARAM wParam,
7585 LPARAM lParam)
7586{
7587 if (message == WM_INITDIALOG)
7588 return (TRUE);
7589
7590 /* May show the mouse pointer again. */
7591 HandleMouseHide(message, lParam);
7592
7593 if (message == WM_COMMAND)
7594 {
7595 if ((WORD)(LOWORD(wParam)) & 0x8000)
7596 {
7597 POINT mp;
7598 RECT rect;
7599
7600 if (GetCursorPos(&mp) && GetWindowRect(hwnd, &rect))
7601 {
7602 (void)TrackPopupMenu(
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007603 (HMENU)(long_u)(LOWORD(wParam) ^ 0x8000),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007604 TPM_LEFTALIGN | TPM_LEFTBUTTON,
7605 (int)rect.right - 8,
7606 (int)mp.y,
7607 (int)0, /*reserved param*/
7608 s_hwnd,
7609 NULL);
7610 /*
7611 * NOTE: The pop-up menu can eat the mouse up event.
7612 * We deal with this in normal.c.
7613 */
7614 }
7615 }
7616 else
7617 /* Pass on messages to the main Vim window */
7618 PostMessage(s_hwnd, WM_COMMAND, LOWORD(wParam), 0);
7619 /*
7620 * Give main window the focus back: this is so after
7621 * choosing a tearoff button you can start typing again
7622 * straight away.
7623 */
7624 (void)SetFocus(s_hwnd);
7625 return TRUE;
7626 }
7627 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
7628 {
7629 DestroyWindow(hwnd);
7630 return TRUE;
7631 }
7632
7633 /* When moved around, give main window the focus back. */
7634 if (message == WM_EXITSIZEMOVE)
7635 (void)SetActiveWindow(s_hwnd);
7636
7637 return FALSE;
7638}
7639#endif
7640
7641
7642/*
7643 * Decide whether to use the "new look" (small, non-bold font) or the "old
7644 * look" (big, clanky font) for dialogs, and work out a few values for use
7645 * later accordingly.
7646 */
7647 static void
7648get_dialog_font_metrics(void)
7649{
7650 HDC hdc;
7651 HFONT hfontTools = 0;
7652 DWORD dlgFontSize;
7653 SIZE size;
7654#ifdef USE_SYSMENU_FONT
7655 LOGFONT lfSysmenu;
7656#endif
7657
7658 s_usenewlook = FALSE;
7659
Bram Moolenaar071d4272004-06-13 20:20:40 +00007660#ifdef USE_SYSMENU_FONT
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007661 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
7662 hfontTools = CreateFontIndirect(&lfSysmenu);
7663 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007664#endif
7665 hfontTools = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0,
7666 0, 0, 0, 0, VARIABLE_PITCH , DLG_FONT_NAME);
7667
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007668 if (hfontTools)
7669 {
7670 hdc = GetDC(s_hwnd);
7671 SelectObject(hdc, hfontTools);
7672 /*
7673 * GetTextMetrics() doesn't return the right value in
7674 * tmAveCharWidth, so we have to figure out the dialog base units
7675 * ourselves.
7676 */
7677 GetTextExtentPoint(hdc,
7678 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
7679 52, &size);
7680 ReleaseDC(s_hwnd, hdc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007681
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007682 s_dlgfntwidth = (WORD)((size.cx / 26 + 1) / 2);
7683 s_dlgfntheight = (WORD)size.cy;
7684 s_usenewlook = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007685 }
7686
7687 if (!s_usenewlook)
7688 {
7689 dlgFontSize = GetDialogBaseUnits(); /* fall back to big old system*/
7690 s_dlgfntwidth = LOWORD(dlgFontSize);
7691 s_dlgfntheight = HIWORD(dlgFontSize);
7692 }
7693}
7694
7695#if defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7696/*
7697 * Create a pseudo-"tearoff menu" based on the child
7698 * items of a given menu pointer.
7699 */
7700 static void
7701gui_mch_tearoff(
7702 char_u *title,
7703 vimmenu_T *menu,
7704 int initX,
7705 int initY)
7706{
7707 WORD *p, *pdlgtemplate, *pnumitems, *ptrueheight;
7708 int template_len;
7709 int nchar, textWidth, submenuWidth;
7710 DWORD lStyle;
7711 DWORD lExtendedStyle;
7712 WORD dlgwidth;
7713 WORD menuID;
7714 vimmenu_T *pmenu;
7715 vimmenu_T *the_menu = menu;
7716 HWND hwnd;
7717 HDC hdc;
7718 HFONT font, oldFont;
7719 int col, spaceWidth, len;
7720 int columnWidths[2];
7721 char_u *label, *text;
7722 int acLen = 0;
7723 int nameLen;
7724 int padding0, padding1, padding2 = 0;
7725 int sepPadding=0;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00007726 int x;
7727 int y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007728#ifdef USE_SYSMENU_FONT
7729 LOGFONT lfSysmenu;
7730 int use_lfSysmenu = FALSE;
7731#endif
7732
7733 /*
7734 * If this menu is already torn off, move it to the mouse position.
7735 */
7736 if (IsWindow(menu->tearoff_handle))
7737 {
7738 POINT mp;
7739 if (GetCursorPos((LPPOINT)&mp))
7740 {
7741 SetWindowPos(menu->tearoff_handle, NULL, mp.x, mp.y, 0, 0,
7742 SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER);
7743 }
7744 return;
7745 }
7746
7747 /*
7748 * Create a new tearoff.
7749 */
7750 if (*title == MNU_HIDDEN_CHAR)
7751 title++;
7752
7753 /* Allocate memory to store the dialog template. It's made bigger when
7754 * needed. */
7755 template_len = DLG_ALLOC_SIZE;
7756 pdlgtemplate = p = (WORD *)LocalAlloc(LPTR, template_len);
7757 if (p == NULL)
7758 return;
7759
7760 hwnd = GetDesktopWindow();
7761 hdc = GetWindowDC(hwnd);
7762#ifdef USE_SYSMENU_FONT
7763 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
7764 {
7765 font = CreateFontIndirect(&lfSysmenu);
7766 use_lfSysmenu = TRUE;
7767 }
7768 else
7769#endif
7770 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7771 VARIABLE_PITCH , DLG_FONT_NAME);
7772 if (s_usenewlook)
7773 oldFont = SelectFont(hdc, font);
7774 else
7775 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
7776
7777 /* Calculate width of a single space. Used for padding columns to the
7778 * right width. */
Bram Moolenaar418f81b2016-02-16 20:12:02 +01007779 spaceWidth = GetTextWidth(hdc, (char_u *)" ", 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007780
7781 /* Figure out max width of the text column, the accelerator column and the
7782 * optional submenu column. */
7783 submenuWidth = 0;
7784 for (col = 0; col < 2; col++)
7785 {
7786 columnWidths[col] = 0;
7787 for (pmenu = menu->children; pmenu != NULL; pmenu = pmenu->next)
7788 {
7789 /* Use "dname" here to compute the width of the visible text. */
7790 text = (col == 0) ? pmenu->dname : pmenu->actext;
7791 if (text != NULL && *text != NUL)
7792 {
7793 textWidth = GetTextWidthEnc(hdc, text, (int)STRLEN(text));
7794 if (textWidth > columnWidths[col])
7795 columnWidths[col] = textWidth;
7796 }
7797 if (pmenu->children != NULL)
7798 submenuWidth = TEAROFF_COLUMN_PADDING * spaceWidth;
7799 }
7800 }
7801 if (columnWidths[1] == 0)
7802 {
7803 /* no accelerators */
7804 if (submenuWidth != 0)
7805 columnWidths[0] += submenuWidth;
7806 else
7807 columnWidths[0] += spaceWidth;
7808 }
7809 else
7810 {
7811 /* there is an accelerator column */
7812 columnWidths[0] += TEAROFF_COLUMN_PADDING * spaceWidth;
7813 columnWidths[1] += submenuWidth;
7814 }
7815
7816 /*
7817 * Now find the total width of our 'menu'.
7818 */
7819 textWidth = columnWidths[0] + columnWidths[1];
7820 if (submenuWidth != 0)
7821 {
Bram Moolenaar418f81b2016-02-16 20:12:02 +01007822 submenuWidth = GetTextWidth(hdc, (char_u *)TEAROFF_SUBMENU_LABEL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007823 (int)STRLEN(TEAROFF_SUBMENU_LABEL));
7824 textWidth += submenuWidth;
7825 }
7826 dlgwidth = GetTextWidthEnc(hdc, title, (int)STRLEN(title));
7827 if (textWidth > dlgwidth)
7828 dlgwidth = textWidth;
7829 dlgwidth += 2 * TEAROFF_PADDING_X + TEAROFF_BUTTON_PAD_X;
7830
Bram Moolenaar071d4272004-06-13 20:20:40 +00007831 /* start to fill in the dlgtemplate information. addressing by WORDs */
7832 if (s_usenewlook)
7833 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU |DS_SETFONT| WS_VISIBLE;
7834 else
7835 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU | WS_VISIBLE;
7836
7837 lExtendedStyle = WS_EX_TOOLWINDOW|WS_EX_STATICEDGE;
7838 *p++ = LOWORD(lStyle);
7839 *p++ = HIWORD(lStyle);
7840 *p++ = LOWORD(lExtendedStyle);
7841 *p++ = HIWORD(lExtendedStyle);
7842 pnumitems = p; /* save where the number of items must be stored */
7843 *p++ = 0; // NumberOfItems(will change later)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00007844 gui_mch_getmouse(&x, &y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007845 if (initX == 0xffffL)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00007846 *p++ = PixelToDialogX(x); // x
Bram Moolenaar071d4272004-06-13 20:20:40 +00007847 else
7848 *p++ = PixelToDialogX(initX); // x
7849 if (initY == 0xffffL)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00007850 *p++ = PixelToDialogY(y); // y
Bram Moolenaar071d4272004-06-13 20:20:40 +00007851 else
7852 *p++ = PixelToDialogY(initY); // y
7853 *p++ = PixelToDialogX(dlgwidth); // cx
7854 ptrueheight = p;
7855 *p++ = 0; // dialog height: changed later anyway
7856 *p++ = 0; // Menu
7857 *p++ = 0; // Class
7858
7859 /* copy the title of the dialog */
7860 nchar = nCopyAnsiToWideChar(p, ((*title)
7861 ? (LPSTR)title
7862 : (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
7863 p += nchar;
7864
7865 if (s_usenewlook)
7866 {
7867 /* do the font, since DS_3DLOOK doesn't work properly */
7868#ifdef USE_SYSMENU_FONT
7869 if (use_lfSysmenu)
7870 {
7871 /* point size */
7872 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
7873 GetDeviceCaps(hdc, LOGPIXELSY));
7874 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
7875 }
7876 else
7877#endif
7878 {
7879 *p++ = DLG_FONT_POINT_SIZE; // point size
7880 nchar = nCopyAnsiToWideChar (p, TEXT(DLG_FONT_NAME));
7881 }
7882 p += nchar;
7883 }
7884
7885 /*
7886 * Loop over all the items in the menu.
7887 * But skip over the tearbar.
7888 */
7889 if (STRCMP(menu->children->name, TEAR_STRING) == 0)
7890 menu = menu->children->next;
7891 else
7892 menu = menu->children;
7893 for ( ; menu != NULL; menu = menu->next)
7894 {
7895 if (menu->modes == 0) /* this menu has just been deleted */
7896 continue;
7897 if (menu_is_separator(menu->dname))
7898 {
7899 sepPadding += 3;
7900 continue;
7901 }
7902
7903 /* Check if there still is plenty of room in the template. Make it
7904 * larger when needed. */
7905 if (((char *)p - (char *)pdlgtemplate) + 1000 > template_len)
7906 {
7907 WORD *newp;
7908
7909 newp = (WORD *)LocalAlloc(LPTR, template_len + 4096);
7910 if (newp != NULL)
7911 {
7912 template_len += 4096;
7913 mch_memmove(newp, pdlgtemplate,
7914 (char *)p - (char *)pdlgtemplate);
7915 p = newp + (p - pdlgtemplate);
7916 pnumitems = newp + (pnumitems - pdlgtemplate);
7917 ptrueheight = newp + (ptrueheight - pdlgtemplate);
7918 LocalFree(LocalHandle(pdlgtemplate));
7919 pdlgtemplate = newp;
7920 }
7921 }
7922
7923 /* Figure out minimal length of this menu label. Use "name" for the
7924 * actual text, "dname" for estimating the displayed size. "name"
7925 * has "&a" for mnemonic and includes the accelerator. */
7926 len = nameLen = (int)STRLEN(menu->name);
7927 padding0 = (columnWidths[0] - GetTextWidthEnc(hdc, menu->dname,
7928 (int)STRLEN(menu->dname))) / spaceWidth;
7929 len += padding0;
7930
7931 if (menu->actext != NULL)
7932 {
7933 acLen = (int)STRLEN(menu->actext);
7934 len += acLen;
7935 textWidth = GetTextWidthEnc(hdc, menu->actext, acLen);
7936 }
7937 else
7938 textWidth = 0;
7939 padding1 = (columnWidths[1] - textWidth) / spaceWidth;
7940 len += padding1;
7941
7942 if (menu->children == NULL)
7943 {
7944 padding2 = submenuWidth / spaceWidth;
7945 len += padding2;
7946 menuID = (WORD)(menu->id);
7947 }
7948 else
7949 {
7950 len += (int)STRLEN(TEAROFF_SUBMENU_LABEL);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007951 menuID = (WORD)((long_u)(menu->submenu_id) | (DWORD)0x8000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007952 }
7953
7954 /* Allocate menu label and fill it in */
7955 text = label = alloc((unsigned)len + 1);
7956 if (label == NULL)
7957 break;
7958
Bram Moolenaarce0842a2005-07-18 21:58:11 +00007959 vim_strncpy(text, menu->name, nameLen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007960 text = vim_strchr(text, TAB); /* stop at TAB before actext */
7961 if (text == NULL)
7962 text = label + nameLen; /* no actext, use whole name */
7963 while (padding0-- > 0)
7964 *text++ = ' ';
7965 if (menu->actext != NULL)
7966 {
7967 STRNCPY(text, menu->actext, acLen);
7968 text += acLen;
7969 }
7970 while (padding1-- > 0)
7971 *text++ = ' ';
7972 if (menu->children != NULL)
7973 {
7974 STRCPY(text, TEAROFF_SUBMENU_LABEL);
7975 text += STRLEN(TEAROFF_SUBMENU_LABEL);
7976 }
7977 else
7978 {
7979 while (padding2-- > 0)
7980 *text++ = ' ';
7981 }
7982 *text = NUL;
7983
7984 /*
7985 * BS_LEFT will just be ignored on Win32s/NT3.5x - on
7986 * W95/NT4 it makes the tear-off look more like a menu.
7987 */
7988 p = add_dialog_element(p,
7989 BS_PUSHBUTTON|BS_LEFT,
7990 (WORD)PixelToDialogX(TEAROFF_PADDING_X),
7991 (WORD)(sepPadding + 1 + 13 * (*pnumitems)),
7992 (WORD)PixelToDialogX(dlgwidth - 2 * TEAROFF_PADDING_X),
7993 (WORD)12,
Bram Moolenaar418f81b2016-02-16 20:12:02 +01007994 menuID, (WORD)0x0080, (char *)label);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007995 vim_free(label);
7996 (*pnumitems)++;
7997 }
7998
7999 *ptrueheight = (WORD)(sepPadding + 1 + 13 * (*pnumitems));
8000
8001
8002 /* show modelessly */
8003 the_menu->tearoff_handle = CreateDialogIndirect(
8004 s_hinst,
8005 (LPDLGTEMPLATE)pdlgtemplate,
8006 s_hwnd,
8007 (DLGPROC)tearoff_callback);
8008
8009 LocalFree(LocalHandle(pdlgtemplate));
8010 SelectFont(hdc, oldFont);
8011 DeleteObject(font);
8012 ReleaseDC(hwnd, hdc);
8013
8014 /*
8015 * Reassert ourselves as the active window. This is so that after creating
8016 * a tearoff, the user doesn't have to click with the mouse just to start
8017 * typing again!
8018 */
8019 (void)SetActiveWindow(s_hwnd);
8020
8021 /* make sure the right buttons are enabled */
8022 force_menu_update = TRUE;
8023}
8024#endif
8025
8026#if defined(FEAT_TOOLBAR) || defined(PROTO)
8027#include "gui_w32_rc.h"
8028
8029/* This not defined in older SDKs */
8030# ifndef TBSTYLE_FLAT
8031# define TBSTYLE_FLAT 0x0800
8032# endif
8033
8034/*
8035 * Create the toolbar, initially unpopulated.
8036 * (just like the menu, there are no defaults, it's all
8037 * set up through menu.vim)
8038 */
8039 static void
8040initialise_toolbar(void)
8041{
8042 InitCommonControls();
8043 s_toolbarhwnd = CreateToolbarEx(
8044 s_hwnd,
8045 WS_CHILD | TBSTYLE_TOOLTIPS | TBSTYLE_FLAT,
8046 4000, //any old big number
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00008047 31, //number of images in initial bitmap
Bram Moolenaar071d4272004-06-13 20:20:40 +00008048 s_hinst,
8049 IDR_TOOLBAR1, // id of initial bitmap
8050 NULL,
8051 0, // initial number of buttons
8052 TOOLBAR_BUTTON_WIDTH, //api guide is wrong!
8053 TOOLBAR_BUTTON_HEIGHT,
8054 TOOLBAR_BUTTON_WIDTH,
8055 TOOLBAR_BUTTON_HEIGHT,
8056 sizeof(TBBUTTON)
8057 );
Bram Moolenaar5f919ee2013-07-21 17:46:43 +02008058 s_toolbar_wndproc = SubclassWindow(s_toolbarhwnd, toolbar_wndproc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008059
8060 gui_mch_show_toolbar(vim_strchr(p_go, GO_TOOLBAR) != NULL);
8061}
8062
Bram Moolenaar5f919ee2013-07-21 17:46:43 +02008063 static LRESULT CALLBACK
8064toolbar_wndproc(
8065 HWND hwnd,
8066 UINT uMsg,
8067 WPARAM wParam,
8068 LPARAM lParam)
8069{
8070 HandleMouseHide(uMsg, lParam);
8071 return CallWindowProc(s_toolbar_wndproc, hwnd, uMsg, wParam, lParam);
8072}
8073
Bram Moolenaar071d4272004-06-13 20:20:40 +00008074 static int
8075get_toolbar_bitmap(vimmenu_T *menu)
8076{
8077 int i = -1;
8078
8079 /*
8080 * Check user bitmaps first, unless builtin is specified.
8081 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02008082 if (!menu->icon_builtin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008083 {
8084 char_u fname[MAXPATHL];
8085 HANDLE hbitmap = NULL;
8086
8087 if (menu->iconfile != NULL)
8088 {
8089 gui_find_iconfile(menu->iconfile, fname, "bmp");
8090 hbitmap = LoadImage(
8091 NULL,
Bram Moolenaar418f81b2016-02-16 20:12:02 +01008092 (LPCSTR)fname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008093 IMAGE_BITMAP,
8094 TOOLBAR_BUTTON_WIDTH,
8095 TOOLBAR_BUTTON_HEIGHT,
8096 LR_LOADFROMFILE |
8097 LR_LOADMAP3DCOLORS
8098 );
8099 }
8100
8101 /*
8102 * If the LoadImage call failed, or the "icon=" file
8103 * didn't exist or wasn't specified, try the menu name
8104 */
8105 if (hbitmap == NULL
Bram Moolenaara5f5c8b2013-06-27 22:29:38 +02008106 && (gui_find_bitmap(
8107#ifdef FEAT_MULTI_LANG
8108 menu->en_dname != NULL ? menu->en_dname :
8109#endif
8110 menu->dname, fname, "bmp") == OK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008111 hbitmap = LoadImage(
8112 NULL,
Bram Moolenaar418f81b2016-02-16 20:12:02 +01008113 (LPCSTR)fname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008114 IMAGE_BITMAP,
8115 TOOLBAR_BUTTON_WIDTH,
8116 TOOLBAR_BUTTON_HEIGHT,
8117 LR_LOADFROMFILE |
8118 LR_LOADMAP3DCOLORS
8119 );
8120
8121 if (hbitmap != NULL)
8122 {
8123 TBADDBITMAP tbAddBitmap;
8124
8125 tbAddBitmap.hInst = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008126 tbAddBitmap.nID = (long_u)hbitmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008127
8128 i = (int)SendMessage(s_toolbarhwnd, TB_ADDBITMAP,
8129 (WPARAM)1, (LPARAM)&tbAddBitmap);
8130 /* i will be set to -1 if it fails */
8131 }
8132 }
8133 if (i == -1 && menu->iconidx >= 0 && menu->iconidx < TOOLBAR_BITMAP_COUNT)
8134 i = menu->iconidx;
8135
8136 return i;
8137}
8138#endif
8139
Bram Moolenaar3991dab2006-03-27 17:01:56 +00008140#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
8141 static void
8142initialise_tabline(void)
8143{
8144 InitCommonControls();
8145
Bram Moolenaar910f66f2006-04-05 20:41:53 +00008146 s_tabhwnd = CreateWindow(WC_TABCONTROL, "Vim tabline",
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008147 WS_CHILD|TCS_FOCUSNEVER|TCS_TOOLTIPS,
Bram Moolenaar3991dab2006-03-27 17:01:56 +00008148 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
8149 CW_USEDEFAULT, s_hwnd, NULL, s_hinst, NULL);
Bram Moolenaar5f919ee2013-07-21 17:46:43 +02008150 s_tabline_wndproc = SubclassWindow(s_tabhwnd, tabline_wndproc);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00008151
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00008152 gui.tabline_height = TABLINE_HEIGHT;
8153
Bram Moolenaar910f66f2006-04-05 20:41:53 +00008154# ifdef USE_SYSMENU_FONT
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00008155 set_tabline_font();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00008156# endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00008157}
Bram Moolenaar5f919ee2013-07-21 17:46:43 +02008158
8159 static LRESULT CALLBACK
8160tabline_wndproc(
8161 HWND hwnd,
8162 UINT uMsg,
8163 WPARAM wParam,
8164 LPARAM lParam)
8165{
8166 HandleMouseHide(uMsg, lParam);
8167 return CallWindowProc(s_tabline_wndproc, hwnd, uMsg, wParam, lParam);
8168}
Bram Moolenaar3991dab2006-03-27 17:01:56 +00008169#endif
8170
Bram Moolenaar071d4272004-06-13 20:20:40 +00008171#if defined(FEAT_OLE) || defined(FEAT_EVAL) || defined(PROTO)
8172/*
8173 * Make the GUI window come to the foreground.
8174 */
8175 void
8176gui_mch_set_foreground(void)
8177{
8178 if (IsIconic(s_hwnd))
8179 SendMessage(s_hwnd, WM_SYSCOMMAND, SC_RESTORE, 0);
8180 SetForegroundWindow(s_hwnd);
8181}
8182#endif
8183
8184#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
8185 static void
8186dyn_imm_load(void)
8187{
Bram Moolenaarebbcb822010-10-23 14:02:54 +02008188 hLibImm = vimLoadLib("imm32.dll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008189 if (hLibImm == NULL)
8190 return;
8191
8192 pImmGetCompositionStringA
8193 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringA");
8194 pImmGetCompositionStringW
8195 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringW");
8196 pImmGetContext
8197 = (void *)GetProcAddress(hLibImm, "ImmGetContext");
8198 pImmAssociateContext
8199 = (void *)GetProcAddress(hLibImm, "ImmAssociateContext");
8200 pImmReleaseContext
8201 = (void *)GetProcAddress(hLibImm, "ImmReleaseContext");
8202 pImmGetOpenStatus
8203 = (void *)GetProcAddress(hLibImm, "ImmGetOpenStatus");
8204 pImmSetOpenStatus
8205 = (void *)GetProcAddress(hLibImm, "ImmSetOpenStatus");
8206 pImmGetCompositionFont
8207 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionFontA");
8208 pImmSetCompositionFont
8209 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionFontA");
8210 pImmSetCompositionWindow
8211 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionWindow");
8212 pImmGetConversionStatus
8213 = (void *)GetProcAddress(hLibImm, "ImmGetConversionStatus");
Bram Moolenaarca003e12006-03-17 23:19:38 +00008214 pImmSetConversionStatus
8215 = (void *)GetProcAddress(hLibImm, "ImmSetConversionStatus");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008216
8217 if ( pImmGetCompositionStringA == NULL
8218 || pImmGetCompositionStringW == NULL
8219 || pImmGetContext == NULL
8220 || pImmAssociateContext == NULL
8221 || pImmReleaseContext == NULL
8222 || pImmGetOpenStatus == NULL
8223 || pImmSetOpenStatus == NULL
8224 || pImmGetCompositionFont == NULL
8225 || pImmSetCompositionFont == NULL
8226 || pImmSetCompositionWindow == NULL
Bram Moolenaarca003e12006-03-17 23:19:38 +00008227 || pImmGetConversionStatus == NULL
8228 || pImmSetConversionStatus == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008229 {
8230 FreeLibrary(hLibImm);
8231 hLibImm = NULL;
8232 pImmGetContext = NULL;
8233 return;
8234 }
8235
8236 return;
8237}
8238
Bram Moolenaar071d4272004-06-13 20:20:40 +00008239#endif
8240
8241#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
8242
8243# ifdef FEAT_XPM_W32
8244# define IMAGE_XPM 100
8245# endif
8246
8247typedef struct _signicon_t
8248{
8249 HANDLE hImage;
8250 UINT uType;
8251#ifdef FEAT_XPM_W32
8252 HANDLE hShape; /* Mask bitmap handle */
8253#endif
8254} signicon_t;
8255
8256 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01008257gui_mch_drawsign(int row, int col, int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008258{
8259 signicon_t *sign;
8260 int x, y, w, h;
8261
8262 if (!gui.in_use || (sign = (signicon_t *)sign_get_image(typenr)) == NULL)
8263 return;
8264
8265 x = TEXT_X(col);
8266 y = TEXT_Y(row);
8267 w = gui.char_width * 2;
8268 h = gui.char_height;
8269 switch (sign->uType)
8270 {
8271 case IMAGE_BITMAP:
8272 {
8273 HDC hdcMem;
8274 HBITMAP hbmpOld;
8275
8276 hdcMem = CreateCompatibleDC(s_hdc);
8277 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hImage);
8278 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCCOPY);
8279 SelectObject(hdcMem, hbmpOld);
8280 DeleteDC(hdcMem);
8281 }
8282 break;
8283 case IMAGE_ICON:
8284 case IMAGE_CURSOR:
8285 DrawIconEx(s_hdc, x, y, (HICON)sign->hImage, w, h, 0, NULL, DI_NORMAL);
8286 break;
8287#ifdef FEAT_XPM_W32
8288 case IMAGE_XPM:
8289 {
8290 HDC hdcMem;
8291 HBITMAP hbmpOld;
8292
8293 hdcMem = CreateCompatibleDC(s_hdc);
8294 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hShape);
8295 /* Make hole */
8296 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCAND);
8297
8298 SelectObject(hdcMem, sign->hImage);
8299 /* Paint sign */
8300 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCPAINT);
8301 SelectObject(hdcMem, hbmpOld);
8302 DeleteDC(hdcMem);
8303 }
8304 break;
8305#endif
8306 }
8307}
8308
8309 static void
8310close_signicon_image(signicon_t *sign)
8311{
8312 if (sign)
8313 switch (sign->uType)
8314 {
8315 case IMAGE_BITMAP:
8316 DeleteObject((HGDIOBJ)sign->hImage);
8317 break;
8318 case IMAGE_CURSOR:
8319 DestroyCursor((HCURSOR)sign->hImage);
8320 break;
8321 case IMAGE_ICON:
8322 DestroyIcon((HICON)sign->hImage);
8323 break;
8324#ifdef FEAT_XPM_W32
8325 case IMAGE_XPM:
8326 DeleteObject((HBITMAP)sign->hImage);
8327 DeleteObject((HBITMAP)sign->hShape);
8328 break;
8329#endif
8330 }
8331}
8332
8333 void *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01008334gui_mch_register_sign(char_u *signfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008335{
8336 signicon_t sign, *psign;
8337 char_u *ext;
8338
Bram Moolenaar071d4272004-06-13 20:20:40 +00008339 sign.hImage = NULL;
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02008340 ext = signfile + STRLEN(signfile) - 4; /* get extension */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008341 if (ext > signfile)
8342 {
8343 int do_load = 1;
8344
8345 if (!STRICMP(ext, ".bmp"))
8346 sign.uType = IMAGE_BITMAP;
8347 else if (!STRICMP(ext, ".ico"))
8348 sign.uType = IMAGE_ICON;
8349 else if (!STRICMP(ext, ".cur") || !STRICMP(ext, ".ani"))
8350 sign.uType = IMAGE_CURSOR;
8351 else
8352 do_load = 0;
8353
8354 if (do_load)
Bram Moolenaar418f81b2016-02-16 20:12:02 +01008355 sign.hImage = (HANDLE)LoadImage(NULL, (LPCSTR)signfile, sign.uType,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008356 gui.char_width * 2, gui.char_height,
8357 LR_LOADFROMFILE | LR_CREATEDIBSECTION);
8358#ifdef FEAT_XPM_W32
8359 if (!STRICMP(ext, ".xpm"))
8360 {
8361 sign.uType = IMAGE_XPM;
Bram Moolenaar418f81b2016-02-16 20:12:02 +01008362 LoadXpmImage((char *)signfile, (HBITMAP *)&sign.hImage,
8363 (HBITMAP *)&sign.hShape);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008364 }
8365#endif
8366 }
8367
8368 psign = NULL;
8369 if (sign.hImage && (psign = (signicon_t *)alloc(sizeof(signicon_t)))
8370 != NULL)
8371 *psign = sign;
8372
8373 if (!psign)
8374 {
8375 if (sign.hImage)
8376 close_signicon_image(&sign);
8377 EMSG(_(e_signdata));
8378 }
8379 return (void *)psign;
8380
8381}
8382
8383 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01008384gui_mch_destroy_sign(void *sign)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008385{
8386 if (sign)
8387 {
8388 close_signicon_image((signicon_t *)sign);
8389 vim_free(sign);
8390 }
8391}
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00008392#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008393
8394#if defined(FEAT_BEVAL) || defined(PROTO)
8395
8396/* BALLOON-EVAL IMPLEMENTATION FOR WINDOWS.
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00008397 * Added by Sergey Khorev <sergey.khorev@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +00008398 *
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00008399 * The only reused thing is gui_beval.h and get_beval_info()
Bram Moolenaar071d4272004-06-13 20:20:40 +00008400 * from gui_beval.c (note it uses x and y of the BalloonEval struct
8401 * to get current mouse position).
8402 *
8403 * Trying to use as more Windows services as possible, and as less
8404 * IE version as possible :)).
8405 *
8406 * 1) Don't create ToolTip in gui_mch_create_beval_area, only initialize
8407 * BalloonEval struct.
8408 * 2) Enable/Disable simply create/kill BalloonEval Timer
8409 * 3) When there was enough inactivity, timer procedure posts
8410 * async request to debugger
8411 * 4) gui_mch_post_balloon (invoked from netbeans.c) creates tooltip control
8412 * and performs some actions to show it ASAP
Bram Moolenaar446cb832008-06-24 21:56:24 +00008413 * 5) WM_NOTIFY:TTN_POP destroys created tooltip
Bram Moolenaar071d4272004-06-13 20:20:40 +00008414 */
8415
Bram Moolenaar45360022005-07-21 21:08:21 +00008416/*
8417 * determine whether installed Common Controls support multiline tooltips
8418 * (i.e. their version is >= 4.70
8419 */
8420 int
8421multiline_balloon_available(void)
8422{
8423 HINSTANCE hDll;
8424 static char comctl_dll[] = "comctl32.dll";
8425 static int multiline_tip = MAYBE;
8426
8427 if (multiline_tip != MAYBE)
8428 return multiline_tip;
8429
8430 hDll = GetModuleHandle(comctl_dll);
8431 if (hDll != NULL)
8432 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008433 DLLGETVERSIONPROC pGetVer;
8434 pGetVer = (DLLGETVERSIONPROC)GetProcAddress(hDll, "DllGetVersion");
Bram Moolenaar45360022005-07-21 21:08:21 +00008435
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008436 if (pGetVer != NULL)
8437 {
8438 DLLVERSIONINFO dvi;
8439 HRESULT hr;
Bram Moolenaar45360022005-07-21 21:08:21 +00008440
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008441 ZeroMemory(&dvi, sizeof(dvi));
8442 dvi.cbSize = sizeof(dvi);
Bram Moolenaar45360022005-07-21 21:08:21 +00008443
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008444 hr = (*pGetVer)(&dvi);
Bram Moolenaar45360022005-07-21 21:08:21 +00008445
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008446 if (SUCCEEDED(hr)
Bram Moolenaar45360022005-07-21 21:08:21 +00008447 && (dvi.dwMajorVersion > 4
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008448 || (dvi.dwMajorVersion == 4
8449 && dvi.dwMinorVersion >= 70)))
Bram Moolenaar45360022005-07-21 21:08:21 +00008450 {
8451 multiline_tip = TRUE;
8452 return multiline_tip;
8453 }
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008454 }
Bram Moolenaar45360022005-07-21 21:08:21 +00008455 else
8456 {
8457 /* there is chance we have ancient CommCtl 4.70
8458 which doesn't export DllGetVersion */
8459 DWORD dwHandle = 0;
8460 DWORD len = GetFileVersionInfoSize(comctl_dll, &dwHandle);
8461 if (len > 0)
8462 {
8463 VS_FIXEDFILEINFO *ver;
8464 UINT vlen = 0;
8465 void *data = alloc(len);
8466
Bram Moolenaar418f81b2016-02-16 20:12:02 +01008467 if ((data != NULL
Bram Moolenaar45360022005-07-21 21:08:21 +00008468 && GetFileVersionInfo(comctl_dll, 0, len, data)
8469 && VerQueryValue(data, "\\", (void **)&ver, &vlen)
8470 && vlen
Bram Moolenaar418f81b2016-02-16 20:12:02 +01008471 && HIWORD(ver->dwFileVersionMS) > 4)
8472 || ((HIWORD(ver->dwFileVersionMS) == 4
8473 && LOWORD(ver->dwFileVersionMS) >= 70)))
Bram Moolenaar45360022005-07-21 21:08:21 +00008474 {
8475 vim_free(data);
8476 multiline_tip = TRUE;
8477 return multiline_tip;
8478 }
8479 vim_free(data);
8480 }
8481 }
8482 }
8483 multiline_tip = FALSE;
8484 return multiline_tip;
8485}
8486
Bram Moolenaar071d4272004-06-13 20:20:40 +00008487 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01008488make_tooltip(BalloonEval *beval, char *text, POINT pt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008489{
Bram Moolenaar45360022005-07-21 21:08:21 +00008490 TOOLINFO *pti;
8491 int ToolInfoSize;
8492
8493 if (multiline_balloon_available() == TRUE)
8494 ToolInfoSize = sizeof(TOOLINFO_NEW);
8495 else
8496 ToolInfoSize = sizeof(TOOLINFO);
8497
8498 pti = (TOOLINFO *)alloc(ToolInfoSize);
8499 if (pti == NULL)
8500 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008501
8502 beval->balloon = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS,
8503 NULL, WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,
8504 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
8505 beval->target, NULL, s_hinst, NULL);
8506
8507 SetWindowPos(beval->balloon, HWND_TOPMOST, 0, 0, 0, 0,
8508 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
8509
Bram Moolenaar45360022005-07-21 21:08:21 +00008510 pti->cbSize = ToolInfoSize;
8511 pti->uFlags = TTF_SUBCLASS;
8512 pti->hwnd = beval->target;
8513 pti->hinst = 0; /* Don't use string resources */
8514 pti->uId = ID_BEVAL_TOOLTIP;
8515
8516 if (multiline_balloon_available() == TRUE)
8517 {
8518 RECT rect;
8519 TOOLINFO_NEW *ptin = (TOOLINFO_NEW *)pti;
8520 pti->lpszText = LPSTR_TEXTCALLBACK;
8521 ptin->lParam = (LPARAM)text;
8522 if (GetClientRect(s_textArea, &rect)) /* switch multiline tooltips on */
8523 SendMessage(beval->balloon, TTM_SETMAXTIPWIDTH, 0,
8524 (LPARAM)rect.right);
8525 }
8526 else
8527 pti->lpszText = text; /* do this old way */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008528
8529 /* Limit ballooneval bounding rect to CursorPos neighbourhood */
Bram Moolenaar45360022005-07-21 21:08:21 +00008530 pti->rect.left = pt.x - 3;
8531 pti->rect.top = pt.y - 3;
8532 pti->rect.right = pt.x + 3;
8533 pti->rect.bottom = pt.y + 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008534
Bram Moolenaar45360022005-07-21 21:08:21 +00008535 SendMessage(beval->balloon, TTM_ADDTOOL, 0, (LPARAM)pti);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008536 /* Make tooltip appear sooner */
8537 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_INITIAL, 10);
Bram Moolenaarb52e5322008-01-05 12:15:52 +00008538 /* I've performed some tests and it seems the longest possible life time
8539 * of tooltip is 30 seconds */
8540 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_AUTOPOP, 30000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008541 /*
8542 * HACK: force tooltip to appear, because it'll not appear until
8543 * first mouse move. D*mn M$
Bram Moolenaarb52e5322008-01-05 12:15:52 +00008544 * Amazingly moving (2, 2) and then (-1, -1) the mouse doesn't move.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008545 */
Bram Moolenaarb52e5322008-01-05 12:15:52 +00008546 mouse_event(MOUSEEVENTF_MOVE, 2, 2, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008547 mouse_event(MOUSEEVENTF_MOVE, (DWORD)-1, (DWORD)-1, 0, 0);
Bram Moolenaar45360022005-07-21 21:08:21 +00008548 vim_free(pti);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008549}
8550
8551 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01008552delete_tooltip(BalloonEval *beval)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008553{
Bram Moolenaar8e5f5b42015-08-26 23:12:38 +02008554 PostMessage(beval->balloon, WM_CLOSE, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008555}
8556
8557 static VOID CALLBACK
Bram Moolenaar68c2f632016-01-30 17:24:07 +01008558BevalTimerProc(
Bram Moolenaar1266d672017-02-01 13:43:36 +01008559 HWND hwnd UNUSED,
8560 UINT uMsg UNUSED,
8561 UINT_PTR idEvent UNUSED,
8562 DWORD dwTime)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008563{
8564 POINT pt;
8565 RECT rect;
8566
8567 if (cur_beval == NULL || cur_beval->showState == ShS_SHOWING || !p_beval)
8568 return;
8569
8570 GetCursorPos(&pt);
8571 if (WindowFromPoint(pt) != s_textArea)
8572 return;
8573
8574 ScreenToClient(s_textArea, &pt);
8575 GetClientRect(s_textArea, &rect);
8576 if (!PtInRect(&rect, pt))
8577 return;
8578
8579 if (LastActivity > 0
8580 && (dwTime - LastActivity) >= (DWORD)p_bdlay
8581 && (cur_beval->showState != ShS_PENDING
8582 || abs(cur_beval->x - pt.x) > 3
8583 || abs(cur_beval->y - pt.y) > 3))
8584 {
8585 /* Pointer resting in one place long enough, it's time to show
8586 * the tooltip. */
8587 cur_beval->showState = ShS_PENDING;
8588 cur_beval->x = pt.x;
8589 cur_beval->y = pt.y;
8590
Bram Moolenaare2cc9702005-03-15 22:43:58 +00008591 // TRACE0("BevalTimerProc: sending request");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008592
8593 if (cur_beval->msgCB != NULL)
8594 (*cur_beval->msgCB)(cur_beval, 0);
8595 }
8596}
8597
8598 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01008599gui_mch_disable_beval_area(BalloonEval *beval UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008600{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00008601 // TRACE0("gui_mch_disable_beval_area {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008602 KillTimer(s_textArea, BevalTimerId);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00008603 // TRACE0("gui_mch_disable_beval_area }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008604}
8605
8606 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01008607gui_mch_enable_beval_area(BalloonEval *beval)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008608{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00008609 // TRACE0("gui_mch_enable_beval_area |||");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008610 if (beval == NULL)
8611 return;
Bram Moolenaare2cc9702005-03-15 22:43:58 +00008612 // TRACE0("gui_mch_enable_beval_area {{{");
Bram Moolenaar167632f2010-05-26 21:42:54 +02008613 BevalTimerId = SetTimer(s_textArea, 0, (UINT)(p_bdlay / 2), BevalTimerProc);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00008614 // TRACE0("gui_mch_enable_beval_area }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008615}
8616
8617 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01008618gui_mch_post_balloon(BalloonEval *beval, char_u *mesg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008619{
8620 POINT pt;
Bram Moolenaar1c465442017-03-12 20:10:05 +01008621
Bram Moolenaare2cc9702005-03-15 22:43:58 +00008622 // TRACE0("gui_mch_post_balloon {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008623 if (beval->showState == ShS_SHOWING)
8624 return;
8625 GetCursorPos(&pt);
8626 ScreenToClient(s_textArea, &pt);
8627
8628 if (abs(beval->x - pt.x) < 3 && abs(beval->y - pt.y) < 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008629 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01008630 /* cursor is still here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008631 gui_mch_disable_beval_area(cur_beval);
8632 beval->showState = ShS_SHOWING;
Bram Moolenaar418f81b2016-02-16 20:12:02 +01008633 make_tooltip(beval, (char *)mesg, pt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008634 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00008635 // TRACE0("gui_mch_post_balloon }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008636}
8637
8638 BalloonEval *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01008639gui_mch_create_beval_area(
8640 void *target, /* ignored, always use s_textArea */
8641 char_u *mesg,
8642 void (*mesgCB)(BalloonEval *, int),
8643 void *clientData)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008644{
8645 /* partially stolen from gui_beval.c */
8646 BalloonEval *beval;
8647
8648 if (mesg != NULL && mesgCB != NULL)
8649 {
Bram Moolenaar95f09602016-11-10 20:01:45 +01008650 IEMSG(_("E232: Cannot create BalloonEval with both message and callback"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008651 return NULL;
8652 }
8653
8654 beval = (BalloonEval *)alloc(sizeof(BalloonEval));
8655 if (beval != NULL)
8656 {
8657 beval->target = s_textArea;
8658 beval->balloon = NULL;
8659
8660 beval->showState = ShS_NEUTRAL;
8661 beval->x = 0;
8662 beval->y = 0;
8663 beval->msg = mesg;
8664 beval->msgCB = mesgCB;
8665 beval->clientData = clientData;
8666
8667 InitCommonControls();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008668 cur_beval = beval;
8669
8670 if (p_beval)
8671 gui_mch_enable_beval_area(beval);
8672
8673 }
8674 return beval;
8675}
8676
8677 static void
Bram Moolenaar1266d672017-02-01 13:43:36 +01008678Handle_WM_Notify(HWND hwnd UNUSED, LPNMHDR pnmh)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008679{
8680 if (pnmh->idFrom != ID_BEVAL_TOOLTIP) /* it is not our tooltip */
8681 return;
8682
8683 if (cur_beval != NULL)
8684 {
Bram Moolenaar45360022005-07-21 21:08:21 +00008685 switch (pnmh->code)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008686 {
Bram Moolenaar45360022005-07-21 21:08:21 +00008687 case TTN_SHOW:
Bram Moolenaare2cc9702005-03-15 22:43:58 +00008688 // TRACE0("TTN_SHOW {{{");
8689 // TRACE0("TTN_SHOW }}}");
Bram Moolenaar45360022005-07-21 21:08:21 +00008690 break;
8691 case TTN_POP: /* Before tooltip disappear */
Bram Moolenaare2cc9702005-03-15 22:43:58 +00008692 // TRACE0("TTN_POP {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008693 delete_tooltip(cur_beval);
8694 gui_mch_enable_beval_area(cur_beval);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00008695 // TRACE0("TTN_POP }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008696
8697 cur_beval->showState = ShS_NEUTRAL;
Bram Moolenaar45360022005-07-21 21:08:21 +00008698 break;
8699 case TTN_GETDISPINFO:
Bram Moolenaar6c9176d2008-01-03 19:45:15 +00008700 {
8701 /* if you get there then we have new common controls */
8702 NMTTDISPINFO_NEW *info = (NMTTDISPINFO_NEW *)pnmh;
8703 info->lpszText = (LPSTR)info->lParam;
8704 info->uFlags |= TTF_DI_SETITEM;
8705 }
Bram Moolenaar45360022005-07-21 21:08:21 +00008706 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008707 }
8708 }
8709}
8710
8711 static void
8712TrackUserActivity(UINT uMsg)
8713{
8714 if ((uMsg >= WM_MOUSEFIRST && uMsg <= WM_MOUSELAST)
8715 || (uMsg >= WM_KEYFIRST && uMsg <= WM_KEYLAST))
8716 LastActivity = GetTickCount();
8717}
8718
8719 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01008720gui_mch_destroy_beval_area(BalloonEval *beval)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008721{
8722 vim_free(beval);
8723}
8724#endif /* FEAT_BEVAL */
8725
8726#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
8727/*
8728 * We have multiple signs to draw at the same location. Draw the
8729 * multi-sign indicator (down-arrow) instead. This is the Win32 version.
8730 */
8731 void
8732netbeans_draw_multisign_indicator(int row)
8733{
8734 int i;
8735 int y;
8736 int x;
8737
Bram Moolenaarb26e6322010-05-22 21:34:09 +02008738 if (!netbeans_active())
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008739 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02008740
Bram Moolenaar071d4272004-06-13 20:20:40 +00008741 x = 0;
8742 y = TEXT_Y(row);
8743
8744 for (i = 0; i < gui.char_height - 3; i++)
8745 SetPixel(s_hdc, x+2, y++, gui.currFgColor);
8746
8747 SetPixel(s_hdc, x+0, y, gui.currFgColor);
8748 SetPixel(s_hdc, x+2, y, gui.currFgColor);
8749 SetPixel(s_hdc, x+4, y++, gui.currFgColor);
8750 SetPixel(s_hdc, x+1, y, gui.currFgColor);
8751 SetPixel(s_hdc, x+2, y, gui.currFgColor);
8752 SetPixel(s_hdc, x+3, y++, gui.currFgColor);
8753 SetPixel(s_hdc, x+2, y, gui.currFgColor);
8754}
Bram Moolenaare0874f82016-01-24 20:36:41 +01008755#endif