blob: 7c6896af0b0c2d6aa5ea101a084f8425fb6ce6d0 [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();
Bram Moolenaar213ae482011-12-15 21:51:36 +0100801 return 0L;
Bram Moolenaarafa24992006-03-27 20:58:26 +0000802 }
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 */
Bram Moolenaar213ae482011-12-15 21:51:36 +0100831 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 _OnEndSession();
Bram Moolenaar213ae482011-12-15 21:51:36 +0100833 return 0L;
834 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 break;
836
837 case WM_CHAR:
838 /* Don't use HANDLE_MSG() for WM_CHAR, it truncates wParam to a single
839 * byte while we want the UTF-16 character value. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000840 _OnChar(hwnd, (UINT)wParam, (int)(short)LOWORD(lParam));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 return 0L;
842
843 case WM_SYSCHAR:
844 /*
845 * if 'winaltkeys' is "no", or it's "menu" and it's not a menu
846 * shortcut key, handle like a typed ALT key, otherwise call Windows
847 * ALT key handling.
848 */
849#ifdef FEAT_MENU
850 if ( !gui.menu_is_active
851 || p_wak[0] == 'n'
852 || (p_wak[0] == 'm' && !gui_is_menu_shortcut((int)wParam))
853 )
854#endif
855 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000856 _OnSysChar(hwnd, (UINT)wParam, (int)(short)LOWORD(lParam));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 return 0L;
858 }
859#ifdef FEAT_MENU
860 else
861 return MyWindowProc(hwnd, uMsg, wParam, lParam);
862#endif
863
864 case WM_SYSKEYUP:
865#ifdef FEAT_MENU
866 /* This used to be done only when menu is active: ALT key is used for
867 * that. But that caused problems when menu is disabled and using
868 * Alt-Tab-Esc: get into a strange state where no mouse-moved events
869 * are received, mouse pointer remains hidden. */
870 return MyWindowProc(hwnd, uMsg, wParam, lParam);
871#else
Bram Moolenaar213ae482011-12-15 21:51:36 +0100872 return 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873#endif
874
875 case WM_SIZING: /* HANDLE_MSG doesn't seem to handle this one */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000876 return _DuringSizing((UINT)wParam, (LPRECT)lParam);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877
878 case WM_MOUSEWHEEL:
879 _OnMouseWheel(hwnd, HIWORD(wParam));
Bram Moolenaar213ae482011-12-15 21:51:36 +0100880 return 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881
Bram Moolenaar520470a2005-06-16 21:59:56 +0000882 /* Notification for change in SystemParametersInfo() */
883 case WM_SETTINGCHANGE:
884 return _OnSettingChange((UINT)wParam);
885
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000886#if defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 case WM_NOTIFY:
888 switch (((LPNMHDR) lParam)->code)
889 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000890# ifdef FEAT_MBYTE
891 case TTN_GETDISPINFOW:
892# endif
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000893 case TTN_GETDISPINFO:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000895 LPNMHDR hdr = (LPNMHDR)lParam;
896 char_u *str = NULL;
897 static void *tt_text = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000898
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000899 vim_free(tt_text);
900 tt_text = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000901
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000902# ifdef FEAT_GUI_TABLINE
903 if (gui_mch_showing_tabline()
904 && hdr->hwndFrom == TabCtrl_GetToolTips(s_tabhwnd))
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000905 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000906 POINT pt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000907 /*
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000908 * Mouse is over the GUI tabline. Display the
909 * tooltip for the tab under the cursor
910 *
911 * Get the cursor position within the tab control
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000912 */
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000913 GetCursorPos(&pt);
914 if (ScreenToClient(s_tabhwnd, &pt) != 0)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000915 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000916 TCHITTESTINFO htinfo;
917 int idx;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000918
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000919 /*
920 * Get the tab under the cursor
921 */
922 htinfo.pt.x = pt.x;
923 htinfo.pt.y = pt.y;
924 idx = TabCtrl_HitTest(s_tabhwnd, &htinfo);
925 if (idx != -1)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000926 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000927 tabpage_T *tp;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000928
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000929 tp = find_tabpage(idx + 1);
930 if (tp != NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000931 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000932 get_tabline_label(tp, TRUE);
933 str = NameBuff;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000934 }
935 }
936 }
937 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000938# endif
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000939# ifdef FEAT_TOOLBAR
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000940# ifdef FEAT_GUI_TABLINE
941 else
942# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000944 UINT idButton;
945 vimmenu_T *pMenu;
946
947 idButton = (UINT) hdr->idFrom;
948 pMenu = gui_mswin_find_menu(root_menu, idButton);
949 if (pMenu)
950 str = pMenu->strings[MENU_INDEX_TIP];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000952# endif
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000953 if (str != NULL)
954 {
955# ifdef FEAT_MBYTE
956 if (hdr->code == TTN_GETDISPINFOW)
957 {
958 LPNMTTDISPINFOW lpdi = (LPNMTTDISPINFOW)lParam;
959
Bram Moolenaar6c9176d2008-01-03 19:45:15 +0000960 /* Set the maximum width, this also enables using
961 * \n for line break. */
962 SendMessage(lpdi->hdr.hwndFrom, TTM_SETMAXTIPWIDTH,
963 0, 500);
964
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000965 tt_text = enc_to_utf16(str, NULL);
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000966 lpdi->lpszText = tt_text;
967 /* can't show tooltip if failed */
968 }
969 else
970# endif
971 {
972 LPNMTTDISPINFO lpdi = (LPNMTTDISPINFO)lParam;
973
Bram Moolenaar6c9176d2008-01-03 19:45:15 +0000974 /* Set the maximum width, this also enables using
975 * \n for line break. */
976 SendMessage(lpdi->hdr.hwndFrom, TTM_SETMAXTIPWIDTH,
977 0, 500);
978
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000979 if (STRLEN(str) < sizeof(lpdi->szText)
980 || ((tt_text = vim_strsave(str)) == NULL))
981 vim_strncpy(lpdi->szText, str,
982 sizeof(lpdi->szText) - 1);
983 else
984 lpdi->lpszText = tt_text;
985 }
986 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 }
988 break;
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000989# ifdef FEAT_GUI_TABLINE
990 case TCN_SELCHANGE:
991 if (gui_mch_showing_tabline()
992 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
Bram Moolenaar213ae482011-12-15 21:51:36 +0100993 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000994 send_tabline_event(TabCtrl_GetCurSel(s_tabhwnd) + 1);
Bram Moolenaar213ae482011-12-15 21:51:36 +0100995 return 0L;
996 }
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000997 break;
Bram Moolenaarafa24992006-03-27 20:58:26 +0000998
999 case NM_RCLICK:
1000 if (gui_mch_showing_tabline()
1001 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
Bram Moolenaar213ae482011-12-15 21:51:36 +01001002 {
Bram Moolenaarafa24992006-03-27 20:58:26 +00001003 show_tabline_popup_menu();
Bram Moolenaar213ae482011-12-15 21:51:36 +01001004 return 0L;
1005 }
Bram Moolenaarafa24992006-03-27 20:58:26 +00001006 break;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001007# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 default:
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001009# ifdef FEAT_GUI_TABLINE
1010 if (gui_mch_showing_tabline()
1011 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
1012 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1013# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 break;
1015 }
1016 break;
1017#endif
1018#if defined(MENUHINTS) && defined(FEAT_MENU)
1019 case WM_MENUSELECT:
1020 if (((UINT) HIWORD(wParam)
1021 & (0xffff ^ (MF_MOUSESELECT + MF_BITMAP + MF_POPUP)))
1022 == MF_HILITE
1023 && (State & CMDLINE) == 0)
1024 {
1025 UINT idButton;
1026 vimmenu_T *pMenu;
1027 static int did_menu_tip = FALSE;
1028
1029 if (did_menu_tip)
1030 {
1031 msg_clr_cmdline();
1032 setcursor();
1033 out_flush();
1034 did_menu_tip = FALSE;
1035 }
1036
1037 idButton = (UINT)LOWORD(wParam);
1038 pMenu = gui_mswin_find_menu(root_menu, idButton);
1039 if (pMenu != NULL && pMenu->strings[MENU_INDEX_TIP] != 0
1040 && GetMenuState(s_menuBar, pMenu->id, MF_BYCOMMAND) != -1)
1041 {
Bram Moolenaar2d8ab992007-06-19 08:06:18 +00001042 ++msg_hist_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 msg(pMenu->strings[MENU_INDEX_TIP]);
Bram Moolenaar2d8ab992007-06-19 08:06:18 +00001044 --msg_hist_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 setcursor();
1046 out_flush();
1047 did_menu_tip = TRUE;
1048 }
Bram Moolenaar213ae482011-12-15 21:51:36 +01001049 return 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 }
1051 break;
1052#endif
1053 case WM_NCHITTEST:
1054 {
1055 LRESULT result;
1056 int x, y;
1057 int xPos = GET_X_LPARAM(lParam);
1058
1059 result = MyWindowProc(hwnd, uMsg, wParam, lParam);
1060 if (result == HTCLIENT)
1061 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001062#ifdef FEAT_GUI_TABLINE
1063 if (gui_mch_showing_tabline())
1064 {
1065 int yPos = GET_Y_LPARAM(lParam);
1066 RECT rct;
1067
1068 /* If the cursor is on the GUI tabline, don't process this
1069 * event */
1070 GetWindowRect(s_textArea, &rct);
1071 if (yPos < rct.top)
1072 return result;
1073 }
1074#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 gui_mch_get_winpos(&x, &y);
1076 xPos -= x;
1077
1078 if (xPos < 48) /* <VN> TODO should use system metric? */
1079 return HTBOTTOMLEFT;
1080 else
1081 return HTBOTTOMRIGHT;
1082 }
1083 else
1084 return result;
1085 }
1086 /* break; notreached */
1087
1088#ifdef FEAT_MBYTE_IME
1089 case WM_IME_NOTIFY:
1090 if (!_OnImeNotify(hwnd, (DWORD)wParam, (DWORD)lParam))
1091 return MyWindowProc(hwnd, uMsg, wParam, lParam);
Bram Moolenaar213ae482011-12-15 21:51:36 +01001092 return 1L;
1093
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 case WM_IME_COMPOSITION:
1095 if (!_OnImeComposition(hwnd, wParam, lParam))
1096 return MyWindowProc(hwnd, uMsg, wParam, lParam);
Bram Moolenaar213ae482011-12-15 21:51:36 +01001097 return 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098#endif
1099
1100 default:
1101 if (uMsg == msh_msgmousewheel && msh_msgmousewheel != 0)
1102 { /* handle MSH_MOUSEWHEEL messages for Intellimouse */
1103 _OnMouseWheel(hwnd, HIWORD(wParam));
Bram Moolenaar213ae482011-12-15 21:51:36 +01001104 return 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 }
1106#ifdef MSWIN_FIND_REPLACE
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001107 else if (uMsg == s_findrep_msg && s_findrep_msg != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 {
1109 _OnFindRepl();
1110 }
1111#endif
1112 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1113 }
1114
Bram Moolenaar2787ab92011-12-14 15:23:59 +01001115 return DefWindowProc(hwnd, uMsg, wParam, lParam);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116}
1117
1118/*
1119 * End of call-back routines
1120 */
1121
1122/* parent window, if specified with -P */
1123HWND vim_parent_hwnd = NULL;
1124
1125 static BOOL CALLBACK
1126FindWindowTitle(HWND hwnd, LPARAM lParam)
1127{
1128 char buf[2048];
1129 char *title = (char *)lParam;
1130
1131 if (GetWindowText(hwnd, buf, sizeof(buf)))
1132 {
1133 if (strstr(buf, title) != NULL)
1134 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001135 /* Found it. Store the window ref. and quit searching if MDI
1136 * works. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 vim_parent_hwnd = FindWindowEx(hwnd, NULL, "MDIClient", NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001138 if (vim_parent_hwnd != NULL)
1139 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 }
1141 }
1142 return TRUE; /* continue searching */
1143}
1144
1145/*
1146 * Invoked for '-P "title"' argument: search for parent application to open
1147 * our window in.
1148 */
1149 void
1150gui_mch_set_parent(char *title)
1151{
1152 EnumWindows(FindWindowTitle, (LPARAM)title);
1153 if (vim_parent_hwnd == NULL)
1154 {
1155 EMSG2(_("E671: Cannot find window title \"%s\""), title);
1156 mch_exit(2);
1157 }
1158}
1159
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001160#ifndef FEAT_OLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 static void
1162ole_error(char *arg)
1163{
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00001164 char buf[IOSIZE];
1165
1166 /* Can't use EMSG() here, we have not finished initialisation yet. */
1167 vim_snprintf(buf, IOSIZE,
1168 _("E243: Argument not supported: \"-%s\"; Use the OLE version."),
1169 arg);
1170 mch_errmsg(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001172#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173
1174/*
1175 * Parse the GUI related command-line arguments. Any arguments used are
1176 * deleted from argv, and *argc is decremented accordingly. This is called
1177 * when vim is started, whether or not the GUI has been started.
1178 */
1179 void
1180gui_mch_prepare(int *argc, char **argv)
1181{
1182 int silent = FALSE;
1183 int idx;
1184
1185 /* Check for special OLE command line parameters */
1186 if ((*argc == 2 || *argc == 3) && (argv[1][0] == '-' || argv[1][0] == '/'))
1187 {
1188 /* Check for a "-silent" argument first. */
1189 if (*argc == 3 && STRICMP(argv[1] + 1, "silent") == 0
1190 && (argv[2][0] == '-' || argv[2][0] == '/'))
1191 {
1192 silent = TRUE;
1193 idx = 2;
1194 }
1195 else
1196 idx = 1;
1197
1198 /* Register Vim as an OLE Automation server */
1199 if (STRICMP(argv[idx] + 1, "register") == 0)
1200 {
1201#ifdef FEAT_OLE
1202 RegisterMe(silent);
1203 mch_exit(0);
1204#else
1205 if (!silent)
1206 ole_error("register");
1207 mch_exit(2);
1208#endif
1209 }
1210
1211 /* Unregister Vim as an OLE Automation server */
1212 if (STRICMP(argv[idx] + 1, "unregister") == 0)
1213 {
1214#ifdef FEAT_OLE
1215 UnregisterMe(!silent);
1216 mch_exit(0);
1217#else
1218 if (!silent)
1219 ole_error("unregister");
1220 mch_exit(2);
1221#endif
1222 }
1223
1224 /* Ignore an -embedding argument. It is only relevant if the
1225 * application wants to treat the case when it is started manually
1226 * differently from the case where it is started via automation (and
1227 * we don't).
1228 */
1229 if (STRICMP(argv[idx] + 1, "embedding") == 0)
1230 {
1231#ifdef FEAT_OLE
1232 *argc = 1;
1233#else
1234 ole_error("embedding");
1235 mch_exit(2);
1236#endif
1237 }
1238 }
1239
1240#ifdef FEAT_OLE
1241 {
1242 int bDoRestart = FALSE;
1243
1244 InitOLE(&bDoRestart);
1245 /* automatically exit after registering */
1246 if (bDoRestart)
1247 mch_exit(0);
1248 }
1249#endif
1250
1251#ifdef FEAT_NETBEANS_INTG
1252 {
1253 /* stolen from gui_x11.x */
1254 int arg;
1255
1256 for (arg = 1; arg < *argc; arg++)
1257 if (strncmp("-nb", argv[arg], 3) == 0)
1258 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 netbeansArg = argv[arg];
1260 mch_memmove(&argv[arg], &argv[arg + 1],
1261 (--*argc - arg) * sizeof(char *));
1262 argv[*argc] = NULL;
1263 break; /* enough? */
1264 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 }
1266#endif
1267
1268 /* get the OS version info */
1269 os_version.dwOSVersionInfoSize = sizeof(os_version);
1270 GetVersionEx(&os_version); /* this call works on Win32s, Win95 and WinNT */
1271
1272 /* try and load the user32.dll library and get the entry points for
1273 * multi-monitor-support. */
Bram Moolenaarebbcb822010-10-23 14:02:54 +02001274 if ((user32_lib = vimLoadLib("User32.dll")) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 {
1276 pMonitorFromWindow = (TMonitorFromWindow)GetProcAddress(user32_lib,
1277 "MonitorFromWindow");
1278
1279 /* there are ...A and ...W version of GetMonitorInfo - looking at
1280 * winuser.h, they have exactly the same declaration. */
1281 pGetMonitorInfo = (TGetMonitorInfo)GetProcAddress(user32_lib,
1282 "GetMonitorInfoA");
1283 }
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001284
1285#ifdef FEAT_MBYTE
1286 /* If the OS is Windows NT, use wide functions;
1287 * this enables common dialogs input unicode from IME. */
1288 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT)
1289 {
1290 pDispatchMessage = DispatchMessageW;
1291 pGetMessage = GetMessageW;
1292 pIsDialogMessage = IsDialogMessageW;
1293 pPeekMessage = PeekMessageW;
1294 }
1295 else
1296 {
1297 pDispatchMessage = DispatchMessageA;
1298 pGetMessage = GetMessageA;
1299 pIsDialogMessage = IsDialogMessageA;
1300 pPeekMessage = PeekMessageA;
1301 }
1302#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303}
1304
1305/*
1306 * Initialise the GUI. Create all the windows, set up all the call-backs
1307 * etc.
1308 */
1309 int
1310gui_mch_init(void)
1311{
1312 const char szVimWndClass[] = VIM_CLASS;
1313 const char szTextAreaClass[] = "VimTextArea";
1314 WNDCLASS wndclass;
1315#ifdef FEAT_MBYTE
1316 const WCHAR szVimWndClassW[] = VIM_CLASSW;
Bram Moolenaar33d0b692010-02-17 16:31:32 +01001317 const WCHAR szTextAreaClassW[] = L"VimTextArea";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 WNDCLASSW wndclassw;
1319#endif
1320#ifdef GLOBAL_IME
1321 ATOM atom;
1322#endif
1323
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 /* Return here if the window was already opened (happens when
1325 * gui_mch_dialog() is called early). */
1326 if (s_hwnd != NULL)
Bram Moolenaar748bf032005-02-02 23:04:36 +00001327 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328
1329 /*
1330 * Load the tearoff bitmap
1331 */
1332#ifdef FEAT_TEAROFF
1333 s_htearbitmap = LoadBitmap(s_hinst, "IDB_TEAROFF");
1334#endif
1335
1336 gui.scrollbar_width = GetSystemMetrics(SM_CXVSCROLL);
1337 gui.scrollbar_height = GetSystemMetrics(SM_CYHSCROLL);
1338#ifdef FEAT_MENU
1339 gui.menu_height = 0; /* Windows takes care of this */
1340#endif
1341 gui.border_width = 0;
1342
1343 s_brush = CreateSolidBrush(GetSysColor(COLOR_BTNFACE));
1344
1345#ifdef FEAT_MBYTE
1346 /* First try using the wide version, so that we can use any title.
1347 * Otherwise only characters in the active codepage will work. */
1348 if (GetClassInfoW(s_hinst, szVimWndClassW, &wndclassw) == 0)
1349 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001350 wndclassw.style = CS_DBLCLKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 wndclassw.lpfnWndProc = _WndProc;
1352 wndclassw.cbClsExtra = 0;
1353 wndclassw.cbWndExtra = 0;
1354 wndclassw.hInstance = s_hinst;
1355 wndclassw.hIcon = LoadIcon(wndclassw.hInstance, "IDR_VIM");
1356 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
1357 wndclassw.hbrBackground = s_brush;
1358 wndclassw.lpszMenuName = NULL;
1359 wndclassw.lpszClassName = szVimWndClassW;
1360
1361 if ((
1362#ifdef GLOBAL_IME
1363 atom =
1364#endif
1365 RegisterClassW(&wndclassw)) == 0)
1366 {
1367 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
1368 return FAIL;
1369
1370 /* Must be Windows 98, fall back to non-wide function. */
1371 }
1372 else
1373 wide_WindowProc = TRUE;
1374 }
1375
1376 if (!wide_WindowProc)
1377#endif
1378
1379 if (GetClassInfo(s_hinst, szVimWndClass, &wndclass) == 0)
1380 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001381 wndclass.style = CS_DBLCLKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 wndclass.lpfnWndProc = _WndProc;
1383 wndclass.cbClsExtra = 0;
1384 wndclass.cbWndExtra = 0;
1385 wndclass.hInstance = s_hinst;
1386 wndclass.hIcon = LoadIcon(wndclass.hInstance, "IDR_VIM");
1387 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
1388 wndclass.hbrBackground = s_brush;
1389 wndclass.lpszMenuName = NULL;
1390 wndclass.lpszClassName = szVimWndClass;
1391
1392 if ((
1393#ifdef GLOBAL_IME
1394 atom =
1395#endif
1396 RegisterClass(&wndclass)) == 0)
1397 return FAIL;
1398 }
1399
1400 if (vim_parent_hwnd != NULL)
1401 {
1402#ifdef HAVE_TRY_EXCEPT
1403 __try
1404 {
1405#endif
1406 /* Open inside the specified parent window.
1407 * TODO: last argument should point to a CLIENTCREATESTRUCT
1408 * structure. */
1409 s_hwnd = CreateWindowEx(
1410 WS_EX_MDICHILD,
1411 szVimWndClass, "Vim MSWindows GUI",
Bram Moolenaare78c2062011-08-10 15:56:27 +02001412 WS_OVERLAPPEDWINDOW | WS_CHILD
1413 | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | 0xC000,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
1415 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
1416 100, /* Any value will do */
1417 100, /* Any value will do */
1418 vim_parent_hwnd, NULL,
1419 s_hinst, NULL);
1420#ifdef HAVE_TRY_EXCEPT
1421 }
1422 __except(EXCEPTION_EXECUTE_HANDLER)
1423 {
1424 /* NOP */
1425 }
1426#endif
1427 if (s_hwnd == NULL)
1428 {
1429 EMSG(_("E672: Unable to open window inside MDI application"));
1430 mch_exit(2);
1431 }
1432 }
1433 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001434 {
1435 /* If the provided windowid is not valid reset it to zero, so that it
1436 * is ignored and we open our own window. */
1437 if (IsWindow((HWND)win_socket_id) <= 0)
1438 win_socket_id = 0;
1439
1440 /* Create a window. If win_socket_id is not zero without border and
1441 * titlebar, it will be reparented below. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 s_hwnd = CreateWindow(
Bram Moolenaar78e17622007-08-30 10:26:19 +00001443 szVimWndClass, "Vim MSWindows GUI",
Bram Moolenaare78c2062011-08-10 15:56:27 +02001444 (win_socket_id == 0 ? WS_OVERLAPPEDWINDOW : WS_POPUP)
1445 | WS_CLIPSIBLINGS | WS_CLIPCHILDREN,
Bram Moolenaar78e17622007-08-30 10:26:19 +00001446 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
1447 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
1448 100, /* Any value will do */
1449 100, /* Any value will do */
1450 NULL, NULL,
1451 s_hinst, NULL);
1452 if (s_hwnd != NULL && win_socket_id != 0)
1453 {
1454 SetParent(s_hwnd, (HWND)win_socket_id);
1455 ShowWindow(s_hwnd, SW_SHOWMAXIMIZED);
1456 }
1457 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458
1459 if (s_hwnd == NULL)
1460 return FAIL;
1461
1462#ifdef GLOBAL_IME
1463 global_ime_init(atom, s_hwnd);
1464#endif
1465#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
1466 dyn_imm_load();
1467#endif
1468
1469 /* Create the text area window */
Bram Moolenaar33d0b692010-02-17 16:31:32 +01001470#ifdef FEAT_MBYTE
1471 if (wide_WindowProc)
1472 {
1473 if (GetClassInfoW(s_hinst, szTextAreaClassW, &wndclassw) == 0)
1474 {
1475 wndclassw.style = CS_OWNDC;
1476 wndclassw.lpfnWndProc = _TextAreaWndProc;
1477 wndclassw.cbClsExtra = 0;
1478 wndclassw.cbWndExtra = 0;
1479 wndclassw.hInstance = s_hinst;
1480 wndclassw.hIcon = NULL;
1481 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
1482 wndclassw.hbrBackground = NULL;
1483 wndclassw.lpszMenuName = NULL;
1484 wndclassw.lpszClassName = szTextAreaClassW;
1485
1486 if (RegisterClassW(&wndclassw) == 0)
1487 return FAIL;
1488 }
1489 }
1490 else
1491#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 if (GetClassInfo(s_hinst, szTextAreaClass, &wndclass) == 0)
1493 {
1494 wndclass.style = CS_OWNDC;
1495 wndclass.lpfnWndProc = _TextAreaWndProc;
1496 wndclass.cbClsExtra = 0;
1497 wndclass.cbWndExtra = 0;
1498 wndclass.hInstance = s_hinst;
1499 wndclass.hIcon = NULL;
1500 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
1501 wndclass.hbrBackground = NULL;
1502 wndclass.lpszMenuName = NULL;
1503 wndclass.lpszClassName = szTextAreaClass;
1504
1505 if (RegisterClass(&wndclass) == 0)
1506 return FAIL;
1507 }
1508 s_textArea = CreateWindowEx(
1509 WS_EX_CLIENTEDGE,
1510 szTextAreaClass, "Vim text area",
1511 WS_CHILD | WS_VISIBLE, 0, 0,
1512 100, /* Any value will do for now */
1513 100, /* Any value will do for now */
1514 s_hwnd, NULL,
1515 s_hinst, NULL);
1516
1517 if (s_textArea == NULL)
1518 return FAIL;
1519
1520#ifdef FEAT_MENU
1521 s_menuBar = CreateMenu();
1522#endif
1523 s_hdc = GetDC(s_textArea);
1524
1525#ifdef MSWIN16_FASTTEXT
1526 SetBkMode(s_hdc, OPAQUE);
1527#endif
1528
1529#ifdef FEAT_WINDOWS
1530 DragAcceptFiles(s_hwnd, TRUE);
1531#endif
1532
1533 /* Do we need to bother with this? */
1534 /* m_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT); */
1535
1536 /* Get background/foreground colors from the system */
1537 gui_mch_def_colors();
1538
1539 /* Get the colors from the "Normal" group (set in syntax.c or in a vimrc
1540 * file) */
1541 set_normal_colors();
1542
1543 /*
1544 * Check that none of the colors are the same as the background color.
1545 * Then store the current values as the defaults.
1546 */
1547 gui_check_colors();
1548 gui.def_norm_pixel = gui.norm_pixel;
1549 gui.def_back_pixel = gui.back_pixel;
1550
1551 /* Get the colors for the highlight groups (gui_check_colors() might have
1552 * changed them) */
1553 highlight_gui_started();
1554
1555 /*
1556 * Start out by adding the configured border width into the border offset
1557 */
1558 gui.border_offset = gui.border_width + 2; /*CLIENT EDGE*/
1559
1560 /*
1561 * Set up for Intellimouse processing
1562 */
1563 init_mouse_wheel();
1564
1565 /*
1566 * compute a couple of metrics used for the dialogs
1567 */
1568 get_dialog_font_metrics();
1569#ifdef FEAT_TOOLBAR
1570 /*
1571 * Create the toolbar
1572 */
1573 initialise_toolbar();
1574#endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001575#ifdef FEAT_GUI_TABLINE
1576 /*
1577 * Create the tabline
1578 */
1579 initialise_tabline();
1580#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581#ifdef MSWIN_FIND_REPLACE
1582 /*
1583 * Initialise the dialog box stuff
1584 */
1585 s_findrep_msg = RegisterWindowMessage(FINDMSGSTRING);
1586
1587 /* Initialise the struct */
1588 s_findrep_struct.lStructSize = sizeof(s_findrep_struct);
1589 s_findrep_struct.lpstrFindWhat = alloc(MSWIN_FR_BUFSIZE);
1590 s_findrep_struct.lpstrFindWhat[0] = NUL;
1591 s_findrep_struct.lpstrReplaceWith = alloc(MSWIN_FR_BUFSIZE);
1592 s_findrep_struct.lpstrReplaceWith[0] = NUL;
1593 s_findrep_struct.wFindWhatLen = MSWIN_FR_BUFSIZE;
1594 s_findrep_struct.wReplaceWithLen = MSWIN_FR_BUFSIZE;
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00001595# if defined(FEAT_MBYTE) && defined(WIN3264)
1596 s_findrep_struct_w.lStructSize = sizeof(s_findrep_struct_w);
1597 s_findrep_struct_w.lpstrFindWhat =
1598 (LPWSTR)alloc(MSWIN_FR_BUFSIZE * sizeof(WCHAR));
1599 s_findrep_struct_w.lpstrFindWhat[0] = NUL;
1600 s_findrep_struct_w.lpstrReplaceWith =
1601 (LPWSTR)alloc(MSWIN_FR_BUFSIZE * sizeof(WCHAR));
1602 s_findrep_struct_w.lpstrReplaceWith[0] = NUL;
1603 s_findrep_struct_w.wFindWhatLen = MSWIN_FR_BUFSIZE;
1604 s_findrep_struct_w.wReplaceWithLen = MSWIN_FR_BUFSIZE;
1605# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02001608#ifdef FEAT_EVAL
Bram Moolenaar4da95d32011-07-07 17:43:41 +02001609# if _MSC_VER < 1400
1610/* HandleToLong() only exists in compilers that can do 64 bit builds */
1611# define HandleToLong(h) ((long)(h))
1612# endif
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02001613 /* set the v:windowid variable */
Bram Moolenaar7154b322011-05-25 21:18:06 +02001614 set_vim_var_nr(VV_WINDOWID, HandleToLong(s_hwnd));
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02001615#endif
1616
Bram Moolenaar748bf032005-02-02 23:04:36 +00001617theend:
1618 /* Display any pending error messages */
1619 display_errors();
1620
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 return OK;
1622}
1623
1624/*
1625 * Get the size of the screen, taking position on multiple monitors into
1626 * account (if supported).
1627 */
1628 static void
1629get_work_area(RECT *spi_rect)
1630{
1631 _HMONITOR mon;
1632 _MONITORINFO moninfo;
1633
1634 /* use these functions only if available */
1635 if (pMonitorFromWindow != NULL && pGetMonitorInfo != NULL)
1636 {
1637 /* work out which monitor the window is on, and get *it's* work area */
1638 mon = pMonitorFromWindow(s_hwnd, 1 /*MONITOR_DEFAULTTOPRIMARY*/);
1639 if (mon != NULL)
1640 {
1641 moninfo.cbSize = sizeof(_MONITORINFO);
1642 if (pGetMonitorInfo(mon, &moninfo))
1643 {
1644 *spi_rect = moninfo.rcWork;
1645 return;
1646 }
1647 }
1648 }
1649 /* this is the old method... */
1650 SystemParametersInfo(SPI_GETWORKAREA, 0, spi_rect, 0);
1651}
1652
1653/*
1654 * Set the size of the window to the given width and height in pixels.
1655 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001656/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 void
1658gui_mch_set_shellsize(int width, int height,
Bram Moolenaarafa24992006-03-27 20:58:26 +00001659 int min_width, int min_height, int base_width, int base_height,
1660 int direction)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661{
1662 RECT workarea_rect;
1663 int win_width, win_height;
1664 int win_xpos, win_ypos;
1665 WINDOWPLACEMENT wndpl;
Bram Moolenaar56a907a2006-05-06 21:44:30 +00001666 int workarea_left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001668 /* Try to keep window completely on screen. */
1669 /* Get position of the screen work area. This is the part that is not
1670 * used by the taskbar or appbars. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 get_work_area(&workarea_rect);
1672
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001673 /* Get current posision of our window. Note that the .left and .top are
1674 * relative to the work area. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 wndpl.length = sizeof(WINDOWPLACEMENT);
1676 GetWindowPlacement(s_hwnd, &wndpl);
1677
1678 /* Resizing a maximized window looks very strange, unzoom it first.
1679 * But don't do it when still starting up, it may have been requested in
1680 * the shortcut. */
1681 if (wndpl.showCmd == SW_SHOWMAXIMIZED && starting == 0)
1682 {
1683 ShowWindow(s_hwnd, SW_SHOWNORMAL);
1684 /* Need to get the settings of the normal window. */
1685 GetWindowPlacement(s_hwnd, &wndpl);
1686 }
1687
1688 win_xpos = wndpl.rcNormalPosition.left;
1689 win_ypos = wndpl.rcNormalPosition.top;
1690
1691 /* compute the size of the outside of the window */
1692 win_width = width + GetSystemMetrics(SM_CXFRAME) * 2;
1693 win_height = height + GetSystemMetrics(SM_CYFRAME) * 2
1694 + GetSystemMetrics(SM_CYCAPTION)
1695#ifdef FEAT_MENU
1696 + gui_mswin_get_menu_height(FALSE)
1697#endif
1698 ;
1699
Bram Moolenaar56a907a2006-05-06 21:44:30 +00001700 /* There is an inconsistency when using two monitors and Vim is on the
1701 * second (right) one: win_xpos will be the offset from the workarea of
1702 * the left monitor. While with one monitor it's the offset from the
1703 * workarea (including a possible taskbar on the left). Detect the second
1704 * monitor by checking for the left offset to be quite big. */
1705 if (workarea_rect.left > 300)
1706 workarea_left = 0;
1707 else
1708 workarea_left = workarea_rect.left;
1709
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001710 /* If the window is going off the screen, move it on to the screen.
1711 * win_xpos and win_ypos are relative to the workarea. */
1712 if ((direction & RESIZE_HOR)
Bram Moolenaar56a907a2006-05-06 21:44:30 +00001713 && workarea_left + win_xpos + win_width > workarea_rect.right)
1714 win_xpos = workarea_rect.right - win_width - workarea_left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001716 if ((direction & RESIZE_HOR) && win_xpos < 0)
1717 win_xpos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718
Bram Moolenaarafa24992006-03-27 20:58:26 +00001719 if ((direction & RESIZE_VERT)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001720 && workarea_rect.top + win_ypos + win_height > workarea_rect.bottom)
1721 win_ypos = workarea_rect.bottom - win_height - workarea_rect.top;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001723 if ((direction & RESIZE_VERT) && win_ypos < 0)
1724 win_ypos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725
1726 wndpl.rcNormalPosition.left = win_xpos;
1727 wndpl.rcNormalPosition.right = win_xpos + win_width;
1728 wndpl.rcNormalPosition.top = win_ypos;
1729 wndpl.rcNormalPosition.bottom = win_ypos + win_height;
1730
1731 /* set window position - we should use SetWindowPlacement rather than
1732 * SetWindowPos as the MSDN docs say the coord systems returned by
1733 * these two are not compatible. */
1734 SetWindowPlacement(s_hwnd, &wndpl);
1735
1736 SetActiveWindow(s_hwnd);
1737 SetFocus(s_hwnd);
1738
1739#ifdef FEAT_MENU
1740 /* Menu may wrap differently now */
1741 gui_mswin_get_menu_height(!gui.starting);
1742#endif
1743}
1744
1745
1746 void
1747gui_mch_set_scrollbar_thumb(
1748 scrollbar_T *sb,
1749 long val,
1750 long size,
1751 long max)
1752{
1753 SCROLLINFO info;
1754
1755 sb->scroll_shift = 0;
1756 while (max > 32767)
1757 {
1758 max = (max + 1) >> 1;
1759 val >>= 1;
1760 size >>= 1;
1761 ++sb->scroll_shift;
1762 }
1763
1764 if (sb->scroll_shift > 0)
1765 ++size;
1766
1767 info.cbSize = sizeof(info);
1768 info.fMask = SIF_POS | SIF_RANGE | SIF_PAGE;
1769 info.nPos = val;
1770 info.nMin = 0;
1771 info.nMax = max;
1772 info.nPage = size;
1773 SetScrollInfo(sb->id, SB_CTL, &info, TRUE);
1774}
1775
1776
1777/*
1778 * Set the current text font.
1779 */
1780 void
1781gui_mch_set_font(GuiFont font)
1782{
1783 gui.currFont = font;
1784}
1785
1786
1787/*
1788 * Set the current text foreground color.
1789 */
1790 void
1791gui_mch_set_fg_color(guicolor_T color)
1792{
1793 gui.currFgColor = color;
1794}
1795
1796/*
1797 * Set the current text background color.
1798 */
1799 void
1800gui_mch_set_bg_color(guicolor_T color)
1801{
1802 gui.currBgColor = color;
1803}
1804
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001805/*
1806 * Set the current text special color.
1807 */
1808 void
1809gui_mch_set_sp_color(guicolor_T color)
1810{
1811 gui.currSpColor = color;
1812}
1813
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814#if defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)
1815/*
1816 * Multi-byte handling, originally by Sung-Hoon Baek.
1817 * First static functions (no prototypes generated).
1818 */
1819#ifdef _MSC_VER
1820# include <ime.h> /* Apparently not needed for Cygwin, MingW or Borland. */
1821#endif
1822#include <imm.h>
1823
1824/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 * handle WM_IME_NOTIFY message
1826 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001827/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828 static LRESULT
1829_OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData)
1830{
1831 LRESULT lResult = 0;
1832 HIMC hImc;
1833
1834 if (!pImmGetContext || (hImc = pImmGetContext(hWnd)) == (HIMC)0)
1835 return lResult;
1836 switch (dwCommand)
1837 {
1838 case IMN_SETOPENSTATUS:
1839 if (pImmGetOpenStatus(hImc))
1840 {
1841 pImmSetCompositionFont(hImc, &norm_logfont);
1842 im_set_position(gui.row, gui.col);
1843
1844 /* Disable langmap */
1845 State &= ~LANGMAP;
1846 if (State & INSERT)
1847 {
1848#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1849 /* Unshown 'keymap' in status lines */
1850 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
1851 {
1852 /* Save cursor position */
1853 int old_row = gui.row;
1854 int old_col = gui.col;
1855
1856 // This must be called here before
1857 // status_redraw_curbuf(), otherwise the mode
1858 // message may appear in the wrong position.
1859 showmode();
1860 status_redraw_curbuf();
1861 update_screen(0);
1862 /* Restore cursor position */
1863 gui.row = old_row;
1864 gui.col = old_col;
1865 }
1866#endif
1867 }
1868 }
1869 gui_update_cursor(TRUE, FALSE);
1870 lResult = 0;
1871 break;
1872 }
1873 pImmReleaseContext(hWnd, hImc);
1874 return lResult;
1875}
1876
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001877/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 static LRESULT
1879_OnImeComposition(HWND hwnd, WPARAM dbcs, LPARAM param)
1880{
1881 char_u *ret;
1882 int len;
1883
1884 if ((param & GCS_RESULTSTR) == 0) /* Composition unfinished. */
1885 return 0;
1886
1887 ret = GetResultStr(hwnd, GCS_RESULTSTR, &len);
1888 if (ret != NULL)
1889 {
1890 add_to_input_buf_csi(ret, len);
1891 vim_free(ret);
1892 return 1;
1893 }
1894 return 0;
1895}
1896
1897/*
1898 * get the current composition string, in UCS-2; *lenp is the number of
1899 * *lenp is the number of Unicode characters.
1900 */
1901 static short_u *
1902GetCompositionString_inUCS2(HIMC hIMC, DWORD GCS, int *lenp)
1903{
1904 LONG ret;
1905 LPWSTR wbuf = NULL;
1906 char_u *buf;
1907
1908 if (!pImmGetContext)
1909 return NULL; /* no imm32.dll */
1910
1911 /* Try Unicode; this'll always work on NT regardless of codepage. */
1912 ret = pImmGetCompositionStringW(hIMC, GCS, NULL, 0);
1913 if (ret == 0)
1914 return NULL; /* empty */
1915
1916 if (ret > 0)
1917 {
1918 /* Allocate the requested buffer plus space for the NUL character. */
1919 wbuf = (LPWSTR)alloc(ret + sizeof(WCHAR));
1920 if (wbuf != NULL)
1921 {
1922 pImmGetCompositionStringW(hIMC, GCS, wbuf, ret);
1923 *lenp = ret / sizeof(WCHAR);
1924 }
1925 return (short_u *)wbuf;
1926 }
1927
1928 /* ret < 0; we got an error, so try the ANSI version. This'll work
1929 * on 9x/ME, but only if the codepage happens to be set to whatever
1930 * we're inputting. */
1931 ret = pImmGetCompositionStringA(hIMC, GCS, NULL, 0);
1932 if (ret <= 0)
1933 return NULL; /* empty or error */
1934
1935 buf = alloc(ret);
1936 if (buf == NULL)
1937 return NULL;
1938 pImmGetCompositionStringA(hIMC, GCS, buf, ret);
1939
1940 /* convert from codepage to UCS-2 */
1941 MultiByteToWideChar_alloc(GetACP(), 0, buf, ret, &wbuf, lenp);
1942 vim_free(buf);
1943
1944 return (short_u *)wbuf;
1945}
1946
1947/*
1948 * void GetResultStr()
1949 *
1950 * This handles WM_IME_COMPOSITION with GCS_RESULTSTR flag on.
1951 * get complete composition string
1952 */
1953 static char_u *
1954GetResultStr(HWND hwnd, int GCS, int *lenp)
1955{
1956 HIMC hIMC; /* Input context handle. */
1957 short_u *buf = NULL;
1958 char_u *convbuf = NULL;
1959
1960 if (!pImmGetContext || (hIMC = pImmGetContext(hwnd)) == (HIMC)0)
1961 return NULL;
1962
1963 /* Reads in the composition string. */
1964 buf = GetCompositionString_inUCS2(hIMC, GCS, lenp);
1965 if (buf == NULL)
1966 return NULL;
1967
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001968 convbuf = utf16_to_enc(buf, lenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 pImmReleaseContext(hwnd, hIMC);
1970 vim_free(buf);
1971 return convbuf;
1972}
1973#endif
1974
1975/* For global functions we need prototypes. */
1976#if (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) || defined(PROTO)
1977
1978/*
1979 * set font to IM.
1980 */
1981 void
1982im_set_font(LOGFONT *lf)
1983{
1984 HIMC hImc;
1985
1986 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
1987 {
1988 pImmSetCompositionFont(hImc, lf);
1989 pImmReleaseContext(s_hwnd, hImc);
1990 }
1991}
1992
1993/*
1994 * Notify cursor position to IM.
1995 */
1996 void
1997im_set_position(int row, int col)
1998{
1999 HIMC hImc;
2000
2001 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
2002 {
2003 COMPOSITIONFORM cfs;
2004
2005 cfs.dwStyle = CFS_POINT;
2006 cfs.ptCurrentPos.x = FILL_X(col);
2007 cfs.ptCurrentPos.y = FILL_Y(row);
2008 MapWindowPoints(s_textArea, s_hwnd, &cfs.ptCurrentPos, 1);
2009 pImmSetCompositionWindow(hImc, &cfs);
2010
2011 pImmReleaseContext(s_hwnd, hImc);
2012 }
2013}
2014
2015/*
2016 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
2017 */
2018 void
2019im_set_active(int active)
2020{
2021 HIMC hImc;
2022 static HIMC hImcOld = (HIMC)0;
2023
2024 if (pImmGetContext) /* if NULL imm32.dll wasn't loaded (yet) */
2025 {
2026 if (p_imdisable)
2027 {
2028 if (hImcOld == (HIMC)0)
2029 {
2030 hImcOld = pImmGetContext(s_hwnd);
2031 if (hImcOld)
2032 pImmAssociateContext(s_hwnd, (HIMC)0);
2033 }
2034 active = FALSE;
2035 }
2036 else if (hImcOld != (HIMC)0)
2037 {
2038 pImmAssociateContext(s_hwnd, hImcOld);
2039 hImcOld = (HIMC)0;
2040 }
2041
2042 hImc = pImmGetContext(s_hwnd);
2043 if (hImc)
2044 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00002045 /*
2046 * for Korean ime
2047 */
2048 HKL hKL = GetKeyboardLayout(0);
2049
2050 if (LOWORD(hKL) == MAKELANGID(LANG_KOREAN, SUBLANG_KOREAN))
2051 {
2052 static DWORD dwConversionSaved = 0, dwSentenceSaved = 0;
2053 static BOOL bSaved = FALSE;
2054
2055 if (active)
2056 {
2057 /* if we have a saved conversion status, restore it */
2058 if (bSaved)
2059 pImmSetConversionStatus(hImc, dwConversionSaved,
2060 dwSentenceSaved);
2061 bSaved = FALSE;
2062 }
2063 else
2064 {
2065 /* save conversion status and disable korean */
2066 if (pImmGetConversionStatus(hImc, &dwConversionSaved,
2067 &dwSentenceSaved))
2068 {
2069 bSaved = TRUE;
2070 pImmSetConversionStatus(hImc,
2071 dwConversionSaved & ~(IME_CMODE_NATIVE
2072 | IME_CMODE_FULLSHAPE),
2073 dwSentenceSaved);
2074 }
2075 }
2076 }
2077
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 pImmSetOpenStatus(hImc, active);
2079 pImmReleaseContext(s_hwnd, hImc);
2080 }
2081 }
2082}
2083
2084/*
2085 * Get IM status. When IM is on, return not 0. Else return 0.
2086 */
2087 int
2088im_get_status()
2089{
2090 int status = 0;
2091 HIMC hImc;
2092
2093 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
2094 {
2095 status = pImmGetOpenStatus(hImc) ? 1 : 0;
2096 pImmReleaseContext(s_hwnd, hImc);
2097 }
2098 return status;
2099}
2100
2101#endif /* FEAT_MBYTE && FEAT_MBYTE_IME */
2102
2103#if defined(FEAT_MBYTE) && !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME)
2104/* Win32 with GLOBAL IME */
2105
2106/*
2107 * Notify cursor position to IM.
2108 */
2109 void
2110im_set_position(int row, int col)
2111{
2112 /* Win32 with GLOBAL IME */
2113 POINT p;
2114
2115 p.x = FILL_X(col);
2116 p.y = FILL_Y(row);
2117 MapWindowPoints(s_textArea, s_hwnd, &p, 1);
2118 global_ime_set_position(&p);
2119}
2120
2121/*
2122 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
2123 */
2124 void
2125im_set_active(int active)
2126{
2127 global_ime_set_status(active);
2128}
2129
2130/*
2131 * Get IM status. When IM is on, return not 0. Else return 0.
2132 */
2133 int
2134im_get_status()
2135{
2136 return global_ime_get_status();
2137}
2138#endif
2139
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002140#ifdef FEAT_MBYTE
2141/*
Bram Moolenaar39f05632006-03-19 22:15:26 +00002142 * Convert latin9 text "text[len]" to ucs-2 in "unicodebuf".
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002143 */
2144 static void
2145latin9_to_ucs(char_u *text, int len, WCHAR *unicodebuf)
2146{
2147 int c;
2148
Bram Moolenaarca003e12006-03-17 23:19:38 +00002149 while (--len >= 0)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002150 {
2151 c = *text++;
2152 switch (c)
2153 {
2154 case 0xa4: c = 0x20ac; break; /* euro */
2155 case 0xa6: c = 0x0160; break; /* S hat */
2156 case 0xa8: c = 0x0161; break; /* S -hat */
2157 case 0xb4: c = 0x017d; break; /* Z hat */
2158 case 0xb8: c = 0x017e; break; /* Z -hat */
2159 case 0xbc: c = 0x0152; break; /* OE */
2160 case 0xbd: c = 0x0153; break; /* oe */
2161 case 0xbe: c = 0x0178; break; /* Y */
2162 }
2163 *unicodebuf++ = c;
2164 }
2165}
2166#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167
2168#ifdef FEAT_RIGHTLEFT
2169/*
2170 * What is this for? In the case where you are using Win98 or Win2K or later,
2171 * and you are using a Hebrew font (or Arabic!), Windows does you a favor and
2172 * reverses the string sent to the TextOut... family. This sucks, because we
2173 * go to a lot of effort to do the right thing, and there doesn't seem to be a
2174 * way to tell Windblows not to do this!
2175 *
2176 * The short of it is that this 'RevOut' only gets called if you are running
2177 * one of the new, "improved" MS OSes, and only if you are running in
2178 * 'rightleft' mode. It makes display take *slightly* longer, but not
2179 * noticeably so.
2180 */
2181 static void
2182RevOut( HDC s_hdc,
2183 int col,
2184 int row,
2185 UINT foptions,
2186 CONST RECT *pcliprect,
2187 LPCTSTR text,
2188 UINT len,
2189 CONST INT *padding)
2190{
2191 int ix;
2192 static int special = -1;
2193
2194 if (special == -1)
2195 {
2196 /* Check windows version: special treatment is needed if it is NT 5 or
2197 * Win98 or higher. */
2198 if ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2199 && os_version.dwMajorVersion >= 5)
2200 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
2201 && (os_version.dwMajorVersion > 4
2202 || (os_version.dwMajorVersion == 4
2203 && os_version.dwMinorVersion > 0))))
2204 special = 1;
2205 else
2206 special = 0;
2207 }
2208
2209 if (special)
2210 for (ix = 0; ix < (int)len; ++ix)
2211 ExtTextOut(s_hdc, col + TEXT_X(ix), row, foptions,
2212 pcliprect, text + ix, 1, padding);
2213 else
2214 ExtTextOut(s_hdc, col, row, foptions, pcliprect, text, len, padding);
2215}
2216#endif
2217
2218 void
2219gui_mch_draw_string(
2220 int row,
2221 int col,
2222 char_u *text,
2223 int len,
2224 int flags)
2225{
2226 static int *padding = NULL;
2227 static int pad_size = 0;
2228 int i;
2229 const RECT *pcliprect = NULL;
2230 UINT foptions = 0;
2231#ifdef FEAT_MBYTE
2232 static WCHAR *unicodebuf = NULL;
2233 static int *unicodepdy = NULL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002234 static int unibuflen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 int n = 0;
2236#endif
2237 HPEN hpen, old_pen;
2238 int y;
2239
2240#ifndef MSWIN16_FASTTEXT
2241 /*
2242 * Italic and bold text seems to have an extra row of pixels at the bottom
2243 * (below where the bottom of the character should be). If we draw the
2244 * characters with a solid background, the top row of pixels in the
2245 * character below will be overwritten. We can fix this by filling in the
2246 * background ourselves, to the correct character proportions, and then
2247 * writing the character in transparent mode. Still have a problem when
2248 * the character is "_", which gets written on to the character below.
2249 * New fix: set gui.char_ascent to -1. This shifts all characters up one
2250 * pixel in their slots, which fixes the problem with the bottom row of
2251 * pixels. We still need this code because otherwise the top row of pixels
2252 * becomes a problem. - webb.
2253 */
2254 static HBRUSH hbr_cache[2] = {NULL, NULL};
2255 static guicolor_T brush_color[2] = {INVALCOLOR, INVALCOLOR};
2256 static int brush_lru = 0;
2257 HBRUSH hbr;
2258 RECT rc;
2259
2260 if (!(flags & DRAW_TRANSP))
2261 {
2262 /*
2263 * Clear background first.
2264 * Note: FillRect() excludes right and bottom of rectangle.
2265 */
2266 rc.left = FILL_X(col);
2267 rc.top = FILL_Y(row);
2268#ifdef FEAT_MBYTE
2269 if (has_mbyte)
2270 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 /* Compute the length in display cells. */
Bram Moolenaar72597a52010-07-18 15:31:08 +02002272 rc.right = FILL_X(col + mb_string2cells(text, len));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 }
2274 else
2275#endif
2276 rc.right = FILL_X(col + len);
2277 rc.bottom = FILL_Y(row + 1);
2278
2279 /* Cache the created brush, that saves a lot of time. We need two:
2280 * one for cursor background and one for the normal background. */
2281 if (gui.currBgColor == brush_color[0])
2282 {
2283 hbr = hbr_cache[0];
2284 brush_lru = 1;
2285 }
2286 else if (gui.currBgColor == brush_color[1])
2287 {
2288 hbr = hbr_cache[1];
2289 brush_lru = 0;
2290 }
2291 else
2292 {
2293 if (hbr_cache[brush_lru] != NULL)
2294 DeleteBrush(hbr_cache[brush_lru]);
2295 hbr_cache[brush_lru] = CreateSolidBrush(gui.currBgColor);
2296 brush_color[brush_lru] = gui.currBgColor;
2297 hbr = hbr_cache[brush_lru];
2298 brush_lru = !brush_lru;
2299 }
2300 FillRect(s_hdc, &rc, hbr);
2301
2302 SetBkMode(s_hdc, TRANSPARENT);
2303
2304 /*
2305 * When drawing block cursor, prevent inverted character spilling
2306 * over character cell (can happen with bold/italic)
2307 */
2308 if (flags & DRAW_CURSOR)
2309 {
2310 pcliprect = &rc;
2311 foptions = ETO_CLIPPED;
2312 }
2313 }
2314#else
2315 /*
2316 * The alternative would be to write the characters in opaque mode, but
2317 * when the text is not exactly the same proportions as normal text, too
2318 * big or too little a rectangle gets drawn for the background.
2319 */
2320 SetBkMode(s_hdc, OPAQUE);
2321 SetBkColor(s_hdc, gui.currBgColor);
2322#endif
2323 SetTextColor(s_hdc, gui.currFgColor);
2324 SelectFont(s_hdc, gui.currFont);
2325
2326 if (pad_size != Columns || padding == NULL || padding[0] != gui.char_width)
2327 {
2328 vim_free(padding);
2329 pad_size = Columns;
2330
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002331 /* Don't give an out-of-memory message here, it would call us
2332 * recursively. */
2333 padding = (int *)lalloc(pad_size * sizeof(int), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 if (padding != NULL)
2335 for (i = 0; i < pad_size; i++)
2336 padding[i] = gui.char_width;
2337 }
2338
2339 /* On NT, tell the font renderer not to "help" us with Hebrew and Arabic
2340 * text. This doesn't work in 9x, so we have to deal with it manually on
2341 * those systems. */
2342 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT)
2343 foptions |= ETO_IGNORELANGUAGE;
2344
2345 /*
2346 * We have to provide the padding argument because italic and bold versions
2347 * of fixed-width fonts are often one pixel or so wider than their normal
2348 * versions.
2349 * No check for DRAW_BOLD, Windows will have done it already.
2350 */
2351
2352#ifdef FEAT_MBYTE
2353 /* Check if there are any UTF-8 characters. If not, use normal text
2354 * output to speed up output. */
2355 if (enc_utf8)
2356 for (n = 0; n < len; ++n)
2357 if (text[n] >= 0x80)
2358 break;
2359
2360 /* Check if the Unicode buffer exists and is big enough. Create it
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002361 * with the same length as the multi-byte string, the number of wide
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 * characters is always equal or smaller. */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002363 if ((enc_utf8
2364 || (enc_codepage > 0 && (int)GetACP() != enc_codepage)
2365 || enc_latin9)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 && (unicodebuf == NULL || len > unibuflen))
2367 {
2368 vim_free(unicodebuf);
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002369 unicodebuf = (WCHAR *)lalloc(len * sizeof(WCHAR), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370
2371 vim_free(unicodepdy);
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002372 unicodepdy = (int *)lalloc(len * sizeof(int), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373
2374 unibuflen = len;
2375 }
2376
2377 if (enc_utf8 && n < len && unicodebuf != NULL)
2378 {
2379 /* Output UTF-8 characters. Caller has already separated
2380 * composing characters. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002381 int i;
2382 int wlen; /* string length in words */
2383 int clen; /* string length in characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 int cells; /* cell width of string up to composing char */
2385 int cw; /* width of current cell */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002386 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002388 wlen = 0;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002389 clen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 cells = 0;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002391 for (i = 0; i < len; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002393 c = utf_ptr2char(text + i);
2394 if (c >= 0x10000)
2395 {
2396 /* Turn into UTF-16 encoding. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002397 unicodebuf[wlen++] = ((c - 0x10000) >> 10) + 0xD800;
2398 unicodebuf[wlen++] = ((c - 0x10000) & 0x3ff) + 0xDC00;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002399 }
2400 else
2401 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00002402 unicodebuf[wlen++] = c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002403 }
2404 cw = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 if (cw > 2) /* don't use 4 for unprintable char */
2406 cw = 1;
2407 if (unicodepdy != NULL)
2408 {
2409 /* Use unicodepdy to make characters fit as we expect, even
2410 * when the font uses different widths (e.g., bold character
2411 * is wider). */
2412 unicodepdy[clen] = cw * gui.char_width;
2413 }
2414 cells += cw;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002415 i += utfc_ptr2len_len(text + i, len - i);
Bram Moolenaarca003e12006-03-17 23:19:38 +00002416 ++clen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 }
2418 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
Bram Moolenaarca003e12006-03-17 23:19:38 +00002419 foptions, pcliprect, unicodebuf, wlen, unicodepdy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 len = cells; /* used for underlining */
2421 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002422 else if ((enc_codepage > 0 && (int)GetACP() != enc_codepage) || enc_latin9)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 {
2424 /* If we want to display codepage data, and the current CP is not the
2425 * ANSI one, we need to go via Unicode. */
2426 if (unicodebuf != NULL)
2427 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002428 if (enc_latin9)
2429 latin9_to_ucs(text, len, unicodebuf);
2430 else
2431 len = MultiByteToWideChar(enc_codepage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 MB_PRECOMPOSED,
2433 (char *)text, len,
2434 (LPWSTR)unicodebuf, unibuflen);
2435 if (len != 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002436 {
2437 /* Use unicodepdy to make characters fit as we expect, even
2438 * when the font uses different widths (e.g., bold character
2439 * is wider). */
2440 if (unicodepdy != NULL)
2441 {
2442 int i;
2443 int cw;
2444
2445 for (i = 0; i < len; ++i)
2446 {
2447 cw = utf_char2cells(unicodebuf[i]);
2448 if (cw > 2)
2449 cw = 1;
2450 unicodepdy[i] = cw * gui.char_width;
2451 }
2452 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002454 foptions, pcliprect, unicodebuf, len, unicodepdy);
2455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 }
2457 }
2458 else
2459#endif
2460 {
2461#ifdef FEAT_RIGHTLEFT
2462 /* If we can't use ETO_IGNORELANGUAGE, we can't tell Windows not to
2463 * mess up RL text, so we have to draw it character-by-character.
2464 * Only do this if RL is on, since it's slow. */
2465 if (curwin->w_p_rl && !(foptions & ETO_IGNORELANGUAGE))
2466 RevOut(s_hdc, TEXT_X(col), TEXT_Y(row),
2467 foptions, pcliprect, (char *)text, len, padding);
2468 else
2469#endif
2470 ExtTextOut(s_hdc, TEXT_X(col), TEXT_Y(row),
2471 foptions, pcliprect, (char *)text, len, padding);
2472 }
2473
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002474 /* Underline */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 if (flags & DRAW_UNDERL)
2476 {
2477 hpen = CreatePen(PS_SOLID, 1, gui.currFgColor);
2478 old_pen = SelectObject(s_hdc, hpen);
2479 /* When p_linespace is 0, overwrite the bottom row of pixels.
2480 * Otherwise put the line just below the character. */
2481 y = FILL_Y(row + 1) - 1;
2482#ifndef MSWIN16_FASTTEXT
2483 if (p_linespace > 1)
2484 y -= p_linespace - 1;
2485#endif
2486 MoveToEx(s_hdc, FILL_X(col), y, NULL);
2487 /* Note: LineTo() excludes the last pixel in the line. */
2488 LineTo(s_hdc, FILL_X(col + len), y);
2489 DeleteObject(SelectObject(s_hdc, old_pen));
2490 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002491
2492 /* Undercurl */
2493 if (flags & DRAW_UNDERC)
2494 {
2495 int x;
2496 int offset;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002497 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002498
2499 y = FILL_Y(row + 1) - 1;
2500 for (x = FILL_X(col); x < FILL_X(col + len); ++x)
2501 {
2502 offset = val[x % 8];
2503 SetPixel(s_hdc, x, y - offset, gui.currSpColor);
2504 }
2505 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506}
2507
2508
2509/*
2510 * Output routines.
2511 */
2512
2513/* Flush any output to the screen */
2514 void
2515gui_mch_flush(void)
2516{
2517# if defined(__BORLANDC__)
2518 /*
2519 * The GdiFlush declaration (in Borland C 5.01 <wingdi.h>) is not a
2520 * prototype declaration.
2521 * The compiler complains if __stdcall is not used in both declarations.
2522 */
2523 BOOL __stdcall GdiFlush(void);
2524# endif
2525
2526 GdiFlush();
2527}
2528
2529 static void
2530clear_rect(RECT *rcp)
2531{
2532 HBRUSH hbr;
2533
2534 hbr = CreateSolidBrush(gui.back_pixel);
2535 FillRect(s_hdc, rcp, hbr);
2536 DeleteBrush(hbr);
2537}
2538
2539
Bram Moolenaarc716c302006-01-21 22:12:51 +00002540 void
2541gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
2542{
2543 RECT workarea_rect;
2544
2545 get_work_area(&workarea_rect);
2546
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002547 *screen_w = workarea_rect.right - workarea_rect.left
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002548 - GetSystemMetrics(SM_CXFRAME) * 2;
Bram Moolenaarc716c302006-01-21 22:12:51 +00002549
2550 /* FIXME: dirty trick: Because the gui_get_base_height() doesn't include
2551 * the menubar for MSwin, we subtract it from the screen height, so that
2552 * the window size can be made to fit on the screen. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002553 *screen_h = workarea_rect.bottom - workarea_rect.top
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002554 - GetSystemMetrics(SM_CYFRAME) * 2
Bram Moolenaarc716c302006-01-21 22:12:51 +00002555 - GetSystemMetrics(SM_CYCAPTION)
2556#ifdef FEAT_MENU
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002557 - gui_mswin_get_menu_height(FALSE)
Bram Moolenaarc716c302006-01-21 22:12:51 +00002558#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002559 ;
Bram Moolenaarc716c302006-01-21 22:12:51 +00002560}
2561
2562
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563#if defined(FEAT_MENU) || defined(PROTO)
2564/*
2565 * Add a sub menu to the menu bar.
2566 */
2567 void
2568gui_mch_add_menu(
2569 vimmenu_T *menu,
2570 int pos)
2571{
2572 vimmenu_T *parent = menu->parent;
2573
2574 menu->submenu_id = CreatePopupMenu();
2575 menu->id = s_menu_id++;
2576
2577 if (menu_is_menubar(menu->name))
2578 {
2579 if (is_winnt_3())
2580 {
2581 InsertMenu((parent == NULL) ? s_menuBar : parent->submenu_id,
2582 (UINT)pos, MF_POPUP | MF_STRING | MF_BYPOSITION,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002583 (long_u)menu->submenu_id, (LPCTSTR) menu->name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 }
2585 else
2586 {
2587#ifdef FEAT_MBYTE
2588 WCHAR *wn = NULL;
2589 int n;
2590
2591 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2592 {
2593 /* 'encoding' differs from active codepage: convert menu name
2594 * and use wide function */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002595 wn = enc_to_utf16(menu->name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 if (wn != NULL)
2597 {
2598 MENUITEMINFOW infow;
2599
2600 infow.cbSize = sizeof(infow);
2601 infow.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID
2602 | MIIM_SUBMENU;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002603 infow.dwItemData = (long_u)menu;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 infow.wID = menu->id;
2605 infow.fType = MFT_STRING;
2606 infow.dwTypeData = wn;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002607 infow.cch = (UINT)wcslen(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 infow.hSubMenu = menu->submenu_id;
2609 n = InsertMenuItemW((parent == NULL)
2610 ? s_menuBar : parent->submenu_id,
2611 (UINT)pos, TRUE, &infow);
2612 vim_free(wn);
2613 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2614 /* Failed, try using non-wide function. */
2615 wn = NULL;
2616 }
2617 }
2618
2619 if (wn == NULL)
2620#endif
2621 {
2622 MENUITEMINFO info;
2623
2624 info.cbSize = sizeof(info);
2625 info.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID | MIIM_SUBMENU;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002626 info.dwItemData = (long_u)menu;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 info.wID = menu->id;
2628 info.fType = MFT_STRING;
2629 info.dwTypeData = (LPTSTR)menu->name;
2630 info.cch = (UINT)STRLEN(menu->name);
2631 info.hSubMenu = menu->submenu_id;
2632 InsertMenuItem((parent == NULL)
2633 ? s_menuBar : parent->submenu_id,
2634 (UINT)pos, TRUE, &info);
2635 }
2636 }
2637 }
2638
2639 /* Fix window size if menu may have wrapped */
2640 if (parent == NULL)
2641 gui_mswin_get_menu_height(!gui.starting);
2642#ifdef FEAT_TEAROFF
2643 else if (IsWindow(parent->tearoff_handle))
2644 rebuild_tearoff(parent);
2645#endif
2646}
2647
2648 void
2649gui_mch_show_popupmenu(vimmenu_T *menu)
2650{
2651 POINT mp;
2652
2653 (void)GetCursorPos((LPPOINT)&mp);
2654 gui_mch_show_popupmenu_at(menu, (int)mp.x, (int)mp.y);
2655}
2656
2657 void
Bram Moolenaar045e82d2005-07-08 22:25:33 +00002658gui_make_popup(char_u *path_name, int mouse_pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659{
2660 vimmenu_T *menu = gui_find_menu(path_name);
2661
2662 if (menu != NULL)
2663 {
2664 POINT p;
2665
2666 /* Find the position of the current cursor */
2667 GetDCOrgEx(s_hdc, &p);
Bram Moolenaar045e82d2005-07-08 22:25:33 +00002668 if (mouse_pos)
2669 {
2670 int mx, my;
2671
2672 gui_mch_getmouse(&mx, &my);
2673 p.x += mx;
2674 p.y += my;
2675 }
2676 else if (curwin != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 {
2678 p.x += TEXT_X(W_WINCOL(curwin) + curwin->w_wcol + 1);
2679 p.y += TEXT_Y(W_WINROW(curwin) + curwin->w_wrow + 1);
2680 }
2681 msg_scroll = FALSE;
2682 gui_mch_show_popupmenu_at(menu, (int)p.x, (int)p.y);
2683 }
2684}
2685
2686#if defined(FEAT_TEAROFF) || defined(PROTO)
2687/*
2688 * Given a menu descriptor, e.g. "File.New", find it in the menu hierarchy and
2689 * create it as a pseudo-"tearoff menu".
2690 */
2691 void
2692gui_make_tearoff(char_u *path_name)
2693{
2694 vimmenu_T *menu = gui_find_menu(path_name);
2695
2696 /* Found the menu, so tear it off. */
2697 if (menu != NULL)
2698 gui_mch_tearoff(menu->dname, menu, 0xffffL, 0xffffL);
2699}
2700#endif
2701
2702/*
2703 * Add a menu item to a menu
2704 */
2705 void
2706gui_mch_add_menu_item(
2707 vimmenu_T *menu,
2708 int idx)
2709{
2710 vimmenu_T *parent = menu->parent;
2711
2712 menu->id = s_menu_id++;
2713 menu->submenu_id = NULL;
2714
2715#ifdef FEAT_TEAROFF
2716 if (STRNCMP(menu->name, TEAR_STRING, TEAR_LEN) == 0)
2717 {
2718 InsertMenu(parent->submenu_id, (UINT)idx, MF_BITMAP|MF_BYPOSITION,
2719 (UINT)menu->id, (LPCTSTR) s_htearbitmap);
2720 }
2721 else
2722#endif
2723#ifdef FEAT_TOOLBAR
2724 if (menu_is_toolbar(parent->name))
2725 {
2726 TBBUTTON newtb;
2727
2728 vim_memset(&newtb, 0, sizeof(newtb));
2729 if (menu_is_separator(menu->name))
2730 {
2731 newtb.iBitmap = 0;
2732 newtb.fsStyle = TBSTYLE_SEP;
2733 }
2734 else
2735 {
2736 newtb.iBitmap = get_toolbar_bitmap(menu);
2737 newtb.fsStyle = TBSTYLE_BUTTON;
2738 }
2739 newtb.idCommand = menu->id;
2740 newtb.fsState = TBSTATE_ENABLED;
2741 newtb.iString = 0;
2742 SendMessage(s_toolbarhwnd, TB_INSERTBUTTON, (WPARAM)idx,
2743 (LPARAM)&newtb);
2744 menu->submenu_id = (HMENU)-1;
2745 }
2746 else
2747#endif
2748 {
2749#ifdef FEAT_MBYTE
2750 WCHAR *wn = NULL;
2751 int n;
2752
2753 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2754 {
2755 /* 'encoding' differs from active codepage: convert menu item name
2756 * and use wide function */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002757 wn = enc_to_utf16(menu->name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758 if (wn != NULL)
2759 {
2760 n = InsertMenuW(parent->submenu_id, (UINT)idx,
2761 (menu_is_separator(menu->name)
2762 ? MF_SEPARATOR : MF_STRING) | MF_BYPOSITION,
2763 (UINT)menu->id, wn);
2764 vim_free(wn);
2765 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2766 /* Failed, try using non-wide function. */
2767 wn = NULL;
2768 }
2769 }
2770 if (wn == NULL)
2771#endif
2772 InsertMenu(parent->submenu_id, (UINT)idx,
2773 (menu_is_separator(menu->name) ? MF_SEPARATOR : MF_STRING)
2774 | MF_BYPOSITION,
2775 (UINT)menu->id, (LPCTSTR)menu->name);
2776#ifdef FEAT_TEAROFF
2777 if (IsWindow(parent->tearoff_handle))
2778 rebuild_tearoff(parent);
2779#endif
2780 }
2781}
2782
2783/*
2784 * Destroy the machine specific menu widget.
2785 */
2786 void
2787gui_mch_destroy_menu(vimmenu_T *menu)
2788{
2789#ifdef FEAT_TOOLBAR
2790 /*
2791 * is this a toolbar button?
2792 */
2793 if (menu->submenu_id == (HMENU)-1)
2794 {
2795 int iButton;
2796
2797 iButton = (int)SendMessage(s_toolbarhwnd, TB_COMMANDTOINDEX,
2798 (WPARAM)menu->id, 0);
2799 SendMessage(s_toolbarhwnd, TB_DELETEBUTTON, (WPARAM)iButton, 0);
2800 }
2801 else
2802#endif
2803 {
2804 if (menu->parent != NULL
2805 && menu_is_popup(menu->parent->dname)
2806 && menu->parent->submenu_id != NULL)
2807 RemoveMenu(menu->parent->submenu_id, menu->id, MF_BYCOMMAND);
2808 else
2809 RemoveMenu(s_menuBar, menu->id, MF_BYCOMMAND);
2810 if (menu->submenu_id != NULL)
2811 DestroyMenu(menu->submenu_id);
2812#ifdef FEAT_TEAROFF
2813 if (IsWindow(menu->tearoff_handle))
2814 DestroyWindow(menu->tearoff_handle);
2815 if (menu->parent != NULL
2816 && menu->parent->children != NULL
2817 && IsWindow(menu->parent->tearoff_handle))
2818 {
2819 /* This menu must not show up when rebuilding the tearoff window. */
2820 menu->modes = 0;
2821 rebuild_tearoff(menu->parent);
2822 }
2823#endif
2824 }
2825}
2826
2827#ifdef FEAT_TEAROFF
2828 static void
2829rebuild_tearoff(vimmenu_T *menu)
2830{
2831 /*hackish*/
2832 char_u tbuf[128];
2833 RECT trect;
2834 RECT rct;
2835 RECT roct;
2836 int x, y;
2837
2838 HWND thwnd = menu->tearoff_handle;
2839
2840 GetWindowText(thwnd, tbuf, 127);
2841 if (GetWindowRect(thwnd, &trect)
2842 && GetWindowRect(s_hwnd, &rct)
2843 && GetClientRect(s_hwnd, &roct))
2844 {
2845 x = trect.left - rct.left;
2846 y = (trect.top - rct.bottom + roct.bottom);
2847 }
2848 else
2849 {
2850 x = y = 0xffffL;
2851 }
2852 DestroyWindow(thwnd);
2853 if (menu->children != NULL)
2854 {
2855 gui_mch_tearoff(tbuf, menu, x, y);
2856 if (IsWindow(menu->tearoff_handle))
2857 (void) SetWindowPos(menu->tearoff_handle,
2858 NULL,
2859 (int)trect.left,
2860 (int)trect.top,
2861 0, 0,
2862 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
2863 }
2864}
2865#endif /* FEAT_TEAROFF */
2866
2867/*
2868 * Make a menu either grey or not grey.
2869 */
2870 void
2871gui_mch_menu_grey(
2872 vimmenu_T *menu,
2873 int grey)
2874{
2875#ifdef FEAT_TOOLBAR
2876 /*
2877 * is this a toolbar button?
2878 */
2879 if (menu->submenu_id == (HMENU)-1)
2880 {
2881 SendMessage(s_toolbarhwnd, TB_ENABLEBUTTON,
2882 (WPARAM)menu->id, (LPARAM) MAKELONG((grey ? FALSE : TRUE), 0) );
2883 }
2884 else
2885#endif
2886 if (grey)
2887 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_GRAYED);
2888 else
2889 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_ENABLED);
2890
2891#ifdef FEAT_TEAROFF
2892 if ((menu->parent != NULL) && (IsWindow(menu->parent->tearoff_handle)))
2893 {
2894 WORD menuID;
2895 HWND menuHandle;
2896
2897 /*
2898 * A tearoff button has changed state.
2899 */
2900 if (menu->children == NULL)
2901 menuID = (WORD)(menu->id);
2902 else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002903 menuID = (WORD)((long_u)(menu->submenu_id) | (DWORD)0x8000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 menuHandle = GetDlgItem(menu->parent->tearoff_handle, menuID);
2905 if (menuHandle)
2906 EnableWindow(menuHandle, !grey);
2907
2908 }
2909#endif
2910}
2911
2912#endif /* FEAT_MENU */
2913
2914
2915/* define some macros used to make the dialogue creation more readable */
2916
2917#define add_string(s) strcpy((LPSTR)p, s); (LPSTR)p += (strlen((LPSTR)p) + 1)
2918#define add_word(x) *p++ = (x)
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002919#define add_long(x) dwp = (DWORD *)p; *dwp++ = (x); p = (WORD *)dwp
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920
2921#if defined(FEAT_GUI_DIALOG) || defined(PROTO)
2922/*
2923 * stuff for dialogs
2924 */
2925
2926/*
2927 * The callback routine used by all the dialogs. Very simple. First,
2928 * acknowledges the INITDIALOG message so that Windows knows to do standard
2929 * dialog stuff (Return = default, Esc = cancel....) Second, if a button is
2930 * pressed, return that button's ID - IDCANCEL (2), which is the button's
2931 * number.
2932 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002933/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 static LRESULT CALLBACK
2935dialog_callback(
2936 HWND hwnd,
2937 UINT message,
2938 WPARAM wParam,
2939 LPARAM lParam)
2940{
2941 if (message == WM_INITDIALOG)
2942 {
2943 CenterWindow(hwnd, GetWindow(hwnd, GW_OWNER));
2944 /* Set focus to the dialog. Set the default button, if specified. */
2945 (void)SetFocus(hwnd);
2946 if (dialog_default_button > IDCANCEL)
2947 (void)SetFocus(GetDlgItem(hwnd, dialog_default_button));
Bram Moolenaar2b80e652007-08-14 14:57:55 +00002948 else
2949 /* We don't have a default, set focus on another element of the
2950 * dialog window, probably the icon */
2951 (void)SetFocus(GetDlgItem(hwnd, DLG_NONBUTTON_CONTROL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 return FALSE;
2953 }
2954
2955 if (message == WM_COMMAND)
2956 {
2957 int button = LOWORD(wParam);
2958
2959 /* Don't end the dialog if something was selected that was
2960 * not a button.
2961 */
2962 if (button >= DLG_NONBUTTON_CONTROL)
2963 return TRUE;
2964
2965 /* If the edit box exists, copy the string. */
2966 if (s_textfield != NULL)
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002967 {
2968# if defined(FEAT_MBYTE) && defined(WIN3264)
2969 /* If the OS is Windows NT, and 'encoding' differs from active
2970 * codepage: use wide function and convert text. */
2971 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2972 && enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002973 {
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002974 WCHAR *wp = (WCHAR *)alloc(IOSIZE * sizeof(WCHAR));
2975 char_u *p;
2976
2977 GetDlgItemTextW(hwnd, DLG_NONBUTTON_CONTROL + 2, wp, IOSIZE);
2978 p = utf16_to_enc(wp, NULL);
2979 vim_strncpy(s_textfield, p, IOSIZE);
2980 vim_free(p);
2981 vim_free(wp);
2982 }
2983 else
2984# endif
2985 GetDlgItemText(hwnd, DLG_NONBUTTON_CONTROL + 2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 s_textfield, IOSIZE);
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002987 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988
2989 /*
2990 * Need to check for IDOK because if the user just hits Return to
2991 * accept the default value, some reason this is what we get.
2992 */
2993 if (button == IDOK)
2994 {
2995 if (dialog_default_button > IDCANCEL)
2996 EndDialog(hwnd, dialog_default_button);
2997 }
2998 else
2999 EndDialog(hwnd, button - IDCANCEL);
3000 return TRUE;
3001 }
3002
3003 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
3004 {
3005 EndDialog(hwnd, 0);
3006 return TRUE;
3007 }
3008 return FALSE;
3009}
3010
3011/*
3012 * Create a dialog dynamically from the parameter strings.
3013 * type = type of dialog (question, alert, etc.)
3014 * title = dialog title. may be NULL for default title.
3015 * message = text to display. Dialog sizes to accommodate it.
3016 * buttons = '\n' separated list of button captions, default first.
3017 * dfltbutton = number of default button.
3018 *
3019 * This routine returns 1 if the first button is pressed,
3020 * 2 for the second, etc.
3021 *
3022 * 0 indicates Esc was pressed.
3023 * -1 for unexpected error
3024 *
3025 * If stubbing out this fn, return 1.
3026 */
3027
3028static const char_u *dlg_icons[] = /* must match names in resource file */
3029{
3030 "IDR_VIM",
3031 "IDR_VIM_ERROR",
3032 "IDR_VIM_ALERT",
3033 "IDR_VIM_INFO",
3034 "IDR_VIM_QUESTION"
3035};
3036
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 int
3038gui_mch_dialog(
3039 int type,
3040 char_u *title,
3041 char_u *message,
3042 char_u *buttons,
3043 int dfltbutton,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003044 char_u *textfield,
3045 int ex_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046{
3047 WORD *p, *pdlgtemplate, *pnumitems;
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00003048 DWORD *dwp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 int numButtons;
3050 int *buttonWidths, *buttonPositions;
3051 int buttonYpos;
3052 int nchar, i;
3053 DWORD lStyle;
3054 int dlgwidth = 0;
3055 int dlgheight;
3056 int editboxheight;
3057 int horizWidth = 0;
3058 int msgheight;
3059 char_u *pstart;
3060 char_u *pend;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003061 char_u *last_white;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062 char_u *tbuffer;
3063 RECT rect;
3064 HWND hwnd;
3065 HDC hdc;
3066 HFONT font, oldFont;
3067 TEXTMETRIC fontInfo;
3068 int fontHeight;
3069 int textWidth, minButtonWidth, messageWidth;
3070 int maxDialogWidth;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003071 int maxDialogHeight;
3072 int scroll_flag = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 int vertical;
3074 int dlgPaddingX;
3075 int dlgPaddingY;
3076#ifdef USE_SYSMENU_FONT
3077 LOGFONT lfSysmenu;
3078 int use_lfSysmenu = FALSE;
3079#endif
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003080 garray_T ga;
3081 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082
3083#ifndef NO_CONSOLE
3084 /* Don't output anything in silent mode ("ex -s") */
3085 if (silent_mode)
3086 return dfltbutton; /* return default option */
3087#endif
3088
Bram Moolenaar748bf032005-02-02 23:04:36 +00003089 if (s_hwnd == NULL)
3090 get_dialog_font_metrics();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091
3092 if ((type < 0) || (type > VIM_LAST_TYPE))
3093 type = 0;
3094
3095 /* allocate some memory for dialog template */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003096 /* TODO should compute this really */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003097 pdlgtemplate = p = (PWORD)LocalAlloc(LPTR,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003098 DLG_ALLOC_SIZE + STRLEN(message) * 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099
3100 if (p == NULL)
3101 return -1;
3102
3103 /*
3104 * make a copy of 'buttons' to fiddle with it. complier grizzles because
3105 * vim_strsave() doesn't take a const arg (why not?), so cast away the
3106 * const.
3107 */
3108 tbuffer = vim_strsave(buttons);
3109 if (tbuffer == NULL)
3110 return -1;
3111
3112 --dfltbutton; /* Change from one-based to zero-based */
3113
3114 /* Count buttons */
3115 numButtons = 1;
3116 for (i = 0; tbuffer[i] != '\0'; i++)
3117 {
3118 if (tbuffer[i] == DLG_BUTTON_SEP)
3119 numButtons++;
3120 }
3121 if (dfltbutton >= numButtons)
3122 dfltbutton = -1;
3123
3124 /* Allocate array to hold the width of each button */
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00003125 buttonWidths = (int *)lalloc(numButtons * sizeof(int), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 if (buttonWidths == NULL)
3127 return -1;
3128
3129 /* Allocate array to hold the X position of each button */
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00003130 buttonPositions = (int *)lalloc(numButtons * sizeof(int), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 if (buttonPositions == NULL)
3132 return -1;
3133
3134 /*
3135 * Calculate how big the dialog must be.
3136 */
3137 hwnd = GetDesktopWindow();
3138 hdc = GetWindowDC(hwnd);
3139#ifdef USE_SYSMENU_FONT
3140 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3141 {
3142 font = CreateFontIndirect(&lfSysmenu);
3143 use_lfSysmenu = TRUE;
3144 }
3145 else
3146#endif
3147 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3148 VARIABLE_PITCH , DLG_FONT_NAME);
3149 if (s_usenewlook)
3150 {
3151 oldFont = SelectFont(hdc, font);
3152 dlgPaddingX = DLG_PADDING_X;
3153 dlgPaddingY = DLG_PADDING_Y;
3154 }
3155 else
3156 {
3157 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
3158 dlgPaddingX = DLG_OLD_STYLE_PADDING_X;
3159 dlgPaddingY = DLG_OLD_STYLE_PADDING_Y;
3160 }
3161 GetTextMetrics(hdc, &fontInfo);
3162 fontHeight = fontInfo.tmHeight;
3163
3164 /* Minimum width for horizontal button */
3165 minButtonWidth = GetTextWidth(hdc, "Cancel", 6);
3166
3167 /* Maximum width of a dialog, if possible */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003168 if (s_hwnd == NULL)
3169 {
3170 RECT workarea_rect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171
Bram Moolenaarc716c302006-01-21 22:12:51 +00003172 /* We don't have a window, use the desktop area. */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003173 get_work_area(&workarea_rect);
3174 maxDialogWidth = workarea_rect.right - workarea_rect.left - 100;
3175 if (maxDialogWidth > 600)
3176 maxDialogWidth = 600;
3177 maxDialogHeight = workarea_rect.bottom - workarea_rect.top - 100;
3178 }
3179 else
3180 {
3181 /* Use our own window for the size, unless it's very small. */
3182 GetWindowRect(s_hwnd, &rect);
3183 maxDialogWidth = rect.right - rect.left
3184 - GetSystemMetrics(SM_CXFRAME) * 2;
3185 if (maxDialogWidth < DLG_MIN_MAX_WIDTH)
3186 maxDialogWidth = DLG_MIN_MAX_WIDTH;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003187
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003188 maxDialogHeight = rect.bottom - rect.top
3189 - GetSystemMetrics(SM_CXFRAME) * 2;
3190 if (maxDialogHeight < DLG_MIN_MAX_HEIGHT)
3191 maxDialogHeight = DLG_MIN_MAX_HEIGHT;
3192 }
3193
3194 /* Set dlgwidth to width of message.
3195 * Copy the message into "ga", changing NL to CR-NL and inserting line
3196 * breaks where needed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 pstart = message;
3198 messageWidth = 0;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003199 msgheight = 0;
3200 ga_init2(&ga, sizeof(char), 500);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 do
3202 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003203 msgheight += fontHeight; /* at least one line */
3204
3205 /* Need to figure out where to break the string. The system does it
3206 * at a word boundary, which would mean we can't compute the number of
3207 * wrapped lines. */
3208 textWidth = 0;
3209 last_white = NULL;
3210 for (pend = pstart; *pend != NUL && *pend != '\n'; )
Bram Moolenaar748bf032005-02-02 23:04:36 +00003211 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003212#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003213 l = (*mb_ptr2len)(pend);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003214#else
3215 l = 1;
3216#endif
3217 if (l == 1 && vim_iswhite(*pend)
3218 && textWidth > maxDialogWidth * 3 / 4)
3219 last_white = pend;
3220 textWidth += GetTextWidth(hdc, pend, l);
3221 if (textWidth >= maxDialogWidth)
Bram Moolenaar748bf032005-02-02 23:04:36 +00003222 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003223 /* Line will wrap. */
3224 messageWidth = maxDialogWidth;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003225 msgheight += fontHeight;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003226 textWidth = 0;
3227
3228 if (last_white != NULL)
3229 {
3230 /* break the line just after a space */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003231 ga.ga_len -= (int)(pend - (last_white + 1));
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003232 pend = last_white + 1;
3233 last_white = NULL;
3234 }
3235 ga_append(&ga, '\r');
3236 ga_append(&ga, '\n');
3237 continue;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003238 }
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003239
3240 while (--l >= 0)
3241 ga_append(&ga, *pend++);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003242 }
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003243 if (textWidth > messageWidth)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244 messageWidth = textWidth;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003245
3246 ga_append(&ga, '\r');
3247 ga_append(&ga, '\n');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 pstart = pend + 1;
3249 } while (*pend != NUL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003250
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003251 if (ga.ga_data != NULL)
3252 message = ga.ga_data;
3253
Bram Moolenaar748bf032005-02-02 23:04:36 +00003254 messageWidth += 10; /* roundoff space */
3255
3256 /* Restrict the size to a maximum. Causes a scrollbar to show up. */
3257 if (msgheight > maxDialogHeight)
3258 {
3259 msgheight = maxDialogHeight;
3260 scroll_flag = WS_VSCROLL;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003261 messageWidth += GetSystemMetrics(SM_CXVSCROLL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263
3264 /* Add width of icon to dlgwidth, and some space */
Bram Moolenaar748bf032005-02-02 23:04:36 +00003265 dlgwidth = messageWidth + DLG_ICON_WIDTH + 3 * dlgPaddingX;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266
3267 if (msgheight < DLG_ICON_HEIGHT)
3268 msgheight = DLG_ICON_HEIGHT;
3269
3270 /*
3271 * Check button names. A long one will make the dialog wider.
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00003272 * When called early (-register error message) p_go isn't initialized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273 */
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00003274 vertical = (p_go != NULL && vim_strchr(p_go, GO_VERTICAL) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 if (!vertical)
3276 {
3277 // Place buttons horizontally if they fit.
3278 horizWidth = dlgPaddingX;
3279 pstart = tbuffer;
3280 i = 0;
3281 do
3282 {
3283 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
3284 if (pend == NULL)
3285 pend = pstart + STRLEN(pstart); // Last button name.
3286 textWidth = GetTextWidth(hdc, pstart, (int)(pend - pstart));
3287 if (textWidth < minButtonWidth)
3288 textWidth = minButtonWidth;
3289 textWidth += dlgPaddingX; /* Padding within button */
3290 buttonWidths[i] = textWidth;
3291 buttonPositions[i++] = horizWidth;
3292 horizWidth += textWidth + dlgPaddingX; /* Pad between buttons */
3293 pstart = pend + 1;
3294 } while (*pend != NUL);
3295
3296 if (horizWidth > maxDialogWidth)
3297 vertical = TRUE; // Too wide to fit on the screen.
3298 else if (horizWidth > dlgwidth)
3299 dlgwidth = horizWidth;
3300 }
3301
3302 if (vertical)
3303 {
3304 // Stack buttons vertically.
3305 pstart = tbuffer;
3306 do
3307 {
3308 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
3309 if (pend == NULL)
3310 pend = pstart + STRLEN(pstart); // Last button name.
3311 textWidth = GetTextWidth(hdc, pstart, (int)(pend - pstart));
3312 textWidth += dlgPaddingX; /* Padding within button */
3313 textWidth += DLG_VERT_PADDING_X * 2; /* Padding around button */
3314 if (textWidth > dlgwidth)
3315 dlgwidth = textWidth;
3316 pstart = pend + 1;
3317 } while (*pend != NUL);
3318 }
3319
3320 if (dlgwidth < DLG_MIN_WIDTH)
3321 dlgwidth = DLG_MIN_WIDTH; /* Don't allow a really thin dialog!*/
3322
3323 /* start to fill in the dlgtemplate information. addressing by WORDs */
3324 if (s_usenewlook)
3325 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE |DS_SETFONT;
3326 else
3327 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE;
3328
3329 add_long(lStyle);
3330 add_long(0); // (lExtendedStyle)
3331 pnumitems = p; /*save where the number of items must be stored*/
3332 add_word(0); // NumberOfItems(will change later)
3333 add_word(10); // x
3334 add_word(10); // y
3335 add_word(PixelToDialogX(dlgwidth)); // cx
3336
3337 // Dialog height.
3338 if (vertical)
3339 dlgheight = msgheight + 2 * dlgPaddingY +
3340 DLG_VERT_PADDING_Y + 2 * fontHeight * numButtons;
3341 else
3342 dlgheight = msgheight + 3 * dlgPaddingY + 2 * fontHeight;
3343
3344 // Dialog needs to be taller if contains an edit box.
3345 editboxheight = fontHeight + dlgPaddingY + 4 * DLG_VERT_PADDING_Y;
3346 if (textfield != NULL)
3347 dlgheight += editboxheight;
3348
3349 add_word(PixelToDialogY(dlgheight));
3350
3351 add_word(0); // Menu
3352 add_word(0); // Class
3353
3354 /* copy the title of the dialog */
3355 nchar = nCopyAnsiToWideChar(p, (title ?
3356 (LPSTR)title :
3357 (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
3358 p += nchar;
3359
3360 if (s_usenewlook)
3361 {
3362 /* do the font, since DS_3DLOOK doesn't work properly */
3363#ifdef USE_SYSMENU_FONT
3364 if (use_lfSysmenu)
3365 {
3366 /* point size */
3367 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
3368 GetDeviceCaps(hdc, LOGPIXELSY));
3369 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
3370 }
3371 else
3372#endif
3373 {
3374 *p++ = DLG_FONT_POINT_SIZE; // point size
3375 nchar = nCopyAnsiToWideChar(p, TEXT(DLG_FONT_NAME));
3376 }
3377 p += nchar;
3378 }
3379
3380 buttonYpos = msgheight + 2 * dlgPaddingY;
3381
3382 if (textfield != NULL)
3383 buttonYpos += editboxheight;
3384
3385 pstart = tbuffer;
3386 if (!vertical)
3387 horizWidth = (dlgwidth - horizWidth) / 2; /* Now it's X offset */
3388 for (i = 0; i < numButtons; i++)
3389 {
3390 /* get end of this button. */
3391 for ( pend = pstart;
3392 *pend && (*pend != DLG_BUTTON_SEP);
3393 pend++)
3394 ;
3395
3396 if (*pend)
3397 *pend = '\0';
3398
3399 /*
3400 * old NOTE:
3401 * setting the BS_DEFPUSHBUTTON style doesn't work because Windows sets
3402 * the focus to the first tab-able button and in so doing makes that
3403 * the default!! Grrr. Workaround: Make the default button the only
3404 * one with WS_TABSTOP style. Means user can't tab between buttons, but
3405 * he/she can use arrow keys.
3406 *
3407 * new NOTE: BS_DEFPUSHBUTTON is required to be able to select the
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00003408 * right button when hitting <Enter>. E.g., for the ":confirm quit"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 * dialog. Also needed for when the textfield is the default control.
3410 * It appears to work now (perhaps not on Win95?).
3411 */
3412 if (vertical)
3413 {
3414 p = add_dialog_element(p,
3415 (i == dfltbutton
3416 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
3417 PixelToDialogX(DLG_VERT_PADDING_X),
3418 PixelToDialogY(buttonYpos /* TBK */
3419 + 2 * fontHeight * i),
3420 PixelToDialogX(dlgwidth - 2 * DLG_VERT_PADDING_X),
3421 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
3422 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, pstart);
3423 }
3424 else
3425 {
3426 p = add_dialog_element(p,
3427 (i == dfltbutton
3428 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
3429 PixelToDialogX(horizWidth + buttonPositions[i]),
3430 PixelToDialogY(buttonYpos), /* TBK */
3431 PixelToDialogX(buttonWidths[i]),
3432 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
3433 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, pstart);
3434 }
3435 pstart = pend + 1; /*next button*/
3436 }
3437 *pnumitems += numButtons;
3438
3439 /* Vim icon */
3440 p = add_dialog_element(p, SS_ICON,
3441 PixelToDialogX(dlgPaddingX),
3442 PixelToDialogY(dlgPaddingY),
3443 PixelToDialogX(DLG_ICON_WIDTH),
3444 PixelToDialogY(DLG_ICON_HEIGHT),
3445 DLG_NONBUTTON_CONTROL + 0, (WORD)0x0082,
3446 dlg_icons[type]);
3447
Bram Moolenaar748bf032005-02-02 23:04:36 +00003448 /* Dialog message */
3449 p = add_dialog_element(p, ES_LEFT|scroll_flag|ES_MULTILINE|ES_READONLY,
3450 PixelToDialogX(2 * dlgPaddingX + DLG_ICON_WIDTH),
3451 PixelToDialogY(dlgPaddingY),
3452 (WORD)(PixelToDialogX(messageWidth) + 1),
3453 PixelToDialogY(msgheight),
3454 DLG_NONBUTTON_CONTROL + 1, (WORD)0x0081, message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455
3456 /* Edit box */
3457 if (textfield != NULL)
3458 {
3459 p = add_dialog_element(p, ES_LEFT|ES_AUTOHSCROLL|WS_TABSTOP|WS_BORDER,
3460 PixelToDialogX(2 * dlgPaddingX),
3461 PixelToDialogY(2 * dlgPaddingY + msgheight),
3462 PixelToDialogX(dlgwidth - 4 * dlgPaddingX),
3463 PixelToDialogY(fontHeight + dlgPaddingY),
3464 DLG_NONBUTTON_CONTROL + 2, (WORD)0x0081, textfield);
3465 *pnumitems += 1;
3466 }
3467
3468 *pnumitems += 2;
3469
3470 SelectFont(hdc, oldFont);
3471 DeleteObject(font);
3472 ReleaseDC(hwnd, hdc);
3473
3474 /* Let the dialog_callback() function know which button to make default
3475 * If we have an edit box, make that the default. We also need to tell
3476 * dialog_callback() if this dialog contains an edit box or not. We do
3477 * this by setting s_textfield if it does.
3478 */
3479 if (textfield != NULL)
3480 {
3481 dialog_default_button = DLG_NONBUTTON_CONTROL + 2;
3482 s_textfield = textfield;
3483 }
3484 else
3485 {
3486 dialog_default_button = IDCANCEL + 1 + dfltbutton;
3487 s_textfield = NULL;
3488 }
3489
3490 /* show the dialog box modally and get a return value */
3491 nchar = (int)DialogBoxIndirect(
3492 s_hinst,
3493 (LPDLGTEMPLATE)pdlgtemplate,
3494 s_hwnd,
3495 (DLGPROC)dialog_callback);
3496
3497 LocalFree(LocalHandle(pdlgtemplate));
3498 vim_free(tbuffer);
3499 vim_free(buttonWidths);
3500 vim_free(buttonPositions);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003501 vim_free(ga.ga_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502
3503 /* Focus back to our window (for when MDI is used). */
3504 (void)SetFocus(s_hwnd);
3505
3506 return nchar;
3507}
3508
3509#endif /* FEAT_GUI_DIALOG */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003510
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511/*
3512 * Put a simple element (basic class) onto a dialog template in memory.
3513 * return a pointer to where the next item should be added.
3514 *
3515 * parameters:
3516 * lStyle = additional style flags
3517 * (be careful, NT3.51 & Win32s will ignore the new ones)
3518 * x,y = x & y positions IN DIALOG UNITS
3519 * w,h = width and height IN DIALOG UNITS
3520 * Id = ID used in messages
3521 * clss = class ID, e.g 0x0080 for a button, 0x0082 for a static
3522 * caption = usually text or resource name
3523 *
3524 * TODO: use the length information noted here to enable the dialog creation
3525 * routines to work out more exactly how much memory they need to alloc.
3526 */
3527 static PWORD
3528add_dialog_element(
3529 PWORD p,
3530 DWORD lStyle,
3531 WORD x,
3532 WORD y,
3533 WORD w,
3534 WORD h,
3535 WORD Id,
3536 WORD clss,
3537 const char *caption)
3538{
3539 int nchar;
3540
3541 p = lpwAlign(p); /* Align to dword boundary*/
3542 lStyle = lStyle | WS_VISIBLE | WS_CHILD;
3543 *p++ = LOWORD(lStyle);
3544 *p++ = HIWORD(lStyle);
3545 *p++ = 0; // LOWORD (lExtendedStyle)
3546 *p++ = 0; // HIWORD (lExtendedStyle)
3547 *p++ = x;
3548 *p++ = y;
3549 *p++ = w;
3550 *p++ = h;
3551 *p++ = Id; //9 or 10 words in all
3552
3553 *p++ = (WORD)0xffff;
3554 *p++ = clss; //2 more here
3555
3556 nchar = nCopyAnsiToWideChar(p, (LPSTR)caption); //strlen(caption)+1
3557 p += nchar;
3558
3559 *p++ = 0; // advance pointer over nExtraStuff WORD - 2 more
3560
3561 return p; //total = 15+ (strlen(caption)) words
3562 // = 30 + 2(strlen(caption) bytes reqd
3563}
3564
3565
3566/*
3567 * Helper routine. Take an input pointer, return closest pointer that is
3568 * aligned on a DWORD (4 byte) boundary. Taken from the Win32SDK samples.
3569 */
3570 static LPWORD
3571lpwAlign(
3572 LPWORD lpIn)
3573{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003574 long_u ul;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003576 ul = (long_u)lpIn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577 ul += 3;
3578 ul >>= 2;
3579 ul <<= 2;
3580 return (LPWORD)ul;
3581}
3582
3583/*
3584 * Helper routine. Takes second parameter as Ansi string, copies it to first
3585 * parameter as wide character (16-bits / char) string, and returns integer
3586 * number of wide characters (words) in string (including the trailing wide
3587 * char NULL). Partly taken from the Win32SDK samples.
3588 */
3589 static int
3590nCopyAnsiToWideChar(
3591 LPWORD lpWCStr,
3592 LPSTR lpAnsiIn)
3593{
3594 int nChar = 0;
3595#ifdef FEAT_MBYTE
3596 int len = lstrlen(lpAnsiIn) + 1; /* include NUL character */
3597 int i;
3598 WCHAR *wn;
3599
3600 if (enc_codepage == 0 && (int)GetACP() != enc_codepage)
3601 {
3602 /* Not a codepage, use our own conversion function. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003603 wn = enc_to_utf16(lpAnsiIn, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 if (wn != NULL)
3605 {
3606 wcscpy(lpWCStr, wn);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003607 nChar = (int)wcslen(wn) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 vim_free(wn);
3609 }
3610 }
3611 if (nChar == 0)
3612 /* Use Win32 conversion function. */
3613 nChar = MultiByteToWideChar(
3614 enc_codepage > 0 ? enc_codepage : CP_ACP,
3615 MB_PRECOMPOSED,
3616 lpAnsiIn, len,
3617 lpWCStr, len);
3618 for (i = 0; i < nChar; ++i)
3619 if (lpWCStr[i] == (WORD)'\t') /* replace tabs with spaces */
3620 lpWCStr[i] = (WORD)' ';
3621#else
3622 do
3623 {
3624 if (*lpAnsiIn == '\t')
3625 *lpWCStr++ = (WORD)' ';
3626 else
3627 *lpWCStr++ = (WORD)*lpAnsiIn;
3628 nChar++;
3629 } while (*lpAnsiIn++);
3630#endif
3631
3632 return nChar;
3633}
3634
3635
3636#ifdef FEAT_TEAROFF
3637/*
3638 * The callback function for all the modeless dialogs that make up the
3639 * "tearoff menus" Very simple - forward button presses (to fool Vim into
3640 * thinking its menus have been clicked), and go away when closed.
3641 */
3642 static LRESULT CALLBACK
3643tearoff_callback(
3644 HWND hwnd,
3645 UINT message,
3646 WPARAM wParam,
3647 LPARAM lParam)
3648{
3649 if (message == WM_INITDIALOG)
3650 return (TRUE);
3651
3652 /* May show the mouse pointer again. */
3653 HandleMouseHide(message, lParam);
3654
3655 if (message == WM_COMMAND)
3656 {
3657 if ((WORD)(LOWORD(wParam)) & 0x8000)
3658 {
3659 POINT mp;
3660 RECT rect;
3661
3662 if (GetCursorPos(&mp) && GetWindowRect(hwnd, &rect))
3663 {
3664 (void)TrackPopupMenu(
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003665 (HMENU)(long_u)(LOWORD(wParam) ^ 0x8000),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 TPM_LEFTALIGN | TPM_LEFTBUTTON,
3667 (int)rect.right - 8,
3668 (int)mp.y,
3669 (int)0, /*reserved param*/
3670 s_hwnd,
3671 NULL);
3672 /*
3673 * NOTE: The pop-up menu can eat the mouse up event.
3674 * We deal with this in normal.c.
3675 */
3676 }
3677 }
3678 else
3679 /* Pass on messages to the main Vim window */
3680 PostMessage(s_hwnd, WM_COMMAND, LOWORD(wParam), 0);
3681 /*
3682 * Give main window the focus back: this is so after
3683 * choosing a tearoff button you can start typing again
3684 * straight away.
3685 */
3686 (void)SetFocus(s_hwnd);
3687 return TRUE;
3688 }
3689 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
3690 {
3691 DestroyWindow(hwnd);
3692 return TRUE;
3693 }
3694
3695 /* When moved around, give main window the focus back. */
3696 if (message == WM_EXITSIZEMOVE)
3697 (void)SetActiveWindow(s_hwnd);
3698
3699 return FALSE;
3700}
3701#endif
3702
3703
3704/*
3705 * Decide whether to use the "new look" (small, non-bold font) or the "old
3706 * look" (big, clanky font) for dialogs, and work out a few values for use
3707 * later accordingly.
3708 */
3709 static void
3710get_dialog_font_metrics(void)
3711{
3712 HDC hdc;
3713 HFONT hfontTools = 0;
3714 DWORD dlgFontSize;
3715 SIZE size;
3716#ifdef USE_SYSMENU_FONT
3717 LOGFONT lfSysmenu;
3718#endif
3719
3720 s_usenewlook = FALSE;
3721
3722 /*
3723 * For NT3.51 and Win32s, we stick with the old look
3724 * because it matches everything else.
3725 */
3726 if (!is_winnt_3())
3727 {
3728#ifdef USE_SYSMENU_FONT
3729 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3730 hfontTools = CreateFontIndirect(&lfSysmenu);
3731 else
3732#endif
3733 hfontTools = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0,
3734 0, 0, 0, 0, VARIABLE_PITCH , DLG_FONT_NAME);
3735
3736 if (hfontTools)
3737 {
3738 hdc = GetDC(s_hwnd);
3739 SelectObject(hdc, hfontTools);
3740 /*
3741 * GetTextMetrics() doesn't return the right value in
3742 * tmAveCharWidth, so we have to figure out the dialog base units
3743 * ourselves.
3744 */
3745 GetTextExtentPoint(hdc,
3746 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
3747 52, &size);
3748 ReleaseDC(s_hwnd, hdc);
3749
3750 s_dlgfntwidth = (WORD)((size.cx / 26 + 1) / 2);
3751 s_dlgfntheight = (WORD)size.cy;
3752 s_usenewlook = TRUE;
3753 }
3754 }
3755
3756 if (!s_usenewlook)
3757 {
3758 dlgFontSize = GetDialogBaseUnits(); /* fall back to big old system*/
3759 s_dlgfntwidth = LOWORD(dlgFontSize);
3760 s_dlgfntheight = HIWORD(dlgFontSize);
3761 }
3762}
3763
3764#if defined(FEAT_MENU) && defined(FEAT_TEAROFF)
3765/*
3766 * Create a pseudo-"tearoff menu" based on the child
3767 * items of a given menu pointer.
3768 */
3769 static void
3770gui_mch_tearoff(
3771 char_u *title,
3772 vimmenu_T *menu,
3773 int initX,
3774 int initY)
3775{
3776 WORD *p, *pdlgtemplate, *pnumitems, *ptrueheight;
3777 int template_len;
3778 int nchar, textWidth, submenuWidth;
3779 DWORD lStyle;
3780 DWORD lExtendedStyle;
3781 WORD dlgwidth;
3782 WORD menuID;
3783 vimmenu_T *pmenu;
3784 vimmenu_T *the_menu = menu;
3785 HWND hwnd;
3786 HDC hdc;
3787 HFONT font, oldFont;
3788 int col, spaceWidth, len;
3789 int columnWidths[2];
3790 char_u *label, *text;
3791 int acLen = 0;
3792 int nameLen;
3793 int padding0, padding1, padding2 = 0;
3794 int sepPadding=0;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003795 int x;
3796 int y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797#ifdef USE_SYSMENU_FONT
3798 LOGFONT lfSysmenu;
3799 int use_lfSysmenu = FALSE;
3800#endif
3801
3802 /*
3803 * If this menu is already torn off, move it to the mouse position.
3804 */
3805 if (IsWindow(menu->tearoff_handle))
3806 {
3807 POINT mp;
3808 if (GetCursorPos((LPPOINT)&mp))
3809 {
3810 SetWindowPos(menu->tearoff_handle, NULL, mp.x, mp.y, 0, 0,
3811 SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER);
3812 }
3813 return;
3814 }
3815
3816 /*
3817 * Create a new tearoff.
3818 */
3819 if (*title == MNU_HIDDEN_CHAR)
3820 title++;
3821
3822 /* Allocate memory to store the dialog template. It's made bigger when
3823 * needed. */
3824 template_len = DLG_ALLOC_SIZE;
3825 pdlgtemplate = p = (WORD *)LocalAlloc(LPTR, template_len);
3826 if (p == NULL)
3827 return;
3828
3829 hwnd = GetDesktopWindow();
3830 hdc = GetWindowDC(hwnd);
3831#ifdef USE_SYSMENU_FONT
3832 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3833 {
3834 font = CreateFontIndirect(&lfSysmenu);
3835 use_lfSysmenu = TRUE;
3836 }
3837 else
3838#endif
3839 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3840 VARIABLE_PITCH , DLG_FONT_NAME);
3841 if (s_usenewlook)
3842 oldFont = SelectFont(hdc, font);
3843 else
3844 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
3845
3846 /* Calculate width of a single space. Used for padding columns to the
3847 * right width. */
3848 spaceWidth = GetTextWidth(hdc, " ", 1);
3849
3850 /* Figure out max width of the text column, the accelerator column and the
3851 * optional submenu column. */
3852 submenuWidth = 0;
3853 for (col = 0; col < 2; col++)
3854 {
3855 columnWidths[col] = 0;
3856 for (pmenu = menu->children; pmenu != NULL; pmenu = pmenu->next)
3857 {
3858 /* Use "dname" here to compute the width of the visible text. */
3859 text = (col == 0) ? pmenu->dname : pmenu->actext;
3860 if (text != NULL && *text != NUL)
3861 {
3862 textWidth = GetTextWidthEnc(hdc, text, (int)STRLEN(text));
3863 if (textWidth > columnWidths[col])
3864 columnWidths[col] = textWidth;
3865 }
3866 if (pmenu->children != NULL)
3867 submenuWidth = TEAROFF_COLUMN_PADDING * spaceWidth;
3868 }
3869 }
3870 if (columnWidths[1] == 0)
3871 {
3872 /* no accelerators */
3873 if (submenuWidth != 0)
3874 columnWidths[0] += submenuWidth;
3875 else
3876 columnWidths[0] += spaceWidth;
3877 }
3878 else
3879 {
3880 /* there is an accelerator column */
3881 columnWidths[0] += TEAROFF_COLUMN_PADDING * spaceWidth;
3882 columnWidths[1] += submenuWidth;
3883 }
3884
3885 /*
3886 * Now find the total width of our 'menu'.
3887 */
3888 textWidth = columnWidths[0] + columnWidths[1];
3889 if (submenuWidth != 0)
3890 {
3891 submenuWidth = GetTextWidth(hdc, TEAROFF_SUBMENU_LABEL,
3892 (int)STRLEN(TEAROFF_SUBMENU_LABEL));
3893 textWidth += submenuWidth;
3894 }
3895 dlgwidth = GetTextWidthEnc(hdc, title, (int)STRLEN(title));
3896 if (textWidth > dlgwidth)
3897 dlgwidth = textWidth;
3898 dlgwidth += 2 * TEAROFF_PADDING_X + TEAROFF_BUTTON_PAD_X;
3899
3900 /* W95 can't do thin dialogs, they look v. weird! */
3901 if (mch_windows95() && dlgwidth < TEAROFF_MIN_WIDTH)
3902 dlgwidth = TEAROFF_MIN_WIDTH;
3903
3904 /* start to fill in the dlgtemplate information. addressing by WORDs */
3905 if (s_usenewlook)
3906 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU |DS_SETFONT| WS_VISIBLE;
3907 else
3908 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU | WS_VISIBLE;
3909
3910 lExtendedStyle = WS_EX_TOOLWINDOW|WS_EX_STATICEDGE;
3911 *p++ = LOWORD(lStyle);
3912 *p++ = HIWORD(lStyle);
3913 *p++ = LOWORD(lExtendedStyle);
3914 *p++ = HIWORD(lExtendedStyle);
3915 pnumitems = p; /* save where the number of items must be stored */
3916 *p++ = 0; // NumberOfItems(will change later)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003917 gui_mch_getmouse(&x, &y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 if (initX == 0xffffL)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003919 *p++ = PixelToDialogX(x); // x
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 else
3921 *p++ = PixelToDialogX(initX); // x
3922 if (initY == 0xffffL)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003923 *p++ = PixelToDialogY(y); // y
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 else
3925 *p++ = PixelToDialogY(initY); // y
3926 *p++ = PixelToDialogX(dlgwidth); // cx
3927 ptrueheight = p;
3928 *p++ = 0; // dialog height: changed later anyway
3929 *p++ = 0; // Menu
3930 *p++ = 0; // Class
3931
3932 /* copy the title of the dialog */
3933 nchar = nCopyAnsiToWideChar(p, ((*title)
3934 ? (LPSTR)title
3935 : (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
3936 p += nchar;
3937
3938 if (s_usenewlook)
3939 {
3940 /* do the font, since DS_3DLOOK doesn't work properly */
3941#ifdef USE_SYSMENU_FONT
3942 if (use_lfSysmenu)
3943 {
3944 /* point size */
3945 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
3946 GetDeviceCaps(hdc, LOGPIXELSY));
3947 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
3948 }
3949 else
3950#endif
3951 {
3952 *p++ = DLG_FONT_POINT_SIZE; // point size
3953 nchar = nCopyAnsiToWideChar (p, TEXT(DLG_FONT_NAME));
3954 }
3955 p += nchar;
3956 }
3957
3958 /*
3959 * Loop over all the items in the menu.
3960 * But skip over the tearbar.
3961 */
3962 if (STRCMP(menu->children->name, TEAR_STRING) == 0)
3963 menu = menu->children->next;
3964 else
3965 menu = menu->children;
3966 for ( ; menu != NULL; menu = menu->next)
3967 {
3968 if (menu->modes == 0) /* this menu has just been deleted */
3969 continue;
3970 if (menu_is_separator(menu->dname))
3971 {
3972 sepPadding += 3;
3973 continue;
3974 }
3975
3976 /* Check if there still is plenty of room in the template. Make it
3977 * larger when needed. */
3978 if (((char *)p - (char *)pdlgtemplate) + 1000 > template_len)
3979 {
3980 WORD *newp;
3981
3982 newp = (WORD *)LocalAlloc(LPTR, template_len + 4096);
3983 if (newp != NULL)
3984 {
3985 template_len += 4096;
3986 mch_memmove(newp, pdlgtemplate,
3987 (char *)p - (char *)pdlgtemplate);
3988 p = newp + (p - pdlgtemplate);
3989 pnumitems = newp + (pnumitems - pdlgtemplate);
3990 ptrueheight = newp + (ptrueheight - pdlgtemplate);
3991 LocalFree(LocalHandle(pdlgtemplate));
3992 pdlgtemplate = newp;
3993 }
3994 }
3995
3996 /* Figure out minimal length of this menu label. Use "name" for the
3997 * actual text, "dname" for estimating the displayed size. "name"
3998 * has "&a" for mnemonic and includes the accelerator. */
3999 len = nameLen = (int)STRLEN(menu->name);
4000 padding0 = (columnWidths[0] - GetTextWidthEnc(hdc, menu->dname,
4001 (int)STRLEN(menu->dname))) / spaceWidth;
4002 len += padding0;
4003
4004 if (menu->actext != NULL)
4005 {
4006 acLen = (int)STRLEN(menu->actext);
4007 len += acLen;
4008 textWidth = GetTextWidthEnc(hdc, menu->actext, acLen);
4009 }
4010 else
4011 textWidth = 0;
4012 padding1 = (columnWidths[1] - textWidth) / spaceWidth;
4013 len += padding1;
4014
4015 if (menu->children == NULL)
4016 {
4017 padding2 = submenuWidth / spaceWidth;
4018 len += padding2;
4019 menuID = (WORD)(menu->id);
4020 }
4021 else
4022 {
4023 len += (int)STRLEN(TEAROFF_SUBMENU_LABEL);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004024 menuID = (WORD)((long_u)(menu->submenu_id) | (DWORD)0x8000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025 }
4026
4027 /* Allocate menu label and fill it in */
4028 text = label = alloc((unsigned)len + 1);
4029 if (label == NULL)
4030 break;
4031
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004032 vim_strncpy(text, menu->name, nameLen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 text = vim_strchr(text, TAB); /* stop at TAB before actext */
4034 if (text == NULL)
4035 text = label + nameLen; /* no actext, use whole name */
4036 while (padding0-- > 0)
4037 *text++ = ' ';
4038 if (menu->actext != NULL)
4039 {
4040 STRNCPY(text, menu->actext, acLen);
4041 text += acLen;
4042 }
4043 while (padding1-- > 0)
4044 *text++ = ' ';
4045 if (menu->children != NULL)
4046 {
4047 STRCPY(text, TEAROFF_SUBMENU_LABEL);
4048 text += STRLEN(TEAROFF_SUBMENU_LABEL);
4049 }
4050 else
4051 {
4052 while (padding2-- > 0)
4053 *text++ = ' ';
4054 }
4055 *text = NUL;
4056
4057 /*
4058 * BS_LEFT will just be ignored on Win32s/NT3.5x - on
4059 * W95/NT4 it makes the tear-off look more like a menu.
4060 */
4061 p = add_dialog_element(p,
4062 BS_PUSHBUTTON|BS_LEFT,
4063 (WORD)PixelToDialogX(TEAROFF_PADDING_X),
4064 (WORD)(sepPadding + 1 + 13 * (*pnumitems)),
4065 (WORD)PixelToDialogX(dlgwidth - 2 * TEAROFF_PADDING_X),
4066 (WORD)12,
4067 menuID, (WORD)0x0080, label);
4068 vim_free(label);
4069 (*pnumitems)++;
4070 }
4071
4072 *ptrueheight = (WORD)(sepPadding + 1 + 13 * (*pnumitems));
4073
4074
4075 /* show modelessly */
4076 the_menu->tearoff_handle = CreateDialogIndirect(
4077 s_hinst,
4078 (LPDLGTEMPLATE)pdlgtemplate,
4079 s_hwnd,
4080 (DLGPROC)tearoff_callback);
4081
4082 LocalFree(LocalHandle(pdlgtemplate));
4083 SelectFont(hdc, oldFont);
4084 DeleteObject(font);
4085 ReleaseDC(hwnd, hdc);
4086
4087 /*
4088 * Reassert ourselves as the active window. This is so that after creating
4089 * a tearoff, the user doesn't have to click with the mouse just to start
4090 * typing again!
4091 */
4092 (void)SetActiveWindow(s_hwnd);
4093
4094 /* make sure the right buttons are enabled */
4095 force_menu_update = TRUE;
4096}
4097#endif
4098
4099#if defined(FEAT_TOOLBAR) || defined(PROTO)
4100#include "gui_w32_rc.h"
4101
4102/* This not defined in older SDKs */
4103# ifndef TBSTYLE_FLAT
4104# define TBSTYLE_FLAT 0x0800
4105# endif
4106
4107/*
4108 * Create the toolbar, initially unpopulated.
4109 * (just like the menu, there are no defaults, it's all
4110 * set up through menu.vim)
4111 */
4112 static void
4113initialise_toolbar(void)
4114{
4115 InitCommonControls();
4116 s_toolbarhwnd = CreateToolbarEx(
4117 s_hwnd,
4118 WS_CHILD | TBSTYLE_TOOLTIPS | TBSTYLE_FLAT,
4119 4000, //any old big number
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00004120 31, //number of images in initial bitmap
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 s_hinst,
4122 IDR_TOOLBAR1, // id of initial bitmap
4123 NULL,
4124 0, // initial number of buttons
4125 TOOLBAR_BUTTON_WIDTH, //api guide is wrong!
4126 TOOLBAR_BUTTON_HEIGHT,
4127 TOOLBAR_BUTTON_WIDTH,
4128 TOOLBAR_BUTTON_HEIGHT,
4129 sizeof(TBBUTTON)
4130 );
4131
4132 gui_mch_show_toolbar(vim_strchr(p_go, GO_TOOLBAR) != NULL);
4133}
4134
4135 static int
4136get_toolbar_bitmap(vimmenu_T *menu)
4137{
4138 int i = -1;
4139
4140 /*
4141 * Check user bitmaps first, unless builtin is specified.
4142 */
4143 if (!is_winnt_3() && !menu->icon_builtin)
4144 {
4145 char_u fname[MAXPATHL];
4146 HANDLE hbitmap = NULL;
4147
4148 if (menu->iconfile != NULL)
4149 {
4150 gui_find_iconfile(menu->iconfile, fname, "bmp");
4151 hbitmap = LoadImage(
4152 NULL,
4153 fname,
4154 IMAGE_BITMAP,
4155 TOOLBAR_BUTTON_WIDTH,
4156 TOOLBAR_BUTTON_HEIGHT,
4157 LR_LOADFROMFILE |
4158 LR_LOADMAP3DCOLORS
4159 );
4160 }
4161
4162 /*
4163 * If the LoadImage call failed, or the "icon=" file
4164 * didn't exist or wasn't specified, try the menu name
4165 */
4166 if (hbitmap == NULL
4167 && (gui_find_bitmap(menu->name, fname, "bmp") == OK))
4168 hbitmap = LoadImage(
4169 NULL,
4170 fname,
4171 IMAGE_BITMAP,
4172 TOOLBAR_BUTTON_WIDTH,
4173 TOOLBAR_BUTTON_HEIGHT,
4174 LR_LOADFROMFILE |
4175 LR_LOADMAP3DCOLORS
4176 );
4177
4178 if (hbitmap != NULL)
4179 {
4180 TBADDBITMAP tbAddBitmap;
4181
4182 tbAddBitmap.hInst = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004183 tbAddBitmap.nID = (long_u)hbitmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184
4185 i = (int)SendMessage(s_toolbarhwnd, TB_ADDBITMAP,
4186 (WPARAM)1, (LPARAM)&tbAddBitmap);
4187 /* i will be set to -1 if it fails */
4188 }
4189 }
4190 if (i == -1 && menu->iconidx >= 0 && menu->iconidx < TOOLBAR_BITMAP_COUNT)
4191 i = menu->iconidx;
4192
4193 return i;
4194}
4195#endif
4196
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004197#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
4198 static void
4199initialise_tabline(void)
4200{
4201 InitCommonControls();
4202
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004203 s_tabhwnd = CreateWindow(WC_TABCONTROL, "Vim tabline",
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004204 WS_CHILD|TCS_FOCUSNEVER|TCS_TOOLTIPS,
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004205 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
4206 CW_USEDEFAULT, s_hwnd, NULL, s_hinst, NULL);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004207
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004208 gui.tabline_height = TABLINE_HEIGHT;
4209
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004210# ifdef USE_SYSMENU_FONT
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004211 set_tabline_font();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004212# endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004213}
4214#endif
4215
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216#if defined(FEAT_OLE) || defined(FEAT_EVAL) || defined(PROTO)
4217/*
4218 * Make the GUI window come to the foreground.
4219 */
4220 void
4221gui_mch_set_foreground(void)
4222{
4223 if (IsIconic(s_hwnd))
4224 SendMessage(s_hwnd, WM_SYSCOMMAND, SC_RESTORE, 0);
4225 SetForegroundWindow(s_hwnd);
4226}
4227#endif
4228
4229#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
4230 static void
4231dyn_imm_load(void)
4232{
Bram Moolenaarebbcb822010-10-23 14:02:54 +02004233 hLibImm = vimLoadLib("imm32.dll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 if (hLibImm == NULL)
4235 return;
4236
4237 pImmGetCompositionStringA
4238 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringA");
4239 pImmGetCompositionStringW
4240 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringW");
4241 pImmGetContext
4242 = (void *)GetProcAddress(hLibImm, "ImmGetContext");
4243 pImmAssociateContext
4244 = (void *)GetProcAddress(hLibImm, "ImmAssociateContext");
4245 pImmReleaseContext
4246 = (void *)GetProcAddress(hLibImm, "ImmReleaseContext");
4247 pImmGetOpenStatus
4248 = (void *)GetProcAddress(hLibImm, "ImmGetOpenStatus");
4249 pImmSetOpenStatus
4250 = (void *)GetProcAddress(hLibImm, "ImmSetOpenStatus");
4251 pImmGetCompositionFont
4252 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionFontA");
4253 pImmSetCompositionFont
4254 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionFontA");
4255 pImmSetCompositionWindow
4256 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionWindow");
4257 pImmGetConversionStatus
4258 = (void *)GetProcAddress(hLibImm, "ImmGetConversionStatus");
Bram Moolenaarca003e12006-03-17 23:19:38 +00004259 pImmSetConversionStatus
4260 = (void *)GetProcAddress(hLibImm, "ImmSetConversionStatus");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261
4262 if ( pImmGetCompositionStringA == NULL
4263 || pImmGetCompositionStringW == NULL
4264 || pImmGetContext == NULL
4265 || pImmAssociateContext == NULL
4266 || pImmReleaseContext == NULL
4267 || pImmGetOpenStatus == NULL
4268 || pImmSetOpenStatus == NULL
4269 || pImmGetCompositionFont == NULL
4270 || pImmSetCompositionFont == NULL
4271 || pImmSetCompositionWindow == NULL
Bram Moolenaarca003e12006-03-17 23:19:38 +00004272 || pImmGetConversionStatus == NULL
4273 || pImmSetConversionStatus == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 {
4275 FreeLibrary(hLibImm);
4276 hLibImm = NULL;
4277 pImmGetContext = NULL;
4278 return;
4279 }
4280
4281 return;
4282}
4283
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284#endif
4285
4286#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
4287
4288# ifdef FEAT_XPM_W32
4289# define IMAGE_XPM 100
4290# endif
4291
4292typedef struct _signicon_t
4293{
4294 HANDLE hImage;
4295 UINT uType;
4296#ifdef FEAT_XPM_W32
4297 HANDLE hShape; /* Mask bitmap handle */
4298#endif
4299} signicon_t;
4300
4301 void
4302gui_mch_drawsign(row, col, typenr)
4303 int row;
4304 int col;
4305 int typenr;
4306{
4307 signicon_t *sign;
4308 int x, y, w, h;
4309
4310 if (!gui.in_use || (sign = (signicon_t *)sign_get_image(typenr)) == NULL)
4311 return;
4312
4313 x = TEXT_X(col);
4314 y = TEXT_Y(row);
4315 w = gui.char_width * 2;
4316 h = gui.char_height;
4317 switch (sign->uType)
4318 {
4319 case IMAGE_BITMAP:
4320 {
4321 HDC hdcMem;
4322 HBITMAP hbmpOld;
4323
4324 hdcMem = CreateCompatibleDC(s_hdc);
4325 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hImage);
4326 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCCOPY);
4327 SelectObject(hdcMem, hbmpOld);
4328 DeleteDC(hdcMem);
4329 }
4330 break;
4331 case IMAGE_ICON:
4332 case IMAGE_CURSOR:
4333 DrawIconEx(s_hdc, x, y, (HICON)sign->hImage, w, h, 0, NULL, DI_NORMAL);
4334 break;
4335#ifdef FEAT_XPM_W32
4336 case IMAGE_XPM:
4337 {
4338 HDC hdcMem;
4339 HBITMAP hbmpOld;
4340
4341 hdcMem = CreateCompatibleDC(s_hdc);
4342 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hShape);
4343 /* Make hole */
4344 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCAND);
4345
4346 SelectObject(hdcMem, sign->hImage);
4347 /* Paint sign */
4348 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCPAINT);
4349 SelectObject(hdcMem, hbmpOld);
4350 DeleteDC(hdcMem);
4351 }
4352 break;
4353#endif
4354 }
4355}
4356
4357 static void
4358close_signicon_image(signicon_t *sign)
4359{
4360 if (sign)
4361 switch (sign->uType)
4362 {
4363 case IMAGE_BITMAP:
4364 DeleteObject((HGDIOBJ)sign->hImage);
4365 break;
4366 case IMAGE_CURSOR:
4367 DestroyCursor((HCURSOR)sign->hImage);
4368 break;
4369 case IMAGE_ICON:
4370 DestroyIcon((HICON)sign->hImage);
4371 break;
4372#ifdef FEAT_XPM_W32
4373 case IMAGE_XPM:
4374 DeleteObject((HBITMAP)sign->hImage);
4375 DeleteObject((HBITMAP)sign->hShape);
4376 break;
4377#endif
4378 }
4379}
4380
4381 void *
4382gui_mch_register_sign(signfile)
4383 char_u *signfile;
4384{
4385 signicon_t sign, *psign;
4386 char_u *ext;
4387
4388 if (is_winnt_3())
4389 {
4390 EMSG(_(e_signdata));
4391 return NULL;
4392 }
4393
4394 sign.hImage = NULL;
4395 ext = signfile + STRLEN(signfile) - 4; /* get extention */
4396 if (ext > signfile)
4397 {
4398 int do_load = 1;
4399
4400 if (!STRICMP(ext, ".bmp"))
4401 sign.uType = IMAGE_BITMAP;
4402 else if (!STRICMP(ext, ".ico"))
4403 sign.uType = IMAGE_ICON;
4404 else if (!STRICMP(ext, ".cur") || !STRICMP(ext, ".ani"))
4405 sign.uType = IMAGE_CURSOR;
4406 else
4407 do_load = 0;
4408
4409 if (do_load)
4410 sign.hImage = (HANDLE)LoadImage(NULL, signfile, sign.uType,
4411 gui.char_width * 2, gui.char_height,
4412 LR_LOADFROMFILE | LR_CREATEDIBSECTION);
4413#ifdef FEAT_XPM_W32
4414 if (!STRICMP(ext, ".xpm"))
4415 {
4416 sign.uType = IMAGE_XPM;
4417 LoadXpmImage(signfile, (HBITMAP *)&sign.hImage, (HBITMAP *)&sign.hShape);
4418 }
4419#endif
4420 }
4421
4422 psign = NULL;
4423 if (sign.hImage && (psign = (signicon_t *)alloc(sizeof(signicon_t)))
4424 != NULL)
4425 *psign = sign;
4426
4427 if (!psign)
4428 {
4429 if (sign.hImage)
4430 close_signicon_image(&sign);
4431 EMSG(_(e_signdata));
4432 }
4433 return (void *)psign;
4434
4435}
4436
4437 void
4438gui_mch_destroy_sign(sign)
4439 void *sign;
4440{
4441 if (sign)
4442 {
4443 close_signicon_image((signicon_t *)sign);
4444 vim_free(sign);
4445 }
4446}
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004447#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448
4449#if defined(FEAT_BEVAL) || defined(PROTO)
4450
4451/* BALLOON-EVAL IMPLEMENTATION FOR WINDOWS.
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00004452 * Added by Sergey Khorev <sergey.khorev@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 *
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004454 * The only reused thing is gui_beval.h and get_beval_info()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 * from gui_beval.c (note it uses x and y of the BalloonEval struct
4456 * to get current mouse position).
4457 *
4458 * Trying to use as more Windows services as possible, and as less
4459 * IE version as possible :)).
4460 *
4461 * 1) Don't create ToolTip in gui_mch_create_beval_area, only initialize
4462 * BalloonEval struct.
4463 * 2) Enable/Disable simply create/kill BalloonEval Timer
4464 * 3) When there was enough inactivity, timer procedure posts
4465 * async request to debugger
4466 * 4) gui_mch_post_balloon (invoked from netbeans.c) creates tooltip control
4467 * and performs some actions to show it ASAP
Bram Moolenaar446cb832008-06-24 21:56:24 +00004468 * 5) WM_NOTIFY:TTN_POP destroys created tooltip
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 */
4470
Bram Moolenaar45360022005-07-21 21:08:21 +00004471/*
4472 * determine whether installed Common Controls support multiline tooltips
4473 * (i.e. their version is >= 4.70
4474 */
4475 int
4476multiline_balloon_available(void)
4477{
4478 HINSTANCE hDll;
4479 static char comctl_dll[] = "comctl32.dll";
4480 static int multiline_tip = MAYBE;
4481
4482 if (multiline_tip != MAYBE)
4483 return multiline_tip;
4484
4485 hDll = GetModuleHandle(comctl_dll);
4486 if (hDll != NULL)
4487 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004488 DLLGETVERSIONPROC pGetVer;
4489 pGetVer = (DLLGETVERSIONPROC)GetProcAddress(hDll, "DllGetVersion");
Bram Moolenaar45360022005-07-21 21:08:21 +00004490
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004491 if (pGetVer != NULL)
4492 {
4493 DLLVERSIONINFO dvi;
4494 HRESULT hr;
Bram Moolenaar45360022005-07-21 21:08:21 +00004495
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004496 ZeroMemory(&dvi, sizeof(dvi));
4497 dvi.cbSize = sizeof(dvi);
Bram Moolenaar45360022005-07-21 21:08:21 +00004498
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004499 hr = (*pGetVer)(&dvi);
Bram Moolenaar45360022005-07-21 21:08:21 +00004500
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004501 if (SUCCEEDED(hr)
Bram Moolenaar45360022005-07-21 21:08:21 +00004502 && (dvi.dwMajorVersion > 4
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004503 || (dvi.dwMajorVersion == 4
4504 && dvi.dwMinorVersion >= 70)))
Bram Moolenaar45360022005-07-21 21:08:21 +00004505 {
4506 multiline_tip = TRUE;
4507 return multiline_tip;
4508 }
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004509 }
Bram Moolenaar45360022005-07-21 21:08:21 +00004510 else
4511 {
4512 /* there is chance we have ancient CommCtl 4.70
4513 which doesn't export DllGetVersion */
4514 DWORD dwHandle = 0;
4515 DWORD len = GetFileVersionInfoSize(comctl_dll, &dwHandle);
4516 if (len > 0)
4517 {
4518 VS_FIXEDFILEINFO *ver;
4519 UINT vlen = 0;
4520 void *data = alloc(len);
4521
4522 if (data != NULL
4523 && GetFileVersionInfo(comctl_dll, 0, len, data)
4524 && VerQueryValue(data, "\\", (void **)&ver, &vlen)
4525 && vlen
4526 && HIWORD(ver->dwFileVersionMS) > 4
4527 || (HIWORD(ver->dwFileVersionMS) == 4
4528 && LOWORD(ver->dwFileVersionMS) >= 70))
4529 {
4530 vim_free(data);
4531 multiline_tip = TRUE;
4532 return multiline_tip;
4533 }
4534 vim_free(data);
4535 }
4536 }
4537 }
4538 multiline_tip = FALSE;
4539 return multiline_tip;
4540}
4541
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542 static void
4543make_tooltip(beval, text, pt)
4544 BalloonEval *beval;
4545 char *text;
4546 POINT pt;
4547{
Bram Moolenaar45360022005-07-21 21:08:21 +00004548 TOOLINFO *pti;
4549 int ToolInfoSize;
4550
4551 if (multiline_balloon_available() == TRUE)
4552 ToolInfoSize = sizeof(TOOLINFO_NEW);
4553 else
4554 ToolInfoSize = sizeof(TOOLINFO);
4555
4556 pti = (TOOLINFO *)alloc(ToolInfoSize);
4557 if (pti == NULL)
4558 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559
4560 beval->balloon = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS,
4561 NULL, WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,
4562 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
4563 beval->target, NULL, s_hinst, NULL);
4564
4565 SetWindowPos(beval->balloon, HWND_TOPMOST, 0, 0, 0, 0,
4566 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
4567
Bram Moolenaar45360022005-07-21 21:08:21 +00004568 pti->cbSize = ToolInfoSize;
4569 pti->uFlags = TTF_SUBCLASS;
4570 pti->hwnd = beval->target;
4571 pti->hinst = 0; /* Don't use string resources */
4572 pti->uId = ID_BEVAL_TOOLTIP;
4573
4574 if (multiline_balloon_available() == TRUE)
4575 {
4576 RECT rect;
4577 TOOLINFO_NEW *ptin = (TOOLINFO_NEW *)pti;
4578 pti->lpszText = LPSTR_TEXTCALLBACK;
4579 ptin->lParam = (LPARAM)text;
4580 if (GetClientRect(s_textArea, &rect)) /* switch multiline tooltips on */
4581 SendMessage(beval->balloon, TTM_SETMAXTIPWIDTH, 0,
4582 (LPARAM)rect.right);
4583 }
4584 else
4585 pti->lpszText = text; /* do this old way */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586
4587 /* Limit ballooneval bounding rect to CursorPos neighbourhood */
Bram Moolenaar45360022005-07-21 21:08:21 +00004588 pti->rect.left = pt.x - 3;
4589 pti->rect.top = pt.y - 3;
4590 pti->rect.right = pt.x + 3;
4591 pti->rect.bottom = pt.y + 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592
Bram Moolenaar45360022005-07-21 21:08:21 +00004593 SendMessage(beval->balloon, TTM_ADDTOOL, 0, (LPARAM)pti);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 /* Make tooltip appear sooner */
4595 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_INITIAL, 10);
Bram Moolenaarb52e5322008-01-05 12:15:52 +00004596 /* I've performed some tests and it seems the longest possible life time
4597 * of tooltip is 30 seconds */
4598 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_AUTOPOP, 30000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 /*
4600 * HACK: force tooltip to appear, because it'll not appear until
4601 * first mouse move. D*mn M$
Bram Moolenaarb52e5322008-01-05 12:15:52 +00004602 * Amazingly moving (2, 2) and then (-1, -1) the mouse doesn't move.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603 */
Bram Moolenaarb52e5322008-01-05 12:15:52 +00004604 mouse_event(MOUSEEVENTF_MOVE, 2, 2, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605 mouse_event(MOUSEEVENTF_MOVE, (DWORD)-1, (DWORD)-1, 0, 0);
Bram Moolenaar45360022005-07-21 21:08:21 +00004606 vim_free(pti);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607}
4608
4609 static void
4610delete_tooltip(beval)
4611 BalloonEval *beval;
4612{
4613 DestroyWindow(beval->balloon);
4614}
4615
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004616/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 static VOID CALLBACK
4618BevalTimerProc(hwnd, uMsg, idEvent, dwTime)
4619 HWND hwnd;
4620 UINT uMsg;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004621 UINT_PTR idEvent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622 DWORD dwTime;
4623{
4624 POINT pt;
4625 RECT rect;
4626
4627 if (cur_beval == NULL || cur_beval->showState == ShS_SHOWING || !p_beval)
4628 return;
4629
4630 GetCursorPos(&pt);
4631 if (WindowFromPoint(pt) != s_textArea)
4632 return;
4633
4634 ScreenToClient(s_textArea, &pt);
4635 GetClientRect(s_textArea, &rect);
4636 if (!PtInRect(&rect, pt))
4637 return;
4638
4639 if (LastActivity > 0
4640 && (dwTime - LastActivity) >= (DWORD)p_bdlay
4641 && (cur_beval->showState != ShS_PENDING
4642 || abs(cur_beval->x - pt.x) > 3
4643 || abs(cur_beval->y - pt.y) > 3))
4644 {
4645 /* Pointer resting in one place long enough, it's time to show
4646 * the tooltip. */
4647 cur_beval->showState = ShS_PENDING;
4648 cur_beval->x = pt.x;
4649 cur_beval->y = pt.y;
4650
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004651 // TRACE0("BevalTimerProc: sending request");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652
4653 if (cur_beval->msgCB != NULL)
4654 (*cur_beval->msgCB)(cur_beval, 0);
4655 }
4656}
4657
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004658/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 void
4660gui_mch_disable_beval_area(beval)
4661 BalloonEval *beval;
4662{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004663 // TRACE0("gui_mch_disable_beval_area {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 KillTimer(s_textArea, BevalTimerId);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004665 // TRACE0("gui_mch_disable_beval_area }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666}
4667
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004668/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 void
4670gui_mch_enable_beval_area(beval)
4671 BalloonEval *beval;
4672{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004673 // TRACE0("gui_mch_enable_beval_area |||");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 if (beval == NULL)
4675 return;
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004676 // TRACE0("gui_mch_enable_beval_area {{{");
Bram Moolenaar167632f2010-05-26 21:42:54 +02004677 BevalTimerId = SetTimer(s_textArea, 0, (UINT)(p_bdlay / 2), BevalTimerProc);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004678 // TRACE0("gui_mch_enable_beval_area }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679}
4680
4681 void
4682gui_mch_post_balloon(beval, mesg)
4683 BalloonEval *beval;
4684 char_u *mesg;
4685{
4686 POINT pt;
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004687 // TRACE0("gui_mch_post_balloon {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 if (beval->showState == ShS_SHOWING)
4689 return;
4690 GetCursorPos(&pt);
4691 ScreenToClient(s_textArea, &pt);
4692
4693 if (abs(beval->x - pt.x) < 3 && abs(beval->y - pt.y) < 3)
4694 /* cursor is still here */
4695 {
4696 gui_mch_disable_beval_area(cur_beval);
4697 beval->showState = ShS_SHOWING;
4698 make_tooltip(beval, mesg, pt);
4699 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004700 // TRACE0("gui_mch_post_balloon }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701}
4702
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004703/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 BalloonEval *
4705gui_mch_create_beval_area(target, mesg, mesgCB, clientData)
4706 void *target; /* ignored, always use s_textArea */
4707 char_u *mesg;
4708 void (*mesgCB)__ARGS((BalloonEval *, int));
4709 void *clientData;
4710{
4711 /* partially stolen from gui_beval.c */
4712 BalloonEval *beval;
4713
4714 if (mesg != NULL && mesgCB != NULL)
4715 {
4716 EMSG(_("E232: Cannot create BalloonEval with both message and callback"));
4717 return NULL;
4718 }
4719
4720 beval = (BalloonEval *)alloc(sizeof(BalloonEval));
4721 if (beval != NULL)
4722 {
4723 beval->target = s_textArea;
4724 beval->balloon = NULL;
4725
4726 beval->showState = ShS_NEUTRAL;
4727 beval->x = 0;
4728 beval->y = 0;
4729 beval->msg = mesg;
4730 beval->msgCB = mesgCB;
4731 beval->clientData = clientData;
4732
4733 InitCommonControls();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 cur_beval = beval;
4735
4736 if (p_beval)
4737 gui_mch_enable_beval_area(beval);
4738
4739 }
4740 return beval;
4741}
4742
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004743/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 static void
Bram Moolenaar442b4222010-05-24 21:34:22 +02004745Handle_WM_Notify(HWND hwnd, LPNMHDR pnmh)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746{
4747 if (pnmh->idFrom != ID_BEVAL_TOOLTIP) /* it is not our tooltip */
4748 return;
4749
4750 if (cur_beval != NULL)
4751 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004752 switch (pnmh->code)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004754 case TTN_SHOW:
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004755 // TRACE0("TTN_SHOW {{{");
4756 // TRACE0("TTN_SHOW }}}");
Bram Moolenaar45360022005-07-21 21:08:21 +00004757 break;
4758 case TTN_POP: /* Before tooltip disappear */
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004759 // TRACE0("TTN_POP {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 delete_tooltip(cur_beval);
4761 gui_mch_enable_beval_area(cur_beval);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004762 // TRACE0("TTN_POP }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763
4764 cur_beval->showState = ShS_NEUTRAL;
Bram Moolenaar45360022005-07-21 21:08:21 +00004765 break;
4766 case TTN_GETDISPINFO:
Bram Moolenaar6c9176d2008-01-03 19:45:15 +00004767 {
4768 /* if you get there then we have new common controls */
4769 NMTTDISPINFO_NEW *info = (NMTTDISPINFO_NEW *)pnmh;
4770 info->lpszText = (LPSTR)info->lParam;
4771 info->uFlags |= TTF_DI_SETITEM;
4772 }
Bram Moolenaar45360022005-07-21 21:08:21 +00004773 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 }
4775 }
4776}
4777
4778 static void
4779TrackUserActivity(UINT uMsg)
4780{
4781 if ((uMsg >= WM_MOUSEFIRST && uMsg <= WM_MOUSELAST)
4782 || (uMsg >= WM_KEYFIRST && uMsg <= WM_KEYLAST))
4783 LastActivity = GetTickCount();
4784}
4785
4786 void
4787gui_mch_destroy_beval_area(beval)
4788 BalloonEval *beval;
4789{
4790 vim_free(beval);
4791}
4792#endif /* FEAT_BEVAL */
4793
4794#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
4795/*
4796 * We have multiple signs to draw at the same location. Draw the
4797 * multi-sign indicator (down-arrow) instead. This is the Win32 version.
4798 */
4799 void
4800netbeans_draw_multisign_indicator(int row)
4801{
4802 int i;
4803 int y;
4804 int x;
4805
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004806 if (!netbeans_active())
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004807 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004808
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 x = 0;
4810 y = TEXT_Y(row);
4811
4812 for (i = 0; i < gui.char_height - 3; i++)
4813 SetPixel(s_hdc, x+2, y++, gui.currFgColor);
4814
4815 SetPixel(s_hdc, x+0, y, gui.currFgColor);
4816 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4817 SetPixel(s_hdc, x+4, y++, gui.currFgColor);
4818 SetPixel(s_hdc, x+1, y, gui.currFgColor);
4819 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4820 SetPixel(s_hdc, x+3, y++, gui.currFgColor);
4821 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4822}
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004823
4824/*
4825 * Initialize the Winsock dll.
4826 */
4827 void
4828netbeans_init_winsock()
4829{
4830 WSADATA wsaData;
4831 int wsaerr;
4832
4833 if (WSInitialized)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004834 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004835
4836 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
4837 if (wsaerr == 0)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004838 WSInitialized = TRUE;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004839}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840#endif