blob: 0966afe4012b203daec6d5d62cae048e337d0a1e [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
201/*
202 * excerpts from headers since this may not be presented
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000203 * in the extremely old compilers
Bram Moolenaar45360022005-07-21 21:08:21 +0000204 */
205#include <pshpack1.h>
206
207typedef struct _DllVersionInfo
208{
209 DWORD cbSize;
210 DWORD dwMajorVersion;
211 DWORD dwMinorVersion;
212 DWORD dwBuildNumber;
213 DWORD dwPlatformID;
214} DLLVERSIONINFO;
215
Bram Moolenaar281daf62009-12-24 15:11:40 +0000216#include <poppack.h>
217
Bram Moolenaar45360022005-07-21 21:08:21 +0000218typedef struct tagTOOLINFOA_NEW
219{
220 UINT cbSize;
221 UINT uFlags;
222 HWND hwnd;
Bram Moolenaar281daf62009-12-24 15:11:40 +0000223 UINT_PTR uId;
Bram Moolenaar45360022005-07-21 21:08:21 +0000224 RECT rect;
225 HINSTANCE hinst;
226 LPSTR lpszText;
227 LPARAM lParam;
228} TOOLINFO_NEW;
229
230typedef struct tagNMTTDISPINFO_NEW
231{
232 NMHDR hdr;
Bram Moolenaar281daf62009-12-24 15:11:40 +0000233 LPSTR lpszText;
Bram Moolenaar45360022005-07-21 21:08:21 +0000234 char szText[80];
235 HINSTANCE hinst;
236 UINT uFlags;
237 LPARAM lParam;
238} NMTTDISPINFO_NEW;
239
Bram Moolenaar45360022005-07-21 21:08:21 +0000240typedef HRESULT (WINAPI* DLLGETVERSIONPROC)(DLLVERSIONINFO *);
241#ifndef TTM_SETMAXTIPWIDTH
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000242# define TTM_SETMAXTIPWIDTH (WM_USER+24)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243#endif
244
Bram Moolenaar45360022005-07-21 21:08:21 +0000245#ifndef TTF_DI_SETITEM
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000246# define TTF_DI_SETITEM 0x8000
Bram Moolenaar45360022005-07-21 21:08:21 +0000247#endif
248
249#ifndef TTN_GETDISPINFO
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000250# define TTN_GETDISPINFO (TTN_FIRST - 0)
Bram Moolenaar45360022005-07-21 21:08:21 +0000251#endif
252
253#endif /* defined(FEAT_BEVAL) */
254
Bram Moolenaar2c7a7632007-05-10 18:19:11 +0000255#if defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
256/* Older MSVC compilers don't have LPNMTTDISPINFO[AW] thus we need to define
257 * it here if LPNMTTDISPINFO isn't defined.
258 * MingW doesn't define LPNMTTDISPINFO but typedefs it. Thus we need to check
259 * _MSC_VER. */
260# if !defined(LPNMTTDISPINFO) && defined(_MSC_VER)
261typedef struct tagNMTTDISPINFOA {
262 NMHDR hdr;
263 LPSTR lpszText;
264 char szText[80];
265 HINSTANCE hinst;
266 UINT uFlags;
267 LPARAM lParam;
268} NMTTDISPINFOA, *LPNMTTDISPINFOA;
269# define LPNMTTDISPINFO LPNMTTDISPINFOA
270
271# ifdef FEAT_MBYTE
272typedef struct tagNMTTDISPINFOW {
273 NMHDR hdr;
274 LPWSTR lpszText;
275 WCHAR szText[80];
276 HINSTANCE hinst;
277 UINT uFlags;
278 LPARAM lParam;
279} NMTTDISPINFOW, *LPNMTTDISPINFOW;
280# endif
281# endif
282#endif
283
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000284#ifndef TTN_GETDISPINFOW
285# define TTN_GETDISPINFOW (TTN_FIRST - 10)
286#endif
287
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288/* Local variables: */
289
290#ifdef FEAT_MENU
291static UINT s_menu_id = 100;
Bram Moolenaar786989b2010-10-27 12:15:33 +0200292#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293
294/*
295 * Use the system font for dialogs and tear-off menus. Remove this line to
296 * use DLG_FONT_NAME.
297 */
Bram Moolenaar786989b2010-10-27 12:15:33 +0200298#define USE_SYSMENU_FONT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299
300#define VIM_NAME "vim"
301#define VIM_CLASS "Vim"
302#define VIM_CLASSW L"Vim"
303
304/* Initial size for the dialog template. For gui_mch_dialog() it's fixed,
305 * thus there should be room for every dialog. For tearoffs it's made bigger
306 * when needed. */
307#define DLG_ALLOC_SIZE 16 * 1024
308
309/*
310 * stuff for dialogs, menus, tearoffs etc.
311 */
312static LRESULT APIENTRY dialog_callback(HWND, UINT, WPARAM, LPARAM);
313static LRESULT APIENTRY tearoff_callback(HWND, UINT, WPARAM, LPARAM);
314static PWORD
315add_dialog_element(
316 PWORD p,
317 DWORD lStyle,
318 WORD x,
319 WORD y,
320 WORD w,
321 WORD h,
322 WORD Id,
323 WORD clss,
324 const char *caption);
325static LPWORD lpwAlign(LPWORD);
326static int nCopyAnsiToWideChar(LPWORD, LPSTR);
327static void gui_mch_tearoff(char_u *title, vimmenu_T *menu, int initX, int initY);
328static void get_dialog_font_metrics(void);
329
330static int dialog_default_button = -1;
331
332/* Intellimouse support */
333static int mouse_scroll_lines = 0;
334static UINT msh_msgmousewheel = 0;
335
336static int s_usenewlook; /* emulate W95/NT4 non-bold dialogs */
337#ifdef FEAT_TOOLBAR
338static void initialise_toolbar(void);
339static int get_toolbar_bitmap(vimmenu_T *menu);
340#endif
341
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000342#ifdef FEAT_GUI_TABLINE
343static void initialise_tabline(void);
344#endif
345
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346#ifdef FEAT_MBYTE_IME
347static LRESULT _OnImeComposition(HWND hwnd, WPARAM dbcs, LPARAM param);
348static char_u *GetResultStr(HWND hwnd, int GCS, int *lenp);
349#endif
350#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
351# ifdef NOIME
352typedef struct tagCOMPOSITIONFORM {
353 DWORD dwStyle;
354 POINT ptCurrentPos;
355 RECT rcArea;
356} COMPOSITIONFORM, *PCOMPOSITIONFORM, NEAR *NPCOMPOSITIONFORM, FAR *LPCOMPOSITIONFORM;
357typedef HANDLE HIMC;
358# endif
359
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000360static HINSTANCE hLibImm = NULL;
361static LONG (WINAPI *pImmGetCompositionStringA)(HIMC, DWORD, LPVOID, DWORD);
362static LONG (WINAPI *pImmGetCompositionStringW)(HIMC, DWORD, LPVOID, DWORD);
363static HIMC (WINAPI *pImmGetContext)(HWND);
364static HIMC (WINAPI *pImmAssociateContext)(HWND, HIMC);
365static BOOL (WINAPI *pImmReleaseContext)(HWND, HIMC);
366static BOOL (WINAPI *pImmGetOpenStatus)(HIMC);
367static BOOL (WINAPI *pImmSetOpenStatus)(HIMC, BOOL);
368static BOOL (WINAPI *pImmGetCompositionFont)(HIMC, LPLOGFONTA);
369static BOOL (WINAPI *pImmSetCompositionFont)(HIMC, LPLOGFONTA);
370static BOOL (WINAPI *pImmSetCompositionWindow)(HIMC, LPCOMPOSITIONFORM);
371static BOOL (WINAPI *pImmGetConversionStatus)(HIMC, LPDWORD, LPDWORD);
Bram Moolenaarca003e12006-03-17 23:19:38 +0000372static BOOL (WINAPI *pImmSetConversionStatus)(HIMC, DWORD, DWORD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373static void dyn_imm_load(void);
374#else
375# define pImmGetCompositionStringA ImmGetCompositionStringA
376# define pImmGetCompositionStringW ImmGetCompositionStringW
377# define pImmGetContext ImmGetContext
378# define pImmAssociateContext ImmAssociateContext
379# define pImmReleaseContext ImmReleaseContext
380# define pImmGetOpenStatus ImmGetOpenStatus
381# define pImmSetOpenStatus ImmSetOpenStatus
382# define pImmGetCompositionFont ImmGetCompositionFontA
383# define pImmSetCompositionFont ImmSetCompositionFontA
384# define pImmSetCompositionWindow ImmSetCompositionWindow
385# define pImmGetConversionStatus ImmGetConversionStatus
Bram Moolenaarca003e12006-03-17 23:19:38 +0000386# define pImmSetConversionStatus ImmSetConversionStatus
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387#endif
388
389#ifndef ETO_IGNORELANGUAGE
390# define ETO_IGNORELANGUAGE 0x1000
391#endif
392
393/* multi monitor support */
394typedef struct _MONITORINFOstruct
395{
396 DWORD cbSize;
397 RECT rcMonitor;
398 RECT rcWork;
399 DWORD dwFlags;
400} _MONITORINFO;
401
402typedef HANDLE _HMONITOR;
403typedef _HMONITOR (WINAPI *TMonitorFromWindow)(HWND, DWORD);
404typedef BOOL (WINAPI *TGetMonitorInfo)(_HMONITOR, _MONITORINFO *);
405
406static TMonitorFromWindow pMonitorFromWindow = NULL;
407static TGetMonitorInfo pGetMonitorInfo = NULL;
408static HANDLE user32_lib = NULL;
409#ifdef FEAT_NETBEANS_INTG
410int WSInitialized = FALSE; /* WinSock is initialized */
411#endif
412/*
413 * Return TRUE when running under Windows NT 3.x or Win32s, both of which have
414 * less fancy GUI APIs.
415 */
416 static int
417is_winnt_3(void)
418{
419 return ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
420 && os_version.dwMajorVersion == 3)
421 || (os_version.dwPlatformId == VER_PLATFORM_WIN32s));
422}
423
424/*
425 * Return TRUE when running under Win32s.
426 */
427 int
428gui_is_win32s(void)
429{
430 return (os_version.dwPlatformId == VER_PLATFORM_WIN32s);
431}
432
433#ifdef FEAT_MENU
434/*
435 * Figure out how high the menu bar is at the moment.
436 */
437 static int
438gui_mswin_get_menu_height(
439 int fix_window) /* If TRUE, resize window if menu height changed */
440{
441 static int old_menu_height = -1;
442
443 RECT rc1, rc2;
444 int num;
445 int menu_height;
446
447 if (gui.menu_is_active)
448 num = GetMenuItemCount(s_menuBar);
449 else
450 num = 0;
451
452 if (num == 0)
453 menu_height = 0;
454 else
455 {
456 if (is_winnt_3()) /* for NT 3.xx */
457 {
458 if (gui.starting)
459 menu_height = GetSystemMetrics(SM_CYMENU);
460 else
461 {
462 RECT r1, r2;
463 int frameht = GetSystemMetrics(SM_CYFRAME);
464 int capht = GetSystemMetrics(SM_CYCAPTION);
465
466 /* get window rect of s_hwnd
467 * get client rect of s_hwnd
468 * get cap height
469 * subtract from window rect, the sum of client height,
470 * (if not maximized)frame thickness, and caption height.
471 */
472 GetWindowRect(s_hwnd, &r1);
473 GetClientRect(s_hwnd, &r2);
474 menu_height = r1.bottom - r1.top - (r2.bottom - r2.top
475 + 2 * frameht * (!IsZoomed(s_hwnd)) + capht);
476 }
477 }
478 else /* win95 and variants (NT 4.0, I guess) */
479 {
480 /*
481 * In case 'lines' is set in _vimrc/_gvimrc window width doesn't
482 * seem to have been set yet, so menu wraps in default window
483 * width which is very narrow. Instead just return height of a
484 * single menu item. Will still be wrong when the menu really
485 * should wrap over more than one line.
486 */
487 GetMenuItemRect(s_hwnd, s_menuBar, 0, &rc1);
488 if (gui.starting)
489 menu_height = rc1.bottom - rc1.top + 1;
490 else
491 {
492 GetMenuItemRect(s_hwnd, s_menuBar, num - 1, &rc2);
493 menu_height = rc2.bottom - rc1.top + 1;
494 }
495 }
496 }
497
498 if (fix_window && menu_height != old_menu_height)
499 {
500 old_menu_height = menu_height;
Bram Moolenaarafa24992006-03-27 20:58:26 +0000501 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 }
503
504 return menu_height;
505}
506#endif /*FEAT_MENU*/
507
508
509/*
510 * Setup for the Intellimouse
511 */
512 static void
513init_mouse_wheel(void)
514{
515
516#ifndef SPI_GETWHEELSCROLLLINES
517# define SPI_GETWHEELSCROLLLINES 104
518#endif
Bram Moolenaare7566042005-06-17 22:00:15 +0000519#ifndef SPI_SETWHEELSCROLLLINES
520# define SPI_SETWHEELSCROLLLINES 105
521#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522
523#define VMOUSEZ_CLASSNAME "MouseZ" /* hidden wheel window class */
524#define VMOUSEZ_TITLE "Magellan MSWHEEL" /* hidden wheel window title */
525#define VMSH_MOUSEWHEEL "MSWHEEL_ROLLMSG"
526#define VMSH_SCROLL_LINES "MSH_SCROLL_LINES_MSG"
527
528 HWND hdl_mswheel;
529 UINT msh_msgscrolllines;
530
531 msh_msgmousewheel = 0;
532 mouse_scroll_lines = 3; /* reasonable default */
533
534 if ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
535 && os_version.dwMajorVersion >= 4)
536 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
537 && ((os_version.dwMajorVersion == 4
538 && os_version.dwMinorVersion >= 10)
539 || os_version.dwMajorVersion >= 5)))
540 {
541 /* if NT 4.0+ (or Win98) get scroll lines directly from system */
542 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
543 &mouse_scroll_lines, 0);
544 }
545 else if (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
546 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
547 && os_version.dwMajorVersion < 4))
548 { /*
549 * If Win95 or NT 3.51,
550 * try to find the hidden point32 window.
551 */
552 hdl_mswheel = FindWindow(VMOUSEZ_CLASSNAME, VMOUSEZ_TITLE);
553 if (hdl_mswheel)
554 {
555 msh_msgscrolllines = RegisterWindowMessage(VMSH_SCROLL_LINES);
556 if (msh_msgscrolllines)
557 {
558 mouse_scroll_lines = (int)SendMessage(hdl_mswheel,
559 msh_msgscrolllines, 0, 0);
560 msh_msgmousewheel = RegisterWindowMessage(VMSH_MOUSEWHEEL);
561 }
562 }
563 }
564}
565
566
567/* Intellimouse wheel handler */
568 static void
569_OnMouseWheel(
570 HWND hwnd,
571 short zDelta)
572{
573/* Treat a mouse wheel event as if it were a scroll request */
574 int i;
575 int size;
576 HWND hwndCtl;
577
578 if (curwin->w_scrollbars[SBAR_RIGHT].id != 0)
579 {
580 hwndCtl = curwin->w_scrollbars[SBAR_RIGHT].id;
581 size = curwin->w_scrollbars[SBAR_RIGHT].size;
582 }
583 else if (curwin->w_scrollbars[SBAR_LEFT].id != 0)
584 {
585 hwndCtl = curwin->w_scrollbars[SBAR_LEFT].id;
586 size = curwin->w_scrollbars[SBAR_LEFT].size;
587 }
588 else
589 return;
590
591 size = curwin->w_height;
592 if (mouse_scroll_lines == 0)
593 init_mouse_wheel();
594
595 if (mouse_scroll_lines > 0
596 && mouse_scroll_lines < (size > 2 ? size - 2 : 1))
597 {
598 for (i = mouse_scroll_lines; i > 0; --i)
599 _OnScroll(hwnd, hwndCtl, zDelta >= 0 ? SB_LINEUP : SB_LINEDOWN, 0);
600 }
601 else
602 _OnScroll(hwnd, hwndCtl, zDelta >= 0 ? SB_PAGEUP : SB_PAGEDOWN, 0);
603}
604
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000605#ifdef USE_SYSMENU_FONT
606/*
607 * Get Menu Font.
608 * Return OK or FAIL.
609 */
610 static int
611gui_w32_get_menu_font(LOGFONT *lf)
612{
613 NONCLIENTMETRICS nm;
614
615 nm.cbSize = sizeof(NONCLIENTMETRICS);
616 if (!SystemParametersInfo(
617 SPI_GETNONCLIENTMETRICS,
618 sizeof(NONCLIENTMETRICS),
619 &nm,
620 0))
621 return FAIL;
622 *lf = nm.lfMenuFont;
623 return OK;
624}
625#endif
626
627
628#if defined(FEAT_GUI_TABLINE) && defined(USE_SYSMENU_FONT)
629/*
630 * Set the GUI tabline font to the system menu font
631 */
632 static void
633set_tabline_font(void)
634{
635 LOGFONT lfSysmenu;
636 HFONT font;
637 HWND hwnd;
638 HDC hdc;
639 HFONT hfntOld;
640 TEXTMETRIC tm;
641
642 if (gui_w32_get_menu_font(&lfSysmenu) != OK)
643 return;
644
645 font = CreateFontIndirect(&lfSysmenu);
646
647 SendMessage(s_tabhwnd, WM_SETFONT, (WPARAM)font, TRUE);
648
649 /*
650 * Compute the height of the font used for the tab text
651 */
652 hwnd = GetDesktopWindow();
653 hdc = GetWindowDC(hwnd);
654 hfntOld = SelectFont(hdc, font);
655
656 GetTextMetrics(hdc, &tm);
657
658 SelectFont(hdc, hfntOld);
659 ReleaseDC(hwnd, hdc);
660
661 /*
662 * The space used by the tab border and the space between the tab label
663 * and the tab border is included as 7.
664 */
665 gui.tabline_height = tm.tmHeight + tm.tmInternalLeading + 7;
666}
667#endif
668
Bram Moolenaar520470a2005-06-16 21:59:56 +0000669/*
670 * Invoked when a setting was changed.
671 */
672 static LRESULT CALLBACK
673_OnSettingChange(UINT n)
674{
675 if (n == SPI_SETWHEELSCROLLLINES)
676 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
677 &mouse_scroll_lines, 0);
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000678#if defined(FEAT_GUI_TABLINE) && defined(USE_SYSMENU_FONT)
679 if (n == SPI_SETNONCLIENTMETRICS)
680 set_tabline_font();
681#endif
Bram Moolenaar520470a2005-06-16 21:59:56 +0000682 return 0;
683}
684
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685#ifdef FEAT_NETBEANS_INTG
686 static void
687_OnWindowPosChanged(
688 HWND hwnd,
689 const LPWINDOWPOS lpwpos)
690{
691 static int x = 0, y = 0, cx = 0, cy = 0;
692
693 if (WSInitialized && (lpwpos->x != x || lpwpos->y != y
694 || lpwpos->cx != cx || lpwpos->cy != cy))
695 {
696 x = lpwpos->x;
697 y = lpwpos->y;
698 cx = lpwpos->cx;
699 cy = lpwpos->cy;
700 netbeans_frame_moved(x, y);
701 }
702 /* Allow to send WM_SIZE and WM_MOVE */
703 FORWARD_WM_WINDOWPOSCHANGED(hwnd, lpwpos, MyWindowProc);
704}
705#endif
706
707 static int
708_DuringSizing(
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 UINT fwSide,
710 LPRECT lprc)
711{
712 int w, h;
713 int valid_w, valid_h;
714 int w_offset, h_offset;
715
716 w = lprc->right - lprc->left;
717 h = lprc->bottom - lprc->top;
718 gui_mswin_get_valid_dimensions(w, h, &valid_w, &valid_h);
719 w_offset = w - valid_w;
720 h_offset = h - valid_h;
721
722 if (fwSide == WMSZ_LEFT || fwSide == WMSZ_TOPLEFT
723 || fwSide == WMSZ_BOTTOMLEFT)
724 lprc->left += w_offset;
725 else if (fwSide == WMSZ_RIGHT || fwSide == WMSZ_TOPRIGHT
726 || fwSide == WMSZ_BOTTOMRIGHT)
727 lprc->right -= w_offset;
728
729 if (fwSide == WMSZ_TOP || fwSide == WMSZ_TOPLEFT
730 || fwSide == WMSZ_TOPRIGHT)
731 lprc->top += h_offset;
732 else if (fwSide == WMSZ_BOTTOM || fwSide == WMSZ_BOTTOMLEFT
733 || fwSide == WMSZ_BOTTOMRIGHT)
734 lprc->bottom -= h_offset;
735 return TRUE;
736}
737
738
739
740 static LRESULT CALLBACK
741_WndProc(
742 HWND hwnd,
743 UINT uMsg,
744 WPARAM wParam,
745 LPARAM lParam)
746{
747 /*
748 TRACE("WndProc: hwnd = %08x, msg = %x, wParam = %x, lParam = %x\n",
749 hwnd, uMsg, wParam, lParam);
750 */
751
752 HandleMouseHide(uMsg, lParam);
753
754 s_uMsg = uMsg;
755 s_wParam = wParam;
756 s_lParam = lParam;
757
758 switch (uMsg)
759 {
760 HANDLE_MSG(hwnd, WM_DEADCHAR, _OnDeadChar);
761 HANDLE_MSG(hwnd, WM_SYSDEADCHAR, _OnDeadChar);
762 /* HANDLE_MSG(hwnd, WM_ACTIVATE, _OnActivate); */
763 HANDLE_MSG(hwnd, WM_CLOSE, _OnClose);
764 /* HANDLE_MSG(hwnd, WM_COMMAND, _OnCommand); */
765 HANDLE_MSG(hwnd, WM_DESTROY, _OnDestroy);
766 HANDLE_MSG(hwnd, WM_DROPFILES, _OnDropFiles);
767 HANDLE_MSG(hwnd, WM_HSCROLL, _OnScroll);
768 HANDLE_MSG(hwnd, WM_KILLFOCUS, _OnKillFocus);
769#ifdef FEAT_MENU
770 HANDLE_MSG(hwnd, WM_COMMAND, _OnMenu);
771#endif
772 /* HANDLE_MSG(hwnd, WM_MOVE, _OnMove); */
773 /* HANDLE_MSG(hwnd, WM_NCACTIVATE, _OnNCActivate); */
774 HANDLE_MSG(hwnd, WM_SETFOCUS, _OnSetFocus);
775 HANDLE_MSG(hwnd, WM_SIZE, _OnSize);
776 /* HANDLE_MSG(hwnd, WM_SYSCOMMAND, _OnSysCommand); */
777 /* HANDLE_MSG(hwnd, WM_SYSKEYDOWN, _OnAltKey); */
778 HANDLE_MSG(hwnd, WM_VSCROLL, _OnScroll);
779 // HANDLE_MSG(hwnd, WM_WINDOWPOSCHANGING, _OnWindowPosChanging);
780 HANDLE_MSG(hwnd, WM_ACTIVATEAPP, _OnActivateApp);
781#ifdef FEAT_NETBEANS_INTG
782 HANDLE_MSG(hwnd, WM_WINDOWPOSCHANGED, _OnWindowPosChanged);
783#endif
784
Bram Moolenaarafa24992006-03-27 20:58:26 +0000785#ifdef FEAT_GUI_TABLINE
786 case WM_RBUTTONUP:
787 {
788 if (gui_mch_showing_tabline())
789 {
790 POINT pt;
791 RECT rect;
792
793 /*
794 * If the cursor is on the tabline, display the tab menu
795 */
796 GetCursorPos((LPPOINT)&pt);
797 GetWindowRect(s_textArea, &rect);
798 if (pt.y < rect.top)
799 {
800 show_tabline_popup_menu();
801 return 0;
802 }
803 }
804 return MyWindowProc(hwnd, uMsg, wParam, lParam);
805 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000806 case WM_LBUTTONDBLCLK:
807 {
808 /*
809 * If the user double clicked the tabline, create a new tab
810 */
811 if (gui_mch_showing_tabline())
812 {
813 POINT pt;
814 RECT rect;
815
816 GetCursorPos((LPPOINT)&pt);
817 GetWindowRect(s_textArea, &rect);
818 if (pt.y < rect.top)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000819 send_tabline_menu_event(0, TABLINE_MENU_NEW);
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000820 }
821 return MyWindowProc(hwnd, uMsg, wParam, lParam);
822 }
Bram Moolenaarafa24992006-03-27 20:58:26 +0000823#endif
824
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 case WM_QUERYENDSESSION: /* System wants to go down. */
826 gui_shell_closed(); /* Will exit when no changed buffers. */
827 return FALSE; /* Do NOT allow system to go down. */
828
829 case WM_ENDSESSION:
830 if (wParam) /* system only really goes down when wParam is TRUE */
831 _OnEndSession();
832 break;
833
834 case WM_CHAR:
835 /* Don't use HANDLE_MSG() for WM_CHAR, it truncates wParam to a single
836 * byte while we want the UTF-16 character value. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000837 _OnChar(hwnd, (UINT)wParam, (int)(short)LOWORD(lParam));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 return 0L;
839
840 case WM_SYSCHAR:
841 /*
842 * if 'winaltkeys' is "no", or it's "menu" and it's not a menu
843 * shortcut key, handle like a typed ALT key, otherwise call Windows
844 * ALT key handling.
845 */
846#ifdef FEAT_MENU
847 if ( !gui.menu_is_active
848 || p_wak[0] == 'n'
849 || (p_wak[0] == 'm' && !gui_is_menu_shortcut((int)wParam))
850 )
851#endif
852 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000853 _OnSysChar(hwnd, (UINT)wParam, (int)(short)LOWORD(lParam));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 return 0L;
855 }
856#ifdef FEAT_MENU
857 else
858 return MyWindowProc(hwnd, uMsg, wParam, lParam);
859#endif
860
861 case WM_SYSKEYUP:
862#ifdef FEAT_MENU
863 /* This used to be done only when menu is active: ALT key is used for
864 * that. But that caused problems when menu is disabled and using
865 * Alt-Tab-Esc: get into a strange state where no mouse-moved events
866 * are received, mouse pointer remains hidden. */
867 return MyWindowProc(hwnd, uMsg, wParam, lParam);
868#else
869 return 0;
870#endif
871
872 case WM_SIZING: /* HANDLE_MSG doesn't seem to handle this one */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000873 return _DuringSizing((UINT)wParam, (LPRECT)lParam);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874
875 case WM_MOUSEWHEEL:
876 _OnMouseWheel(hwnd, HIWORD(wParam));
877 break;
878
Bram Moolenaar520470a2005-06-16 21:59:56 +0000879 /* Notification for change in SystemParametersInfo() */
880 case WM_SETTINGCHANGE:
881 return _OnSettingChange((UINT)wParam);
882
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000883#if defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 case WM_NOTIFY:
885 switch (((LPNMHDR) lParam)->code)
886 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000887# ifdef FEAT_MBYTE
888 case TTN_GETDISPINFOW:
889# endif
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000890 case TTN_GETDISPINFO:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000892 LPNMHDR hdr = (LPNMHDR)lParam;
893 char_u *str = NULL;
894 static void *tt_text = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000895
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000896 vim_free(tt_text);
897 tt_text = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000898
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000899# ifdef FEAT_GUI_TABLINE
900 if (gui_mch_showing_tabline()
901 && hdr->hwndFrom == TabCtrl_GetToolTips(s_tabhwnd))
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000902 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000903 POINT pt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000904 /*
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000905 * Mouse is over the GUI tabline. Display the
906 * tooltip for the tab under the cursor
907 *
908 * Get the cursor position within the tab control
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000909 */
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000910 GetCursorPos(&pt);
911 if (ScreenToClient(s_tabhwnd, &pt) != 0)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000912 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000913 TCHITTESTINFO htinfo;
914 int idx;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000915
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000916 /*
917 * Get the tab under the cursor
918 */
919 htinfo.pt.x = pt.x;
920 htinfo.pt.y = pt.y;
921 idx = TabCtrl_HitTest(s_tabhwnd, &htinfo);
922 if (idx != -1)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000923 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000924 tabpage_T *tp;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000925
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000926 tp = find_tabpage(idx + 1);
927 if (tp != NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000928 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000929 get_tabline_label(tp, TRUE);
930 str = NameBuff;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000931 }
932 }
933 }
934 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000935# endif
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000936# ifdef FEAT_TOOLBAR
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000937# ifdef FEAT_GUI_TABLINE
938 else
939# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000941 UINT idButton;
942 vimmenu_T *pMenu;
943
944 idButton = (UINT) hdr->idFrom;
945 pMenu = gui_mswin_find_menu(root_menu, idButton);
946 if (pMenu)
947 str = pMenu->strings[MENU_INDEX_TIP];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000949# endif
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000950 if (str != NULL)
951 {
952# ifdef FEAT_MBYTE
953 if (hdr->code == TTN_GETDISPINFOW)
954 {
955 LPNMTTDISPINFOW lpdi = (LPNMTTDISPINFOW)lParam;
956
Bram Moolenaar6c9176d2008-01-03 19:45:15 +0000957 /* Set the maximum width, this also enables using
958 * \n for line break. */
959 SendMessage(lpdi->hdr.hwndFrom, TTM_SETMAXTIPWIDTH,
960 0, 500);
961
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000962 tt_text = enc_to_utf16(str, NULL);
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000963 lpdi->lpszText = tt_text;
964 /* can't show tooltip if failed */
965 }
966 else
967# endif
968 {
969 LPNMTTDISPINFO lpdi = (LPNMTTDISPINFO)lParam;
970
Bram Moolenaar6c9176d2008-01-03 19:45:15 +0000971 /* Set the maximum width, this also enables using
972 * \n for line break. */
973 SendMessage(lpdi->hdr.hwndFrom, TTM_SETMAXTIPWIDTH,
974 0, 500);
975
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000976 if (STRLEN(str) < sizeof(lpdi->szText)
977 || ((tt_text = vim_strsave(str)) == NULL))
978 vim_strncpy(lpdi->szText, str,
979 sizeof(lpdi->szText) - 1);
980 else
981 lpdi->lpszText = tt_text;
982 }
983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984 }
985 break;
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000986# ifdef FEAT_GUI_TABLINE
987 case TCN_SELCHANGE:
988 if (gui_mch_showing_tabline()
989 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
990 send_tabline_event(TabCtrl_GetCurSel(s_tabhwnd) + 1);
991 break;
Bram Moolenaarafa24992006-03-27 20:58:26 +0000992
993 case NM_RCLICK:
994 if (gui_mch_showing_tabline()
995 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
996 show_tabline_popup_menu();
997 break;
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000998# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 default:
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001000# ifdef FEAT_GUI_TABLINE
1001 if (gui_mch_showing_tabline()
1002 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
1003 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1004# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 break;
1006 }
1007 break;
1008#endif
1009#if defined(MENUHINTS) && defined(FEAT_MENU)
1010 case WM_MENUSELECT:
1011 if (((UINT) HIWORD(wParam)
1012 & (0xffff ^ (MF_MOUSESELECT + MF_BITMAP + MF_POPUP)))
1013 == MF_HILITE
1014 && (State & CMDLINE) == 0)
1015 {
1016 UINT idButton;
1017 vimmenu_T *pMenu;
1018 static int did_menu_tip = FALSE;
1019
1020 if (did_menu_tip)
1021 {
1022 msg_clr_cmdline();
1023 setcursor();
1024 out_flush();
1025 did_menu_tip = FALSE;
1026 }
1027
1028 idButton = (UINT)LOWORD(wParam);
1029 pMenu = gui_mswin_find_menu(root_menu, idButton);
1030 if (pMenu != NULL && pMenu->strings[MENU_INDEX_TIP] != 0
1031 && GetMenuState(s_menuBar, pMenu->id, MF_BYCOMMAND) != -1)
1032 {
Bram Moolenaar2d8ab992007-06-19 08:06:18 +00001033 ++msg_hist_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 msg(pMenu->strings[MENU_INDEX_TIP]);
Bram Moolenaar2d8ab992007-06-19 08:06:18 +00001035 --msg_hist_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 setcursor();
1037 out_flush();
1038 did_menu_tip = TRUE;
1039 }
1040 }
1041 break;
1042#endif
1043 case WM_NCHITTEST:
1044 {
1045 LRESULT result;
1046 int x, y;
1047 int xPos = GET_X_LPARAM(lParam);
1048
1049 result = MyWindowProc(hwnd, uMsg, wParam, lParam);
1050 if (result == HTCLIENT)
1051 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001052#ifdef FEAT_GUI_TABLINE
1053 if (gui_mch_showing_tabline())
1054 {
1055 int yPos = GET_Y_LPARAM(lParam);
1056 RECT rct;
1057
1058 /* If the cursor is on the GUI tabline, don't process this
1059 * event */
1060 GetWindowRect(s_textArea, &rct);
1061 if (yPos < rct.top)
1062 return result;
1063 }
1064#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 gui_mch_get_winpos(&x, &y);
1066 xPos -= x;
1067
1068 if (xPos < 48) /* <VN> TODO should use system metric? */
1069 return HTBOTTOMLEFT;
1070 else
1071 return HTBOTTOMRIGHT;
1072 }
1073 else
1074 return result;
1075 }
1076 /* break; notreached */
1077
1078#ifdef FEAT_MBYTE_IME
1079 case WM_IME_NOTIFY:
1080 if (!_OnImeNotify(hwnd, (DWORD)wParam, (DWORD)lParam))
1081 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1082 break;
1083 case WM_IME_COMPOSITION:
1084 if (!_OnImeComposition(hwnd, wParam, lParam))
1085 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1086 break;
1087#endif
1088
1089 default:
1090 if (uMsg == msh_msgmousewheel && msh_msgmousewheel != 0)
1091 { /* handle MSH_MOUSEWHEEL messages for Intellimouse */
1092 _OnMouseWheel(hwnd, HIWORD(wParam));
1093 break;
1094 }
1095#ifdef MSWIN_FIND_REPLACE
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001096 else if (uMsg == s_findrep_msg && s_findrep_msg != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 {
1098 _OnFindRepl();
1099 }
1100#endif
1101 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1102 }
1103
1104 return 1;
1105}
1106
1107/*
1108 * End of call-back routines
1109 */
1110
1111/* parent window, if specified with -P */
1112HWND vim_parent_hwnd = NULL;
1113
1114 static BOOL CALLBACK
1115FindWindowTitle(HWND hwnd, LPARAM lParam)
1116{
1117 char buf[2048];
1118 char *title = (char *)lParam;
1119
1120 if (GetWindowText(hwnd, buf, sizeof(buf)))
1121 {
1122 if (strstr(buf, title) != NULL)
1123 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001124 /* Found it. Store the window ref. and quit searching if MDI
1125 * works. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 vim_parent_hwnd = FindWindowEx(hwnd, NULL, "MDIClient", NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001127 if (vim_parent_hwnd != NULL)
1128 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 }
1130 }
1131 return TRUE; /* continue searching */
1132}
1133
1134/*
1135 * Invoked for '-P "title"' argument: search for parent application to open
1136 * our window in.
1137 */
1138 void
1139gui_mch_set_parent(char *title)
1140{
1141 EnumWindows(FindWindowTitle, (LPARAM)title);
1142 if (vim_parent_hwnd == NULL)
1143 {
1144 EMSG2(_("E671: Cannot find window title \"%s\""), title);
1145 mch_exit(2);
1146 }
1147}
1148
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001149#ifndef FEAT_OLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 static void
1151ole_error(char *arg)
1152{
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00001153 char buf[IOSIZE];
1154
1155 /* Can't use EMSG() here, we have not finished initialisation yet. */
1156 vim_snprintf(buf, IOSIZE,
1157 _("E243: Argument not supported: \"-%s\"; Use the OLE version."),
1158 arg);
1159 mch_errmsg(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001161#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162
1163/*
1164 * Parse the GUI related command-line arguments. Any arguments used are
1165 * deleted from argv, and *argc is decremented accordingly. This is called
1166 * when vim is started, whether or not the GUI has been started.
1167 */
1168 void
1169gui_mch_prepare(int *argc, char **argv)
1170{
1171 int silent = FALSE;
1172 int idx;
1173
1174 /* Check for special OLE command line parameters */
1175 if ((*argc == 2 || *argc == 3) && (argv[1][0] == '-' || argv[1][0] == '/'))
1176 {
1177 /* Check for a "-silent" argument first. */
1178 if (*argc == 3 && STRICMP(argv[1] + 1, "silent") == 0
1179 && (argv[2][0] == '-' || argv[2][0] == '/'))
1180 {
1181 silent = TRUE;
1182 idx = 2;
1183 }
1184 else
1185 idx = 1;
1186
1187 /* Register Vim as an OLE Automation server */
1188 if (STRICMP(argv[idx] + 1, "register") == 0)
1189 {
1190#ifdef FEAT_OLE
1191 RegisterMe(silent);
1192 mch_exit(0);
1193#else
1194 if (!silent)
1195 ole_error("register");
1196 mch_exit(2);
1197#endif
1198 }
1199
1200 /* Unregister Vim as an OLE Automation server */
1201 if (STRICMP(argv[idx] + 1, "unregister") == 0)
1202 {
1203#ifdef FEAT_OLE
1204 UnregisterMe(!silent);
1205 mch_exit(0);
1206#else
1207 if (!silent)
1208 ole_error("unregister");
1209 mch_exit(2);
1210#endif
1211 }
1212
1213 /* Ignore an -embedding argument. It is only relevant if the
1214 * application wants to treat the case when it is started manually
1215 * differently from the case where it is started via automation (and
1216 * we don't).
1217 */
1218 if (STRICMP(argv[idx] + 1, "embedding") == 0)
1219 {
1220#ifdef FEAT_OLE
1221 *argc = 1;
1222#else
1223 ole_error("embedding");
1224 mch_exit(2);
1225#endif
1226 }
1227 }
1228
1229#ifdef FEAT_OLE
1230 {
1231 int bDoRestart = FALSE;
1232
1233 InitOLE(&bDoRestart);
1234 /* automatically exit after registering */
1235 if (bDoRestart)
1236 mch_exit(0);
1237 }
1238#endif
1239
1240#ifdef FEAT_NETBEANS_INTG
1241 {
1242 /* stolen from gui_x11.x */
1243 int arg;
1244
1245 for (arg = 1; arg < *argc; arg++)
1246 if (strncmp("-nb", argv[arg], 3) == 0)
1247 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 netbeansArg = argv[arg];
1249 mch_memmove(&argv[arg], &argv[arg + 1],
1250 (--*argc - arg) * sizeof(char *));
1251 argv[*argc] = NULL;
1252 break; /* enough? */
1253 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 }
1255#endif
1256
1257 /* get the OS version info */
1258 os_version.dwOSVersionInfoSize = sizeof(os_version);
1259 GetVersionEx(&os_version); /* this call works on Win32s, Win95 and WinNT */
1260
1261 /* try and load the user32.dll library and get the entry points for
1262 * multi-monitor-support. */
Bram Moolenaarebbcb822010-10-23 14:02:54 +02001263 if ((user32_lib = vimLoadLib("User32.dll")) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 {
1265 pMonitorFromWindow = (TMonitorFromWindow)GetProcAddress(user32_lib,
1266 "MonitorFromWindow");
1267
1268 /* there are ...A and ...W version of GetMonitorInfo - looking at
1269 * winuser.h, they have exactly the same declaration. */
1270 pGetMonitorInfo = (TGetMonitorInfo)GetProcAddress(user32_lib,
1271 "GetMonitorInfoA");
1272 }
1273}
1274
1275/*
1276 * Initialise the GUI. Create all the windows, set up all the call-backs
1277 * etc.
1278 */
1279 int
1280gui_mch_init(void)
1281{
1282 const char szVimWndClass[] = VIM_CLASS;
1283 const char szTextAreaClass[] = "VimTextArea";
1284 WNDCLASS wndclass;
1285#ifdef FEAT_MBYTE
1286 const WCHAR szVimWndClassW[] = VIM_CLASSW;
Bram Moolenaar33d0b692010-02-17 16:31:32 +01001287 const WCHAR szTextAreaClassW[] = L"VimTextArea";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 WNDCLASSW wndclassw;
1289#endif
1290#ifdef GLOBAL_IME
1291 ATOM atom;
1292#endif
1293
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 /* Return here if the window was already opened (happens when
1295 * gui_mch_dialog() is called early). */
1296 if (s_hwnd != NULL)
Bram Moolenaar748bf032005-02-02 23:04:36 +00001297 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298
1299 /*
1300 * Load the tearoff bitmap
1301 */
1302#ifdef FEAT_TEAROFF
1303 s_htearbitmap = LoadBitmap(s_hinst, "IDB_TEAROFF");
1304#endif
1305
1306 gui.scrollbar_width = GetSystemMetrics(SM_CXVSCROLL);
1307 gui.scrollbar_height = GetSystemMetrics(SM_CYHSCROLL);
1308#ifdef FEAT_MENU
1309 gui.menu_height = 0; /* Windows takes care of this */
1310#endif
1311 gui.border_width = 0;
1312
1313 s_brush = CreateSolidBrush(GetSysColor(COLOR_BTNFACE));
1314
1315#ifdef FEAT_MBYTE
1316 /* First try using the wide version, so that we can use any title.
1317 * Otherwise only characters in the active codepage will work. */
1318 if (GetClassInfoW(s_hinst, szVimWndClassW, &wndclassw) == 0)
1319 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001320 wndclassw.style = CS_DBLCLKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 wndclassw.lpfnWndProc = _WndProc;
1322 wndclassw.cbClsExtra = 0;
1323 wndclassw.cbWndExtra = 0;
1324 wndclassw.hInstance = s_hinst;
1325 wndclassw.hIcon = LoadIcon(wndclassw.hInstance, "IDR_VIM");
1326 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
1327 wndclassw.hbrBackground = s_brush;
1328 wndclassw.lpszMenuName = NULL;
1329 wndclassw.lpszClassName = szVimWndClassW;
1330
1331 if ((
1332#ifdef GLOBAL_IME
1333 atom =
1334#endif
1335 RegisterClassW(&wndclassw)) == 0)
1336 {
1337 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
1338 return FAIL;
1339
1340 /* Must be Windows 98, fall back to non-wide function. */
1341 }
1342 else
1343 wide_WindowProc = TRUE;
1344 }
1345
1346 if (!wide_WindowProc)
1347#endif
1348
1349 if (GetClassInfo(s_hinst, szVimWndClass, &wndclass) == 0)
1350 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001351 wndclass.style = CS_DBLCLKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 wndclass.lpfnWndProc = _WndProc;
1353 wndclass.cbClsExtra = 0;
1354 wndclass.cbWndExtra = 0;
1355 wndclass.hInstance = s_hinst;
1356 wndclass.hIcon = LoadIcon(wndclass.hInstance, "IDR_VIM");
1357 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
1358 wndclass.hbrBackground = s_brush;
1359 wndclass.lpszMenuName = NULL;
1360 wndclass.lpszClassName = szVimWndClass;
1361
1362 if ((
1363#ifdef GLOBAL_IME
1364 atom =
1365#endif
1366 RegisterClass(&wndclass)) == 0)
1367 return FAIL;
1368 }
1369
1370 if (vim_parent_hwnd != NULL)
1371 {
1372#ifdef HAVE_TRY_EXCEPT
1373 __try
1374 {
1375#endif
1376 /* Open inside the specified parent window.
1377 * TODO: last argument should point to a CLIENTCREATESTRUCT
1378 * structure. */
1379 s_hwnd = CreateWindowEx(
1380 WS_EX_MDICHILD,
1381 szVimWndClass, "Vim MSWindows GUI",
Bram Moolenaare78c2062011-08-10 15:56:27 +02001382 WS_OVERLAPPEDWINDOW | WS_CHILD
1383 | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | 0xC000,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
1385 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
1386 100, /* Any value will do */
1387 100, /* Any value will do */
1388 vim_parent_hwnd, NULL,
1389 s_hinst, NULL);
1390#ifdef HAVE_TRY_EXCEPT
1391 }
1392 __except(EXCEPTION_EXECUTE_HANDLER)
1393 {
1394 /* NOP */
1395 }
1396#endif
1397 if (s_hwnd == NULL)
1398 {
1399 EMSG(_("E672: Unable to open window inside MDI application"));
1400 mch_exit(2);
1401 }
1402 }
1403 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001404 {
1405 /* If the provided windowid is not valid reset it to zero, so that it
1406 * is ignored and we open our own window. */
1407 if (IsWindow((HWND)win_socket_id) <= 0)
1408 win_socket_id = 0;
1409
1410 /* Create a window. If win_socket_id is not zero without border and
1411 * titlebar, it will be reparented below. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 s_hwnd = CreateWindow(
Bram Moolenaar78e17622007-08-30 10:26:19 +00001413 szVimWndClass, "Vim MSWindows GUI",
Bram Moolenaare78c2062011-08-10 15:56:27 +02001414 (win_socket_id == 0 ? WS_OVERLAPPEDWINDOW : WS_POPUP)
1415 | WS_CLIPSIBLINGS | WS_CLIPCHILDREN,
Bram Moolenaar78e17622007-08-30 10:26:19 +00001416 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
1417 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
1418 100, /* Any value will do */
1419 100, /* Any value will do */
1420 NULL, NULL,
1421 s_hinst, NULL);
1422 if (s_hwnd != NULL && win_socket_id != 0)
1423 {
1424 SetParent(s_hwnd, (HWND)win_socket_id);
1425 ShowWindow(s_hwnd, SW_SHOWMAXIMIZED);
1426 }
1427 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428
1429 if (s_hwnd == NULL)
1430 return FAIL;
1431
1432#ifdef GLOBAL_IME
1433 global_ime_init(atom, s_hwnd);
1434#endif
1435#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
1436 dyn_imm_load();
1437#endif
1438
1439 /* Create the text area window */
Bram Moolenaar33d0b692010-02-17 16:31:32 +01001440#ifdef FEAT_MBYTE
1441 if (wide_WindowProc)
1442 {
1443 if (GetClassInfoW(s_hinst, szTextAreaClassW, &wndclassw) == 0)
1444 {
1445 wndclassw.style = CS_OWNDC;
1446 wndclassw.lpfnWndProc = _TextAreaWndProc;
1447 wndclassw.cbClsExtra = 0;
1448 wndclassw.cbWndExtra = 0;
1449 wndclassw.hInstance = s_hinst;
1450 wndclassw.hIcon = NULL;
1451 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
1452 wndclassw.hbrBackground = NULL;
1453 wndclassw.lpszMenuName = NULL;
1454 wndclassw.lpszClassName = szTextAreaClassW;
1455
1456 if (RegisterClassW(&wndclassw) == 0)
1457 return FAIL;
1458 }
1459 }
1460 else
1461#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 if (GetClassInfo(s_hinst, szTextAreaClass, &wndclass) == 0)
1463 {
1464 wndclass.style = CS_OWNDC;
1465 wndclass.lpfnWndProc = _TextAreaWndProc;
1466 wndclass.cbClsExtra = 0;
1467 wndclass.cbWndExtra = 0;
1468 wndclass.hInstance = s_hinst;
1469 wndclass.hIcon = NULL;
1470 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
1471 wndclass.hbrBackground = NULL;
1472 wndclass.lpszMenuName = NULL;
1473 wndclass.lpszClassName = szTextAreaClass;
1474
1475 if (RegisterClass(&wndclass) == 0)
1476 return FAIL;
1477 }
1478 s_textArea = CreateWindowEx(
1479 WS_EX_CLIENTEDGE,
1480 szTextAreaClass, "Vim text area",
1481 WS_CHILD | WS_VISIBLE, 0, 0,
1482 100, /* Any value will do for now */
1483 100, /* Any value will do for now */
1484 s_hwnd, NULL,
1485 s_hinst, NULL);
1486
1487 if (s_textArea == NULL)
1488 return FAIL;
1489
1490#ifdef FEAT_MENU
1491 s_menuBar = CreateMenu();
1492#endif
1493 s_hdc = GetDC(s_textArea);
1494
1495#ifdef MSWIN16_FASTTEXT
1496 SetBkMode(s_hdc, OPAQUE);
1497#endif
1498
1499#ifdef FEAT_WINDOWS
1500 DragAcceptFiles(s_hwnd, TRUE);
1501#endif
1502
1503 /* Do we need to bother with this? */
1504 /* m_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT); */
1505
1506 /* Get background/foreground colors from the system */
1507 gui_mch_def_colors();
1508
1509 /* Get the colors from the "Normal" group (set in syntax.c or in a vimrc
1510 * file) */
1511 set_normal_colors();
1512
1513 /*
1514 * Check that none of the colors are the same as the background color.
1515 * Then store the current values as the defaults.
1516 */
1517 gui_check_colors();
1518 gui.def_norm_pixel = gui.norm_pixel;
1519 gui.def_back_pixel = gui.back_pixel;
1520
1521 /* Get the colors for the highlight groups (gui_check_colors() might have
1522 * changed them) */
1523 highlight_gui_started();
1524
1525 /*
1526 * Start out by adding the configured border width into the border offset
1527 */
1528 gui.border_offset = gui.border_width + 2; /*CLIENT EDGE*/
1529
1530 /*
1531 * Set up for Intellimouse processing
1532 */
1533 init_mouse_wheel();
1534
1535 /*
1536 * compute a couple of metrics used for the dialogs
1537 */
1538 get_dialog_font_metrics();
1539#ifdef FEAT_TOOLBAR
1540 /*
1541 * Create the toolbar
1542 */
1543 initialise_toolbar();
1544#endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001545#ifdef FEAT_GUI_TABLINE
1546 /*
1547 * Create the tabline
1548 */
1549 initialise_tabline();
1550#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551#ifdef MSWIN_FIND_REPLACE
1552 /*
1553 * Initialise the dialog box stuff
1554 */
1555 s_findrep_msg = RegisterWindowMessage(FINDMSGSTRING);
1556
1557 /* Initialise the struct */
1558 s_findrep_struct.lStructSize = sizeof(s_findrep_struct);
1559 s_findrep_struct.lpstrFindWhat = alloc(MSWIN_FR_BUFSIZE);
1560 s_findrep_struct.lpstrFindWhat[0] = NUL;
1561 s_findrep_struct.lpstrReplaceWith = alloc(MSWIN_FR_BUFSIZE);
1562 s_findrep_struct.lpstrReplaceWith[0] = NUL;
1563 s_findrep_struct.wFindWhatLen = MSWIN_FR_BUFSIZE;
1564 s_findrep_struct.wReplaceWithLen = MSWIN_FR_BUFSIZE;
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00001565# if defined(FEAT_MBYTE) && defined(WIN3264)
1566 s_findrep_struct_w.lStructSize = sizeof(s_findrep_struct_w);
1567 s_findrep_struct_w.lpstrFindWhat =
1568 (LPWSTR)alloc(MSWIN_FR_BUFSIZE * sizeof(WCHAR));
1569 s_findrep_struct_w.lpstrFindWhat[0] = NUL;
1570 s_findrep_struct_w.lpstrReplaceWith =
1571 (LPWSTR)alloc(MSWIN_FR_BUFSIZE * sizeof(WCHAR));
1572 s_findrep_struct_w.lpstrReplaceWith[0] = NUL;
1573 s_findrep_struct_w.wFindWhatLen = MSWIN_FR_BUFSIZE;
1574 s_findrep_struct_w.wReplaceWithLen = MSWIN_FR_BUFSIZE;
1575# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02001578#ifdef FEAT_EVAL
Bram Moolenaar4da95d32011-07-07 17:43:41 +02001579# if _MSC_VER < 1400
1580/* HandleToLong() only exists in compilers that can do 64 bit builds */
1581# define HandleToLong(h) ((long)(h))
1582# endif
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02001583 /* set the v:windowid variable */
Bram Moolenaar7154b322011-05-25 21:18:06 +02001584 set_vim_var_nr(VV_WINDOWID, HandleToLong(s_hwnd));
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02001585#endif
1586
Bram Moolenaar748bf032005-02-02 23:04:36 +00001587theend:
1588 /* Display any pending error messages */
1589 display_errors();
1590
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 return OK;
1592}
1593
1594/*
1595 * Get the size of the screen, taking position on multiple monitors into
1596 * account (if supported).
1597 */
1598 static void
1599get_work_area(RECT *spi_rect)
1600{
1601 _HMONITOR mon;
1602 _MONITORINFO moninfo;
1603
1604 /* use these functions only if available */
1605 if (pMonitorFromWindow != NULL && pGetMonitorInfo != NULL)
1606 {
1607 /* work out which monitor the window is on, and get *it's* work area */
1608 mon = pMonitorFromWindow(s_hwnd, 1 /*MONITOR_DEFAULTTOPRIMARY*/);
1609 if (mon != NULL)
1610 {
1611 moninfo.cbSize = sizeof(_MONITORINFO);
1612 if (pGetMonitorInfo(mon, &moninfo))
1613 {
1614 *spi_rect = moninfo.rcWork;
1615 return;
1616 }
1617 }
1618 }
1619 /* this is the old method... */
1620 SystemParametersInfo(SPI_GETWORKAREA, 0, spi_rect, 0);
1621}
1622
1623/*
1624 * Set the size of the window to the given width and height in pixels.
1625 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001626/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 void
1628gui_mch_set_shellsize(int width, int height,
Bram Moolenaarafa24992006-03-27 20:58:26 +00001629 int min_width, int min_height, int base_width, int base_height,
1630 int direction)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631{
1632 RECT workarea_rect;
1633 int win_width, win_height;
1634 int win_xpos, win_ypos;
1635 WINDOWPLACEMENT wndpl;
Bram Moolenaar56a907a2006-05-06 21:44:30 +00001636 int workarea_left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001638 /* Try to keep window completely on screen. */
1639 /* Get position of the screen work area. This is the part that is not
1640 * used by the taskbar or appbars. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 get_work_area(&workarea_rect);
1642
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001643 /* Get current posision of our window. Note that the .left and .top are
1644 * relative to the work area. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 wndpl.length = sizeof(WINDOWPLACEMENT);
1646 GetWindowPlacement(s_hwnd, &wndpl);
1647
1648 /* Resizing a maximized window looks very strange, unzoom it first.
1649 * But don't do it when still starting up, it may have been requested in
1650 * the shortcut. */
1651 if (wndpl.showCmd == SW_SHOWMAXIMIZED && starting == 0)
1652 {
1653 ShowWindow(s_hwnd, SW_SHOWNORMAL);
1654 /* Need to get the settings of the normal window. */
1655 GetWindowPlacement(s_hwnd, &wndpl);
1656 }
1657
1658 win_xpos = wndpl.rcNormalPosition.left;
1659 win_ypos = wndpl.rcNormalPosition.top;
1660
1661 /* compute the size of the outside of the window */
1662 win_width = width + GetSystemMetrics(SM_CXFRAME) * 2;
1663 win_height = height + GetSystemMetrics(SM_CYFRAME) * 2
1664 + GetSystemMetrics(SM_CYCAPTION)
1665#ifdef FEAT_MENU
1666 + gui_mswin_get_menu_height(FALSE)
1667#endif
1668 ;
1669
Bram Moolenaar56a907a2006-05-06 21:44:30 +00001670 /* There is an inconsistency when using two monitors and Vim is on the
1671 * second (right) one: win_xpos will be the offset from the workarea of
1672 * the left monitor. While with one monitor it's the offset from the
1673 * workarea (including a possible taskbar on the left). Detect the second
1674 * monitor by checking for the left offset to be quite big. */
1675 if (workarea_rect.left > 300)
1676 workarea_left = 0;
1677 else
1678 workarea_left = workarea_rect.left;
1679
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001680 /* If the window is going off the screen, move it on to the screen.
1681 * win_xpos and win_ypos are relative to the workarea. */
1682 if ((direction & RESIZE_HOR)
Bram Moolenaar56a907a2006-05-06 21:44:30 +00001683 && workarea_left + win_xpos + win_width > workarea_rect.right)
1684 win_xpos = workarea_rect.right - win_width - workarea_left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001686 if ((direction & RESIZE_HOR) && win_xpos < 0)
1687 win_xpos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688
Bram Moolenaarafa24992006-03-27 20:58:26 +00001689 if ((direction & RESIZE_VERT)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001690 && workarea_rect.top + win_ypos + win_height > workarea_rect.bottom)
1691 win_ypos = workarea_rect.bottom - win_height - workarea_rect.top;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001693 if ((direction & RESIZE_VERT) && win_ypos < 0)
1694 win_ypos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695
1696 wndpl.rcNormalPosition.left = win_xpos;
1697 wndpl.rcNormalPosition.right = win_xpos + win_width;
1698 wndpl.rcNormalPosition.top = win_ypos;
1699 wndpl.rcNormalPosition.bottom = win_ypos + win_height;
1700
1701 /* set window position - we should use SetWindowPlacement rather than
1702 * SetWindowPos as the MSDN docs say the coord systems returned by
1703 * these two are not compatible. */
1704 SetWindowPlacement(s_hwnd, &wndpl);
1705
1706 SetActiveWindow(s_hwnd);
1707 SetFocus(s_hwnd);
1708
1709#ifdef FEAT_MENU
1710 /* Menu may wrap differently now */
1711 gui_mswin_get_menu_height(!gui.starting);
1712#endif
1713}
1714
1715
1716 void
1717gui_mch_set_scrollbar_thumb(
1718 scrollbar_T *sb,
1719 long val,
1720 long size,
1721 long max)
1722{
1723 SCROLLINFO info;
1724
1725 sb->scroll_shift = 0;
1726 while (max > 32767)
1727 {
1728 max = (max + 1) >> 1;
1729 val >>= 1;
1730 size >>= 1;
1731 ++sb->scroll_shift;
1732 }
1733
1734 if (sb->scroll_shift > 0)
1735 ++size;
1736
1737 info.cbSize = sizeof(info);
1738 info.fMask = SIF_POS | SIF_RANGE | SIF_PAGE;
1739 info.nPos = val;
1740 info.nMin = 0;
1741 info.nMax = max;
1742 info.nPage = size;
1743 SetScrollInfo(sb->id, SB_CTL, &info, TRUE);
1744}
1745
1746
1747/*
1748 * Set the current text font.
1749 */
1750 void
1751gui_mch_set_font(GuiFont font)
1752{
1753 gui.currFont = font;
1754}
1755
1756
1757/*
1758 * Set the current text foreground color.
1759 */
1760 void
1761gui_mch_set_fg_color(guicolor_T color)
1762{
1763 gui.currFgColor = color;
1764}
1765
1766/*
1767 * Set the current text background color.
1768 */
1769 void
1770gui_mch_set_bg_color(guicolor_T color)
1771{
1772 gui.currBgColor = color;
1773}
1774
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001775/*
1776 * Set the current text special color.
1777 */
1778 void
1779gui_mch_set_sp_color(guicolor_T color)
1780{
1781 gui.currSpColor = color;
1782}
1783
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784#if defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)
1785/*
1786 * Multi-byte handling, originally by Sung-Hoon Baek.
1787 * First static functions (no prototypes generated).
1788 */
1789#ifdef _MSC_VER
1790# include <ime.h> /* Apparently not needed for Cygwin, MingW or Borland. */
1791#endif
1792#include <imm.h>
1793
1794/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 * handle WM_IME_NOTIFY message
1796 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001797/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 static LRESULT
1799_OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData)
1800{
1801 LRESULT lResult = 0;
1802 HIMC hImc;
1803
1804 if (!pImmGetContext || (hImc = pImmGetContext(hWnd)) == (HIMC)0)
1805 return lResult;
1806 switch (dwCommand)
1807 {
1808 case IMN_SETOPENSTATUS:
1809 if (pImmGetOpenStatus(hImc))
1810 {
1811 pImmSetCompositionFont(hImc, &norm_logfont);
1812 im_set_position(gui.row, gui.col);
1813
1814 /* Disable langmap */
1815 State &= ~LANGMAP;
1816 if (State & INSERT)
1817 {
1818#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1819 /* Unshown 'keymap' in status lines */
1820 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
1821 {
1822 /* Save cursor position */
1823 int old_row = gui.row;
1824 int old_col = gui.col;
1825
1826 // This must be called here before
1827 // status_redraw_curbuf(), otherwise the mode
1828 // message may appear in the wrong position.
1829 showmode();
1830 status_redraw_curbuf();
1831 update_screen(0);
1832 /* Restore cursor position */
1833 gui.row = old_row;
1834 gui.col = old_col;
1835 }
1836#endif
1837 }
1838 }
1839 gui_update_cursor(TRUE, FALSE);
1840 lResult = 0;
1841 break;
1842 }
1843 pImmReleaseContext(hWnd, hImc);
1844 return lResult;
1845}
1846
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001847/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 static LRESULT
1849_OnImeComposition(HWND hwnd, WPARAM dbcs, LPARAM param)
1850{
1851 char_u *ret;
1852 int len;
1853
1854 if ((param & GCS_RESULTSTR) == 0) /* Composition unfinished. */
1855 return 0;
1856
1857 ret = GetResultStr(hwnd, GCS_RESULTSTR, &len);
1858 if (ret != NULL)
1859 {
1860 add_to_input_buf_csi(ret, len);
1861 vim_free(ret);
1862 return 1;
1863 }
1864 return 0;
1865}
1866
1867/*
1868 * get the current composition string, in UCS-2; *lenp is the number of
1869 * *lenp is the number of Unicode characters.
1870 */
1871 static short_u *
1872GetCompositionString_inUCS2(HIMC hIMC, DWORD GCS, int *lenp)
1873{
1874 LONG ret;
1875 LPWSTR wbuf = NULL;
1876 char_u *buf;
1877
1878 if (!pImmGetContext)
1879 return NULL; /* no imm32.dll */
1880
1881 /* Try Unicode; this'll always work on NT regardless of codepage. */
1882 ret = pImmGetCompositionStringW(hIMC, GCS, NULL, 0);
1883 if (ret == 0)
1884 return NULL; /* empty */
1885
1886 if (ret > 0)
1887 {
1888 /* Allocate the requested buffer plus space for the NUL character. */
1889 wbuf = (LPWSTR)alloc(ret + sizeof(WCHAR));
1890 if (wbuf != NULL)
1891 {
1892 pImmGetCompositionStringW(hIMC, GCS, wbuf, ret);
1893 *lenp = ret / sizeof(WCHAR);
1894 }
1895 return (short_u *)wbuf;
1896 }
1897
1898 /* ret < 0; we got an error, so try the ANSI version. This'll work
1899 * on 9x/ME, but only if the codepage happens to be set to whatever
1900 * we're inputting. */
1901 ret = pImmGetCompositionStringA(hIMC, GCS, NULL, 0);
1902 if (ret <= 0)
1903 return NULL; /* empty or error */
1904
1905 buf = alloc(ret);
1906 if (buf == NULL)
1907 return NULL;
1908 pImmGetCompositionStringA(hIMC, GCS, buf, ret);
1909
1910 /* convert from codepage to UCS-2 */
1911 MultiByteToWideChar_alloc(GetACP(), 0, buf, ret, &wbuf, lenp);
1912 vim_free(buf);
1913
1914 return (short_u *)wbuf;
1915}
1916
1917/*
1918 * void GetResultStr()
1919 *
1920 * This handles WM_IME_COMPOSITION with GCS_RESULTSTR flag on.
1921 * get complete composition string
1922 */
1923 static char_u *
1924GetResultStr(HWND hwnd, int GCS, int *lenp)
1925{
1926 HIMC hIMC; /* Input context handle. */
1927 short_u *buf = NULL;
1928 char_u *convbuf = NULL;
1929
1930 if (!pImmGetContext || (hIMC = pImmGetContext(hwnd)) == (HIMC)0)
1931 return NULL;
1932
1933 /* Reads in the composition string. */
1934 buf = GetCompositionString_inUCS2(hIMC, GCS, lenp);
1935 if (buf == NULL)
1936 return NULL;
1937
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001938 convbuf = utf16_to_enc(buf, lenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 pImmReleaseContext(hwnd, hIMC);
1940 vim_free(buf);
1941 return convbuf;
1942}
1943#endif
1944
1945/* For global functions we need prototypes. */
1946#if (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) || defined(PROTO)
1947
1948/*
1949 * set font to IM.
1950 */
1951 void
1952im_set_font(LOGFONT *lf)
1953{
1954 HIMC hImc;
1955
1956 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
1957 {
1958 pImmSetCompositionFont(hImc, lf);
1959 pImmReleaseContext(s_hwnd, hImc);
1960 }
1961}
1962
1963/*
1964 * Notify cursor position to IM.
1965 */
1966 void
1967im_set_position(int row, int col)
1968{
1969 HIMC hImc;
1970
1971 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
1972 {
1973 COMPOSITIONFORM cfs;
1974
1975 cfs.dwStyle = CFS_POINT;
1976 cfs.ptCurrentPos.x = FILL_X(col);
1977 cfs.ptCurrentPos.y = FILL_Y(row);
1978 MapWindowPoints(s_textArea, s_hwnd, &cfs.ptCurrentPos, 1);
1979 pImmSetCompositionWindow(hImc, &cfs);
1980
1981 pImmReleaseContext(s_hwnd, hImc);
1982 }
1983}
1984
1985/*
1986 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
1987 */
1988 void
1989im_set_active(int active)
1990{
1991 HIMC hImc;
1992 static HIMC hImcOld = (HIMC)0;
1993
1994 if (pImmGetContext) /* if NULL imm32.dll wasn't loaded (yet) */
1995 {
1996 if (p_imdisable)
1997 {
1998 if (hImcOld == (HIMC)0)
1999 {
2000 hImcOld = pImmGetContext(s_hwnd);
2001 if (hImcOld)
2002 pImmAssociateContext(s_hwnd, (HIMC)0);
2003 }
2004 active = FALSE;
2005 }
2006 else if (hImcOld != (HIMC)0)
2007 {
2008 pImmAssociateContext(s_hwnd, hImcOld);
2009 hImcOld = (HIMC)0;
2010 }
2011
2012 hImc = pImmGetContext(s_hwnd);
2013 if (hImc)
2014 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00002015 /*
2016 * for Korean ime
2017 */
2018 HKL hKL = GetKeyboardLayout(0);
2019
2020 if (LOWORD(hKL) == MAKELANGID(LANG_KOREAN, SUBLANG_KOREAN))
2021 {
2022 static DWORD dwConversionSaved = 0, dwSentenceSaved = 0;
2023 static BOOL bSaved = FALSE;
2024
2025 if (active)
2026 {
2027 /* if we have a saved conversion status, restore it */
2028 if (bSaved)
2029 pImmSetConversionStatus(hImc, dwConversionSaved,
2030 dwSentenceSaved);
2031 bSaved = FALSE;
2032 }
2033 else
2034 {
2035 /* save conversion status and disable korean */
2036 if (pImmGetConversionStatus(hImc, &dwConversionSaved,
2037 &dwSentenceSaved))
2038 {
2039 bSaved = TRUE;
2040 pImmSetConversionStatus(hImc,
2041 dwConversionSaved & ~(IME_CMODE_NATIVE
2042 | IME_CMODE_FULLSHAPE),
2043 dwSentenceSaved);
2044 }
2045 }
2046 }
2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 pImmSetOpenStatus(hImc, active);
2049 pImmReleaseContext(s_hwnd, hImc);
2050 }
2051 }
2052}
2053
2054/*
2055 * Get IM status. When IM is on, return not 0. Else return 0.
2056 */
2057 int
2058im_get_status()
2059{
2060 int status = 0;
2061 HIMC hImc;
2062
2063 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
2064 {
2065 status = pImmGetOpenStatus(hImc) ? 1 : 0;
2066 pImmReleaseContext(s_hwnd, hImc);
2067 }
2068 return status;
2069}
2070
2071#endif /* FEAT_MBYTE && FEAT_MBYTE_IME */
2072
2073#if defined(FEAT_MBYTE) && !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME)
2074/* Win32 with GLOBAL IME */
2075
2076/*
2077 * Notify cursor position to IM.
2078 */
2079 void
2080im_set_position(int row, int col)
2081{
2082 /* Win32 with GLOBAL IME */
2083 POINT p;
2084
2085 p.x = FILL_X(col);
2086 p.y = FILL_Y(row);
2087 MapWindowPoints(s_textArea, s_hwnd, &p, 1);
2088 global_ime_set_position(&p);
2089}
2090
2091/*
2092 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
2093 */
2094 void
2095im_set_active(int active)
2096{
2097 global_ime_set_status(active);
2098}
2099
2100/*
2101 * Get IM status. When IM is on, return not 0. Else return 0.
2102 */
2103 int
2104im_get_status()
2105{
2106 return global_ime_get_status();
2107}
2108#endif
2109
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002110#ifdef FEAT_MBYTE
2111/*
Bram Moolenaar39f05632006-03-19 22:15:26 +00002112 * Convert latin9 text "text[len]" to ucs-2 in "unicodebuf".
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002113 */
2114 static void
2115latin9_to_ucs(char_u *text, int len, WCHAR *unicodebuf)
2116{
2117 int c;
2118
Bram Moolenaarca003e12006-03-17 23:19:38 +00002119 while (--len >= 0)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002120 {
2121 c = *text++;
2122 switch (c)
2123 {
2124 case 0xa4: c = 0x20ac; break; /* euro */
2125 case 0xa6: c = 0x0160; break; /* S hat */
2126 case 0xa8: c = 0x0161; break; /* S -hat */
2127 case 0xb4: c = 0x017d; break; /* Z hat */
2128 case 0xb8: c = 0x017e; break; /* Z -hat */
2129 case 0xbc: c = 0x0152; break; /* OE */
2130 case 0xbd: c = 0x0153; break; /* oe */
2131 case 0xbe: c = 0x0178; break; /* Y */
2132 }
2133 *unicodebuf++ = c;
2134 }
2135}
2136#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137
2138#ifdef FEAT_RIGHTLEFT
2139/*
2140 * What is this for? In the case where you are using Win98 or Win2K or later,
2141 * and you are using a Hebrew font (or Arabic!), Windows does you a favor and
2142 * reverses the string sent to the TextOut... family. This sucks, because we
2143 * go to a lot of effort to do the right thing, and there doesn't seem to be a
2144 * way to tell Windblows not to do this!
2145 *
2146 * The short of it is that this 'RevOut' only gets called if you are running
2147 * one of the new, "improved" MS OSes, and only if you are running in
2148 * 'rightleft' mode. It makes display take *slightly* longer, but not
2149 * noticeably so.
2150 */
2151 static void
2152RevOut( HDC s_hdc,
2153 int col,
2154 int row,
2155 UINT foptions,
2156 CONST RECT *pcliprect,
2157 LPCTSTR text,
2158 UINT len,
2159 CONST INT *padding)
2160{
2161 int ix;
2162 static int special = -1;
2163
2164 if (special == -1)
2165 {
2166 /* Check windows version: special treatment is needed if it is NT 5 or
2167 * Win98 or higher. */
2168 if ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2169 && os_version.dwMajorVersion >= 5)
2170 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
2171 && (os_version.dwMajorVersion > 4
2172 || (os_version.dwMajorVersion == 4
2173 && os_version.dwMinorVersion > 0))))
2174 special = 1;
2175 else
2176 special = 0;
2177 }
2178
2179 if (special)
2180 for (ix = 0; ix < (int)len; ++ix)
2181 ExtTextOut(s_hdc, col + TEXT_X(ix), row, foptions,
2182 pcliprect, text + ix, 1, padding);
2183 else
2184 ExtTextOut(s_hdc, col, row, foptions, pcliprect, text, len, padding);
2185}
2186#endif
2187
2188 void
2189gui_mch_draw_string(
2190 int row,
2191 int col,
2192 char_u *text,
2193 int len,
2194 int flags)
2195{
2196 static int *padding = NULL;
2197 static int pad_size = 0;
2198 int i;
2199 const RECT *pcliprect = NULL;
2200 UINT foptions = 0;
2201#ifdef FEAT_MBYTE
2202 static WCHAR *unicodebuf = NULL;
2203 static int *unicodepdy = NULL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002204 static int unibuflen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 int n = 0;
2206#endif
2207 HPEN hpen, old_pen;
2208 int y;
2209
2210#ifndef MSWIN16_FASTTEXT
2211 /*
2212 * Italic and bold text seems to have an extra row of pixels at the bottom
2213 * (below where the bottom of the character should be). If we draw the
2214 * characters with a solid background, the top row of pixels in the
2215 * character below will be overwritten. We can fix this by filling in the
2216 * background ourselves, to the correct character proportions, and then
2217 * writing the character in transparent mode. Still have a problem when
2218 * the character is "_", which gets written on to the character below.
2219 * New fix: set gui.char_ascent to -1. This shifts all characters up one
2220 * pixel in their slots, which fixes the problem with the bottom row of
2221 * pixels. We still need this code because otherwise the top row of pixels
2222 * becomes a problem. - webb.
2223 */
2224 static HBRUSH hbr_cache[2] = {NULL, NULL};
2225 static guicolor_T brush_color[2] = {INVALCOLOR, INVALCOLOR};
2226 static int brush_lru = 0;
2227 HBRUSH hbr;
2228 RECT rc;
2229
2230 if (!(flags & DRAW_TRANSP))
2231 {
2232 /*
2233 * Clear background first.
2234 * Note: FillRect() excludes right and bottom of rectangle.
2235 */
2236 rc.left = FILL_X(col);
2237 rc.top = FILL_Y(row);
2238#ifdef FEAT_MBYTE
2239 if (has_mbyte)
2240 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 /* Compute the length in display cells. */
Bram Moolenaar72597a52010-07-18 15:31:08 +02002242 rc.right = FILL_X(col + mb_string2cells(text, len));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 }
2244 else
2245#endif
2246 rc.right = FILL_X(col + len);
2247 rc.bottom = FILL_Y(row + 1);
2248
2249 /* Cache the created brush, that saves a lot of time. We need two:
2250 * one for cursor background and one for the normal background. */
2251 if (gui.currBgColor == brush_color[0])
2252 {
2253 hbr = hbr_cache[0];
2254 brush_lru = 1;
2255 }
2256 else if (gui.currBgColor == brush_color[1])
2257 {
2258 hbr = hbr_cache[1];
2259 brush_lru = 0;
2260 }
2261 else
2262 {
2263 if (hbr_cache[brush_lru] != NULL)
2264 DeleteBrush(hbr_cache[brush_lru]);
2265 hbr_cache[brush_lru] = CreateSolidBrush(gui.currBgColor);
2266 brush_color[brush_lru] = gui.currBgColor;
2267 hbr = hbr_cache[brush_lru];
2268 brush_lru = !brush_lru;
2269 }
2270 FillRect(s_hdc, &rc, hbr);
2271
2272 SetBkMode(s_hdc, TRANSPARENT);
2273
2274 /*
2275 * When drawing block cursor, prevent inverted character spilling
2276 * over character cell (can happen with bold/italic)
2277 */
2278 if (flags & DRAW_CURSOR)
2279 {
2280 pcliprect = &rc;
2281 foptions = ETO_CLIPPED;
2282 }
2283 }
2284#else
2285 /*
2286 * The alternative would be to write the characters in opaque mode, but
2287 * when the text is not exactly the same proportions as normal text, too
2288 * big or too little a rectangle gets drawn for the background.
2289 */
2290 SetBkMode(s_hdc, OPAQUE);
2291 SetBkColor(s_hdc, gui.currBgColor);
2292#endif
2293 SetTextColor(s_hdc, gui.currFgColor);
2294 SelectFont(s_hdc, gui.currFont);
2295
2296 if (pad_size != Columns || padding == NULL || padding[0] != gui.char_width)
2297 {
2298 vim_free(padding);
2299 pad_size = Columns;
2300
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002301 /* Don't give an out-of-memory message here, it would call us
2302 * recursively. */
2303 padding = (int *)lalloc(pad_size * sizeof(int), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 if (padding != NULL)
2305 for (i = 0; i < pad_size; i++)
2306 padding[i] = gui.char_width;
2307 }
2308
2309 /* On NT, tell the font renderer not to "help" us with Hebrew and Arabic
2310 * text. This doesn't work in 9x, so we have to deal with it manually on
2311 * those systems. */
2312 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT)
2313 foptions |= ETO_IGNORELANGUAGE;
2314
2315 /*
2316 * We have to provide the padding argument because italic and bold versions
2317 * of fixed-width fonts are often one pixel or so wider than their normal
2318 * versions.
2319 * No check for DRAW_BOLD, Windows will have done it already.
2320 */
2321
2322#ifdef FEAT_MBYTE
2323 /* Check if there are any UTF-8 characters. If not, use normal text
2324 * output to speed up output. */
2325 if (enc_utf8)
2326 for (n = 0; n < len; ++n)
2327 if (text[n] >= 0x80)
2328 break;
2329
2330 /* Check if the Unicode buffer exists and is big enough. Create it
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002331 * with the same length as the multi-byte string, the number of wide
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 * characters is always equal or smaller. */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002333 if ((enc_utf8
2334 || (enc_codepage > 0 && (int)GetACP() != enc_codepage)
2335 || enc_latin9)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 && (unicodebuf == NULL || len > unibuflen))
2337 {
2338 vim_free(unicodebuf);
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002339 unicodebuf = (WCHAR *)lalloc(len * sizeof(WCHAR), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340
2341 vim_free(unicodepdy);
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002342 unicodepdy = (int *)lalloc(len * sizeof(int), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343
2344 unibuflen = len;
2345 }
2346
2347 if (enc_utf8 && n < len && unicodebuf != NULL)
2348 {
2349 /* Output UTF-8 characters. Caller has already separated
2350 * composing characters. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002351 int i;
2352 int wlen; /* string length in words */
2353 int clen; /* string length in characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 int cells; /* cell width of string up to composing char */
2355 int cw; /* width of current cell */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002356 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002358 wlen = 0;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002359 clen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 cells = 0;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002361 for (i = 0; i < len; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002363 c = utf_ptr2char(text + i);
2364 if (c >= 0x10000)
2365 {
2366 /* Turn into UTF-16 encoding. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002367 unicodebuf[wlen++] = ((c - 0x10000) >> 10) + 0xD800;
2368 unicodebuf[wlen++] = ((c - 0x10000) & 0x3ff) + 0xDC00;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002369 }
2370 else
2371 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00002372 unicodebuf[wlen++] = c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002373 }
2374 cw = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 if (cw > 2) /* don't use 4 for unprintable char */
2376 cw = 1;
2377 if (unicodepdy != NULL)
2378 {
2379 /* Use unicodepdy to make characters fit as we expect, even
2380 * when the font uses different widths (e.g., bold character
2381 * is wider). */
2382 unicodepdy[clen] = cw * gui.char_width;
2383 }
2384 cells += cw;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002385 i += utfc_ptr2len_len(text + i, len - i);
Bram Moolenaarca003e12006-03-17 23:19:38 +00002386 ++clen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 }
2388 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
Bram Moolenaarca003e12006-03-17 23:19:38 +00002389 foptions, pcliprect, unicodebuf, wlen, unicodepdy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 len = cells; /* used for underlining */
2391 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002392 else if ((enc_codepage > 0 && (int)GetACP() != enc_codepage) || enc_latin9)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 {
2394 /* If we want to display codepage data, and the current CP is not the
2395 * ANSI one, we need to go via Unicode. */
2396 if (unicodebuf != NULL)
2397 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002398 if (enc_latin9)
2399 latin9_to_ucs(text, len, unicodebuf);
2400 else
2401 len = MultiByteToWideChar(enc_codepage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 MB_PRECOMPOSED,
2403 (char *)text, len,
2404 (LPWSTR)unicodebuf, unibuflen);
2405 if (len != 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002406 {
2407 /* Use unicodepdy to make characters fit as we expect, even
2408 * when the font uses different widths (e.g., bold character
2409 * is wider). */
2410 if (unicodepdy != NULL)
2411 {
2412 int i;
2413 int cw;
2414
2415 for (i = 0; i < len; ++i)
2416 {
2417 cw = utf_char2cells(unicodebuf[i]);
2418 if (cw > 2)
2419 cw = 1;
2420 unicodepdy[i] = cw * gui.char_width;
2421 }
2422 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002424 foptions, pcliprect, unicodebuf, len, unicodepdy);
2425 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 }
2427 }
2428 else
2429#endif
2430 {
2431#ifdef FEAT_RIGHTLEFT
2432 /* If we can't use ETO_IGNORELANGUAGE, we can't tell Windows not to
2433 * mess up RL text, so we have to draw it character-by-character.
2434 * Only do this if RL is on, since it's slow. */
2435 if (curwin->w_p_rl && !(foptions & ETO_IGNORELANGUAGE))
2436 RevOut(s_hdc, TEXT_X(col), TEXT_Y(row),
2437 foptions, pcliprect, (char *)text, len, padding);
2438 else
2439#endif
2440 ExtTextOut(s_hdc, TEXT_X(col), TEXT_Y(row),
2441 foptions, pcliprect, (char *)text, len, padding);
2442 }
2443
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002444 /* Underline */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 if (flags & DRAW_UNDERL)
2446 {
2447 hpen = CreatePen(PS_SOLID, 1, gui.currFgColor);
2448 old_pen = SelectObject(s_hdc, hpen);
2449 /* When p_linespace is 0, overwrite the bottom row of pixels.
2450 * Otherwise put the line just below the character. */
2451 y = FILL_Y(row + 1) - 1;
2452#ifndef MSWIN16_FASTTEXT
2453 if (p_linespace > 1)
2454 y -= p_linespace - 1;
2455#endif
2456 MoveToEx(s_hdc, FILL_X(col), y, NULL);
2457 /* Note: LineTo() excludes the last pixel in the line. */
2458 LineTo(s_hdc, FILL_X(col + len), y);
2459 DeleteObject(SelectObject(s_hdc, old_pen));
2460 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002461
2462 /* Undercurl */
2463 if (flags & DRAW_UNDERC)
2464 {
2465 int x;
2466 int offset;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002467 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002468
2469 y = FILL_Y(row + 1) - 1;
2470 for (x = FILL_X(col); x < FILL_X(col + len); ++x)
2471 {
2472 offset = val[x % 8];
2473 SetPixel(s_hdc, x, y - offset, gui.currSpColor);
2474 }
2475 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476}
2477
2478
2479/*
2480 * Output routines.
2481 */
2482
2483/* Flush any output to the screen */
2484 void
2485gui_mch_flush(void)
2486{
2487# if defined(__BORLANDC__)
2488 /*
2489 * The GdiFlush declaration (in Borland C 5.01 <wingdi.h>) is not a
2490 * prototype declaration.
2491 * The compiler complains if __stdcall is not used in both declarations.
2492 */
2493 BOOL __stdcall GdiFlush(void);
2494# endif
2495
2496 GdiFlush();
2497}
2498
2499 static void
2500clear_rect(RECT *rcp)
2501{
2502 HBRUSH hbr;
2503
2504 hbr = CreateSolidBrush(gui.back_pixel);
2505 FillRect(s_hdc, rcp, hbr);
2506 DeleteBrush(hbr);
2507}
2508
2509
Bram Moolenaarc716c302006-01-21 22:12:51 +00002510 void
2511gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
2512{
2513 RECT workarea_rect;
2514
2515 get_work_area(&workarea_rect);
2516
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002517 *screen_w = workarea_rect.right - workarea_rect.left
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002518 - GetSystemMetrics(SM_CXFRAME) * 2;
Bram Moolenaarc716c302006-01-21 22:12:51 +00002519
2520 /* FIXME: dirty trick: Because the gui_get_base_height() doesn't include
2521 * the menubar for MSwin, we subtract it from the screen height, so that
2522 * the window size can be made to fit on the screen. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002523 *screen_h = workarea_rect.bottom - workarea_rect.top
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002524 - GetSystemMetrics(SM_CYFRAME) * 2
Bram Moolenaarc716c302006-01-21 22:12:51 +00002525 - GetSystemMetrics(SM_CYCAPTION)
2526#ifdef FEAT_MENU
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002527 - gui_mswin_get_menu_height(FALSE)
Bram Moolenaarc716c302006-01-21 22:12:51 +00002528#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002529 ;
Bram Moolenaarc716c302006-01-21 22:12:51 +00002530}
2531
2532
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533#if defined(FEAT_MENU) || defined(PROTO)
2534/*
2535 * Add a sub menu to the menu bar.
2536 */
2537 void
2538gui_mch_add_menu(
2539 vimmenu_T *menu,
2540 int pos)
2541{
2542 vimmenu_T *parent = menu->parent;
2543
2544 menu->submenu_id = CreatePopupMenu();
2545 menu->id = s_menu_id++;
2546
2547 if (menu_is_menubar(menu->name))
2548 {
2549 if (is_winnt_3())
2550 {
2551 InsertMenu((parent == NULL) ? s_menuBar : parent->submenu_id,
2552 (UINT)pos, MF_POPUP | MF_STRING | MF_BYPOSITION,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002553 (long_u)menu->submenu_id, (LPCTSTR) menu->name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 }
2555 else
2556 {
2557#ifdef FEAT_MBYTE
2558 WCHAR *wn = NULL;
2559 int n;
2560
2561 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2562 {
2563 /* 'encoding' differs from active codepage: convert menu name
2564 * and use wide function */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002565 wn = enc_to_utf16(menu->name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 if (wn != NULL)
2567 {
2568 MENUITEMINFOW infow;
2569
2570 infow.cbSize = sizeof(infow);
2571 infow.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID
2572 | MIIM_SUBMENU;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002573 infow.dwItemData = (long_u)menu;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 infow.wID = menu->id;
2575 infow.fType = MFT_STRING;
2576 infow.dwTypeData = wn;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002577 infow.cch = (UINT)wcslen(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578 infow.hSubMenu = menu->submenu_id;
2579 n = InsertMenuItemW((parent == NULL)
2580 ? s_menuBar : parent->submenu_id,
2581 (UINT)pos, TRUE, &infow);
2582 vim_free(wn);
2583 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2584 /* Failed, try using non-wide function. */
2585 wn = NULL;
2586 }
2587 }
2588
2589 if (wn == NULL)
2590#endif
2591 {
2592 MENUITEMINFO info;
2593
2594 info.cbSize = sizeof(info);
2595 info.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID | MIIM_SUBMENU;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002596 info.dwItemData = (long_u)menu;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 info.wID = menu->id;
2598 info.fType = MFT_STRING;
2599 info.dwTypeData = (LPTSTR)menu->name;
2600 info.cch = (UINT)STRLEN(menu->name);
2601 info.hSubMenu = menu->submenu_id;
2602 InsertMenuItem((parent == NULL)
2603 ? s_menuBar : parent->submenu_id,
2604 (UINT)pos, TRUE, &info);
2605 }
2606 }
2607 }
2608
2609 /* Fix window size if menu may have wrapped */
2610 if (parent == NULL)
2611 gui_mswin_get_menu_height(!gui.starting);
2612#ifdef FEAT_TEAROFF
2613 else if (IsWindow(parent->tearoff_handle))
2614 rebuild_tearoff(parent);
2615#endif
2616}
2617
2618 void
2619gui_mch_show_popupmenu(vimmenu_T *menu)
2620{
2621 POINT mp;
2622
2623 (void)GetCursorPos((LPPOINT)&mp);
2624 gui_mch_show_popupmenu_at(menu, (int)mp.x, (int)mp.y);
2625}
2626
2627 void
Bram Moolenaar045e82d2005-07-08 22:25:33 +00002628gui_make_popup(char_u *path_name, int mouse_pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629{
2630 vimmenu_T *menu = gui_find_menu(path_name);
2631
2632 if (menu != NULL)
2633 {
2634 POINT p;
2635
2636 /* Find the position of the current cursor */
2637 GetDCOrgEx(s_hdc, &p);
Bram Moolenaar045e82d2005-07-08 22:25:33 +00002638 if (mouse_pos)
2639 {
2640 int mx, my;
2641
2642 gui_mch_getmouse(&mx, &my);
2643 p.x += mx;
2644 p.y += my;
2645 }
2646 else if (curwin != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 {
2648 p.x += TEXT_X(W_WINCOL(curwin) + curwin->w_wcol + 1);
2649 p.y += TEXT_Y(W_WINROW(curwin) + curwin->w_wrow + 1);
2650 }
2651 msg_scroll = FALSE;
2652 gui_mch_show_popupmenu_at(menu, (int)p.x, (int)p.y);
2653 }
2654}
2655
2656#if defined(FEAT_TEAROFF) || defined(PROTO)
2657/*
2658 * Given a menu descriptor, e.g. "File.New", find it in the menu hierarchy and
2659 * create it as a pseudo-"tearoff menu".
2660 */
2661 void
2662gui_make_tearoff(char_u *path_name)
2663{
2664 vimmenu_T *menu = gui_find_menu(path_name);
2665
2666 /* Found the menu, so tear it off. */
2667 if (menu != NULL)
2668 gui_mch_tearoff(menu->dname, menu, 0xffffL, 0xffffL);
2669}
2670#endif
2671
2672/*
2673 * Add a menu item to a menu
2674 */
2675 void
2676gui_mch_add_menu_item(
2677 vimmenu_T *menu,
2678 int idx)
2679{
2680 vimmenu_T *parent = menu->parent;
2681
2682 menu->id = s_menu_id++;
2683 menu->submenu_id = NULL;
2684
2685#ifdef FEAT_TEAROFF
2686 if (STRNCMP(menu->name, TEAR_STRING, TEAR_LEN) == 0)
2687 {
2688 InsertMenu(parent->submenu_id, (UINT)idx, MF_BITMAP|MF_BYPOSITION,
2689 (UINT)menu->id, (LPCTSTR) s_htearbitmap);
2690 }
2691 else
2692#endif
2693#ifdef FEAT_TOOLBAR
2694 if (menu_is_toolbar(parent->name))
2695 {
2696 TBBUTTON newtb;
2697
2698 vim_memset(&newtb, 0, sizeof(newtb));
2699 if (menu_is_separator(menu->name))
2700 {
2701 newtb.iBitmap = 0;
2702 newtb.fsStyle = TBSTYLE_SEP;
2703 }
2704 else
2705 {
2706 newtb.iBitmap = get_toolbar_bitmap(menu);
2707 newtb.fsStyle = TBSTYLE_BUTTON;
2708 }
2709 newtb.idCommand = menu->id;
2710 newtb.fsState = TBSTATE_ENABLED;
2711 newtb.iString = 0;
2712 SendMessage(s_toolbarhwnd, TB_INSERTBUTTON, (WPARAM)idx,
2713 (LPARAM)&newtb);
2714 menu->submenu_id = (HMENU)-1;
2715 }
2716 else
2717#endif
2718 {
2719#ifdef FEAT_MBYTE
2720 WCHAR *wn = NULL;
2721 int n;
2722
2723 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2724 {
2725 /* 'encoding' differs from active codepage: convert menu item name
2726 * and use wide function */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002727 wn = enc_to_utf16(menu->name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 if (wn != NULL)
2729 {
2730 n = InsertMenuW(parent->submenu_id, (UINT)idx,
2731 (menu_is_separator(menu->name)
2732 ? MF_SEPARATOR : MF_STRING) | MF_BYPOSITION,
2733 (UINT)menu->id, wn);
2734 vim_free(wn);
2735 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2736 /* Failed, try using non-wide function. */
2737 wn = NULL;
2738 }
2739 }
2740 if (wn == NULL)
2741#endif
2742 InsertMenu(parent->submenu_id, (UINT)idx,
2743 (menu_is_separator(menu->name) ? MF_SEPARATOR : MF_STRING)
2744 | MF_BYPOSITION,
2745 (UINT)menu->id, (LPCTSTR)menu->name);
2746#ifdef FEAT_TEAROFF
2747 if (IsWindow(parent->tearoff_handle))
2748 rebuild_tearoff(parent);
2749#endif
2750 }
2751}
2752
2753/*
2754 * Destroy the machine specific menu widget.
2755 */
2756 void
2757gui_mch_destroy_menu(vimmenu_T *menu)
2758{
2759#ifdef FEAT_TOOLBAR
2760 /*
2761 * is this a toolbar button?
2762 */
2763 if (menu->submenu_id == (HMENU)-1)
2764 {
2765 int iButton;
2766
2767 iButton = (int)SendMessage(s_toolbarhwnd, TB_COMMANDTOINDEX,
2768 (WPARAM)menu->id, 0);
2769 SendMessage(s_toolbarhwnd, TB_DELETEBUTTON, (WPARAM)iButton, 0);
2770 }
2771 else
2772#endif
2773 {
2774 if (menu->parent != NULL
2775 && menu_is_popup(menu->parent->dname)
2776 && menu->parent->submenu_id != NULL)
2777 RemoveMenu(menu->parent->submenu_id, menu->id, MF_BYCOMMAND);
2778 else
2779 RemoveMenu(s_menuBar, menu->id, MF_BYCOMMAND);
2780 if (menu->submenu_id != NULL)
2781 DestroyMenu(menu->submenu_id);
2782#ifdef FEAT_TEAROFF
2783 if (IsWindow(menu->tearoff_handle))
2784 DestroyWindow(menu->tearoff_handle);
2785 if (menu->parent != NULL
2786 && menu->parent->children != NULL
2787 && IsWindow(menu->parent->tearoff_handle))
2788 {
2789 /* This menu must not show up when rebuilding the tearoff window. */
2790 menu->modes = 0;
2791 rebuild_tearoff(menu->parent);
2792 }
2793#endif
2794 }
2795}
2796
2797#ifdef FEAT_TEAROFF
2798 static void
2799rebuild_tearoff(vimmenu_T *menu)
2800{
2801 /*hackish*/
2802 char_u tbuf[128];
2803 RECT trect;
2804 RECT rct;
2805 RECT roct;
2806 int x, y;
2807
2808 HWND thwnd = menu->tearoff_handle;
2809
2810 GetWindowText(thwnd, tbuf, 127);
2811 if (GetWindowRect(thwnd, &trect)
2812 && GetWindowRect(s_hwnd, &rct)
2813 && GetClientRect(s_hwnd, &roct))
2814 {
2815 x = trect.left - rct.left;
2816 y = (trect.top - rct.bottom + roct.bottom);
2817 }
2818 else
2819 {
2820 x = y = 0xffffL;
2821 }
2822 DestroyWindow(thwnd);
2823 if (menu->children != NULL)
2824 {
2825 gui_mch_tearoff(tbuf, menu, x, y);
2826 if (IsWindow(menu->tearoff_handle))
2827 (void) SetWindowPos(menu->tearoff_handle,
2828 NULL,
2829 (int)trect.left,
2830 (int)trect.top,
2831 0, 0,
2832 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
2833 }
2834}
2835#endif /* FEAT_TEAROFF */
2836
2837/*
2838 * Make a menu either grey or not grey.
2839 */
2840 void
2841gui_mch_menu_grey(
2842 vimmenu_T *menu,
2843 int grey)
2844{
2845#ifdef FEAT_TOOLBAR
2846 /*
2847 * is this a toolbar button?
2848 */
2849 if (menu->submenu_id == (HMENU)-1)
2850 {
2851 SendMessage(s_toolbarhwnd, TB_ENABLEBUTTON,
2852 (WPARAM)menu->id, (LPARAM) MAKELONG((grey ? FALSE : TRUE), 0) );
2853 }
2854 else
2855#endif
2856 if (grey)
2857 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_GRAYED);
2858 else
2859 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_ENABLED);
2860
2861#ifdef FEAT_TEAROFF
2862 if ((menu->parent != NULL) && (IsWindow(menu->parent->tearoff_handle)))
2863 {
2864 WORD menuID;
2865 HWND menuHandle;
2866
2867 /*
2868 * A tearoff button has changed state.
2869 */
2870 if (menu->children == NULL)
2871 menuID = (WORD)(menu->id);
2872 else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002873 menuID = (WORD)((long_u)(menu->submenu_id) | (DWORD)0x8000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 menuHandle = GetDlgItem(menu->parent->tearoff_handle, menuID);
2875 if (menuHandle)
2876 EnableWindow(menuHandle, !grey);
2877
2878 }
2879#endif
2880}
2881
2882#endif /* FEAT_MENU */
2883
2884
2885/* define some macros used to make the dialogue creation more readable */
2886
2887#define add_string(s) strcpy((LPSTR)p, s); (LPSTR)p += (strlen((LPSTR)p) + 1)
2888#define add_word(x) *p++ = (x)
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002889#define add_long(x) dwp = (DWORD *)p; *dwp++ = (x); p = (WORD *)dwp
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890
2891#if defined(FEAT_GUI_DIALOG) || defined(PROTO)
2892/*
2893 * stuff for dialogs
2894 */
2895
2896/*
2897 * The callback routine used by all the dialogs. Very simple. First,
2898 * acknowledges the INITDIALOG message so that Windows knows to do standard
2899 * dialog stuff (Return = default, Esc = cancel....) Second, if a button is
2900 * pressed, return that button's ID - IDCANCEL (2), which is the button's
2901 * number.
2902 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002903/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 static LRESULT CALLBACK
2905dialog_callback(
2906 HWND hwnd,
2907 UINT message,
2908 WPARAM wParam,
2909 LPARAM lParam)
2910{
2911 if (message == WM_INITDIALOG)
2912 {
2913 CenterWindow(hwnd, GetWindow(hwnd, GW_OWNER));
2914 /* Set focus to the dialog. Set the default button, if specified. */
2915 (void)SetFocus(hwnd);
2916 if (dialog_default_button > IDCANCEL)
2917 (void)SetFocus(GetDlgItem(hwnd, dialog_default_button));
Bram Moolenaar2b80e652007-08-14 14:57:55 +00002918 else
2919 /* We don't have a default, set focus on another element of the
2920 * dialog window, probably the icon */
2921 (void)SetFocus(GetDlgItem(hwnd, DLG_NONBUTTON_CONTROL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922 return FALSE;
2923 }
2924
2925 if (message == WM_COMMAND)
2926 {
2927 int button = LOWORD(wParam);
2928
2929 /* Don't end the dialog if something was selected that was
2930 * not a button.
2931 */
2932 if (button >= DLG_NONBUTTON_CONTROL)
2933 return TRUE;
2934
2935 /* If the edit box exists, copy the string. */
2936 if (s_textfield != NULL)
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002937 {
2938# if defined(FEAT_MBYTE) && defined(WIN3264)
2939 /* If the OS is Windows NT, and 'encoding' differs from active
2940 * codepage: use wide function and convert text. */
2941 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2942 && enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002943 {
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002944 WCHAR *wp = (WCHAR *)alloc(IOSIZE * sizeof(WCHAR));
2945 char_u *p;
2946
2947 GetDlgItemTextW(hwnd, DLG_NONBUTTON_CONTROL + 2, wp, IOSIZE);
2948 p = utf16_to_enc(wp, NULL);
2949 vim_strncpy(s_textfield, p, IOSIZE);
2950 vim_free(p);
2951 vim_free(wp);
2952 }
2953 else
2954# endif
2955 GetDlgItemText(hwnd, DLG_NONBUTTON_CONTROL + 2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 s_textfield, IOSIZE);
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002957 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958
2959 /*
2960 * Need to check for IDOK because if the user just hits Return to
2961 * accept the default value, some reason this is what we get.
2962 */
2963 if (button == IDOK)
2964 {
2965 if (dialog_default_button > IDCANCEL)
2966 EndDialog(hwnd, dialog_default_button);
2967 }
2968 else
2969 EndDialog(hwnd, button - IDCANCEL);
2970 return TRUE;
2971 }
2972
2973 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
2974 {
2975 EndDialog(hwnd, 0);
2976 return TRUE;
2977 }
2978 return FALSE;
2979}
2980
2981/*
2982 * Create a dialog dynamically from the parameter strings.
2983 * type = type of dialog (question, alert, etc.)
2984 * title = dialog title. may be NULL for default title.
2985 * message = text to display. Dialog sizes to accommodate it.
2986 * buttons = '\n' separated list of button captions, default first.
2987 * dfltbutton = number of default button.
2988 *
2989 * This routine returns 1 if the first button is pressed,
2990 * 2 for the second, etc.
2991 *
2992 * 0 indicates Esc was pressed.
2993 * -1 for unexpected error
2994 *
2995 * If stubbing out this fn, return 1.
2996 */
2997
2998static const char_u *dlg_icons[] = /* must match names in resource file */
2999{
3000 "IDR_VIM",
3001 "IDR_VIM_ERROR",
3002 "IDR_VIM_ALERT",
3003 "IDR_VIM_INFO",
3004 "IDR_VIM_QUESTION"
3005};
3006
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 int
3008gui_mch_dialog(
3009 int type,
3010 char_u *title,
3011 char_u *message,
3012 char_u *buttons,
3013 int dfltbutton,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003014 char_u *textfield,
3015 int ex_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016{
3017 WORD *p, *pdlgtemplate, *pnumitems;
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00003018 DWORD *dwp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 int numButtons;
3020 int *buttonWidths, *buttonPositions;
3021 int buttonYpos;
3022 int nchar, i;
3023 DWORD lStyle;
3024 int dlgwidth = 0;
3025 int dlgheight;
3026 int editboxheight;
3027 int horizWidth = 0;
3028 int msgheight;
3029 char_u *pstart;
3030 char_u *pend;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003031 char_u *last_white;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032 char_u *tbuffer;
3033 RECT rect;
3034 HWND hwnd;
3035 HDC hdc;
3036 HFONT font, oldFont;
3037 TEXTMETRIC fontInfo;
3038 int fontHeight;
3039 int textWidth, minButtonWidth, messageWidth;
3040 int maxDialogWidth;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003041 int maxDialogHeight;
3042 int scroll_flag = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 int vertical;
3044 int dlgPaddingX;
3045 int dlgPaddingY;
3046#ifdef USE_SYSMENU_FONT
3047 LOGFONT lfSysmenu;
3048 int use_lfSysmenu = FALSE;
3049#endif
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003050 garray_T ga;
3051 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052
3053#ifndef NO_CONSOLE
3054 /* Don't output anything in silent mode ("ex -s") */
3055 if (silent_mode)
3056 return dfltbutton; /* return default option */
3057#endif
3058
Bram Moolenaar748bf032005-02-02 23:04:36 +00003059 if (s_hwnd == NULL)
3060 get_dialog_font_metrics();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061
3062 if ((type < 0) || (type > VIM_LAST_TYPE))
3063 type = 0;
3064
3065 /* allocate some memory for dialog template */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003066 /* TODO should compute this really */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003067 pdlgtemplate = p = (PWORD)LocalAlloc(LPTR,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003068 DLG_ALLOC_SIZE + STRLEN(message) * 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069
3070 if (p == NULL)
3071 return -1;
3072
3073 /*
3074 * make a copy of 'buttons' to fiddle with it. complier grizzles because
3075 * vim_strsave() doesn't take a const arg (why not?), so cast away the
3076 * const.
3077 */
3078 tbuffer = vim_strsave(buttons);
3079 if (tbuffer == NULL)
3080 return -1;
3081
3082 --dfltbutton; /* Change from one-based to zero-based */
3083
3084 /* Count buttons */
3085 numButtons = 1;
3086 for (i = 0; tbuffer[i] != '\0'; i++)
3087 {
3088 if (tbuffer[i] == DLG_BUTTON_SEP)
3089 numButtons++;
3090 }
3091 if (dfltbutton >= numButtons)
3092 dfltbutton = -1;
3093
3094 /* Allocate array to hold the width of each button */
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00003095 buttonWidths = (int *)lalloc(numButtons * sizeof(int), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096 if (buttonWidths == NULL)
3097 return -1;
3098
3099 /* Allocate array to hold the X position of each button */
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00003100 buttonPositions = (int *)lalloc(numButtons * sizeof(int), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 if (buttonPositions == NULL)
3102 return -1;
3103
3104 /*
3105 * Calculate how big the dialog must be.
3106 */
3107 hwnd = GetDesktopWindow();
3108 hdc = GetWindowDC(hwnd);
3109#ifdef USE_SYSMENU_FONT
3110 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3111 {
3112 font = CreateFontIndirect(&lfSysmenu);
3113 use_lfSysmenu = TRUE;
3114 }
3115 else
3116#endif
3117 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3118 VARIABLE_PITCH , DLG_FONT_NAME);
3119 if (s_usenewlook)
3120 {
3121 oldFont = SelectFont(hdc, font);
3122 dlgPaddingX = DLG_PADDING_X;
3123 dlgPaddingY = DLG_PADDING_Y;
3124 }
3125 else
3126 {
3127 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
3128 dlgPaddingX = DLG_OLD_STYLE_PADDING_X;
3129 dlgPaddingY = DLG_OLD_STYLE_PADDING_Y;
3130 }
3131 GetTextMetrics(hdc, &fontInfo);
3132 fontHeight = fontInfo.tmHeight;
3133
3134 /* Minimum width for horizontal button */
3135 minButtonWidth = GetTextWidth(hdc, "Cancel", 6);
3136
3137 /* Maximum width of a dialog, if possible */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003138 if (s_hwnd == NULL)
3139 {
3140 RECT workarea_rect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141
Bram Moolenaarc716c302006-01-21 22:12:51 +00003142 /* We don't have a window, use the desktop area. */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003143 get_work_area(&workarea_rect);
3144 maxDialogWidth = workarea_rect.right - workarea_rect.left - 100;
3145 if (maxDialogWidth > 600)
3146 maxDialogWidth = 600;
3147 maxDialogHeight = workarea_rect.bottom - workarea_rect.top - 100;
3148 }
3149 else
3150 {
3151 /* Use our own window for the size, unless it's very small. */
3152 GetWindowRect(s_hwnd, &rect);
3153 maxDialogWidth = rect.right - rect.left
3154 - GetSystemMetrics(SM_CXFRAME) * 2;
3155 if (maxDialogWidth < DLG_MIN_MAX_WIDTH)
3156 maxDialogWidth = DLG_MIN_MAX_WIDTH;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003157
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003158 maxDialogHeight = rect.bottom - rect.top
3159 - GetSystemMetrics(SM_CXFRAME) * 2;
3160 if (maxDialogHeight < DLG_MIN_MAX_HEIGHT)
3161 maxDialogHeight = DLG_MIN_MAX_HEIGHT;
3162 }
3163
3164 /* Set dlgwidth to width of message.
3165 * Copy the message into "ga", changing NL to CR-NL and inserting line
3166 * breaks where needed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 pstart = message;
3168 messageWidth = 0;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003169 msgheight = 0;
3170 ga_init2(&ga, sizeof(char), 500);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 do
3172 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003173 msgheight += fontHeight; /* at least one line */
3174
3175 /* Need to figure out where to break the string. The system does it
3176 * at a word boundary, which would mean we can't compute the number of
3177 * wrapped lines. */
3178 textWidth = 0;
3179 last_white = NULL;
3180 for (pend = pstart; *pend != NUL && *pend != '\n'; )
Bram Moolenaar748bf032005-02-02 23:04:36 +00003181 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003182#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003183 l = (*mb_ptr2len)(pend);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003184#else
3185 l = 1;
3186#endif
3187 if (l == 1 && vim_iswhite(*pend)
3188 && textWidth > maxDialogWidth * 3 / 4)
3189 last_white = pend;
3190 textWidth += GetTextWidth(hdc, pend, l);
3191 if (textWidth >= maxDialogWidth)
Bram Moolenaar748bf032005-02-02 23:04:36 +00003192 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003193 /* Line will wrap. */
3194 messageWidth = maxDialogWidth;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003195 msgheight += fontHeight;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003196 textWidth = 0;
3197
3198 if (last_white != NULL)
3199 {
3200 /* break the line just after a space */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003201 ga.ga_len -= (int)(pend - (last_white + 1));
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003202 pend = last_white + 1;
3203 last_white = NULL;
3204 }
3205 ga_append(&ga, '\r');
3206 ga_append(&ga, '\n');
3207 continue;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003208 }
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003209
3210 while (--l >= 0)
3211 ga_append(&ga, *pend++);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003212 }
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003213 if (textWidth > messageWidth)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214 messageWidth = textWidth;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003215
3216 ga_append(&ga, '\r');
3217 ga_append(&ga, '\n');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 pstart = pend + 1;
3219 } while (*pend != NUL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003220
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003221 if (ga.ga_data != NULL)
3222 message = ga.ga_data;
3223
Bram Moolenaar748bf032005-02-02 23:04:36 +00003224 messageWidth += 10; /* roundoff space */
3225
3226 /* Restrict the size to a maximum. Causes a scrollbar to show up. */
3227 if (msgheight > maxDialogHeight)
3228 {
3229 msgheight = maxDialogHeight;
3230 scroll_flag = WS_VSCROLL;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003231 messageWidth += GetSystemMetrics(SM_CXVSCROLL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003232 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233
3234 /* Add width of icon to dlgwidth, and some space */
Bram Moolenaar748bf032005-02-02 23:04:36 +00003235 dlgwidth = messageWidth + DLG_ICON_WIDTH + 3 * dlgPaddingX;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236
3237 if (msgheight < DLG_ICON_HEIGHT)
3238 msgheight = DLG_ICON_HEIGHT;
3239
3240 /*
3241 * Check button names. A long one will make the dialog wider.
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00003242 * When called early (-register error message) p_go isn't initialized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 */
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00003244 vertical = (p_go != NULL && vim_strchr(p_go, GO_VERTICAL) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 if (!vertical)
3246 {
3247 // Place buttons horizontally if they fit.
3248 horizWidth = dlgPaddingX;
3249 pstart = tbuffer;
3250 i = 0;
3251 do
3252 {
3253 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
3254 if (pend == NULL)
3255 pend = pstart + STRLEN(pstart); // Last button name.
3256 textWidth = GetTextWidth(hdc, pstart, (int)(pend - pstart));
3257 if (textWidth < minButtonWidth)
3258 textWidth = minButtonWidth;
3259 textWidth += dlgPaddingX; /* Padding within button */
3260 buttonWidths[i] = textWidth;
3261 buttonPositions[i++] = horizWidth;
3262 horizWidth += textWidth + dlgPaddingX; /* Pad between buttons */
3263 pstart = pend + 1;
3264 } while (*pend != NUL);
3265
3266 if (horizWidth > maxDialogWidth)
3267 vertical = TRUE; // Too wide to fit on the screen.
3268 else if (horizWidth > dlgwidth)
3269 dlgwidth = horizWidth;
3270 }
3271
3272 if (vertical)
3273 {
3274 // Stack buttons vertically.
3275 pstart = tbuffer;
3276 do
3277 {
3278 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
3279 if (pend == NULL)
3280 pend = pstart + STRLEN(pstart); // Last button name.
3281 textWidth = GetTextWidth(hdc, pstart, (int)(pend - pstart));
3282 textWidth += dlgPaddingX; /* Padding within button */
3283 textWidth += DLG_VERT_PADDING_X * 2; /* Padding around button */
3284 if (textWidth > dlgwidth)
3285 dlgwidth = textWidth;
3286 pstart = pend + 1;
3287 } while (*pend != NUL);
3288 }
3289
3290 if (dlgwidth < DLG_MIN_WIDTH)
3291 dlgwidth = DLG_MIN_WIDTH; /* Don't allow a really thin dialog!*/
3292
3293 /* start to fill in the dlgtemplate information. addressing by WORDs */
3294 if (s_usenewlook)
3295 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE |DS_SETFONT;
3296 else
3297 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE;
3298
3299 add_long(lStyle);
3300 add_long(0); // (lExtendedStyle)
3301 pnumitems = p; /*save where the number of items must be stored*/
3302 add_word(0); // NumberOfItems(will change later)
3303 add_word(10); // x
3304 add_word(10); // y
3305 add_word(PixelToDialogX(dlgwidth)); // cx
3306
3307 // Dialog height.
3308 if (vertical)
3309 dlgheight = msgheight + 2 * dlgPaddingY +
3310 DLG_VERT_PADDING_Y + 2 * fontHeight * numButtons;
3311 else
3312 dlgheight = msgheight + 3 * dlgPaddingY + 2 * fontHeight;
3313
3314 // Dialog needs to be taller if contains an edit box.
3315 editboxheight = fontHeight + dlgPaddingY + 4 * DLG_VERT_PADDING_Y;
3316 if (textfield != NULL)
3317 dlgheight += editboxheight;
3318
3319 add_word(PixelToDialogY(dlgheight));
3320
3321 add_word(0); // Menu
3322 add_word(0); // Class
3323
3324 /* copy the title of the dialog */
3325 nchar = nCopyAnsiToWideChar(p, (title ?
3326 (LPSTR)title :
3327 (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
3328 p += nchar;
3329
3330 if (s_usenewlook)
3331 {
3332 /* do the font, since DS_3DLOOK doesn't work properly */
3333#ifdef USE_SYSMENU_FONT
3334 if (use_lfSysmenu)
3335 {
3336 /* point size */
3337 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
3338 GetDeviceCaps(hdc, LOGPIXELSY));
3339 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
3340 }
3341 else
3342#endif
3343 {
3344 *p++ = DLG_FONT_POINT_SIZE; // point size
3345 nchar = nCopyAnsiToWideChar(p, TEXT(DLG_FONT_NAME));
3346 }
3347 p += nchar;
3348 }
3349
3350 buttonYpos = msgheight + 2 * dlgPaddingY;
3351
3352 if (textfield != NULL)
3353 buttonYpos += editboxheight;
3354
3355 pstart = tbuffer;
3356 if (!vertical)
3357 horizWidth = (dlgwidth - horizWidth) / 2; /* Now it's X offset */
3358 for (i = 0; i < numButtons; i++)
3359 {
3360 /* get end of this button. */
3361 for ( pend = pstart;
3362 *pend && (*pend != DLG_BUTTON_SEP);
3363 pend++)
3364 ;
3365
3366 if (*pend)
3367 *pend = '\0';
3368
3369 /*
3370 * old NOTE:
3371 * setting the BS_DEFPUSHBUTTON style doesn't work because Windows sets
3372 * the focus to the first tab-able button and in so doing makes that
3373 * the default!! Grrr. Workaround: Make the default button the only
3374 * one with WS_TABSTOP style. Means user can't tab between buttons, but
3375 * he/she can use arrow keys.
3376 *
3377 * new NOTE: BS_DEFPUSHBUTTON is required to be able to select the
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00003378 * right button when hitting <Enter>. E.g., for the ":confirm quit"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 * dialog. Also needed for when the textfield is the default control.
3380 * It appears to work now (perhaps not on Win95?).
3381 */
3382 if (vertical)
3383 {
3384 p = add_dialog_element(p,
3385 (i == dfltbutton
3386 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
3387 PixelToDialogX(DLG_VERT_PADDING_X),
3388 PixelToDialogY(buttonYpos /* TBK */
3389 + 2 * fontHeight * i),
3390 PixelToDialogX(dlgwidth - 2 * DLG_VERT_PADDING_X),
3391 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
3392 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, pstart);
3393 }
3394 else
3395 {
3396 p = add_dialog_element(p,
3397 (i == dfltbutton
3398 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
3399 PixelToDialogX(horizWidth + buttonPositions[i]),
3400 PixelToDialogY(buttonYpos), /* TBK */
3401 PixelToDialogX(buttonWidths[i]),
3402 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
3403 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, pstart);
3404 }
3405 pstart = pend + 1; /*next button*/
3406 }
3407 *pnumitems += numButtons;
3408
3409 /* Vim icon */
3410 p = add_dialog_element(p, SS_ICON,
3411 PixelToDialogX(dlgPaddingX),
3412 PixelToDialogY(dlgPaddingY),
3413 PixelToDialogX(DLG_ICON_WIDTH),
3414 PixelToDialogY(DLG_ICON_HEIGHT),
3415 DLG_NONBUTTON_CONTROL + 0, (WORD)0x0082,
3416 dlg_icons[type]);
3417
Bram Moolenaar748bf032005-02-02 23:04:36 +00003418 /* Dialog message */
3419 p = add_dialog_element(p, ES_LEFT|scroll_flag|ES_MULTILINE|ES_READONLY,
3420 PixelToDialogX(2 * dlgPaddingX + DLG_ICON_WIDTH),
3421 PixelToDialogY(dlgPaddingY),
3422 (WORD)(PixelToDialogX(messageWidth) + 1),
3423 PixelToDialogY(msgheight),
3424 DLG_NONBUTTON_CONTROL + 1, (WORD)0x0081, message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425
3426 /* Edit box */
3427 if (textfield != NULL)
3428 {
3429 p = add_dialog_element(p, ES_LEFT|ES_AUTOHSCROLL|WS_TABSTOP|WS_BORDER,
3430 PixelToDialogX(2 * dlgPaddingX),
3431 PixelToDialogY(2 * dlgPaddingY + msgheight),
3432 PixelToDialogX(dlgwidth - 4 * dlgPaddingX),
3433 PixelToDialogY(fontHeight + dlgPaddingY),
3434 DLG_NONBUTTON_CONTROL + 2, (WORD)0x0081, textfield);
3435 *pnumitems += 1;
3436 }
3437
3438 *pnumitems += 2;
3439
3440 SelectFont(hdc, oldFont);
3441 DeleteObject(font);
3442 ReleaseDC(hwnd, hdc);
3443
3444 /* Let the dialog_callback() function know which button to make default
3445 * If we have an edit box, make that the default. We also need to tell
3446 * dialog_callback() if this dialog contains an edit box or not. We do
3447 * this by setting s_textfield if it does.
3448 */
3449 if (textfield != NULL)
3450 {
3451 dialog_default_button = DLG_NONBUTTON_CONTROL + 2;
3452 s_textfield = textfield;
3453 }
3454 else
3455 {
3456 dialog_default_button = IDCANCEL + 1 + dfltbutton;
3457 s_textfield = NULL;
3458 }
3459
3460 /* show the dialog box modally and get a return value */
3461 nchar = (int)DialogBoxIndirect(
3462 s_hinst,
3463 (LPDLGTEMPLATE)pdlgtemplate,
3464 s_hwnd,
3465 (DLGPROC)dialog_callback);
3466
3467 LocalFree(LocalHandle(pdlgtemplate));
3468 vim_free(tbuffer);
3469 vim_free(buttonWidths);
3470 vim_free(buttonPositions);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003471 vim_free(ga.ga_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472
3473 /* Focus back to our window (for when MDI is used). */
3474 (void)SetFocus(s_hwnd);
3475
3476 return nchar;
3477}
3478
3479#endif /* FEAT_GUI_DIALOG */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003480
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481/*
3482 * Put a simple element (basic class) onto a dialog template in memory.
3483 * return a pointer to where the next item should be added.
3484 *
3485 * parameters:
3486 * lStyle = additional style flags
3487 * (be careful, NT3.51 & Win32s will ignore the new ones)
3488 * x,y = x & y positions IN DIALOG UNITS
3489 * w,h = width and height IN DIALOG UNITS
3490 * Id = ID used in messages
3491 * clss = class ID, e.g 0x0080 for a button, 0x0082 for a static
3492 * caption = usually text or resource name
3493 *
3494 * TODO: use the length information noted here to enable the dialog creation
3495 * routines to work out more exactly how much memory they need to alloc.
3496 */
3497 static PWORD
3498add_dialog_element(
3499 PWORD p,
3500 DWORD lStyle,
3501 WORD x,
3502 WORD y,
3503 WORD w,
3504 WORD h,
3505 WORD Id,
3506 WORD clss,
3507 const char *caption)
3508{
3509 int nchar;
3510
3511 p = lpwAlign(p); /* Align to dword boundary*/
3512 lStyle = lStyle | WS_VISIBLE | WS_CHILD;
3513 *p++ = LOWORD(lStyle);
3514 *p++ = HIWORD(lStyle);
3515 *p++ = 0; // LOWORD (lExtendedStyle)
3516 *p++ = 0; // HIWORD (lExtendedStyle)
3517 *p++ = x;
3518 *p++ = y;
3519 *p++ = w;
3520 *p++ = h;
3521 *p++ = Id; //9 or 10 words in all
3522
3523 *p++ = (WORD)0xffff;
3524 *p++ = clss; //2 more here
3525
3526 nchar = nCopyAnsiToWideChar(p, (LPSTR)caption); //strlen(caption)+1
3527 p += nchar;
3528
3529 *p++ = 0; // advance pointer over nExtraStuff WORD - 2 more
3530
3531 return p; //total = 15+ (strlen(caption)) words
3532 // = 30 + 2(strlen(caption) bytes reqd
3533}
3534
3535
3536/*
3537 * Helper routine. Take an input pointer, return closest pointer that is
3538 * aligned on a DWORD (4 byte) boundary. Taken from the Win32SDK samples.
3539 */
3540 static LPWORD
3541lpwAlign(
3542 LPWORD lpIn)
3543{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003544 long_u ul;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003546 ul = (long_u)lpIn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 ul += 3;
3548 ul >>= 2;
3549 ul <<= 2;
3550 return (LPWORD)ul;
3551}
3552
3553/*
3554 * Helper routine. Takes second parameter as Ansi string, copies it to first
3555 * parameter as wide character (16-bits / char) string, and returns integer
3556 * number of wide characters (words) in string (including the trailing wide
3557 * char NULL). Partly taken from the Win32SDK samples.
3558 */
3559 static int
3560nCopyAnsiToWideChar(
3561 LPWORD lpWCStr,
3562 LPSTR lpAnsiIn)
3563{
3564 int nChar = 0;
3565#ifdef FEAT_MBYTE
3566 int len = lstrlen(lpAnsiIn) + 1; /* include NUL character */
3567 int i;
3568 WCHAR *wn;
3569
3570 if (enc_codepage == 0 && (int)GetACP() != enc_codepage)
3571 {
3572 /* Not a codepage, use our own conversion function. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003573 wn = enc_to_utf16(lpAnsiIn, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 if (wn != NULL)
3575 {
3576 wcscpy(lpWCStr, wn);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003577 nChar = (int)wcslen(wn) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 vim_free(wn);
3579 }
3580 }
3581 if (nChar == 0)
3582 /* Use Win32 conversion function. */
3583 nChar = MultiByteToWideChar(
3584 enc_codepage > 0 ? enc_codepage : CP_ACP,
3585 MB_PRECOMPOSED,
3586 lpAnsiIn, len,
3587 lpWCStr, len);
3588 for (i = 0; i < nChar; ++i)
3589 if (lpWCStr[i] == (WORD)'\t') /* replace tabs with spaces */
3590 lpWCStr[i] = (WORD)' ';
3591#else
3592 do
3593 {
3594 if (*lpAnsiIn == '\t')
3595 *lpWCStr++ = (WORD)' ';
3596 else
3597 *lpWCStr++ = (WORD)*lpAnsiIn;
3598 nChar++;
3599 } while (*lpAnsiIn++);
3600#endif
3601
3602 return nChar;
3603}
3604
3605
3606#ifdef FEAT_TEAROFF
3607/*
3608 * The callback function for all the modeless dialogs that make up the
3609 * "tearoff menus" Very simple - forward button presses (to fool Vim into
3610 * thinking its menus have been clicked), and go away when closed.
3611 */
3612 static LRESULT CALLBACK
3613tearoff_callback(
3614 HWND hwnd,
3615 UINT message,
3616 WPARAM wParam,
3617 LPARAM lParam)
3618{
3619 if (message == WM_INITDIALOG)
3620 return (TRUE);
3621
3622 /* May show the mouse pointer again. */
3623 HandleMouseHide(message, lParam);
3624
3625 if (message == WM_COMMAND)
3626 {
3627 if ((WORD)(LOWORD(wParam)) & 0x8000)
3628 {
3629 POINT mp;
3630 RECT rect;
3631
3632 if (GetCursorPos(&mp) && GetWindowRect(hwnd, &rect))
3633 {
3634 (void)TrackPopupMenu(
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003635 (HMENU)(long_u)(LOWORD(wParam) ^ 0x8000),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 TPM_LEFTALIGN | TPM_LEFTBUTTON,
3637 (int)rect.right - 8,
3638 (int)mp.y,
3639 (int)0, /*reserved param*/
3640 s_hwnd,
3641 NULL);
3642 /*
3643 * NOTE: The pop-up menu can eat the mouse up event.
3644 * We deal with this in normal.c.
3645 */
3646 }
3647 }
3648 else
3649 /* Pass on messages to the main Vim window */
3650 PostMessage(s_hwnd, WM_COMMAND, LOWORD(wParam), 0);
3651 /*
3652 * Give main window the focus back: this is so after
3653 * choosing a tearoff button you can start typing again
3654 * straight away.
3655 */
3656 (void)SetFocus(s_hwnd);
3657 return TRUE;
3658 }
3659 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
3660 {
3661 DestroyWindow(hwnd);
3662 return TRUE;
3663 }
3664
3665 /* When moved around, give main window the focus back. */
3666 if (message == WM_EXITSIZEMOVE)
3667 (void)SetActiveWindow(s_hwnd);
3668
3669 return FALSE;
3670}
3671#endif
3672
3673
3674/*
3675 * Decide whether to use the "new look" (small, non-bold font) or the "old
3676 * look" (big, clanky font) for dialogs, and work out a few values for use
3677 * later accordingly.
3678 */
3679 static void
3680get_dialog_font_metrics(void)
3681{
3682 HDC hdc;
3683 HFONT hfontTools = 0;
3684 DWORD dlgFontSize;
3685 SIZE size;
3686#ifdef USE_SYSMENU_FONT
3687 LOGFONT lfSysmenu;
3688#endif
3689
3690 s_usenewlook = FALSE;
3691
3692 /*
3693 * For NT3.51 and Win32s, we stick with the old look
3694 * because it matches everything else.
3695 */
3696 if (!is_winnt_3())
3697 {
3698#ifdef USE_SYSMENU_FONT
3699 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3700 hfontTools = CreateFontIndirect(&lfSysmenu);
3701 else
3702#endif
3703 hfontTools = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0,
3704 0, 0, 0, 0, VARIABLE_PITCH , DLG_FONT_NAME);
3705
3706 if (hfontTools)
3707 {
3708 hdc = GetDC(s_hwnd);
3709 SelectObject(hdc, hfontTools);
3710 /*
3711 * GetTextMetrics() doesn't return the right value in
3712 * tmAveCharWidth, so we have to figure out the dialog base units
3713 * ourselves.
3714 */
3715 GetTextExtentPoint(hdc,
3716 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
3717 52, &size);
3718 ReleaseDC(s_hwnd, hdc);
3719
3720 s_dlgfntwidth = (WORD)((size.cx / 26 + 1) / 2);
3721 s_dlgfntheight = (WORD)size.cy;
3722 s_usenewlook = TRUE;
3723 }
3724 }
3725
3726 if (!s_usenewlook)
3727 {
3728 dlgFontSize = GetDialogBaseUnits(); /* fall back to big old system*/
3729 s_dlgfntwidth = LOWORD(dlgFontSize);
3730 s_dlgfntheight = HIWORD(dlgFontSize);
3731 }
3732}
3733
3734#if defined(FEAT_MENU) && defined(FEAT_TEAROFF)
3735/*
3736 * Create a pseudo-"tearoff menu" based on the child
3737 * items of a given menu pointer.
3738 */
3739 static void
3740gui_mch_tearoff(
3741 char_u *title,
3742 vimmenu_T *menu,
3743 int initX,
3744 int initY)
3745{
3746 WORD *p, *pdlgtemplate, *pnumitems, *ptrueheight;
3747 int template_len;
3748 int nchar, textWidth, submenuWidth;
3749 DWORD lStyle;
3750 DWORD lExtendedStyle;
3751 WORD dlgwidth;
3752 WORD menuID;
3753 vimmenu_T *pmenu;
3754 vimmenu_T *the_menu = menu;
3755 HWND hwnd;
3756 HDC hdc;
3757 HFONT font, oldFont;
3758 int col, spaceWidth, len;
3759 int columnWidths[2];
3760 char_u *label, *text;
3761 int acLen = 0;
3762 int nameLen;
3763 int padding0, padding1, padding2 = 0;
3764 int sepPadding=0;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003765 int x;
3766 int y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767#ifdef USE_SYSMENU_FONT
3768 LOGFONT lfSysmenu;
3769 int use_lfSysmenu = FALSE;
3770#endif
3771
3772 /*
3773 * If this menu is already torn off, move it to the mouse position.
3774 */
3775 if (IsWindow(menu->tearoff_handle))
3776 {
3777 POINT mp;
3778 if (GetCursorPos((LPPOINT)&mp))
3779 {
3780 SetWindowPos(menu->tearoff_handle, NULL, mp.x, mp.y, 0, 0,
3781 SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER);
3782 }
3783 return;
3784 }
3785
3786 /*
3787 * Create a new tearoff.
3788 */
3789 if (*title == MNU_HIDDEN_CHAR)
3790 title++;
3791
3792 /* Allocate memory to store the dialog template. It's made bigger when
3793 * needed. */
3794 template_len = DLG_ALLOC_SIZE;
3795 pdlgtemplate = p = (WORD *)LocalAlloc(LPTR, template_len);
3796 if (p == NULL)
3797 return;
3798
3799 hwnd = GetDesktopWindow();
3800 hdc = GetWindowDC(hwnd);
3801#ifdef USE_SYSMENU_FONT
3802 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3803 {
3804 font = CreateFontIndirect(&lfSysmenu);
3805 use_lfSysmenu = TRUE;
3806 }
3807 else
3808#endif
3809 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3810 VARIABLE_PITCH , DLG_FONT_NAME);
3811 if (s_usenewlook)
3812 oldFont = SelectFont(hdc, font);
3813 else
3814 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
3815
3816 /* Calculate width of a single space. Used for padding columns to the
3817 * right width. */
3818 spaceWidth = GetTextWidth(hdc, " ", 1);
3819
3820 /* Figure out max width of the text column, the accelerator column and the
3821 * optional submenu column. */
3822 submenuWidth = 0;
3823 for (col = 0; col < 2; col++)
3824 {
3825 columnWidths[col] = 0;
3826 for (pmenu = menu->children; pmenu != NULL; pmenu = pmenu->next)
3827 {
3828 /* Use "dname" here to compute the width of the visible text. */
3829 text = (col == 0) ? pmenu->dname : pmenu->actext;
3830 if (text != NULL && *text != NUL)
3831 {
3832 textWidth = GetTextWidthEnc(hdc, text, (int)STRLEN(text));
3833 if (textWidth > columnWidths[col])
3834 columnWidths[col] = textWidth;
3835 }
3836 if (pmenu->children != NULL)
3837 submenuWidth = TEAROFF_COLUMN_PADDING * spaceWidth;
3838 }
3839 }
3840 if (columnWidths[1] == 0)
3841 {
3842 /* no accelerators */
3843 if (submenuWidth != 0)
3844 columnWidths[0] += submenuWidth;
3845 else
3846 columnWidths[0] += spaceWidth;
3847 }
3848 else
3849 {
3850 /* there is an accelerator column */
3851 columnWidths[0] += TEAROFF_COLUMN_PADDING * spaceWidth;
3852 columnWidths[1] += submenuWidth;
3853 }
3854
3855 /*
3856 * Now find the total width of our 'menu'.
3857 */
3858 textWidth = columnWidths[0] + columnWidths[1];
3859 if (submenuWidth != 0)
3860 {
3861 submenuWidth = GetTextWidth(hdc, TEAROFF_SUBMENU_LABEL,
3862 (int)STRLEN(TEAROFF_SUBMENU_LABEL));
3863 textWidth += submenuWidth;
3864 }
3865 dlgwidth = GetTextWidthEnc(hdc, title, (int)STRLEN(title));
3866 if (textWidth > dlgwidth)
3867 dlgwidth = textWidth;
3868 dlgwidth += 2 * TEAROFF_PADDING_X + TEAROFF_BUTTON_PAD_X;
3869
3870 /* W95 can't do thin dialogs, they look v. weird! */
3871 if (mch_windows95() && dlgwidth < TEAROFF_MIN_WIDTH)
3872 dlgwidth = TEAROFF_MIN_WIDTH;
3873
3874 /* start to fill in the dlgtemplate information. addressing by WORDs */
3875 if (s_usenewlook)
3876 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU |DS_SETFONT| WS_VISIBLE;
3877 else
3878 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU | WS_VISIBLE;
3879
3880 lExtendedStyle = WS_EX_TOOLWINDOW|WS_EX_STATICEDGE;
3881 *p++ = LOWORD(lStyle);
3882 *p++ = HIWORD(lStyle);
3883 *p++ = LOWORD(lExtendedStyle);
3884 *p++ = HIWORD(lExtendedStyle);
3885 pnumitems = p; /* save where the number of items must be stored */
3886 *p++ = 0; // NumberOfItems(will change later)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003887 gui_mch_getmouse(&x, &y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 if (initX == 0xffffL)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003889 *p++ = PixelToDialogX(x); // x
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 else
3891 *p++ = PixelToDialogX(initX); // x
3892 if (initY == 0xffffL)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003893 *p++ = PixelToDialogY(y); // y
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 else
3895 *p++ = PixelToDialogY(initY); // y
3896 *p++ = PixelToDialogX(dlgwidth); // cx
3897 ptrueheight = p;
3898 *p++ = 0; // dialog height: changed later anyway
3899 *p++ = 0; // Menu
3900 *p++ = 0; // Class
3901
3902 /* copy the title of the dialog */
3903 nchar = nCopyAnsiToWideChar(p, ((*title)
3904 ? (LPSTR)title
3905 : (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
3906 p += nchar;
3907
3908 if (s_usenewlook)
3909 {
3910 /* do the font, since DS_3DLOOK doesn't work properly */
3911#ifdef USE_SYSMENU_FONT
3912 if (use_lfSysmenu)
3913 {
3914 /* point size */
3915 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
3916 GetDeviceCaps(hdc, LOGPIXELSY));
3917 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
3918 }
3919 else
3920#endif
3921 {
3922 *p++ = DLG_FONT_POINT_SIZE; // point size
3923 nchar = nCopyAnsiToWideChar (p, TEXT(DLG_FONT_NAME));
3924 }
3925 p += nchar;
3926 }
3927
3928 /*
3929 * Loop over all the items in the menu.
3930 * But skip over the tearbar.
3931 */
3932 if (STRCMP(menu->children->name, TEAR_STRING) == 0)
3933 menu = menu->children->next;
3934 else
3935 menu = menu->children;
3936 for ( ; menu != NULL; menu = menu->next)
3937 {
3938 if (menu->modes == 0) /* this menu has just been deleted */
3939 continue;
3940 if (menu_is_separator(menu->dname))
3941 {
3942 sepPadding += 3;
3943 continue;
3944 }
3945
3946 /* Check if there still is plenty of room in the template. Make it
3947 * larger when needed. */
3948 if (((char *)p - (char *)pdlgtemplate) + 1000 > template_len)
3949 {
3950 WORD *newp;
3951
3952 newp = (WORD *)LocalAlloc(LPTR, template_len + 4096);
3953 if (newp != NULL)
3954 {
3955 template_len += 4096;
3956 mch_memmove(newp, pdlgtemplate,
3957 (char *)p - (char *)pdlgtemplate);
3958 p = newp + (p - pdlgtemplate);
3959 pnumitems = newp + (pnumitems - pdlgtemplate);
3960 ptrueheight = newp + (ptrueheight - pdlgtemplate);
3961 LocalFree(LocalHandle(pdlgtemplate));
3962 pdlgtemplate = newp;
3963 }
3964 }
3965
3966 /* Figure out minimal length of this menu label. Use "name" for the
3967 * actual text, "dname" for estimating the displayed size. "name"
3968 * has "&a" for mnemonic and includes the accelerator. */
3969 len = nameLen = (int)STRLEN(menu->name);
3970 padding0 = (columnWidths[0] - GetTextWidthEnc(hdc, menu->dname,
3971 (int)STRLEN(menu->dname))) / spaceWidth;
3972 len += padding0;
3973
3974 if (menu->actext != NULL)
3975 {
3976 acLen = (int)STRLEN(menu->actext);
3977 len += acLen;
3978 textWidth = GetTextWidthEnc(hdc, menu->actext, acLen);
3979 }
3980 else
3981 textWidth = 0;
3982 padding1 = (columnWidths[1] - textWidth) / spaceWidth;
3983 len += padding1;
3984
3985 if (menu->children == NULL)
3986 {
3987 padding2 = submenuWidth / spaceWidth;
3988 len += padding2;
3989 menuID = (WORD)(menu->id);
3990 }
3991 else
3992 {
3993 len += (int)STRLEN(TEAROFF_SUBMENU_LABEL);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003994 menuID = (WORD)((long_u)(menu->submenu_id) | (DWORD)0x8000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 }
3996
3997 /* Allocate menu label and fill it in */
3998 text = label = alloc((unsigned)len + 1);
3999 if (label == NULL)
4000 break;
4001
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004002 vim_strncpy(text, menu->name, nameLen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 text = vim_strchr(text, TAB); /* stop at TAB before actext */
4004 if (text == NULL)
4005 text = label + nameLen; /* no actext, use whole name */
4006 while (padding0-- > 0)
4007 *text++ = ' ';
4008 if (menu->actext != NULL)
4009 {
4010 STRNCPY(text, menu->actext, acLen);
4011 text += acLen;
4012 }
4013 while (padding1-- > 0)
4014 *text++ = ' ';
4015 if (menu->children != NULL)
4016 {
4017 STRCPY(text, TEAROFF_SUBMENU_LABEL);
4018 text += STRLEN(TEAROFF_SUBMENU_LABEL);
4019 }
4020 else
4021 {
4022 while (padding2-- > 0)
4023 *text++ = ' ';
4024 }
4025 *text = NUL;
4026
4027 /*
4028 * BS_LEFT will just be ignored on Win32s/NT3.5x - on
4029 * W95/NT4 it makes the tear-off look more like a menu.
4030 */
4031 p = add_dialog_element(p,
4032 BS_PUSHBUTTON|BS_LEFT,
4033 (WORD)PixelToDialogX(TEAROFF_PADDING_X),
4034 (WORD)(sepPadding + 1 + 13 * (*pnumitems)),
4035 (WORD)PixelToDialogX(dlgwidth - 2 * TEAROFF_PADDING_X),
4036 (WORD)12,
4037 menuID, (WORD)0x0080, label);
4038 vim_free(label);
4039 (*pnumitems)++;
4040 }
4041
4042 *ptrueheight = (WORD)(sepPadding + 1 + 13 * (*pnumitems));
4043
4044
4045 /* show modelessly */
4046 the_menu->tearoff_handle = CreateDialogIndirect(
4047 s_hinst,
4048 (LPDLGTEMPLATE)pdlgtemplate,
4049 s_hwnd,
4050 (DLGPROC)tearoff_callback);
4051
4052 LocalFree(LocalHandle(pdlgtemplate));
4053 SelectFont(hdc, oldFont);
4054 DeleteObject(font);
4055 ReleaseDC(hwnd, hdc);
4056
4057 /*
4058 * Reassert ourselves as the active window. This is so that after creating
4059 * a tearoff, the user doesn't have to click with the mouse just to start
4060 * typing again!
4061 */
4062 (void)SetActiveWindow(s_hwnd);
4063
4064 /* make sure the right buttons are enabled */
4065 force_menu_update = TRUE;
4066}
4067#endif
4068
4069#if defined(FEAT_TOOLBAR) || defined(PROTO)
4070#include "gui_w32_rc.h"
4071
4072/* This not defined in older SDKs */
4073# ifndef TBSTYLE_FLAT
4074# define TBSTYLE_FLAT 0x0800
4075# endif
4076
4077/*
4078 * Create the toolbar, initially unpopulated.
4079 * (just like the menu, there are no defaults, it's all
4080 * set up through menu.vim)
4081 */
4082 static void
4083initialise_toolbar(void)
4084{
4085 InitCommonControls();
4086 s_toolbarhwnd = CreateToolbarEx(
4087 s_hwnd,
4088 WS_CHILD | TBSTYLE_TOOLTIPS | TBSTYLE_FLAT,
4089 4000, //any old big number
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00004090 31, //number of images in initial bitmap
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 s_hinst,
4092 IDR_TOOLBAR1, // id of initial bitmap
4093 NULL,
4094 0, // initial number of buttons
4095 TOOLBAR_BUTTON_WIDTH, //api guide is wrong!
4096 TOOLBAR_BUTTON_HEIGHT,
4097 TOOLBAR_BUTTON_WIDTH,
4098 TOOLBAR_BUTTON_HEIGHT,
4099 sizeof(TBBUTTON)
4100 );
4101
4102 gui_mch_show_toolbar(vim_strchr(p_go, GO_TOOLBAR) != NULL);
4103}
4104
4105 static int
4106get_toolbar_bitmap(vimmenu_T *menu)
4107{
4108 int i = -1;
4109
4110 /*
4111 * Check user bitmaps first, unless builtin is specified.
4112 */
4113 if (!is_winnt_3() && !menu->icon_builtin)
4114 {
4115 char_u fname[MAXPATHL];
4116 HANDLE hbitmap = NULL;
4117
4118 if (menu->iconfile != NULL)
4119 {
4120 gui_find_iconfile(menu->iconfile, fname, "bmp");
4121 hbitmap = LoadImage(
4122 NULL,
4123 fname,
4124 IMAGE_BITMAP,
4125 TOOLBAR_BUTTON_WIDTH,
4126 TOOLBAR_BUTTON_HEIGHT,
4127 LR_LOADFROMFILE |
4128 LR_LOADMAP3DCOLORS
4129 );
4130 }
4131
4132 /*
4133 * If the LoadImage call failed, or the "icon=" file
4134 * didn't exist or wasn't specified, try the menu name
4135 */
4136 if (hbitmap == NULL
4137 && (gui_find_bitmap(menu->name, fname, "bmp") == OK))
4138 hbitmap = LoadImage(
4139 NULL,
4140 fname,
4141 IMAGE_BITMAP,
4142 TOOLBAR_BUTTON_WIDTH,
4143 TOOLBAR_BUTTON_HEIGHT,
4144 LR_LOADFROMFILE |
4145 LR_LOADMAP3DCOLORS
4146 );
4147
4148 if (hbitmap != NULL)
4149 {
4150 TBADDBITMAP tbAddBitmap;
4151
4152 tbAddBitmap.hInst = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004153 tbAddBitmap.nID = (long_u)hbitmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154
4155 i = (int)SendMessage(s_toolbarhwnd, TB_ADDBITMAP,
4156 (WPARAM)1, (LPARAM)&tbAddBitmap);
4157 /* i will be set to -1 if it fails */
4158 }
4159 }
4160 if (i == -1 && menu->iconidx >= 0 && menu->iconidx < TOOLBAR_BITMAP_COUNT)
4161 i = menu->iconidx;
4162
4163 return i;
4164}
4165#endif
4166
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004167#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
4168 static void
4169initialise_tabline(void)
4170{
4171 InitCommonControls();
4172
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004173 s_tabhwnd = CreateWindow(WC_TABCONTROL, "Vim tabline",
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004174 WS_CHILD|TCS_FOCUSNEVER|TCS_TOOLTIPS,
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004175 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
4176 CW_USEDEFAULT, s_hwnd, NULL, s_hinst, NULL);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004177
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004178 gui.tabline_height = TABLINE_HEIGHT;
4179
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004180# ifdef USE_SYSMENU_FONT
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004181 set_tabline_font();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004182# endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004183}
4184#endif
4185
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186#if defined(FEAT_OLE) || defined(FEAT_EVAL) || defined(PROTO)
4187/*
4188 * Make the GUI window come to the foreground.
4189 */
4190 void
4191gui_mch_set_foreground(void)
4192{
4193 if (IsIconic(s_hwnd))
4194 SendMessage(s_hwnd, WM_SYSCOMMAND, SC_RESTORE, 0);
4195 SetForegroundWindow(s_hwnd);
4196}
4197#endif
4198
4199#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
4200 static void
4201dyn_imm_load(void)
4202{
Bram Moolenaarebbcb822010-10-23 14:02:54 +02004203 hLibImm = vimLoadLib("imm32.dll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 if (hLibImm == NULL)
4205 return;
4206
4207 pImmGetCompositionStringA
4208 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringA");
4209 pImmGetCompositionStringW
4210 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringW");
4211 pImmGetContext
4212 = (void *)GetProcAddress(hLibImm, "ImmGetContext");
4213 pImmAssociateContext
4214 = (void *)GetProcAddress(hLibImm, "ImmAssociateContext");
4215 pImmReleaseContext
4216 = (void *)GetProcAddress(hLibImm, "ImmReleaseContext");
4217 pImmGetOpenStatus
4218 = (void *)GetProcAddress(hLibImm, "ImmGetOpenStatus");
4219 pImmSetOpenStatus
4220 = (void *)GetProcAddress(hLibImm, "ImmSetOpenStatus");
4221 pImmGetCompositionFont
4222 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionFontA");
4223 pImmSetCompositionFont
4224 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionFontA");
4225 pImmSetCompositionWindow
4226 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionWindow");
4227 pImmGetConversionStatus
4228 = (void *)GetProcAddress(hLibImm, "ImmGetConversionStatus");
Bram Moolenaarca003e12006-03-17 23:19:38 +00004229 pImmSetConversionStatus
4230 = (void *)GetProcAddress(hLibImm, "ImmSetConversionStatus");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231
4232 if ( pImmGetCompositionStringA == NULL
4233 || pImmGetCompositionStringW == NULL
4234 || pImmGetContext == NULL
4235 || pImmAssociateContext == NULL
4236 || pImmReleaseContext == NULL
4237 || pImmGetOpenStatus == NULL
4238 || pImmSetOpenStatus == NULL
4239 || pImmGetCompositionFont == NULL
4240 || pImmSetCompositionFont == NULL
4241 || pImmSetCompositionWindow == NULL
Bram Moolenaarca003e12006-03-17 23:19:38 +00004242 || pImmGetConversionStatus == NULL
4243 || pImmSetConversionStatus == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 {
4245 FreeLibrary(hLibImm);
4246 hLibImm = NULL;
4247 pImmGetContext = NULL;
4248 return;
4249 }
4250
4251 return;
4252}
4253
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254#endif
4255
4256#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
4257
4258# ifdef FEAT_XPM_W32
4259# define IMAGE_XPM 100
4260# endif
4261
4262typedef struct _signicon_t
4263{
4264 HANDLE hImage;
4265 UINT uType;
4266#ifdef FEAT_XPM_W32
4267 HANDLE hShape; /* Mask bitmap handle */
4268#endif
4269} signicon_t;
4270
4271 void
4272gui_mch_drawsign(row, col, typenr)
4273 int row;
4274 int col;
4275 int typenr;
4276{
4277 signicon_t *sign;
4278 int x, y, w, h;
4279
4280 if (!gui.in_use || (sign = (signicon_t *)sign_get_image(typenr)) == NULL)
4281 return;
4282
4283 x = TEXT_X(col);
4284 y = TEXT_Y(row);
4285 w = gui.char_width * 2;
4286 h = gui.char_height;
4287 switch (sign->uType)
4288 {
4289 case IMAGE_BITMAP:
4290 {
4291 HDC hdcMem;
4292 HBITMAP hbmpOld;
4293
4294 hdcMem = CreateCompatibleDC(s_hdc);
4295 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hImage);
4296 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCCOPY);
4297 SelectObject(hdcMem, hbmpOld);
4298 DeleteDC(hdcMem);
4299 }
4300 break;
4301 case IMAGE_ICON:
4302 case IMAGE_CURSOR:
4303 DrawIconEx(s_hdc, x, y, (HICON)sign->hImage, w, h, 0, NULL, DI_NORMAL);
4304 break;
4305#ifdef FEAT_XPM_W32
4306 case IMAGE_XPM:
4307 {
4308 HDC hdcMem;
4309 HBITMAP hbmpOld;
4310
4311 hdcMem = CreateCompatibleDC(s_hdc);
4312 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hShape);
4313 /* Make hole */
4314 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCAND);
4315
4316 SelectObject(hdcMem, sign->hImage);
4317 /* Paint sign */
4318 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCPAINT);
4319 SelectObject(hdcMem, hbmpOld);
4320 DeleteDC(hdcMem);
4321 }
4322 break;
4323#endif
4324 }
4325}
4326
4327 static void
4328close_signicon_image(signicon_t *sign)
4329{
4330 if (sign)
4331 switch (sign->uType)
4332 {
4333 case IMAGE_BITMAP:
4334 DeleteObject((HGDIOBJ)sign->hImage);
4335 break;
4336 case IMAGE_CURSOR:
4337 DestroyCursor((HCURSOR)sign->hImage);
4338 break;
4339 case IMAGE_ICON:
4340 DestroyIcon((HICON)sign->hImage);
4341 break;
4342#ifdef FEAT_XPM_W32
4343 case IMAGE_XPM:
4344 DeleteObject((HBITMAP)sign->hImage);
4345 DeleteObject((HBITMAP)sign->hShape);
4346 break;
4347#endif
4348 }
4349}
4350
4351 void *
4352gui_mch_register_sign(signfile)
4353 char_u *signfile;
4354{
4355 signicon_t sign, *psign;
4356 char_u *ext;
4357
4358 if (is_winnt_3())
4359 {
4360 EMSG(_(e_signdata));
4361 return NULL;
4362 }
4363
4364 sign.hImage = NULL;
4365 ext = signfile + STRLEN(signfile) - 4; /* get extention */
4366 if (ext > signfile)
4367 {
4368 int do_load = 1;
4369
4370 if (!STRICMP(ext, ".bmp"))
4371 sign.uType = IMAGE_BITMAP;
4372 else if (!STRICMP(ext, ".ico"))
4373 sign.uType = IMAGE_ICON;
4374 else if (!STRICMP(ext, ".cur") || !STRICMP(ext, ".ani"))
4375 sign.uType = IMAGE_CURSOR;
4376 else
4377 do_load = 0;
4378
4379 if (do_load)
4380 sign.hImage = (HANDLE)LoadImage(NULL, signfile, sign.uType,
4381 gui.char_width * 2, gui.char_height,
4382 LR_LOADFROMFILE | LR_CREATEDIBSECTION);
4383#ifdef FEAT_XPM_W32
4384 if (!STRICMP(ext, ".xpm"))
4385 {
4386 sign.uType = IMAGE_XPM;
4387 LoadXpmImage(signfile, (HBITMAP *)&sign.hImage, (HBITMAP *)&sign.hShape);
4388 }
4389#endif
4390 }
4391
4392 psign = NULL;
4393 if (sign.hImage && (psign = (signicon_t *)alloc(sizeof(signicon_t)))
4394 != NULL)
4395 *psign = sign;
4396
4397 if (!psign)
4398 {
4399 if (sign.hImage)
4400 close_signicon_image(&sign);
4401 EMSG(_(e_signdata));
4402 }
4403 return (void *)psign;
4404
4405}
4406
4407 void
4408gui_mch_destroy_sign(sign)
4409 void *sign;
4410{
4411 if (sign)
4412 {
4413 close_signicon_image((signicon_t *)sign);
4414 vim_free(sign);
4415 }
4416}
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004417#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418
4419#if defined(FEAT_BEVAL) || defined(PROTO)
4420
4421/* BALLOON-EVAL IMPLEMENTATION FOR WINDOWS.
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00004422 * Added by Sergey Khorev <sergey.khorev@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 *
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004424 * The only reused thing is gui_beval.h and get_beval_info()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 * from gui_beval.c (note it uses x and y of the BalloonEval struct
4426 * to get current mouse position).
4427 *
4428 * Trying to use as more Windows services as possible, and as less
4429 * IE version as possible :)).
4430 *
4431 * 1) Don't create ToolTip in gui_mch_create_beval_area, only initialize
4432 * BalloonEval struct.
4433 * 2) Enable/Disable simply create/kill BalloonEval Timer
4434 * 3) When there was enough inactivity, timer procedure posts
4435 * async request to debugger
4436 * 4) gui_mch_post_balloon (invoked from netbeans.c) creates tooltip control
4437 * and performs some actions to show it ASAP
Bram Moolenaar446cb832008-06-24 21:56:24 +00004438 * 5) WM_NOTIFY:TTN_POP destroys created tooltip
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 */
4440
Bram Moolenaar45360022005-07-21 21:08:21 +00004441/*
4442 * determine whether installed Common Controls support multiline tooltips
4443 * (i.e. their version is >= 4.70
4444 */
4445 int
4446multiline_balloon_available(void)
4447{
4448 HINSTANCE hDll;
4449 static char comctl_dll[] = "comctl32.dll";
4450 static int multiline_tip = MAYBE;
4451
4452 if (multiline_tip != MAYBE)
4453 return multiline_tip;
4454
4455 hDll = GetModuleHandle(comctl_dll);
4456 if (hDll != NULL)
4457 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004458 DLLGETVERSIONPROC pGetVer;
4459 pGetVer = (DLLGETVERSIONPROC)GetProcAddress(hDll, "DllGetVersion");
Bram Moolenaar45360022005-07-21 21:08:21 +00004460
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004461 if (pGetVer != NULL)
4462 {
4463 DLLVERSIONINFO dvi;
4464 HRESULT hr;
Bram Moolenaar45360022005-07-21 21:08:21 +00004465
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004466 ZeroMemory(&dvi, sizeof(dvi));
4467 dvi.cbSize = sizeof(dvi);
Bram Moolenaar45360022005-07-21 21:08:21 +00004468
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004469 hr = (*pGetVer)(&dvi);
Bram Moolenaar45360022005-07-21 21:08:21 +00004470
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004471 if (SUCCEEDED(hr)
Bram Moolenaar45360022005-07-21 21:08:21 +00004472 && (dvi.dwMajorVersion > 4
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004473 || (dvi.dwMajorVersion == 4
4474 && dvi.dwMinorVersion >= 70)))
Bram Moolenaar45360022005-07-21 21:08:21 +00004475 {
4476 multiline_tip = TRUE;
4477 return multiline_tip;
4478 }
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004479 }
Bram Moolenaar45360022005-07-21 21:08:21 +00004480 else
4481 {
4482 /* there is chance we have ancient CommCtl 4.70
4483 which doesn't export DllGetVersion */
4484 DWORD dwHandle = 0;
4485 DWORD len = GetFileVersionInfoSize(comctl_dll, &dwHandle);
4486 if (len > 0)
4487 {
4488 VS_FIXEDFILEINFO *ver;
4489 UINT vlen = 0;
4490 void *data = alloc(len);
4491
4492 if (data != NULL
4493 && GetFileVersionInfo(comctl_dll, 0, len, data)
4494 && VerQueryValue(data, "\\", (void **)&ver, &vlen)
4495 && vlen
4496 && HIWORD(ver->dwFileVersionMS) > 4
4497 || (HIWORD(ver->dwFileVersionMS) == 4
4498 && LOWORD(ver->dwFileVersionMS) >= 70))
4499 {
4500 vim_free(data);
4501 multiline_tip = TRUE;
4502 return multiline_tip;
4503 }
4504 vim_free(data);
4505 }
4506 }
4507 }
4508 multiline_tip = FALSE;
4509 return multiline_tip;
4510}
4511
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 static void
4513make_tooltip(beval, text, pt)
4514 BalloonEval *beval;
4515 char *text;
4516 POINT pt;
4517{
Bram Moolenaar45360022005-07-21 21:08:21 +00004518 TOOLINFO *pti;
4519 int ToolInfoSize;
4520
4521 if (multiline_balloon_available() == TRUE)
4522 ToolInfoSize = sizeof(TOOLINFO_NEW);
4523 else
4524 ToolInfoSize = sizeof(TOOLINFO);
4525
4526 pti = (TOOLINFO *)alloc(ToolInfoSize);
4527 if (pti == NULL)
4528 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529
4530 beval->balloon = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS,
4531 NULL, WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,
4532 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
4533 beval->target, NULL, s_hinst, NULL);
4534
4535 SetWindowPos(beval->balloon, HWND_TOPMOST, 0, 0, 0, 0,
4536 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
4537
Bram Moolenaar45360022005-07-21 21:08:21 +00004538 pti->cbSize = ToolInfoSize;
4539 pti->uFlags = TTF_SUBCLASS;
4540 pti->hwnd = beval->target;
4541 pti->hinst = 0; /* Don't use string resources */
4542 pti->uId = ID_BEVAL_TOOLTIP;
4543
4544 if (multiline_balloon_available() == TRUE)
4545 {
4546 RECT rect;
4547 TOOLINFO_NEW *ptin = (TOOLINFO_NEW *)pti;
4548 pti->lpszText = LPSTR_TEXTCALLBACK;
4549 ptin->lParam = (LPARAM)text;
4550 if (GetClientRect(s_textArea, &rect)) /* switch multiline tooltips on */
4551 SendMessage(beval->balloon, TTM_SETMAXTIPWIDTH, 0,
4552 (LPARAM)rect.right);
4553 }
4554 else
4555 pti->lpszText = text; /* do this old way */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556
4557 /* Limit ballooneval bounding rect to CursorPos neighbourhood */
Bram Moolenaar45360022005-07-21 21:08:21 +00004558 pti->rect.left = pt.x - 3;
4559 pti->rect.top = pt.y - 3;
4560 pti->rect.right = pt.x + 3;
4561 pti->rect.bottom = pt.y + 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562
Bram Moolenaar45360022005-07-21 21:08:21 +00004563 SendMessage(beval->balloon, TTM_ADDTOOL, 0, (LPARAM)pti);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 /* Make tooltip appear sooner */
4565 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_INITIAL, 10);
Bram Moolenaarb52e5322008-01-05 12:15:52 +00004566 /* I've performed some tests and it seems the longest possible life time
4567 * of tooltip is 30 seconds */
4568 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_AUTOPOP, 30000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 /*
4570 * HACK: force tooltip to appear, because it'll not appear until
4571 * first mouse move. D*mn M$
Bram Moolenaarb52e5322008-01-05 12:15:52 +00004572 * Amazingly moving (2, 2) and then (-1, -1) the mouse doesn't move.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 */
Bram Moolenaarb52e5322008-01-05 12:15:52 +00004574 mouse_event(MOUSEEVENTF_MOVE, 2, 2, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 mouse_event(MOUSEEVENTF_MOVE, (DWORD)-1, (DWORD)-1, 0, 0);
Bram Moolenaar45360022005-07-21 21:08:21 +00004576 vim_free(pti);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577}
4578
4579 static void
4580delete_tooltip(beval)
4581 BalloonEval *beval;
4582{
4583 DestroyWindow(beval->balloon);
4584}
4585
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004586/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 static VOID CALLBACK
4588BevalTimerProc(hwnd, uMsg, idEvent, dwTime)
4589 HWND hwnd;
4590 UINT uMsg;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004591 UINT_PTR idEvent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 DWORD dwTime;
4593{
4594 POINT pt;
4595 RECT rect;
4596
4597 if (cur_beval == NULL || cur_beval->showState == ShS_SHOWING || !p_beval)
4598 return;
4599
4600 GetCursorPos(&pt);
4601 if (WindowFromPoint(pt) != s_textArea)
4602 return;
4603
4604 ScreenToClient(s_textArea, &pt);
4605 GetClientRect(s_textArea, &rect);
4606 if (!PtInRect(&rect, pt))
4607 return;
4608
4609 if (LastActivity > 0
4610 && (dwTime - LastActivity) >= (DWORD)p_bdlay
4611 && (cur_beval->showState != ShS_PENDING
4612 || abs(cur_beval->x - pt.x) > 3
4613 || abs(cur_beval->y - pt.y) > 3))
4614 {
4615 /* Pointer resting in one place long enough, it's time to show
4616 * the tooltip. */
4617 cur_beval->showState = ShS_PENDING;
4618 cur_beval->x = pt.x;
4619 cur_beval->y = pt.y;
4620
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004621 // TRACE0("BevalTimerProc: sending request");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622
4623 if (cur_beval->msgCB != NULL)
4624 (*cur_beval->msgCB)(cur_beval, 0);
4625 }
4626}
4627
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004628/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 void
4630gui_mch_disable_beval_area(beval)
4631 BalloonEval *beval;
4632{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004633 // TRACE0("gui_mch_disable_beval_area {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 KillTimer(s_textArea, BevalTimerId);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004635 // TRACE0("gui_mch_disable_beval_area }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636}
4637
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004638/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639 void
4640gui_mch_enable_beval_area(beval)
4641 BalloonEval *beval;
4642{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004643 // TRACE0("gui_mch_enable_beval_area |||");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 if (beval == NULL)
4645 return;
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004646 // TRACE0("gui_mch_enable_beval_area {{{");
Bram Moolenaar167632f2010-05-26 21:42:54 +02004647 BevalTimerId = SetTimer(s_textArea, 0, (UINT)(p_bdlay / 2), BevalTimerProc);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004648 // TRACE0("gui_mch_enable_beval_area }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649}
4650
4651 void
4652gui_mch_post_balloon(beval, mesg)
4653 BalloonEval *beval;
4654 char_u *mesg;
4655{
4656 POINT pt;
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004657 // TRACE0("gui_mch_post_balloon {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 if (beval->showState == ShS_SHOWING)
4659 return;
4660 GetCursorPos(&pt);
4661 ScreenToClient(s_textArea, &pt);
4662
4663 if (abs(beval->x - pt.x) < 3 && abs(beval->y - pt.y) < 3)
4664 /* cursor is still here */
4665 {
4666 gui_mch_disable_beval_area(cur_beval);
4667 beval->showState = ShS_SHOWING;
4668 make_tooltip(beval, mesg, pt);
4669 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004670 // TRACE0("gui_mch_post_balloon }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671}
4672
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004673/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 BalloonEval *
4675gui_mch_create_beval_area(target, mesg, mesgCB, clientData)
4676 void *target; /* ignored, always use s_textArea */
4677 char_u *mesg;
4678 void (*mesgCB)__ARGS((BalloonEval *, int));
4679 void *clientData;
4680{
4681 /* partially stolen from gui_beval.c */
4682 BalloonEval *beval;
4683
4684 if (mesg != NULL && mesgCB != NULL)
4685 {
4686 EMSG(_("E232: Cannot create BalloonEval with both message and callback"));
4687 return NULL;
4688 }
4689
4690 beval = (BalloonEval *)alloc(sizeof(BalloonEval));
4691 if (beval != NULL)
4692 {
4693 beval->target = s_textArea;
4694 beval->balloon = NULL;
4695
4696 beval->showState = ShS_NEUTRAL;
4697 beval->x = 0;
4698 beval->y = 0;
4699 beval->msg = mesg;
4700 beval->msgCB = mesgCB;
4701 beval->clientData = clientData;
4702
4703 InitCommonControls();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 cur_beval = beval;
4705
4706 if (p_beval)
4707 gui_mch_enable_beval_area(beval);
4708
4709 }
4710 return beval;
4711}
4712
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004713/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 static void
Bram Moolenaar442b4222010-05-24 21:34:22 +02004715Handle_WM_Notify(HWND hwnd, LPNMHDR pnmh)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716{
4717 if (pnmh->idFrom != ID_BEVAL_TOOLTIP) /* it is not our tooltip */
4718 return;
4719
4720 if (cur_beval != NULL)
4721 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004722 switch (pnmh->code)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004724 case TTN_SHOW:
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004725 // TRACE0("TTN_SHOW {{{");
4726 // TRACE0("TTN_SHOW }}}");
Bram Moolenaar45360022005-07-21 21:08:21 +00004727 break;
4728 case TTN_POP: /* Before tooltip disappear */
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004729 // TRACE0("TTN_POP {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730 delete_tooltip(cur_beval);
4731 gui_mch_enable_beval_area(cur_beval);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004732 // TRACE0("TTN_POP }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733
4734 cur_beval->showState = ShS_NEUTRAL;
Bram Moolenaar45360022005-07-21 21:08:21 +00004735 break;
4736 case TTN_GETDISPINFO:
Bram Moolenaar6c9176d2008-01-03 19:45:15 +00004737 {
4738 /* if you get there then we have new common controls */
4739 NMTTDISPINFO_NEW *info = (NMTTDISPINFO_NEW *)pnmh;
4740 info->lpszText = (LPSTR)info->lParam;
4741 info->uFlags |= TTF_DI_SETITEM;
4742 }
Bram Moolenaar45360022005-07-21 21:08:21 +00004743 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 }
4745 }
4746}
4747
4748 static void
4749TrackUserActivity(UINT uMsg)
4750{
4751 if ((uMsg >= WM_MOUSEFIRST && uMsg <= WM_MOUSELAST)
4752 || (uMsg >= WM_KEYFIRST && uMsg <= WM_KEYLAST))
4753 LastActivity = GetTickCount();
4754}
4755
4756 void
4757gui_mch_destroy_beval_area(beval)
4758 BalloonEval *beval;
4759{
4760 vim_free(beval);
4761}
4762#endif /* FEAT_BEVAL */
4763
4764#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
4765/*
4766 * We have multiple signs to draw at the same location. Draw the
4767 * multi-sign indicator (down-arrow) instead. This is the Win32 version.
4768 */
4769 void
4770netbeans_draw_multisign_indicator(int row)
4771{
4772 int i;
4773 int y;
4774 int x;
4775
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004776 if (!netbeans_active())
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004777 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004778
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 x = 0;
4780 y = TEXT_Y(row);
4781
4782 for (i = 0; i < gui.char_height - 3; i++)
4783 SetPixel(s_hdc, x+2, y++, gui.currFgColor);
4784
4785 SetPixel(s_hdc, x+0, y, gui.currFgColor);
4786 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4787 SetPixel(s_hdc, x+4, y++, gui.currFgColor);
4788 SetPixel(s_hdc, x+1, y, gui.currFgColor);
4789 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4790 SetPixel(s_hdc, x+3, y++, gui.currFgColor);
4791 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4792}
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004793
4794/*
4795 * Initialize the Winsock dll.
4796 */
4797 void
4798netbeans_init_winsock()
4799{
4800 WSADATA wsaData;
4801 int wsaerr;
4802
4803 if (WSInitialized)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004804 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004805
4806 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
4807 if (wsaerr == 0)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004808 WSInitialized = TRUE;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004809}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810#endif