blob: 5ec14983ecbd6d9303bf6e2b27bb98c4771a76b1 [file] [log] [blame]
Bram Moolenaar060f1f02007-05-10 20:17:29 +00001/* vi:set ts=8 sts=4 sw=4:
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 *
13 * GUI support for Microsoft Windows. Win32 initially; maybe Win16 later
14 *
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
20 * os_win32.c. (It can also be done from the terminal version).
21 *
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 Moolenaar071d4272004-06-13 20:20:40 +000028/*
29 * These are new in Windows ME/XP, only defined in recent compilers.
30 */
31#ifndef HANDLE_WM_XBUTTONUP
32# define HANDLE_WM_XBUTTONUP(hwnd, wParam, lParam, fn) \
33 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
34#endif
35#ifndef HANDLE_WM_XBUTTONDOWN
36# define HANDLE_WM_XBUTTONDOWN(hwnd, wParam, lParam, fn) \
37 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
38#endif
39#ifndef HANDLE_WM_XBUTTONDBLCLK
40# define HANDLE_WM_XBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
41 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
42#endif
43
44/*
45 * Include the common stuff for MS-Windows GUI.
46 */
47#include "gui_w48.c"
48
49#ifdef FEAT_XPM_W32
50# include "xpm_w32.h"
51#endif
52
53#ifdef PROTO
54# define WINAPI
55#endif
56
57#ifdef __MINGW32__
58/*
59 * Add a lot of missing defines.
60 * They are not always missing, we need the #ifndef's.
61 */
62# ifndef _cdecl
63# define _cdecl
64# endif
65# ifndef IsMinimized
66# define IsMinimized(hwnd) IsIconic(hwnd)
67# endif
68# ifndef IsMaximized
69# define IsMaximized(hwnd) IsZoomed(hwnd)
70# endif
71# ifndef SelectFont
72# define SelectFont(hdc, hfont) ((HFONT)SelectObject((hdc), (HGDIOBJ)(HFONT)(hfont)))
73# endif
74# ifndef GetStockBrush
75# define GetStockBrush(i) ((HBRUSH)GetStockObject(i))
76# endif
77# ifndef DeleteBrush
78# define DeleteBrush(hbr) DeleteObject((HGDIOBJ)(HBRUSH)(hbr))
79# endif
80
81# ifndef HANDLE_WM_RBUTTONDBLCLK
82# define HANDLE_WM_RBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
83 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
84# endif
85# ifndef HANDLE_WM_MBUTTONUP
86# define HANDLE_WM_MBUTTONUP(hwnd, wParam, lParam, fn) \
87 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
88# endif
89# ifndef HANDLE_WM_MBUTTONDBLCLK
90# define HANDLE_WM_MBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
91 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
92# endif
93# ifndef HANDLE_WM_LBUTTONDBLCLK
94# define HANDLE_WM_LBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
95 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
96# endif
97# ifndef HANDLE_WM_RBUTTONDOWN
98# define HANDLE_WM_RBUTTONDOWN(hwnd, wParam, lParam, fn) \
99 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
100# endif
101# ifndef HANDLE_WM_MOUSEMOVE
102# define HANDLE_WM_MOUSEMOVE(hwnd, wParam, lParam, fn) \
103 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
104# endif
105# ifndef HANDLE_WM_RBUTTONUP
106# define HANDLE_WM_RBUTTONUP(hwnd, wParam, lParam, fn) \
107 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
108# endif
109# ifndef HANDLE_WM_MBUTTONDOWN
110# define HANDLE_WM_MBUTTONDOWN(hwnd, wParam, lParam, fn) \
111 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
112# endif
113# ifndef HANDLE_WM_LBUTTONUP
114# define HANDLE_WM_LBUTTONUP(hwnd, wParam, lParam, fn) \
115 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
116# endif
117# ifndef HANDLE_WM_LBUTTONDOWN
118# define HANDLE_WM_LBUTTONDOWN(hwnd, wParam, lParam, fn) \
119 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
120# endif
121# ifndef HANDLE_WM_SYSCHAR
122# define HANDLE_WM_SYSCHAR(hwnd, wParam, lParam, fn) \
123 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
124# endif
125# ifndef HANDLE_WM_ACTIVATEAPP
126# define HANDLE_WM_ACTIVATEAPP(hwnd, wParam, lParam, fn) \
127 ((fn)((hwnd), (BOOL)(wParam), (DWORD)(lParam)), 0L)
128# endif
129# ifndef HANDLE_WM_WINDOWPOSCHANGING
130# define HANDLE_WM_WINDOWPOSCHANGING(hwnd, wParam, lParam, fn) \
131 (LRESULT)(DWORD)(BOOL)(fn)((hwnd), (LPWINDOWPOS)(lParam))
132# endif
133# ifndef HANDLE_WM_VSCROLL
134# define HANDLE_WM_VSCROLL(hwnd, wParam, lParam, fn) \
135 ((fn)((hwnd), (HWND)(lParam), (UINT)(LOWORD(wParam)), (int)(short)HIWORD(wParam)), 0L)
136# endif
137# ifndef HANDLE_WM_SETFOCUS
138# define HANDLE_WM_SETFOCUS(hwnd, wParam, lParam, fn) \
139 ((fn)((hwnd), (HWND)(wParam)), 0L)
140# endif
141# ifndef HANDLE_WM_KILLFOCUS
142# define HANDLE_WM_KILLFOCUS(hwnd, wParam, lParam, fn) \
143 ((fn)((hwnd), (HWND)(wParam)), 0L)
144# endif
145# ifndef HANDLE_WM_HSCROLL
146# define HANDLE_WM_HSCROLL(hwnd, wParam, lParam, fn) \
147 ((fn)((hwnd), (HWND)(lParam), (UINT)(LOWORD(wParam)), (int)(short)HIWORD(wParam)), 0L)
148# endif
149# ifndef HANDLE_WM_DROPFILES
150# define HANDLE_WM_DROPFILES(hwnd, wParam, lParam, fn) \
151 ((fn)((hwnd), (HDROP)(wParam)), 0L)
152# endif
153# ifndef HANDLE_WM_CHAR
154# define HANDLE_WM_CHAR(hwnd, wParam, lParam, fn) \
155 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
156# endif
157# ifndef HANDLE_WM_SYSDEADCHAR
158# define HANDLE_WM_SYSDEADCHAR(hwnd, wParam, lParam, fn) \
159 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
160# endif
161# ifndef HANDLE_WM_DEADCHAR
162# define HANDLE_WM_DEADCHAR(hwnd, wParam, lParam, fn) \
163 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
164# endif
165#endif /* __MINGW32__ */
166
167
168/* Some parameters for tearoff menus. All in pixels. */
169#define TEAROFF_PADDING_X 2
170#define TEAROFF_BUTTON_PAD_X 8
171#define TEAROFF_MIN_WIDTH 200
172#define TEAROFF_SUBMENU_LABEL ">>"
173#define TEAROFF_COLUMN_PADDING 3 // # spaces to pad column with.
174
175
176/* For the Intellimouse: */
177#ifndef WM_MOUSEWHEEL
178#define WM_MOUSEWHEEL 0x20a
179#endif
180
181
182#ifdef FEAT_BEVAL
183# define ID_BEVAL_TOOLTIP 200
184# define BEVAL_TEXT_LEN MAXPATHL
185
Bram Moolenaar167632f2010-05-26 21:42:54 +0200186#if (defined(_MSC_VER) && _MSC_VER < 1300) || !defined(MAXULONG_PTR)
Bram Moolenaar446cb832008-06-24 21:56:24 +0000187/* Work around old versions of basetsd.h which wrongly declares
188 * UINT_PTR as unsigned long. */
Bram Moolenaar167632f2010-05-26 21:42:54 +0200189# undef UINT_PTR
Bram Moolenaar8424a622006-04-19 21:23:36 +0000190# define UINT_PTR UINT
191#endif
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000192
193static void make_tooltip __ARGS((BalloonEval *beval, char *text, POINT pt));
194static void delete_tooltip __ARGS((BalloonEval *beval));
195static VOID CALLBACK BevalTimerProc __ARGS((HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime));
196
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197static BalloonEval *cur_beval = NULL;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000198static UINT_PTR BevalTimerId = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199static DWORD LastActivity = 0;
Bram Moolenaar45360022005-07-21 21:08:21 +0000200
Bram Moolenaar82881492012-11-20 16:53:39 +0100201
202/* cproto fails on missing include files */
203#ifndef PROTO
204
Bram Moolenaar45360022005-07-21 21:08:21 +0000205/*
206 * excerpts from headers since this may not be presented
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000207 * in the extremely old compilers
Bram Moolenaar45360022005-07-21 21:08:21 +0000208 */
Bram Moolenaar82881492012-11-20 16:53:39 +0100209# include <pshpack1.h>
210
211#endif
Bram Moolenaar45360022005-07-21 21:08:21 +0000212
213typedef struct _DllVersionInfo
214{
215 DWORD cbSize;
216 DWORD dwMajorVersion;
217 DWORD dwMinorVersion;
218 DWORD dwBuildNumber;
219 DWORD dwPlatformID;
220} DLLVERSIONINFO;
221
Bram Moolenaar82881492012-11-20 16:53:39 +0100222#ifndef PROTO
223# include <poppack.h>
224#endif
Bram Moolenaar281daf62009-12-24 15:11:40 +0000225
Bram Moolenaar45360022005-07-21 21:08:21 +0000226typedef struct tagTOOLINFOA_NEW
227{
228 UINT cbSize;
229 UINT uFlags;
230 HWND hwnd;
Bram Moolenaar281daf62009-12-24 15:11:40 +0000231 UINT_PTR uId;
Bram Moolenaar45360022005-07-21 21:08:21 +0000232 RECT rect;
233 HINSTANCE hinst;
234 LPSTR lpszText;
235 LPARAM lParam;
236} TOOLINFO_NEW;
237
238typedef struct tagNMTTDISPINFO_NEW
239{
240 NMHDR hdr;
Bram Moolenaar281daf62009-12-24 15:11:40 +0000241 LPSTR lpszText;
Bram Moolenaar45360022005-07-21 21:08:21 +0000242 char szText[80];
243 HINSTANCE hinst;
244 UINT uFlags;
245 LPARAM lParam;
246} NMTTDISPINFO_NEW;
247
Bram Moolenaar45360022005-07-21 21:08:21 +0000248typedef HRESULT (WINAPI* DLLGETVERSIONPROC)(DLLVERSIONINFO *);
249#ifndef TTM_SETMAXTIPWIDTH
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000250# define TTM_SETMAXTIPWIDTH (WM_USER+24)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251#endif
252
Bram Moolenaar45360022005-07-21 21:08:21 +0000253#ifndef TTF_DI_SETITEM
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000254# define TTF_DI_SETITEM 0x8000
Bram Moolenaar45360022005-07-21 21:08:21 +0000255#endif
256
257#ifndef TTN_GETDISPINFO
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000258# define TTN_GETDISPINFO (TTN_FIRST - 0)
Bram Moolenaar45360022005-07-21 21:08:21 +0000259#endif
260
261#endif /* defined(FEAT_BEVAL) */
262
Bram Moolenaar2c7a7632007-05-10 18:19:11 +0000263#if defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
264/* Older MSVC compilers don't have LPNMTTDISPINFO[AW] thus we need to define
265 * it here if LPNMTTDISPINFO isn't defined.
266 * MingW doesn't define LPNMTTDISPINFO but typedefs it. Thus we need to check
267 * _MSC_VER. */
268# if !defined(LPNMTTDISPINFO) && defined(_MSC_VER)
269typedef struct tagNMTTDISPINFOA {
270 NMHDR hdr;
271 LPSTR lpszText;
272 char szText[80];
273 HINSTANCE hinst;
274 UINT uFlags;
275 LPARAM lParam;
276} NMTTDISPINFOA, *LPNMTTDISPINFOA;
277# define LPNMTTDISPINFO LPNMTTDISPINFOA
278
279# ifdef FEAT_MBYTE
280typedef struct tagNMTTDISPINFOW {
281 NMHDR hdr;
282 LPWSTR lpszText;
283 WCHAR szText[80];
284 HINSTANCE hinst;
285 UINT uFlags;
286 LPARAM lParam;
287} NMTTDISPINFOW, *LPNMTTDISPINFOW;
288# endif
289# endif
290#endif
291
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000292#ifndef TTN_GETDISPINFOW
293# define TTN_GETDISPINFOW (TTN_FIRST - 10)
294#endif
295
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296/* Local variables: */
297
298#ifdef FEAT_MENU
299static UINT s_menu_id = 100;
Bram Moolenaar786989b2010-10-27 12:15:33 +0200300#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301
302/*
303 * Use the system font for dialogs and tear-off menus. Remove this line to
304 * use DLG_FONT_NAME.
305 */
Bram Moolenaar786989b2010-10-27 12:15:33 +0200306#define USE_SYSMENU_FONT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307
308#define VIM_NAME "vim"
309#define VIM_CLASS "Vim"
310#define VIM_CLASSW L"Vim"
311
312/* Initial size for the dialog template. For gui_mch_dialog() it's fixed,
313 * thus there should be room for every dialog. For tearoffs it's made bigger
314 * when needed. */
315#define DLG_ALLOC_SIZE 16 * 1024
316
317/*
318 * stuff for dialogs, menus, tearoffs etc.
319 */
320static LRESULT APIENTRY dialog_callback(HWND, UINT, WPARAM, LPARAM);
321static LRESULT APIENTRY tearoff_callback(HWND, UINT, WPARAM, LPARAM);
322static PWORD
323add_dialog_element(
324 PWORD p,
325 DWORD lStyle,
326 WORD x,
327 WORD y,
328 WORD w,
329 WORD h,
330 WORD Id,
331 WORD clss,
332 const char *caption);
333static LPWORD lpwAlign(LPWORD);
334static int nCopyAnsiToWideChar(LPWORD, LPSTR);
335static void gui_mch_tearoff(char_u *title, vimmenu_T *menu, int initX, int initY);
336static void get_dialog_font_metrics(void);
337
338static int dialog_default_button = -1;
339
340/* Intellimouse support */
341static int mouse_scroll_lines = 0;
342static UINT msh_msgmousewheel = 0;
343
344static int s_usenewlook; /* emulate W95/NT4 non-bold dialogs */
345#ifdef FEAT_TOOLBAR
346static void initialise_toolbar(void);
Bram Moolenaar5f919ee2013-07-21 17:46:43 +0200347static LRESULT CALLBACK toolbar_wndproc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348static int get_toolbar_bitmap(vimmenu_T *menu);
349#endif
350
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000351#ifdef FEAT_GUI_TABLINE
352static void initialise_tabline(void);
Bram Moolenaar5f919ee2013-07-21 17:46:43 +0200353static LRESULT CALLBACK tabline_wndproc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000354#endif
355
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356#ifdef FEAT_MBYTE_IME
357static LRESULT _OnImeComposition(HWND hwnd, WPARAM dbcs, LPARAM param);
358static char_u *GetResultStr(HWND hwnd, int GCS, int *lenp);
359#endif
360#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
361# ifdef NOIME
362typedef struct tagCOMPOSITIONFORM {
363 DWORD dwStyle;
364 POINT ptCurrentPos;
365 RECT rcArea;
366} COMPOSITIONFORM, *PCOMPOSITIONFORM, NEAR *NPCOMPOSITIONFORM, FAR *LPCOMPOSITIONFORM;
367typedef HANDLE HIMC;
368# endif
369
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000370static HINSTANCE hLibImm = NULL;
371static LONG (WINAPI *pImmGetCompositionStringA)(HIMC, DWORD, LPVOID, DWORD);
372static LONG (WINAPI *pImmGetCompositionStringW)(HIMC, DWORD, LPVOID, DWORD);
373static HIMC (WINAPI *pImmGetContext)(HWND);
374static HIMC (WINAPI *pImmAssociateContext)(HWND, HIMC);
375static BOOL (WINAPI *pImmReleaseContext)(HWND, HIMC);
376static BOOL (WINAPI *pImmGetOpenStatus)(HIMC);
377static BOOL (WINAPI *pImmSetOpenStatus)(HIMC, BOOL);
378static BOOL (WINAPI *pImmGetCompositionFont)(HIMC, LPLOGFONTA);
379static BOOL (WINAPI *pImmSetCompositionFont)(HIMC, LPLOGFONTA);
380static BOOL (WINAPI *pImmSetCompositionWindow)(HIMC, LPCOMPOSITIONFORM);
381static BOOL (WINAPI *pImmGetConversionStatus)(HIMC, LPDWORD, LPDWORD);
Bram Moolenaarca003e12006-03-17 23:19:38 +0000382static BOOL (WINAPI *pImmSetConversionStatus)(HIMC, DWORD, DWORD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383static void dyn_imm_load(void);
384#else
385# define pImmGetCompositionStringA ImmGetCompositionStringA
386# define pImmGetCompositionStringW ImmGetCompositionStringW
387# define pImmGetContext ImmGetContext
388# define pImmAssociateContext ImmAssociateContext
389# define pImmReleaseContext ImmReleaseContext
390# define pImmGetOpenStatus ImmGetOpenStatus
391# define pImmSetOpenStatus ImmSetOpenStatus
392# define pImmGetCompositionFont ImmGetCompositionFontA
393# define pImmSetCompositionFont ImmSetCompositionFontA
394# define pImmSetCompositionWindow ImmSetCompositionWindow
395# define pImmGetConversionStatus ImmGetConversionStatus
Bram Moolenaarca003e12006-03-17 23:19:38 +0000396# define pImmSetConversionStatus ImmSetConversionStatus
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397#endif
398
399#ifndef ETO_IGNORELANGUAGE
400# define ETO_IGNORELANGUAGE 0x1000
401#endif
402
403/* multi monitor support */
404typedef struct _MONITORINFOstruct
405{
406 DWORD cbSize;
407 RECT rcMonitor;
408 RECT rcWork;
409 DWORD dwFlags;
410} _MONITORINFO;
411
412typedef HANDLE _HMONITOR;
413typedef _HMONITOR (WINAPI *TMonitorFromWindow)(HWND, DWORD);
414typedef BOOL (WINAPI *TGetMonitorInfo)(_HMONITOR, _MONITORINFO *);
415
416static TMonitorFromWindow pMonitorFromWindow = NULL;
417static TGetMonitorInfo pGetMonitorInfo = NULL;
418static HANDLE user32_lib = NULL;
419#ifdef FEAT_NETBEANS_INTG
420int WSInitialized = FALSE; /* WinSock is initialized */
421#endif
422/*
423 * Return TRUE when running under Windows NT 3.x or Win32s, both of which have
424 * less fancy GUI APIs.
425 */
426 static int
427is_winnt_3(void)
428{
429 return ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
430 && os_version.dwMajorVersion == 3)
431 || (os_version.dwPlatformId == VER_PLATFORM_WIN32s));
432}
433
434/*
435 * Return TRUE when running under Win32s.
436 */
437 int
438gui_is_win32s(void)
439{
440 return (os_version.dwPlatformId == VER_PLATFORM_WIN32s);
441}
442
443#ifdef FEAT_MENU
444/*
445 * Figure out how high the menu bar is at the moment.
446 */
447 static int
448gui_mswin_get_menu_height(
449 int fix_window) /* If TRUE, resize window if menu height changed */
450{
451 static int old_menu_height = -1;
452
453 RECT rc1, rc2;
454 int num;
455 int menu_height;
456
457 if (gui.menu_is_active)
458 num = GetMenuItemCount(s_menuBar);
459 else
460 num = 0;
461
462 if (num == 0)
463 menu_height = 0;
464 else
465 {
466 if (is_winnt_3()) /* for NT 3.xx */
467 {
468 if (gui.starting)
469 menu_height = GetSystemMetrics(SM_CYMENU);
470 else
471 {
472 RECT r1, r2;
473 int frameht = GetSystemMetrics(SM_CYFRAME);
474 int capht = GetSystemMetrics(SM_CYCAPTION);
475
476 /* get window rect of s_hwnd
477 * get client rect of s_hwnd
478 * get cap height
479 * subtract from window rect, the sum of client height,
480 * (if not maximized)frame thickness, and caption height.
481 */
482 GetWindowRect(s_hwnd, &r1);
483 GetClientRect(s_hwnd, &r2);
484 menu_height = r1.bottom - r1.top - (r2.bottom - r2.top
485 + 2 * frameht * (!IsZoomed(s_hwnd)) + capht);
486 }
487 }
488 else /* win95 and variants (NT 4.0, I guess) */
489 {
490 /*
491 * In case 'lines' is set in _vimrc/_gvimrc window width doesn't
492 * seem to have been set yet, so menu wraps in default window
493 * width which is very narrow. Instead just return height of a
494 * single menu item. Will still be wrong when the menu really
495 * should wrap over more than one line.
496 */
497 GetMenuItemRect(s_hwnd, s_menuBar, 0, &rc1);
498 if (gui.starting)
499 menu_height = rc1.bottom - rc1.top + 1;
500 else
501 {
502 GetMenuItemRect(s_hwnd, s_menuBar, num - 1, &rc2);
503 menu_height = rc2.bottom - rc1.top + 1;
504 }
505 }
506 }
507
508 if (fix_window && menu_height != old_menu_height)
509 {
510 old_menu_height = menu_height;
Bram Moolenaarafa24992006-03-27 20:58:26 +0000511 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 }
513
514 return menu_height;
515}
516#endif /*FEAT_MENU*/
517
518
519/*
520 * Setup for the Intellimouse
521 */
522 static void
523init_mouse_wheel(void)
524{
525
526#ifndef SPI_GETWHEELSCROLLLINES
527# define SPI_GETWHEELSCROLLLINES 104
528#endif
Bram Moolenaare7566042005-06-17 22:00:15 +0000529#ifndef SPI_SETWHEELSCROLLLINES
530# define SPI_SETWHEELSCROLLLINES 105
531#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532
533#define VMOUSEZ_CLASSNAME "MouseZ" /* hidden wheel window class */
534#define VMOUSEZ_TITLE "Magellan MSWHEEL" /* hidden wheel window title */
535#define VMSH_MOUSEWHEEL "MSWHEEL_ROLLMSG"
536#define VMSH_SCROLL_LINES "MSH_SCROLL_LINES_MSG"
537
538 HWND hdl_mswheel;
539 UINT msh_msgscrolllines;
540
541 msh_msgmousewheel = 0;
542 mouse_scroll_lines = 3; /* reasonable default */
543
544 if ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
545 && os_version.dwMajorVersion >= 4)
546 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
547 && ((os_version.dwMajorVersion == 4
548 && os_version.dwMinorVersion >= 10)
549 || os_version.dwMajorVersion >= 5)))
550 {
551 /* if NT 4.0+ (or Win98) get scroll lines directly from system */
552 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
553 &mouse_scroll_lines, 0);
554 }
555 else if (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
556 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
557 && os_version.dwMajorVersion < 4))
558 { /*
559 * If Win95 or NT 3.51,
560 * try to find the hidden point32 window.
561 */
562 hdl_mswheel = FindWindow(VMOUSEZ_CLASSNAME, VMOUSEZ_TITLE);
563 if (hdl_mswheel)
564 {
565 msh_msgscrolllines = RegisterWindowMessage(VMSH_SCROLL_LINES);
566 if (msh_msgscrolllines)
567 {
568 mouse_scroll_lines = (int)SendMessage(hdl_mswheel,
569 msh_msgscrolllines, 0, 0);
570 msh_msgmousewheel = RegisterWindowMessage(VMSH_MOUSEWHEEL);
571 }
572 }
573 }
574}
575
576
577/* Intellimouse wheel handler */
578 static void
579_OnMouseWheel(
580 HWND hwnd,
581 short zDelta)
582{
583/* Treat a mouse wheel event as if it were a scroll request */
584 int i;
585 int size;
586 HWND hwndCtl;
587
588 if (curwin->w_scrollbars[SBAR_RIGHT].id != 0)
589 {
590 hwndCtl = curwin->w_scrollbars[SBAR_RIGHT].id;
591 size = curwin->w_scrollbars[SBAR_RIGHT].size;
592 }
593 else if (curwin->w_scrollbars[SBAR_LEFT].id != 0)
594 {
595 hwndCtl = curwin->w_scrollbars[SBAR_LEFT].id;
596 size = curwin->w_scrollbars[SBAR_LEFT].size;
597 }
598 else
599 return;
600
601 size = curwin->w_height;
602 if (mouse_scroll_lines == 0)
603 init_mouse_wheel();
604
605 if (mouse_scroll_lines > 0
606 && mouse_scroll_lines < (size > 2 ? size - 2 : 1))
607 {
608 for (i = mouse_scroll_lines; i > 0; --i)
609 _OnScroll(hwnd, hwndCtl, zDelta >= 0 ? SB_LINEUP : SB_LINEDOWN, 0);
610 }
611 else
612 _OnScroll(hwnd, hwndCtl, zDelta >= 0 ? SB_PAGEUP : SB_PAGEDOWN, 0);
613}
614
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000615#ifdef USE_SYSMENU_FONT
616/*
617 * Get Menu Font.
618 * Return OK or FAIL.
619 */
620 static int
621gui_w32_get_menu_font(LOGFONT *lf)
622{
623 NONCLIENTMETRICS nm;
624
625 nm.cbSize = sizeof(NONCLIENTMETRICS);
626 if (!SystemParametersInfo(
627 SPI_GETNONCLIENTMETRICS,
628 sizeof(NONCLIENTMETRICS),
629 &nm,
630 0))
631 return FAIL;
632 *lf = nm.lfMenuFont;
633 return OK;
634}
635#endif
636
637
638#if defined(FEAT_GUI_TABLINE) && defined(USE_SYSMENU_FONT)
639/*
640 * Set the GUI tabline font to the system menu font
641 */
642 static void
643set_tabline_font(void)
644{
645 LOGFONT lfSysmenu;
646 HFONT font;
647 HWND hwnd;
648 HDC hdc;
649 HFONT hfntOld;
650 TEXTMETRIC tm;
651
652 if (gui_w32_get_menu_font(&lfSysmenu) != OK)
653 return;
654
655 font = CreateFontIndirect(&lfSysmenu);
656
657 SendMessage(s_tabhwnd, WM_SETFONT, (WPARAM)font, TRUE);
658
659 /*
660 * Compute the height of the font used for the tab text
661 */
662 hwnd = GetDesktopWindow();
663 hdc = GetWindowDC(hwnd);
664 hfntOld = SelectFont(hdc, font);
665
666 GetTextMetrics(hdc, &tm);
667
668 SelectFont(hdc, hfntOld);
669 ReleaseDC(hwnd, hdc);
670
671 /*
672 * The space used by the tab border and the space between the tab label
673 * and the tab border is included as 7.
674 */
675 gui.tabline_height = tm.tmHeight + tm.tmInternalLeading + 7;
676}
677#endif
678
Bram Moolenaar520470a2005-06-16 21:59:56 +0000679/*
680 * Invoked when a setting was changed.
681 */
682 static LRESULT CALLBACK
683_OnSettingChange(UINT n)
684{
685 if (n == SPI_SETWHEELSCROLLLINES)
686 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
687 &mouse_scroll_lines, 0);
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000688#if defined(FEAT_GUI_TABLINE) && defined(USE_SYSMENU_FONT)
689 if (n == SPI_SETNONCLIENTMETRICS)
690 set_tabline_font();
691#endif
Bram Moolenaar520470a2005-06-16 21:59:56 +0000692 return 0;
693}
694
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695#ifdef FEAT_NETBEANS_INTG
696 static void
697_OnWindowPosChanged(
698 HWND hwnd,
699 const LPWINDOWPOS lpwpos)
700{
701 static int x = 0, y = 0, cx = 0, cy = 0;
702
703 if (WSInitialized && (lpwpos->x != x || lpwpos->y != y
704 || lpwpos->cx != cx || lpwpos->cy != cy))
705 {
706 x = lpwpos->x;
707 y = lpwpos->y;
708 cx = lpwpos->cx;
709 cy = lpwpos->cy;
710 netbeans_frame_moved(x, y);
711 }
712 /* Allow to send WM_SIZE and WM_MOVE */
713 FORWARD_WM_WINDOWPOSCHANGED(hwnd, lpwpos, MyWindowProc);
714}
715#endif
716
717 static int
718_DuringSizing(
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 UINT fwSide,
720 LPRECT lprc)
721{
722 int w, h;
723 int valid_w, valid_h;
724 int w_offset, h_offset;
725
726 w = lprc->right - lprc->left;
727 h = lprc->bottom - lprc->top;
728 gui_mswin_get_valid_dimensions(w, h, &valid_w, &valid_h);
729 w_offset = w - valid_w;
730 h_offset = h - valid_h;
731
732 if (fwSide == WMSZ_LEFT || fwSide == WMSZ_TOPLEFT
733 || fwSide == WMSZ_BOTTOMLEFT)
734 lprc->left += w_offset;
735 else if (fwSide == WMSZ_RIGHT || fwSide == WMSZ_TOPRIGHT
736 || fwSide == WMSZ_BOTTOMRIGHT)
737 lprc->right -= w_offset;
738
739 if (fwSide == WMSZ_TOP || fwSide == WMSZ_TOPLEFT
740 || fwSide == WMSZ_TOPRIGHT)
741 lprc->top += h_offset;
742 else if (fwSide == WMSZ_BOTTOM || fwSide == WMSZ_BOTTOMLEFT
743 || fwSide == WMSZ_BOTTOMRIGHT)
744 lprc->bottom -= h_offset;
745 return TRUE;
746}
747
748
749
750 static LRESULT CALLBACK
751_WndProc(
752 HWND hwnd,
753 UINT uMsg,
754 WPARAM wParam,
755 LPARAM lParam)
756{
757 /*
758 TRACE("WndProc: hwnd = %08x, msg = %x, wParam = %x, lParam = %x\n",
759 hwnd, uMsg, wParam, lParam);
760 */
761
762 HandleMouseHide(uMsg, lParam);
763
764 s_uMsg = uMsg;
765 s_wParam = wParam;
766 s_lParam = lParam;
767
768 switch (uMsg)
769 {
770 HANDLE_MSG(hwnd, WM_DEADCHAR, _OnDeadChar);
771 HANDLE_MSG(hwnd, WM_SYSDEADCHAR, _OnDeadChar);
772 /* HANDLE_MSG(hwnd, WM_ACTIVATE, _OnActivate); */
773 HANDLE_MSG(hwnd, WM_CLOSE, _OnClose);
774 /* HANDLE_MSG(hwnd, WM_COMMAND, _OnCommand); */
775 HANDLE_MSG(hwnd, WM_DESTROY, _OnDestroy);
776 HANDLE_MSG(hwnd, WM_DROPFILES, _OnDropFiles);
777 HANDLE_MSG(hwnd, WM_HSCROLL, _OnScroll);
778 HANDLE_MSG(hwnd, WM_KILLFOCUS, _OnKillFocus);
779#ifdef FEAT_MENU
780 HANDLE_MSG(hwnd, WM_COMMAND, _OnMenu);
781#endif
782 /* HANDLE_MSG(hwnd, WM_MOVE, _OnMove); */
783 /* HANDLE_MSG(hwnd, WM_NCACTIVATE, _OnNCActivate); */
784 HANDLE_MSG(hwnd, WM_SETFOCUS, _OnSetFocus);
785 HANDLE_MSG(hwnd, WM_SIZE, _OnSize);
786 /* HANDLE_MSG(hwnd, WM_SYSCOMMAND, _OnSysCommand); */
787 /* HANDLE_MSG(hwnd, WM_SYSKEYDOWN, _OnAltKey); */
788 HANDLE_MSG(hwnd, WM_VSCROLL, _OnScroll);
789 // HANDLE_MSG(hwnd, WM_WINDOWPOSCHANGING, _OnWindowPosChanging);
790 HANDLE_MSG(hwnd, WM_ACTIVATEAPP, _OnActivateApp);
791#ifdef FEAT_NETBEANS_INTG
792 HANDLE_MSG(hwnd, WM_WINDOWPOSCHANGED, _OnWindowPosChanged);
793#endif
794
Bram Moolenaarafa24992006-03-27 20:58:26 +0000795#ifdef FEAT_GUI_TABLINE
796 case WM_RBUTTONUP:
797 {
798 if (gui_mch_showing_tabline())
799 {
800 POINT pt;
801 RECT rect;
802
803 /*
804 * If the cursor is on the tabline, display the tab menu
805 */
806 GetCursorPos((LPPOINT)&pt);
807 GetWindowRect(s_textArea, &rect);
808 if (pt.y < rect.top)
809 {
810 show_tabline_popup_menu();
Bram Moolenaar213ae482011-12-15 21:51:36 +0100811 return 0L;
Bram Moolenaarafa24992006-03-27 20:58:26 +0000812 }
813 }
814 return MyWindowProc(hwnd, uMsg, wParam, lParam);
815 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000816 case WM_LBUTTONDBLCLK:
817 {
818 /*
819 * If the user double clicked the tabline, create a new tab
820 */
821 if (gui_mch_showing_tabline())
822 {
823 POINT pt;
824 RECT rect;
825
826 GetCursorPos((LPPOINT)&pt);
827 GetWindowRect(s_textArea, &rect);
828 if (pt.y < rect.top)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000829 send_tabline_menu_event(0, TABLINE_MENU_NEW);
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000830 }
831 return MyWindowProc(hwnd, uMsg, wParam, lParam);
832 }
Bram Moolenaarafa24992006-03-27 20:58:26 +0000833#endif
834
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 case WM_QUERYENDSESSION: /* System wants to go down. */
836 gui_shell_closed(); /* Will exit when no changed buffers. */
837 return FALSE; /* Do NOT allow system to go down. */
838
839 case WM_ENDSESSION:
840 if (wParam) /* system only really goes down when wParam is TRUE */
Bram Moolenaar213ae482011-12-15 21:51:36 +0100841 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 _OnEndSession();
Bram Moolenaar213ae482011-12-15 21:51:36 +0100843 return 0L;
844 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 break;
846
847 case WM_CHAR:
848 /* Don't use HANDLE_MSG() for WM_CHAR, it truncates wParam to a single
849 * byte while we want the UTF-16 character value. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000850 _OnChar(hwnd, (UINT)wParam, (int)(short)LOWORD(lParam));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 return 0L;
852
853 case WM_SYSCHAR:
854 /*
855 * if 'winaltkeys' is "no", or it's "menu" and it's not a menu
856 * shortcut key, handle like a typed ALT key, otherwise call Windows
857 * ALT key handling.
858 */
859#ifdef FEAT_MENU
860 if ( !gui.menu_is_active
861 || p_wak[0] == 'n'
862 || (p_wak[0] == 'm' && !gui_is_menu_shortcut((int)wParam))
863 )
864#endif
865 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000866 _OnSysChar(hwnd, (UINT)wParam, (int)(short)LOWORD(lParam));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 return 0L;
868 }
869#ifdef FEAT_MENU
870 else
871 return MyWindowProc(hwnd, uMsg, wParam, lParam);
872#endif
873
874 case WM_SYSKEYUP:
875#ifdef FEAT_MENU
876 /* This used to be done only when menu is active: ALT key is used for
877 * that. But that caused problems when menu is disabled and using
878 * Alt-Tab-Esc: get into a strange state where no mouse-moved events
879 * are received, mouse pointer remains hidden. */
880 return MyWindowProc(hwnd, uMsg, wParam, lParam);
881#else
Bram Moolenaar213ae482011-12-15 21:51:36 +0100882 return 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883#endif
884
885 case WM_SIZING: /* HANDLE_MSG doesn't seem to handle this one */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000886 return _DuringSizing((UINT)wParam, (LPRECT)lParam);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887
888 case WM_MOUSEWHEEL:
889 _OnMouseWheel(hwnd, HIWORD(wParam));
Bram Moolenaar213ae482011-12-15 21:51:36 +0100890 return 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891
Bram Moolenaar520470a2005-06-16 21:59:56 +0000892 /* Notification for change in SystemParametersInfo() */
893 case WM_SETTINGCHANGE:
894 return _OnSettingChange((UINT)wParam);
895
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000896#if defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 case WM_NOTIFY:
898 switch (((LPNMHDR) lParam)->code)
899 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000900# ifdef FEAT_MBYTE
901 case TTN_GETDISPINFOW:
902# endif
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000903 case TTN_GETDISPINFO:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000905 LPNMHDR hdr = (LPNMHDR)lParam;
906 char_u *str = NULL;
907 static void *tt_text = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000908
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000909 vim_free(tt_text);
910 tt_text = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000911
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000912# ifdef FEAT_GUI_TABLINE
913 if (gui_mch_showing_tabline()
914 && hdr->hwndFrom == TabCtrl_GetToolTips(s_tabhwnd))
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000915 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000916 POINT pt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000917 /*
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000918 * Mouse is over the GUI tabline. Display the
919 * tooltip for the tab under the cursor
920 *
921 * Get the cursor position within the tab control
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000922 */
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000923 GetCursorPos(&pt);
924 if (ScreenToClient(s_tabhwnd, &pt) != 0)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000925 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000926 TCHITTESTINFO htinfo;
927 int idx;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000928
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000929 /*
930 * Get the tab under the cursor
931 */
932 htinfo.pt.x = pt.x;
933 htinfo.pt.y = pt.y;
934 idx = TabCtrl_HitTest(s_tabhwnd, &htinfo);
935 if (idx != -1)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000936 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000937 tabpage_T *tp;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000938
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000939 tp = find_tabpage(idx + 1);
940 if (tp != NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000941 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000942 get_tabline_label(tp, TRUE);
943 str = NameBuff;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000944 }
945 }
946 }
947 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000948# endif
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000949# ifdef FEAT_TOOLBAR
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000950# ifdef FEAT_GUI_TABLINE
951 else
952# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000954 UINT idButton;
955 vimmenu_T *pMenu;
956
957 idButton = (UINT) hdr->idFrom;
958 pMenu = gui_mswin_find_menu(root_menu, idButton);
959 if (pMenu)
960 str = pMenu->strings[MENU_INDEX_TIP];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000962# endif
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000963 if (str != NULL)
964 {
965# ifdef FEAT_MBYTE
966 if (hdr->code == TTN_GETDISPINFOW)
967 {
968 LPNMTTDISPINFOW lpdi = (LPNMTTDISPINFOW)lParam;
969
Bram Moolenaar6c9176d2008-01-03 19:45:15 +0000970 /* Set the maximum width, this also enables using
971 * \n for line break. */
972 SendMessage(lpdi->hdr.hwndFrom, TTM_SETMAXTIPWIDTH,
973 0, 500);
974
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000975 tt_text = enc_to_utf16(str, NULL);
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000976 lpdi->lpszText = tt_text;
977 /* can't show tooltip if failed */
978 }
979 else
980# endif
981 {
982 LPNMTTDISPINFO lpdi = (LPNMTTDISPINFO)lParam;
983
Bram Moolenaar6c9176d2008-01-03 19:45:15 +0000984 /* Set the maximum width, this also enables using
985 * \n for line break. */
986 SendMessage(lpdi->hdr.hwndFrom, TTM_SETMAXTIPWIDTH,
987 0, 500);
988
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000989 if (STRLEN(str) < sizeof(lpdi->szText)
990 || ((tt_text = vim_strsave(str)) == NULL))
991 vim_strncpy(lpdi->szText, str,
992 sizeof(lpdi->szText) - 1);
993 else
994 lpdi->lpszText = tt_text;
995 }
996 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 }
998 break;
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000999# ifdef FEAT_GUI_TABLINE
1000 case TCN_SELCHANGE:
1001 if (gui_mch_showing_tabline()
1002 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
Bram Moolenaar213ae482011-12-15 21:51:36 +01001003 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001004 send_tabline_event(TabCtrl_GetCurSel(s_tabhwnd) + 1);
Bram Moolenaar213ae482011-12-15 21:51:36 +01001005 return 0L;
1006 }
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001007 break;
Bram Moolenaarafa24992006-03-27 20:58:26 +00001008
1009 case NM_RCLICK:
1010 if (gui_mch_showing_tabline()
1011 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
Bram Moolenaar213ae482011-12-15 21:51:36 +01001012 {
Bram Moolenaarafa24992006-03-27 20:58:26 +00001013 show_tabline_popup_menu();
Bram Moolenaar213ae482011-12-15 21:51:36 +01001014 return 0L;
1015 }
Bram Moolenaarafa24992006-03-27 20:58:26 +00001016 break;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001017# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 default:
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001019# ifdef FEAT_GUI_TABLINE
1020 if (gui_mch_showing_tabline()
1021 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
1022 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1023# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 break;
1025 }
1026 break;
1027#endif
1028#if defined(MENUHINTS) && defined(FEAT_MENU)
1029 case WM_MENUSELECT:
1030 if (((UINT) HIWORD(wParam)
1031 & (0xffff ^ (MF_MOUSESELECT + MF_BITMAP + MF_POPUP)))
1032 == MF_HILITE
1033 && (State & CMDLINE) == 0)
1034 {
1035 UINT idButton;
1036 vimmenu_T *pMenu;
1037 static int did_menu_tip = FALSE;
1038
1039 if (did_menu_tip)
1040 {
1041 msg_clr_cmdline();
1042 setcursor();
1043 out_flush();
1044 did_menu_tip = FALSE;
1045 }
1046
1047 idButton = (UINT)LOWORD(wParam);
1048 pMenu = gui_mswin_find_menu(root_menu, idButton);
1049 if (pMenu != NULL && pMenu->strings[MENU_INDEX_TIP] != 0
1050 && GetMenuState(s_menuBar, pMenu->id, MF_BYCOMMAND) != -1)
1051 {
Bram Moolenaar2d8ab992007-06-19 08:06:18 +00001052 ++msg_hist_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 msg(pMenu->strings[MENU_INDEX_TIP]);
Bram Moolenaar2d8ab992007-06-19 08:06:18 +00001054 --msg_hist_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 setcursor();
1056 out_flush();
1057 did_menu_tip = TRUE;
1058 }
Bram Moolenaar213ae482011-12-15 21:51:36 +01001059 return 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 }
1061 break;
1062#endif
1063 case WM_NCHITTEST:
1064 {
1065 LRESULT result;
1066 int x, y;
1067 int xPos = GET_X_LPARAM(lParam);
1068
1069 result = MyWindowProc(hwnd, uMsg, wParam, lParam);
1070 if (result == HTCLIENT)
1071 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001072#ifdef FEAT_GUI_TABLINE
1073 if (gui_mch_showing_tabline())
1074 {
1075 int yPos = GET_Y_LPARAM(lParam);
1076 RECT rct;
1077
1078 /* If the cursor is on the GUI tabline, don't process this
1079 * event */
1080 GetWindowRect(s_textArea, &rct);
1081 if (yPos < rct.top)
1082 return result;
1083 }
1084#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 gui_mch_get_winpos(&x, &y);
1086 xPos -= x;
1087
1088 if (xPos < 48) /* <VN> TODO should use system metric? */
1089 return HTBOTTOMLEFT;
1090 else
1091 return HTBOTTOMRIGHT;
1092 }
1093 else
1094 return result;
1095 }
1096 /* break; notreached */
1097
1098#ifdef FEAT_MBYTE_IME
1099 case WM_IME_NOTIFY:
1100 if (!_OnImeNotify(hwnd, (DWORD)wParam, (DWORD)lParam))
1101 return MyWindowProc(hwnd, uMsg, wParam, lParam);
Bram Moolenaar213ae482011-12-15 21:51:36 +01001102 return 1L;
1103
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104 case WM_IME_COMPOSITION:
1105 if (!_OnImeComposition(hwnd, wParam, lParam))
1106 return MyWindowProc(hwnd, uMsg, wParam, lParam);
Bram Moolenaar213ae482011-12-15 21:51:36 +01001107 return 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108#endif
1109
1110 default:
1111 if (uMsg == msh_msgmousewheel && msh_msgmousewheel != 0)
1112 { /* handle MSH_MOUSEWHEEL messages for Intellimouse */
1113 _OnMouseWheel(hwnd, HIWORD(wParam));
Bram Moolenaar213ae482011-12-15 21:51:36 +01001114 return 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 }
1116#ifdef MSWIN_FIND_REPLACE
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001117 else if (uMsg == s_findrep_msg && s_findrep_msg != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 {
1119 _OnFindRepl();
1120 }
1121#endif
1122 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1123 }
1124
Bram Moolenaar2787ab92011-12-14 15:23:59 +01001125 return DefWindowProc(hwnd, uMsg, wParam, lParam);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126}
1127
1128/*
1129 * End of call-back routines
1130 */
1131
1132/* parent window, if specified with -P */
1133HWND vim_parent_hwnd = NULL;
1134
1135 static BOOL CALLBACK
1136FindWindowTitle(HWND hwnd, LPARAM lParam)
1137{
1138 char buf[2048];
1139 char *title = (char *)lParam;
1140
1141 if (GetWindowText(hwnd, buf, sizeof(buf)))
1142 {
1143 if (strstr(buf, title) != NULL)
1144 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001145 /* Found it. Store the window ref. and quit searching if MDI
1146 * works. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 vim_parent_hwnd = FindWindowEx(hwnd, NULL, "MDIClient", NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001148 if (vim_parent_hwnd != NULL)
1149 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 }
1151 }
1152 return TRUE; /* continue searching */
1153}
1154
1155/*
1156 * Invoked for '-P "title"' argument: search for parent application to open
1157 * our window in.
1158 */
1159 void
1160gui_mch_set_parent(char *title)
1161{
1162 EnumWindows(FindWindowTitle, (LPARAM)title);
1163 if (vim_parent_hwnd == NULL)
1164 {
1165 EMSG2(_("E671: Cannot find window title \"%s\""), title);
1166 mch_exit(2);
1167 }
1168}
1169
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001170#ifndef FEAT_OLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 static void
1172ole_error(char *arg)
1173{
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00001174 char buf[IOSIZE];
1175
1176 /* Can't use EMSG() here, we have not finished initialisation yet. */
1177 vim_snprintf(buf, IOSIZE,
1178 _("E243: Argument not supported: \"-%s\"; Use the OLE version."),
1179 arg);
1180 mch_errmsg(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001182#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183
1184/*
1185 * Parse the GUI related command-line arguments. Any arguments used are
1186 * deleted from argv, and *argc is decremented accordingly. This is called
1187 * when vim is started, whether or not the GUI has been started.
1188 */
1189 void
1190gui_mch_prepare(int *argc, char **argv)
1191{
1192 int silent = FALSE;
1193 int idx;
1194
1195 /* Check for special OLE command line parameters */
1196 if ((*argc == 2 || *argc == 3) && (argv[1][0] == '-' || argv[1][0] == '/'))
1197 {
1198 /* Check for a "-silent" argument first. */
1199 if (*argc == 3 && STRICMP(argv[1] + 1, "silent") == 0
1200 && (argv[2][0] == '-' || argv[2][0] == '/'))
1201 {
1202 silent = TRUE;
1203 idx = 2;
1204 }
1205 else
1206 idx = 1;
1207
1208 /* Register Vim as an OLE Automation server */
1209 if (STRICMP(argv[idx] + 1, "register") == 0)
1210 {
1211#ifdef FEAT_OLE
1212 RegisterMe(silent);
1213 mch_exit(0);
1214#else
1215 if (!silent)
1216 ole_error("register");
1217 mch_exit(2);
1218#endif
1219 }
1220
1221 /* Unregister Vim as an OLE Automation server */
1222 if (STRICMP(argv[idx] + 1, "unregister") == 0)
1223 {
1224#ifdef FEAT_OLE
1225 UnregisterMe(!silent);
1226 mch_exit(0);
1227#else
1228 if (!silent)
1229 ole_error("unregister");
1230 mch_exit(2);
1231#endif
1232 }
1233
1234 /* Ignore an -embedding argument. It is only relevant if the
1235 * application wants to treat the case when it is started manually
1236 * differently from the case where it is started via automation (and
1237 * we don't).
1238 */
1239 if (STRICMP(argv[idx] + 1, "embedding") == 0)
1240 {
1241#ifdef FEAT_OLE
1242 *argc = 1;
1243#else
1244 ole_error("embedding");
1245 mch_exit(2);
1246#endif
1247 }
1248 }
1249
1250#ifdef FEAT_OLE
1251 {
1252 int bDoRestart = FALSE;
1253
1254 InitOLE(&bDoRestart);
1255 /* automatically exit after registering */
1256 if (bDoRestart)
1257 mch_exit(0);
1258 }
1259#endif
1260
1261#ifdef FEAT_NETBEANS_INTG
1262 {
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001263 /* stolen from gui_x11.c */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 int arg;
1265
1266 for (arg = 1; arg < *argc; arg++)
1267 if (strncmp("-nb", argv[arg], 3) == 0)
1268 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269 netbeansArg = argv[arg];
1270 mch_memmove(&argv[arg], &argv[arg + 1],
1271 (--*argc - arg) * sizeof(char *));
1272 argv[*argc] = NULL;
1273 break; /* enough? */
1274 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 }
1276#endif
1277
1278 /* get the OS version info */
1279 os_version.dwOSVersionInfoSize = sizeof(os_version);
1280 GetVersionEx(&os_version); /* this call works on Win32s, Win95 and WinNT */
1281
1282 /* try and load the user32.dll library and get the entry points for
1283 * multi-monitor-support. */
Bram Moolenaarebbcb822010-10-23 14:02:54 +02001284 if ((user32_lib = vimLoadLib("User32.dll")) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 {
1286 pMonitorFromWindow = (TMonitorFromWindow)GetProcAddress(user32_lib,
1287 "MonitorFromWindow");
1288
1289 /* there are ...A and ...W version of GetMonitorInfo - looking at
1290 * winuser.h, they have exactly the same declaration. */
1291 pGetMonitorInfo = (TGetMonitorInfo)GetProcAddress(user32_lib,
1292 "GetMonitorInfoA");
1293 }
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001294
1295#ifdef FEAT_MBYTE
1296 /* If the OS is Windows NT, use wide functions;
1297 * this enables common dialogs input unicode from IME. */
1298 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT)
1299 {
1300 pDispatchMessage = DispatchMessageW;
1301 pGetMessage = GetMessageW;
1302 pIsDialogMessage = IsDialogMessageW;
1303 pPeekMessage = PeekMessageW;
1304 }
1305 else
1306 {
1307 pDispatchMessage = DispatchMessageA;
1308 pGetMessage = GetMessageA;
1309 pIsDialogMessage = IsDialogMessageA;
1310 pPeekMessage = PeekMessageA;
1311 }
1312#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313}
1314
1315/*
1316 * Initialise the GUI. Create all the windows, set up all the call-backs
1317 * etc.
1318 */
1319 int
1320gui_mch_init(void)
1321{
1322 const char szVimWndClass[] = VIM_CLASS;
1323 const char szTextAreaClass[] = "VimTextArea";
1324 WNDCLASS wndclass;
1325#ifdef FEAT_MBYTE
1326 const WCHAR szVimWndClassW[] = VIM_CLASSW;
Bram Moolenaar33d0b692010-02-17 16:31:32 +01001327 const WCHAR szTextAreaClassW[] = L"VimTextArea";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 WNDCLASSW wndclassw;
1329#endif
1330#ifdef GLOBAL_IME
1331 ATOM atom;
1332#endif
1333
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 /* Return here if the window was already opened (happens when
1335 * gui_mch_dialog() is called early). */
1336 if (s_hwnd != NULL)
Bram Moolenaar748bf032005-02-02 23:04:36 +00001337 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338
1339 /*
1340 * Load the tearoff bitmap
1341 */
1342#ifdef FEAT_TEAROFF
1343 s_htearbitmap = LoadBitmap(s_hinst, "IDB_TEAROFF");
1344#endif
1345
1346 gui.scrollbar_width = GetSystemMetrics(SM_CXVSCROLL);
1347 gui.scrollbar_height = GetSystemMetrics(SM_CYHSCROLL);
1348#ifdef FEAT_MENU
1349 gui.menu_height = 0; /* Windows takes care of this */
1350#endif
1351 gui.border_width = 0;
1352
1353 s_brush = CreateSolidBrush(GetSysColor(COLOR_BTNFACE));
1354
1355#ifdef FEAT_MBYTE
1356 /* First try using the wide version, so that we can use any title.
1357 * Otherwise only characters in the active codepage will work. */
1358 if (GetClassInfoW(s_hinst, szVimWndClassW, &wndclassw) == 0)
1359 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001360 wndclassw.style = CS_DBLCLKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 wndclassw.lpfnWndProc = _WndProc;
1362 wndclassw.cbClsExtra = 0;
1363 wndclassw.cbWndExtra = 0;
1364 wndclassw.hInstance = s_hinst;
1365 wndclassw.hIcon = LoadIcon(wndclassw.hInstance, "IDR_VIM");
1366 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
1367 wndclassw.hbrBackground = s_brush;
1368 wndclassw.lpszMenuName = NULL;
1369 wndclassw.lpszClassName = szVimWndClassW;
1370
1371 if ((
1372#ifdef GLOBAL_IME
1373 atom =
1374#endif
1375 RegisterClassW(&wndclassw)) == 0)
1376 {
1377 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
1378 return FAIL;
1379
1380 /* Must be Windows 98, fall back to non-wide function. */
1381 }
1382 else
1383 wide_WindowProc = TRUE;
1384 }
1385
1386 if (!wide_WindowProc)
1387#endif
1388
1389 if (GetClassInfo(s_hinst, szVimWndClass, &wndclass) == 0)
1390 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001391 wndclass.style = CS_DBLCLKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 wndclass.lpfnWndProc = _WndProc;
1393 wndclass.cbClsExtra = 0;
1394 wndclass.cbWndExtra = 0;
1395 wndclass.hInstance = s_hinst;
1396 wndclass.hIcon = LoadIcon(wndclass.hInstance, "IDR_VIM");
1397 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
1398 wndclass.hbrBackground = s_brush;
1399 wndclass.lpszMenuName = NULL;
1400 wndclass.lpszClassName = szVimWndClass;
1401
1402 if ((
1403#ifdef GLOBAL_IME
1404 atom =
1405#endif
1406 RegisterClass(&wndclass)) == 0)
1407 return FAIL;
1408 }
1409
1410 if (vim_parent_hwnd != NULL)
1411 {
1412#ifdef HAVE_TRY_EXCEPT
1413 __try
1414 {
1415#endif
1416 /* Open inside the specified parent window.
1417 * TODO: last argument should point to a CLIENTCREATESTRUCT
1418 * structure. */
1419 s_hwnd = CreateWindowEx(
1420 WS_EX_MDICHILD,
1421 szVimWndClass, "Vim MSWindows GUI",
Bram Moolenaare78c2062011-08-10 15:56:27 +02001422 WS_OVERLAPPEDWINDOW | WS_CHILD
1423 | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | 0xC000,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
1425 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
1426 100, /* Any value will do */
1427 100, /* Any value will do */
1428 vim_parent_hwnd, NULL,
1429 s_hinst, NULL);
1430#ifdef HAVE_TRY_EXCEPT
1431 }
1432 __except(EXCEPTION_EXECUTE_HANDLER)
1433 {
1434 /* NOP */
1435 }
1436#endif
1437 if (s_hwnd == NULL)
1438 {
1439 EMSG(_("E672: Unable to open window inside MDI application"));
1440 mch_exit(2);
1441 }
1442 }
1443 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001444 {
1445 /* If the provided windowid is not valid reset it to zero, so that it
1446 * is ignored and we open our own window. */
1447 if (IsWindow((HWND)win_socket_id) <= 0)
1448 win_socket_id = 0;
1449
1450 /* Create a window. If win_socket_id is not zero without border and
1451 * titlebar, it will be reparented below. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 s_hwnd = CreateWindow(
Bram Moolenaar78e17622007-08-30 10:26:19 +00001453 szVimWndClass, "Vim MSWindows GUI",
Bram Moolenaare78c2062011-08-10 15:56:27 +02001454 (win_socket_id == 0 ? WS_OVERLAPPEDWINDOW : WS_POPUP)
1455 | WS_CLIPSIBLINGS | WS_CLIPCHILDREN,
Bram Moolenaar78e17622007-08-30 10:26:19 +00001456 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
1457 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
1458 100, /* Any value will do */
1459 100, /* Any value will do */
1460 NULL, NULL,
1461 s_hinst, NULL);
1462 if (s_hwnd != NULL && win_socket_id != 0)
1463 {
1464 SetParent(s_hwnd, (HWND)win_socket_id);
1465 ShowWindow(s_hwnd, SW_SHOWMAXIMIZED);
1466 }
1467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468
1469 if (s_hwnd == NULL)
1470 return FAIL;
1471
1472#ifdef GLOBAL_IME
1473 global_ime_init(atom, s_hwnd);
1474#endif
1475#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
1476 dyn_imm_load();
1477#endif
1478
1479 /* Create the text area window */
Bram Moolenaar33d0b692010-02-17 16:31:32 +01001480#ifdef FEAT_MBYTE
1481 if (wide_WindowProc)
1482 {
1483 if (GetClassInfoW(s_hinst, szTextAreaClassW, &wndclassw) == 0)
1484 {
1485 wndclassw.style = CS_OWNDC;
1486 wndclassw.lpfnWndProc = _TextAreaWndProc;
1487 wndclassw.cbClsExtra = 0;
1488 wndclassw.cbWndExtra = 0;
1489 wndclassw.hInstance = s_hinst;
1490 wndclassw.hIcon = NULL;
1491 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
1492 wndclassw.hbrBackground = NULL;
1493 wndclassw.lpszMenuName = NULL;
1494 wndclassw.lpszClassName = szTextAreaClassW;
1495
1496 if (RegisterClassW(&wndclassw) == 0)
1497 return FAIL;
1498 }
1499 }
1500 else
1501#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 if (GetClassInfo(s_hinst, szTextAreaClass, &wndclass) == 0)
1503 {
1504 wndclass.style = CS_OWNDC;
1505 wndclass.lpfnWndProc = _TextAreaWndProc;
1506 wndclass.cbClsExtra = 0;
1507 wndclass.cbWndExtra = 0;
1508 wndclass.hInstance = s_hinst;
1509 wndclass.hIcon = NULL;
1510 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
1511 wndclass.hbrBackground = NULL;
1512 wndclass.lpszMenuName = NULL;
1513 wndclass.lpszClassName = szTextAreaClass;
1514
1515 if (RegisterClass(&wndclass) == 0)
1516 return FAIL;
1517 }
1518 s_textArea = CreateWindowEx(
1519 WS_EX_CLIENTEDGE,
1520 szTextAreaClass, "Vim text area",
1521 WS_CHILD | WS_VISIBLE, 0, 0,
1522 100, /* Any value will do for now */
1523 100, /* Any value will do for now */
1524 s_hwnd, NULL,
1525 s_hinst, NULL);
1526
1527 if (s_textArea == NULL)
1528 return FAIL;
1529
1530#ifdef FEAT_MENU
1531 s_menuBar = CreateMenu();
1532#endif
1533 s_hdc = GetDC(s_textArea);
1534
1535#ifdef MSWIN16_FASTTEXT
1536 SetBkMode(s_hdc, OPAQUE);
1537#endif
1538
1539#ifdef FEAT_WINDOWS
1540 DragAcceptFiles(s_hwnd, TRUE);
1541#endif
1542
1543 /* Do we need to bother with this? */
1544 /* m_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT); */
1545
1546 /* Get background/foreground colors from the system */
1547 gui_mch_def_colors();
1548
1549 /* Get the colors from the "Normal" group (set in syntax.c or in a vimrc
1550 * file) */
1551 set_normal_colors();
1552
1553 /*
1554 * Check that none of the colors are the same as the background color.
1555 * Then store the current values as the defaults.
1556 */
1557 gui_check_colors();
1558 gui.def_norm_pixel = gui.norm_pixel;
1559 gui.def_back_pixel = gui.back_pixel;
1560
1561 /* Get the colors for the highlight groups (gui_check_colors() might have
1562 * changed them) */
1563 highlight_gui_started();
1564
1565 /*
1566 * Start out by adding the configured border width into the border offset
1567 */
1568 gui.border_offset = gui.border_width + 2; /*CLIENT EDGE*/
1569
1570 /*
1571 * Set up for Intellimouse processing
1572 */
1573 init_mouse_wheel();
1574
1575 /*
1576 * compute a couple of metrics used for the dialogs
1577 */
1578 get_dialog_font_metrics();
1579#ifdef FEAT_TOOLBAR
1580 /*
1581 * Create the toolbar
1582 */
1583 initialise_toolbar();
1584#endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001585#ifdef FEAT_GUI_TABLINE
1586 /*
1587 * Create the tabline
1588 */
1589 initialise_tabline();
1590#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591#ifdef MSWIN_FIND_REPLACE
1592 /*
1593 * Initialise the dialog box stuff
1594 */
1595 s_findrep_msg = RegisterWindowMessage(FINDMSGSTRING);
1596
1597 /* Initialise the struct */
1598 s_findrep_struct.lStructSize = sizeof(s_findrep_struct);
1599 s_findrep_struct.lpstrFindWhat = alloc(MSWIN_FR_BUFSIZE);
1600 s_findrep_struct.lpstrFindWhat[0] = NUL;
1601 s_findrep_struct.lpstrReplaceWith = alloc(MSWIN_FR_BUFSIZE);
1602 s_findrep_struct.lpstrReplaceWith[0] = NUL;
1603 s_findrep_struct.wFindWhatLen = MSWIN_FR_BUFSIZE;
1604 s_findrep_struct.wReplaceWithLen = MSWIN_FR_BUFSIZE;
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00001605# if defined(FEAT_MBYTE) && defined(WIN3264)
1606 s_findrep_struct_w.lStructSize = sizeof(s_findrep_struct_w);
1607 s_findrep_struct_w.lpstrFindWhat =
1608 (LPWSTR)alloc(MSWIN_FR_BUFSIZE * sizeof(WCHAR));
1609 s_findrep_struct_w.lpstrFindWhat[0] = NUL;
1610 s_findrep_struct_w.lpstrReplaceWith =
1611 (LPWSTR)alloc(MSWIN_FR_BUFSIZE * sizeof(WCHAR));
1612 s_findrep_struct_w.lpstrReplaceWith[0] = NUL;
1613 s_findrep_struct_w.wFindWhatLen = MSWIN_FR_BUFSIZE;
1614 s_findrep_struct_w.wReplaceWithLen = MSWIN_FR_BUFSIZE;
1615# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02001618#ifdef FEAT_EVAL
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01001619# ifndef HandleToLong
Bram Moolenaar4da95d32011-07-07 17:43:41 +02001620/* HandleToLong() only exists in compilers that can do 64 bit builds */
1621# define HandleToLong(h) ((long)(h))
1622# endif
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02001623 /* set the v:windowid variable */
Bram Moolenaar7154b322011-05-25 21:18:06 +02001624 set_vim_var_nr(VV_WINDOWID, HandleToLong(s_hwnd));
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02001625#endif
1626
Bram Moolenaar748bf032005-02-02 23:04:36 +00001627theend:
1628 /* Display any pending error messages */
1629 display_errors();
1630
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 return OK;
1632}
1633
1634/*
1635 * Get the size of the screen, taking position on multiple monitors into
1636 * account (if supported).
1637 */
1638 static void
1639get_work_area(RECT *spi_rect)
1640{
1641 _HMONITOR mon;
1642 _MONITORINFO moninfo;
1643
1644 /* use these functions only if available */
1645 if (pMonitorFromWindow != NULL && pGetMonitorInfo != NULL)
1646 {
1647 /* work out which monitor the window is on, and get *it's* work area */
1648 mon = pMonitorFromWindow(s_hwnd, 1 /*MONITOR_DEFAULTTOPRIMARY*/);
1649 if (mon != NULL)
1650 {
1651 moninfo.cbSize = sizeof(_MONITORINFO);
1652 if (pGetMonitorInfo(mon, &moninfo))
1653 {
1654 *spi_rect = moninfo.rcWork;
1655 return;
1656 }
1657 }
1658 }
1659 /* this is the old method... */
1660 SystemParametersInfo(SPI_GETWORKAREA, 0, spi_rect, 0);
1661}
1662
1663/*
1664 * Set the size of the window to the given width and height in pixels.
1665 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001666/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 void
1668gui_mch_set_shellsize(int width, int height,
Bram Moolenaarafa24992006-03-27 20:58:26 +00001669 int min_width, int min_height, int base_width, int base_height,
1670 int direction)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671{
1672 RECT workarea_rect;
1673 int win_width, win_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 WINDOWPLACEMENT wndpl;
1675
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001676 /* Try to keep window completely on screen. */
1677 /* Get position of the screen work area. This is the part that is not
1678 * used by the taskbar or appbars. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 get_work_area(&workarea_rect);
1680
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001681 /* Get current position of our window. Note that the .left and .top are
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001682 * relative to the work area. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 wndpl.length = sizeof(WINDOWPLACEMENT);
1684 GetWindowPlacement(s_hwnd, &wndpl);
1685
1686 /* Resizing a maximized window looks very strange, unzoom it first.
1687 * But don't do it when still starting up, it may have been requested in
1688 * the shortcut. */
1689 if (wndpl.showCmd == SW_SHOWMAXIMIZED && starting == 0)
1690 {
1691 ShowWindow(s_hwnd, SW_SHOWNORMAL);
1692 /* Need to get the settings of the normal window. */
1693 GetWindowPlacement(s_hwnd, &wndpl);
1694 }
1695
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 /* compute the size of the outside of the window */
1697 win_width = width + GetSystemMetrics(SM_CXFRAME) * 2;
1698 win_height = height + GetSystemMetrics(SM_CYFRAME) * 2
1699 + GetSystemMetrics(SM_CYCAPTION)
1700#ifdef FEAT_MENU
1701 + gui_mswin_get_menu_height(FALSE)
1702#endif
1703 ;
1704
Bram Moolenaar6ef47c22012-01-04 20:29:22 +01001705 /* The following should take care of keeping Vim on the same monitor, no
1706 * matter if the secondary monitor is left or right of the primary
1707 * monitor. */
1708 wndpl.rcNormalPosition.right = wndpl.rcNormalPosition.left + win_width;
1709 wndpl.rcNormalPosition.bottom = wndpl.rcNormalPosition.top + win_height;
Bram Moolenaar56a907a2006-05-06 21:44:30 +00001710
Bram Moolenaar6ef47c22012-01-04 20:29:22 +01001711 /* If the window is going off the screen, move it on to the screen. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001712 if ((direction & RESIZE_HOR)
Bram Moolenaar6ef47c22012-01-04 20:29:22 +01001713 && wndpl.rcNormalPosition.right > workarea_rect.right)
1714 OffsetRect(&wndpl.rcNormalPosition,
1715 workarea_rect.right - wndpl.rcNormalPosition.right, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716
Bram Moolenaar6ef47c22012-01-04 20:29:22 +01001717 if ((direction & RESIZE_HOR)
1718 && wndpl.rcNormalPosition.left < workarea_rect.left)
1719 OffsetRect(&wndpl.rcNormalPosition,
1720 workarea_rect.left - wndpl.rcNormalPosition.left, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721
Bram Moolenaarafa24992006-03-27 20:58:26 +00001722 if ((direction & RESIZE_VERT)
Bram Moolenaar6ef47c22012-01-04 20:29:22 +01001723 && wndpl.rcNormalPosition.bottom > workarea_rect.bottom)
1724 OffsetRect(&wndpl.rcNormalPosition,
1725 0, workarea_rect.bottom - wndpl.rcNormalPosition.bottom);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726
Bram Moolenaar6ef47c22012-01-04 20:29:22 +01001727 if ((direction & RESIZE_VERT)
1728 && wndpl.rcNormalPosition.top < workarea_rect.top)
1729 OffsetRect(&wndpl.rcNormalPosition,
1730 0, workarea_rect.top - wndpl.rcNormalPosition.top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731
1732 /* set window position - we should use SetWindowPlacement rather than
1733 * SetWindowPos as the MSDN docs say the coord systems returned by
1734 * these two are not compatible. */
1735 SetWindowPlacement(s_hwnd, &wndpl);
1736
1737 SetActiveWindow(s_hwnd);
1738 SetFocus(s_hwnd);
1739
1740#ifdef FEAT_MENU
1741 /* Menu may wrap differently now */
1742 gui_mswin_get_menu_height(!gui.starting);
1743#endif
1744}
1745
1746
1747 void
1748gui_mch_set_scrollbar_thumb(
1749 scrollbar_T *sb,
1750 long val,
1751 long size,
1752 long max)
1753{
1754 SCROLLINFO info;
1755
1756 sb->scroll_shift = 0;
1757 while (max > 32767)
1758 {
1759 max = (max + 1) >> 1;
1760 val >>= 1;
1761 size >>= 1;
1762 ++sb->scroll_shift;
1763 }
1764
1765 if (sb->scroll_shift > 0)
1766 ++size;
1767
1768 info.cbSize = sizeof(info);
1769 info.fMask = SIF_POS | SIF_RANGE | SIF_PAGE;
1770 info.nPos = val;
1771 info.nMin = 0;
1772 info.nMax = max;
1773 info.nPage = size;
1774 SetScrollInfo(sb->id, SB_CTL, &info, TRUE);
1775}
1776
1777
1778/*
1779 * Set the current text font.
1780 */
1781 void
1782gui_mch_set_font(GuiFont font)
1783{
1784 gui.currFont = font;
1785}
1786
1787
1788/*
1789 * Set the current text foreground color.
1790 */
1791 void
1792gui_mch_set_fg_color(guicolor_T color)
1793{
1794 gui.currFgColor = color;
1795}
1796
1797/*
1798 * Set the current text background color.
1799 */
1800 void
1801gui_mch_set_bg_color(guicolor_T color)
1802{
1803 gui.currBgColor = color;
1804}
1805
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001806/*
1807 * Set the current text special color.
1808 */
1809 void
1810gui_mch_set_sp_color(guicolor_T color)
1811{
1812 gui.currSpColor = color;
1813}
1814
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815#if defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)
1816/*
1817 * Multi-byte handling, originally by Sung-Hoon Baek.
1818 * First static functions (no prototypes generated).
1819 */
1820#ifdef _MSC_VER
1821# include <ime.h> /* Apparently not needed for Cygwin, MingW or Borland. */
1822#endif
1823#include <imm.h>
1824
1825/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 * handle WM_IME_NOTIFY message
1827 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001828/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 static LRESULT
1830_OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData)
1831{
1832 LRESULT lResult = 0;
1833 HIMC hImc;
1834
1835 if (!pImmGetContext || (hImc = pImmGetContext(hWnd)) == (HIMC)0)
1836 return lResult;
1837 switch (dwCommand)
1838 {
1839 case IMN_SETOPENSTATUS:
1840 if (pImmGetOpenStatus(hImc))
1841 {
1842 pImmSetCompositionFont(hImc, &norm_logfont);
1843 im_set_position(gui.row, gui.col);
1844
1845 /* Disable langmap */
1846 State &= ~LANGMAP;
1847 if (State & INSERT)
1848 {
1849#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1850 /* Unshown 'keymap' in status lines */
1851 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
1852 {
1853 /* Save cursor position */
1854 int old_row = gui.row;
1855 int old_col = gui.col;
1856
1857 // This must be called here before
1858 // status_redraw_curbuf(), otherwise the mode
1859 // message may appear in the wrong position.
1860 showmode();
1861 status_redraw_curbuf();
1862 update_screen(0);
1863 /* Restore cursor position */
1864 gui.row = old_row;
1865 gui.col = old_col;
1866 }
1867#endif
1868 }
1869 }
1870 gui_update_cursor(TRUE, FALSE);
1871 lResult = 0;
1872 break;
1873 }
1874 pImmReleaseContext(hWnd, hImc);
1875 return lResult;
1876}
1877
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001878/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 static LRESULT
1880_OnImeComposition(HWND hwnd, WPARAM dbcs, LPARAM param)
1881{
1882 char_u *ret;
1883 int len;
1884
1885 if ((param & GCS_RESULTSTR) == 0) /* Composition unfinished. */
1886 return 0;
1887
1888 ret = GetResultStr(hwnd, GCS_RESULTSTR, &len);
1889 if (ret != NULL)
1890 {
1891 add_to_input_buf_csi(ret, len);
1892 vim_free(ret);
1893 return 1;
1894 }
1895 return 0;
1896}
1897
1898/*
1899 * get the current composition string, in UCS-2; *lenp is the number of
1900 * *lenp is the number of Unicode characters.
1901 */
1902 static short_u *
1903GetCompositionString_inUCS2(HIMC hIMC, DWORD GCS, int *lenp)
1904{
1905 LONG ret;
1906 LPWSTR wbuf = NULL;
1907 char_u *buf;
1908
1909 if (!pImmGetContext)
1910 return NULL; /* no imm32.dll */
1911
1912 /* Try Unicode; this'll always work on NT regardless of codepage. */
1913 ret = pImmGetCompositionStringW(hIMC, GCS, NULL, 0);
1914 if (ret == 0)
1915 return NULL; /* empty */
1916
1917 if (ret > 0)
1918 {
1919 /* Allocate the requested buffer plus space for the NUL character. */
1920 wbuf = (LPWSTR)alloc(ret + sizeof(WCHAR));
1921 if (wbuf != NULL)
1922 {
1923 pImmGetCompositionStringW(hIMC, GCS, wbuf, ret);
1924 *lenp = ret / sizeof(WCHAR);
1925 }
1926 return (short_u *)wbuf;
1927 }
1928
1929 /* ret < 0; we got an error, so try the ANSI version. This'll work
1930 * on 9x/ME, but only if the codepage happens to be set to whatever
1931 * we're inputting. */
1932 ret = pImmGetCompositionStringA(hIMC, GCS, NULL, 0);
1933 if (ret <= 0)
1934 return NULL; /* empty or error */
1935
1936 buf = alloc(ret);
1937 if (buf == NULL)
1938 return NULL;
1939 pImmGetCompositionStringA(hIMC, GCS, buf, ret);
1940
1941 /* convert from codepage to UCS-2 */
1942 MultiByteToWideChar_alloc(GetACP(), 0, buf, ret, &wbuf, lenp);
1943 vim_free(buf);
1944
1945 return (short_u *)wbuf;
1946}
1947
1948/*
1949 * void GetResultStr()
1950 *
1951 * This handles WM_IME_COMPOSITION with GCS_RESULTSTR flag on.
1952 * get complete composition string
1953 */
1954 static char_u *
1955GetResultStr(HWND hwnd, int GCS, int *lenp)
1956{
1957 HIMC hIMC; /* Input context handle. */
1958 short_u *buf = NULL;
1959 char_u *convbuf = NULL;
1960
1961 if (!pImmGetContext || (hIMC = pImmGetContext(hwnd)) == (HIMC)0)
1962 return NULL;
1963
1964 /* Reads in the composition string. */
1965 buf = GetCompositionString_inUCS2(hIMC, GCS, lenp);
1966 if (buf == NULL)
1967 return NULL;
1968
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001969 convbuf = utf16_to_enc(buf, lenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 pImmReleaseContext(hwnd, hIMC);
1971 vim_free(buf);
1972 return convbuf;
1973}
1974#endif
1975
1976/* For global functions we need prototypes. */
1977#if (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) || defined(PROTO)
1978
1979/*
1980 * set font to IM.
1981 */
1982 void
1983im_set_font(LOGFONT *lf)
1984{
1985 HIMC hImc;
1986
1987 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
1988 {
1989 pImmSetCompositionFont(hImc, lf);
1990 pImmReleaseContext(s_hwnd, hImc);
1991 }
1992}
1993
1994/*
1995 * Notify cursor position to IM.
1996 */
1997 void
1998im_set_position(int row, int col)
1999{
2000 HIMC hImc;
2001
2002 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
2003 {
2004 COMPOSITIONFORM cfs;
2005
2006 cfs.dwStyle = CFS_POINT;
2007 cfs.ptCurrentPos.x = FILL_X(col);
2008 cfs.ptCurrentPos.y = FILL_Y(row);
2009 MapWindowPoints(s_textArea, s_hwnd, &cfs.ptCurrentPos, 1);
2010 pImmSetCompositionWindow(hImc, &cfs);
2011
2012 pImmReleaseContext(s_hwnd, hImc);
2013 }
2014}
2015
2016/*
2017 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
2018 */
2019 void
2020im_set_active(int active)
2021{
2022 HIMC hImc;
2023 static HIMC hImcOld = (HIMC)0;
2024
2025 if (pImmGetContext) /* if NULL imm32.dll wasn't loaded (yet) */
2026 {
2027 if (p_imdisable)
2028 {
2029 if (hImcOld == (HIMC)0)
2030 {
2031 hImcOld = pImmGetContext(s_hwnd);
2032 if (hImcOld)
2033 pImmAssociateContext(s_hwnd, (HIMC)0);
2034 }
2035 active = FALSE;
2036 }
2037 else if (hImcOld != (HIMC)0)
2038 {
2039 pImmAssociateContext(s_hwnd, hImcOld);
2040 hImcOld = (HIMC)0;
2041 }
2042
2043 hImc = pImmGetContext(s_hwnd);
2044 if (hImc)
2045 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00002046 /*
2047 * for Korean ime
2048 */
2049 HKL hKL = GetKeyboardLayout(0);
2050
2051 if (LOWORD(hKL) == MAKELANGID(LANG_KOREAN, SUBLANG_KOREAN))
2052 {
2053 static DWORD dwConversionSaved = 0, dwSentenceSaved = 0;
2054 static BOOL bSaved = FALSE;
2055
2056 if (active)
2057 {
2058 /* if we have a saved conversion status, restore it */
2059 if (bSaved)
2060 pImmSetConversionStatus(hImc, dwConversionSaved,
2061 dwSentenceSaved);
2062 bSaved = FALSE;
2063 }
2064 else
2065 {
2066 /* save conversion status and disable korean */
2067 if (pImmGetConversionStatus(hImc, &dwConversionSaved,
2068 &dwSentenceSaved))
2069 {
2070 bSaved = TRUE;
2071 pImmSetConversionStatus(hImc,
2072 dwConversionSaved & ~(IME_CMODE_NATIVE
2073 | IME_CMODE_FULLSHAPE),
2074 dwSentenceSaved);
2075 }
2076 }
2077 }
2078
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 pImmSetOpenStatus(hImc, active);
2080 pImmReleaseContext(s_hwnd, hImc);
2081 }
2082 }
2083}
2084
2085/*
2086 * Get IM status. When IM is on, return not 0. Else return 0.
2087 */
2088 int
2089im_get_status()
2090{
2091 int status = 0;
2092 HIMC hImc;
2093
2094 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
2095 {
2096 status = pImmGetOpenStatus(hImc) ? 1 : 0;
2097 pImmReleaseContext(s_hwnd, hImc);
2098 }
2099 return status;
2100}
2101
2102#endif /* FEAT_MBYTE && FEAT_MBYTE_IME */
2103
2104#if defined(FEAT_MBYTE) && !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME)
2105/* Win32 with GLOBAL IME */
2106
2107/*
2108 * Notify cursor position to IM.
2109 */
2110 void
2111im_set_position(int row, int col)
2112{
2113 /* Win32 with GLOBAL IME */
2114 POINT p;
2115
2116 p.x = FILL_X(col);
2117 p.y = FILL_Y(row);
2118 MapWindowPoints(s_textArea, s_hwnd, &p, 1);
2119 global_ime_set_position(&p);
2120}
2121
2122/*
2123 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
2124 */
2125 void
2126im_set_active(int active)
2127{
2128 global_ime_set_status(active);
2129}
2130
2131/*
2132 * Get IM status. When IM is on, return not 0. Else return 0.
2133 */
2134 int
2135im_get_status()
2136{
2137 return global_ime_get_status();
2138}
2139#endif
2140
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002141#ifdef FEAT_MBYTE
2142/*
Bram Moolenaar39f05632006-03-19 22:15:26 +00002143 * Convert latin9 text "text[len]" to ucs-2 in "unicodebuf".
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002144 */
2145 static void
2146latin9_to_ucs(char_u *text, int len, WCHAR *unicodebuf)
2147{
2148 int c;
2149
Bram Moolenaarca003e12006-03-17 23:19:38 +00002150 while (--len >= 0)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002151 {
2152 c = *text++;
2153 switch (c)
2154 {
2155 case 0xa4: c = 0x20ac; break; /* euro */
2156 case 0xa6: c = 0x0160; break; /* S hat */
2157 case 0xa8: c = 0x0161; break; /* S -hat */
2158 case 0xb4: c = 0x017d; break; /* Z hat */
2159 case 0xb8: c = 0x017e; break; /* Z -hat */
2160 case 0xbc: c = 0x0152; break; /* OE */
2161 case 0xbd: c = 0x0153; break; /* oe */
2162 case 0xbe: c = 0x0178; break; /* Y */
2163 }
2164 *unicodebuf++ = c;
2165 }
2166}
2167#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168
2169#ifdef FEAT_RIGHTLEFT
2170/*
2171 * What is this for? In the case where you are using Win98 or Win2K or later,
2172 * and you are using a Hebrew font (or Arabic!), Windows does you a favor and
2173 * reverses the string sent to the TextOut... family. This sucks, because we
2174 * go to a lot of effort to do the right thing, and there doesn't seem to be a
2175 * way to tell Windblows not to do this!
2176 *
2177 * The short of it is that this 'RevOut' only gets called if you are running
2178 * one of the new, "improved" MS OSes, and only if you are running in
2179 * 'rightleft' mode. It makes display take *slightly* longer, but not
2180 * noticeably so.
2181 */
2182 static void
2183RevOut( HDC s_hdc,
2184 int col,
2185 int row,
2186 UINT foptions,
2187 CONST RECT *pcliprect,
2188 LPCTSTR text,
2189 UINT len,
2190 CONST INT *padding)
2191{
2192 int ix;
2193 static int special = -1;
2194
2195 if (special == -1)
2196 {
2197 /* Check windows version: special treatment is needed if it is NT 5 or
2198 * Win98 or higher. */
2199 if ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2200 && os_version.dwMajorVersion >= 5)
2201 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
2202 && (os_version.dwMajorVersion > 4
2203 || (os_version.dwMajorVersion == 4
2204 && os_version.dwMinorVersion > 0))))
2205 special = 1;
2206 else
2207 special = 0;
2208 }
2209
2210 if (special)
2211 for (ix = 0; ix < (int)len; ++ix)
2212 ExtTextOut(s_hdc, col + TEXT_X(ix), row, foptions,
2213 pcliprect, text + ix, 1, padding);
2214 else
2215 ExtTextOut(s_hdc, col, row, foptions, pcliprect, text, len, padding);
2216}
2217#endif
2218
2219 void
2220gui_mch_draw_string(
2221 int row,
2222 int col,
2223 char_u *text,
2224 int len,
2225 int flags)
2226{
2227 static int *padding = NULL;
2228 static int pad_size = 0;
2229 int i;
2230 const RECT *pcliprect = NULL;
2231 UINT foptions = 0;
2232#ifdef FEAT_MBYTE
2233 static WCHAR *unicodebuf = NULL;
2234 static int *unicodepdy = NULL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002235 static int unibuflen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 int n = 0;
2237#endif
2238 HPEN hpen, old_pen;
2239 int y;
2240
2241#ifndef MSWIN16_FASTTEXT
2242 /*
2243 * Italic and bold text seems to have an extra row of pixels at the bottom
2244 * (below where the bottom of the character should be). If we draw the
2245 * characters with a solid background, the top row of pixels in the
2246 * character below will be overwritten. We can fix this by filling in the
2247 * background ourselves, to the correct character proportions, and then
2248 * writing the character in transparent mode. Still have a problem when
2249 * the character is "_", which gets written on to the character below.
2250 * New fix: set gui.char_ascent to -1. This shifts all characters up one
2251 * pixel in their slots, which fixes the problem with the bottom row of
2252 * pixels. We still need this code because otherwise the top row of pixels
2253 * becomes a problem. - webb.
2254 */
2255 static HBRUSH hbr_cache[2] = {NULL, NULL};
2256 static guicolor_T brush_color[2] = {INVALCOLOR, INVALCOLOR};
2257 static int brush_lru = 0;
2258 HBRUSH hbr;
2259 RECT rc;
2260
2261 if (!(flags & DRAW_TRANSP))
2262 {
2263 /*
2264 * Clear background first.
2265 * Note: FillRect() excludes right and bottom of rectangle.
2266 */
2267 rc.left = FILL_X(col);
2268 rc.top = FILL_Y(row);
2269#ifdef FEAT_MBYTE
2270 if (has_mbyte)
2271 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 /* Compute the length in display cells. */
Bram Moolenaar72597a52010-07-18 15:31:08 +02002273 rc.right = FILL_X(col + mb_string2cells(text, len));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 }
2275 else
2276#endif
2277 rc.right = FILL_X(col + len);
2278 rc.bottom = FILL_Y(row + 1);
2279
2280 /* Cache the created brush, that saves a lot of time. We need two:
2281 * one for cursor background and one for the normal background. */
2282 if (gui.currBgColor == brush_color[0])
2283 {
2284 hbr = hbr_cache[0];
2285 brush_lru = 1;
2286 }
2287 else if (gui.currBgColor == brush_color[1])
2288 {
2289 hbr = hbr_cache[1];
2290 brush_lru = 0;
2291 }
2292 else
2293 {
2294 if (hbr_cache[brush_lru] != NULL)
2295 DeleteBrush(hbr_cache[brush_lru]);
2296 hbr_cache[brush_lru] = CreateSolidBrush(gui.currBgColor);
2297 brush_color[brush_lru] = gui.currBgColor;
2298 hbr = hbr_cache[brush_lru];
2299 brush_lru = !brush_lru;
2300 }
2301 FillRect(s_hdc, &rc, hbr);
2302
2303 SetBkMode(s_hdc, TRANSPARENT);
2304
2305 /*
2306 * When drawing block cursor, prevent inverted character spilling
2307 * over character cell (can happen with bold/italic)
2308 */
2309 if (flags & DRAW_CURSOR)
2310 {
2311 pcliprect = &rc;
2312 foptions = ETO_CLIPPED;
2313 }
2314 }
2315#else
2316 /*
2317 * The alternative would be to write the characters in opaque mode, but
2318 * when the text is not exactly the same proportions as normal text, too
2319 * big or too little a rectangle gets drawn for the background.
2320 */
2321 SetBkMode(s_hdc, OPAQUE);
2322 SetBkColor(s_hdc, gui.currBgColor);
2323#endif
2324 SetTextColor(s_hdc, gui.currFgColor);
2325 SelectFont(s_hdc, gui.currFont);
2326
2327 if (pad_size != Columns || padding == NULL || padding[0] != gui.char_width)
2328 {
2329 vim_free(padding);
2330 pad_size = Columns;
2331
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002332 /* Don't give an out-of-memory message here, it would call us
2333 * recursively. */
2334 padding = (int *)lalloc(pad_size * sizeof(int), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 if (padding != NULL)
2336 for (i = 0; i < pad_size; i++)
2337 padding[i] = gui.char_width;
2338 }
2339
2340 /* On NT, tell the font renderer not to "help" us with Hebrew and Arabic
2341 * text. This doesn't work in 9x, so we have to deal with it manually on
2342 * those systems. */
2343 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT)
2344 foptions |= ETO_IGNORELANGUAGE;
2345
2346 /*
2347 * We have to provide the padding argument because italic and bold versions
2348 * of fixed-width fonts are often one pixel or so wider than their normal
2349 * versions.
2350 * No check for DRAW_BOLD, Windows will have done it already.
2351 */
2352
2353#ifdef FEAT_MBYTE
2354 /* Check if there are any UTF-8 characters. If not, use normal text
2355 * output to speed up output. */
2356 if (enc_utf8)
2357 for (n = 0; n < len; ++n)
2358 if (text[n] >= 0x80)
2359 break;
2360
2361 /* Check if the Unicode buffer exists and is big enough. Create it
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002362 * with the same length as the multi-byte string, the number of wide
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 * characters is always equal or smaller. */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002364 if ((enc_utf8
2365 || (enc_codepage > 0 && (int)GetACP() != enc_codepage)
2366 || enc_latin9)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 && (unicodebuf == NULL || len > unibuflen))
2368 {
2369 vim_free(unicodebuf);
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002370 unicodebuf = (WCHAR *)lalloc(len * sizeof(WCHAR), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371
2372 vim_free(unicodepdy);
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002373 unicodepdy = (int *)lalloc(len * sizeof(int), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374
2375 unibuflen = len;
2376 }
2377
2378 if (enc_utf8 && n < len && unicodebuf != NULL)
2379 {
2380 /* Output UTF-8 characters. Caller has already separated
2381 * composing characters. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002382 int i;
2383 int wlen; /* string length in words */
2384 int clen; /* string length in characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 int cells; /* cell width of string up to composing char */
2386 int cw; /* width of current cell */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002387 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002389 wlen = 0;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002390 clen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 cells = 0;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002392 for (i = 0; i < len; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002394 c = utf_ptr2char(text + i);
2395 if (c >= 0x10000)
2396 {
2397 /* Turn into UTF-16 encoding. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002398 unicodebuf[wlen++] = ((c - 0x10000) >> 10) + 0xD800;
2399 unicodebuf[wlen++] = ((c - 0x10000) & 0x3ff) + 0xDC00;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002400 }
2401 else
2402 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00002403 unicodebuf[wlen++] = c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002404 }
2405 cw = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 if (cw > 2) /* don't use 4 for unprintable char */
2407 cw = 1;
2408 if (unicodepdy != NULL)
2409 {
2410 /* Use unicodepdy to make characters fit as we expect, even
2411 * when the font uses different widths (e.g., bold character
2412 * is wider). */
2413 unicodepdy[clen] = cw * gui.char_width;
2414 }
2415 cells += cw;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002416 i += utfc_ptr2len_len(text + i, len - i);
Bram Moolenaarca003e12006-03-17 23:19:38 +00002417 ++clen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 }
2419 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
Bram Moolenaarca003e12006-03-17 23:19:38 +00002420 foptions, pcliprect, unicodebuf, wlen, unicodepdy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 len = cells; /* used for underlining */
2422 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002423 else if ((enc_codepage > 0 && (int)GetACP() != enc_codepage) || enc_latin9)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 {
2425 /* If we want to display codepage data, and the current CP is not the
2426 * ANSI one, we need to go via Unicode. */
2427 if (unicodebuf != NULL)
2428 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002429 if (enc_latin9)
2430 latin9_to_ucs(text, len, unicodebuf);
2431 else
2432 len = MultiByteToWideChar(enc_codepage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 MB_PRECOMPOSED,
2434 (char *)text, len,
2435 (LPWSTR)unicodebuf, unibuflen);
2436 if (len != 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002437 {
2438 /* Use unicodepdy to make characters fit as we expect, even
2439 * when the font uses different widths (e.g., bold character
2440 * is wider). */
2441 if (unicodepdy != NULL)
2442 {
2443 int i;
2444 int cw;
2445
2446 for (i = 0; i < len; ++i)
2447 {
2448 cw = utf_char2cells(unicodebuf[i]);
2449 if (cw > 2)
2450 cw = 1;
2451 unicodepdy[i] = cw * gui.char_width;
2452 }
2453 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002455 foptions, pcliprect, unicodebuf, len, unicodepdy);
2456 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 }
2458 }
2459 else
2460#endif
2461 {
2462#ifdef FEAT_RIGHTLEFT
2463 /* If we can't use ETO_IGNORELANGUAGE, we can't tell Windows not to
2464 * mess up RL text, so we have to draw it character-by-character.
2465 * Only do this if RL is on, since it's slow. */
2466 if (curwin->w_p_rl && !(foptions & ETO_IGNORELANGUAGE))
2467 RevOut(s_hdc, TEXT_X(col), TEXT_Y(row),
2468 foptions, pcliprect, (char *)text, len, padding);
2469 else
2470#endif
2471 ExtTextOut(s_hdc, TEXT_X(col), TEXT_Y(row),
2472 foptions, pcliprect, (char *)text, len, padding);
2473 }
2474
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002475 /* Underline */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 if (flags & DRAW_UNDERL)
2477 {
2478 hpen = CreatePen(PS_SOLID, 1, gui.currFgColor);
2479 old_pen = SelectObject(s_hdc, hpen);
2480 /* When p_linespace is 0, overwrite the bottom row of pixels.
2481 * Otherwise put the line just below the character. */
2482 y = FILL_Y(row + 1) - 1;
2483#ifndef MSWIN16_FASTTEXT
2484 if (p_linespace > 1)
2485 y -= p_linespace - 1;
2486#endif
2487 MoveToEx(s_hdc, FILL_X(col), y, NULL);
2488 /* Note: LineTo() excludes the last pixel in the line. */
2489 LineTo(s_hdc, FILL_X(col + len), y);
2490 DeleteObject(SelectObject(s_hdc, old_pen));
2491 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002492
2493 /* Undercurl */
2494 if (flags & DRAW_UNDERC)
2495 {
2496 int x;
2497 int offset;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002498 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002499
2500 y = FILL_Y(row + 1) - 1;
2501 for (x = FILL_X(col); x < FILL_X(col + len); ++x)
2502 {
2503 offset = val[x % 8];
2504 SetPixel(s_hdc, x, y - offset, gui.currSpColor);
2505 }
2506 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507}
2508
2509
2510/*
2511 * Output routines.
2512 */
2513
2514/* Flush any output to the screen */
2515 void
2516gui_mch_flush(void)
2517{
2518# if defined(__BORLANDC__)
2519 /*
2520 * The GdiFlush declaration (in Borland C 5.01 <wingdi.h>) is not a
2521 * prototype declaration.
2522 * The compiler complains if __stdcall is not used in both declarations.
2523 */
2524 BOOL __stdcall GdiFlush(void);
2525# endif
2526
2527 GdiFlush();
2528}
2529
2530 static void
2531clear_rect(RECT *rcp)
2532{
2533 HBRUSH hbr;
2534
2535 hbr = CreateSolidBrush(gui.back_pixel);
2536 FillRect(s_hdc, rcp, hbr);
2537 DeleteBrush(hbr);
2538}
2539
2540
Bram Moolenaarc716c302006-01-21 22:12:51 +00002541 void
2542gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
2543{
2544 RECT workarea_rect;
2545
2546 get_work_area(&workarea_rect);
2547
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002548 *screen_w = workarea_rect.right - workarea_rect.left
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002549 - GetSystemMetrics(SM_CXFRAME) * 2;
Bram Moolenaarc716c302006-01-21 22:12:51 +00002550
2551 /* FIXME: dirty trick: Because the gui_get_base_height() doesn't include
2552 * the menubar for MSwin, we subtract it from the screen height, so that
2553 * the window size can be made to fit on the screen. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002554 *screen_h = workarea_rect.bottom - workarea_rect.top
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002555 - GetSystemMetrics(SM_CYFRAME) * 2
Bram Moolenaarc716c302006-01-21 22:12:51 +00002556 - GetSystemMetrics(SM_CYCAPTION)
2557#ifdef FEAT_MENU
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002558 - gui_mswin_get_menu_height(FALSE)
Bram Moolenaarc716c302006-01-21 22:12:51 +00002559#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002560 ;
Bram Moolenaarc716c302006-01-21 22:12:51 +00002561}
2562
2563
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564#if defined(FEAT_MENU) || defined(PROTO)
2565/*
2566 * Add a sub menu to the menu bar.
2567 */
2568 void
2569gui_mch_add_menu(
2570 vimmenu_T *menu,
2571 int pos)
2572{
2573 vimmenu_T *parent = menu->parent;
2574
2575 menu->submenu_id = CreatePopupMenu();
2576 menu->id = s_menu_id++;
2577
2578 if (menu_is_menubar(menu->name))
2579 {
2580 if (is_winnt_3())
2581 {
2582 InsertMenu((parent == NULL) ? s_menuBar : parent->submenu_id,
2583 (UINT)pos, MF_POPUP | MF_STRING | MF_BYPOSITION,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002584 (long_u)menu->submenu_id, (LPCTSTR) menu->name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 }
2586 else
2587 {
2588#ifdef FEAT_MBYTE
2589 WCHAR *wn = NULL;
2590 int n;
2591
2592 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2593 {
2594 /* 'encoding' differs from active codepage: convert menu name
2595 * and use wide function */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002596 wn = enc_to_utf16(menu->name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 if (wn != NULL)
2598 {
2599 MENUITEMINFOW infow;
2600
2601 infow.cbSize = sizeof(infow);
2602 infow.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID
2603 | MIIM_SUBMENU;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002604 infow.dwItemData = (long_u)menu;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605 infow.wID = menu->id;
2606 infow.fType = MFT_STRING;
2607 infow.dwTypeData = wn;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002608 infow.cch = (UINT)wcslen(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 infow.hSubMenu = menu->submenu_id;
2610 n = InsertMenuItemW((parent == NULL)
2611 ? s_menuBar : parent->submenu_id,
2612 (UINT)pos, TRUE, &infow);
2613 vim_free(wn);
2614 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2615 /* Failed, try using non-wide function. */
2616 wn = NULL;
2617 }
2618 }
2619
2620 if (wn == NULL)
2621#endif
2622 {
2623 MENUITEMINFO info;
2624
2625 info.cbSize = sizeof(info);
2626 info.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID | MIIM_SUBMENU;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002627 info.dwItemData = (long_u)menu;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 info.wID = menu->id;
2629 info.fType = MFT_STRING;
2630 info.dwTypeData = (LPTSTR)menu->name;
2631 info.cch = (UINT)STRLEN(menu->name);
2632 info.hSubMenu = menu->submenu_id;
2633 InsertMenuItem((parent == NULL)
2634 ? s_menuBar : parent->submenu_id,
2635 (UINT)pos, TRUE, &info);
2636 }
2637 }
2638 }
2639
2640 /* Fix window size if menu may have wrapped */
2641 if (parent == NULL)
2642 gui_mswin_get_menu_height(!gui.starting);
2643#ifdef FEAT_TEAROFF
2644 else if (IsWindow(parent->tearoff_handle))
2645 rebuild_tearoff(parent);
2646#endif
2647}
2648
2649 void
2650gui_mch_show_popupmenu(vimmenu_T *menu)
2651{
2652 POINT mp;
2653
2654 (void)GetCursorPos((LPPOINT)&mp);
2655 gui_mch_show_popupmenu_at(menu, (int)mp.x, (int)mp.y);
2656}
2657
2658 void
Bram Moolenaar045e82d2005-07-08 22:25:33 +00002659gui_make_popup(char_u *path_name, int mouse_pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660{
2661 vimmenu_T *menu = gui_find_menu(path_name);
2662
2663 if (menu != NULL)
2664 {
2665 POINT p;
2666
2667 /* Find the position of the current cursor */
2668 GetDCOrgEx(s_hdc, &p);
Bram Moolenaar045e82d2005-07-08 22:25:33 +00002669 if (mouse_pos)
2670 {
2671 int mx, my;
2672
2673 gui_mch_getmouse(&mx, &my);
2674 p.x += mx;
2675 p.y += my;
2676 }
2677 else if (curwin != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 {
2679 p.x += TEXT_X(W_WINCOL(curwin) + curwin->w_wcol + 1);
2680 p.y += TEXT_Y(W_WINROW(curwin) + curwin->w_wrow + 1);
2681 }
2682 msg_scroll = FALSE;
2683 gui_mch_show_popupmenu_at(menu, (int)p.x, (int)p.y);
2684 }
2685}
2686
2687#if defined(FEAT_TEAROFF) || defined(PROTO)
2688/*
2689 * Given a menu descriptor, e.g. "File.New", find it in the menu hierarchy and
2690 * create it as a pseudo-"tearoff menu".
2691 */
2692 void
2693gui_make_tearoff(char_u *path_name)
2694{
2695 vimmenu_T *menu = gui_find_menu(path_name);
2696
2697 /* Found the menu, so tear it off. */
2698 if (menu != NULL)
2699 gui_mch_tearoff(menu->dname, menu, 0xffffL, 0xffffL);
2700}
2701#endif
2702
2703/*
2704 * Add a menu item to a menu
2705 */
2706 void
2707gui_mch_add_menu_item(
2708 vimmenu_T *menu,
2709 int idx)
2710{
2711 vimmenu_T *parent = menu->parent;
2712
2713 menu->id = s_menu_id++;
2714 menu->submenu_id = NULL;
2715
2716#ifdef FEAT_TEAROFF
2717 if (STRNCMP(menu->name, TEAR_STRING, TEAR_LEN) == 0)
2718 {
2719 InsertMenu(parent->submenu_id, (UINT)idx, MF_BITMAP|MF_BYPOSITION,
2720 (UINT)menu->id, (LPCTSTR) s_htearbitmap);
2721 }
2722 else
2723#endif
2724#ifdef FEAT_TOOLBAR
2725 if (menu_is_toolbar(parent->name))
2726 {
2727 TBBUTTON newtb;
2728
2729 vim_memset(&newtb, 0, sizeof(newtb));
2730 if (menu_is_separator(menu->name))
2731 {
2732 newtb.iBitmap = 0;
2733 newtb.fsStyle = TBSTYLE_SEP;
2734 }
2735 else
2736 {
2737 newtb.iBitmap = get_toolbar_bitmap(menu);
2738 newtb.fsStyle = TBSTYLE_BUTTON;
2739 }
2740 newtb.idCommand = menu->id;
2741 newtb.fsState = TBSTATE_ENABLED;
2742 newtb.iString = 0;
2743 SendMessage(s_toolbarhwnd, TB_INSERTBUTTON, (WPARAM)idx,
2744 (LPARAM)&newtb);
2745 menu->submenu_id = (HMENU)-1;
2746 }
2747 else
2748#endif
2749 {
2750#ifdef FEAT_MBYTE
2751 WCHAR *wn = NULL;
2752 int n;
2753
2754 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2755 {
2756 /* 'encoding' differs from active codepage: convert menu item name
2757 * and use wide function */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002758 wn = enc_to_utf16(menu->name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 if (wn != NULL)
2760 {
2761 n = InsertMenuW(parent->submenu_id, (UINT)idx,
2762 (menu_is_separator(menu->name)
2763 ? MF_SEPARATOR : MF_STRING) | MF_BYPOSITION,
2764 (UINT)menu->id, wn);
2765 vim_free(wn);
2766 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2767 /* Failed, try using non-wide function. */
2768 wn = NULL;
2769 }
2770 }
2771 if (wn == NULL)
2772#endif
2773 InsertMenu(parent->submenu_id, (UINT)idx,
2774 (menu_is_separator(menu->name) ? MF_SEPARATOR : MF_STRING)
2775 | MF_BYPOSITION,
2776 (UINT)menu->id, (LPCTSTR)menu->name);
2777#ifdef FEAT_TEAROFF
2778 if (IsWindow(parent->tearoff_handle))
2779 rebuild_tearoff(parent);
2780#endif
2781 }
2782}
2783
2784/*
2785 * Destroy the machine specific menu widget.
2786 */
2787 void
2788gui_mch_destroy_menu(vimmenu_T *menu)
2789{
2790#ifdef FEAT_TOOLBAR
2791 /*
2792 * is this a toolbar button?
2793 */
2794 if (menu->submenu_id == (HMENU)-1)
2795 {
2796 int iButton;
2797
2798 iButton = (int)SendMessage(s_toolbarhwnd, TB_COMMANDTOINDEX,
2799 (WPARAM)menu->id, 0);
2800 SendMessage(s_toolbarhwnd, TB_DELETEBUTTON, (WPARAM)iButton, 0);
2801 }
2802 else
2803#endif
2804 {
2805 if (menu->parent != NULL
2806 && menu_is_popup(menu->parent->dname)
2807 && menu->parent->submenu_id != NULL)
2808 RemoveMenu(menu->parent->submenu_id, menu->id, MF_BYCOMMAND);
2809 else
2810 RemoveMenu(s_menuBar, menu->id, MF_BYCOMMAND);
2811 if (menu->submenu_id != NULL)
2812 DestroyMenu(menu->submenu_id);
2813#ifdef FEAT_TEAROFF
2814 if (IsWindow(menu->tearoff_handle))
2815 DestroyWindow(menu->tearoff_handle);
2816 if (menu->parent != NULL
2817 && menu->parent->children != NULL
2818 && IsWindow(menu->parent->tearoff_handle))
2819 {
2820 /* This menu must not show up when rebuilding the tearoff window. */
2821 menu->modes = 0;
2822 rebuild_tearoff(menu->parent);
2823 }
2824#endif
2825 }
2826}
2827
2828#ifdef FEAT_TEAROFF
2829 static void
2830rebuild_tearoff(vimmenu_T *menu)
2831{
2832 /*hackish*/
2833 char_u tbuf[128];
2834 RECT trect;
2835 RECT rct;
2836 RECT roct;
2837 int x, y;
2838
2839 HWND thwnd = menu->tearoff_handle;
2840
2841 GetWindowText(thwnd, tbuf, 127);
2842 if (GetWindowRect(thwnd, &trect)
2843 && GetWindowRect(s_hwnd, &rct)
2844 && GetClientRect(s_hwnd, &roct))
2845 {
2846 x = trect.left - rct.left;
2847 y = (trect.top - rct.bottom + roct.bottom);
2848 }
2849 else
2850 {
2851 x = y = 0xffffL;
2852 }
2853 DestroyWindow(thwnd);
2854 if (menu->children != NULL)
2855 {
2856 gui_mch_tearoff(tbuf, menu, x, y);
2857 if (IsWindow(menu->tearoff_handle))
2858 (void) SetWindowPos(menu->tearoff_handle,
2859 NULL,
2860 (int)trect.left,
2861 (int)trect.top,
2862 0, 0,
2863 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
2864 }
2865}
2866#endif /* FEAT_TEAROFF */
2867
2868/*
2869 * Make a menu either grey or not grey.
2870 */
2871 void
2872gui_mch_menu_grey(
2873 vimmenu_T *menu,
2874 int grey)
2875{
2876#ifdef FEAT_TOOLBAR
2877 /*
2878 * is this a toolbar button?
2879 */
2880 if (menu->submenu_id == (HMENU)-1)
2881 {
2882 SendMessage(s_toolbarhwnd, TB_ENABLEBUTTON,
2883 (WPARAM)menu->id, (LPARAM) MAKELONG((grey ? FALSE : TRUE), 0) );
2884 }
2885 else
2886#endif
2887 if (grey)
2888 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_GRAYED);
2889 else
2890 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_ENABLED);
2891
2892#ifdef FEAT_TEAROFF
2893 if ((menu->parent != NULL) && (IsWindow(menu->parent->tearoff_handle)))
2894 {
2895 WORD menuID;
2896 HWND menuHandle;
2897
2898 /*
2899 * A tearoff button has changed state.
2900 */
2901 if (menu->children == NULL)
2902 menuID = (WORD)(menu->id);
2903 else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002904 menuID = (WORD)((long_u)(menu->submenu_id) | (DWORD)0x8000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905 menuHandle = GetDlgItem(menu->parent->tearoff_handle, menuID);
2906 if (menuHandle)
2907 EnableWindow(menuHandle, !grey);
2908
2909 }
2910#endif
2911}
2912
2913#endif /* FEAT_MENU */
2914
2915
2916/* define some macros used to make the dialogue creation more readable */
2917
2918#define add_string(s) strcpy((LPSTR)p, s); (LPSTR)p += (strlen((LPSTR)p) + 1)
2919#define add_word(x) *p++ = (x)
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002920#define add_long(x) dwp = (DWORD *)p; *dwp++ = (x); p = (WORD *)dwp
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921
2922#if defined(FEAT_GUI_DIALOG) || defined(PROTO)
2923/*
2924 * stuff for dialogs
2925 */
2926
2927/*
2928 * The callback routine used by all the dialogs. Very simple. First,
2929 * acknowledges the INITDIALOG message so that Windows knows to do standard
2930 * dialog stuff (Return = default, Esc = cancel....) Second, if a button is
2931 * pressed, return that button's ID - IDCANCEL (2), which is the button's
2932 * number.
2933 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002934/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935 static LRESULT CALLBACK
2936dialog_callback(
2937 HWND hwnd,
2938 UINT message,
2939 WPARAM wParam,
2940 LPARAM lParam)
2941{
2942 if (message == WM_INITDIALOG)
2943 {
2944 CenterWindow(hwnd, GetWindow(hwnd, GW_OWNER));
2945 /* Set focus to the dialog. Set the default button, if specified. */
2946 (void)SetFocus(hwnd);
2947 if (dialog_default_button > IDCANCEL)
2948 (void)SetFocus(GetDlgItem(hwnd, dialog_default_button));
Bram Moolenaar2b80e652007-08-14 14:57:55 +00002949 else
2950 /* We don't have a default, set focus on another element of the
2951 * dialog window, probably the icon */
2952 (void)SetFocus(GetDlgItem(hwnd, DLG_NONBUTTON_CONTROL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 return FALSE;
2954 }
2955
2956 if (message == WM_COMMAND)
2957 {
2958 int button = LOWORD(wParam);
2959
2960 /* Don't end the dialog if something was selected that was
2961 * not a button.
2962 */
2963 if (button >= DLG_NONBUTTON_CONTROL)
2964 return TRUE;
2965
2966 /* If the edit box exists, copy the string. */
2967 if (s_textfield != NULL)
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002968 {
2969# if defined(FEAT_MBYTE) && defined(WIN3264)
2970 /* If the OS is Windows NT, and 'encoding' differs from active
2971 * codepage: use wide function and convert text. */
2972 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2973 && enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002974 {
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002975 WCHAR *wp = (WCHAR *)alloc(IOSIZE * sizeof(WCHAR));
2976 char_u *p;
2977
2978 GetDlgItemTextW(hwnd, DLG_NONBUTTON_CONTROL + 2, wp, IOSIZE);
2979 p = utf16_to_enc(wp, NULL);
2980 vim_strncpy(s_textfield, p, IOSIZE);
2981 vim_free(p);
2982 vim_free(wp);
2983 }
2984 else
2985# endif
2986 GetDlgItemText(hwnd, DLG_NONBUTTON_CONTROL + 2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987 s_textfield, IOSIZE);
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002988 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989
2990 /*
2991 * Need to check for IDOK because if the user just hits Return to
2992 * accept the default value, some reason this is what we get.
2993 */
2994 if (button == IDOK)
2995 {
2996 if (dialog_default_button > IDCANCEL)
2997 EndDialog(hwnd, dialog_default_button);
2998 }
2999 else
3000 EndDialog(hwnd, button - IDCANCEL);
3001 return TRUE;
3002 }
3003
3004 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
3005 {
3006 EndDialog(hwnd, 0);
3007 return TRUE;
3008 }
3009 return FALSE;
3010}
3011
3012/*
3013 * Create a dialog dynamically from the parameter strings.
3014 * type = type of dialog (question, alert, etc.)
3015 * title = dialog title. may be NULL for default title.
3016 * message = text to display. Dialog sizes to accommodate it.
3017 * buttons = '\n' separated list of button captions, default first.
3018 * dfltbutton = number of default button.
3019 *
3020 * This routine returns 1 if the first button is pressed,
3021 * 2 for the second, etc.
3022 *
3023 * 0 indicates Esc was pressed.
3024 * -1 for unexpected error
3025 *
3026 * If stubbing out this fn, return 1.
3027 */
3028
3029static const char_u *dlg_icons[] = /* must match names in resource file */
3030{
3031 "IDR_VIM",
3032 "IDR_VIM_ERROR",
3033 "IDR_VIM_ALERT",
3034 "IDR_VIM_INFO",
3035 "IDR_VIM_QUESTION"
3036};
3037
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 int
3039gui_mch_dialog(
3040 int type,
3041 char_u *title,
3042 char_u *message,
3043 char_u *buttons,
3044 int dfltbutton,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003045 char_u *textfield,
3046 int ex_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047{
3048 WORD *p, *pdlgtemplate, *pnumitems;
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00003049 DWORD *dwp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 int numButtons;
3051 int *buttonWidths, *buttonPositions;
3052 int buttonYpos;
3053 int nchar, i;
3054 DWORD lStyle;
3055 int dlgwidth = 0;
3056 int dlgheight;
3057 int editboxheight;
3058 int horizWidth = 0;
3059 int msgheight;
3060 char_u *pstart;
3061 char_u *pend;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003062 char_u *last_white;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 char_u *tbuffer;
3064 RECT rect;
3065 HWND hwnd;
3066 HDC hdc;
3067 HFONT font, oldFont;
3068 TEXTMETRIC fontInfo;
3069 int fontHeight;
3070 int textWidth, minButtonWidth, messageWidth;
3071 int maxDialogWidth;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003072 int maxDialogHeight;
3073 int scroll_flag = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074 int vertical;
3075 int dlgPaddingX;
3076 int dlgPaddingY;
3077#ifdef USE_SYSMENU_FONT
3078 LOGFONT lfSysmenu;
3079 int use_lfSysmenu = FALSE;
3080#endif
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003081 garray_T ga;
3082 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083
3084#ifndef NO_CONSOLE
3085 /* Don't output anything in silent mode ("ex -s") */
3086 if (silent_mode)
3087 return dfltbutton; /* return default option */
3088#endif
3089
Bram Moolenaar748bf032005-02-02 23:04:36 +00003090 if (s_hwnd == NULL)
3091 get_dialog_font_metrics();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092
3093 if ((type < 0) || (type > VIM_LAST_TYPE))
3094 type = 0;
3095
3096 /* allocate some memory for dialog template */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003097 /* TODO should compute this really */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003098 pdlgtemplate = p = (PWORD)LocalAlloc(LPTR,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003099 DLG_ALLOC_SIZE + STRLEN(message) * 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100
3101 if (p == NULL)
3102 return -1;
3103
3104 /*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003105 * make a copy of 'buttons' to fiddle with it. compiler grizzles because
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 * vim_strsave() doesn't take a const arg (why not?), so cast away the
3107 * const.
3108 */
3109 tbuffer = vim_strsave(buttons);
3110 if (tbuffer == NULL)
3111 return -1;
3112
3113 --dfltbutton; /* Change from one-based to zero-based */
3114
3115 /* Count buttons */
3116 numButtons = 1;
3117 for (i = 0; tbuffer[i] != '\0'; i++)
3118 {
3119 if (tbuffer[i] == DLG_BUTTON_SEP)
3120 numButtons++;
3121 }
3122 if (dfltbutton >= numButtons)
3123 dfltbutton = -1;
3124
3125 /* Allocate array to hold the width of each button */
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00003126 buttonWidths = (int *)lalloc(numButtons * sizeof(int), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 if (buttonWidths == NULL)
3128 return -1;
3129
3130 /* Allocate array to hold the X position of each button */
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00003131 buttonPositions = (int *)lalloc(numButtons * sizeof(int), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 if (buttonPositions == NULL)
3133 return -1;
3134
3135 /*
3136 * Calculate how big the dialog must be.
3137 */
3138 hwnd = GetDesktopWindow();
3139 hdc = GetWindowDC(hwnd);
3140#ifdef USE_SYSMENU_FONT
3141 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3142 {
3143 font = CreateFontIndirect(&lfSysmenu);
3144 use_lfSysmenu = TRUE;
3145 }
3146 else
3147#endif
3148 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3149 VARIABLE_PITCH , DLG_FONT_NAME);
3150 if (s_usenewlook)
3151 {
3152 oldFont = SelectFont(hdc, font);
3153 dlgPaddingX = DLG_PADDING_X;
3154 dlgPaddingY = DLG_PADDING_Y;
3155 }
3156 else
3157 {
3158 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
3159 dlgPaddingX = DLG_OLD_STYLE_PADDING_X;
3160 dlgPaddingY = DLG_OLD_STYLE_PADDING_Y;
3161 }
3162 GetTextMetrics(hdc, &fontInfo);
3163 fontHeight = fontInfo.tmHeight;
3164
3165 /* Minimum width for horizontal button */
3166 minButtonWidth = GetTextWidth(hdc, "Cancel", 6);
3167
3168 /* Maximum width of a dialog, if possible */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003169 if (s_hwnd == NULL)
3170 {
3171 RECT workarea_rect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172
Bram Moolenaarc716c302006-01-21 22:12:51 +00003173 /* We don't have a window, use the desktop area. */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003174 get_work_area(&workarea_rect);
3175 maxDialogWidth = workarea_rect.right - workarea_rect.left - 100;
3176 if (maxDialogWidth > 600)
3177 maxDialogWidth = 600;
3178 maxDialogHeight = workarea_rect.bottom - workarea_rect.top - 100;
3179 }
3180 else
3181 {
3182 /* Use our own window for the size, unless it's very small. */
3183 GetWindowRect(s_hwnd, &rect);
3184 maxDialogWidth = rect.right - rect.left
3185 - GetSystemMetrics(SM_CXFRAME) * 2;
3186 if (maxDialogWidth < DLG_MIN_MAX_WIDTH)
3187 maxDialogWidth = DLG_MIN_MAX_WIDTH;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003188
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003189 maxDialogHeight = rect.bottom - rect.top
3190 - GetSystemMetrics(SM_CXFRAME) * 2;
3191 if (maxDialogHeight < DLG_MIN_MAX_HEIGHT)
3192 maxDialogHeight = DLG_MIN_MAX_HEIGHT;
3193 }
3194
3195 /* Set dlgwidth to width of message.
3196 * Copy the message into "ga", changing NL to CR-NL and inserting line
3197 * breaks where needed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 pstart = message;
3199 messageWidth = 0;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003200 msgheight = 0;
3201 ga_init2(&ga, sizeof(char), 500);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 do
3203 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003204 msgheight += fontHeight; /* at least one line */
3205
3206 /* Need to figure out where to break the string. The system does it
3207 * at a word boundary, which would mean we can't compute the number of
3208 * wrapped lines. */
3209 textWidth = 0;
3210 last_white = NULL;
3211 for (pend = pstart; *pend != NUL && *pend != '\n'; )
Bram Moolenaar748bf032005-02-02 23:04:36 +00003212 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003213#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003214 l = (*mb_ptr2len)(pend);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003215#else
3216 l = 1;
3217#endif
3218 if (l == 1 && vim_iswhite(*pend)
3219 && textWidth > maxDialogWidth * 3 / 4)
3220 last_white = pend;
Bram Moolenaarf05d8112013-06-26 12:58:32 +02003221 textWidth += GetTextWidthEnc(hdc, pend, l);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003222 if (textWidth >= maxDialogWidth)
Bram Moolenaar748bf032005-02-02 23:04:36 +00003223 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003224 /* Line will wrap. */
3225 messageWidth = maxDialogWidth;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003226 msgheight += fontHeight;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003227 textWidth = 0;
3228
3229 if (last_white != NULL)
3230 {
3231 /* break the line just after a space */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003232 ga.ga_len -= (int)(pend - (last_white + 1));
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003233 pend = last_white + 1;
3234 last_white = NULL;
3235 }
3236 ga_append(&ga, '\r');
3237 ga_append(&ga, '\n');
3238 continue;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003239 }
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003240
3241 while (--l >= 0)
3242 ga_append(&ga, *pend++);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003243 }
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003244 if (textWidth > messageWidth)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 messageWidth = textWidth;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003246
3247 ga_append(&ga, '\r');
3248 ga_append(&ga, '\n');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249 pstart = pend + 1;
3250 } while (*pend != NUL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003251
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003252 if (ga.ga_data != NULL)
3253 message = ga.ga_data;
3254
Bram Moolenaar748bf032005-02-02 23:04:36 +00003255 messageWidth += 10; /* roundoff space */
3256
3257 /* Restrict the size to a maximum. Causes a scrollbar to show up. */
3258 if (msgheight > maxDialogHeight)
3259 {
3260 msgheight = maxDialogHeight;
3261 scroll_flag = WS_VSCROLL;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003262 messageWidth += GetSystemMetrics(SM_CXVSCROLL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003263 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264
3265 /* Add width of icon to dlgwidth, and some space */
Bram Moolenaar748bf032005-02-02 23:04:36 +00003266 dlgwidth = messageWidth + DLG_ICON_WIDTH + 3 * dlgPaddingX;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267
3268 if (msgheight < DLG_ICON_HEIGHT)
3269 msgheight = DLG_ICON_HEIGHT;
3270
3271 /*
3272 * Check button names. A long one will make the dialog wider.
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00003273 * When called early (-register error message) p_go isn't initialized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 */
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00003275 vertical = (p_go != NULL && vim_strchr(p_go, GO_VERTICAL) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 if (!vertical)
3277 {
3278 // Place buttons horizontally if they fit.
3279 horizWidth = dlgPaddingX;
3280 pstart = tbuffer;
3281 i = 0;
3282 do
3283 {
3284 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
3285 if (pend == NULL)
3286 pend = pstart + STRLEN(pstart); // Last button name.
Bram Moolenaarb052fe02013-06-26 13:16:20 +02003287 textWidth = GetTextWidthEnc(hdc, pstart, (int)(pend - pstart));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288 if (textWidth < minButtonWidth)
3289 textWidth = minButtonWidth;
3290 textWidth += dlgPaddingX; /* Padding within button */
3291 buttonWidths[i] = textWidth;
3292 buttonPositions[i++] = horizWidth;
3293 horizWidth += textWidth + dlgPaddingX; /* Pad between buttons */
3294 pstart = pend + 1;
3295 } while (*pend != NUL);
3296
3297 if (horizWidth > maxDialogWidth)
3298 vertical = TRUE; // Too wide to fit on the screen.
3299 else if (horizWidth > dlgwidth)
3300 dlgwidth = horizWidth;
3301 }
3302
3303 if (vertical)
3304 {
3305 // Stack buttons vertically.
3306 pstart = tbuffer;
3307 do
3308 {
3309 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
3310 if (pend == NULL)
3311 pend = pstart + STRLEN(pstart); // Last button name.
Bram Moolenaarb052fe02013-06-26 13:16:20 +02003312 textWidth = GetTextWidthEnc(hdc, pstart, (int)(pend - pstart));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 textWidth += dlgPaddingX; /* Padding within button */
3314 textWidth += DLG_VERT_PADDING_X * 2; /* Padding around button */
3315 if (textWidth > dlgwidth)
3316 dlgwidth = textWidth;
3317 pstart = pend + 1;
3318 } while (*pend != NUL);
3319 }
3320
3321 if (dlgwidth < DLG_MIN_WIDTH)
3322 dlgwidth = DLG_MIN_WIDTH; /* Don't allow a really thin dialog!*/
3323
3324 /* start to fill in the dlgtemplate information. addressing by WORDs */
3325 if (s_usenewlook)
3326 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE |DS_SETFONT;
3327 else
3328 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE;
3329
3330 add_long(lStyle);
3331 add_long(0); // (lExtendedStyle)
3332 pnumitems = p; /*save where the number of items must be stored*/
3333 add_word(0); // NumberOfItems(will change later)
3334 add_word(10); // x
3335 add_word(10); // y
3336 add_word(PixelToDialogX(dlgwidth)); // cx
3337
3338 // Dialog height.
3339 if (vertical)
3340 dlgheight = msgheight + 2 * dlgPaddingY +
3341 DLG_VERT_PADDING_Y + 2 * fontHeight * numButtons;
3342 else
3343 dlgheight = msgheight + 3 * dlgPaddingY + 2 * fontHeight;
3344
3345 // Dialog needs to be taller if contains an edit box.
3346 editboxheight = fontHeight + dlgPaddingY + 4 * DLG_VERT_PADDING_Y;
3347 if (textfield != NULL)
3348 dlgheight += editboxheight;
3349
3350 add_word(PixelToDialogY(dlgheight));
3351
3352 add_word(0); // Menu
3353 add_word(0); // Class
3354
3355 /* copy the title of the dialog */
3356 nchar = nCopyAnsiToWideChar(p, (title ?
3357 (LPSTR)title :
3358 (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
3359 p += nchar;
3360
3361 if (s_usenewlook)
3362 {
3363 /* do the font, since DS_3DLOOK doesn't work properly */
3364#ifdef USE_SYSMENU_FONT
3365 if (use_lfSysmenu)
3366 {
3367 /* point size */
3368 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
3369 GetDeviceCaps(hdc, LOGPIXELSY));
3370 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
3371 }
3372 else
3373#endif
3374 {
3375 *p++ = DLG_FONT_POINT_SIZE; // point size
3376 nchar = nCopyAnsiToWideChar(p, TEXT(DLG_FONT_NAME));
3377 }
3378 p += nchar;
3379 }
3380
3381 buttonYpos = msgheight + 2 * dlgPaddingY;
3382
3383 if (textfield != NULL)
3384 buttonYpos += editboxheight;
3385
3386 pstart = tbuffer;
3387 if (!vertical)
3388 horizWidth = (dlgwidth - horizWidth) / 2; /* Now it's X offset */
3389 for (i = 0; i < numButtons; i++)
3390 {
3391 /* get end of this button. */
3392 for ( pend = pstart;
3393 *pend && (*pend != DLG_BUTTON_SEP);
3394 pend++)
3395 ;
3396
3397 if (*pend)
3398 *pend = '\0';
3399
3400 /*
3401 * old NOTE:
3402 * setting the BS_DEFPUSHBUTTON style doesn't work because Windows sets
3403 * the focus to the first tab-able button and in so doing makes that
3404 * the default!! Grrr. Workaround: Make the default button the only
3405 * one with WS_TABSTOP style. Means user can't tab between buttons, but
3406 * he/she can use arrow keys.
3407 *
3408 * new NOTE: BS_DEFPUSHBUTTON is required to be able to select the
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00003409 * right button when hitting <Enter>. E.g., for the ":confirm quit"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 * dialog. Also needed for when the textfield is the default control.
3411 * It appears to work now (perhaps not on Win95?).
3412 */
3413 if (vertical)
3414 {
3415 p = add_dialog_element(p,
3416 (i == dfltbutton
3417 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
3418 PixelToDialogX(DLG_VERT_PADDING_X),
3419 PixelToDialogY(buttonYpos /* TBK */
3420 + 2 * fontHeight * i),
3421 PixelToDialogX(dlgwidth - 2 * DLG_VERT_PADDING_X),
3422 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
3423 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, pstart);
3424 }
3425 else
3426 {
3427 p = add_dialog_element(p,
3428 (i == dfltbutton
3429 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
3430 PixelToDialogX(horizWidth + buttonPositions[i]),
3431 PixelToDialogY(buttonYpos), /* TBK */
3432 PixelToDialogX(buttonWidths[i]),
3433 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
3434 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, pstart);
3435 }
3436 pstart = pend + 1; /*next button*/
3437 }
3438 *pnumitems += numButtons;
3439
3440 /* Vim icon */
3441 p = add_dialog_element(p, SS_ICON,
3442 PixelToDialogX(dlgPaddingX),
3443 PixelToDialogY(dlgPaddingY),
3444 PixelToDialogX(DLG_ICON_WIDTH),
3445 PixelToDialogY(DLG_ICON_HEIGHT),
3446 DLG_NONBUTTON_CONTROL + 0, (WORD)0x0082,
3447 dlg_icons[type]);
3448
Bram Moolenaar748bf032005-02-02 23:04:36 +00003449 /* Dialog message */
3450 p = add_dialog_element(p, ES_LEFT|scroll_flag|ES_MULTILINE|ES_READONLY,
3451 PixelToDialogX(2 * dlgPaddingX + DLG_ICON_WIDTH),
3452 PixelToDialogY(dlgPaddingY),
3453 (WORD)(PixelToDialogX(messageWidth) + 1),
3454 PixelToDialogY(msgheight),
3455 DLG_NONBUTTON_CONTROL + 1, (WORD)0x0081, message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456
3457 /* Edit box */
3458 if (textfield != NULL)
3459 {
3460 p = add_dialog_element(p, ES_LEFT|ES_AUTOHSCROLL|WS_TABSTOP|WS_BORDER,
3461 PixelToDialogX(2 * dlgPaddingX),
3462 PixelToDialogY(2 * dlgPaddingY + msgheight),
3463 PixelToDialogX(dlgwidth - 4 * dlgPaddingX),
3464 PixelToDialogY(fontHeight + dlgPaddingY),
3465 DLG_NONBUTTON_CONTROL + 2, (WORD)0x0081, textfield);
3466 *pnumitems += 1;
3467 }
3468
3469 *pnumitems += 2;
3470
3471 SelectFont(hdc, oldFont);
3472 DeleteObject(font);
3473 ReleaseDC(hwnd, hdc);
3474
3475 /* Let the dialog_callback() function know which button to make default
3476 * If we have an edit box, make that the default. We also need to tell
3477 * dialog_callback() if this dialog contains an edit box or not. We do
3478 * this by setting s_textfield if it does.
3479 */
3480 if (textfield != NULL)
3481 {
3482 dialog_default_button = DLG_NONBUTTON_CONTROL + 2;
3483 s_textfield = textfield;
3484 }
3485 else
3486 {
3487 dialog_default_button = IDCANCEL + 1 + dfltbutton;
3488 s_textfield = NULL;
3489 }
3490
3491 /* show the dialog box modally and get a return value */
3492 nchar = (int)DialogBoxIndirect(
3493 s_hinst,
3494 (LPDLGTEMPLATE)pdlgtemplate,
3495 s_hwnd,
3496 (DLGPROC)dialog_callback);
3497
3498 LocalFree(LocalHandle(pdlgtemplate));
3499 vim_free(tbuffer);
3500 vim_free(buttonWidths);
3501 vim_free(buttonPositions);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003502 vim_free(ga.ga_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503
3504 /* Focus back to our window (for when MDI is used). */
3505 (void)SetFocus(s_hwnd);
3506
3507 return nchar;
3508}
3509
3510#endif /* FEAT_GUI_DIALOG */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003511
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512/*
3513 * Put a simple element (basic class) onto a dialog template in memory.
3514 * return a pointer to where the next item should be added.
3515 *
3516 * parameters:
3517 * lStyle = additional style flags
3518 * (be careful, NT3.51 & Win32s will ignore the new ones)
3519 * x,y = x & y positions IN DIALOG UNITS
3520 * w,h = width and height IN DIALOG UNITS
3521 * Id = ID used in messages
3522 * clss = class ID, e.g 0x0080 for a button, 0x0082 for a static
3523 * caption = usually text or resource name
3524 *
3525 * TODO: use the length information noted here to enable the dialog creation
3526 * routines to work out more exactly how much memory they need to alloc.
3527 */
3528 static PWORD
3529add_dialog_element(
3530 PWORD p,
3531 DWORD lStyle,
3532 WORD x,
3533 WORD y,
3534 WORD w,
3535 WORD h,
3536 WORD Id,
3537 WORD clss,
3538 const char *caption)
3539{
3540 int nchar;
3541
3542 p = lpwAlign(p); /* Align to dword boundary*/
3543 lStyle = lStyle | WS_VISIBLE | WS_CHILD;
3544 *p++ = LOWORD(lStyle);
3545 *p++ = HIWORD(lStyle);
3546 *p++ = 0; // LOWORD (lExtendedStyle)
3547 *p++ = 0; // HIWORD (lExtendedStyle)
3548 *p++ = x;
3549 *p++ = y;
3550 *p++ = w;
3551 *p++ = h;
3552 *p++ = Id; //9 or 10 words in all
3553
3554 *p++ = (WORD)0xffff;
3555 *p++ = clss; //2 more here
3556
3557 nchar = nCopyAnsiToWideChar(p, (LPSTR)caption); //strlen(caption)+1
3558 p += nchar;
3559
3560 *p++ = 0; // advance pointer over nExtraStuff WORD - 2 more
3561
3562 return p; //total = 15+ (strlen(caption)) words
3563 // = 30 + 2(strlen(caption) bytes reqd
3564}
3565
3566
3567/*
3568 * Helper routine. Take an input pointer, return closest pointer that is
3569 * aligned on a DWORD (4 byte) boundary. Taken from the Win32SDK samples.
3570 */
3571 static LPWORD
3572lpwAlign(
3573 LPWORD lpIn)
3574{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003575 long_u ul;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003577 ul = (long_u)lpIn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 ul += 3;
3579 ul >>= 2;
3580 ul <<= 2;
3581 return (LPWORD)ul;
3582}
3583
3584/*
3585 * Helper routine. Takes second parameter as Ansi string, copies it to first
3586 * parameter as wide character (16-bits / char) string, and returns integer
3587 * number of wide characters (words) in string (including the trailing wide
3588 * char NULL). Partly taken from the Win32SDK samples.
3589 */
3590 static int
3591nCopyAnsiToWideChar(
3592 LPWORD lpWCStr,
3593 LPSTR lpAnsiIn)
3594{
3595 int nChar = 0;
3596#ifdef FEAT_MBYTE
3597 int len = lstrlen(lpAnsiIn) + 1; /* include NUL character */
3598 int i;
3599 WCHAR *wn;
3600
3601 if (enc_codepage == 0 && (int)GetACP() != enc_codepage)
3602 {
3603 /* Not a codepage, use our own conversion function. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003604 wn = enc_to_utf16(lpAnsiIn, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605 if (wn != NULL)
3606 {
3607 wcscpy(lpWCStr, wn);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003608 nChar = (int)wcslen(wn) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 vim_free(wn);
3610 }
3611 }
3612 if (nChar == 0)
3613 /* Use Win32 conversion function. */
3614 nChar = MultiByteToWideChar(
3615 enc_codepage > 0 ? enc_codepage : CP_ACP,
3616 MB_PRECOMPOSED,
3617 lpAnsiIn, len,
3618 lpWCStr, len);
3619 for (i = 0; i < nChar; ++i)
3620 if (lpWCStr[i] == (WORD)'\t') /* replace tabs with spaces */
3621 lpWCStr[i] = (WORD)' ';
3622#else
3623 do
3624 {
3625 if (*lpAnsiIn == '\t')
3626 *lpWCStr++ = (WORD)' ';
3627 else
3628 *lpWCStr++ = (WORD)*lpAnsiIn;
3629 nChar++;
3630 } while (*lpAnsiIn++);
3631#endif
3632
3633 return nChar;
3634}
3635
3636
3637#ifdef FEAT_TEAROFF
3638/*
3639 * The callback function for all the modeless dialogs that make up the
3640 * "tearoff menus" Very simple - forward button presses (to fool Vim into
3641 * thinking its menus have been clicked), and go away when closed.
3642 */
3643 static LRESULT CALLBACK
3644tearoff_callback(
3645 HWND hwnd,
3646 UINT message,
3647 WPARAM wParam,
3648 LPARAM lParam)
3649{
3650 if (message == WM_INITDIALOG)
3651 return (TRUE);
3652
3653 /* May show the mouse pointer again. */
3654 HandleMouseHide(message, lParam);
3655
3656 if (message == WM_COMMAND)
3657 {
3658 if ((WORD)(LOWORD(wParam)) & 0x8000)
3659 {
3660 POINT mp;
3661 RECT rect;
3662
3663 if (GetCursorPos(&mp) && GetWindowRect(hwnd, &rect))
3664 {
3665 (void)TrackPopupMenu(
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003666 (HMENU)(long_u)(LOWORD(wParam) ^ 0x8000),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 TPM_LEFTALIGN | TPM_LEFTBUTTON,
3668 (int)rect.right - 8,
3669 (int)mp.y,
3670 (int)0, /*reserved param*/
3671 s_hwnd,
3672 NULL);
3673 /*
3674 * NOTE: The pop-up menu can eat the mouse up event.
3675 * We deal with this in normal.c.
3676 */
3677 }
3678 }
3679 else
3680 /* Pass on messages to the main Vim window */
3681 PostMessage(s_hwnd, WM_COMMAND, LOWORD(wParam), 0);
3682 /*
3683 * Give main window the focus back: this is so after
3684 * choosing a tearoff button you can start typing again
3685 * straight away.
3686 */
3687 (void)SetFocus(s_hwnd);
3688 return TRUE;
3689 }
3690 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
3691 {
3692 DestroyWindow(hwnd);
3693 return TRUE;
3694 }
3695
3696 /* When moved around, give main window the focus back. */
3697 if (message == WM_EXITSIZEMOVE)
3698 (void)SetActiveWindow(s_hwnd);
3699
3700 return FALSE;
3701}
3702#endif
3703
3704
3705/*
3706 * Decide whether to use the "new look" (small, non-bold font) or the "old
3707 * look" (big, clanky font) for dialogs, and work out a few values for use
3708 * later accordingly.
3709 */
3710 static void
3711get_dialog_font_metrics(void)
3712{
3713 HDC hdc;
3714 HFONT hfontTools = 0;
3715 DWORD dlgFontSize;
3716 SIZE size;
3717#ifdef USE_SYSMENU_FONT
3718 LOGFONT lfSysmenu;
3719#endif
3720
3721 s_usenewlook = FALSE;
3722
3723 /*
3724 * For NT3.51 and Win32s, we stick with the old look
3725 * because it matches everything else.
3726 */
3727 if (!is_winnt_3())
3728 {
3729#ifdef USE_SYSMENU_FONT
3730 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3731 hfontTools = CreateFontIndirect(&lfSysmenu);
3732 else
3733#endif
3734 hfontTools = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0,
3735 0, 0, 0, 0, VARIABLE_PITCH , DLG_FONT_NAME);
3736
3737 if (hfontTools)
3738 {
3739 hdc = GetDC(s_hwnd);
3740 SelectObject(hdc, hfontTools);
3741 /*
3742 * GetTextMetrics() doesn't return the right value in
3743 * tmAveCharWidth, so we have to figure out the dialog base units
3744 * ourselves.
3745 */
3746 GetTextExtentPoint(hdc,
3747 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
3748 52, &size);
3749 ReleaseDC(s_hwnd, hdc);
3750
3751 s_dlgfntwidth = (WORD)((size.cx / 26 + 1) / 2);
3752 s_dlgfntheight = (WORD)size.cy;
3753 s_usenewlook = TRUE;
3754 }
3755 }
3756
3757 if (!s_usenewlook)
3758 {
3759 dlgFontSize = GetDialogBaseUnits(); /* fall back to big old system*/
3760 s_dlgfntwidth = LOWORD(dlgFontSize);
3761 s_dlgfntheight = HIWORD(dlgFontSize);
3762 }
3763}
3764
3765#if defined(FEAT_MENU) && defined(FEAT_TEAROFF)
3766/*
3767 * Create a pseudo-"tearoff menu" based on the child
3768 * items of a given menu pointer.
3769 */
3770 static void
3771gui_mch_tearoff(
3772 char_u *title,
3773 vimmenu_T *menu,
3774 int initX,
3775 int initY)
3776{
3777 WORD *p, *pdlgtemplate, *pnumitems, *ptrueheight;
3778 int template_len;
3779 int nchar, textWidth, submenuWidth;
3780 DWORD lStyle;
3781 DWORD lExtendedStyle;
3782 WORD dlgwidth;
3783 WORD menuID;
3784 vimmenu_T *pmenu;
3785 vimmenu_T *the_menu = menu;
3786 HWND hwnd;
3787 HDC hdc;
3788 HFONT font, oldFont;
3789 int col, spaceWidth, len;
3790 int columnWidths[2];
3791 char_u *label, *text;
3792 int acLen = 0;
3793 int nameLen;
3794 int padding0, padding1, padding2 = 0;
3795 int sepPadding=0;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003796 int x;
3797 int y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798#ifdef USE_SYSMENU_FONT
3799 LOGFONT lfSysmenu;
3800 int use_lfSysmenu = FALSE;
3801#endif
3802
3803 /*
3804 * If this menu is already torn off, move it to the mouse position.
3805 */
3806 if (IsWindow(menu->tearoff_handle))
3807 {
3808 POINT mp;
3809 if (GetCursorPos((LPPOINT)&mp))
3810 {
3811 SetWindowPos(menu->tearoff_handle, NULL, mp.x, mp.y, 0, 0,
3812 SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER);
3813 }
3814 return;
3815 }
3816
3817 /*
3818 * Create a new tearoff.
3819 */
3820 if (*title == MNU_HIDDEN_CHAR)
3821 title++;
3822
3823 /* Allocate memory to store the dialog template. It's made bigger when
3824 * needed. */
3825 template_len = DLG_ALLOC_SIZE;
3826 pdlgtemplate = p = (WORD *)LocalAlloc(LPTR, template_len);
3827 if (p == NULL)
3828 return;
3829
3830 hwnd = GetDesktopWindow();
3831 hdc = GetWindowDC(hwnd);
3832#ifdef USE_SYSMENU_FONT
3833 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3834 {
3835 font = CreateFontIndirect(&lfSysmenu);
3836 use_lfSysmenu = TRUE;
3837 }
3838 else
3839#endif
3840 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3841 VARIABLE_PITCH , DLG_FONT_NAME);
3842 if (s_usenewlook)
3843 oldFont = SelectFont(hdc, font);
3844 else
3845 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
3846
3847 /* Calculate width of a single space. Used for padding columns to the
3848 * right width. */
3849 spaceWidth = GetTextWidth(hdc, " ", 1);
3850
3851 /* Figure out max width of the text column, the accelerator column and the
3852 * optional submenu column. */
3853 submenuWidth = 0;
3854 for (col = 0; col < 2; col++)
3855 {
3856 columnWidths[col] = 0;
3857 for (pmenu = menu->children; pmenu != NULL; pmenu = pmenu->next)
3858 {
3859 /* Use "dname" here to compute the width of the visible text. */
3860 text = (col == 0) ? pmenu->dname : pmenu->actext;
3861 if (text != NULL && *text != NUL)
3862 {
3863 textWidth = GetTextWidthEnc(hdc, text, (int)STRLEN(text));
3864 if (textWidth > columnWidths[col])
3865 columnWidths[col] = textWidth;
3866 }
3867 if (pmenu->children != NULL)
3868 submenuWidth = TEAROFF_COLUMN_PADDING * spaceWidth;
3869 }
3870 }
3871 if (columnWidths[1] == 0)
3872 {
3873 /* no accelerators */
3874 if (submenuWidth != 0)
3875 columnWidths[0] += submenuWidth;
3876 else
3877 columnWidths[0] += spaceWidth;
3878 }
3879 else
3880 {
3881 /* there is an accelerator column */
3882 columnWidths[0] += TEAROFF_COLUMN_PADDING * spaceWidth;
3883 columnWidths[1] += submenuWidth;
3884 }
3885
3886 /*
3887 * Now find the total width of our 'menu'.
3888 */
3889 textWidth = columnWidths[0] + columnWidths[1];
3890 if (submenuWidth != 0)
3891 {
3892 submenuWidth = GetTextWidth(hdc, TEAROFF_SUBMENU_LABEL,
3893 (int)STRLEN(TEAROFF_SUBMENU_LABEL));
3894 textWidth += submenuWidth;
3895 }
3896 dlgwidth = GetTextWidthEnc(hdc, title, (int)STRLEN(title));
3897 if (textWidth > dlgwidth)
3898 dlgwidth = textWidth;
3899 dlgwidth += 2 * TEAROFF_PADDING_X + TEAROFF_BUTTON_PAD_X;
3900
3901 /* W95 can't do thin dialogs, they look v. weird! */
3902 if (mch_windows95() && dlgwidth < TEAROFF_MIN_WIDTH)
3903 dlgwidth = TEAROFF_MIN_WIDTH;
3904
3905 /* start to fill in the dlgtemplate information. addressing by WORDs */
3906 if (s_usenewlook)
3907 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU |DS_SETFONT| WS_VISIBLE;
3908 else
3909 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU | WS_VISIBLE;
3910
3911 lExtendedStyle = WS_EX_TOOLWINDOW|WS_EX_STATICEDGE;
3912 *p++ = LOWORD(lStyle);
3913 *p++ = HIWORD(lStyle);
3914 *p++ = LOWORD(lExtendedStyle);
3915 *p++ = HIWORD(lExtendedStyle);
3916 pnumitems = p; /* save where the number of items must be stored */
3917 *p++ = 0; // NumberOfItems(will change later)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003918 gui_mch_getmouse(&x, &y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 if (initX == 0xffffL)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003920 *p++ = PixelToDialogX(x); // x
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 else
3922 *p++ = PixelToDialogX(initX); // x
3923 if (initY == 0xffffL)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003924 *p++ = PixelToDialogY(y); // y
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 else
3926 *p++ = PixelToDialogY(initY); // y
3927 *p++ = PixelToDialogX(dlgwidth); // cx
3928 ptrueheight = p;
3929 *p++ = 0; // dialog height: changed later anyway
3930 *p++ = 0; // Menu
3931 *p++ = 0; // Class
3932
3933 /* copy the title of the dialog */
3934 nchar = nCopyAnsiToWideChar(p, ((*title)
3935 ? (LPSTR)title
3936 : (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
3937 p += nchar;
3938
3939 if (s_usenewlook)
3940 {
3941 /* do the font, since DS_3DLOOK doesn't work properly */
3942#ifdef USE_SYSMENU_FONT
3943 if (use_lfSysmenu)
3944 {
3945 /* point size */
3946 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
3947 GetDeviceCaps(hdc, LOGPIXELSY));
3948 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
3949 }
3950 else
3951#endif
3952 {
3953 *p++ = DLG_FONT_POINT_SIZE; // point size
3954 nchar = nCopyAnsiToWideChar (p, TEXT(DLG_FONT_NAME));
3955 }
3956 p += nchar;
3957 }
3958
3959 /*
3960 * Loop over all the items in the menu.
3961 * But skip over the tearbar.
3962 */
3963 if (STRCMP(menu->children->name, TEAR_STRING) == 0)
3964 menu = menu->children->next;
3965 else
3966 menu = menu->children;
3967 for ( ; menu != NULL; menu = menu->next)
3968 {
3969 if (menu->modes == 0) /* this menu has just been deleted */
3970 continue;
3971 if (menu_is_separator(menu->dname))
3972 {
3973 sepPadding += 3;
3974 continue;
3975 }
3976
3977 /* Check if there still is plenty of room in the template. Make it
3978 * larger when needed. */
3979 if (((char *)p - (char *)pdlgtemplate) + 1000 > template_len)
3980 {
3981 WORD *newp;
3982
3983 newp = (WORD *)LocalAlloc(LPTR, template_len + 4096);
3984 if (newp != NULL)
3985 {
3986 template_len += 4096;
3987 mch_memmove(newp, pdlgtemplate,
3988 (char *)p - (char *)pdlgtemplate);
3989 p = newp + (p - pdlgtemplate);
3990 pnumitems = newp + (pnumitems - pdlgtemplate);
3991 ptrueheight = newp + (ptrueheight - pdlgtemplate);
3992 LocalFree(LocalHandle(pdlgtemplate));
3993 pdlgtemplate = newp;
3994 }
3995 }
3996
3997 /* Figure out minimal length of this menu label. Use "name" for the
3998 * actual text, "dname" for estimating the displayed size. "name"
3999 * has "&a" for mnemonic and includes the accelerator. */
4000 len = nameLen = (int)STRLEN(menu->name);
4001 padding0 = (columnWidths[0] - GetTextWidthEnc(hdc, menu->dname,
4002 (int)STRLEN(menu->dname))) / spaceWidth;
4003 len += padding0;
4004
4005 if (menu->actext != NULL)
4006 {
4007 acLen = (int)STRLEN(menu->actext);
4008 len += acLen;
4009 textWidth = GetTextWidthEnc(hdc, menu->actext, acLen);
4010 }
4011 else
4012 textWidth = 0;
4013 padding1 = (columnWidths[1] - textWidth) / spaceWidth;
4014 len += padding1;
4015
4016 if (menu->children == NULL)
4017 {
4018 padding2 = submenuWidth / spaceWidth;
4019 len += padding2;
4020 menuID = (WORD)(menu->id);
4021 }
4022 else
4023 {
4024 len += (int)STRLEN(TEAROFF_SUBMENU_LABEL);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004025 menuID = (WORD)((long_u)(menu->submenu_id) | (DWORD)0x8000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 }
4027
4028 /* Allocate menu label and fill it in */
4029 text = label = alloc((unsigned)len + 1);
4030 if (label == NULL)
4031 break;
4032
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004033 vim_strncpy(text, menu->name, nameLen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 text = vim_strchr(text, TAB); /* stop at TAB before actext */
4035 if (text == NULL)
4036 text = label + nameLen; /* no actext, use whole name */
4037 while (padding0-- > 0)
4038 *text++ = ' ';
4039 if (menu->actext != NULL)
4040 {
4041 STRNCPY(text, menu->actext, acLen);
4042 text += acLen;
4043 }
4044 while (padding1-- > 0)
4045 *text++ = ' ';
4046 if (menu->children != NULL)
4047 {
4048 STRCPY(text, TEAROFF_SUBMENU_LABEL);
4049 text += STRLEN(TEAROFF_SUBMENU_LABEL);
4050 }
4051 else
4052 {
4053 while (padding2-- > 0)
4054 *text++ = ' ';
4055 }
4056 *text = NUL;
4057
4058 /*
4059 * BS_LEFT will just be ignored on Win32s/NT3.5x - on
4060 * W95/NT4 it makes the tear-off look more like a menu.
4061 */
4062 p = add_dialog_element(p,
4063 BS_PUSHBUTTON|BS_LEFT,
4064 (WORD)PixelToDialogX(TEAROFF_PADDING_X),
4065 (WORD)(sepPadding + 1 + 13 * (*pnumitems)),
4066 (WORD)PixelToDialogX(dlgwidth - 2 * TEAROFF_PADDING_X),
4067 (WORD)12,
4068 menuID, (WORD)0x0080, label);
4069 vim_free(label);
4070 (*pnumitems)++;
4071 }
4072
4073 *ptrueheight = (WORD)(sepPadding + 1 + 13 * (*pnumitems));
4074
4075
4076 /* show modelessly */
4077 the_menu->tearoff_handle = CreateDialogIndirect(
4078 s_hinst,
4079 (LPDLGTEMPLATE)pdlgtemplate,
4080 s_hwnd,
4081 (DLGPROC)tearoff_callback);
4082
4083 LocalFree(LocalHandle(pdlgtemplate));
4084 SelectFont(hdc, oldFont);
4085 DeleteObject(font);
4086 ReleaseDC(hwnd, hdc);
4087
4088 /*
4089 * Reassert ourselves as the active window. This is so that after creating
4090 * a tearoff, the user doesn't have to click with the mouse just to start
4091 * typing again!
4092 */
4093 (void)SetActiveWindow(s_hwnd);
4094
4095 /* make sure the right buttons are enabled */
4096 force_menu_update = TRUE;
4097}
4098#endif
4099
4100#if defined(FEAT_TOOLBAR) || defined(PROTO)
4101#include "gui_w32_rc.h"
4102
4103/* This not defined in older SDKs */
4104# ifndef TBSTYLE_FLAT
4105# define TBSTYLE_FLAT 0x0800
4106# endif
4107
4108/*
4109 * Create the toolbar, initially unpopulated.
4110 * (just like the menu, there are no defaults, it's all
4111 * set up through menu.vim)
4112 */
4113 static void
4114initialise_toolbar(void)
4115{
4116 InitCommonControls();
4117 s_toolbarhwnd = CreateToolbarEx(
4118 s_hwnd,
4119 WS_CHILD | TBSTYLE_TOOLTIPS | TBSTYLE_FLAT,
4120 4000, //any old big number
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00004121 31, //number of images in initial bitmap
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 s_hinst,
4123 IDR_TOOLBAR1, // id of initial bitmap
4124 NULL,
4125 0, // initial number of buttons
4126 TOOLBAR_BUTTON_WIDTH, //api guide is wrong!
4127 TOOLBAR_BUTTON_HEIGHT,
4128 TOOLBAR_BUTTON_WIDTH,
4129 TOOLBAR_BUTTON_HEIGHT,
4130 sizeof(TBBUTTON)
4131 );
Bram Moolenaar5f919ee2013-07-21 17:46:43 +02004132 s_toolbar_wndproc = SubclassWindow(s_toolbarhwnd, toolbar_wndproc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133
4134 gui_mch_show_toolbar(vim_strchr(p_go, GO_TOOLBAR) != NULL);
4135}
4136
Bram Moolenaar5f919ee2013-07-21 17:46:43 +02004137 static LRESULT CALLBACK
4138toolbar_wndproc(
4139 HWND hwnd,
4140 UINT uMsg,
4141 WPARAM wParam,
4142 LPARAM lParam)
4143{
4144 HandleMouseHide(uMsg, lParam);
4145 return CallWindowProc(s_toolbar_wndproc, hwnd, uMsg, wParam, lParam);
4146}
4147
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 static int
4149get_toolbar_bitmap(vimmenu_T *menu)
4150{
4151 int i = -1;
4152
4153 /*
4154 * Check user bitmaps first, unless builtin is specified.
4155 */
4156 if (!is_winnt_3() && !menu->icon_builtin)
4157 {
4158 char_u fname[MAXPATHL];
4159 HANDLE hbitmap = NULL;
4160
4161 if (menu->iconfile != NULL)
4162 {
4163 gui_find_iconfile(menu->iconfile, fname, "bmp");
4164 hbitmap = LoadImage(
4165 NULL,
4166 fname,
4167 IMAGE_BITMAP,
4168 TOOLBAR_BUTTON_WIDTH,
4169 TOOLBAR_BUTTON_HEIGHT,
4170 LR_LOADFROMFILE |
4171 LR_LOADMAP3DCOLORS
4172 );
4173 }
4174
4175 /*
4176 * If the LoadImage call failed, or the "icon=" file
4177 * didn't exist or wasn't specified, try the menu name
4178 */
4179 if (hbitmap == NULL
Bram Moolenaara5f5c8b2013-06-27 22:29:38 +02004180 && (gui_find_bitmap(
4181#ifdef FEAT_MULTI_LANG
4182 menu->en_dname != NULL ? menu->en_dname :
4183#endif
4184 menu->dname, fname, "bmp") == OK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185 hbitmap = LoadImage(
4186 NULL,
4187 fname,
4188 IMAGE_BITMAP,
4189 TOOLBAR_BUTTON_WIDTH,
4190 TOOLBAR_BUTTON_HEIGHT,
4191 LR_LOADFROMFILE |
4192 LR_LOADMAP3DCOLORS
4193 );
4194
4195 if (hbitmap != NULL)
4196 {
4197 TBADDBITMAP tbAddBitmap;
4198
4199 tbAddBitmap.hInst = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004200 tbAddBitmap.nID = (long_u)hbitmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201
4202 i = (int)SendMessage(s_toolbarhwnd, TB_ADDBITMAP,
4203 (WPARAM)1, (LPARAM)&tbAddBitmap);
4204 /* i will be set to -1 if it fails */
4205 }
4206 }
4207 if (i == -1 && menu->iconidx >= 0 && menu->iconidx < TOOLBAR_BITMAP_COUNT)
4208 i = menu->iconidx;
4209
4210 return i;
4211}
4212#endif
4213
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004214#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
4215 static void
4216initialise_tabline(void)
4217{
4218 InitCommonControls();
4219
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004220 s_tabhwnd = CreateWindow(WC_TABCONTROL, "Vim tabline",
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004221 WS_CHILD|TCS_FOCUSNEVER|TCS_TOOLTIPS,
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004222 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
4223 CW_USEDEFAULT, s_hwnd, NULL, s_hinst, NULL);
Bram Moolenaar5f919ee2013-07-21 17:46:43 +02004224 s_tabline_wndproc = SubclassWindow(s_tabhwnd, tabline_wndproc);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004225
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004226 gui.tabline_height = TABLINE_HEIGHT;
4227
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004228# ifdef USE_SYSMENU_FONT
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004229 set_tabline_font();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004230# endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004231}
Bram Moolenaar5f919ee2013-07-21 17:46:43 +02004232
4233 static LRESULT CALLBACK
4234tabline_wndproc(
4235 HWND hwnd,
4236 UINT uMsg,
4237 WPARAM wParam,
4238 LPARAM lParam)
4239{
4240 HandleMouseHide(uMsg, lParam);
4241 return CallWindowProc(s_tabline_wndproc, hwnd, uMsg, wParam, lParam);
4242}
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004243#endif
4244
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245#if defined(FEAT_OLE) || defined(FEAT_EVAL) || defined(PROTO)
4246/*
4247 * Make the GUI window come to the foreground.
4248 */
4249 void
4250gui_mch_set_foreground(void)
4251{
4252 if (IsIconic(s_hwnd))
4253 SendMessage(s_hwnd, WM_SYSCOMMAND, SC_RESTORE, 0);
4254 SetForegroundWindow(s_hwnd);
4255}
4256#endif
4257
4258#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
4259 static void
4260dyn_imm_load(void)
4261{
Bram Moolenaarebbcb822010-10-23 14:02:54 +02004262 hLibImm = vimLoadLib("imm32.dll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 if (hLibImm == NULL)
4264 return;
4265
4266 pImmGetCompositionStringA
4267 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringA");
4268 pImmGetCompositionStringW
4269 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringW");
4270 pImmGetContext
4271 = (void *)GetProcAddress(hLibImm, "ImmGetContext");
4272 pImmAssociateContext
4273 = (void *)GetProcAddress(hLibImm, "ImmAssociateContext");
4274 pImmReleaseContext
4275 = (void *)GetProcAddress(hLibImm, "ImmReleaseContext");
4276 pImmGetOpenStatus
4277 = (void *)GetProcAddress(hLibImm, "ImmGetOpenStatus");
4278 pImmSetOpenStatus
4279 = (void *)GetProcAddress(hLibImm, "ImmSetOpenStatus");
4280 pImmGetCompositionFont
4281 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionFontA");
4282 pImmSetCompositionFont
4283 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionFontA");
4284 pImmSetCompositionWindow
4285 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionWindow");
4286 pImmGetConversionStatus
4287 = (void *)GetProcAddress(hLibImm, "ImmGetConversionStatus");
Bram Moolenaarca003e12006-03-17 23:19:38 +00004288 pImmSetConversionStatus
4289 = (void *)GetProcAddress(hLibImm, "ImmSetConversionStatus");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290
4291 if ( pImmGetCompositionStringA == NULL
4292 || pImmGetCompositionStringW == NULL
4293 || pImmGetContext == NULL
4294 || pImmAssociateContext == NULL
4295 || pImmReleaseContext == NULL
4296 || pImmGetOpenStatus == NULL
4297 || pImmSetOpenStatus == NULL
4298 || pImmGetCompositionFont == NULL
4299 || pImmSetCompositionFont == NULL
4300 || pImmSetCompositionWindow == NULL
Bram Moolenaarca003e12006-03-17 23:19:38 +00004301 || pImmGetConversionStatus == NULL
4302 || pImmSetConversionStatus == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 {
4304 FreeLibrary(hLibImm);
4305 hLibImm = NULL;
4306 pImmGetContext = NULL;
4307 return;
4308 }
4309
4310 return;
4311}
4312
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313#endif
4314
4315#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
4316
4317# ifdef FEAT_XPM_W32
4318# define IMAGE_XPM 100
4319# endif
4320
4321typedef struct _signicon_t
4322{
4323 HANDLE hImage;
4324 UINT uType;
4325#ifdef FEAT_XPM_W32
4326 HANDLE hShape; /* Mask bitmap handle */
4327#endif
4328} signicon_t;
4329
4330 void
4331gui_mch_drawsign(row, col, typenr)
4332 int row;
4333 int col;
4334 int typenr;
4335{
4336 signicon_t *sign;
4337 int x, y, w, h;
4338
4339 if (!gui.in_use || (sign = (signicon_t *)sign_get_image(typenr)) == NULL)
4340 return;
4341
4342 x = TEXT_X(col);
4343 y = TEXT_Y(row);
4344 w = gui.char_width * 2;
4345 h = gui.char_height;
4346 switch (sign->uType)
4347 {
4348 case IMAGE_BITMAP:
4349 {
4350 HDC hdcMem;
4351 HBITMAP hbmpOld;
4352
4353 hdcMem = CreateCompatibleDC(s_hdc);
4354 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hImage);
4355 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCCOPY);
4356 SelectObject(hdcMem, hbmpOld);
4357 DeleteDC(hdcMem);
4358 }
4359 break;
4360 case IMAGE_ICON:
4361 case IMAGE_CURSOR:
4362 DrawIconEx(s_hdc, x, y, (HICON)sign->hImage, w, h, 0, NULL, DI_NORMAL);
4363 break;
4364#ifdef FEAT_XPM_W32
4365 case IMAGE_XPM:
4366 {
4367 HDC hdcMem;
4368 HBITMAP hbmpOld;
4369
4370 hdcMem = CreateCompatibleDC(s_hdc);
4371 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hShape);
4372 /* Make hole */
4373 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCAND);
4374
4375 SelectObject(hdcMem, sign->hImage);
4376 /* Paint sign */
4377 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCPAINT);
4378 SelectObject(hdcMem, hbmpOld);
4379 DeleteDC(hdcMem);
4380 }
4381 break;
4382#endif
4383 }
4384}
4385
4386 static void
4387close_signicon_image(signicon_t *sign)
4388{
4389 if (sign)
4390 switch (sign->uType)
4391 {
4392 case IMAGE_BITMAP:
4393 DeleteObject((HGDIOBJ)sign->hImage);
4394 break;
4395 case IMAGE_CURSOR:
4396 DestroyCursor((HCURSOR)sign->hImage);
4397 break;
4398 case IMAGE_ICON:
4399 DestroyIcon((HICON)sign->hImage);
4400 break;
4401#ifdef FEAT_XPM_W32
4402 case IMAGE_XPM:
4403 DeleteObject((HBITMAP)sign->hImage);
4404 DeleteObject((HBITMAP)sign->hShape);
4405 break;
4406#endif
4407 }
4408}
4409
4410 void *
4411gui_mch_register_sign(signfile)
4412 char_u *signfile;
4413{
4414 signicon_t sign, *psign;
4415 char_u *ext;
4416
4417 if (is_winnt_3())
4418 {
4419 EMSG(_(e_signdata));
4420 return NULL;
4421 }
4422
4423 sign.hImage = NULL;
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02004424 ext = signfile + STRLEN(signfile) - 4; /* get extension */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 if (ext > signfile)
4426 {
4427 int do_load = 1;
4428
4429 if (!STRICMP(ext, ".bmp"))
4430 sign.uType = IMAGE_BITMAP;
4431 else if (!STRICMP(ext, ".ico"))
4432 sign.uType = IMAGE_ICON;
4433 else if (!STRICMP(ext, ".cur") || !STRICMP(ext, ".ani"))
4434 sign.uType = IMAGE_CURSOR;
4435 else
4436 do_load = 0;
4437
4438 if (do_load)
4439 sign.hImage = (HANDLE)LoadImage(NULL, signfile, sign.uType,
4440 gui.char_width * 2, gui.char_height,
4441 LR_LOADFROMFILE | LR_CREATEDIBSECTION);
4442#ifdef FEAT_XPM_W32
4443 if (!STRICMP(ext, ".xpm"))
4444 {
4445 sign.uType = IMAGE_XPM;
4446 LoadXpmImage(signfile, (HBITMAP *)&sign.hImage, (HBITMAP *)&sign.hShape);
4447 }
4448#endif
4449 }
4450
4451 psign = NULL;
4452 if (sign.hImage && (psign = (signicon_t *)alloc(sizeof(signicon_t)))
4453 != NULL)
4454 *psign = sign;
4455
4456 if (!psign)
4457 {
4458 if (sign.hImage)
4459 close_signicon_image(&sign);
4460 EMSG(_(e_signdata));
4461 }
4462 return (void *)psign;
4463
4464}
4465
4466 void
4467gui_mch_destroy_sign(sign)
4468 void *sign;
4469{
4470 if (sign)
4471 {
4472 close_signicon_image((signicon_t *)sign);
4473 vim_free(sign);
4474 }
4475}
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004476#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477
4478#if defined(FEAT_BEVAL) || defined(PROTO)
4479
4480/* BALLOON-EVAL IMPLEMENTATION FOR WINDOWS.
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00004481 * Added by Sergey Khorev <sergey.khorev@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 *
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004483 * The only reused thing is gui_beval.h and get_beval_info()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 * from gui_beval.c (note it uses x and y of the BalloonEval struct
4485 * to get current mouse position).
4486 *
4487 * Trying to use as more Windows services as possible, and as less
4488 * IE version as possible :)).
4489 *
4490 * 1) Don't create ToolTip in gui_mch_create_beval_area, only initialize
4491 * BalloonEval struct.
4492 * 2) Enable/Disable simply create/kill BalloonEval Timer
4493 * 3) When there was enough inactivity, timer procedure posts
4494 * async request to debugger
4495 * 4) gui_mch_post_balloon (invoked from netbeans.c) creates tooltip control
4496 * and performs some actions to show it ASAP
Bram Moolenaar446cb832008-06-24 21:56:24 +00004497 * 5) WM_NOTIFY:TTN_POP destroys created tooltip
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 */
4499
Bram Moolenaar45360022005-07-21 21:08:21 +00004500/*
4501 * determine whether installed Common Controls support multiline tooltips
4502 * (i.e. their version is >= 4.70
4503 */
4504 int
4505multiline_balloon_available(void)
4506{
4507 HINSTANCE hDll;
4508 static char comctl_dll[] = "comctl32.dll";
4509 static int multiline_tip = MAYBE;
4510
4511 if (multiline_tip != MAYBE)
4512 return multiline_tip;
4513
4514 hDll = GetModuleHandle(comctl_dll);
4515 if (hDll != NULL)
4516 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004517 DLLGETVERSIONPROC pGetVer;
4518 pGetVer = (DLLGETVERSIONPROC)GetProcAddress(hDll, "DllGetVersion");
Bram Moolenaar45360022005-07-21 21:08:21 +00004519
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004520 if (pGetVer != NULL)
4521 {
4522 DLLVERSIONINFO dvi;
4523 HRESULT hr;
Bram Moolenaar45360022005-07-21 21:08:21 +00004524
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004525 ZeroMemory(&dvi, sizeof(dvi));
4526 dvi.cbSize = sizeof(dvi);
Bram Moolenaar45360022005-07-21 21:08:21 +00004527
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004528 hr = (*pGetVer)(&dvi);
Bram Moolenaar45360022005-07-21 21:08:21 +00004529
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004530 if (SUCCEEDED(hr)
Bram Moolenaar45360022005-07-21 21:08:21 +00004531 && (dvi.dwMajorVersion > 4
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004532 || (dvi.dwMajorVersion == 4
4533 && dvi.dwMinorVersion >= 70)))
Bram Moolenaar45360022005-07-21 21:08:21 +00004534 {
4535 multiline_tip = TRUE;
4536 return multiline_tip;
4537 }
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004538 }
Bram Moolenaar45360022005-07-21 21:08:21 +00004539 else
4540 {
4541 /* there is chance we have ancient CommCtl 4.70
4542 which doesn't export DllGetVersion */
4543 DWORD dwHandle = 0;
4544 DWORD len = GetFileVersionInfoSize(comctl_dll, &dwHandle);
4545 if (len > 0)
4546 {
4547 VS_FIXEDFILEINFO *ver;
4548 UINT vlen = 0;
4549 void *data = alloc(len);
4550
4551 if (data != NULL
4552 && GetFileVersionInfo(comctl_dll, 0, len, data)
4553 && VerQueryValue(data, "\\", (void **)&ver, &vlen)
4554 && vlen
4555 && HIWORD(ver->dwFileVersionMS) > 4
4556 || (HIWORD(ver->dwFileVersionMS) == 4
4557 && LOWORD(ver->dwFileVersionMS) >= 70))
4558 {
4559 vim_free(data);
4560 multiline_tip = TRUE;
4561 return multiline_tip;
4562 }
4563 vim_free(data);
4564 }
4565 }
4566 }
4567 multiline_tip = FALSE;
4568 return multiline_tip;
4569}
4570
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 static void
4572make_tooltip(beval, text, pt)
4573 BalloonEval *beval;
4574 char *text;
4575 POINT pt;
4576{
Bram Moolenaar45360022005-07-21 21:08:21 +00004577 TOOLINFO *pti;
4578 int ToolInfoSize;
4579
4580 if (multiline_balloon_available() == TRUE)
4581 ToolInfoSize = sizeof(TOOLINFO_NEW);
4582 else
4583 ToolInfoSize = sizeof(TOOLINFO);
4584
4585 pti = (TOOLINFO *)alloc(ToolInfoSize);
4586 if (pti == NULL)
4587 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588
4589 beval->balloon = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS,
4590 NULL, WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,
4591 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
4592 beval->target, NULL, s_hinst, NULL);
4593
4594 SetWindowPos(beval->balloon, HWND_TOPMOST, 0, 0, 0, 0,
4595 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
4596
Bram Moolenaar45360022005-07-21 21:08:21 +00004597 pti->cbSize = ToolInfoSize;
4598 pti->uFlags = TTF_SUBCLASS;
4599 pti->hwnd = beval->target;
4600 pti->hinst = 0; /* Don't use string resources */
4601 pti->uId = ID_BEVAL_TOOLTIP;
4602
4603 if (multiline_balloon_available() == TRUE)
4604 {
4605 RECT rect;
4606 TOOLINFO_NEW *ptin = (TOOLINFO_NEW *)pti;
4607 pti->lpszText = LPSTR_TEXTCALLBACK;
4608 ptin->lParam = (LPARAM)text;
4609 if (GetClientRect(s_textArea, &rect)) /* switch multiline tooltips on */
4610 SendMessage(beval->balloon, TTM_SETMAXTIPWIDTH, 0,
4611 (LPARAM)rect.right);
4612 }
4613 else
4614 pti->lpszText = text; /* do this old way */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615
4616 /* Limit ballooneval bounding rect to CursorPos neighbourhood */
Bram Moolenaar45360022005-07-21 21:08:21 +00004617 pti->rect.left = pt.x - 3;
4618 pti->rect.top = pt.y - 3;
4619 pti->rect.right = pt.x + 3;
4620 pti->rect.bottom = pt.y + 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621
Bram Moolenaar45360022005-07-21 21:08:21 +00004622 SendMessage(beval->balloon, TTM_ADDTOOL, 0, (LPARAM)pti);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 /* Make tooltip appear sooner */
4624 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_INITIAL, 10);
Bram Moolenaarb52e5322008-01-05 12:15:52 +00004625 /* I've performed some tests and it seems the longest possible life time
4626 * of tooltip is 30 seconds */
4627 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_AUTOPOP, 30000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 /*
4629 * HACK: force tooltip to appear, because it'll not appear until
4630 * first mouse move. D*mn M$
Bram Moolenaarb52e5322008-01-05 12:15:52 +00004631 * Amazingly moving (2, 2) and then (-1, -1) the mouse doesn't move.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 */
Bram Moolenaarb52e5322008-01-05 12:15:52 +00004633 mouse_event(MOUSEEVENTF_MOVE, 2, 2, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 mouse_event(MOUSEEVENTF_MOVE, (DWORD)-1, (DWORD)-1, 0, 0);
Bram Moolenaar45360022005-07-21 21:08:21 +00004635 vim_free(pti);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636}
4637
4638 static void
4639delete_tooltip(beval)
4640 BalloonEval *beval;
4641{
4642 DestroyWindow(beval->balloon);
4643}
4644
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004645/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646 static VOID CALLBACK
4647BevalTimerProc(hwnd, uMsg, idEvent, dwTime)
4648 HWND hwnd;
4649 UINT uMsg;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004650 UINT_PTR idEvent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 DWORD dwTime;
4652{
4653 POINT pt;
4654 RECT rect;
4655
4656 if (cur_beval == NULL || cur_beval->showState == ShS_SHOWING || !p_beval)
4657 return;
4658
4659 GetCursorPos(&pt);
4660 if (WindowFromPoint(pt) != s_textArea)
4661 return;
4662
4663 ScreenToClient(s_textArea, &pt);
4664 GetClientRect(s_textArea, &rect);
4665 if (!PtInRect(&rect, pt))
4666 return;
4667
4668 if (LastActivity > 0
4669 && (dwTime - LastActivity) >= (DWORD)p_bdlay
4670 && (cur_beval->showState != ShS_PENDING
4671 || abs(cur_beval->x - pt.x) > 3
4672 || abs(cur_beval->y - pt.y) > 3))
4673 {
4674 /* Pointer resting in one place long enough, it's time to show
4675 * the tooltip. */
4676 cur_beval->showState = ShS_PENDING;
4677 cur_beval->x = pt.x;
4678 cur_beval->y = pt.y;
4679
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004680 // TRACE0("BevalTimerProc: sending request");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681
4682 if (cur_beval->msgCB != NULL)
4683 (*cur_beval->msgCB)(cur_beval, 0);
4684 }
4685}
4686
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004687/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 void
4689gui_mch_disable_beval_area(beval)
4690 BalloonEval *beval;
4691{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004692 // TRACE0("gui_mch_disable_beval_area {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 KillTimer(s_textArea, BevalTimerId);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004694 // TRACE0("gui_mch_disable_beval_area }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695}
4696
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004697/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 void
4699gui_mch_enable_beval_area(beval)
4700 BalloonEval *beval;
4701{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004702 // TRACE0("gui_mch_enable_beval_area |||");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 if (beval == NULL)
4704 return;
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004705 // TRACE0("gui_mch_enable_beval_area {{{");
Bram Moolenaar167632f2010-05-26 21:42:54 +02004706 BevalTimerId = SetTimer(s_textArea, 0, (UINT)(p_bdlay / 2), BevalTimerProc);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004707 // TRACE0("gui_mch_enable_beval_area }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708}
4709
4710 void
4711gui_mch_post_balloon(beval, mesg)
4712 BalloonEval *beval;
4713 char_u *mesg;
4714{
4715 POINT pt;
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004716 // TRACE0("gui_mch_post_balloon {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 if (beval->showState == ShS_SHOWING)
4718 return;
4719 GetCursorPos(&pt);
4720 ScreenToClient(s_textArea, &pt);
4721
4722 if (abs(beval->x - pt.x) < 3 && abs(beval->y - pt.y) < 3)
4723 /* cursor is still here */
4724 {
4725 gui_mch_disable_beval_area(cur_beval);
4726 beval->showState = ShS_SHOWING;
4727 make_tooltip(beval, mesg, pt);
4728 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004729 // TRACE0("gui_mch_post_balloon }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730}
4731
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004732/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 BalloonEval *
4734gui_mch_create_beval_area(target, mesg, mesgCB, clientData)
4735 void *target; /* ignored, always use s_textArea */
4736 char_u *mesg;
4737 void (*mesgCB)__ARGS((BalloonEval *, int));
4738 void *clientData;
4739{
4740 /* partially stolen from gui_beval.c */
4741 BalloonEval *beval;
4742
4743 if (mesg != NULL && mesgCB != NULL)
4744 {
4745 EMSG(_("E232: Cannot create BalloonEval with both message and callback"));
4746 return NULL;
4747 }
4748
4749 beval = (BalloonEval *)alloc(sizeof(BalloonEval));
4750 if (beval != NULL)
4751 {
4752 beval->target = s_textArea;
4753 beval->balloon = NULL;
4754
4755 beval->showState = ShS_NEUTRAL;
4756 beval->x = 0;
4757 beval->y = 0;
4758 beval->msg = mesg;
4759 beval->msgCB = mesgCB;
4760 beval->clientData = clientData;
4761
4762 InitCommonControls();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763 cur_beval = beval;
4764
4765 if (p_beval)
4766 gui_mch_enable_beval_area(beval);
4767
4768 }
4769 return beval;
4770}
4771
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004772/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 static void
Bram Moolenaar442b4222010-05-24 21:34:22 +02004774Handle_WM_Notify(HWND hwnd, LPNMHDR pnmh)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775{
4776 if (pnmh->idFrom != ID_BEVAL_TOOLTIP) /* it is not our tooltip */
4777 return;
4778
4779 if (cur_beval != NULL)
4780 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004781 switch (pnmh->code)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004783 case TTN_SHOW:
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004784 // TRACE0("TTN_SHOW {{{");
4785 // TRACE0("TTN_SHOW }}}");
Bram Moolenaar45360022005-07-21 21:08:21 +00004786 break;
4787 case TTN_POP: /* Before tooltip disappear */
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004788 // TRACE0("TTN_POP {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 delete_tooltip(cur_beval);
4790 gui_mch_enable_beval_area(cur_beval);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004791 // TRACE0("TTN_POP }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792
4793 cur_beval->showState = ShS_NEUTRAL;
Bram Moolenaar45360022005-07-21 21:08:21 +00004794 break;
4795 case TTN_GETDISPINFO:
Bram Moolenaar6c9176d2008-01-03 19:45:15 +00004796 {
4797 /* if you get there then we have new common controls */
4798 NMTTDISPINFO_NEW *info = (NMTTDISPINFO_NEW *)pnmh;
4799 info->lpszText = (LPSTR)info->lParam;
4800 info->uFlags |= TTF_DI_SETITEM;
4801 }
Bram Moolenaar45360022005-07-21 21:08:21 +00004802 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 }
4804 }
4805}
4806
4807 static void
4808TrackUserActivity(UINT uMsg)
4809{
4810 if ((uMsg >= WM_MOUSEFIRST && uMsg <= WM_MOUSELAST)
4811 || (uMsg >= WM_KEYFIRST && uMsg <= WM_KEYLAST))
4812 LastActivity = GetTickCount();
4813}
4814
4815 void
4816gui_mch_destroy_beval_area(beval)
4817 BalloonEval *beval;
4818{
4819 vim_free(beval);
4820}
4821#endif /* FEAT_BEVAL */
4822
4823#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
4824/*
4825 * We have multiple signs to draw at the same location. Draw the
4826 * multi-sign indicator (down-arrow) instead. This is the Win32 version.
4827 */
4828 void
4829netbeans_draw_multisign_indicator(int row)
4830{
4831 int i;
4832 int y;
4833 int x;
4834
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004835 if (!netbeans_active())
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004836 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004837
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 x = 0;
4839 y = TEXT_Y(row);
4840
4841 for (i = 0; i < gui.char_height - 3; i++)
4842 SetPixel(s_hdc, x+2, y++, gui.currFgColor);
4843
4844 SetPixel(s_hdc, x+0, y, gui.currFgColor);
4845 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4846 SetPixel(s_hdc, x+4, y++, gui.currFgColor);
4847 SetPixel(s_hdc, x+1, y, gui.currFgColor);
4848 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4849 SetPixel(s_hdc, x+3, y++, gui.currFgColor);
4850 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4851}
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004852
4853/*
4854 * Initialize the Winsock dll.
4855 */
4856 void
4857netbeans_init_winsock()
4858{
4859 WSADATA wsaData;
4860 int wsaerr;
4861
4862 if (WSInitialized)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004863 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004864
4865 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
4866 if (wsaerr == 0)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004867 WSInitialized = TRUE;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004868}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869#endif