blob: af84f729aace315db583752940c60bfad72de4db [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 Moolenaar551dbcc2006-04-25 22:13:59 +0000186#if _MSC_VER < 1300
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 Moolenaar8424a622006-04-19 21:23:36 +0000189# define UINT_PTR UINT
190#endif
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000191
192static void make_tooltip __ARGS((BalloonEval *beval, char *text, POINT pt));
193static void delete_tooltip __ARGS((BalloonEval *beval));
194static VOID CALLBACK BevalTimerProc __ARGS((HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime));
195
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196static BalloonEval *cur_beval = NULL;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000197static UINT_PTR BevalTimerId = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198static DWORD LastActivity = 0;
Bram Moolenaar45360022005-07-21 21:08:21 +0000199
200/*
201 * excerpts from headers since this may not be presented
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000202 * in the extremely old compilers
Bram Moolenaar45360022005-07-21 21:08:21 +0000203 */
204#include <pshpack1.h>
205
206typedef struct _DllVersionInfo
207{
208 DWORD cbSize;
209 DWORD dwMajorVersion;
210 DWORD dwMinorVersion;
211 DWORD dwBuildNumber;
212 DWORD dwPlatformID;
213} DLLVERSIONINFO;
214
Bram Moolenaar281daf62009-12-24 15:11:40 +0000215#include <poppack.h>
216
Bram Moolenaar45360022005-07-21 21:08:21 +0000217typedef struct tagTOOLINFOA_NEW
218{
219 UINT cbSize;
220 UINT uFlags;
221 HWND hwnd;
Bram Moolenaar281daf62009-12-24 15:11:40 +0000222 UINT_PTR uId;
Bram Moolenaar45360022005-07-21 21:08:21 +0000223 RECT rect;
224 HINSTANCE hinst;
225 LPSTR lpszText;
226 LPARAM lParam;
227} TOOLINFO_NEW;
228
229typedef struct tagNMTTDISPINFO_NEW
230{
231 NMHDR hdr;
Bram Moolenaar281daf62009-12-24 15:11:40 +0000232 LPSTR lpszText;
Bram Moolenaar45360022005-07-21 21:08:21 +0000233 char szText[80];
234 HINSTANCE hinst;
235 UINT uFlags;
236 LPARAM lParam;
237} NMTTDISPINFO_NEW;
238
Bram Moolenaar45360022005-07-21 21:08:21 +0000239typedef HRESULT (WINAPI* DLLGETVERSIONPROC)(DLLVERSIONINFO *);
240#ifndef TTM_SETMAXTIPWIDTH
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000241# define TTM_SETMAXTIPWIDTH (WM_USER+24)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242#endif
243
Bram Moolenaar45360022005-07-21 21:08:21 +0000244#ifndef TTF_DI_SETITEM
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000245# define TTF_DI_SETITEM 0x8000
Bram Moolenaar45360022005-07-21 21:08:21 +0000246#endif
247
248#ifndef TTN_GETDISPINFO
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000249# define TTN_GETDISPINFO (TTN_FIRST - 0)
Bram Moolenaar45360022005-07-21 21:08:21 +0000250#endif
251
252#endif /* defined(FEAT_BEVAL) */
253
Bram Moolenaar2c7a7632007-05-10 18:19:11 +0000254#if defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
255/* Older MSVC compilers don't have LPNMTTDISPINFO[AW] thus we need to define
256 * it here if LPNMTTDISPINFO isn't defined.
257 * MingW doesn't define LPNMTTDISPINFO but typedefs it. Thus we need to check
258 * _MSC_VER. */
259# if !defined(LPNMTTDISPINFO) && defined(_MSC_VER)
260typedef struct tagNMTTDISPINFOA {
261 NMHDR hdr;
262 LPSTR lpszText;
263 char szText[80];
264 HINSTANCE hinst;
265 UINT uFlags;
266 LPARAM lParam;
267} NMTTDISPINFOA, *LPNMTTDISPINFOA;
268# define LPNMTTDISPINFO LPNMTTDISPINFOA
269
270# ifdef FEAT_MBYTE
271typedef struct tagNMTTDISPINFOW {
272 NMHDR hdr;
273 LPWSTR lpszText;
274 WCHAR szText[80];
275 HINSTANCE hinst;
276 UINT uFlags;
277 LPARAM lParam;
278} NMTTDISPINFOW, *LPNMTTDISPINFOW;
279# endif
280# endif
281#endif
282
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000283#ifndef TTN_GETDISPINFOW
284# define TTN_GETDISPINFOW (TTN_FIRST - 10)
285#endif
286
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287/* Local variables: */
288
289#ifdef FEAT_MENU
290static UINT s_menu_id = 100;
291
292/*
293 * Use the system font for dialogs and tear-off menus. Remove this line to
294 * use DLG_FONT_NAME.
295 */
296# define USE_SYSMENU_FONT
297#endif
298
299#define VIM_NAME "vim"
300#define VIM_CLASS "Vim"
301#define VIM_CLASSW L"Vim"
302
303/* Initial size for the dialog template. For gui_mch_dialog() it's fixed,
304 * thus there should be room for every dialog. For tearoffs it's made bigger
305 * when needed. */
306#define DLG_ALLOC_SIZE 16 * 1024
307
308/*
309 * stuff for dialogs, menus, tearoffs etc.
310 */
311static LRESULT APIENTRY dialog_callback(HWND, UINT, WPARAM, LPARAM);
312static LRESULT APIENTRY tearoff_callback(HWND, UINT, WPARAM, LPARAM);
313static PWORD
314add_dialog_element(
315 PWORD p,
316 DWORD lStyle,
317 WORD x,
318 WORD y,
319 WORD w,
320 WORD h,
321 WORD Id,
322 WORD clss,
323 const char *caption);
324static LPWORD lpwAlign(LPWORD);
325static int nCopyAnsiToWideChar(LPWORD, LPSTR);
326static void gui_mch_tearoff(char_u *title, vimmenu_T *menu, int initX, int initY);
327static void get_dialog_font_metrics(void);
328
329static int dialog_default_button = -1;
330
331/* Intellimouse support */
332static int mouse_scroll_lines = 0;
333static UINT msh_msgmousewheel = 0;
334
335static int s_usenewlook; /* emulate W95/NT4 non-bold dialogs */
336#ifdef FEAT_TOOLBAR
337static void initialise_toolbar(void);
338static int get_toolbar_bitmap(vimmenu_T *menu);
339#endif
340
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000341#ifdef FEAT_GUI_TABLINE
342static void initialise_tabline(void);
343#endif
344
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345#ifdef FEAT_MBYTE_IME
346static LRESULT _OnImeComposition(HWND hwnd, WPARAM dbcs, LPARAM param);
347static char_u *GetResultStr(HWND hwnd, int GCS, int *lenp);
348#endif
349#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
350# ifdef NOIME
351typedef struct tagCOMPOSITIONFORM {
352 DWORD dwStyle;
353 POINT ptCurrentPos;
354 RECT rcArea;
355} COMPOSITIONFORM, *PCOMPOSITIONFORM, NEAR *NPCOMPOSITIONFORM, FAR *LPCOMPOSITIONFORM;
356typedef HANDLE HIMC;
357# endif
358
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000359static HINSTANCE hLibImm = NULL;
360static LONG (WINAPI *pImmGetCompositionStringA)(HIMC, DWORD, LPVOID, DWORD);
361static LONG (WINAPI *pImmGetCompositionStringW)(HIMC, DWORD, LPVOID, DWORD);
362static HIMC (WINAPI *pImmGetContext)(HWND);
363static HIMC (WINAPI *pImmAssociateContext)(HWND, HIMC);
364static BOOL (WINAPI *pImmReleaseContext)(HWND, HIMC);
365static BOOL (WINAPI *pImmGetOpenStatus)(HIMC);
366static BOOL (WINAPI *pImmSetOpenStatus)(HIMC, BOOL);
367static BOOL (WINAPI *pImmGetCompositionFont)(HIMC, LPLOGFONTA);
368static BOOL (WINAPI *pImmSetCompositionFont)(HIMC, LPLOGFONTA);
369static BOOL (WINAPI *pImmSetCompositionWindow)(HIMC, LPCOMPOSITIONFORM);
370static BOOL (WINAPI *pImmGetConversionStatus)(HIMC, LPDWORD, LPDWORD);
Bram Moolenaarca003e12006-03-17 23:19:38 +0000371static BOOL (WINAPI *pImmSetConversionStatus)(HIMC, DWORD, DWORD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372static void dyn_imm_load(void);
373#else
374# define pImmGetCompositionStringA ImmGetCompositionStringA
375# define pImmGetCompositionStringW ImmGetCompositionStringW
376# define pImmGetContext ImmGetContext
377# define pImmAssociateContext ImmAssociateContext
378# define pImmReleaseContext ImmReleaseContext
379# define pImmGetOpenStatus ImmGetOpenStatus
380# define pImmSetOpenStatus ImmSetOpenStatus
381# define pImmGetCompositionFont ImmGetCompositionFontA
382# define pImmSetCompositionFont ImmSetCompositionFontA
383# define pImmSetCompositionWindow ImmSetCompositionWindow
384# define pImmGetConversionStatus ImmGetConversionStatus
Bram Moolenaarca003e12006-03-17 23:19:38 +0000385# define pImmSetConversionStatus ImmSetConversionStatus
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386#endif
387
388#ifndef ETO_IGNORELANGUAGE
389# define ETO_IGNORELANGUAGE 0x1000
390#endif
391
392/* multi monitor support */
393typedef struct _MONITORINFOstruct
394{
395 DWORD cbSize;
396 RECT rcMonitor;
397 RECT rcWork;
398 DWORD dwFlags;
399} _MONITORINFO;
400
401typedef HANDLE _HMONITOR;
402typedef _HMONITOR (WINAPI *TMonitorFromWindow)(HWND, DWORD);
403typedef BOOL (WINAPI *TGetMonitorInfo)(_HMONITOR, _MONITORINFO *);
404
405static TMonitorFromWindow pMonitorFromWindow = NULL;
406static TGetMonitorInfo pGetMonitorInfo = NULL;
407static HANDLE user32_lib = NULL;
408#ifdef FEAT_NETBEANS_INTG
409int WSInitialized = FALSE; /* WinSock is initialized */
410#endif
411/*
412 * Return TRUE when running under Windows NT 3.x or Win32s, both of which have
413 * less fancy GUI APIs.
414 */
415 static int
416is_winnt_3(void)
417{
418 return ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
419 && os_version.dwMajorVersion == 3)
420 || (os_version.dwPlatformId == VER_PLATFORM_WIN32s));
421}
422
423/*
424 * Return TRUE when running under Win32s.
425 */
426 int
427gui_is_win32s(void)
428{
429 return (os_version.dwPlatformId == VER_PLATFORM_WIN32s);
430}
431
432#ifdef FEAT_MENU
433/*
434 * Figure out how high the menu bar is at the moment.
435 */
436 static int
437gui_mswin_get_menu_height(
438 int fix_window) /* If TRUE, resize window if menu height changed */
439{
440 static int old_menu_height = -1;
441
442 RECT rc1, rc2;
443 int num;
444 int menu_height;
445
446 if (gui.menu_is_active)
447 num = GetMenuItemCount(s_menuBar);
448 else
449 num = 0;
450
451 if (num == 0)
452 menu_height = 0;
453 else
454 {
455 if (is_winnt_3()) /* for NT 3.xx */
456 {
457 if (gui.starting)
458 menu_height = GetSystemMetrics(SM_CYMENU);
459 else
460 {
461 RECT r1, r2;
462 int frameht = GetSystemMetrics(SM_CYFRAME);
463 int capht = GetSystemMetrics(SM_CYCAPTION);
464
465 /* get window rect of s_hwnd
466 * get client rect of s_hwnd
467 * get cap height
468 * subtract from window rect, the sum of client height,
469 * (if not maximized)frame thickness, and caption height.
470 */
471 GetWindowRect(s_hwnd, &r1);
472 GetClientRect(s_hwnd, &r2);
473 menu_height = r1.bottom - r1.top - (r2.bottom - r2.top
474 + 2 * frameht * (!IsZoomed(s_hwnd)) + capht);
475 }
476 }
477 else /* win95 and variants (NT 4.0, I guess) */
478 {
479 /*
480 * In case 'lines' is set in _vimrc/_gvimrc window width doesn't
481 * seem to have been set yet, so menu wraps in default window
482 * width which is very narrow. Instead just return height of a
483 * single menu item. Will still be wrong when the menu really
484 * should wrap over more than one line.
485 */
486 GetMenuItemRect(s_hwnd, s_menuBar, 0, &rc1);
487 if (gui.starting)
488 menu_height = rc1.bottom - rc1.top + 1;
489 else
490 {
491 GetMenuItemRect(s_hwnd, s_menuBar, num - 1, &rc2);
492 menu_height = rc2.bottom - rc1.top + 1;
493 }
494 }
495 }
496
497 if (fix_window && menu_height != old_menu_height)
498 {
499 old_menu_height = menu_height;
Bram Moolenaarafa24992006-03-27 20:58:26 +0000500 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 }
502
503 return menu_height;
504}
505#endif /*FEAT_MENU*/
506
507
508/*
509 * Setup for the Intellimouse
510 */
511 static void
512init_mouse_wheel(void)
513{
514
515#ifndef SPI_GETWHEELSCROLLLINES
516# define SPI_GETWHEELSCROLLLINES 104
517#endif
Bram Moolenaare7566042005-06-17 22:00:15 +0000518#ifndef SPI_SETWHEELSCROLLLINES
519# define SPI_SETWHEELSCROLLLINES 105
520#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521
522#define VMOUSEZ_CLASSNAME "MouseZ" /* hidden wheel window class */
523#define VMOUSEZ_TITLE "Magellan MSWHEEL" /* hidden wheel window title */
524#define VMSH_MOUSEWHEEL "MSWHEEL_ROLLMSG"
525#define VMSH_SCROLL_LINES "MSH_SCROLL_LINES_MSG"
526
527 HWND hdl_mswheel;
528 UINT msh_msgscrolllines;
529
530 msh_msgmousewheel = 0;
531 mouse_scroll_lines = 3; /* reasonable default */
532
533 if ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
534 && os_version.dwMajorVersion >= 4)
535 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
536 && ((os_version.dwMajorVersion == 4
537 && os_version.dwMinorVersion >= 10)
538 || os_version.dwMajorVersion >= 5)))
539 {
540 /* if NT 4.0+ (or Win98) get scroll lines directly from system */
541 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
542 &mouse_scroll_lines, 0);
543 }
544 else if (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
545 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
546 && os_version.dwMajorVersion < 4))
547 { /*
548 * If Win95 or NT 3.51,
549 * try to find the hidden point32 window.
550 */
551 hdl_mswheel = FindWindow(VMOUSEZ_CLASSNAME, VMOUSEZ_TITLE);
552 if (hdl_mswheel)
553 {
554 msh_msgscrolllines = RegisterWindowMessage(VMSH_SCROLL_LINES);
555 if (msh_msgscrolllines)
556 {
557 mouse_scroll_lines = (int)SendMessage(hdl_mswheel,
558 msh_msgscrolllines, 0, 0);
559 msh_msgmousewheel = RegisterWindowMessage(VMSH_MOUSEWHEEL);
560 }
561 }
562 }
563}
564
565
566/* Intellimouse wheel handler */
567 static void
568_OnMouseWheel(
569 HWND hwnd,
570 short zDelta)
571{
572/* Treat a mouse wheel event as if it were a scroll request */
573 int i;
574 int size;
575 HWND hwndCtl;
576
577 if (curwin->w_scrollbars[SBAR_RIGHT].id != 0)
578 {
579 hwndCtl = curwin->w_scrollbars[SBAR_RIGHT].id;
580 size = curwin->w_scrollbars[SBAR_RIGHT].size;
581 }
582 else if (curwin->w_scrollbars[SBAR_LEFT].id != 0)
583 {
584 hwndCtl = curwin->w_scrollbars[SBAR_LEFT].id;
585 size = curwin->w_scrollbars[SBAR_LEFT].size;
586 }
587 else
588 return;
589
590 size = curwin->w_height;
591 if (mouse_scroll_lines == 0)
592 init_mouse_wheel();
593
594 if (mouse_scroll_lines > 0
595 && mouse_scroll_lines < (size > 2 ? size - 2 : 1))
596 {
597 for (i = mouse_scroll_lines; i > 0; --i)
598 _OnScroll(hwnd, hwndCtl, zDelta >= 0 ? SB_LINEUP : SB_LINEDOWN, 0);
599 }
600 else
601 _OnScroll(hwnd, hwndCtl, zDelta >= 0 ? SB_PAGEUP : SB_PAGEDOWN, 0);
602}
603
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000604#ifdef USE_SYSMENU_FONT
605/*
606 * Get Menu Font.
607 * Return OK or FAIL.
608 */
609 static int
610gui_w32_get_menu_font(LOGFONT *lf)
611{
612 NONCLIENTMETRICS nm;
613
614 nm.cbSize = sizeof(NONCLIENTMETRICS);
615 if (!SystemParametersInfo(
616 SPI_GETNONCLIENTMETRICS,
617 sizeof(NONCLIENTMETRICS),
618 &nm,
619 0))
620 return FAIL;
621 *lf = nm.lfMenuFont;
622 return OK;
623}
624#endif
625
626
627#if defined(FEAT_GUI_TABLINE) && defined(USE_SYSMENU_FONT)
628/*
629 * Set the GUI tabline font to the system menu font
630 */
631 static void
632set_tabline_font(void)
633{
634 LOGFONT lfSysmenu;
635 HFONT font;
636 HWND hwnd;
637 HDC hdc;
638 HFONT hfntOld;
639 TEXTMETRIC tm;
640
641 if (gui_w32_get_menu_font(&lfSysmenu) != OK)
642 return;
643
644 font = CreateFontIndirect(&lfSysmenu);
645
646 SendMessage(s_tabhwnd, WM_SETFONT, (WPARAM)font, TRUE);
647
648 /*
649 * Compute the height of the font used for the tab text
650 */
651 hwnd = GetDesktopWindow();
652 hdc = GetWindowDC(hwnd);
653 hfntOld = SelectFont(hdc, font);
654
655 GetTextMetrics(hdc, &tm);
656
657 SelectFont(hdc, hfntOld);
658 ReleaseDC(hwnd, hdc);
659
660 /*
661 * The space used by the tab border and the space between the tab label
662 * and the tab border is included as 7.
663 */
664 gui.tabline_height = tm.tmHeight + tm.tmInternalLeading + 7;
665}
666#endif
667
Bram Moolenaar520470a2005-06-16 21:59:56 +0000668/*
669 * Invoked when a setting was changed.
670 */
671 static LRESULT CALLBACK
672_OnSettingChange(UINT n)
673{
674 if (n == SPI_SETWHEELSCROLLLINES)
675 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
676 &mouse_scroll_lines, 0);
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000677#if defined(FEAT_GUI_TABLINE) && defined(USE_SYSMENU_FONT)
678 if (n == SPI_SETNONCLIENTMETRICS)
679 set_tabline_font();
680#endif
Bram Moolenaar520470a2005-06-16 21:59:56 +0000681 return 0;
682}
683
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684#if 0 /* disabled, a gap appears below and beside the window, and the window
685 can be moved (in a strange way) */
686/*
687 * Even though we have _DuringSizing() which makes the rubber band a valid
688 * size, we need this for when the user maximises the window.
689 * TODO: Doesn't seem to adjust the width though for some reason.
690 */
691 static BOOL
692_OnWindowPosChanging(
693 HWND hwnd,
694 LPWINDOWPOS lpwpos)
695{
696 RECT workarea_rect;
697
698 if (!(lpwpos->flags & SWP_NOSIZE))
699 {
700 if (IsMaximized(hwnd)
701 && (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
702 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
703 && os_version.dwMajorVersion >= 4)))
704 {
705 SystemParametersInfo(SPI_GETWORKAREA, 0, &workarea_rect, 0);
706 lpwpos->x = workarea_rect.left;
707 lpwpos->y = workarea_rect.top;
708 lpwpos->cx = workarea_rect.right - workarea_rect.left;
709 lpwpos->cy = workarea_rect.bottom - workarea_rect.top;
710 }
711 gui_mswin_get_valid_dimensions(lpwpos->cx, lpwpos->cy,
712 &lpwpos->cx, &lpwpos->cy);
713 }
714 return 0;
715}
716#endif
717
718#ifdef FEAT_NETBEANS_INTG
719 static void
720_OnWindowPosChanged(
721 HWND hwnd,
722 const LPWINDOWPOS lpwpos)
723{
724 static int x = 0, y = 0, cx = 0, cy = 0;
725
726 if (WSInitialized && (lpwpos->x != x || lpwpos->y != y
727 || lpwpos->cx != cx || lpwpos->cy != cy))
728 {
729 x = lpwpos->x;
730 y = lpwpos->y;
731 cx = lpwpos->cx;
732 cy = lpwpos->cy;
733 netbeans_frame_moved(x, y);
734 }
735 /* Allow to send WM_SIZE and WM_MOVE */
736 FORWARD_WM_WINDOWPOSCHANGED(hwnd, lpwpos, MyWindowProc);
737}
738#endif
739
740 static int
741_DuringSizing(
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 UINT fwSide,
743 LPRECT lprc)
744{
745 int w, h;
746 int valid_w, valid_h;
747 int w_offset, h_offset;
748
749 w = lprc->right - lprc->left;
750 h = lprc->bottom - lprc->top;
751 gui_mswin_get_valid_dimensions(w, h, &valid_w, &valid_h);
752 w_offset = w - valid_w;
753 h_offset = h - valid_h;
754
755 if (fwSide == WMSZ_LEFT || fwSide == WMSZ_TOPLEFT
756 || fwSide == WMSZ_BOTTOMLEFT)
757 lprc->left += w_offset;
758 else if (fwSide == WMSZ_RIGHT || fwSide == WMSZ_TOPRIGHT
759 || fwSide == WMSZ_BOTTOMRIGHT)
760 lprc->right -= w_offset;
761
762 if (fwSide == WMSZ_TOP || fwSide == WMSZ_TOPLEFT
763 || fwSide == WMSZ_TOPRIGHT)
764 lprc->top += h_offset;
765 else if (fwSide == WMSZ_BOTTOM || fwSide == WMSZ_BOTTOMLEFT
766 || fwSide == WMSZ_BOTTOMRIGHT)
767 lprc->bottom -= h_offset;
768 return TRUE;
769}
770
771
772
773 static LRESULT CALLBACK
774_WndProc(
775 HWND hwnd,
776 UINT uMsg,
777 WPARAM wParam,
778 LPARAM lParam)
779{
780 /*
781 TRACE("WndProc: hwnd = %08x, msg = %x, wParam = %x, lParam = %x\n",
782 hwnd, uMsg, wParam, lParam);
783 */
784
785 HandleMouseHide(uMsg, lParam);
786
787 s_uMsg = uMsg;
788 s_wParam = wParam;
789 s_lParam = lParam;
790
791 switch (uMsg)
792 {
793 HANDLE_MSG(hwnd, WM_DEADCHAR, _OnDeadChar);
794 HANDLE_MSG(hwnd, WM_SYSDEADCHAR, _OnDeadChar);
795 /* HANDLE_MSG(hwnd, WM_ACTIVATE, _OnActivate); */
796 HANDLE_MSG(hwnd, WM_CLOSE, _OnClose);
797 /* HANDLE_MSG(hwnd, WM_COMMAND, _OnCommand); */
798 HANDLE_MSG(hwnd, WM_DESTROY, _OnDestroy);
799 HANDLE_MSG(hwnd, WM_DROPFILES, _OnDropFiles);
800 HANDLE_MSG(hwnd, WM_HSCROLL, _OnScroll);
801 HANDLE_MSG(hwnd, WM_KILLFOCUS, _OnKillFocus);
802#ifdef FEAT_MENU
803 HANDLE_MSG(hwnd, WM_COMMAND, _OnMenu);
804#endif
805 /* HANDLE_MSG(hwnd, WM_MOVE, _OnMove); */
806 /* HANDLE_MSG(hwnd, WM_NCACTIVATE, _OnNCActivate); */
807 HANDLE_MSG(hwnd, WM_SETFOCUS, _OnSetFocus);
808 HANDLE_MSG(hwnd, WM_SIZE, _OnSize);
809 /* HANDLE_MSG(hwnd, WM_SYSCOMMAND, _OnSysCommand); */
810 /* HANDLE_MSG(hwnd, WM_SYSKEYDOWN, _OnAltKey); */
811 HANDLE_MSG(hwnd, WM_VSCROLL, _OnScroll);
812 // HANDLE_MSG(hwnd, WM_WINDOWPOSCHANGING, _OnWindowPosChanging);
813 HANDLE_MSG(hwnd, WM_ACTIVATEAPP, _OnActivateApp);
814#ifdef FEAT_NETBEANS_INTG
815 HANDLE_MSG(hwnd, WM_WINDOWPOSCHANGED, _OnWindowPosChanged);
816#endif
817
Bram Moolenaarafa24992006-03-27 20:58:26 +0000818#ifdef FEAT_GUI_TABLINE
819 case WM_RBUTTONUP:
820 {
821 if (gui_mch_showing_tabline())
822 {
823 POINT pt;
824 RECT rect;
825
826 /*
827 * If the cursor is on the tabline, display the tab menu
828 */
829 GetCursorPos((LPPOINT)&pt);
830 GetWindowRect(s_textArea, &rect);
831 if (pt.y < rect.top)
832 {
833 show_tabline_popup_menu();
834 return 0;
835 }
836 }
837 return MyWindowProc(hwnd, uMsg, wParam, lParam);
838 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000839 case WM_LBUTTONDBLCLK:
840 {
841 /*
842 * If the user double clicked the tabline, create a new tab
843 */
844 if (gui_mch_showing_tabline())
845 {
846 POINT pt;
847 RECT rect;
848
849 GetCursorPos((LPPOINT)&pt);
850 GetWindowRect(s_textArea, &rect);
851 if (pt.y < rect.top)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000852 send_tabline_menu_event(0, TABLINE_MENU_NEW);
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000853 }
854 return MyWindowProc(hwnd, uMsg, wParam, lParam);
855 }
Bram Moolenaarafa24992006-03-27 20:58:26 +0000856#endif
857
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 case WM_QUERYENDSESSION: /* System wants to go down. */
859 gui_shell_closed(); /* Will exit when no changed buffers. */
860 return FALSE; /* Do NOT allow system to go down. */
861
862 case WM_ENDSESSION:
863 if (wParam) /* system only really goes down when wParam is TRUE */
864 _OnEndSession();
865 break;
866
867 case WM_CHAR:
868 /* Don't use HANDLE_MSG() for WM_CHAR, it truncates wParam to a single
869 * byte while we want the UTF-16 character value. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000870 _OnChar(hwnd, (UINT)wParam, (int)(short)LOWORD(lParam));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 return 0L;
872
873 case WM_SYSCHAR:
874 /*
875 * if 'winaltkeys' is "no", or it's "menu" and it's not a menu
876 * shortcut key, handle like a typed ALT key, otherwise call Windows
877 * ALT key handling.
878 */
879#ifdef FEAT_MENU
880 if ( !gui.menu_is_active
881 || p_wak[0] == 'n'
882 || (p_wak[0] == 'm' && !gui_is_menu_shortcut((int)wParam))
883 )
884#endif
885 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000886 _OnSysChar(hwnd, (UINT)wParam, (int)(short)LOWORD(lParam));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 return 0L;
888 }
889#ifdef FEAT_MENU
890 else
891 return MyWindowProc(hwnd, uMsg, wParam, lParam);
892#endif
893
894 case WM_SYSKEYUP:
895#ifdef FEAT_MENU
896 /* This used to be done only when menu is active: ALT key is used for
897 * that. But that caused problems when menu is disabled and using
898 * Alt-Tab-Esc: get into a strange state where no mouse-moved events
899 * are received, mouse pointer remains hidden. */
900 return MyWindowProc(hwnd, uMsg, wParam, lParam);
901#else
902 return 0;
903#endif
904
905 case WM_SIZING: /* HANDLE_MSG doesn't seem to handle this one */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000906 return _DuringSizing((UINT)wParam, (LPRECT)lParam);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907
908 case WM_MOUSEWHEEL:
909 _OnMouseWheel(hwnd, HIWORD(wParam));
910 break;
911
Bram Moolenaar520470a2005-06-16 21:59:56 +0000912 /* Notification for change in SystemParametersInfo() */
913 case WM_SETTINGCHANGE:
914 return _OnSettingChange((UINT)wParam);
915
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000916#if defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 case WM_NOTIFY:
918 switch (((LPNMHDR) lParam)->code)
919 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000920# ifdef FEAT_MBYTE
921 case TTN_GETDISPINFOW:
922# endif
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000923 case TTN_GETDISPINFO:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000925 LPNMHDR hdr = (LPNMHDR)lParam;
926 char_u *str = NULL;
927 static void *tt_text = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000928
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000929 vim_free(tt_text);
930 tt_text = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000931
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000932# ifdef FEAT_GUI_TABLINE
933 if (gui_mch_showing_tabline()
934 && hdr->hwndFrom == TabCtrl_GetToolTips(s_tabhwnd))
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000935 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000936 POINT pt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000937 /*
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000938 * Mouse is over the GUI tabline. Display the
939 * tooltip for the tab under the cursor
940 *
941 * Get the cursor position within the tab control
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000942 */
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000943 GetCursorPos(&pt);
944 if (ScreenToClient(s_tabhwnd, &pt) != 0)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000945 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000946 TCHITTESTINFO htinfo;
947 int idx;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000948
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000949 /*
950 * Get the tab under the cursor
951 */
952 htinfo.pt.x = pt.x;
953 htinfo.pt.y = pt.y;
954 idx = TabCtrl_HitTest(s_tabhwnd, &htinfo);
955 if (idx != -1)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000956 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000957 tabpage_T *tp;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000958
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000959 tp = find_tabpage(idx + 1);
960 if (tp != NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000961 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000962 get_tabline_label(tp, TRUE);
963 str = NameBuff;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000964 }
965 }
966 }
967 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000968# endif
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000969# ifdef FEAT_TOOLBAR
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000970# ifdef FEAT_GUI_TABLINE
971 else
972# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 {
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000974 UINT idButton;
975 vimmenu_T *pMenu;
976
977 idButton = (UINT) hdr->idFrom;
978 pMenu = gui_mswin_find_menu(root_menu, idButton);
979 if (pMenu)
980 str = pMenu->strings[MENU_INDEX_TIP];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000982# endif
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000983 if (str != NULL)
984 {
985# ifdef FEAT_MBYTE
986 if (hdr->code == TTN_GETDISPINFOW)
987 {
988 LPNMTTDISPINFOW lpdi = (LPNMTTDISPINFOW)lParam;
989
Bram Moolenaar6c9176d2008-01-03 19:45:15 +0000990 /* Set the maximum width, this also enables using
991 * \n for line break. */
992 SendMessage(lpdi->hdr.hwndFrom, TTM_SETMAXTIPWIDTH,
993 0, 500);
994
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000995 tt_text = enc_to_utf16(str, NULL);
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +0000996 lpdi->lpszText = tt_text;
997 /* can't show tooltip if failed */
998 }
999 else
1000# endif
1001 {
1002 LPNMTTDISPINFO lpdi = (LPNMTTDISPINFO)lParam;
1003
Bram Moolenaar6c9176d2008-01-03 19:45:15 +00001004 /* Set the maximum width, this also enables using
1005 * \n for line break. */
1006 SendMessage(lpdi->hdr.hwndFrom, TTM_SETMAXTIPWIDTH,
1007 0, 500);
1008
Bram Moolenaar8f2ff9f2006-08-29 19:26:50 +00001009 if (STRLEN(str) < sizeof(lpdi->szText)
1010 || ((tt_text = vim_strsave(str)) == NULL))
1011 vim_strncpy(lpdi->szText, str,
1012 sizeof(lpdi->szText) - 1);
1013 else
1014 lpdi->lpszText = tt_text;
1015 }
1016 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017 }
1018 break;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001019# ifdef FEAT_GUI_TABLINE
1020 case TCN_SELCHANGE:
1021 if (gui_mch_showing_tabline()
1022 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
1023 send_tabline_event(TabCtrl_GetCurSel(s_tabhwnd) + 1);
1024 break;
Bram Moolenaarafa24992006-03-27 20:58:26 +00001025
1026 case NM_RCLICK:
1027 if (gui_mch_showing_tabline()
1028 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
1029 show_tabline_popup_menu();
1030 break;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001031# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 default:
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001033# ifdef FEAT_GUI_TABLINE
1034 if (gui_mch_showing_tabline()
1035 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
1036 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1037# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 break;
1039 }
1040 break;
1041#endif
1042#if defined(MENUHINTS) && defined(FEAT_MENU)
1043 case WM_MENUSELECT:
1044 if (((UINT) HIWORD(wParam)
1045 & (0xffff ^ (MF_MOUSESELECT + MF_BITMAP + MF_POPUP)))
1046 == MF_HILITE
1047 && (State & CMDLINE) == 0)
1048 {
1049 UINT idButton;
1050 vimmenu_T *pMenu;
1051 static int did_menu_tip = FALSE;
1052
1053 if (did_menu_tip)
1054 {
1055 msg_clr_cmdline();
1056 setcursor();
1057 out_flush();
1058 did_menu_tip = FALSE;
1059 }
1060
1061 idButton = (UINT)LOWORD(wParam);
1062 pMenu = gui_mswin_find_menu(root_menu, idButton);
1063 if (pMenu != NULL && pMenu->strings[MENU_INDEX_TIP] != 0
1064 && GetMenuState(s_menuBar, pMenu->id, MF_BYCOMMAND) != -1)
1065 {
Bram Moolenaar2d8ab992007-06-19 08:06:18 +00001066 ++msg_hist_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 msg(pMenu->strings[MENU_INDEX_TIP]);
Bram Moolenaar2d8ab992007-06-19 08:06:18 +00001068 --msg_hist_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 setcursor();
1070 out_flush();
1071 did_menu_tip = TRUE;
1072 }
1073 }
1074 break;
1075#endif
1076 case WM_NCHITTEST:
1077 {
1078 LRESULT result;
1079 int x, y;
1080 int xPos = GET_X_LPARAM(lParam);
1081
1082 result = MyWindowProc(hwnd, uMsg, wParam, lParam);
1083 if (result == HTCLIENT)
1084 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001085#ifdef FEAT_GUI_TABLINE
1086 if (gui_mch_showing_tabline())
1087 {
1088 int yPos = GET_Y_LPARAM(lParam);
1089 RECT rct;
1090
1091 /* If the cursor is on the GUI tabline, don't process this
1092 * event */
1093 GetWindowRect(s_textArea, &rct);
1094 if (yPos < rct.top)
1095 return result;
1096 }
1097#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 gui_mch_get_winpos(&x, &y);
1099 xPos -= x;
1100
1101 if (xPos < 48) /* <VN> TODO should use system metric? */
1102 return HTBOTTOMLEFT;
1103 else
1104 return HTBOTTOMRIGHT;
1105 }
1106 else
1107 return result;
1108 }
1109 /* break; notreached */
1110
1111#ifdef FEAT_MBYTE_IME
1112 case WM_IME_NOTIFY:
1113 if (!_OnImeNotify(hwnd, (DWORD)wParam, (DWORD)lParam))
1114 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1115 break;
1116 case WM_IME_COMPOSITION:
1117 if (!_OnImeComposition(hwnd, wParam, lParam))
1118 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1119 break;
1120#endif
1121
1122 default:
1123 if (uMsg == msh_msgmousewheel && msh_msgmousewheel != 0)
1124 { /* handle MSH_MOUSEWHEEL messages for Intellimouse */
1125 _OnMouseWheel(hwnd, HIWORD(wParam));
1126 break;
1127 }
1128#ifdef MSWIN_FIND_REPLACE
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001129 else if (uMsg == s_findrep_msg && s_findrep_msg != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 {
1131 _OnFindRepl();
1132 }
1133#endif
1134 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1135 }
1136
1137 return 1;
1138}
1139
1140/*
1141 * End of call-back routines
1142 */
1143
1144/* parent window, if specified with -P */
1145HWND vim_parent_hwnd = NULL;
1146
1147 static BOOL CALLBACK
1148FindWindowTitle(HWND hwnd, LPARAM lParam)
1149{
1150 char buf[2048];
1151 char *title = (char *)lParam;
1152
1153 if (GetWindowText(hwnd, buf, sizeof(buf)))
1154 {
1155 if (strstr(buf, title) != NULL)
1156 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001157 /* Found it. Store the window ref. and quit searching if MDI
1158 * works. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 vim_parent_hwnd = FindWindowEx(hwnd, NULL, "MDIClient", NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001160 if (vim_parent_hwnd != NULL)
1161 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 }
1163 }
1164 return TRUE; /* continue searching */
1165}
1166
1167/*
1168 * Invoked for '-P "title"' argument: search for parent application to open
1169 * our window in.
1170 */
1171 void
1172gui_mch_set_parent(char *title)
1173{
1174 EnumWindows(FindWindowTitle, (LPARAM)title);
1175 if (vim_parent_hwnd == NULL)
1176 {
1177 EMSG2(_("E671: Cannot find window title \"%s\""), title);
1178 mch_exit(2);
1179 }
1180}
1181
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001182#ifndef FEAT_OLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 static void
1184ole_error(char *arg)
1185{
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00001186 char buf[IOSIZE];
1187
1188 /* Can't use EMSG() here, we have not finished initialisation yet. */
1189 vim_snprintf(buf, IOSIZE,
1190 _("E243: Argument not supported: \"-%s\"; Use the OLE version."),
1191 arg);
1192 mch_errmsg(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001194#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195
1196/*
1197 * Parse the GUI related command-line arguments. Any arguments used are
1198 * deleted from argv, and *argc is decremented accordingly. This is called
1199 * when vim is started, whether or not the GUI has been started.
1200 */
1201 void
1202gui_mch_prepare(int *argc, char **argv)
1203{
1204 int silent = FALSE;
1205 int idx;
1206
1207 /* Check for special OLE command line parameters */
1208 if ((*argc == 2 || *argc == 3) && (argv[1][0] == '-' || argv[1][0] == '/'))
1209 {
1210 /* Check for a "-silent" argument first. */
1211 if (*argc == 3 && STRICMP(argv[1] + 1, "silent") == 0
1212 && (argv[2][0] == '-' || argv[2][0] == '/'))
1213 {
1214 silent = TRUE;
1215 idx = 2;
1216 }
1217 else
1218 idx = 1;
1219
1220 /* Register Vim as an OLE Automation server */
1221 if (STRICMP(argv[idx] + 1, "register") == 0)
1222 {
1223#ifdef FEAT_OLE
1224 RegisterMe(silent);
1225 mch_exit(0);
1226#else
1227 if (!silent)
1228 ole_error("register");
1229 mch_exit(2);
1230#endif
1231 }
1232
1233 /* Unregister Vim as an OLE Automation server */
1234 if (STRICMP(argv[idx] + 1, "unregister") == 0)
1235 {
1236#ifdef FEAT_OLE
1237 UnregisterMe(!silent);
1238 mch_exit(0);
1239#else
1240 if (!silent)
1241 ole_error("unregister");
1242 mch_exit(2);
1243#endif
1244 }
1245
1246 /* Ignore an -embedding argument. It is only relevant if the
1247 * application wants to treat the case when it is started manually
1248 * differently from the case where it is started via automation (and
1249 * we don't).
1250 */
1251 if (STRICMP(argv[idx] + 1, "embedding") == 0)
1252 {
1253#ifdef FEAT_OLE
1254 *argc = 1;
1255#else
1256 ole_error("embedding");
1257 mch_exit(2);
1258#endif
1259 }
1260 }
1261
1262#ifdef FEAT_OLE
1263 {
1264 int bDoRestart = FALSE;
1265
1266 InitOLE(&bDoRestart);
1267 /* automatically exit after registering */
1268 if (bDoRestart)
1269 mch_exit(0);
1270 }
1271#endif
1272
1273#ifdef FEAT_NETBEANS_INTG
1274 {
1275 /* stolen from gui_x11.x */
1276 int arg;
1277
1278 for (arg = 1; arg < *argc; arg++)
1279 if (strncmp("-nb", argv[arg], 3) == 0)
1280 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 netbeansArg = argv[arg];
1282 mch_memmove(&argv[arg], &argv[arg + 1],
1283 (--*argc - arg) * sizeof(char *));
1284 argv[*argc] = NULL;
1285 break; /* enough? */
1286 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 }
1288#endif
1289
1290 /* get the OS version info */
1291 os_version.dwOSVersionInfoSize = sizeof(os_version);
1292 GetVersionEx(&os_version); /* this call works on Win32s, Win95 and WinNT */
1293
1294 /* try and load the user32.dll library and get the entry points for
1295 * multi-monitor-support. */
1296 if ((user32_lib = LoadLibrary("User32.dll")) != NULL)
1297 {
1298 pMonitorFromWindow = (TMonitorFromWindow)GetProcAddress(user32_lib,
1299 "MonitorFromWindow");
1300
1301 /* there are ...A and ...W version of GetMonitorInfo - looking at
1302 * winuser.h, they have exactly the same declaration. */
1303 pGetMonitorInfo = (TGetMonitorInfo)GetProcAddress(user32_lib,
1304 "GetMonitorInfoA");
1305 }
1306}
1307
1308/*
1309 * Initialise the GUI. Create all the windows, set up all the call-backs
1310 * etc.
1311 */
1312 int
1313gui_mch_init(void)
1314{
1315 const char szVimWndClass[] = VIM_CLASS;
1316 const char szTextAreaClass[] = "VimTextArea";
1317 WNDCLASS wndclass;
1318#ifdef FEAT_MBYTE
1319 const WCHAR szVimWndClassW[] = VIM_CLASSW;
Bram Moolenaar33d0b692010-02-17 16:31:32 +01001320 const WCHAR szTextAreaClassW[] = L"VimTextArea";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 WNDCLASSW wndclassw;
1322#endif
1323#ifdef GLOBAL_IME
1324 ATOM atom;
1325#endif
1326
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 /* Return here if the window was already opened (happens when
1328 * gui_mch_dialog() is called early). */
1329 if (s_hwnd != NULL)
Bram Moolenaar748bf032005-02-02 23:04:36 +00001330 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331
1332 /*
1333 * Load the tearoff bitmap
1334 */
1335#ifdef FEAT_TEAROFF
1336 s_htearbitmap = LoadBitmap(s_hinst, "IDB_TEAROFF");
1337#endif
1338
1339 gui.scrollbar_width = GetSystemMetrics(SM_CXVSCROLL);
1340 gui.scrollbar_height = GetSystemMetrics(SM_CYHSCROLL);
1341#ifdef FEAT_MENU
1342 gui.menu_height = 0; /* Windows takes care of this */
1343#endif
1344 gui.border_width = 0;
1345
1346 s_brush = CreateSolidBrush(GetSysColor(COLOR_BTNFACE));
1347
1348#ifdef FEAT_MBYTE
1349 /* First try using the wide version, so that we can use any title.
1350 * Otherwise only characters in the active codepage will work. */
1351 if (GetClassInfoW(s_hinst, szVimWndClassW, &wndclassw) == 0)
1352 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001353 wndclassw.style = CS_DBLCLKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 wndclassw.lpfnWndProc = _WndProc;
1355 wndclassw.cbClsExtra = 0;
1356 wndclassw.cbWndExtra = 0;
1357 wndclassw.hInstance = s_hinst;
1358 wndclassw.hIcon = LoadIcon(wndclassw.hInstance, "IDR_VIM");
1359 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
1360 wndclassw.hbrBackground = s_brush;
1361 wndclassw.lpszMenuName = NULL;
1362 wndclassw.lpszClassName = szVimWndClassW;
1363
1364 if ((
1365#ifdef GLOBAL_IME
1366 atom =
1367#endif
1368 RegisterClassW(&wndclassw)) == 0)
1369 {
1370 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
1371 return FAIL;
1372
1373 /* Must be Windows 98, fall back to non-wide function. */
1374 }
1375 else
1376 wide_WindowProc = TRUE;
1377 }
1378
1379 if (!wide_WindowProc)
1380#endif
1381
1382 if (GetClassInfo(s_hinst, szVimWndClass, &wndclass) == 0)
1383 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001384 wndclass.style = CS_DBLCLKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 wndclass.lpfnWndProc = _WndProc;
1386 wndclass.cbClsExtra = 0;
1387 wndclass.cbWndExtra = 0;
1388 wndclass.hInstance = s_hinst;
1389 wndclass.hIcon = LoadIcon(wndclass.hInstance, "IDR_VIM");
1390 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
1391 wndclass.hbrBackground = s_brush;
1392 wndclass.lpszMenuName = NULL;
1393 wndclass.lpszClassName = szVimWndClass;
1394
1395 if ((
1396#ifdef GLOBAL_IME
1397 atom =
1398#endif
1399 RegisterClass(&wndclass)) == 0)
1400 return FAIL;
1401 }
1402
1403 if (vim_parent_hwnd != NULL)
1404 {
1405#ifdef HAVE_TRY_EXCEPT
1406 __try
1407 {
1408#endif
1409 /* Open inside the specified parent window.
1410 * TODO: last argument should point to a CLIENTCREATESTRUCT
1411 * structure. */
1412 s_hwnd = CreateWindowEx(
1413 WS_EX_MDICHILD,
1414 szVimWndClass, "Vim MSWindows GUI",
1415 WS_OVERLAPPEDWINDOW | WS_CHILD | WS_CLIPSIBLINGS | 0xC000,
1416 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
1417 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
1418 100, /* Any value will do */
1419 100, /* Any value will do */
1420 vim_parent_hwnd, NULL,
1421 s_hinst, NULL);
1422#ifdef HAVE_TRY_EXCEPT
1423 }
1424 __except(EXCEPTION_EXECUTE_HANDLER)
1425 {
1426 /* NOP */
1427 }
1428#endif
1429 if (s_hwnd == NULL)
1430 {
1431 EMSG(_("E672: Unable to open window inside MDI application"));
1432 mch_exit(2);
1433 }
1434 }
1435 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001436 {
1437 /* If the provided windowid is not valid reset it to zero, so that it
1438 * is ignored and we open our own window. */
1439 if (IsWindow((HWND)win_socket_id) <= 0)
1440 win_socket_id = 0;
1441
1442 /* Create a window. If win_socket_id is not zero without border and
1443 * titlebar, it will be reparented below. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 s_hwnd = CreateWindow(
Bram Moolenaar78e17622007-08-30 10:26:19 +00001445 szVimWndClass, "Vim MSWindows GUI",
1446 win_socket_id == 0 ? WS_OVERLAPPEDWINDOW : WS_POPUP,
1447 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
1448 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
1449 100, /* Any value will do */
1450 100, /* Any value will do */
1451 NULL, NULL,
1452 s_hinst, NULL);
1453 if (s_hwnd != NULL && win_socket_id != 0)
1454 {
1455 SetParent(s_hwnd, (HWND)win_socket_id);
1456 ShowWindow(s_hwnd, SW_SHOWMAXIMIZED);
1457 }
1458 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459
1460 if (s_hwnd == NULL)
1461 return FAIL;
1462
1463#ifdef GLOBAL_IME
1464 global_ime_init(atom, s_hwnd);
1465#endif
1466#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
1467 dyn_imm_load();
1468#endif
1469
1470 /* Create the text area window */
Bram Moolenaar33d0b692010-02-17 16:31:32 +01001471#ifdef FEAT_MBYTE
1472 if (wide_WindowProc)
1473 {
1474 if (GetClassInfoW(s_hinst, szTextAreaClassW, &wndclassw) == 0)
1475 {
1476 wndclassw.style = CS_OWNDC;
1477 wndclassw.lpfnWndProc = _TextAreaWndProc;
1478 wndclassw.cbClsExtra = 0;
1479 wndclassw.cbWndExtra = 0;
1480 wndclassw.hInstance = s_hinst;
1481 wndclassw.hIcon = NULL;
1482 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
1483 wndclassw.hbrBackground = NULL;
1484 wndclassw.lpszMenuName = NULL;
1485 wndclassw.lpszClassName = szTextAreaClassW;
1486
1487 if (RegisterClassW(&wndclassw) == 0)
1488 return FAIL;
1489 }
1490 }
1491 else
1492#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 if (GetClassInfo(s_hinst, szTextAreaClass, &wndclass) == 0)
1494 {
1495 wndclass.style = CS_OWNDC;
1496 wndclass.lpfnWndProc = _TextAreaWndProc;
1497 wndclass.cbClsExtra = 0;
1498 wndclass.cbWndExtra = 0;
1499 wndclass.hInstance = s_hinst;
1500 wndclass.hIcon = NULL;
1501 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
1502 wndclass.hbrBackground = NULL;
1503 wndclass.lpszMenuName = NULL;
1504 wndclass.lpszClassName = szTextAreaClass;
1505
1506 if (RegisterClass(&wndclass) == 0)
1507 return FAIL;
1508 }
1509 s_textArea = CreateWindowEx(
1510 WS_EX_CLIENTEDGE,
1511 szTextAreaClass, "Vim text area",
1512 WS_CHILD | WS_VISIBLE, 0, 0,
1513 100, /* Any value will do for now */
1514 100, /* Any value will do for now */
1515 s_hwnd, NULL,
1516 s_hinst, NULL);
1517
1518 if (s_textArea == NULL)
1519 return FAIL;
1520
1521#ifdef FEAT_MENU
1522 s_menuBar = CreateMenu();
1523#endif
1524 s_hdc = GetDC(s_textArea);
1525
1526#ifdef MSWIN16_FASTTEXT
1527 SetBkMode(s_hdc, OPAQUE);
1528#endif
1529
1530#ifdef FEAT_WINDOWS
1531 DragAcceptFiles(s_hwnd, TRUE);
1532#endif
1533
1534 /* Do we need to bother with this? */
1535 /* m_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT); */
1536
1537 /* Get background/foreground colors from the system */
1538 gui_mch_def_colors();
1539
1540 /* Get the colors from the "Normal" group (set in syntax.c or in a vimrc
1541 * file) */
1542 set_normal_colors();
1543
1544 /*
1545 * Check that none of the colors are the same as the background color.
1546 * Then store the current values as the defaults.
1547 */
1548 gui_check_colors();
1549 gui.def_norm_pixel = gui.norm_pixel;
1550 gui.def_back_pixel = gui.back_pixel;
1551
1552 /* Get the colors for the highlight groups (gui_check_colors() might have
1553 * changed them) */
1554 highlight_gui_started();
1555
1556 /*
1557 * Start out by adding the configured border width into the border offset
1558 */
1559 gui.border_offset = gui.border_width + 2; /*CLIENT EDGE*/
1560
1561 /*
1562 * Set up for Intellimouse processing
1563 */
1564 init_mouse_wheel();
1565
1566 /*
1567 * compute a couple of metrics used for the dialogs
1568 */
1569 get_dialog_font_metrics();
1570#ifdef FEAT_TOOLBAR
1571 /*
1572 * Create the toolbar
1573 */
1574 initialise_toolbar();
1575#endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001576#ifdef FEAT_GUI_TABLINE
1577 /*
1578 * Create the tabline
1579 */
1580 initialise_tabline();
1581#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582#ifdef MSWIN_FIND_REPLACE
1583 /*
1584 * Initialise the dialog box stuff
1585 */
1586 s_findrep_msg = RegisterWindowMessage(FINDMSGSTRING);
1587
1588 /* Initialise the struct */
1589 s_findrep_struct.lStructSize = sizeof(s_findrep_struct);
1590 s_findrep_struct.lpstrFindWhat = alloc(MSWIN_FR_BUFSIZE);
1591 s_findrep_struct.lpstrFindWhat[0] = NUL;
1592 s_findrep_struct.lpstrReplaceWith = alloc(MSWIN_FR_BUFSIZE);
1593 s_findrep_struct.lpstrReplaceWith[0] = NUL;
1594 s_findrep_struct.wFindWhatLen = MSWIN_FR_BUFSIZE;
1595 s_findrep_struct.wReplaceWithLen = MSWIN_FR_BUFSIZE;
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00001596# if defined(FEAT_MBYTE) && defined(WIN3264)
1597 s_findrep_struct_w.lStructSize = sizeof(s_findrep_struct_w);
1598 s_findrep_struct_w.lpstrFindWhat =
1599 (LPWSTR)alloc(MSWIN_FR_BUFSIZE * sizeof(WCHAR));
1600 s_findrep_struct_w.lpstrFindWhat[0] = NUL;
1601 s_findrep_struct_w.lpstrReplaceWith =
1602 (LPWSTR)alloc(MSWIN_FR_BUFSIZE * sizeof(WCHAR));
1603 s_findrep_struct_w.lpstrReplaceWith[0] = NUL;
1604 s_findrep_struct_w.wFindWhatLen = MSWIN_FR_BUFSIZE;
1605 s_findrep_struct_w.wReplaceWithLen = MSWIN_FR_BUFSIZE;
1606# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608
Bram Moolenaar748bf032005-02-02 23:04:36 +00001609theend:
1610 /* Display any pending error messages */
1611 display_errors();
1612
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 return OK;
1614}
1615
1616/*
1617 * Get the size of the screen, taking position on multiple monitors into
1618 * account (if supported).
1619 */
1620 static void
1621get_work_area(RECT *spi_rect)
1622{
1623 _HMONITOR mon;
1624 _MONITORINFO moninfo;
1625
1626 /* use these functions only if available */
1627 if (pMonitorFromWindow != NULL && pGetMonitorInfo != NULL)
1628 {
1629 /* work out which monitor the window is on, and get *it's* work area */
1630 mon = pMonitorFromWindow(s_hwnd, 1 /*MONITOR_DEFAULTTOPRIMARY*/);
1631 if (mon != NULL)
1632 {
1633 moninfo.cbSize = sizeof(_MONITORINFO);
1634 if (pGetMonitorInfo(mon, &moninfo))
1635 {
1636 *spi_rect = moninfo.rcWork;
1637 return;
1638 }
1639 }
1640 }
1641 /* this is the old method... */
1642 SystemParametersInfo(SPI_GETWORKAREA, 0, spi_rect, 0);
1643}
1644
1645/*
1646 * Set the size of the window to the given width and height in pixels.
1647 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001648/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 void
1650gui_mch_set_shellsize(int width, int height,
Bram Moolenaarafa24992006-03-27 20:58:26 +00001651 int min_width, int min_height, int base_width, int base_height,
1652 int direction)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653{
1654 RECT workarea_rect;
1655 int win_width, win_height;
1656 int win_xpos, win_ypos;
1657 WINDOWPLACEMENT wndpl;
Bram Moolenaar56a907a2006-05-06 21:44:30 +00001658 int workarea_left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001660 /* Try to keep window completely on screen. */
1661 /* Get position of the screen work area. This is the part that is not
1662 * used by the taskbar or appbars. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 get_work_area(&workarea_rect);
1664
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001665 /* Get current posision of our window. Note that the .left and .top are
1666 * relative to the work area. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 wndpl.length = sizeof(WINDOWPLACEMENT);
1668 GetWindowPlacement(s_hwnd, &wndpl);
1669
1670 /* Resizing a maximized window looks very strange, unzoom it first.
1671 * But don't do it when still starting up, it may have been requested in
1672 * the shortcut. */
1673 if (wndpl.showCmd == SW_SHOWMAXIMIZED && starting == 0)
1674 {
1675 ShowWindow(s_hwnd, SW_SHOWNORMAL);
1676 /* Need to get the settings of the normal window. */
1677 GetWindowPlacement(s_hwnd, &wndpl);
1678 }
1679
1680 win_xpos = wndpl.rcNormalPosition.left;
1681 win_ypos = wndpl.rcNormalPosition.top;
1682
1683 /* compute the size of the outside of the window */
1684 win_width = width + GetSystemMetrics(SM_CXFRAME) * 2;
1685 win_height = height + GetSystemMetrics(SM_CYFRAME) * 2
1686 + GetSystemMetrics(SM_CYCAPTION)
1687#ifdef FEAT_MENU
1688 + gui_mswin_get_menu_height(FALSE)
1689#endif
1690 ;
1691
Bram Moolenaar56a907a2006-05-06 21:44:30 +00001692 /* There is an inconsistency when using two monitors and Vim is on the
1693 * second (right) one: win_xpos will be the offset from the workarea of
1694 * the left monitor. While with one monitor it's the offset from the
1695 * workarea (including a possible taskbar on the left). Detect the second
1696 * monitor by checking for the left offset to be quite big. */
1697 if (workarea_rect.left > 300)
1698 workarea_left = 0;
1699 else
1700 workarea_left = workarea_rect.left;
1701
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001702 /* If the window is going off the screen, move it on to the screen.
1703 * win_xpos and win_ypos are relative to the workarea. */
1704 if ((direction & RESIZE_HOR)
Bram Moolenaar56a907a2006-05-06 21:44:30 +00001705 && workarea_left + win_xpos + win_width > workarea_rect.right)
1706 win_xpos = workarea_rect.right - win_width - workarea_left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001708 if ((direction & RESIZE_HOR) && win_xpos < 0)
1709 win_xpos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710
Bram Moolenaarafa24992006-03-27 20:58:26 +00001711 if ((direction & RESIZE_VERT)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001712 && workarea_rect.top + win_ypos + win_height > workarea_rect.bottom)
1713 win_ypos = workarea_rect.bottom - win_height - workarea_rect.top;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001715 if ((direction & RESIZE_VERT) && win_ypos < 0)
1716 win_ypos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717
1718 wndpl.rcNormalPosition.left = win_xpos;
1719 wndpl.rcNormalPosition.right = win_xpos + win_width;
1720 wndpl.rcNormalPosition.top = win_ypos;
1721 wndpl.rcNormalPosition.bottom = win_ypos + win_height;
1722
1723 /* set window position - we should use SetWindowPlacement rather than
1724 * SetWindowPos as the MSDN docs say the coord systems returned by
1725 * these two are not compatible. */
1726 SetWindowPlacement(s_hwnd, &wndpl);
1727
1728 SetActiveWindow(s_hwnd);
1729 SetFocus(s_hwnd);
1730
1731#ifdef FEAT_MENU
1732 /* Menu may wrap differently now */
1733 gui_mswin_get_menu_height(!gui.starting);
1734#endif
1735}
1736
1737
1738 void
1739gui_mch_set_scrollbar_thumb(
1740 scrollbar_T *sb,
1741 long val,
1742 long size,
1743 long max)
1744{
1745 SCROLLINFO info;
1746
1747 sb->scroll_shift = 0;
1748 while (max > 32767)
1749 {
1750 max = (max + 1) >> 1;
1751 val >>= 1;
1752 size >>= 1;
1753 ++sb->scroll_shift;
1754 }
1755
1756 if (sb->scroll_shift > 0)
1757 ++size;
1758
1759 info.cbSize = sizeof(info);
1760 info.fMask = SIF_POS | SIF_RANGE | SIF_PAGE;
1761 info.nPos = val;
1762 info.nMin = 0;
1763 info.nMax = max;
1764 info.nPage = size;
1765 SetScrollInfo(sb->id, SB_CTL, &info, TRUE);
1766}
1767
1768
1769/*
1770 * Set the current text font.
1771 */
1772 void
1773gui_mch_set_font(GuiFont font)
1774{
1775 gui.currFont = font;
1776}
1777
1778
1779/*
1780 * Set the current text foreground color.
1781 */
1782 void
1783gui_mch_set_fg_color(guicolor_T color)
1784{
1785 gui.currFgColor = color;
1786}
1787
1788/*
1789 * Set the current text background color.
1790 */
1791 void
1792gui_mch_set_bg_color(guicolor_T color)
1793{
1794 gui.currBgColor = color;
1795}
1796
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001797/*
1798 * Set the current text special color.
1799 */
1800 void
1801gui_mch_set_sp_color(guicolor_T color)
1802{
1803 gui.currSpColor = color;
1804}
1805
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806#if defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)
1807/*
1808 * Multi-byte handling, originally by Sung-Hoon Baek.
1809 * First static functions (no prototypes generated).
1810 */
1811#ifdef _MSC_VER
1812# include <ime.h> /* Apparently not needed for Cygwin, MingW or Borland. */
1813#endif
1814#include <imm.h>
1815
1816/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 * handle WM_IME_NOTIFY message
1818 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001819/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 static LRESULT
1821_OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData)
1822{
1823 LRESULT lResult = 0;
1824 HIMC hImc;
1825
1826 if (!pImmGetContext || (hImc = pImmGetContext(hWnd)) == (HIMC)0)
1827 return lResult;
1828 switch (dwCommand)
1829 {
1830 case IMN_SETOPENSTATUS:
1831 if (pImmGetOpenStatus(hImc))
1832 {
1833 pImmSetCompositionFont(hImc, &norm_logfont);
1834 im_set_position(gui.row, gui.col);
1835
1836 /* Disable langmap */
1837 State &= ~LANGMAP;
1838 if (State & INSERT)
1839 {
1840#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1841 /* Unshown 'keymap' in status lines */
1842 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
1843 {
1844 /* Save cursor position */
1845 int old_row = gui.row;
1846 int old_col = gui.col;
1847
1848 // This must be called here before
1849 // status_redraw_curbuf(), otherwise the mode
1850 // message may appear in the wrong position.
1851 showmode();
1852 status_redraw_curbuf();
1853 update_screen(0);
1854 /* Restore cursor position */
1855 gui.row = old_row;
1856 gui.col = old_col;
1857 }
1858#endif
1859 }
1860 }
1861 gui_update_cursor(TRUE, FALSE);
1862 lResult = 0;
1863 break;
1864 }
1865 pImmReleaseContext(hWnd, hImc);
1866 return lResult;
1867}
1868
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001869/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 static LRESULT
1871_OnImeComposition(HWND hwnd, WPARAM dbcs, LPARAM param)
1872{
1873 char_u *ret;
1874 int len;
1875
1876 if ((param & GCS_RESULTSTR) == 0) /* Composition unfinished. */
1877 return 0;
1878
1879 ret = GetResultStr(hwnd, GCS_RESULTSTR, &len);
1880 if (ret != NULL)
1881 {
1882 add_to_input_buf_csi(ret, len);
1883 vim_free(ret);
1884 return 1;
1885 }
1886 return 0;
1887}
1888
1889/*
1890 * get the current composition string, in UCS-2; *lenp is the number of
1891 * *lenp is the number of Unicode characters.
1892 */
1893 static short_u *
1894GetCompositionString_inUCS2(HIMC hIMC, DWORD GCS, int *lenp)
1895{
1896 LONG ret;
1897 LPWSTR wbuf = NULL;
1898 char_u *buf;
1899
1900 if (!pImmGetContext)
1901 return NULL; /* no imm32.dll */
1902
1903 /* Try Unicode; this'll always work on NT regardless of codepage. */
1904 ret = pImmGetCompositionStringW(hIMC, GCS, NULL, 0);
1905 if (ret == 0)
1906 return NULL; /* empty */
1907
1908 if (ret > 0)
1909 {
1910 /* Allocate the requested buffer plus space for the NUL character. */
1911 wbuf = (LPWSTR)alloc(ret + sizeof(WCHAR));
1912 if (wbuf != NULL)
1913 {
1914 pImmGetCompositionStringW(hIMC, GCS, wbuf, ret);
1915 *lenp = ret / sizeof(WCHAR);
1916 }
1917 return (short_u *)wbuf;
1918 }
1919
1920 /* ret < 0; we got an error, so try the ANSI version. This'll work
1921 * on 9x/ME, but only if the codepage happens to be set to whatever
1922 * we're inputting. */
1923 ret = pImmGetCompositionStringA(hIMC, GCS, NULL, 0);
1924 if (ret <= 0)
1925 return NULL; /* empty or error */
1926
1927 buf = alloc(ret);
1928 if (buf == NULL)
1929 return NULL;
1930 pImmGetCompositionStringA(hIMC, GCS, buf, ret);
1931
1932 /* convert from codepage to UCS-2 */
1933 MultiByteToWideChar_alloc(GetACP(), 0, buf, ret, &wbuf, lenp);
1934 vim_free(buf);
1935
1936 return (short_u *)wbuf;
1937}
1938
1939/*
1940 * void GetResultStr()
1941 *
1942 * This handles WM_IME_COMPOSITION with GCS_RESULTSTR flag on.
1943 * get complete composition string
1944 */
1945 static char_u *
1946GetResultStr(HWND hwnd, int GCS, int *lenp)
1947{
1948 HIMC hIMC; /* Input context handle. */
1949 short_u *buf = NULL;
1950 char_u *convbuf = NULL;
1951
1952 if (!pImmGetContext || (hIMC = pImmGetContext(hwnd)) == (HIMC)0)
1953 return NULL;
1954
1955 /* Reads in the composition string. */
1956 buf = GetCompositionString_inUCS2(hIMC, GCS, lenp);
1957 if (buf == NULL)
1958 return NULL;
1959
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001960 convbuf = utf16_to_enc(buf, lenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 pImmReleaseContext(hwnd, hIMC);
1962 vim_free(buf);
1963 return convbuf;
1964}
1965#endif
1966
1967/* For global functions we need prototypes. */
1968#if (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) || defined(PROTO)
1969
1970/*
1971 * set font to IM.
1972 */
1973 void
1974im_set_font(LOGFONT *lf)
1975{
1976 HIMC hImc;
1977
1978 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
1979 {
1980 pImmSetCompositionFont(hImc, lf);
1981 pImmReleaseContext(s_hwnd, hImc);
1982 }
1983}
1984
1985/*
1986 * Notify cursor position to IM.
1987 */
1988 void
1989im_set_position(int row, int col)
1990{
1991 HIMC hImc;
1992
1993 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
1994 {
1995 COMPOSITIONFORM cfs;
1996
1997 cfs.dwStyle = CFS_POINT;
1998 cfs.ptCurrentPos.x = FILL_X(col);
1999 cfs.ptCurrentPos.y = FILL_Y(row);
2000 MapWindowPoints(s_textArea, s_hwnd, &cfs.ptCurrentPos, 1);
2001 pImmSetCompositionWindow(hImc, &cfs);
2002
2003 pImmReleaseContext(s_hwnd, hImc);
2004 }
2005}
2006
2007/*
2008 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
2009 */
2010 void
2011im_set_active(int active)
2012{
2013 HIMC hImc;
2014 static HIMC hImcOld = (HIMC)0;
2015
2016 if (pImmGetContext) /* if NULL imm32.dll wasn't loaded (yet) */
2017 {
2018 if (p_imdisable)
2019 {
2020 if (hImcOld == (HIMC)0)
2021 {
2022 hImcOld = pImmGetContext(s_hwnd);
2023 if (hImcOld)
2024 pImmAssociateContext(s_hwnd, (HIMC)0);
2025 }
2026 active = FALSE;
2027 }
2028 else if (hImcOld != (HIMC)0)
2029 {
2030 pImmAssociateContext(s_hwnd, hImcOld);
2031 hImcOld = (HIMC)0;
2032 }
2033
2034 hImc = pImmGetContext(s_hwnd);
2035 if (hImc)
2036 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00002037 /*
2038 * for Korean ime
2039 */
2040 HKL hKL = GetKeyboardLayout(0);
2041
2042 if (LOWORD(hKL) == MAKELANGID(LANG_KOREAN, SUBLANG_KOREAN))
2043 {
2044 static DWORD dwConversionSaved = 0, dwSentenceSaved = 0;
2045 static BOOL bSaved = FALSE;
2046
2047 if (active)
2048 {
2049 /* if we have a saved conversion status, restore it */
2050 if (bSaved)
2051 pImmSetConversionStatus(hImc, dwConversionSaved,
2052 dwSentenceSaved);
2053 bSaved = FALSE;
2054 }
2055 else
2056 {
2057 /* save conversion status and disable korean */
2058 if (pImmGetConversionStatus(hImc, &dwConversionSaved,
2059 &dwSentenceSaved))
2060 {
2061 bSaved = TRUE;
2062 pImmSetConversionStatus(hImc,
2063 dwConversionSaved & ~(IME_CMODE_NATIVE
2064 | IME_CMODE_FULLSHAPE),
2065 dwSentenceSaved);
2066 }
2067 }
2068 }
2069
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 pImmSetOpenStatus(hImc, active);
2071 pImmReleaseContext(s_hwnd, hImc);
2072 }
2073 }
2074}
2075
2076/*
2077 * Get IM status. When IM is on, return not 0. Else return 0.
2078 */
2079 int
2080im_get_status()
2081{
2082 int status = 0;
2083 HIMC hImc;
2084
2085 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
2086 {
2087 status = pImmGetOpenStatus(hImc) ? 1 : 0;
2088 pImmReleaseContext(s_hwnd, hImc);
2089 }
2090 return status;
2091}
2092
2093#endif /* FEAT_MBYTE && FEAT_MBYTE_IME */
2094
2095#if defined(FEAT_MBYTE) && !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME)
2096/* Win32 with GLOBAL IME */
2097
2098/*
2099 * Notify cursor position to IM.
2100 */
2101 void
2102im_set_position(int row, int col)
2103{
2104 /* Win32 with GLOBAL IME */
2105 POINT p;
2106
2107 p.x = FILL_X(col);
2108 p.y = FILL_Y(row);
2109 MapWindowPoints(s_textArea, s_hwnd, &p, 1);
2110 global_ime_set_position(&p);
2111}
2112
2113/*
2114 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
2115 */
2116 void
2117im_set_active(int active)
2118{
2119 global_ime_set_status(active);
2120}
2121
2122/*
2123 * Get IM status. When IM is on, return not 0. Else return 0.
2124 */
2125 int
2126im_get_status()
2127{
2128 return global_ime_get_status();
2129}
2130#endif
2131
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002132#ifdef FEAT_MBYTE
2133/*
Bram Moolenaar39f05632006-03-19 22:15:26 +00002134 * Convert latin9 text "text[len]" to ucs-2 in "unicodebuf".
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002135 */
2136 static void
2137latin9_to_ucs(char_u *text, int len, WCHAR *unicodebuf)
2138{
2139 int c;
2140
Bram Moolenaarca003e12006-03-17 23:19:38 +00002141 while (--len >= 0)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002142 {
2143 c = *text++;
2144 switch (c)
2145 {
2146 case 0xa4: c = 0x20ac; break; /* euro */
2147 case 0xa6: c = 0x0160; break; /* S hat */
2148 case 0xa8: c = 0x0161; break; /* S -hat */
2149 case 0xb4: c = 0x017d; break; /* Z hat */
2150 case 0xb8: c = 0x017e; break; /* Z -hat */
2151 case 0xbc: c = 0x0152; break; /* OE */
2152 case 0xbd: c = 0x0153; break; /* oe */
2153 case 0xbe: c = 0x0178; break; /* Y */
2154 }
2155 *unicodebuf++ = c;
2156 }
2157}
2158#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159
2160#ifdef FEAT_RIGHTLEFT
2161/*
2162 * What is this for? In the case where you are using Win98 or Win2K or later,
2163 * and you are using a Hebrew font (or Arabic!), Windows does you a favor and
2164 * reverses the string sent to the TextOut... family. This sucks, because we
2165 * go to a lot of effort to do the right thing, and there doesn't seem to be a
2166 * way to tell Windblows not to do this!
2167 *
2168 * The short of it is that this 'RevOut' only gets called if you are running
2169 * one of the new, "improved" MS OSes, and only if you are running in
2170 * 'rightleft' mode. It makes display take *slightly* longer, but not
2171 * noticeably so.
2172 */
2173 static void
2174RevOut( HDC s_hdc,
2175 int col,
2176 int row,
2177 UINT foptions,
2178 CONST RECT *pcliprect,
2179 LPCTSTR text,
2180 UINT len,
2181 CONST INT *padding)
2182{
2183 int ix;
2184 static int special = -1;
2185
2186 if (special == -1)
2187 {
2188 /* Check windows version: special treatment is needed if it is NT 5 or
2189 * Win98 or higher. */
2190 if ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2191 && os_version.dwMajorVersion >= 5)
2192 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
2193 && (os_version.dwMajorVersion > 4
2194 || (os_version.dwMajorVersion == 4
2195 && os_version.dwMinorVersion > 0))))
2196 special = 1;
2197 else
2198 special = 0;
2199 }
2200
2201 if (special)
2202 for (ix = 0; ix < (int)len; ++ix)
2203 ExtTextOut(s_hdc, col + TEXT_X(ix), row, foptions,
2204 pcliprect, text + ix, 1, padding);
2205 else
2206 ExtTextOut(s_hdc, col, row, foptions, pcliprect, text, len, padding);
2207}
2208#endif
2209
2210 void
2211gui_mch_draw_string(
2212 int row,
2213 int col,
2214 char_u *text,
2215 int len,
2216 int flags)
2217{
2218 static int *padding = NULL;
2219 static int pad_size = 0;
2220 int i;
2221 const RECT *pcliprect = NULL;
2222 UINT foptions = 0;
2223#ifdef FEAT_MBYTE
2224 static WCHAR *unicodebuf = NULL;
2225 static int *unicodepdy = NULL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002226 static int unibuflen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 int n = 0;
2228#endif
2229 HPEN hpen, old_pen;
2230 int y;
2231
2232#ifndef MSWIN16_FASTTEXT
2233 /*
2234 * Italic and bold text seems to have an extra row of pixels at the bottom
2235 * (below where the bottom of the character should be). If we draw the
2236 * characters with a solid background, the top row of pixels in the
2237 * character below will be overwritten. We can fix this by filling in the
2238 * background ourselves, to the correct character proportions, and then
2239 * writing the character in transparent mode. Still have a problem when
2240 * the character is "_", which gets written on to the character below.
2241 * New fix: set gui.char_ascent to -1. This shifts all characters up one
2242 * pixel in their slots, which fixes the problem with the bottom row of
2243 * pixels. We still need this code because otherwise the top row of pixels
2244 * becomes a problem. - webb.
2245 */
2246 static HBRUSH hbr_cache[2] = {NULL, NULL};
2247 static guicolor_T brush_color[2] = {INVALCOLOR, INVALCOLOR};
2248 static int brush_lru = 0;
2249 HBRUSH hbr;
2250 RECT rc;
2251
2252 if (!(flags & DRAW_TRANSP))
2253 {
2254 /*
2255 * Clear background first.
2256 * Note: FillRect() excludes right and bottom of rectangle.
2257 */
2258 rc.left = FILL_X(col);
2259 rc.top = FILL_Y(row);
2260#ifdef FEAT_MBYTE
2261 if (has_mbyte)
2262 {
2263 int cell_len = 0;
2264
2265 /* Compute the length in display cells. */
2266 for (n = 0; n < len; n += MB_BYTE2LEN(text[n]))
2267 cell_len += (*mb_ptr2cells)(text + n);
2268 rc.right = FILL_X(col + cell_len);
2269 }
2270 else
2271#endif
2272 rc.right = FILL_X(col + len);
2273 rc.bottom = FILL_Y(row + 1);
2274
2275 /* Cache the created brush, that saves a lot of time. We need two:
2276 * one for cursor background and one for the normal background. */
2277 if (gui.currBgColor == brush_color[0])
2278 {
2279 hbr = hbr_cache[0];
2280 brush_lru = 1;
2281 }
2282 else if (gui.currBgColor == brush_color[1])
2283 {
2284 hbr = hbr_cache[1];
2285 brush_lru = 0;
2286 }
2287 else
2288 {
2289 if (hbr_cache[brush_lru] != NULL)
2290 DeleteBrush(hbr_cache[brush_lru]);
2291 hbr_cache[brush_lru] = CreateSolidBrush(gui.currBgColor);
2292 brush_color[brush_lru] = gui.currBgColor;
2293 hbr = hbr_cache[brush_lru];
2294 brush_lru = !brush_lru;
2295 }
2296 FillRect(s_hdc, &rc, hbr);
2297
2298 SetBkMode(s_hdc, TRANSPARENT);
2299
2300 /*
2301 * When drawing block cursor, prevent inverted character spilling
2302 * over character cell (can happen with bold/italic)
2303 */
2304 if (flags & DRAW_CURSOR)
2305 {
2306 pcliprect = &rc;
2307 foptions = ETO_CLIPPED;
2308 }
2309 }
2310#else
2311 /*
2312 * The alternative would be to write the characters in opaque mode, but
2313 * when the text is not exactly the same proportions as normal text, too
2314 * big or too little a rectangle gets drawn for the background.
2315 */
2316 SetBkMode(s_hdc, OPAQUE);
2317 SetBkColor(s_hdc, gui.currBgColor);
2318#endif
2319 SetTextColor(s_hdc, gui.currFgColor);
2320 SelectFont(s_hdc, gui.currFont);
2321
2322 if (pad_size != Columns || padding == NULL || padding[0] != gui.char_width)
2323 {
2324 vim_free(padding);
2325 pad_size = Columns;
2326
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002327 /* Don't give an out-of-memory message here, it would call us
2328 * recursively. */
2329 padding = (int *)lalloc(pad_size * sizeof(int), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 if (padding != NULL)
2331 for (i = 0; i < pad_size; i++)
2332 padding[i] = gui.char_width;
2333 }
2334
2335 /* On NT, tell the font renderer not to "help" us with Hebrew and Arabic
2336 * text. This doesn't work in 9x, so we have to deal with it manually on
2337 * those systems. */
2338 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT)
2339 foptions |= ETO_IGNORELANGUAGE;
2340
2341 /*
2342 * We have to provide the padding argument because italic and bold versions
2343 * of fixed-width fonts are often one pixel or so wider than their normal
2344 * versions.
2345 * No check for DRAW_BOLD, Windows will have done it already.
2346 */
2347
2348#ifdef FEAT_MBYTE
2349 /* Check if there are any UTF-8 characters. If not, use normal text
2350 * output to speed up output. */
2351 if (enc_utf8)
2352 for (n = 0; n < len; ++n)
2353 if (text[n] >= 0x80)
2354 break;
2355
2356 /* Check if the Unicode buffer exists and is big enough. Create it
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002357 * with the same length as the multi-byte string, the number of wide
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 * characters is always equal or smaller. */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002359 if ((enc_utf8
2360 || (enc_codepage > 0 && (int)GetACP() != enc_codepage)
2361 || enc_latin9)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 && (unicodebuf == NULL || len > unibuflen))
2363 {
2364 vim_free(unicodebuf);
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002365 unicodebuf = (WCHAR *)lalloc(len * sizeof(WCHAR), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366
2367 vim_free(unicodepdy);
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002368 unicodepdy = (int *)lalloc(len * sizeof(int), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369
2370 unibuflen = len;
2371 }
2372
2373 if (enc_utf8 && n < len && unicodebuf != NULL)
2374 {
2375 /* Output UTF-8 characters. Caller has already separated
2376 * composing characters. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002377 int i;
2378 int wlen; /* string length in words */
2379 int clen; /* string length in characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 int cells; /* cell width of string up to composing char */
2381 int cw; /* width of current cell */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002382 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002384 wlen = 0;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002385 clen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 cells = 0;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002387 for (i = 0; i < len; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002389 c = utf_ptr2char(text + i);
2390 if (c >= 0x10000)
2391 {
2392 /* Turn into UTF-16 encoding. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002393 unicodebuf[wlen++] = ((c - 0x10000) >> 10) + 0xD800;
2394 unicodebuf[wlen++] = ((c - 0x10000) & 0x3ff) + 0xDC00;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002395 }
2396 else
2397 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00002398 unicodebuf[wlen++] = c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002399 }
2400 cw = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 if (cw > 2) /* don't use 4 for unprintable char */
2402 cw = 1;
2403 if (unicodepdy != NULL)
2404 {
2405 /* Use unicodepdy to make characters fit as we expect, even
2406 * when the font uses different widths (e.g., bold character
2407 * is wider). */
2408 unicodepdy[clen] = cw * gui.char_width;
2409 }
2410 cells += cw;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002411 i += utfc_ptr2len_len(text + i, len - i);
Bram Moolenaarca003e12006-03-17 23:19:38 +00002412 ++clen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 }
2414 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
Bram Moolenaarca003e12006-03-17 23:19:38 +00002415 foptions, pcliprect, unicodebuf, wlen, unicodepdy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 len = cells; /* used for underlining */
2417 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002418 else if ((enc_codepage > 0 && (int)GetACP() != enc_codepage) || enc_latin9)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 {
2420 /* If we want to display codepage data, and the current CP is not the
2421 * ANSI one, we need to go via Unicode. */
2422 if (unicodebuf != NULL)
2423 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002424 if (enc_latin9)
2425 latin9_to_ucs(text, len, unicodebuf);
2426 else
2427 len = MultiByteToWideChar(enc_codepage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 MB_PRECOMPOSED,
2429 (char *)text, len,
2430 (LPWSTR)unicodebuf, unibuflen);
2431 if (len != 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002432 {
2433 /* Use unicodepdy to make characters fit as we expect, even
2434 * when the font uses different widths (e.g., bold character
2435 * is wider). */
2436 if (unicodepdy != NULL)
2437 {
2438 int i;
2439 int cw;
2440
2441 for (i = 0; i < len; ++i)
2442 {
2443 cw = utf_char2cells(unicodebuf[i]);
2444 if (cw > 2)
2445 cw = 1;
2446 unicodepdy[i] = cw * gui.char_width;
2447 }
2448 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002450 foptions, pcliprect, unicodebuf, len, unicodepdy);
2451 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 }
2453 }
2454 else
2455#endif
2456 {
2457#ifdef FEAT_RIGHTLEFT
2458 /* If we can't use ETO_IGNORELANGUAGE, we can't tell Windows not to
2459 * mess up RL text, so we have to draw it character-by-character.
2460 * Only do this if RL is on, since it's slow. */
2461 if (curwin->w_p_rl && !(foptions & ETO_IGNORELANGUAGE))
2462 RevOut(s_hdc, TEXT_X(col), TEXT_Y(row),
2463 foptions, pcliprect, (char *)text, len, padding);
2464 else
2465#endif
2466 ExtTextOut(s_hdc, TEXT_X(col), TEXT_Y(row),
2467 foptions, pcliprect, (char *)text, len, padding);
2468 }
2469
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002470 /* Underline */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 if (flags & DRAW_UNDERL)
2472 {
2473 hpen = CreatePen(PS_SOLID, 1, gui.currFgColor);
2474 old_pen = SelectObject(s_hdc, hpen);
2475 /* When p_linespace is 0, overwrite the bottom row of pixels.
2476 * Otherwise put the line just below the character. */
2477 y = FILL_Y(row + 1) - 1;
2478#ifndef MSWIN16_FASTTEXT
2479 if (p_linespace > 1)
2480 y -= p_linespace - 1;
2481#endif
2482 MoveToEx(s_hdc, FILL_X(col), y, NULL);
2483 /* Note: LineTo() excludes the last pixel in the line. */
2484 LineTo(s_hdc, FILL_X(col + len), y);
2485 DeleteObject(SelectObject(s_hdc, old_pen));
2486 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002487
2488 /* Undercurl */
2489 if (flags & DRAW_UNDERC)
2490 {
2491 int x;
2492 int offset;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002493 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002494
2495 y = FILL_Y(row + 1) - 1;
2496 for (x = FILL_X(col); x < FILL_X(col + len); ++x)
2497 {
2498 offset = val[x % 8];
2499 SetPixel(s_hdc, x, y - offset, gui.currSpColor);
2500 }
2501 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502}
2503
2504
2505/*
2506 * Output routines.
2507 */
2508
2509/* Flush any output to the screen */
2510 void
2511gui_mch_flush(void)
2512{
2513# if defined(__BORLANDC__)
2514 /*
2515 * The GdiFlush declaration (in Borland C 5.01 <wingdi.h>) is not a
2516 * prototype declaration.
2517 * The compiler complains if __stdcall is not used in both declarations.
2518 */
2519 BOOL __stdcall GdiFlush(void);
2520# endif
2521
2522 GdiFlush();
2523}
2524
2525 static void
2526clear_rect(RECT *rcp)
2527{
2528 HBRUSH hbr;
2529
2530 hbr = CreateSolidBrush(gui.back_pixel);
2531 FillRect(s_hdc, rcp, hbr);
2532 DeleteBrush(hbr);
2533}
2534
2535
Bram Moolenaarc716c302006-01-21 22:12:51 +00002536 void
2537gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
2538{
2539 RECT workarea_rect;
2540
2541 get_work_area(&workarea_rect);
2542
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002543 *screen_w = workarea_rect.right - workarea_rect.left
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002544 - GetSystemMetrics(SM_CXFRAME) * 2;
Bram Moolenaarc716c302006-01-21 22:12:51 +00002545
2546 /* FIXME: dirty trick: Because the gui_get_base_height() doesn't include
2547 * the menubar for MSwin, we subtract it from the screen height, so that
2548 * the window size can be made to fit on the screen. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002549 *screen_h = workarea_rect.bottom - workarea_rect.top
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002550 - GetSystemMetrics(SM_CYFRAME) * 2
Bram Moolenaarc716c302006-01-21 22:12:51 +00002551 - GetSystemMetrics(SM_CYCAPTION)
2552#ifdef FEAT_MENU
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002553 - gui_mswin_get_menu_height(FALSE)
Bram Moolenaarc716c302006-01-21 22:12:51 +00002554#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002555 ;
Bram Moolenaarc716c302006-01-21 22:12:51 +00002556}
2557
2558
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559#if defined(FEAT_MENU) || defined(PROTO)
2560/*
2561 * Add a sub menu to the menu bar.
2562 */
2563 void
2564gui_mch_add_menu(
2565 vimmenu_T *menu,
2566 int pos)
2567{
2568 vimmenu_T *parent = menu->parent;
2569
2570 menu->submenu_id = CreatePopupMenu();
2571 menu->id = s_menu_id++;
2572
2573 if (menu_is_menubar(menu->name))
2574 {
2575 if (is_winnt_3())
2576 {
2577 InsertMenu((parent == NULL) ? s_menuBar : parent->submenu_id,
2578 (UINT)pos, MF_POPUP | MF_STRING | MF_BYPOSITION,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002579 (long_u)menu->submenu_id, (LPCTSTR) menu->name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 }
2581 else
2582 {
2583#ifdef FEAT_MBYTE
2584 WCHAR *wn = NULL;
2585 int n;
2586
2587 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2588 {
2589 /* 'encoding' differs from active codepage: convert menu name
2590 * and use wide function */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002591 wn = enc_to_utf16(menu->name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 if (wn != NULL)
2593 {
2594 MENUITEMINFOW infow;
2595
2596 infow.cbSize = sizeof(infow);
2597 infow.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID
2598 | MIIM_SUBMENU;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002599 infow.dwItemData = (long_u)menu;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 infow.wID = menu->id;
2601 infow.fType = MFT_STRING;
2602 infow.dwTypeData = wn;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002603 infow.cch = (UINT)wcslen(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 infow.hSubMenu = menu->submenu_id;
2605 n = InsertMenuItemW((parent == NULL)
2606 ? s_menuBar : parent->submenu_id,
2607 (UINT)pos, TRUE, &infow);
2608 vim_free(wn);
2609 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2610 /* Failed, try using non-wide function. */
2611 wn = NULL;
2612 }
2613 }
2614
2615 if (wn == NULL)
2616#endif
2617 {
2618 MENUITEMINFO info;
2619
2620 info.cbSize = sizeof(info);
2621 info.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID | MIIM_SUBMENU;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002622 info.dwItemData = (long_u)menu;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 info.wID = menu->id;
2624 info.fType = MFT_STRING;
2625 info.dwTypeData = (LPTSTR)menu->name;
2626 info.cch = (UINT)STRLEN(menu->name);
2627 info.hSubMenu = menu->submenu_id;
2628 InsertMenuItem((parent == NULL)
2629 ? s_menuBar : parent->submenu_id,
2630 (UINT)pos, TRUE, &info);
2631 }
2632 }
2633 }
2634
2635 /* Fix window size if menu may have wrapped */
2636 if (parent == NULL)
2637 gui_mswin_get_menu_height(!gui.starting);
2638#ifdef FEAT_TEAROFF
2639 else if (IsWindow(parent->tearoff_handle))
2640 rebuild_tearoff(parent);
2641#endif
2642}
2643
2644 void
2645gui_mch_show_popupmenu(vimmenu_T *menu)
2646{
2647 POINT mp;
2648
2649 (void)GetCursorPos((LPPOINT)&mp);
2650 gui_mch_show_popupmenu_at(menu, (int)mp.x, (int)mp.y);
2651}
2652
2653 void
Bram Moolenaar045e82d2005-07-08 22:25:33 +00002654gui_make_popup(char_u *path_name, int mouse_pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655{
2656 vimmenu_T *menu = gui_find_menu(path_name);
2657
2658 if (menu != NULL)
2659 {
2660 POINT p;
2661
2662 /* Find the position of the current cursor */
2663 GetDCOrgEx(s_hdc, &p);
Bram Moolenaar045e82d2005-07-08 22:25:33 +00002664 if (mouse_pos)
2665 {
2666 int mx, my;
2667
2668 gui_mch_getmouse(&mx, &my);
2669 p.x += mx;
2670 p.y += my;
2671 }
2672 else if (curwin != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 {
2674 p.x += TEXT_X(W_WINCOL(curwin) + curwin->w_wcol + 1);
2675 p.y += TEXT_Y(W_WINROW(curwin) + curwin->w_wrow + 1);
2676 }
2677 msg_scroll = FALSE;
2678 gui_mch_show_popupmenu_at(menu, (int)p.x, (int)p.y);
2679 }
2680}
2681
2682#if defined(FEAT_TEAROFF) || defined(PROTO)
2683/*
2684 * Given a menu descriptor, e.g. "File.New", find it in the menu hierarchy and
2685 * create it as a pseudo-"tearoff menu".
2686 */
2687 void
2688gui_make_tearoff(char_u *path_name)
2689{
2690 vimmenu_T *menu = gui_find_menu(path_name);
2691
2692 /* Found the menu, so tear it off. */
2693 if (menu != NULL)
2694 gui_mch_tearoff(menu->dname, menu, 0xffffL, 0xffffL);
2695}
2696#endif
2697
2698/*
2699 * Add a menu item to a menu
2700 */
2701 void
2702gui_mch_add_menu_item(
2703 vimmenu_T *menu,
2704 int idx)
2705{
2706 vimmenu_T *parent = menu->parent;
2707
2708 menu->id = s_menu_id++;
2709 menu->submenu_id = NULL;
2710
2711#ifdef FEAT_TEAROFF
2712 if (STRNCMP(menu->name, TEAR_STRING, TEAR_LEN) == 0)
2713 {
2714 InsertMenu(parent->submenu_id, (UINT)idx, MF_BITMAP|MF_BYPOSITION,
2715 (UINT)menu->id, (LPCTSTR) s_htearbitmap);
2716 }
2717 else
2718#endif
2719#ifdef FEAT_TOOLBAR
2720 if (menu_is_toolbar(parent->name))
2721 {
2722 TBBUTTON newtb;
2723
2724 vim_memset(&newtb, 0, sizeof(newtb));
2725 if (menu_is_separator(menu->name))
2726 {
2727 newtb.iBitmap = 0;
2728 newtb.fsStyle = TBSTYLE_SEP;
2729 }
2730 else
2731 {
2732 newtb.iBitmap = get_toolbar_bitmap(menu);
2733 newtb.fsStyle = TBSTYLE_BUTTON;
2734 }
2735 newtb.idCommand = menu->id;
2736 newtb.fsState = TBSTATE_ENABLED;
2737 newtb.iString = 0;
2738 SendMessage(s_toolbarhwnd, TB_INSERTBUTTON, (WPARAM)idx,
2739 (LPARAM)&newtb);
2740 menu->submenu_id = (HMENU)-1;
2741 }
2742 else
2743#endif
2744 {
2745#ifdef FEAT_MBYTE
2746 WCHAR *wn = NULL;
2747 int n;
2748
2749 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2750 {
2751 /* 'encoding' differs from active codepage: convert menu item name
2752 * and use wide function */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002753 wn = enc_to_utf16(menu->name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 if (wn != NULL)
2755 {
2756 n = InsertMenuW(parent->submenu_id, (UINT)idx,
2757 (menu_is_separator(menu->name)
2758 ? MF_SEPARATOR : MF_STRING) | MF_BYPOSITION,
2759 (UINT)menu->id, wn);
2760 vim_free(wn);
2761 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2762 /* Failed, try using non-wide function. */
2763 wn = NULL;
2764 }
2765 }
2766 if (wn == NULL)
2767#endif
2768 InsertMenu(parent->submenu_id, (UINT)idx,
2769 (menu_is_separator(menu->name) ? MF_SEPARATOR : MF_STRING)
2770 | MF_BYPOSITION,
2771 (UINT)menu->id, (LPCTSTR)menu->name);
2772#ifdef FEAT_TEAROFF
2773 if (IsWindow(parent->tearoff_handle))
2774 rebuild_tearoff(parent);
2775#endif
2776 }
2777}
2778
2779/*
2780 * Destroy the machine specific menu widget.
2781 */
2782 void
2783gui_mch_destroy_menu(vimmenu_T *menu)
2784{
2785#ifdef FEAT_TOOLBAR
2786 /*
2787 * is this a toolbar button?
2788 */
2789 if (menu->submenu_id == (HMENU)-1)
2790 {
2791 int iButton;
2792
2793 iButton = (int)SendMessage(s_toolbarhwnd, TB_COMMANDTOINDEX,
2794 (WPARAM)menu->id, 0);
2795 SendMessage(s_toolbarhwnd, TB_DELETEBUTTON, (WPARAM)iButton, 0);
2796 }
2797 else
2798#endif
2799 {
2800 if (menu->parent != NULL
2801 && menu_is_popup(menu->parent->dname)
2802 && menu->parent->submenu_id != NULL)
2803 RemoveMenu(menu->parent->submenu_id, menu->id, MF_BYCOMMAND);
2804 else
2805 RemoveMenu(s_menuBar, menu->id, MF_BYCOMMAND);
2806 if (menu->submenu_id != NULL)
2807 DestroyMenu(menu->submenu_id);
2808#ifdef FEAT_TEAROFF
2809 if (IsWindow(menu->tearoff_handle))
2810 DestroyWindow(menu->tearoff_handle);
2811 if (menu->parent != NULL
2812 && menu->parent->children != NULL
2813 && IsWindow(menu->parent->tearoff_handle))
2814 {
2815 /* This menu must not show up when rebuilding the tearoff window. */
2816 menu->modes = 0;
2817 rebuild_tearoff(menu->parent);
2818 }
2819#endif
2820 }
2821}
2822
2823#ifdef FEAT_TEAROFF
2824 static void
2825rebuild_tearoff(vimmenu_T *menu)
2826{
2827 /*hackish*/
2828 char_u tbuf[128];
2829 RECT trect;
2830 RECT rct;
2831 RECT roct;
2832 int x, y;
2833
2834 HWND thwnd = menu->tearoff_handle;
2835
2836 GetWindowText(thwnd, tbuf, 127);
2837 if (GetWindowRect(thwnd, &trect)
2838 && GetWindowRect(s_hwnd, &rct)
2839 && GetClientRect(s_hwnd, &roct))
2840 {
2841 x = trect.left - rct.left;
2842 y = (trect.top - rct.bottom + roct.bottom);
2843 }
2844 else
2845 {
2846 x = y = 0xffffL;
2847 }
2848 DestroyWindow(thwnd);
2849 if (menu->children != NULL)
2850 {
2851 gui_mch_tearoff(tbuf, menu, x, y);
2852 if (IsWindow(menu->tearoff_handle))
2853 (void) SetWindowPos(menu->tearoff_handle,
2854 NULL,
2855 (int)trect.left,
2856 (int)trect.top,
2857 0, 0,
2858 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
2859 }
2860}
2861#endif /* FEAT_TEAROFF */
2862
2863/*
2864 * Make a menu either grey or not grey.
2865 */
2866 void
2867gui_mch_menu_grey(
2868 vimmenu_T *menu,
2869 int grey)
2870{
2871#ifdef FEAT_TOOLBAR
2872 /*
2873 * is this a toolbar button?
2874 */
2875 if (menu->submenu_id == (HMENU)-1)
2876 {
2877 SendMessage(s_toolbarhwnd, TB_ENABLEBUTTON,
2878 (WPARAM)menu->id, (LPARAM) MAKELONG((grey ? FALSE : TRUE), 0) );
2879 }
2880 else
2881#endif
2882 if (grey)
2883 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_GRAYED);
2884 else
2885 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_ENABLED);
2886
2887#ifdef FEAT_TEAROFF
2888 if ((menu->parent != NULL) && (IsWindow(menu->parent->tearoff_handle)))
2889 {
2890 WORD menuID;
2891 HWND menuHandle;
2892
2893 /*
2894 * A tearoff button has changed state.
2895 */
2896 if (menu->children == NULL)
2897 menuID = (WORD)(menu->id);
2898 else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002899 menuID = (WORD)((long_u)(menu->submenu_id) | (DWORD)0x8000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 menuHandle = GetDlgItem(menu->parent->tearoff_handle, menuID);
2901 if (menuHandle)
2902 EnableWindow(menuHandle, !grey);
2903
2904 }
2905#endif
2906}
2907
2908#endif /* FEAT_MENU */
2909
2910
2911/* define some macros used to make the dialogue creation more readable */
2912
2913#define add_string(s) strcpy((LPSTR)p, s); (LPSTR)p += (strlen((LPSTR)p) + 1)
2914#define add_word(x) *p++ = (x)
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002915#define add_long(x) dwp = (DWORD *)p; *dwp++ = (x); p = (WORD *)dwp
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916
2917#if defined(FEAT_GUI_DIALOG) || defined(PROTO)
2918/*
2919 * stuff for dialogs
2920 */
2921
2922/*
2923 * The callback routine used by all the dialogs. Very simple. First,
2924 * acknowledges the INITDIALOG message so that Windows knows to do standard
2925 * dialog stuff (Return = default, Esc = cancel....) Second, if a button is
2926 * pressed, return that button's ID - IDCANCEL (2), which is the button's
2927 * number.
2928 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002929/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 static LRESULT CALLBACK
2931dialog_callback(
2932 HWND hwnd,
2933 UINT message,
2934 WPARAM wParam,
2935 LPARAM lParam)
2936{
2937 if (message == WM_INITDIALOG)
2938 {
2939 CenterWindow(hwnd, GetWindow(hwnd, GW_OWNER));
2940 /* Set focus to the dialog. Set the default button, if specified. */
2941 (void)SetFocus(hwnd);
2942 if (dialog_default_button > IDCANCEL)
2943 (void)SetFocus(GetDlgItem(hwnd, dialog_default_button));
Bram Moolenaar2b80e652007-08-14 14:57:55 +00002944 else
2945 /* We don't have a default, set focus on another element of the
2946 * dialog window, probably the icon */
2947 (void)SetFocus(GetDlgItem(hwnd, DLG_NONBUTTON_CONTROL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 return FALSE;
2949 }
2950
2951 if (message == WM_COMMAND)
2952 {
2953 int button = LOWORD(wParam);
2954
2955 /* Don't end the dialog if something was selected that was
2956 * not a button.
2957 */
2958 if (button >= DLG_NONBUTTON_CONTROL)
2959 return TRUE;
2960
2961 /* If the edit box exists, copy the string. */
2962 if (s_textfield != NULL)
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002963 {
2964# if defined(FEAT_MBYTE) && defined(WIN3264)
2965 /* If the OS is Windows NT, and 'encoding' differs from active
2966 * codepage: use wide function and convert text. */
2967 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2968 && enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2969 {
2970 WCHAR *wp = (WCHAR *)alloc(IOSIZE * sizeof(WCHAR));
2971 char_u *p;
2972
2973 GetDlgItemTextW(hwnd, DLG_NONBUTTON_CONTROL + 2, wp, IOSIZE);
2974 p = utf16_to_enc(wp, NULL);
2975 vim_strncpy(s_textfield, p, IOSIZE);
2976 vim_free(p);
2977 vim_free(wp);
2978 }
2979 else
2980# endif
2981 GetDlgItemText(hwnd, DLG_NONBUTTON_CONTROL + 2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 s_textfield, IOSIZE);
Bram Moolenaar3ca9a8a2009-01-28 20:23:17 +00002983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984
2985 /*
2986 * Need to check for IDOK because if the user just hits Return to
2987 * accept the default value, some reason this is what we get.
2988 */
2989 if (button == IDOK)
2990 {
2991 if (dialog_default_button > IDCANCEL)
2992 EndDialog(hwnd, dialog_default_button);
2993 }
2994 else
2995 EndDialog(hwnd, button - IDCANCEL);
2996 return TRUE;
2997 }
2998
2999 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
3000 {
3001 EndDialog(hwnd, 0);
3002 return TRUE;
3003 }
3004 return FALSE;
3005}
3006
3007/*
3008 * Create a dialog dynamically from the parameter strings.
3009 * type = type of dialog (question, alert, etc.)
3010 * title = dialog title. may be NULL for default title.
3011 * message = text to display. Dialog sizes to accommodate it.
3012 * buttons = '\n' separated list of button captions, default first.
3013 * dfltbutton = number of default button.
3014 *
3015 * This routine returns 1 if the first button is pressed,
3016 * 2 for the second, etc.
3017 *
3018 * 0 indicates Esc was pressed.
3019 * -1 for unexpected error
3020 *
3021 * If stubbing out this fn, return 1.
3022 */
3023
3024static const char_u *dlg_icons[] = /* must match names in resource file */
3025{
3026 "IDR_VIM",
3027 "IDR_VIM_ERROR",
3028 "IDR_VIM_ALERT",
3029 "IDR_VIM_INFO",
3030 "IDR_VIM_QUESTION"
3031};
3032
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 int
3034gui_mch_dialog(
3035 int type,
3036 char_u *title,
3037 char_u *message,
3038 char_u *buttons,
3039 int dfltbutton,
3040 char_u *textfield)
3041{
3042 WORD *p, *pdlgtemplate, *pnumitems;
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00003043 DWORD *dwp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 int numButtons;
3045 int *buttonWidths, *buttonPositions;
3046 int buttonYpos;
3047 int nchar, i;
3048 DWORD lStyle;
3049 int dlgwidth = 0;
3050 int dlgheight;
3051 int editboxheight;
3052 int horizWidth = 0;
3053 int msgheight;
3054 char_u *pstart;
3055 char_u *pend;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003056 char_u *last_white;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 char_u *tbuffer;
3058 RECT rect;
3059 HWND hwnd;
3060 HDC hdc;
3061 HFONT font, oldFont;
3062 TEXTMETRIC fontInfo;
3063 int fontHeight;
3064 int textWidth, minButtonWidth, messageWidth;
3065 int maxDialogWidth;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003066 int maxDialogHeight;
3067 int scroll_flag = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 int vertical;
3069 int dlgPaddingX;
3070 int dlgPaddingY;
3071#ifdef USE_SYSMENU_FONT
3072 LOGFONT lfSysmenu;
3073 int use_lfSysmenu = FALSE;
3074#endif
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003075 garray_T ga;
3076 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077
3078#ifndef NO_CONSOLE
3079 /* Don't output anything in silent mode ("ex -s") */
3080 if (silent_mode)
3081 return dfltbutton; /* return default option */
3082#endif
3083
Bram Moolenaar748bf032005-02-02 23:04:36 +00003084#if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085 /* If there is no window yet, open it. */
3086 if (s_hwnd == NULL && gui_mch_init() == FAIL)
3087 return dfltbutton;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003088#else
3089 if (s_hwnd == NULL)
3090 get_dialog_font_metrics();
3091#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092
3093 if ((type < 0) || (type > VIM_LAST_TYPE))
3094 type = 0;
3095
3096 /* allocate some memory for dialog template */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003097 /* TODO should compute this really */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003098 pdlgtemplate = p = (PWORD)LocalAlloc(LPTR,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003099 DLG_ALLOC_SIZE + STRLEN(message) * 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100
3101 if (p == NULL)
3102 return -1;
3103
3104 /*
3105 * make a copy of 'buttons' to fiddle with it. complier grizzles because
3106 * vim_strsave() doesn't take a const arg (why not?), so cast away the
3107 * const.
3108 */
3109 tbuffer = vim_strsave(buttons);
3110 if (tbuffer == NULL)
3111 return -1;
3112
3113 --dfltbutton; /* Change from one-based to zero-based */
3114
3115 /* Count buttons */
3116 numButtons = 1;
3117 for (i = 0; tbuffer[i] != '\0'; i++)
3118 {
3119 if (tbuffer[i] == DLG_BUTTON_SEP)
3120 numButtons++;
3121 }
3122 if (dfltbutton >= numButtons)
3123 dfltbutton = -1;
3124
3125 /* Allocate array to hold the width of each button */
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00003126 buttonWidths = (int *)lalloc(numButtons * sizeof(int), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 if (buttonWidths == NULL)
3128 return -1;
3129
3130 /* Allocate array to hold the X position of each button */
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00003131 buttonPositions = (int *)lalloc(numButtons * sizeof(int), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 if (buttonPositions == NULL)
3133 return -1;
3134
3135 /*
3136 * Calculate how big the dialog must be.
3137 */
3138 hwnd = GetDesktopWindow();
3139 hdc = GetWindowDC(hwnd);
3140#ifdef USE_SYSMENU_FONT
3141 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3142 {
3143 font = CreateFontIndirect(&lfSysmenu);
3144 use_lfSysmenu = TRUE;
3145 }
3146 else
3147#endif
3148 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3149 VARIABLE_PITCH , DLG_FONT_NAME);
3150 if (s_usenewlook)
3151 {
3152 oldFont = SelectFont(hdc, font);
3153 dlgPaddingX = DLG_PADDING_X;
3154 dlgPaddingY = DLG_PADDING_Y;
3155 }
3156 else
3157 {
3158 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
3159 dlgPaddingX = DLG_OLD_STYLE_PADDING_X;
3160 dlgPaddingY = DLG_OLD_STYLE_PADDING_Y;
3161 }
3162 GetTextMetrics(hdc, &fontInfo);
3163 fontHeight = fontInfo.tmHeight;
3164
3165 /* Minimum width for horizontal button */
3166 minButtonWidth = GetTextWidth(hdc, "Cancel", 6);
3167
3168 /* Maximum width of a dialog, if possible */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003169 if (s_hwnd == NULL)
3170 {
3171 RECT workarea_rect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172
Bram Moolenaarc716c302006-01-21 22:12:51 +00003173 /* We don't have a window, use the desktop area. */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003174 get_work_area(&workarea_rect);
3175 maxDialogWidth = workarea_rect.right - workarea_rect.left - 100;
3176 if (maxDialogWidth > 600)
3177 maxDialogWidth = 600;
3178 maxDialogHeight = workarea_rect.bottom - workarea_rect.top - 100;
3179 }
3180 else
3181 {
3182 /* Use our own window for the size, unless it's very small. */
3183 GetWindowRect(s_hwnd, &rect);
3184 maxDialogWidth = rect.right - rect.left
3185 - GetSystemMetrics(SM_CXFRAME) * 2;
3186 if (maxDialogWidth < DLG_MIN_MAX_WIDTH)
3187 maxDialogWidth = DLG_MIN_MAX_WIDTH;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003188
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003189 maxDialogHeight = rect.bottom - rect.top
3190 - GetSystemMetrics(SM_CXFRAME) * 2;
3191 if (maxDialogHeight < DLG_MIN_MAX_HEIGHT)
3192 maxDialogHeight = DLG_MIN_MAX_HEIGHT;
3193 }
3194
3195 /* Set dlgwidth to width of message.
3196 * Copy the message into "ga", changing NL to CR-NL and inserting line
3197 * breaks where needed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 pstart = message;
3199 messageWidth = 0;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003200 msgheight = 0;
3201 ga_init2(&ga, sizeof(char), 500);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 do
3203 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003204 msgheight += fontHeight; /* at least one line */
3205
3206 /* Need to figure out where to break the string. The system does it
3207 * at a word boundary, which would mean we can't compute the number of
3208 * wrapped lines. */
3209 textWidth = 0;
3210 last_white = NULL;
3211 for (pend = pstart; *pend != NUL && *pend != '\n'; )
Bram Moolenaar748bf032005-02-02 23:04:36 +00003212 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003213#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003214 l = (*mb_ptr2len)(pend);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003215#else
3216 l = 1;
3217#endif
3218 if (l == 1 && vim_iswhite(*pend)
3219 && textWidth > maxDialogWidth * 3 / 4)
3220 last_white = pend;
3221 textWidth += GetTextWidth(hdc, pend, l);
3222 if (textWidth >= maxDialogWidth)
Bram Moolenaar748bf032005-02-02 23:04:36 +00003223 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003224 /* Line will wrap. */
3225 messageWidth = maxDialogWidth;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003226 msgheight += fontHeight;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003227 textWidth = 0;
3228
3229 if (last_white != NULL)
3230 {
3231 /* break the line just after a space */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003232 ga.ga_len -= (int)(pend - (last_white + 1));
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003233 pend = last_white + 1;
3234 last_white = NULL;
3235 }
3236 ga_append(&ga, '\r');
3237 ga_append(&ga, '\n');
3238 continue;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003239 }
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003240
3241 while (--l >= 0)
3242 ga_append(&ga, *pend++);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003243 }
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003244 if (textWidth > messageWidth)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 messageWidth = textWidth;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003246
3247 ga_append(&ga, '\r');
3248 ga_append(&ga, '\n');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249 pstart = pend + 1;
3250 } while (*pend != NUL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003251
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003252 if (ga.ga_data != NULL)
3253 message = ga.ga_data;
3254
Bram Moolenaar748bf032005-02-02 23:04:36 +00003255 messageWidth += 10; /* roundoff space */
3256
3257 /* Restrict the size to a maximum. Causes a scrollbar to show up. */
3258 if (msgheight > maxDialogHeight)
3259 {
3260 msgheight = maxDialogHeight;
3261 scroll_flag = WS_VSCROLL;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003262 messageWidth += GetSystemMetrics(SM_CXVSCROLL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003263 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264
3265 /* Add width of icon to dlgwidth, and some space */
Bram Moolenaar748bf032005-02-02 23:04:36 +00003266 dlgwidth = messageWidth + DLG_ICON_WIDTH + 3 * dlgPaddingX;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267
3268 if (msgheight < DLG_ICON_HEIGHT)
3269 msgheight = DLG_ICON_HEIGHT;
3270
3271 /*
3272 * Check button names. A long one will make the dialog wider.
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00003273 * When called early (-register error message) p_go isn't initialized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 */
Bram Moolenaaraea02fa2007-05-04 20:29:09 +00003275 vertical = (p_go != NULL && vim_strchr(p_go, GO_VERTICAL) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 if (!vertical)
3277 {
3278 // Place buttons horizontally if they fit.
3279 horizWidth = dlgPaddingX;
3280 pstart = tbuffer;
3281 i = 0;
3282 do
3283 {
3284 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
3285 if (pend == NULL)
3286 pend = pstart + STRLEN(pstart); // Last button name.
3287 textWidth = GetTextWidth(hdc, pstart, (int)(pend - pstart));
3288 if (textWidth < minButtonWidth)
3289 textWidth = minButtonWidth;
3290 textWidth += dlgPaddingX; /* Padding within button */
3291 buttonWidths[i] = textWidth;
3292 buttonPositions[i++] = horizWidth;
3293 horizWidth += textWidth + dlgPaddingX; /* Pad between buttons */
3294 pstart = pend + 1;
3295 } while (*pend != NUL);
3296
3297 if (horizWidth > maxDialogWidth)
3298 vertical = TRUE; // Too wide to fit on the screen.
3299 else if (horizWidth > dlgwidth)
3300 dlgwidth = horizWidth;
3301 }
3302
3303 if (vertical)
3304 {
3305 // Stack buttons vertically.
3306 pstart = tbuffer;
3307 do
3308 {
3309 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
3310 if (pend == NULL)
3311 pend = pstart + STRLEN(pstart); // Last button name.
3312 textWidth = GetTextWidth(hdc, pstart, (int)(pend - pstart));
3313 textWidth += dlgPaddingX; /* Padding within button */
3314 textWidth += DLG_VERT_PADDING_X * 2; /* Padding around button */
3315 if (textWidth > dlgwidth)
3316 dlgwidth = textWidth;
3317 pstart = pend + 1;
3318 } while (*pend != NUL);
3319 }
3320
3321 if (dlgwidth < DLG_MIN_WIDTH)
3322 dlgwidth = DLG_MIN_WIDTH; /* Don't allow a really thin dialog!*/
3323
3324 /* start to fill in the dlgtemplate information. addressing by WORDs */
3325 if (s_usenewlook)
3326 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE |DS_SETFONT;
3327 else
3328 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE;
3329
3330 add_long(lStyle);
3331 add_long(0); // (lExtendedStyle)
3332 pnumitems = p; /*save where the number of items must be stored*/
3333 add_word(0); // NumberOfItems(will change later)
3334 add_word(10); // x
3335 add_word(10); // y
3336 add_word(PixelToDialogX(dlgwidth)); // cx
3337
3338 // Dialog height.
3339 if (vertical)
3340 dlgheight = msgheight + 2 * dlgPaddingY +
3341 DLG_VERT_PADDING_Y + 2 * fontHeight * numButtons;
3342 else
3343 dlgheight = msgheight + 3 * dlgPaddingY + 2 * fontHeight;
3344
3345 // Dialog needs to be taller if contains an edit box.
3346 editboxheight = fontHeight + dlgPaddingY + 4 * DLG_VERT_PADDING_Y;
3347 if (textfield != NULL)
3348 dlgheight += editboxheight;
3349
3350 add_word(PixelToDialogY(dlgheight));
3351
3352 add_word(0); // Menu
3353 add_word(0); // Class
3354
3355 /* copy the title of the dialog */
3356 nchar = nCopyAnsiToWideChar(p, (title ?
3357 (LPSTR)title :
3358 (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
3359 p += nchar;
3360
3361 if (s_usenewlook)
3362 {
3363 /* do the font, since DS_3DLOOK doesn't work properly */
3364#ifdef USE_SYSMENU_FONT
3365 if (use_lfSysmenu)
3366 {
3367 /* point size */
3368 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
3369 GetDeviceCaps(hdc, LOGPIXELSY));
3370 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
3371 }
3372 else
3373#endif
3374 {
3375 *p++ = DLG_FONT_POINT_SIZE; // point size
3376 nchar = nCopyAnsiToWideChar(p, TEXT(DLG_FONT_NAME));
3377 }
3378 p += nchar;
3379 }
3380
3381 buttonYpos = msgheight + 2 * dlgPaddingY;
3382
3383 if (textfield != NULL)
3384 buttonYpos += editboxheight;
3385
3386 pstart = tbuffer;
3387 if (!vertical)
3388 horizWidth = (dlgwidth - horizWidth) / 2; /* Now it's X offset */
3389 for (i = 0; i < numButtons; i++)
3390 {
3391 /* get end of this button. */
3392 for ( pend = pstart;
3393 *pend && (*pend != DLG_BUTTON_SEP);
3394 pend++)
3395 ;
3396
3397 if (*pend)
3398 *pend = '\0';
3399
3400 /*
3401 * old NOTE:
3402 * setting the BS_DEFPUSHBUTTON style doesn't work because Windows sets
3403 * the focus to the first tab-able button and in so doing makes that
3404 * the default!! Grrr. Workaround: Make the default button the only
3405 * one with WS_TABSTOP style. Means user can't tab between buttons, but
3406 * he/she can use arrow keys.
3407 *
3408 * new NOTE: BS_DEFPUSHBUTTON is required to be able to select the
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00003409 * right button when hitting <Enter>. E.g., for the ":confirm quit"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 * dialog. Also needed for when the textfield is the default control.
3411 * It appears to work now (perhaps not on Win95?).
3412 */
3413 if (vertical)
3414 {
3415 p = add_dialog_element(p,
3416 (i == dfltbutton
3417 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
3418 PixelToDialogX(DLG_VERT_PADDING_X),
3419 PixelToDialogY(buttonYpos /* TBK */
3420 + 2 * fontHeight * i),
3421 PixelToDialogX(dlgwidth - 2 * DLG_VERT_PADDING_X),
3422 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
3423 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, pstart);
3424 }
3425 else
3426 {
3427 p = add_dialog_element(p,
3428 (i == dfltbutton
3429 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
3430 PixelToDialogX(horizWidth + buttonPositions[i]),
3431 PixelToDialogY(buttonYpos), /* TBK */
3432 PixelToDialogX(buttonWidths[i]),
3433 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
3434 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, pstart);
3435 }
3436 pstart = pend + 1; /*next button*/
3437 }
3438 *pnumitems += numButtons;
3439
3440 /* Vim icon */
3441 p = add_dialog_element(p, SS_ICON,
3442 PixelToDialogX(dlgPaddingX),
3443 PixelToDialogY(dlgPaddingY),
3444 PixelToDialogX(DLG_ICON_WIDTH),
3445 PixelToDialogY(DLG_ICON_HEIGHT),
3446 DLG_NONBUTTON_CONTROL + 0, (WORD)0x0082,
3447 dlg_icons[type]);
3448
Bram Moolenaar748bf032005-02-02 23:04:36 +00003449#if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450 /* Dialog message */
3451 p = add_dialog_element(p, SS_LEFT,
3452 PixelToDialogX(2 * dlgPaddingX + DLG_ICON_WIDTH),
3453 PixelToDialogY(dlgPaddingY),
3454 (WORD)(PixelToDialogX(messageWidth) + 1),
3455 PixelToDialogY(msgheight),
3456 DLG_NONBUTTON_CONTROL + 1, (WORD)0x0082, message);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003457#else
3458 /* Dialog message */
3459 p = add_dialog_element(p, ES_LEFT|scroll_flag|ES_MULTILINE|ES_READONLY,
3460 PixelToDialogX(2 * dlgPaddingX + DLG_ICON_WIDTH),
3461 PixelToDialogY(dlgPaddingY),
3462 (WORD)(PixelToDialogX(messageWidth) + 1),
3463 PixelToDialogY(msgheight),
3464 DLG_NONBUTTON_CONTROL + 1, (WORD)0x0081, message);
3465#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466
3467 /* Edit box */
3468 if (textfield != NULL)
3469 {
3470 p = add_dialog_element(p, ES_LEFT|ES_AUTOHSCROLL|WS_TABSTOP|WS_BORDER,
3471 PixelToDialogX(2 * dlgPaddingX),
3472 PixelToDialogY(2 * dlgPaddingY + msgheight),
3473 PixelToDialogX(dlgwidth - 4 * dlgPaddingX),
3474 PixelToDialogY(fontHeight + dlgPaddingY),
3475 DLG_NONBUTTON_CONTROL + 2, (WORD)0x0081, textfield);
3476 *pnumitems += 1;
3477 }
3478
3479 *pnumitems += 2;
3480
3481 SelectFont(hdc, oldFont);
3482 DeleteObject(font);
3483 ReleaseDC(hwnd, hdc);
3484
3485 /* Let the dialog_callback() function know which button to make default
3486 * If we have an edit box, make that the default. We also need to tell
3487 * dialog_callback() if this dialog contains an edit box or not. We do
3488 * this by setting s_textfield if it does.
3489 */
3490 if (textfield != NULL)
3491 {
3492 dialog_default_button = DLG_NONBUTTON_CONTROL + 2;
3493 s_textfield = textfield;
3494 }
3495 else
3496 {
3497 dialog_default_button = IDCANCEL + 1 + dfltbutton;
3498 s_textfield = NULL;
3499 }
3500
3501 /* show the dialog box modally and get a return value */
3502 nchar = (int)DialogBoxIndirect(
3503 s_hinst,
3504 (LPDLGTEMPLATE)pdlgtemplate,
3505 s_hwnd,
3506 (DLGPROC)dialog_callback);
3507
3508 LocalFree(LocalHandle(pdlgtemplate));
3509 vim_free(tbuffer);
3510 vim_free(buttonWidths);
3511 vim_free(buttonPositions);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003512 vim_free(ga.ga_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513
3514 /* Focus back to our window (for when MDI is used). */
3515 (void)SetFocus(s_hwnd);
3516
3517 return nchar;
3518}
3519
3520#endif /* FEAT_GUI_DIALOG */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003521
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522/*
3523 * Put a simple element (basic class) onto a dialog template in memory.
3524 * return a pointer to where the next item should be added.
3525 *
3526 * parameters:
3527 * lStyle = additional style flags
3528 * (be careful, NT3.51 & Win32s will ignore the new ones)
3529 * x,y = x & y positions IN DIALOG UNITS
3530 * w,h = width and height IN DIALOG UNITS
3531 * Id = ID used in messages
3532 * clss = class ID, e.g 0x0080 for a button, 0x0082 for a static
3533 * caption = usually text or resource name
3534 *
3535 * TODO: use the length information noted here to enable the dialog creation
3536 * routines to work out more exactly how much memory they need to alloc.
3537 */
3538 static PWORD
3539add_dialog_element(
3540 PWORD p,
3541 DWORD lStyle,
3542 WORD x,
3543 WORD y,
3544 WORD w,
3545 WORD h,
3546 WORD Id,
3547 WORD clss,
3548 const char *caption)
3549{
3550 int nchar;
3551
3552 p = lpwAlign(p); /* Align to dword boundary*/
3553 lStyle = lStyle | WS_VISIBLE | WS_CHILD;
3554 *p++ = LOWORD(lStyle);
3555 *p++ = HIWORD(lStyle);
3556 *p++ = 0; // LOWORD (lExtendedStyle)
3557 *p++ = 0; // HIWORD (lExtendedStyle)
3558 *p++ = x;
3559 *p++ = y;
3560 *p++ = w;
3561 *p++ = h;
3562 *p++ = Id; //9 or 10 words in all
3563
3564 *p++ = (WORD)0xffff;
3565 *p++ = clss; //2 more here
3566
3567 nchar = nCopyAnsiToWideChar(p, (LPSTR)caption); //strlen(caption)+1
3568 p += nchar;
3569
3570 *p++ = 0; // advance pointer over nExtraStuff WORD - 2 more
3571
3572 return p; //total = 15+ (strlen(caption)) words
3573 // = 30 + 2(strlen(caption) bytes reqd
3574}
3575
3576
3577/*
3578 * Helper routine. Take an input pointer, return closest pointer that is
3579 * aligned on a DWORD (4 byte) boundary. Taken from the Win32SDK samples.
3580 */
3581 static LPWORD
3582lpwAlign(
3583 LPWORD lpIn)
3584{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003585 long_u ul;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003587 ul = (long_u)lpIn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 ul += 3;
3589 ul >>= 2;
3590 ul <<= 2;
3591 return (LPWORD)ul;
3592}
3593
3594/*
3595 * Helper routine. Takes second parameter as Ansi string, copies it to first
3596 * parameter as wide character (16-bits / char) string, and returns integer
3597 * number of wide characters (words) in string (including the trailing wide
3598 * char NULL). Partly taken from the Win32SDK samples.
3599 */
3600 static int
3601nCopyAnsiToWideChar(
3602 LPWORD lpWCStr,
3603 LPSTR lpAnsiIn)
3604{
3605 int nChar = 0;
3606#ifdef FEAT_MBYTE
3607 int len = lstrlen(lpAnsiIn) + 1; /* include NUL character */
3608 int i;
3609 WCHAR *wn;
3610
3611 if (enc_codepage == 0 && (int)GetACP() != enc_codepage)
3612 {
3613 /* Not a codepage, use our own conversion function. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003614 wn = enc_to_utf16(lpAnsiIn, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615 if (wn != NULL)
3616 {
3617 wcscpy(lpWCStr, wn);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003618 nChar = (int)wcslen(wn) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619 vim_free(wn);
3620 }
3621 }
3622 if (nChar == 0)
3623 /* Use Win32 conversion function. */
3624 nChar = MultiByteToWideChar(
3625 enc_codepage > 0 ? enc_codepage : CP_ACP,
3626 MB_PRECOMPOSED,
3627 lpAnsiIn, len,
3628 lpWCStr, len);
3629 for (i = 0; i < nChar; ++i)
3630 if (lpWCStr[i] == (WORD)'\t') /* replace tabs with spaces */
3631 lpWCStr[i] = (WORD)' ';
3632#else
3633 do
3634 {
3635 if (*lpAnsiIn == '\t')
3636 *lpWCStr++ = (WORD)' ';
3637 else
3638 *lpWCStr++ = (WORD)*lpAnsiIn;
3639 nChar++;
3640 } while (*lpAnsiIn++);
3641#endif
3642
3643 return nChar;
3644}
3645
3646
3647#ifdef FEAT_TEAROFF
3648/*
3649 * The callback function for all the modeless dialogs that make up the
3650 * "tearoff menus" Very simple - forward button presses (to fool Vim into
3651 * thinking its menus have been clicked), and go away when closed.
3652 */
3653 static LRESULT CALLBACK
3654tearoff_callback(
3655 HWND hwnd,
3656 UINT message,
3657 WPARAM wParam,
3658 LPARAM lParam)
3659{
3660 if (message == WM_INITDIALOG)
3661 return (TRUE);
3662
3663 /* May show the mouse pointer again. */
3664 HandleMouseHide(message, lParam);
3665
3666 if (message == WM_COMMAND)
3667 {
3668 if ((WORD)(LOWORD(wParam)) & 0x8000)
3669 {
3670 POINT mp;
3671 RECT rect;
3672
3673 if (GetCursorPos(&mp) && GetWindowRect(hwnd, &rect))
3674 {
3675 (void)TrackPopupMenu(
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003676 (HMENU)(long_u)(LOWORD(wParam) ^ 0x8000),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 TPM_LEFTALIGN | TPM_LEFTBUTTON,
3678 (int)rect.right - 8,
3679 (int)mp.y,
3680 (int)0, /*reserved param*/
3681 s_hwnd,
3682 NULL);
3683 /*
3684 * NOTE: The pop-up menu can eat the mouse up event.
3685 * We deal with this in normal.c.
3686 */
3687 }
3688 }
3689 else
3690 /* Pass on messages to the main Vim window */
3691 PostMessage(s_hwnd, WM_COMMAND, LOWORD(wParam), 0);
3692 /*
3693 * Give main window the focus back: this is so after
3694 * choosing a tearoff button you can start typing again
3695 * straight away.
3696 */
3697 (void)SetFocus(s_hwnd);
3698 return TRUE;
3699 }
3700 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
3701 {
3702 DestroyWindow(hwnd);
3703 return TRUE;
3704 }
3705
3706 /* When moved around, give main window the focus back. */
3707 if (message == WM_EXITSIZEMOVE)
3708 (void)SetActiveWindow(s_hwnd);
3709
3710 return FALSE;
3711}
3712#endif
3713
3714
3715/*
3716 * Decide whether to use the "new look" (small, non-bold font) or the "old
3717 * look" (big, clanky font) for dialogs, and work out a few values for use
3718 * later accordingly.
3719 */
3720 static void
3721get_dialog_font_metrics(void)
3722{
3723 HDC hdc;
3724 HFONT hfontTools = 0;
3725 DWORD dlgFontSize;
3726 SIZE size;
3727#ifdef USE_SYSMENU_FONT
3728 LOGFONT lfSysmenu;
3729#endif
3730
3731 s_usenewlook = FALSE;
3732
3733 /*
3734 * For NT3.51 and Win32s, we stick with the old look
3735 * because it matches everything else.
3736 */
3737 if (!is_winnt_3())
3738 {
3739#ifdef USE_SYSMENU_FONT
3740 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3741 hfontTools = CreateFontIndirect(&lfSysmenu);
3742 else
3743#endif
3744 hfontTools = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0,
3745 0, 0, 0, 0, VARIABLE_PITCH , DLG_FONT_NAME);
3746
3747 if (hfontTools)
3748 {
3749 hdc = GetDC(s_hwnd);
3750 SelectObject(hdc, hfontTools);
3751 /*
3752 * GetTextMetrics() doesn't return the right value in
3753 * tmAveCharWidth, so we have to figure out the dialog base units
3754 * ourselves.
3755 */
3756 GetTextExtentPoint(hdc,
3757 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
3758 52, &size);
3759 ReleaseDC(s_hwnd, hdc);
3760
3761 s_dlgfntwidth = (WORD)((size.cx / 26 + 1) / 2);
3762 s_dlgfntheight = (WORD)size.cy;
3763 s_usenewlook = TRUE;
3764 }
3765 }
3766
3767 if (!s_usenewlook)
3768 {
3769 dlgFontSize = GetDialogBaseUnits(); /* fall back to big old system*/
3770 s_dlgfntwidth = LOWORD(dlgFontSize);
3771 s_dlgfntheight = HIWORD(dlgFontSize);
3772 }
3773}
3774
3775#if defined(FEAT_MENU) && defined(FEAT_TEAROFF)
3776/*
3777 * Create a pseudo-"tearoff menu" based on the child
3778 * items of a given menu pointer.
3779 */
3780 static void
3781gui_mch_tearoff(
3782 char_u *title,
3783 vimmenu_T *menu,
3784 int initX,
3785 int initY)
3786{
3787 WORD *p, *pdlgtemplate, *pnumitems, *ptrueheight;
3788 int template_len;
3789 int nchar, textWidth, submenuWidth;
3790 DWORD lStyle;
3791 DWORD lExtendedStyle;
3792 WORD dlgwidth;
3793 WORD menuID;
3794 vimmenu_T *pmenu;
3795 vimmenu_T *the_menu = menu;
3796 HWND hwnd;
3797 HDC hdc;
3798 HFONT font, oldFont;
3799 int col, spaceWidth, len;
3800 int columnWidths[2];
3801 char_u *label, *text;
3802 int acLen = 0;
3803 int nameLen;
3804 int padding0, padding1, padding2 = 0;
3805 int sepPadding=0;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003806 int x;
3807 int y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808#ifdef USE_SYSMENU_FONT
3809 LOGFONT lfSysmenu;
3810 int use_lfSysmenu = FALSE;
3811#endif
3812
3813 /*
3814 * If this menu is already torn off, move it to the mouse position.
3815 */
3816 if (IsWindow(menu->tearoff_handle))
3817 {
3818 POINT mp;
3819 if (GetCursorPos((LPPOINT)&mp))
3820 {
3821 SetWindowPos(menu->tearoff_handle, NULL, mp.x, mp.y, 0, 0,
3822 SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER);
3823 }
3824 return;
3825 }
3826
3827 /*
3828 * Create a new tearoff.
3829 */
3830 if (*title == MNU_HIDDEN_CHAR)
3831 title++;
3832
3833 /* Allocate memory to store the dialog template. It's made bigger when
3834 * needed. */
3835 template_len = DLG_ALLOC_SIZE;
3836 pdlgtemplate = p = (WORD *)LocalAlloc(LPTR, template_len);
3837 if (p == NULL)
3838 return;
3839
3840 hwnd = GetDesktopWindow();
3841 hdc = GetWindowDC(hwnd);
3842#ifdef USE_SYSMENU_FONT
3843 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3844 {
3845 font = CreateFontIndirect(&lfSysmenu);
3846 use_lfSysmenu = TRUE;
3847 }
3848 else
3849#endif
3850 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3851 VARIABLE_PITCH , DLG_FONT_NAME);
3852 if (s_usenewlook)
3853 oldFont = SelectFont(hdc, font);
3854 else
3855 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
3856
3857 /* Calculate width of a single space. Used for padding columns to the
3858 * right width. */
3859 spaceWidth = GetTextWidth(hdc, " ", 1);
3860
3861 /* Figure out max width of the text column, the accelerator column and the
3862 * optional submenu column. */
3863 submenuWidth = 0;
3864 for (col = 0; col < 2; col++)
3865 {
3866 columnWidths[col] = 0;
3867 for (pmenu = menu->children; pmenu != NULL; pmenu = pmenu->next)
3868 {
3869 /* Use "dname" here to compute the width of the visible text. */
3870 text = (col == 0) ? pmenu->dname : pmenu->actext;
3871 if (text != NULL && *text != NUL)
3872 {
3873 textWidth = GetTextWidthEnc(hdc, text, (int)STRLEN(text));
3874 if (textWidth > columnWidths[col])
3875 columnWidths[col] = textWidth;
3876 }
3877 if (pmenu->children != NULL)
3878 submenuWidth = TEAROFF_COLUMN_PADDING * spaceWidth;
3879 }
3880 }
3881 if (columnWidths[1] == 0)
3882 {
3883 /* no accelerators */
3884 if (submenuWidth != 0)
3885 columnWidths[0] += submenuWidth;
3886 else
3887 columnWidths[0] += spaceWidth;
3888 }
3889 else
3890 {
3891 /* there is an accelerator column */
3892 columnWidths[0] += TEAROFF_COLUMN_PADDING * spaceWidth;
3893 columnWidths[1] += submenuWidth;
3894 }
3895
3896 /*
3897 * Now find the total width of our 'menu'.
3898 */
3899 textWidth = columnWidths[0] + columnWidths[1];
3900 if (submenuWidth != 0)
3901 {
3902 submenuWidth = GetTextWidth(hdc, TEAROFF_SUBMENU_LABEL,
3903 (int)STRLEN(TEAROFF_SUBMENU_LABEL));
3904 textWidth += submenuWidth;
3905 }
3906 dlgwidth = GetTextWidthEnc(hdc, title, (int)STRLEN(title));
3907 if (textWidth > dlgwidth)
3908 dlgwidth = textWidth;
3909 dlgwidth += 2 * TEAROFF_PADDING_X + TEAROFF_BUTTON_PAD_X;
3910
3911 /* W95 can't do thin dialogs, they look v. weird! */
3912 if (mch_windows95() && dlgwidth < TEAROFF_MIN_WIDTH)
3913 dlgwidth = TEAROFF_MIN_WIDTH;
3914
3915 /* start to fill in the dlgtemplate information. addressing by WORDs */
3916 if (s_usenewlook)
3917 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU |DS_SETFONT| WS_VISIBLE;
3918 else
3919 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU | WS_VISIBLE;
3920
3921 lExtendedStyle = WS_EX_TOOLWINDOW|WS_EX_STATICEDGE;
3922 *p++ = LOWORD(lStyle);
3923 *p++ = HIWORD(lStyle);
3924 *p++ = LOWORD(lExtendedStyle);
3925 *p++ = HIWORD(lExtendedStyle);
3926 pnumitems = p; /* save where the number of items must be stored */
3927 *p++ = 0; // NumberOfItems(will change later)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003928 gui_mch_getmouse(&x, &y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 if (initX == 0xffffL)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003930 *p++ = PixelToDialogX(x); // x
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931 else
3932 *p++ = PixelToDialogX(initX); // x
3933 if (initY == 0xffffL)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003934 *p++ = PixelToDialogY(y); // y
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 else
3936 *p++ = PixelToDialogY(initY); // y
3937 *p++ = PixelToDialogX(dlgwidth); // cx
3938 ptrueheight = p;
3939 *p++ = 0; // dialog height: changed later anyway
3940 *p++ = 0; // Menu
3941 *p++ = 0; // Class
3942
3943 /* copy the title of the dialog */
3944 nchar = nCopyAnsiToWideChar(p, ((*title)
3945 ? (LPSTR)title
3946 : (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
3947 p += nchar;
3948
3949 if (s_usenewlook)
3950 {
3951 /* do the font, since DS_3DLOOK doesn't work properly */
3952#ifdef USE_SYSMENU_FONT
3953 if (use_lfSysmenu)
3954 {
3955 /* point size */
3956 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
3957 GetDeviceCaps(hdc, LOGPIXELSY));
3958 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
3959 }
3960 else
3961#endif
3962 {
3963 *p++ = DLG_FONT_POINT_SIZE; // point size
3964 nchar = nCopyAnsiToWideChar (p, TEXT(DLG_FONT_NAME));
3965 }
3966 p += nchar;
3967 }
3968
3969 /*
3970 * Loop over all the items in the menu.
3971 * But skip over the tearbar.
3972 */
3973 if (STRCMP(menu->children->name, TEAR_STRING) == 0)
3974 menu = menu->children->next;
3975 else
3976 menu = menu->children;
3977 for ( ; menu != NULL; menu = menu->next)
3978 {
3979 if (menu->modes == 0) /* this menu has just been deleted */
3980 continue;
3981 if (menu_is_separator(menu->dname))
3982 {
3983 sepPadding += 3;
3984 continue;
3985 }
3986
3987 /* Check if there still is plenty of room in the template. Make it
3988 * larger when needed. */
3989 if (((char *)p - (char *)pdlgtemplate) + 1000 > template_len)
3990 {
3991 WORD *newp;
3992
3993 newp = (WORD *)LocalAlloc(LPTR, template_len + 4096);
3994 if (newp != NULL)
3995 {
3996 template_len += 4096;
3997 mch_memmove(newp, pdlgtemplate,
3998 (char *)p - (char *)pdlgtemplate);
3999 p = newp + (p - pdlgtemplate);
4000 pnumitems = newp + (pnumitems - pdlgtemplate);
4001 ptrueheight = newp + (ptrueheight - pdlgtemplate);
4002 LocalFree(LocalHandle(pdlgtemplate));
4003 pdlgtemplate = newp;
4004 }
4005 }
4006
4007 /* Figure out minimal length of this menu label. Use "name" for the
4008 * actual text, "dname" for estimating the displayed size. "name"
4009 * has "&a" for mnemonic and includes the accelerator. */
4010 len = nameLen = (int)STRLEN(menu->name);
4011 padding0 = (columnWidths[0] - GetTextWidthEnc(hdc, menu->dname,
4012 (int)STRLEN(menu->dname))) / spaceWidth;
4013 len += padding0;
4014
4015 if (menu->actext != NULL)
4016 {
4017 acLen = (int)STRLEN(menu->actext);
4018 len += acLen;
4019 textWidth = GetTextWidthEnc(hdc, menu->actext, acLen);
4020 }
4021 else
4022 textWidth = 0;
4023 padding1 = (columnWidths[1] - textWidth) / spaceWidth;
4024 len += padding1;
4025
4026 if (menu->children == NULL)
4027 {
4028 padding2 = submenuWidth / spaceWidth;
4029 len += padding2;
4030 menuID = (WORD)(menu->id);
4031 }
4032 else
4033 {
4034 len += (int)STRLEN(TEAROFF_SUBMENU_LABEL);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004035 menuID = (WORD)((long_u)(menu->submenu_id) | (DWORD)0x8000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 }
4037
4038 /* Allocate menu label and fill it in */
4039 text = label = alloc((unsigned)len + 1);
4040 if (label == NULL)
4041 break;
4042
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004043 vim_strncpy(text, menu->name, nameLen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 text = vim_strchr(text, TAB); /* stop at TAB before actext */
4045 if (text == NULL)
4046 text = label + nameLen; /* no actext, use whole name */
4047 while (padding0-- > 0)
4048 *text++ = ' ';
4049 if (menu->actext != NULL)
4050 {
4051 STRNCPY(text, menu->actext, acLen);
4052 text += acLen;
4053 }
4054 while (padding1-- > 0)
4055 *text++ = ' ';
4056 if (menu->children != NULL)
4057 {
4058 STRCPY(text, TEAROFF_SUBMENU_LABEL);
4059 text += STRLEN(TEAROFF_SUBMENU_LABEL);
4060 }
4061 else
4062 {
4063 while (padding2-- > 0)
4064 *text++ = ' ';
4065 }
4066 *text = NUL;
4067
4068 /*
4069 * BS_LEFT will just be ignored on Win32s/NT3.5x - on
4070 * W95/NT4 it makes the tear-off look more like a menu.
4071 */
4072 p = add_dialog_element(p,
4073 BS_PUSHBUTTON|BS_LEFT,
4074 (WORD)PixelToDialogX(TEAROFF_PADDING_X),
4075 (WORD)(sepPadding + 1 + 13 * (*pnumitems)),
4076 (WORD)PixelToDialogX(dlgwidth - 2 * TEAROFF_PADDING_X),
4077 (WORD)12,
4078 menuID, (WORD)0x0080, label);
4079 vim_free(label);
4080 (*pnumitems)++;
4081 }
4082
4083 *ptrueheight = (WORD)(sepPadding + 1 + 13 * (*pnumitems));
4084
4085
4086 /* show modelessly */
4087 the_menu->tearoff_handle = CreateDialogIndirect(
4088 s_hinst,
4089 (LPDLGTEMPLATE)pdlgtemplate,
4090 s_hwnd,
4091 (DLGPROC)tearoff_callback);
4092
4093 LocalFree(LocalHandle(pdlgtemplate));
4094 SelectFont(hdc, oldFont);
4095 DeleteObject(font);
4096 ReleaseDC(hwnd, hdc);
4097
4098 /*
4099 * Reassert ourselves as the active window. This is so that after creating
4100 * a tearoff, the user doesn't have to click with the mouse just to start
4101 * typing again!
4102 */
4103 (void)SetActiveWindow(s_hwnd);
4104
4105 /* make sure the right buttons are enabled */
4106 force_menu_update = TRUE;
4107}
4108#endif
4109
4110#if defined(FEAT_TOOLBAR) || defined(PROTO)
4111#include "gui_w32_rc.h"
4112
4113/* This not defined in older SDKs */
4114# ifndef TBSTYLE_FLAT
4115# define TBSTYLE_FLAT 0x0800
4116# endif
4117
4118/*
4119 * Create the toolbar, initially unpopulated.
4120 * (just like the menu, there are no defaults, it's all
4121 * set up through menu.vim)
4122 */
4123 static void
4124initialise_toolbar(void)
4125{
4126 InitCommonControls();
4127 s_toolbarhwnd = CreateToolbarEx(
4128 s_hwnd,
4129 WS_CHILD | TBSTYLE_TOOLTIPS | TBSTYLE_FLAT,
4130 4000, //any old big number
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00004131 31, //number of images in initial bitmap
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 s_hinst,
4133 IDR_TOOLBAR1, // id of initial bitmap
4134 NULL,
4135 0, // initial number of buttons
4136 TOOLBAR_BUTTON_WIDTH, //api guide is wrong!
4137 TOOLBAR_BUTTON_HEIGHT,
4138 TOOLBAR_BUTTON_WIDTH,
4139 TOOLBAR_BUTTON_HEIGHT,
4140 sizeof(TBBUTTON)
4141 );
4142
4143 gui_mch_show_toolbar(vim_strchr(p_go, GO_TOOLBAR) != NULL);
4144}
4145
4146 static int
4147get_toolbar_bitmap(vimmenu_T *menu)
4148{
4149 int i = -1;
4150
4151 /*
4152 * Check user bitmaps first, unless builtin is specified.
4153 */
4154 if (!is_winnt_3() && !menu->icon_builtin)
4155 {
4156 char_u fname[MAXPATHL];
4157 HANDLE hbitmap = NULL;
4158
4159 if (menu->iconfile != NULL)
4160 {
4161 gui_find_iconfile(menu->iconfile, fname, "bmp");
4162 hbitmap = LoadImage(
4163 NULL,
4164 fname,
4165 IMAGE_BITMAP,
4166 TOOLBAR_BUTTON_WIDTH,
4167 TOOLBAR_BUTTON_HEIGHT,
4168 LR_LOADFROMFILE |
4169 LR_LOADMAP3DCOLORS
4170 );
4171 }
4172
4173 /*
4174 * If the LoadImage call failed, or the "icon=" file
4175 * didn't exist or wasn't specified, try the menu name
4176 */
4177 if (hbitmap == NULL
4178 && (gui_find_bitmap(menu->name, fname, "bmp") == OK))
4179 hbitmap = LoadImage(
4180 NULL,
4181 fname,
4182 IMAGE_BITMAP,
4183 TOOLBAR_BUTTON_WIDTH,
4184 TOOLBAR_BUTTON_HEIGHT,
4185 LR_LOADFROMFILE |
4186 LR_LOADMAP3DCOLORS
4187 );
4188
4189 if (hbitmap != NULL)
4190 {
4191 TBADDBITMAP tbAddBitmap;
4192
4193 tbAddBitmap.hInst = NULL;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004194 tbAddBitmap.nID = (long_u)hbitmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195
4196 i = (int)SendMessage(s_toolbarhwnd, TB_ADDBITMAP,
4197 (WPARAM)1, (LPARAM)&tbAddBitmap);
4198 /* i will be set to -1 if it fails */
4199 }
4200 }
4201 if (i == -1 && menu->iconidx >= 0 && menu->iconidx < TOOLBAR_BITMAP_COUNT)
4202 i = menu->iconidx;
4203
4204 return i;
4205}
4206#endif
4207
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004208#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
4209 static void
4210initialise_tabline(void)
4211{
4212 InitCommonControls();
4213
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004214 s_tabhwnd = CreateWindow(WC_TABCONTROL, "Vim tabline",
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004215 WS_CHILD|TCS_FOCUSNEVER|TCS_TOOLTIPS,
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004216 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
4217 CW_USEDEFAULT, s_hwnd, NULL, s_hinst, NULL);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004218
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004219 gui.tabline_height = TABLINE_HEIGHT;
4220
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004221# ifdef USE_SYSMENU_FONT
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004222 set_tabline_font();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004223# endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004224}
4225#endif
4226
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227#if defined(FEAT_OLE) || defined(FEAT_EVAL) || defined(PROTO)
4228/*
4229 * Make the GUI window come to the foreground.
4230 */
4231 void
4232gui_mch_set_foreground(void)
4233{
4234 if (IsIconic(s_hwnd))
4235 SendMessage(s_hwnd, WM_SYSCOMMAND, SC_RESTORE, 0);
4236 SetForegroundWindow(s_hwnd);
4237}
4238#endif
4239
4240#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
4241 static void
4242dyn_imm_load(void)
4243{
4244 hLibImm = LoadLibrary("imm32.dll");
4245 if (hLibImm == NULL)
4246 return;
4247
4248 pImmGetCompositionStringA
4249 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringA");
4250 pImmGetCompositionStringW
4251 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringW");
4252 pImmGetContext
4253 = (void *)GetProcAddress(hLibImm, "ImmGetContext");
4254 pImmAssociateContext
4255 = (void *)GetProcAddress(hLibImm, "ImmAssociateContext");
4256 pImmReleaseContext
4257 = (void *)GetProcAddress(hLibImm, "ImmReleaseContext");
4258 pImmGetOpenStatus
4259 = (void *)GetProcAddress(hLibImm, "ImmGetOpenStatus");
4260 pImmSetOpenStatus
4261 = (void *)GetProcAddress(hLibImm, "ImmSetOpenStatus");
4262 pImmGetCompositionFont
4263 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionFontA");
4264 pImmSetCompositionFont
4265 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionFontA");
4266 pImmSetCompositionWindow
4267 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionWindow");
4268 pImmGetConversionStatus
4269 = (void *)GetProcAddress(hLibImm, "ImmGetConversionStatus");
Bram Moolenaarca003e12006-03-17 23:19:38 +00004270 pImmSetConversionStatus
4271 = (void *)GetProcAddress(hLibImm, "ImmSetConversionStatus");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272
4273 if ( pImmGetCompositionStringA == NULL
4274 || pImmGetCompositionStringW == NULL
4275 || pImmGetContext == NULL
4276 || pImmAssociateContext == NULL
4277 || pImmReleaseContext == NULL
4278 || pImmGetOpenStatus == NULL
4279 || pImmSetOpenStatus == NULL
4280 || pImmGetCompositionFont == NULL
4281 || pImmSetCompositionFont == NULL
4282 || pImmSetCompositionWindow == NULL
Bram Moolenaarca003e12006-03-17 23:19:38 +00004283 || pImmGetConversionStatus == NULL
4284 || pImmSetConversionStatus == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285 {
4286 FreeLibrary(hLibImm);
4287 hLibImm = NULL;
4288 pImmGetContext = NULL;
4289 return;
4290 }
4291
4292 return;
4293}
4294
4295# if 0 /* not used */
4296 int
4297dyn_imm_unload(void)
4298{
4299 if (!hLibImm)
4300 return FALSE;
4301 FreeLibrary(hLibImm);
4302 hLibImm = NULL;
4303 return TRUE;
4304}
4305# endif
4306
4307#endif
4308
4309#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
4310
4311# ifdef FEAT_XPM_W32
4312# define IMAGE_XPM 100
4313# endif
4314
4315typedef struct _signicon_t
4316{
4317 HANDLE hImage;
4318 UINT uType;
4319#ifdef FEAT_XPM_W32
4320 HANDLE hShape; /* Mask bitmap handle */
4321#endif
4322} signicon_t;
4323
4324 void
4325gui_mch_drawsign(row, col, typenr)
4326 int row;
4327 int col;
4328 int typenr;
4329{
4330 signicon_t *sign;
4331 int x, y, w, h;
4332
4333 if (!gui.in_use || (sign = (signicon_t *)sign_get_image(typenr)) == NULL)
4334 return;
4335
4336 x = TEXT_X(col);
4337 y = TEXT_Y(row);
4338 w = gui.char_width * 2;
4339 h = gui.char_height;
4340 switch (sign->uType)
4341 {
4342 case IMAGE_BITMAP:
4343 {
4344 HDC hdcMem;
4345 HBITMAP hbmpOld;
4346
4347 hdcMem = CreateCompatibleDC(s_hdc);
4348 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hImage);
4349 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCCOPY);
4350 SelectObject(hdcMem, hbmpOld);
4351 DeleteDC(hdcMem);
4352 }
4353 break;
4354 case IMAGE_ICON:
4355 case IMAGE_CURSOR:
4356 DrawIconEx(s_hdc, x, y, (HICON)sign->hImage, w, h, 0, NULL, DI_NORMAL);
4357 break;
4358#ifdef FEAT_XPM_W32
4359 case IMAGE_XPM:
4360 {
4361 HDC hdcMem;
4362 HBITMAP hbmpOld;
4363
4364 hdcMem = CreateCompatibleDC(s_hdc);
4365 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hShape);
4366 /* Make hole */
4367 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCAND);
4368
4369 SelectObject(hdcMem, sign->hImage);
4370 /* Paint sign */
4371 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCPAINT);
4372 SelectObject(hdcMem, hbmpOld);
4373 DeleteDC(hdcMem);
4374 }
4375 break;
4376#endif
4377 }
4378}
4379
4380 static void
4381close_signicon_image(signicon_t *sign)
4382{
4383 if (sign)
4384 switch (sign->uType)
4385 {
4386 case IMAGE_BITMAP:
4387 DeleteObject((HGDIOBJ)sign->hImage);
4388 break;
4389 case IMAGE_CURSOR:
4390 DestroyCursor((HCURSOR)sign->hImage);
4391 break;
4392 case IMAGE_ICON:
4393 DestroyIcon((HICON)sign->hImage);
4394 break;
4395#ifdef FEAT_XPM_W32
4396 case IMAGE_XPM:
4397 DeleteObject((HBITMAP)sign->hImage);
4398 DeleteObject((HBITMAP)sign->hShape);
4399 break;
4400#endif
4401 }
4402}
4403
4404 void *
4405gui_mch_register_sign(signfile)
4406 char_u *signfile;
4407{
4408 signicon_t sign, *psign;
4409 char_u *ext;
4410
4411 if (is_winnt_3())
4412 {
4413 EMSG(_(e_signdata));
4414 return NULL;
4415 }
4416
4417 sign.hImage = NULL;
4418 ext = signfile + STRLEN(signfile) - 4; /* get extention */
4419 if (ext > signfile)
4420 {
4421 int do_load = 1;
4422
4423 if (!STRICMP(ext, ".bmp"))
4424 sign.uType = IMAGE_BITMAP;
4425 else if (!STRICMP(ext, ".ico"))
4426 sign.uType = IMAGE_ICON;
4427 else if (!STRICMP(ext, ".cur") || !STRICMP(ext, ".ani"))
4428 sign.uType = IMAGE_CURSOR;
4429 else
4430 do_load = 0;
4431
4432 if (do_load)
4433 sign.hImage = (HANDLE)LoadImage(NULL, signfile, sign.uType,
4434 gui.char_width * 2, gui.char_height,
4435 LR_LOADFROMFILE | LR_CREATEDIBSECTION);
4436#ifdef FEAT_XPM_W32
4437 if (!STRICMP(ext, ".xpm"))
4438 {
4439 sign.uType = IMAGE_XPM;
4440 LoadXpmImage(signfile, (HBITMAP *)&sign.hImage, (HBITMAP *)&sign.hShape);
4441 }
4442#endif
4443 }
4444
4445 psign = NULL;
4446 if (sign.hImage && (psign = (signicon_t *)alloc(sizeof(signicon_t)))
4447 != NULL)
4448 *psign = sign;
4449
4450 if (!psign)
4451 {
4452 if (sign.hImage)
4453 close_signicon_image(&sign);
4454 EMSG(_(e_signdata));
4455 }
4456 return (void *)psign;
4457
4458}
4459
4460 void
4461gui_mch_destroy_sign(sign)
4462 void *sign;
4463{
4464 if (sign)
4465 {
4466 close_signicon_image((signicon_t *)sign);
4467 vim_free(sign);
4468 }
4469}
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004470#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471
4472#if defined(FEAT_BEVAL) || defined(PROTO)
4473
4474/* BALLOON-EVAL IMPLEMENTATION FOR WINDOWS.
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00004475 * Added by Sergey Khorev <sergey.khorev@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476 *
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004477 * The only reused thing is gui_beval.h and get_beval_info()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 * from gui_beval.c (note it uses x and y of the BalloonEval struct
4479 * to get current mouse position).
4480 *
4481 * Trying to use as more Windows services as possible, and as less
4482 * IE version as possible :)).
4483 *
4484 * 1) Don't create ToolTip in gui_mch_create_beval_area, only initialize
4485 * BalloonEval struct.
4486 * 2) Enable/Disable simply create/kill BalloonEval Timer
4487 * 3) When there was enough inactivity, timer procedure posts
4488 * async request to debugger
4489 * 4) gui_mch_post_balloon (invoked from netbeans.c) creates tooltip control
4490 * and performs some actions to show it ASAP
Bram Moolenaar446cb832008-06-24 21:56:24 +00004491 * 5) WM_NOTIFY:TTN_POP destroys created tooltip
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 */
4493
Bram Moolenaar45360022005-07-21 21:08:21 +00004494/*
4495 * determine whether installed Common Controls support multiline tooltips
4496 * (i.e. their version is >= 4.70
4497 */
4498 int
4499multiline_balloon_available(void)
4500{
4501 HINSTANCE hDll;
4502 static char comctl_dll[] = "comctl32.dll";
4503 static int multiline_tip = MAYBE;
4504
4505 if (multiline_tip != MAYBE)
4506 return multiline_tip;
4507
4508 hDll = GetModuleHandle(comctl_dll);
4509 if (hDll != NULL)
4510 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004511 DLLGETVERSIONPROC pGetVer;
4512 pGetVer = (DLLGETVERSIONPROC)GetProcAddress(hDll, "DllGetVersion");
Bram Moolenaar45360022005-07-21 21:08:21 +00004513
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004514 if (pGetVer != NULL)
4515 {
4516 DLLVERSIONINFO dvi;
4517 HRESULT hr;
Bram Moolenaar45360022005-07-21 21:08:21 +00004518
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004519 ZeroMemory(&dvi, sizeof(dvi));
4520 dvi.cbSize = sizeof(dvi);
Bram Moolenaar45360022005-07-21 21:08:21 +00004521
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004522 hr = (*pGetVer)(&dvi);
Bram Moolenaar45360022005-07-21 21:08:21 +00004523
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004524 if (SUCCEEDED(hr)
Bram Moolenaar45360022005-07-21 21:08:21 +00004525 && (dvi.dwMajorVersion > 4
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004526 || (dvi.dwMajorVersion == 4
4527 && dvi.dwMinorVersion >= 70)))
Bram Moolenaar45360022005-07-21 21:08:21 +00004528 {
4529 multiline_tip = TRUE;
4530 return multiline_tip;
4531 }
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004532 }
Bram Moolenaar45360022005-07-21 21:08:21 +00004533 else
4534 {
4535 /* there is chance we have ancient CommCtl 4.70
4536 which doesn't export DllGetVersion */
4537 DWORD dwHandle = 0;
4538 DWORD len = GetFileVersionInfoSize(comctl_dll, &dwHandle);
4539 if (len > 0)
4540 {
4541 VS_FIXEDFILEINFO *ver;
4542 UINT vlen = 0;
4543 void *data = alloc(len);
4544
4545 if (data != NULL
4546 && GetFileVersionInfo(comctl_dll, 0, len, data)
4547 && VerQueryValue(data, "\\", (void **)&ver, &vlen)
4548 && vlen
4549 && HIWORD(ver->dwFileVersionMS) > 4
4550 || (HIWORD(ver->dwFileVersionMS) == 4
4551 && LOWORD(ver->dwFileVersionMS) >= 70))
4552 {
4553 vim_free(data);
4554 multiline_tip = TRUE;
4555 return multiline_tip;
4556 }
4557 vim_free(data);
4558 }
4559 }
4560 }
4561 multiline_tip = FALSE;
4562 return multiline_tip;
4563}
4564
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 static void
4566make_tooltip(beval, text, pt)
4567 BalloonEval *beval;
4568 char *text;
4569 POINT pt;
4570{
Bram Moolenaar45360022005-07-21 21:08:21 +00004571 TOOLINFO *pti;
4572 int ToolInfoSize;
4573
4574 if (multiline_balloon_available() == TRUE)
4575 ToolInfoSize = sizeof(TOOLINFO_NEW);
4576 else
4577 ToolInfoSize = sizeof(TOOLINFO);
4578
4579 pti = (TOOLINFO *)alloc(ToolInfoSize);
4580 if (pti == NULL)
4581 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582
4583 beval->balloon = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS,
4584 NULL, WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,
4585 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
4586 beval->target, NULL, s_hinst, NULL);
4587
4588 SetWindowPos(beval->balloon, HWND_TOPMOST, 0, 0, 0, 0,
4589 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
4590
Bram Moolenaar45360022005-07-21 21:08:21 +00004591 pti->cbSize = ToolInfoSize;
4592 pti->uFlags = TTF_SUBCLASS;
4593 pti->hwnd = beval->target;
4594 pti->hinst = 0; /* Don't use string resources */
4595 pti->uId = ID_BEVAL_TOOLTIP;
4596
4597 if (multiline_balloon_available() == TRUE)
4598 {
4599 RECT rect;
4600 TOOLINFO_NEW *ptin = (TOOLINFO_NEW *)pti;
4601 pti->lpszText = LPSTR_TEXTCALLBACK;
4602 ptin->lParam = (LPARAM)text;
4603 if (GetClientRect(s_textArea, &rect)) /* switch multiline tooltips on */
4604 SendMessage(beval->balloon, TTM_SETMAXTIPWIDTH, 0,
4605 (LPARAM)rect.right);
4606 }
4607 else
4608 pti->lpszText = text; /* do this old way */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609
4610 /* Limit ballooneval bounding rect to CursorPos neighbourhood */
Bram Moolenaar45360022005-07-21 21:08:21 +00004611 pti->rect.left = pt.x - 3;
4612 pti->rect.top = pt.y - 3;
4613 pti->rect.right = pt.x + 3;
4614 pti->rect.bottom = pt.y + 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615
Bram Moolenaar45360022005-07-21 21:08:21 +00004616 SendMessage(beval->balloon, TTM_ADDTOOL, 0, (LPARAM)pti);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 /* Make tooltip appear sooner */
4618 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_INITIAL, 10);
Bram Moolenaarb52e5322008-01-05 12:15:52 +00004619 /* I've performed some tests and it seems the longest possible life time
4620 * of tooltip is 30 seconds */
4621 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_AUTOPOP, 30000);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622 /*
4623 * HACK: force tooltip to appear, because it'll not appear until
4624 * first mouse move. D*mn M$
Bram Moolenaarb52e5322008-01-05 12:15:52 +00004625 * Amazingly moving (2, 2) and then (-1, -1) the mouse doesn't move.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 */
Bram Moolenaarb52e5322008-01-05 12:15:52 +00004627 mouse_event(MOUSEEVENTF_MOVE, 2, 2, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 mouse_event(MOUSEEVENTF_MOVE, (DWORD)-1, (DWORD)-1, 0, 0);
Bram Moolenaar45360022005-07-21 21:08:21 +00004629 vim_free(pti);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630}
4631
4632 static void
4633delete_tooltip(beval)
4634 BalloonEval *beval;
4635{
4636 DestroyWindow(beval->balloon);
4637}
4638
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004639/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640 static VOID CALLBACK
4641BevalTimerProc(hwnd, uMsg, idEvent, dwTime)
4642 HWND hwnd;
4643 UINT uMsg;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004644 UINT_PTR idEvent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 DWORD dwTime;
4646{
4647 POINT pt;
4648 RECT rect;
4649
4650 if (cur_beval == NULL || cur_beval->showState == ShS_SHOWING || !p_beval)
4651 return;
4652
4653 GetCursorPos(&pt);
4654 if (WindowFromPoint(pt) != s_textArea)
4655 return;
4656
4657 ScreenToClient(s_textArea, &pt);
4658 GetClientRect(s_textArea, &rect);
4659 if (!PtInRect(&rect, pt))
4660 return;
4661
4662 if (LastActivity > 0
4663 && (dwTime - LastActivity) >= (DWORD)p_bdlay
4664 && (cur_beval->showState != ShS_PENDING
4665 || abs(cur_beval->x - pt.x) > 3
4666 || abs(cur_beval->y - pt.y) > 3))
4667 {
4668 /* Pointer resting in one place long enough, it's time to show
4669 * the tooltip. */
4670 cur_beval->showState = ShS_PENDING;
4671 cur_beval->x = pt.x;
4672 cur_beval->y = pt.y;
4673
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004674 // TRACE0("BevalTimerProc: sending request");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675
4676 if (cur_beval->msgCB != NULL)
4677 (*cur_beval->msgCB)(cur_beval, 0);
4678 }
4679}
4680
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004681/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 void
4683gui_mch_disable_beval_area(beval)
4684 BalloonEval *beval;
4685{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004686 // TRACE0("gui_mch_disable_beval_area {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 KillTimer(s_textArea, BevalTimerId);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004688 // TRACE0("gui_mch_disable_beval_area }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689}
4690
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004691/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 void
4693gui_mch_enable_beval_area(beval)
4694 BalloonEval *beval;
4695{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004696 // TRACE0("gui_mch_enable_beval_area |||");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697 if (beval == NULL)
4698 return;
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004699 // TRACE0("gui_mch_enable_beval_area {{{");
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004700 BevalTimerId = SetTimer(s_textArea, 0, p_bdlay / 2, BevalTimerProc);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004701 // TRACE0("gui_mch_enable_beval_area }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702}
4703
4704 void
4705gui_mch_post_balloon(beval, mesg)
4706 BalloonEval *beval;
4707 char_u *mesg;
4708{
4709 POINT pt;
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004710 // TRACE0("gui_mch_post_balloon {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 if (beval->showState == ShS_SHOWING)
4712 return;
4713 GetCursorPos(&pt);
4714 ScreenToClient(s_textArea, &pt);
4715
4716 if (abs(beval->x - pt.x) < 3 && abs(beval->y - pt.y) < 3)
4717 /* cursor is still here */
4718 {
4719 gui_mch_disable_beval_area(cur_beval);
4720 beval->showState = ShS_SHOWING;
4721 make_tooltip(beval, mesg, pt);
4722 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004723 // TRACE0("gui_mch_post_balloon }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724}
4725
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004726/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 BalloonEval *
4728gui_mch_create_beval_area(target, mesg, mesgCB, clientData)
4729 void *target; /* ignored, always use s_textArea */
4730 char_u *mesg;
4731 void (*mesgCB)__ARGS((BalloonEval *, int));
4732 void *clientData;
4733{
4734 /* partially stolen from gui_beval.c */
4735 BalloonEval *beval;
4736
4737 if (mesg != NULL && mesgCB != NULL)
4738 {
4739 EMSG(_("E232: Cannot create BalloonEval with both message and callback"));
4740 return NULL;
4741 }
4742
4743 beval = (BalloonEval *)alloc(sizeof(BalloonEval));
4744 if (beval != NULL)
4745 {
4746 beval->target = s_textArea;
4747 beval->balloon = NULL;
4748
4749 beval->showState = ShS_NEUTRAL;
4750 beval->x = 0;
4751 beval->y = 0;
4752 beval->msg = mesg;
4753 beval->msgCB = mesgCB;
4754 beval->clientData = clientData;
4755
4756 InitCommonControls();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 cur_beval = beval;
4758
4759 if (p_beval)
4760 gui_mch_enable_beval_area(beval);
4761
4762 }
4763 return beval;
4764}
4765
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004766/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 static void
4768Handle_WM_Notify(hwnd, pnmh)
4769 HWND hwnd;
4770 LPNMHDR pnmh;
4771{
4772 if (pnmh->idFrom != ID_BEVAL_TOOLTIP) /* it is not our tooltip */
4773 return;
4774
4775 if (cur_beval != NULL)
4776 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004777 switch (pnmh->code)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004779 case TTN_SHOW:
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004780 // TRACE0("TTN_SHOW {{{");
4781 // TRACE0("TTN_SHOW }}}");
Bram Moolenaar45360022005-07-21 21:08:21 +00004782 break;
4783 case TTN_POP: /* Before tooltip disappear */
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004784 // TRACE0("TTN_POP {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 delete_tooltip(cur_beval);
4786 gui_mch_enable_beval_area(cur_beval);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004787 // TRACE0("TTN_POP }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788
4789 cur_beval->showState = ShS_NEUTRAL;
Bram Moolenaar45360022005-07-21 21:08:21 +00004790 break;
4791 case TTN_GETDISPINFO:
Bram Moolenaar6c9176d2008-01-03 19:45:15 +00004792 {
4793 /* if you get there then we have new common controls */
4794 NMTTDISPINFO_NEW *info = (NMTTDISPINFO_NEW *)pnmh;
4795 info->lpszText = (LPSTR)info->lParam;
4796 info->uFlags |= TTF_DI_SETITEM;
4797 }
Bram Moolenaar45360022005-07-21 21:08:21 +00004798 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 }
4800 }
4801}
4802
4803 static void
4804TrackUserActivity(UINT uMsg)
4805{
4806 if ((uMsg >= WM_MOUSEFIRST && uMsg <= WM_MOUSELAST)
4807 || (uMsg >= WM_KEYFIRST && uMsg <= WM_KEYLAST))
4808 LastActivity = GetTickCount();
4809}
4810
4811 void
4812gui_mch_destroy_beval_area(beval)
4813 BalloonEval *beval;
4814{
4815 vim_free(beval);
4816}
4817#endif /* FEAT_BEVAL */
4818
4819#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
4820/*
4821 * We have multiple signs to draw at the same location. Draw the
4822 * multi-sign indicator (down-arrow) instead. This is the Win32 version.
4823 */
4824 void
4825netbeans_draw_multisign_indicator(int row)
4826{
4827 int i;
4828 int y;
4829 int x;
4830
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004831 if (!netbeans_active())
4832 return;
4833
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 x = 0;
4835 y = TEXT_Y(row);
4836
4837 for (i = 0; i < gui.char_height - 3; i++)
4838 SetPixel(s_hdc, x+2, y++, gui.currFgColor);
4839
4840 SetPixel(s_hdc, x+0, y, gui.currFgColor);
4841 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4842 SetPixel(s_hdc, x+4, y++, gui.currFgColor);
4843 SetPixel(s_hdc, x+1, y, gui.currFgColor);
4844 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4845 SetPixel(s_hdc, x+3, y++, gui.currFgColor);
4846 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4847}
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004848
4849/*
4850 * Initialize the Winsock dll.
4851 */
4852 void
4853netbeans_init_winsock()
4854{
4855 WSADATA wsaData;
4856 int wsaerr;
4857
4858 if (WSInitialized)
4859 return;
4860
4861 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
4862 if (wsaerr == 0)
4863 WSInitialized = TRUE;
4864}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865#endif