Merge branch 'vim-with-runtime' into feat/code-check
[vim_extended.git] / src / gui_w32.c
blob3331d54dd910f7b4eb2658636431fbe43ba7a325
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
4 * GUI support by Robert Webb
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 */
11 * Windows GUI.
13 * GUI support for Microsoft Windows. Win32 initially; maybe Win16 later
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.
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).
22 * TODO: Some of the function signatures ought to be updated for Win64;
23 * e.g., replace LONG with LONG_PTR, etc.
26 #include "vim.h"
29 * These are new in Windows ME/XP, only defined in recent compilers.
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
45 * Include the common stuff for MS-Windows GUI.
47 #include "gui_w48.c"
49 #ifdef FEAT_XPM_W32
50 # include "xpm_w32.h"
51 #endif
53 #ifdef PROTO
54 # define WINAPI
55 #endif
57 #ifdef __MINGW32__
59 * Add a lot of missing defines.
60 * They are not always missing, we need the #ifndef's.
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
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__ */
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.
176 /* For the Intellimouse: */
177 #ifndef WM_MOUSEWHEEL
178 #define WM_MOUSEWHEEL 0x20a
179 #endif
182 #ifdef FEAT_BEVAL
183 # define ID_BEVAL_TOOLTIP 200
184 # define BEVAL_TEXT_LEN MAXPATHL
186 #if _MSC_VER < 1300
187 /* Work around old versions of basetsd.h which wrongly declares
188 * UINT_PTR as unsigned long. */
189 # define UINT_PTR UINT
190 #endif
192 static void make_tooltip __ARGS((BalloonEval *beval, char *text, POINT pt));
193 static void delete_tooltip __ARGS((BalloonEval *beval));
194 static VOID CALLBACK BevalTimerProc __ARGS((HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime));
196 static BalloonEval *cur_beval = NULL;
197 static UINT_PTR BevalTimerId = 0;
198 static DWORD LastActivity = 0;
201 * excerpts from headers since this may not be presented
202 * in the extremely old compilers
204 #include <pshpack1.h>
206 typedef struct _DllVersionInfo
208 DWORD cbSize;
209 DWORD dwMajorVersion;
210 DWORD dwMinorVersion;
211 DWORD dwBuildNumber;
212 DWORD dwPlatformID;
213 } DLLVERSIONINFO;
215 #include <poppack.h>
217 typedef struct tagTOOLINFOA_NEW
219 UINT cbSize;
220 UINT uFlags;
221 HWND hwnd;
222 UINT_PTR uId;
223 RECT rect;
224 HINSTANCE hinst;
225 LPSTR lpszText;
226 LPARAM lParam;
227 } TOOLINFO_NEW;
229 typedef struct tagNMTTDISPINFO_NEW
231 NMHDR hdr;
232 LPSTR lpszText;
233 char szText[80];
234 HINSTANCE hinst;
235 UINT uFlags;
236 LPARAM lParam;
237 } NMTTDISPINFO_NEW;
239 typedef HRESULT (WINAPI* DLLGETVERSIONPROC)(DLLVERSIONINFO *);
240 #ifndef TTM_SETMAXTIPWIDTH
241 # define TTM_SETMAXTIPWIDTH (WM_USER+24)
242 #endif
244 #ifndef TTF_DI_SETITEM
245 # define TTF_DI_SETITEM 0x8000
246 #endif
248 #ifndef TTN_GETDISPINFO
249 # define TTN_GETDISPINFO (TTN_FIRST - 0)
250 #endif
252 #endif /* defined(FEAT_BEVAL) */
254 #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)
260 typedef 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
270 # ifdef FEAT_MBYTE
271 typedef 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
283 #ifndef TTN_GETDISPINFOW
284 # define TTN_GETDISPINFOW (TTN_FIRST - 10)
285 #endif
287 /* Local variables: */
289 #ifdef FEAT_MENU
290 static UINT s_menu_id = 100;
293 * Use the system font for dialogs and tear-off menus. Remove this line to
294 * use DLG_FONT_NAME.
296 # define USE_SYSMENU_FONT
297 #endif
299 #define VIM_NAME "vim"
300 #define VIM_CLASS "Vim"
301 #define VIM_CLASSW L"Vim"
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
309 * stuff for dialogs, menus, tearoffs etc.
311 static LRESULT APIENTRY dialog_callback(HWND, UINT, WPARAM, LPARAM);
312 static LRESULT APIENTRY tearoff_callback(HWND, UINT, WPARAM, LPARAM);
313 static PWORD
314 add_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);
324 static LPWORD lpwAlign(LPWORD);
325 static int nCopyAnsiToWideChar(LPWORD, LPSTR);
326 static void gui_mch_tearoff(char_u *title, vimmenu_T *menu, int initX, int initY);
327 static void get_dialog_font_metrics(void);
329 static int dialog_default_button = -1;
331 /* Intellimouse support */
332 static int mouse_scroll_lines = 0;
333 static UINT msh_msgmousewheel = 0;
335 static int s_usenewlook; /* emulate W95/NT4 non-bold dialogs */
336 #ifdef FEAT_TOOLBAR
337 static void initialise_toolbar(void);
338 static int get_toolbar_bitmap(vimmenu_T *menu);
339 #endif
341 #ifdef FEAT_GUI_TABLINE
342 static void initialise_tabline(void);
343 #endif
345 #ifdef FEAT_MBYTE_IME
346 static LRESULT _OnImeComposition(HWND hwnd, WPARAM dbcs, LPARAM param);
347 static char_u *GetResultStr(HWND hwnd, int GCS, int *lenp);
348 #endif
349 #if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
350 # ifdef NOIME
351 typedef struct tagCOMPOSITIONFORM {
352 DWORD dwStyle;
353 POINT ptCurrentPos;
354 RECT rcArea;
355 } COMPOSITIONFORM, *PCOMPOSITIONFORM, NEAR *NPCOMPOSITIONFORM, FAR *LPCOMPOSITIONFORM;
356 typedef HANDLE HIMC;
357 # endif
359 static HINSTANCE hLibImm = NULL;
360 static LONG (WINAPI *pImmGetCompositionStringA)(HIMC, DWORD, LPVOID, DWORD);
361 static LONG (WINAPI *pImmGetCompositionStringW)(HIMC, DWORD, LPVOID, DWORD);
362 static HIMC (WINAPI *pImmGetContext)(HWND);
363 static HIMC (WINAPI *pImmAssociateContext)(HWND, HIMC);
364 static BOOL (WINAPI *pImmReleaseContext)(HWND, HIMC);
365 static BOOL (WINAPI *pImmGetOpenStatus)(HIMC);
366 static BOOL (WINAPI *pImmSetOpenStatus)(HIMC, BOOL);
367 static BOOL (WINAPI *pImmGetCompositionFont)(HIMC, LPLOGFONTA);
368 static BOOL (WINAPI *pImmSetCompositionFont)(HIMC, LPLOGFONTA);
369 static BOOL (WINAPI *pImmSetCompositionWindow)(HIMC, LPCOMPOSITIONFORM);
370 static BOOL (WINAPI *pImmGetConversionStatus)(HIMC, LPDWORD, LPDWORD);
371 static BOOL (WINAPI *pImmSetConversionStatus)(HIMC, DWORD, DWORD);
372 static 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
385 # define pImmSetConversionStatus ImmSetConversionStatus
386 #endif
388 #ifndef ETO_IGNORELANGUAGE
389 # define ETO_IGNORELANGUAGE 0x1000
390 #endif
392 /* multi monitor support */
393 typedef struct _MONITORINFOstruct
395 DWORD cbSize;
396 RECT rcMonitor;
397 RECT rcWork;
398 DWORD dwFlags;
399 } _MONITORINFO;
401 typedef HANDLE _HMONITOR;
402 typedef _HMONITOR (WINAPI *TMonitorFromWindow)(HWND, DWORD);
403 typedef BOOL (WINAPI *TGetMonitorInfo)(_HMONITOR, _MONITORINFO *);
405 static TMonitorFromWindow pMonitorFromWindow = NULL;
406 static TGetMonitorInfo pGetMonitorInfo = NULL;
407 static HANDLE user32_lib = NULL;
408 #ifdef FEAT_NETBEANS_INTG
409 int WSInitialized = FALSE; /* WinSock is initialized */
410 #endif
412 * Return TRUE when running under Windows NT 3.x or Win32s, both of which have
413 * less fancy GUI APIs.
415 static int
416 is_winnt_3(void)
418 return ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
419 && os_version.dwMajorVersion == 3)
420 || (os_version.dwPlatformId == VER_PLATFORM_WIN32s));
424 * Return TRUE when running under Win32s.
427 gui_is_win32s(void)
429 return (os_version.dwPlatformId == VER_PLATFORM_WIN32s);
432 #ifdef FEAT_MENU
434 * Figure out how high the menu bar is at the moment.
436 static int
437 gui_mswin_get_menu_height(
438 int fix_window) /* If TRUE, resize window if menu height changed */
440 static int old_menu_height = -1;
442 RECT rc1, rc2;
443 int num;
444 int menu_height;
446 if (gui.menu_is_active)
447 num = GetMenuItemCount(s_menuBar);
448 else
449 num = 0;
451 if (num == 0)
452 menu_height = 0;
453 else
455 if (is_winnt_3()) /* for NT 3.xx */
457 if (gui.starting)
458 menu_height = GetSystemMetrics(SM_CYMENU);
459 else
461 RECT r1, r2;
462 int frameht = GetSystemMetrics(SM_CYFRAME);
463 int capht = GetSystemMetrics(SM_CYCAPTION);
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.
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);
477 else /* win95 and variants (NT 4.0, I guess) */
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.
486 GetMenuItemRect(s_hwnd, s_menuBar, 0, &rc1);
487 if (gui.starting)
488 menu_height = rc1.bottom - rc1.top + 1;
489 else
491 GetMenuItemRect(s_hwnd, s_menuBar, num - 1, &rc2);
492 menu_height = rc2.bottom - rc1.top + 1;
497 if (fix_window && menu_height != old_menu_height)
499 old_menu_height = menu_height;
500 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
503 return menu_height;
505 #endif /*FEAT_MENU*/
509 * Setup for the Intellimouse
511 static void
512 init_mouse_wheel(void)
515 #ifndef SPI_GETWHEELSCROLLLINES
516 # define SPI_GETWHEELSCROLLLINES 104
517 #endif
518 #ifndef SPI_SETWHEELSCROLLLINES
519 # define SPI_SETWHEELSCROLLLINES 105
520 #endif
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"
527 HWND hdl_mswheel;
528 UINT msh_msgscrolllines;
530 msh_msgmousewheel = 0;
531 mouse_scroll_lines = 3; /* reasonable default */
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)))
540 /* if NT 4.0+ (or Win98) get scroll lines directly from system */
541 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
542 &mouse_scroll_lines, 0);
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.
551 hdl_mswheel = FindWindow(VMOUSEZ_CLASSNAME, VMOUSEZ_TITLE);
552 if (hdl_mswheel)
554 msh_msgscrolllines = RegisterWindowMessage(VMSH_SCROLL_LINES);
555 if (msh_msgscrolllines)
557 mouse_scroll_lines = (int)SendMessage(hdl_mswheel,
558 msh_msgscrolllines, 0, 0);
559 msh_msgmousewheel = RegisterWindowMessage(VMSH_MOUSEWHEEL);
566 /* Intellimouse wheel handler */
567 static void
568 _OnMouseWheel(
569 HWND hwnd,
570 short zDelta)
572 /* Treat a mouse wheel event as if it were a scroll request */
573 int i;
574 int size;
575 HWND hwndCtl;
577 if (curwin->w_scrollbars[SBAR_RIGHT].id != 0)
579 hwndCtl = curwin->w_scrollbars[SBAR_RIGHT].id;
580 size = curwin->w_scrollbars[SBAR_RIGHT].size;
582 else if (curwin->w_scrollbars[SBAR_LEFT].id != 0)
584 hwndCtl = curwin->w_scrollbars[SBAR_LEFT].id;
585 size = curwin->w_scrollbars[SBAR_LEFT].size;
587 else
588 return;
590 size = curwin->w_height;
591 if (mouse_scroll_lines == 0)
592 init_mouse_wheel();
594 if (mouse_scroll_lines > 0
595 && mouse_scroll_lines < (size > 2 ? size - 2 : 1))
597 for (i = mouse_scroll_lines; i > 0; --i)
598 _OnScroll(hwnd, hwndCtl, zDelta >= 0 ? SB_LINEUP : SB_LINEDOWN, 0);
600 else
601 _OnScroll(hwnd, hwndCtl, zDelta >= 0 ? SB_PAGEUP : SB_PAGEDOWN, 0);
604 #ifdef USE_SYSMENU_FONT
606 * Get Menu Font.
607 * Return OK or FAIL.
609 static int
610 gui_w32_get_menu_font(LOGFONT *lf)
612 NONCLIENTMETRICS nm;
614 nm.cbSize = sizeof(NONCLIENTMETRICS);
615 if (!SystemParametersInfo(
616 SPI_GETNONCLIENTMETRICS,
617 sizeof(NONCLIENTMETRICS),
618 &nm,
620 return FAIL;
621 *lf = nm.lfMenuFont;
622 return OK;
624 #endif
627 #if defined(FEAT_GUI_TABLINE) && defined(USE_SYSMENU_FONT)
629 * Set the GUI tabline font to the system menu font
631 static void
632 set_tabline_font(void)
634 LOGFONT lfSysmenu;
635 HFONT font;
636 HWND hwnd;
637 HDC hdc;
638 HFONT hfntOld;
639 TEXTMETRIC tm;
641 if (gui_w32_get_menu_font(&lfSysmenu) != OK)
642 return;
644 font = CreateFontIndirect(&lfSysmenu);
646 SendMessage(s_tabhwnd, WM_SETFONT, (WPARAM)font, TRUE);
649 * Compute the height of the font used for the tab text
651 hwnd = GetDesktopWindow();
652 hdc = GetWindowDC(hwnd);
653 hfntOld = SelectFont(hdc, font);
655 GetTextMetrics(hdc, &tm);
657 SelectFont(hdc, hfntOld);
658 ReleaseDC(hwnd, hdc);
661 * The space used by the tab border and the space between the tab label
662 * and the tab border is included as 7.
664 gui.tabline_height = tm.tmHeight + tm.tmInternalLeading + 7;
666 #endif
669 * Invoked when a setting was changed.
671 static LRESULT CALLBACK
672 _OnSettingChange(UINT n)
674 if (n == SPI_SETWHEELSCROLLLINES)
675 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
676 &mouse_scroll_lines, 0);
677 #if defined(FEAT_GUI_TABLINE) && defined(USE_SYSMENU_FONT)
678 if (n == SPI_SETNONCLIENTMETRICS)
679 set_tabline_font();
680 #endif
681 return 0;
684 #if 0 /* disabled, a gap appears below and beside the window, and the window
685 can be moved (in a strange way) */
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.
691 static BOOL
692 _OnWindowPosChanging(
693 HWND hwnd,
694 LPWINDOWPOS lpwpos)
696 RECT workarea_rect;
698 if (!(lpwpos->flags & SWP_NOSIZE))
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)))
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;
711 gui_mswin_get_valid_dimensions(lpwpos->cx, lpwpos->cy,
712 &lpwpos->cx, &lpwpos->cy);
714 return 0;
716 #endif
718 #ifdef FEAT_NETBEANS_INTG
719 static void
720 _OnWindowPosChanged(
721 HWND hwnd,
722 const LPWINDOWPOS lpwpos)
724 static int x = 0, y = 0, cx = 0, cy = 0;
726 if (WSInitialized && (lpwpos->x != x || lpwpos->y != y
727 || lpwpos->cx != cx || lpwpos->cy != cy))
729 x = lpwpos->x;
730 y = lpwpos->y;
731 cx = lpwpos->cx;
732 cy = lpwpos->cy;
733 netbeans_frame_moved(x, y);
735 /* Allow to send WM_SIZE and WM_MOVE */
736 FORWARD_WM_WINDOWPOSCHANGED(hwnd, lpwpos, MyWindowProc);
738 #endif
740 static int
741 _DuringSizing(
742 UINT fwSide,
743 LPRECT lprc)
745 int w, h;
746 int valid_w, valid_h;
747 int w_offset, h_offset;
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;
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;
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;
773 static LRESULT CALLBACK
774 _WndProc(
775 HWND hwnd,
776 UINT uMsg,
777 WPARAM wParam,
778 LPARAM lParam)
781 TRACE("WndProc: hwnd = %08x, msg = %x, wParam = %x, lParam = %x\n",
782 hwnd, uMsg, wParam, lParam);
785 HandleMouseHide(uMsg, lParam);
787 s_uMsg = uMsg;
788 s_wParam = wParam;
789 s_lParam = lParam;
791 switch (uMsg)
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
818 #ifdef FEAT_GUI_TABLINE
819 case WM_RBUTTONUP:
821 if (gui_mch_showing_tabline())
823 POINT pt;
824 RECT rect;
827 * If the cursor is on the tabline, display the tab menu
829 GetCursorPos((LPPOINT)&pt);
830 GetWindowRect(s_textArea, &rect);
831 if (pt.y < rect.top)
833 show_tabline_popup_menu();
834 return 0;
837 return MyWindowProc(hwnd, uMsg, wParam, lParam);
839 case WM_LBUTTONDBLCLK:
842 * If the user double clicked the tabline, create a new tab
844 if (gui_mch_showing_tabline())
846 POINT pt;
847 RECT rect;
849 GetCursorPos((LPPOINT)&pt);
850 GetWindowRect(s_textArea, &rect);
851 if (pt.y < rect.top)
852 send_tabline_menu_event(0, TABLINE_MENU_NEW);
854 return MyWindowProc(hwnd, uMsg, wParam, lParam);
856 #endif
858 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. */
862 case WM_ENDSESSION:
863 if (wParam) /* system only really goes down when wParam is TRUE */
864 _OnEndSession();
865 break;
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. */
870 _OnChar(hwnd, (UINT)wParam, (int)(short)LOWORD(lParam));
871 return 0L;
873 case WM_SYSCHAR:
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.
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))
884 #endif
886 _OnSysChar(hwnd, (UINT)wParam, (int)(short)LOWORD(lParam));
887 return 0L;
889 #ifdef FEAT_MENU
890 else
891 return MyWindowProc(hwnd, uMsg, wParam, lParam);
892 #endif
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
905 case WM_SIZING: /* HANDLE_MSG doesn't seem to handle this one */
906 return _DuringSizing((UINT)wParam, (LPRECT)lParam);
908 case WM_MOUSEWHEEL:
909 _OnMouseWheel(hwnd, HIWORD(wParam));
910 break;
912 /* Notification for change in SystemParametersInfo() */
913 case WM_SETTINGCHANGE:
914 return _OnSettingChange((UINT)wParam);
916 #if defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
917 case WM_NOTIFY:
918 switch (((LPNMHDR) lParam)->code)
920 # ifdef FEAT_MBYTE
921 case TTN_GETDISPINFOW:
922 # endif
923 case TTN_GETDISPINFO:
925 LPNMHDR hdr = (LPNMHDR)lParam;
926 char_u *str = NULL;
927 static void *tt_text = NULL;
929 vim_free(tt_text);
930 tt_text = NULL;
932 # ifdef FEAT_GUI_TABLINE
933 if (gui_mch_showing_tabline()
934 && hdr->hwndFrom == TabCtrl_GetToolTips(s_tabhwnd))
936 POINT pt;
938 * Mouse is over the GUI tabline. Display the
939 * tooltip for the tab under the cursor
941 * Get the cursor position within the tab control
943 GetCursorPos(&pt);
944 if (ScreenToClient(s_tabhwnd, &pt) != 0)
946 TCHITTESTINFO htinfo;
947 int idx;
950 * Get the tab under the cursor
952 htinfo.pt.x = pt.x;
953 htinfo.pt.y = pt.y;
954 idx = TabCtrl_HitTest(s_tabhwnd, &htinfo);
955 if (idx != -1)
957 tabpage_T *tp;
959 tp = find_tabpage(idx + 1);
960 if (tp != NULL)
962 get_tabline_label(tp, TRUE);
963 str = NameBuff;
968 # endif
969 # ifdef FEAT_TOOLBAR
970 # ifdef FEAT_GUI_TABLINE
971 else
972 # endif
974 UINT idButton;
975 vimmenu_T *pMenu;
977 idButton = (UINT) hdr->idFrom;
978 pMenu = gui_mswin_find_menu(root_menu, idButton);
979 if (pMenu)
980 str = pMenu->strings[MENU_INDEX_TIP];
982 # endif
983 if (str != NULL)
985 # ifdef FEAT_MBYTE
986 if (hdr->code == TTN_GETDISPINFOW)
988 LPNMTTDISPINFOW lpdi = (LPNMTTDISPINFOW)lParam;
990 /* Set the maximum width, this also enables using
991 * \n for line break. */
992 SendMessage(lpdi->hdr.hwndFrom, TTM_SETMAXTIPWIDTH,
993 0, 500);
995 tt_text = enc_to_utf16(str, NULL);
996 lpdi->lpszText = tt_text;
997 /* can't show tooltip if failed */
999 else
1000 # endif
1002 LPNMTTDISPINFO lpdi = (LPNMTTDISPINFO)lParam;
1004 /* Set the maximum width, this also enables using
1005 * \n for line break. */
1006 SendMessage(lpdi->hdr.hwndFrom, TTM_SETMAXTIPWIDTH,
1007 0, 500);
1009 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;
1018 break;
1019 # 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;
1026 case NM_RCLICK:
1027 if (gui_mch_showing_tabline()
1028 && ((LPNMHDR)lParam)->hwndFrom == s_tabhwnd)
1029 show_tabline_popup_menu();
1030 break;
1031 # endif
1032 default:
1033 # 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
1038 break;
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)
1049 UINT idButton;
1050 vimmenu_T *pMenu;
1051 static int did_menu_tip = FALSE;
1053 if (did_menu_tip)
1055 msg_clr_cmdline();
1056 setcursor();
1057 out_flush();
1058 did_menu_tip = FALSE;
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)
1066 ++msg_hist_off;
1067 msg(pMenu->strings[MENU_INDEX_TIP]);
1068 --msg_hist_off;
1069 setcursor();
1070 out_flush();
1071 did_menu_tip = TRUE;
1074 break;
1075 #endif
1076 case WM_NCHITTEST:
1078 LRESULT result;
1079 int x, y;
1080 int xPos = GET_X_LPARAM(lParam);
1082 result = MyWindowProc(hwnd, uMsg, wParam, lParam);
1083 if (result == HTCLIENT)
1085 #ifdef FEAT_GUI_TABLINE
1086 if (gui_mch_showing_tabline())
1088 int yPos = GET_Y_LPARAM(lParam);
1089 RECT rct;
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;
1097 #endif
1098 gui_mch_get_winpos(&x, &y);
1099 xPos -= x;
1101 if (xPos < 48) /* <VN> TODO should use system metric? */
1102 return HTBOTTOMLEFT;
1103 else
1104 return HTBOTTOMRIGHT;
1106 else
1107 return result;
1109 /* break; notreached */
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
1122 default:
1123 if (uMsg == msh_msgmousewheel && msh_msgmousewheel != 0)
1124 { /* handle MSH_MOUSEWHEEL messages for Intellimouse */
1125 _OnMouseWheel(hwnd, HIWORD(wParam));
1126 break;
1128 #ifdef MSWIN_FIND_REPLACE
1129 else if (uMsg == s_findrep_msg && s_findrep_msg != 0)
1131 _OnFindRepl();
1133 #endif
1134 return MyWindowProc(hwnd, uMsg, wParam, lParam);
1137 return 1;
1141 * End of call-back routines
1144 /* parent window, if specified with -P */
1145 HWND vim_parent_hwnd = NULL;
1147 static BOOL CALLBACK
1148 FindWindowTitle(HWND hwnd, LPARAM lParam)
1150 char buf[2048];
1151 char *title = (char *)lParam;
1153 if (GetWindowText(hwnd, buf, sizeof(buf)))
1155 if (strstr(buf, title) != NULL)
1157 /* Found it. Store the window ref. and quit searching if MDI
1158 * works. */
1159 vim_parent_hwnd = FindWindowEx(hwnd, NULL, "MDIClient", NULL);
1160 if (vim_parent_hwnd != NULL)
1161 return FALSE;
1164 return TRUE; /* continue searching */
1168 * Invoked for '-P "title"' argument: search for parent application to open
1169 * our window in.
1171 void
1172 gui_mch_set_parent(char *title)
1174 EnumWindows(FindWindowTitle, (LPARAM)title);
1175 if (vim_parent_hwnd == NULL)
1177 EMSG2(_("E671: Cannot find window title \"%s\""), title);
1178 mch_exit(2);
1182 #ifndef FEAT_OLE
1183 static void
1184 ole_error(char *arg)
1186 char buf[IOSIZE];
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);
1194 #endif
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.
1201 void
1202 gui_mch_prepare(int *argc, char **argv)
1204 int silent = FALSE;
1205 int idx;
1207 /* Check for special OLE command line parameters */
1208 if ((*argc == 2 || *argc == 3) && (argv[1][0] == '-' || argv[1][0] == '/'))
1210 /* Check for a "-silent" argument first. */
1211 if (*argc == 3 && STRICMP(argv[1] + 1, "silent") == 0
1212 && (argv[2][0] == '-' || argv[2][0] == '/'))
1214 silent = TRUE;
1215 idx = 2;
1217 else
1218 idx = 1;
1220 /* Register Vim as an OLE Automation server */
1221 if (STRICMP(argv[idx] + 1, "register") == 0)
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
1233 /* Unregister Vim as an OLE Automation server */
1234 if (STRICMP(argv[idx] + 1, "unregister") == 0)
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
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).
1251 if (STRICMP(argv[idx] + 1, "embedding") == 0)
1253 #ifdef FEAT_OLE
1254 *argc = 1;
1255 #else
1256 ole_error("embedding");
1257 mch_exit(2);
1258 #endif
1262 #ifdef FEAT_OLE
1264 int bDoRestart = FALSE;
1266 InitOLE(&bDoRestart);
1267 /* automatically exit after registering */
1268 if (bDoRestart)
1269 mch_exit(0);
1271 #endif
1273 #ifdef FEAT_NETBEANS_INTG
1275 /* stolen from gui_x11.x */
1276 int arg;
1278 for (arg = 1; arg < *argc; arg++)
1279 if (strncmp("-nb", argv[arg], 3) == 0)
1281 usingNetbeans++;
1282 netbeansArg = argv[arg];
1283 mch_memmove(&argv[arg], &argv[arg + 1],
1284 (--*argc - arg) * sizeof(char *));
1285 argv[*argc] = NULL;
1286 break; /* enough? */
1289 if (usingNetbeans)
1291 WSADATA wsaData;
1292 int wsaerr;
1294 /* Init WinSock */
1295 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
1296 if (wsaerr == 0)
1297 WSInitialized = TRUE;
1300 #endif
1302 /* get the OS version info */
1303 os_version.dwOSVersionInfoSize = sizeof(os_version);
1304 GetVersionEx(&os_version); /* this call works on Win32s, Win95 and WinNT */
1306 /* try and load the user32.dll library and get the entry points for
1307 * multi-monitor-support. */
1308 if ((user32_lib = LoadLibrary("User32.dll")) != NULL)
1310 pMonitorFromWindow = (TMonitorFromWindow)GetProcAddress(user32_lib,
1311 "MonitorFromWindow");
1313 /* there are ...A and ...W version of GetMonitorInfo - looking at
1314 * winuser.h, they have exactly the same declaration. */
1315 pGetMonitorInfo = (TGetMonitorInfo)GetProcAddress(user32_lib,
1316 "GetMonitorInfoA");
1321 * Initialise the GUI. Create all the windows, set up all the call-backs
1322 * etc.
1325 gui_mch_init(void)
1327 const char szVimWndClass[] = VIM_CLASS;
1328 const char szTextAreaClass[] = "VimTextArea";
1329 WNDCLASS wndclass;
1330 #ifdef FEAT_MBYTE
1331 const WCHAR szVimWndClassW[] = VIM_CLASSW;
1332 const WCHAR szTextAreaClassW[] = L"VimTextArea";
1333 WNDCLASSW wndclassw;
1334 #endif
1335 #ifdef GLOBAL_IME
1336 ATOM atom;
1337 #endif
1339 /* Return here if the window was already opened (happens when
1340 * gui_mch_dialog() is called early). */
1341 if (s_hwnd != NULL)
1342 goto theend;
1345 * Load the tearoff bitmap
1347 #ifdef FEAT_TEAROFF
1348 s_htearbitmap = LoadBitmap(s_hinst, "IDB_TEAROFF");
1349 #endif
1351 gui.scrollbar_width = GetSystemMetrics(SM_CXVSCROLL);
1352 gui.scrollbar_height = GetSystemMetrics(SM_CYHSCROLL);
1353 #ifdef FEAT_MENU
1354 gui.menu_height = 0; /* Windows takes care of this */
1355 #endif
1356 gui.border_width = 0;
1358 s_brush = CreateSolidBrush(GetSysColor(COLOR_BTNFACE));
1360 #ifdef FEAT_MBYTE
1361 /* First try using the wide version, so that we can use any title.
1362 * Otherwise only characters in the active codepage will work. */
1363 if (GetClassInfoW(s_hinst, szVimWndClassW, &wndclassw) == 0)
1365 wndclassw.style = CS_DBLCLKS;
1366 wndclassw.lpfnWndProc = _WndProc;
1367 wndclassw.cbClsExtra = 0;
1368 wndclassw.cbWndExtra = 0;
1369 wndclassw.hInstance = s_hinst;
1370 wndclassw.hIcon = LoadIcon(wndclassw.hInstance, "IDR_VIM");
1371 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
1372 wndclassw.hbrBackground = s_brush;
1373 wndclassw.lpszMenuName = NULL;
1374 wndclassw.lpszClassName = szVimWndClassW;
1376 if ((
1377 #ifdef GLOBAL_IME
1378 atom =
1379 #endif
1380 RegisterClassW(&wndclassw)) == 0)
1382 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
1383 return FAIL;
1385 /* Must be Windows 98, fall back to non-wide function. */
1387 else
1388 wide_WindowProc = TRUE;
1391 if (!wide_WindowProc)
1392 #endif
1394 if (GetClassInfo(s_hinst, szVimWndClass, &wndclass) == 0)
1396 wndclass.style = CS_DBLCLKS;
1397 wndclass.lpfnWndProc = _WndProc;
1398 wndclass.cbClsExtra = 0;
1399 wndclass.cbWndExtra = 0;
1400 wndclass.hInstance = s_hinst;
1401 wndclass.hIcon = LoadIcon(wndclass.hInstance, "IDR_VIM");
1402 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
1403 wndclass.hbrBackground = s_brush;
1404 wndclass.lpszMenuName = NULL;
1405 wndclass.lpszClassName = szVimWndClass;
1407 if ((
1408 #ifdef GLOBAL_IME
1409 atom =
1410 #endif
1411 RegisterClass(&wndclass)) == 0)
1412 return FAIL;
1415 if (vim_parent_hwnd != NULL)
1417 #ifdef HAVE_TRY_EXCEPT
1418 __try
1420 #endif
1421 /* Open inside the specified parent window.
1422 * TODO: last argument should point to a CLIENTCREATESTRUCT
1423 * structure. */
1424 s_hwnd = CreateWindowEx(
1425 WS_EX_MDICHILD,
1426 szVimWndClass, "Vim MSWindows GUI",
1427 WS_OVERLAPPEDWINDOW | WS_CHILD | WS_CLIPSIBLINGS | 0xC000,
1428 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
1429 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
1430 100, /* Any value will do */
1431 100, /* Any value will do */
1432 vim_parent_hwnd, NULL,
1433 s_hinst, NULL);
1434 #ifdef HAVE_TRY_EXCEPT
1436 __except(EXCEPTION_EXECUTE_HANDLER)
1438 /* NOP */
1440 #endif
1441 if (s_hwnd == NULL)
1443 EMSG(_("E672: Unable to open window inside MDI application"));
1444 mch_exit(2);
1447 else
1449 /* If the provided windowid is not valid reset it to zero, so that it
1450 * is ignored and we open our own window. */
1451 if (IsWindow((HWND)win_socket_id) <= 0)
1452 win_socket_id = 0;
1454 /* Create a window. If win_socket_id is not zero without border and
1455 * titlebar, it will be reparented below. */
1456 s_hwnd = CreateWindow(
1457 szVimWndClass, "Vim MSWindows GUI",
1458 win_socket_id == 0 ? WS_OVERLAPPEDWINDOW : WS_POPUP,
1459 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
1460 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
1461 100, /* Any value will do */
1462 100, /* Any value will do */
1463 NULL, NULL,
1464 s_hinst, NULL);
1465 if (s_hwnd != NULL && win_socket_id != 0)
1467 SetParent(s_hwnd, (HWND)win_socket_id);
1468 ShowWindow(s_hwnd, SW_SHOWMAXIMIZED);
1472 if (s_hwnd == NULL)
1473 return FAIL;
1475 #ifdef GLOBAL_IME
1476 global_ime_init(atom, s_hwnd);
1477 #endif
1478 #if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
1479 dyn_imm_load();
1480 #endif
1482 /* Create the text area window */
1483 #ifdef FEAT_MBYTE
1484 if (wide_WindowProc)
1486 if (GetClassInfoW(s_hinst, szTextAreaClassW, &wndclassw) == 0)
1488 wndclassw.style = CS_OWNDC;
1489 wndclassw.lpfnWndProc = _TextAreaWndProc;
1490 wndclassw.cbClsExtra = 0;
1491 wndclassw.cbWndExtra = 0;
1492 wndclassw.hInstance = s_hinst;
1493 wndclassw.hIcon = NULL;
1494 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
1495 wndclassw.hbrBackground = NULL;
1496 wndclassw.lpszMenuName = NULL;
1497 wndclassw.lpszClassName = szTextAreaClassW;
1499 if (RegisterClassW(&wndclassw) == 0)
1500 return FAIL;
1503 else
1504 #endif
1505 if (GetClassInfo(s_hinst, szTextAreaClass, &wndclass) == 0)
1507 wndclass.style = CS_OWNDC;
1508 wndclass.lpfnWndProc = _TextAreaWndProc;
1509 wndclass.cbClsExtra = 0;
1510 wndclass.cbWndExtra = 0;
1511 wndclass.hInstance = s_hinst;
1512 wndclass.hIcon = NULL;
1513 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
1514 wndclass.hbrBackground = NULL;
1515 wndclass.lpszMenuName = NULL;
1516 wndclass.lpszClassName = szTextAreaClass;
1518 if (RegisterClass(&wndclass) == 0)
1519 return FAIL;
1521 s_textArea = CreateWindowEx(
1522 WS_EX_CLIENTEDGE,
1523 szTextAreaClass, "Vim text area",
1524 WS_CHILD | WS_VISIBLE, 0, 0,
1525 100, /* Any value will do for now */
1526 100, /* Any value will do for now */
1527 s_hwnd, NULL,
1528 s_hinst, NULL);
1530 if (s_textArea == NULL)
1531 return FAIL;
1533 #ifdef FEAT_MENU
1534 s_menuBar = CreateMenu();
1535 #endif
1536 s_hdc = GetDC(s_textArea);
1538 #ifdef MSWIN16_FASTTEXT
1539 SetBkMode(s_hdc, OPAQUE);
1540 #endif
1542 #ifdef FEAT_WINDOWS
1543 DragAcceptFiles(s_hwnd, TRUE);
1544 #endif
1546 /* Do we need to bother with this? */
1547 /* m_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT); */
1549 /* Get background/foreground colors from the system */
1550 gui_mch_def_colors();
1552 /* Get the colors from the "Normal" group (set in syntax.c or in a vimrc
1553 * file) */
1554 set_normal_colors();
1557 * Check that none of the colors are the same as the background color.
1558 * Then store the current values as the defaults.
1560 gui_check_colors();
1561 gui.def_norm_pixel = gui.norm_pixel;
1562 gui.def_back_pixel = gui.back_pixel;
1564 /* Get the colors for the highlight groups (gui_check_colors() might have
1565 * changed them) */
1566 highlight_gui_started();
1569 * Start out by adding the configured border width into the border offset
1571 gui.border_offset = gui.border_width + 2; /*CLIENT EDGE*/
1574 * Set up for Intellimouse processing
1576 init_mouse_wheel();
1579 * compute a couple of metrics used for the dialogs
1581 get_dialog_font_metrics();
1582 #ifdef FEAT_TOOLBAR
1584 * Create the toolbar
1586 initialise_toolbar();
1587 #endif
1588 #ifdef FEAT_GUI_TABLINE
1590 * Create the tabline
1592 initialise_tabline();
1593 #endif
1594 #ifdef MSWIN_FIND_REPLACE
1596 * Initialise the dialog box stuff
1598 s_findrep_msg = RegisterWindowMessage(FINDMSGSTRING);
1600 /* Initialise the struct */
1601 s_findrep_struct.lStructSize = sizeof(s_findrep_struct);
1602 s_findrep_struct.lpstrFindWhat = alloc(MSWIN_FR_BUFSIZE);
1603 s_findrep_struct.lpstrFindWhat[0] = NUL;
1604 s_findrep_struct.lpstrReplaceWith = alloc(MSWIN_FR_BUFSIZE);
1605 s_findrep_struct.lpstrReplaceWith[0] = NUL;
1606 s_findrep_struct.wFindWhatLen = MSWIN_FR_BUFSIZE;
1607 s_findrep_struct.wReplaceWithLen = MSWIN_FR_BUFSIZE;
1608 # if defined(FEAT_MBYTE) && defined(WIN3264)
1609 s_findrep_struct_w.lStructSize = sizeof(s_findrep_struct_w);
1610 s_findrep_struct_w.lpstrFindWhat =
1611 (LPWSTR)alloc(MSWIN_FR_BUFSIZE * sizeof(WCHAR));
1612 s_findrep_struct_w.lpstrFindWhat[0] = NUL;
1613 s_findrep_struct_w.lpstrReplaceWith =
1614 (LPWSTR)alloc(MSWIN_FR_BUFSIZE * sizeof(WCHAR));
1615 s_findrep_struct_w.lpstrReplaceWith[0] = NUL;
1616 s_findrep_struct_w.wFindWhatLen = MSWIN_FR_BUFSIZE;
1617 s_findrep_struct_w.wReplaceWithLen = MSWIN_FR_BUFSIZE;
1618 # endif
1619 #endif
1621 theend:
1622 /* Display any pending error messages */
1623 display_errors();
1625 return OK;
1629 * Get the size of the screen, taking position on multiple monitors into
1630 * account (if supported).
1632 static void
1633 get_work_area(RECT *spi_rect)
1635 _HMONITOR mon;
1636 _MONITORINFO moninfo;
1638 /* use these functions only if available */
1639 if (pMonitorFromWindow != NULL && pGetMonitorInfo != NULL)
1641 /* work out which monitor the window is on, and get *it's* work area */
1642 mon = pMonitorFromWindow(s_hwnd, 1 /*MONITOR_DEFAULTTOPRIMARY*/);
1643 if (mon != NULL)
1645 moninfo.cbSize = sizeof(_MONITORINFO);
1646 if (pGetMonitorInfo(mon, &moninfo))
1648 *spi_rect = moninfo.rcWork;
1649 return;
1653 /* this is the old method... */
1654 SystemParametersInfo(SPI_GETWORKAREA, 0, spi_rect, 0);
1658 * Set the size of the window to the given width and height in pixels.
1660 /*ARGSUSED*/
1661 void
1662 gui_mch_set_shellsize(int width, int height,
1663 int min_width, int min_height, int base_width, int base_height,
1664 int direction)
1666 RECT workarea_rect;
1667 int win_width, win_height;
1668 int win_xpos, win_ypos;
1669 WINDOWPLACEMENT wndpl;
1670 int workarea_left;
1672 /* Try to keep window completely on screen. */
1673 /* Get position of the screen work area. This is the part that is not
1674 * used by the taskbar or appbars. */
1675 get_work_area(&workarea_rect);
1677 /* Get current posision of our window. Note that the .left and .top are
1678 * relative to the work area. */
1679 wndpl.length = sizeof(WINDOWPLACEMENT);
1680 GetWindowPlacement(s_hwnd, &wndpl);
1682 /* Resizing a maximized window looks very strange, unzoom it first.
1683 * But don't do it when still starting up, it may have been requested in
1684 * the shortcut. */
1685 if (wndpl.showCmd == SW_SHOWMAXIMIZED && starting == 0)
1687 ShowWindow(s_hwnd, SW_SHOWNORMAL);
1688 /* Need to get the settings of the normal window. */
1689 GetWindowPlacement(s_hwnd, &wndpl);
1692 win_xpos = wndpl.rcNormalPosition.left;
1693 win_ypos = wndpl.rcNormalPosition.top;
1695 /* compute the size of the outside of the window */
1696 win_width = width + GetSystemMetrics(SM_CXFRAME) * 2;
1697 win_height = height + GetSystemMetrics(SM_CYFRAME) * 2
1698 + GetSystemMetrics(SM_CYCAPTION)
1699 #ifdef FEAT_MENU
1700 + gui_mswin_get_menu_height(FALSE)
1701 #endif
1704 /* There is an inconsistency when using two monitors and Vim is on the
1705 * second (right) one: win_xpos will be the offset from the workarea of
1706 * the left monitor. While with one monitor it's the offset from the
1707 * workarea (including a possible taskbar on the left). Detect the second
1708 * monitor by checking for the left offset to be quite big. */
1709 if (workarea_rect.left > 300)
1710 workarea_left = 0;
1711 else
1712 workarea_left = workarea_rect.left;
1714 /* If the window is going off the screen, move it on to the screen.
1715 * win_xpos and win_ypos are relative to the workarea. */
1716 if ((direction & RESIZE_HOR)
1717 && workarea_left + win_xpos + win_width > workarea_rect.right)
1718 win_xpos = workarea_rect.right - win_width - workarea_left;
1720 if ((direction & RESIZE_HOR) && win_xpos < 0)
1721 win_xpos = 0;
1723 if ((direction & RESIZE_VERT)
1724 && workarea_rect.top + win_ypos + win_height > workarea_rect.bottom)
1725 win_ypos = workarea_rect.bottom - win_height - workarea_rect.top;
1727 if ((direction & RESIZE_VERT) && win_ypos < 0)
1728 win_ypos = 0;
1730 wndpl.rcNormalPosition.left = win_xpos;
1731 wndpl.rcNormalPosition.right = win_xpos + win_width;
1732 wndpl.rcNormalPosition.top = win_ypos;
1733 wndpl.rcNormalPosition.bottom = win_ypos + win_height;
1735 /* set window position - we should use SetWindowPlacement rather than
1736 * SetWindowPos as the MSDN docs say the coord systems returned by
1737 * these two are not compatible. */
1738 SetWindowPlacement(s_hwnd, &wndpl);
1740 SetActiveWindow(s_hwnd);
1741 SetFocus(s_hwnd);
1743 #ifdef FEAT_MENU
1744 /* Menu may wrap differently now */
1745 gui_mswin_get_menu_height(!gui.starting);
1746 #endif
1750 void
1751 gui_mch_set_scrollbar_thumb(
1752 scrollbar_T *sb,
1753 long val,
1754 long size,
1755 long max)
1757 SCROLLINFO info;
1759 sb->scroll_shift = 0;
1760 while (max > 32767)
1762 max = (max + 1) >> 1;
1763 val >>= 1;
1764 size >>= 1;
1765 ++sb->scroll_shift;
1768 if (sb->scroll_shift > 0)
1769 ++size;
1771 info.cbSize = sizeof(info);
1772 info.fMask = SIF_POS | SIF_RANGE | SIF_PAGE;
1773 info.nPos = val;
1774 info.nMin = 0;
1775 info.nMax = max;
1776 info.nPage = size;
1777 SetScrollInfo(sb->id, SB_CTL, &info, TRUE);
1782 * Set the current text font.
1784 void
1785 gui_mch_set_font(GuiFont font)
1787 gui.currFont = font;
1792 * Set the current text foreground color.
1794 void
1795 gui_mch_set_fg_color(guicolor_T color)
1797 gui.currFgColor = color;
1801 * Set the current text background color.
1803 void
1804 gui_mch_set_bg_color(guicolor_T color)
1806 gui.currBgColor = color;
1810 * Set the current text special color.
1812 void
1813 gui_mch_set_sp_color(guicolor_T color)
1815 gui.currSpColor = color;
1818 #if defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)
1820 * Multi-byte handling, originally by Sung-Hoon Baek.
1821 * First static functions (no prototypes generated).
1823 #ifdef _MSC_VER
1824 # include <ime.h> /* Apparently not needed for Cygwin, MingW or Borland. */
1825 #endif
1826 #include <imm.h>
1829 * handle WM_IME_NOTIFY message
1831 /*ARGSUSED*/
1832 static LRESULT
1833 _OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData)
1835 LRESULT lResult = 0;
1836 HIMC hImc;
1838 if (!pImmGetContext || (hImc = pImmGetContext(hWnd)) == (HIMC)0)
1839 return lResult;
1840 switch (dwCommand)
1842 case IMN_SETOPENSTATUS:
1843 if (pImmGetOpenStatus(hImc))
1845 pImmSetCompositionFont(hImc, &norm_logfont);
1846 im_set_position(gui.row, gui.col);
1848 /* Disable langmap */
1849 State &= ~LANGMAP;
1850 if (State & INSERT)
1852 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1853 /* Unshown 'keymap' in status lines */
1854 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
1856 /* Save cursor position */
1857 int old_row = gui.row;
1858 int old_col = gui.col;
1860 // This must be called here before
1861 // status_redraw_curbuf(), otherwise the mode
1862 // message may appear in the wrong position.
1863 showmode();
1864 status_redraw_curbuf();
1865 update_screen(0);
1866 /* Restore cursor position */
1867 gui.row = old_row;
1868 gui.col = old_col;
1870 #endif
1873 gui_update_cursor(TRUE, FALSE);
1874 lResult = 0;
1875 break;
1877 pImmReleaseContext(hWnd, hImc);
1878 return lResult;
1881 /*ARGSUSED*/
1882 static LRESULT
1883 _OnImeComposition(HWND hwnd, WPARAM dbcs, LPARAM param)
1885 char_u *ret;
1886 int len;
1888 if ((param & GCS_RESULTSTR) == 0) /* Composition unfinished. */
1889 return 0;
1891 ret = GetResultStr(hwnd, GCS_RESULTSTR, &len);
1892 if (ret != NULL)
1894 add_to_input_buf_csi(ret, len);
1895 vim_free(ret);
1896 return 1;
1898 return 0;
1902 * get the current composition string, in UCS-2; *lenp is the number of
1903 * *lenp is the number of Unicode characters.
1905 static short_u *
1906 GetCompositionString_inUCS2(HIMC hIMC, DWORD GCS, int *lenp)
1908 LONG ret;
1909 LPWSTR wbuf = NULL;
1910 char_u *buf;
1912 if (!pImmGetContext)
1913 return NULL; /* no imm32.dll */
1915 /* Try Unicode; this'll always work on NT regardless of codepage. */
1916 ret = pImmGetCompositionStringW(hIMC, GCS, NULL, 0);
1917 if (ret == 0)
1918 return NULL; /* empty */
1920 if (ret > 0)
1922 /* Allocate the requested buffer plus space for the NUL character. */
1923 wbuf = (LPWSTR)alloc(ret + sizeof(WCHAR));
1924 if (wbuf != NULL)
1926 pImmGetCompositionStringW(hIMC, GCS, wbuf, ret);
1927 *lenp = ret / sizeof(WCHAR);
1929 return (short_u *)wbuf;
1932 /* ret < 0; we got an error, so try the ANSI version. This'll work
1933 * on 9x/ME, but only if the codepage happens to be set to whatever
1934 * we're inputting. */
1935 ret = pImmGetCompositionStringA(hIMC, GCS, NULL, 0);
1936 if (ret <= 0)
1937 return NULL; /* empty or error */
1939 buf = alloc(ret);
1940 if (buf == NULL)
1941 return NULL;
1942 pImmGetCompositionStringA(hIMC, GCS, buf, ret);
1944 /* convert from codepage to UCS-2 */
1945 MultiByteToWideChar_alloc(GetACP(), 0, buf, ret, &wbuf, lenp);
1946 vim_free(buf);
1948 return (short_u *)wbuf;
1952 * void GetResultStr()
1954 * This handles WM_IME_COMPOSITION with GCS_RESULTSTR flag on.
1955 * get complete composition string
1957 static char_u *
1958 GetResultStr(HWND hwnd, int GCS, int *lenp)
1960 HIMC hIMC; /* Input context handle. */
1961 short_u *buf = NULL;
1962 char_u *convbuf = NULL;
1964 if (!pImmGetContext || (hIMC = pImmGetContext(hwnd)) == (HIMC)0)
1965 return NULL;
1967 /* Reads in the composition string. */
1968 buf = GetCompositionString_inUCS2(hIMC, GCS, lenp);
1969 if (buf == NULL)
1970 return NULL;
1972 convbuf = utf16_to_enc(buf, lenp);
1973 pImmReleaseContext(hwnd, hIMC);
1974 vim_free(buf);
1975 return convbuf;
1977 #endif
1979 /* For global functions we need prototypes. */
1980 #if (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) || defined(PROTO)
1983 * set font to IM.
1985 void
1986 im_set_font(LOGFONT *lf)
1988 HIMC hImc;
1990 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
1992 pImmSetCompositionFont(hImc, lf);
1993 pImmReleaseContext(s_hwnd, hImc);
1998 * Notify cursor position to IM.
2000 void
2001 im_set_position(int row, int col)
2003 HIMC hImc;
2005 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
2007 COMPOSITIONFORM cfs;
2009 cfs.dwStyle = CFS_POINT;
2010 cfs.ptCurrentPos.x = FILL_X(col);
2011 cfs.ptCurrentPos.y = FILL_Y(row);
2012 MapWindowPoints(s_textArea, s_hwnd, &cfs.ptCurrentPos, 1);
2013 pImmSetCompositionWindow(hImc, &cfs);
2015 pImmReleaseContext(s_hwnd, hImc);
2020 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
2022 void
2023 im_set_active(int active)
2025 HIMC hImc;
2026 static HIMC hImcOld = (HIMC)0;
2028 if (pImmGetContext) /* if NULL imm32.dll wasn't loaded (yet) */
2030 if (p_imdisable)
2032 if (hImcOld == (HIMC)0)
2034 hImcOld = pImmGetContext(s_hwnd);
2035 if (hImcOld)
2036 pImmAssociateContext(s_hwnd, (HIMC)0);
2038 active = FALSE;
2040 else if (hImcOld != (HIMC)0)
2042 pImmAssociateContext(s_hwnd, hImcOld);
2043 hImcOld = (HIMC)0;
2046 hImc = pImmGetContext(s_hwnd);
2047 if (hImc)
2050 * for Korean ime
2052 HKL hKL = GetKeyboardLayout(0);
2054 if (LOWORD(hKL) == MAKELANGID(LANG_KOREAN, SUBLANG_KOREAN))
2056 static DWORD dwConversionSaved = 0, dwSentenceSaved = 0;
2057 static BOOL bSaved = FALSE;
2059 if (active)
2061 /* if we have a saved conversion status, restore it */
2062 if (bSaved)
2063 pImmSetConversionStatus(hImc, dwConversionSaved,
2064 dwSentenceSaved);
2065 bSaved = FALSE;
2067 else
2069 /* save conversion status and disable korean */
2070 if (pImmGetConversionStatus(hImc, &dwConversionSaved,
2071 &dwSentenceSaved))
2073 bSaved = TRUE;
2074 pImmSetConversionStatus(hImc,
2075 dwConversionSaved & ~(IME_CMODE_NATIVE
2076 | IME_CMODE_FULLSHAPE),
2077 dwSentenceSaved);
2082 pImmSetOpenStatus(hImc, active);
2083 pImmReleaseContext(s_hwnd, hImc);
2089 * Get IM status. When IM is on, return not 0. Else return 0.
2092 im_get_status()
2094 int status = 0;
2095 HIMC hImc;
2097 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
2099 status = pImmGetOpenStatus(hImc) ? 1 : 0;
2100 pImmReleaseContext(s_hwnd, hImc);
2102 return status;
2105 #endif /* FEAT_MBYTE && FEAT_MBYTE_IME */
2107 #if defined(FEAT_MBYTE) && !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME)
2108 /* Win32 with GLOBAL IME */
2111 * Notify cursor position to IM.
2113 void
2114 im_set_position(int row, int col)
2116 /* Win32 with GLOBAL IME */
2117 POINT p;
2119 p.x = FILL_X(col);
2120 p.y = FILL_Y(row);
2121 MapWindowPoints(s_textArea, s_hwnd, &p, 1);
2122 global_ime_set_position(&p);
2126 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
2128 void
2129 im_set_active(int active)
2131 global_ime_set_status(active);
2135 * Get IM status. When IM is on, return not 0. Else return 0.
2138 im_get_status()
2140 return global_ime_get_status();
2142 #endif
2144 #ifdef FEAT_MBYTE
2146 * Convert latin9 text "text[len]" to ucs-2 in "unicodebuf".
2148 static void
2149 latin9_to_ucs(char_u *text, int len, WCHAR *unicodebuf)
2151 int c;
2153 while (--len >= 0)
2155 c = *text++;
2156 switch (c)
2158 case 0xa4: c = 0x20ac; break; /* euro */
2159 case 0xa6: c = 0x0160; break; /* S hat */
2160 case 0xa8: c = 0x0161; break; /* S -hat */
2161 case 0xb4: c = 0x017d; break; /* Z hat */
2162 case 0xb8: c = 0x017e; break; /* Z -hat */
2163 case 0xbc: c = 0x0152; break; /* OE */
2164 case 0xbd: c = 0x0153; break; /* oe */
2165 case 0xbe: c = 0x0178; break; /* Y */
2167 *unicodebuf++ = c;
2170 #endif
2172 #ifdef FEAT_RIGHTLEFT
2174 * What is this for? In the case where you are using Win98 or Win2K or later,
2175 * and you are using a Hebrew font (or Arabic!), Windows does you a favor and
2176 * reverses the string sent to the TextOut... family. This sucks, because we
2177 * go to a lot of effort to do the right thing, and there doesn't seem to be a
2178 * way to tell Windblows not to do this!
2180 * The short of it is that this 'RevOut' only gets called if you are running
2181 * one of the new, "improved" MS OSes, and only if you are running in
2182 * 'rightleft' mode. It makes display take *slightly* longer, but not
2183 * noticeably so.
2185 static void
2186 RevOut( HDC s_hdc,
2187 int col,
2188 int row,
2189 UINT foptions,
2190 CONST RECT *pcliprect,
2191 LPCTSTR text,
2192 UINT len,
2193 CONST INT *padding)
2195 int ix;
2196 static int special = -1;
2198 if (special == -1)
2200 /* Check windows version: special treatment is needed if it is NT 5 or
2201 * Win98 or higher. */
2202 if ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2203 && os_version.dwMajorVersion >= 5)
2204 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
2205 && (os_version.dwMajorVersion > 4
2206 || (os_version.dwMajorVersion == 4
2207 && os_version.dwMinorVersion > 0))))
2208 special = 1;
2209 else
2210 special = 0;
2213 if (special)
2214 for (ix = 0; ix < (int)len; ++ix)
2215 ExtTextOut(s_hdc, col + TEXT_X(ix), row, foptions,
2216 pcliprect, text + ix, 1, padding);
2217 else
2218 ExtTextOut(s_hdc, col, row, foptions, pcliprect, text, len, padding);
2220 #endif
2222 void
2223 gui_mch_draw_string(
2224 int row,
2225 int col,
2226 char_u *text,
2227 int len,
2228 int flags)
2230 static int *padding = NULL;
2231 static int pad_size = 0;
2232 int i;
2233 const RECT *pcliprect = NULL;
2234 UINT foptions = 0;
2235 #ifdef FEAT_MBYTE
2236 static WCHAR *unicodebuf = NULL;
2237 static int *unicodepdy = NULL;
2238 static int unibuflen = 0;
2239 int n = 0;
2240 #endif
2241 HPEN hpen, old_pen;
2242 int y;
2244 #ifndef MSWIN16_FASTTEXT
2246 * Italic and bold text seems to have an extra row of pixels at the bottom
2247 * (below where the bottom of the character should be). If we draw the
2248 * characters with a solid background, the top row of pixels in the
2249 * character below will be overwritten. We can fix this by filling in the
2250 * background ourselves, to the correct character proportions, and then
2251 * writing the character in transparent mode. Still have a problem when
2252 * the character is "_", which gets written on to the character below.
2253 * New fix: set gui.char_ascent to -1. This shifts all characters up one
2254 * pixel in their slots, which fixes the problem with the bottom row of
2255 * pixels. We still need this code because otherwise the top row of pixels
2256 * becomes a problem. - webb.
2258 static HBRUSH hbr_cache[2] = {NULL, NULL};
2259 static guicolor_T brush_color[2] = {INVALCOLOR, INVALCOLOR};
2260 static int brush_lru = 0;
2261 HBRUSH hbr;
2262 RECT rc;
2264 if (!(flags & DRAW_TRANSP))
2267 * Clear background first.
2268 * Note: FillRect() excludes right and bottom of rectangle.
2270 rc.left = FILL_X(col);
2271 rc.top = FILL_Y(row);
2272 #ifdef FEAT_MBYTE
2273 if (has_mbyte)
2275 int cell_len = 0;
2277 /* Compute the length in display cells. */
2278 for (n = 0; n < len; n += MB_BYTE2LEN(text[n]))
2279 cell_len += (*mb_ptr2cells)(text + n);
2280 rc.right = FILL_X(col + cell_len);
2282 else
2283 #endif
2284 rc.right = FILL_X(col + len);
2285 rc.bottom = FILL_Y(row + 1);
2287 /* Cache the created brush, that saves a lot of time. We need two:
2288 * one for cursor background and one for the normal background. */
2289 if (gui.currBgColor == brush_color[0])
2291 hbr = hbr_cache[0];
2292 brush_lru = 1;
2294 else if (gui.currBgColor == brush_color[1])
2296 hbr = hbr_cache[1];
2297 brush_lru = 0;
2299 else
2301 if (hbr_cache[brush_lru] != NULL)
2302 DeleteBrush(hbr_cache[brush_lru]);
2303 hbr_cache[brush_lru] = CreateSolidBrush(gui.currBgColor);
2304 brush_color[brush_lru] = gui.currBgColor;
2305 hbr = hbr_cache[brush_lru];
2306 brush_lru = !brush_lru;
2308 FillRect(s_hdc, &rc, hbr);
2310 SetBkMode(s_hdc, TRANSPARENT);
2313 * When drawing block cursor, prevent inverted character spilling
2314 * over character cell (can happen with bold/italic)
2316 if (flags & DRAW_CURSOR)
2318 pcliprect = &rc;
2319 foptions = ETO_CLIPPED;
2322 #else
2324 * The alternative would be to write the characters in opaque mode, but
2325 * when the text is not exactly the same proportions as normal text, too
2326 * big or too little a rectangle gets drawn for the background.
2328 SetBkMode(s_hdc, OPAQUE);
2329 SetBkColor(s_hdc, gui.currBgColor);
2330 #endif
2331 SetTextColor(s_hdc, gui.currFgColor);
2332 SelectFont(s_hdc, gui.currFont);
2334 if (pad_size != Columns || padding == NULL || padding[0] != gui.char_width)
2336 vim_free(padding);
2337 pad_size = Columns;
2339 /* Don't give an out-of-memory message here, it would call us
2340 * recursively. */
2341 padding = (int *)lalloc(pad_size * sizeof(int), FALSE);
2342 if (padding != NULL)
2343 for (i = 0; i < pad_size; i++)
2344 padding[i] = gui.char_width;
2347 /* On NT, tell the font renderer not to "help" us with Hebrew and Arabic
2348 * text. This doesn't work in 9x, so we have to deal with it manually on
2349 * those systems. */
2350 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT)
2351 foptions |= ETO_IGNORELANGUAGE;
2354 * We have to provide the padding argument because italic and bold versions
2355 * of fixed-width fonts are often one pixel or so wider than their normal
2356 * versions.
2357 * No check for DRAW_BOLD, Windows will have done it already.
2360 #ifdef FEAT_MBYTE
2361 /* Check if there are any UTF-8 characters. If not, use normal text
2362 * output to speed up output. */
2363 if (enc_utf8)
2364 for (n = 0; n < len; ++n)
2365 if (text[n] >= 0x80)
2366 break;
2368 /* Check if the Unicode buffer exists and is big enough. Create it
2369 * with the same length as the multi-byte string, the number of wide
2370 * characters is always equal or smaller. */
2371 if ((enc_utf8
2372 || (enc_codepage > 0 && (int)GetACP() != enc_codepage)
2373 || enc_latin9)
2374 && (unicodebuf == NULL || len > unibuflen))
2376 vim_free(unicodebuf);
2377 unicodebuf = (WCHAR *)lalloc(len * sizeof(WCHAR), FALSE);
2379 vim_free(unicodepdy);
2380 unicodepdy = (int *)lalloc(len * sizeof(int), FALSE);
2382 unibuflen = len;
2385 if (enc_utf8 && n < len && unicodebuf != NULL)
2387 /* Output UTF-8 characters. Caller has already separated
2388 * composing characters. */
2389 int i;
2390 int wlen; /* string length in words */
2391 int clen; /* string length in characters */
2392 int cells; /* cell width of string up to composing char */
2393 int cw; /* width of current cell */
2394 int c;
2396 wlen = 0;
2397 clen = 0;
2398 cells = 0;
2399 for (i = 0; i < len; )
2401 c = utf_ptr2char(text + i);
2402 if (c >= 0x10000)
2404 /* Turn into UTF-16 encoding. */
2405 unicodebuf[wlen++] = ((c - 0x10000) >> 10) + 0xD800;
2406 unicodebuf[wlen++] = ((c - 0x10000) & 0x3ff) + 0xDC00;
2408 else
2410 unicodebuf[wlen++] = c;
2412 cw = utf_char2cells(c);
2413 if (cw > 2) /* don't use 4 for unprintable char */
2414 cw = 1;
2415 if (unicodepdy != NULL)
2417 /* Use unicodepdy to make characters fit as we expect, even
2418 * when the font uses different widths (e.g., bold character
2419 * is wider). */
2420 unicodepdy[clen] = cw * gui.char_width;
2422 cells += cw;
2423 i += utfc_ptr2len_len(text + i, len - i);
2424 ++clen;
2426 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
2427 foptions, pcliprect, unicodebuf, wlen, unicodepdy);
2428 len = cells; /* used for underlining */
2430 else if ((enc_codepage > 0 && (int)GetACP() != enc_codepage) || enc_latin9)
2432 /* If we want to display codepage data, and the current CP is not the
2433 * ANSI one, we need to go via Unicode. */
2434 if (unicodebuf != NULL)
2436 if (enc_latin9)
2437 latin9_to_ucs(text, len, unicodebuf);
2438 else
2439 len = MultiByteToWideChar(enc_codepage,
2440 MB_PRECOMPOSED,
2441 (char *)text, len,
2442 (LPWSTR)unicodebuf, unibuflen);
2443 if (len != 0)
2445 /* Use unicodepdy to make characters fit as we expect, even
2446 * when the font uses different widths (e.g., bold character
2447 * is wider). */
2448 if (unicodepdy != NULL)
2450 int i;
2451 int cw;
2453 for (i = 0; i < len; ++i)
2455 cw = utf_char2cells(unicodebuf[i]);
2456 if (cw > 2)
2457 cw = 1;
2458 unicodepdy[i] = cw * gui.char_width;
2461 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
2462 foptions, pcliprect, unicodebuf, len, unicodepdy);
2466 else
2467 #endif
2469 #ifdef FEAT_RIGHTLEFT
2470 /* If we can't use ETO_IGNORELANGUAGE, we can't tell Windows not to
2471 * mess up RL text, so we have to draw it character-by-character.
2472 * Only do this if RL is on, since it's slow. */
2473 if (curwin->w_p_rl && !(foptions & ETO_IGNORELANGUAGE))
2474 RevOut(s_hdc, TEXT_X(col), TEXT_Y(row),
2475 foptions, pcliprect, (char *)text, len, padding);
2476 else
2477 #endif
2478 ExtTextOut(s_hdc, TEXT_X(col), TEXT_Y(row),
2479 foptions, pcliprect, (char *)text, len, padding);
2482 /* Underline */
2483 if (flags & DRAW_UNDERL)
2485 hpen = CreatePen(PS_SOLID, 1, gui.currFgColor);
2486 old_pen = SelectObject(s_hdc, hpen);
2487 /* When p_linespace is 0, overwrite the bottom row of pixels.
2488 * Otherwise put the line just below the character. */
2489 y = FILL_Y(row + 1) - 1;
2490 #ifndef MSWIN16_FASTTEXT
2491 if (p_linespace > 1)
2492 y -= p_linespace - 1;
2493 #endif
2494 MoveToEx(s_hdc, FILL_X(col), y, NULL);
2495 /* Note: LineTo() excludes the last pixel in the line. */
2496 LineTo(s_hdc, FILL_X(col + len), y);
2497 DeleteObject(SelectObject(s_hdc, old_pen));
2500 /* Undercurl */
2501 if (flags & DRAW_UNDERC)
2503 int x;
2504 int offset;
2505 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
2507 y = FILL_Y(row + 1) - 1;
2508 for (x = FILL_X(col); x < FILL_X(col + len); ++x)
2510 offset = val[x % 8];
2511 SetPixel(s_hdc, x, y - offset, gui.currSpColor);
2518 * Output routines.
2521 /* Flush any output to the screen */
2522 void
2523 gui_mch_flush(void)
2525 # if defined(__BORLANDC__)
2527 * The GdiFlush declaration (in Borland C 5.01 <wingdi.h>) is not a
2528 * prototype declaration.
2529 * The compiler complains if __stdcall is not used in both declarations.
2531 BOOL __stdcall GdiFlush(void);
2532 # endif
2534 GdiFlush();
2537 static void
2538 clear_rect(RECT *rcp)
2540 HBRUSH hbr;
2542 hbr = CreateSolidBrush(gui.back_pixel);
2543 FillRect(s_hdc, rcp, hbr);
2544 DeleteBrush(hbr);
2548 void
2549 gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
2551 RECT workarea_rect;
2553 get_work_area(&workarea_rect);
2555 *screen_w = workarea_rect.right - workarea_rect.left
2556 - GetSystemMetrics(SM_CXFRAME) * 2;
2558 /* FIXME: dirty trick: Because the gui_get_base_height() doesn't include
2559 * the menubar for MSwin, we subtract it from the screen height, so that
2560 * the window size can be made to fit on the screen. */
2561 *screen_h = workarea_rect.bottom - workarea_rect.top
2562 - GetSystemMetrics(SM_CYFRAME) * 2
2563 - GetSystemMetrics(SM_CYCAPTION)
2564 #ifdef FEAT_MENU
2565 - gui_mswin_get_menu_height(FALSE)
2566 #endif
2571 #if defined(FEAT_MENU) || defined(PROTO)
2573 * Add a sub menu to the menu bar.
2575 void
2576 gui_mch_add_menu(
2577 vimmenu_T *menu,
2578 int pos)
2580 vimmenu_T *parent = menu->parent;
2582 menu->submenu_id = CreatePopupMenu();
2583 menu->id = s_menu_id++;
2585 if (menu_is_menubar(menu->name))
2587 if (is_winnt_3())
2589 InsertMenu((parent == NULL) ? s_menuBar : parent->submenu_id,
2590 (UINT)pos, MF_POPUP | MF_STRING | MF_BYPOSITION,
2591 (long_u)menu->submenu_id, (LPCTSTR) menu->name);
2593 else
2595 #ifdef FEAT_MBYTE
2596 WCHAR *wn = NULL;
2597 int n;
2599 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2601 /* 'encoding' differs from active codepage: convert menu name
2602 * and use wide function */
2603 wn = enc_to_utf16(menu->name, NULL);
2604 if (wn != NULL)
2606 MENUITEMINFOW infow;
2608 infow.cbSize = sizeof(infow);
2609 infow.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID
2610 | MIIM_SUBMENU;
2611 infow.dwItemData = (long_u)menu;
2612 infow.wID = menu->id;
2613 infow.fType = MFT_STRING;
2614 infow.dwTypeData = wn;
2615 infow.cch = (UINT)wcslen(wn);
2616 infow.hSubMenu = menu->submenu_id;
2617 n = InsertMenuItemW((parent == NULL)
2618 ? s_menuBar : parent->submenu_id,
2619 (UINT)pos, TRUE, &infow);
2620 vim_free(wn);
2621 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2622 /* Failed, try using non-wide function. */
2623 wn = NULL;
2627 if (wn == NULL)
2628 #endif
2630 MENUITEMINFO info;
2632 info.cbSize = sizeof(info);
2633 info.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID | MIIM_SUBMENU;
2634 info.dwItemData = (long_u)menu;
2635 info.wID = menu->id;
2636 info.fType = MFT_STRING;
2637 info.dwTypeData = (LPTSTR)menu->name;
2638 info.cch = (UINT)STRLEN(menu->name);
2639 info.hSubMenu = menu->submenu_id;
2640 InsertMenuItem((parent == NULL)
2641 ? s_menuBar : parent->submenu_id,
2642 (UINT)pos, TRUE, &info);
2647 /* Fix window size if menu may have wrapped */
2648 if (parent == NULL)
2649 gui_mswin_get_menu_height(!gui.starting);
2650 #ifdef FEAT_TEAROFF
2651 else if (IsWindow(parent->tearoff_handle))
2652 rebuild_tearoff(parent);
2653 #endif
2656 void
2657 gui_mch_show_popupmenu(vimmenu_T *menu)
2659 POINT mp;
2661 (void)GetCursorPos((LPPOINT)&mp);
2662 gui_mch_show_popupmenu_at(menu, (int)mp.x, (int)mp.y);
2665 void
2666 gui_make_popup(char_u *path_name, int mouse_pos)
2668 vimmenu_T *menu = gui_find_menu(path_name);
2670 if (menu != NULL)
2672 POINT p;
2674 /* Find the position of the current cursor */
2675 GetDCOrgEx(s_hdc, &p);
2676 if (mouse_pos)
2678 int mx, my;
2680 gui_mch_getmouse(&mx, &my);
2681 p.x += mx;
2682 p.y += my;
2684 else if (curwin != NULL)
2686 p.x += TEXT_X(W_WINCOL(curwin) + curwin->w_wcol + 1);
2687 p.y += TEXT_Y(W_WINROW(curwin) + curwin->w_wrow + 1);
2689 msg_scroll = FALSE;
2690 gui_mch_show_popupmenu_at(menu, (int)p.x, (int)p.y);
2694 #if defined(FEAT_TEAROFF) || defined(PROTO)
2696 * Given a menu descriptor, e.g. "File.New", find it in the menu hierarchy and
2697 * create it as a pseudo-"tearoff menu".
2699 void
2700 gui_make_tearoff(char_u *path_name)
2702 vimmenu_T *menu = gui_find_menu(path_name);
2704 /* Found the menu, so tear it off. */
2705 if (menu != NULL)
2706 gui_mch_tearoff(menu->dname, menu, 0xffffL, 0xffffL);
2708 #endif
2711 * Add a menu item to a menu
2713 void
2714 gui_mch_add_menu_item(
2715 vimmenu_T *menu,
2716 int idx)
2718 vimmenu_T *parent = menu->parent;
2720 menu->id = s_menu_id++;
2721 menu->submenu_id = NULL;
2723 #ifdef FEAT_TEAROFF
2724 if (STRNCMP(menu->name, TEAR_STRING, TEAR_LEN) == 0)
2726 InsertMenu(parent->submenu_id, (UINT)idx, MF_BITMAP|MF_BYPOSITION,
2727 (UINT)menu->id, (LPCTSTR) s_htearbitmap);
2729 else
2730 #endif
2731 #ifdef FEAT_TOOLBAR
2732 if (menu_is_toolbar(parent->name))
2734 TBBUTTON newtb;
2736 vim_memset(&newtb, 0, sizeof(newtb));
2737 if (menu_is_separator(menu->name))
2739 newtb.iBitmap = 0;
2740 newtb.fsStyle = TBSTYLE_SEP;
2742 else
2744 newtb.iBitmap = get_toolbar_bitmap(menu);
2745 newtb.fsStyle = TBSTYLE_BUTTON;
2747 newtb.idCommand = menu->id;
2748 newtb.fsState = TBSTATE_ENABLED;
2749 newtb.iString = 0;
2750 SendMessage(s_toolbarhwnd, TB_INSERTBUTTON, (WPARAM)idx,
2751 (LPARAM)&newtb);
2752 menu->submenu_id = (HMENU)-1;
2754 else
2755 #endif
2757 #ifdef FEAT_MBYTE
2758 WCHAR *wn = NULL;
2759 int n;
2761 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2763 /* 'encoding' differs from active codepage: convert menu item name
2764 * and use wide function */
2765 wn = enc_to_utf16(menu->name, NULL);
2766 if (wn != NULL)
2768 n = InsertMenuW(parent->submenu_id, (UINT)idx,
2769 (menu_is_separator(menu->name)
2770 ? MF_SEPARATOR : MF_STRING) | MF_BYPOSITION,
2771 (UINT)menu->id, wn);
2772 vim_free(wn);
2773 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2774 /* Failed, try using non-wide function. */
2775 wn = NULL;
2778 if (wn == NULL)
2779 #endif
2780 InsertMenu(parent->submenu_id, (UINT)idx,
2781 (menu_is_separator(menu->name) ? MF_SEPARATOR : MF_STRING)
2782 | MF_BYPOSITION,
2783 (UINT)menu->id, (LPCTSTR)menu->name);
2784 #ifdef FEAT_TEAROFF
2785 if (IsWindow(parent->tearoff_handle))
2786 rebuild_tearoff(parent);
2787 #endif
2792 * Destroy the machine specific menu widget.
2794 void
2795 gui_mch_destroy_menu(vimmenu_T *menu)
2797 #ifdef FEAT_TOOLBAR
2799 * is this a toolbar button?
2801 if (menu->submenu_id == (HMENU)-1)
2803 int iButton;
2805 iButton = (int)SendMessage(s_toolbarhwnd, TB_COMMANDTOINDEX,
2806 (WPARAM)menu->id, 0);
2807 SendMessage(s_toolbarhwnd, TB_DELETEBUTTON, (WPARAM)iButton, 0);
2809 else
2810 #endif
2812 if (menu->parent != NULL
2813 && menu_is_popup(menu->parent->dname)
2814 && menu->parent->submenu_id != NULL)
2815 RemoveMenu(menu->parent->submenu_id, menu->id, MF_BYCOMMAND);
2816 else
2817 RemoveMenu(s_menuBar, menu->id, MF_BYCOMMAND);
2818 if (menu->submenu_id != NULL)
2819 DestroyMenu(menu->submenu_id);
2820 #ifdef FEAT_TEAROFF
2821 if (IsWindow(menu->tearoff_handle))
2822 DestroyWindow(menu->tearoff_handle);
2823 if (menu->parent != NULL
2824 && menu->parent->children != NULL
2825 && IsWindow(menu->parent->tearoff_handle))
2827 /* This menu must not show up when rebuilding the tearoff window. */
2828 menu->modes = 0;
2829 rebuild_tearoff(menu->parent);
2831 #endif
2835 #ifdef FEAT_TEAROFF
2836 static void
2837 rebuild_tearoff(vimmenu_T *menu)
2839 /*hackish*/
2840 char_u tbuf[128];
2841 RECT trect;
2842 RECT rct;
2843 RECT roct;
2844 int x, y;
2846 HWND thwnd = menu->tearoff_handle;
2848 GetWindowText(thwnd, tbuf, 127);
2849 if (GetWindowRect(thwnd, &trect)
2850 && GetWindowRect(s_hwnd, &rct)
2851 && GetClientRect(s_hwnd, &roct))
2853 x = trect.left - rct.left;
2854 y = (trect.top - rct.bottom + roct.bottom);
2856 else
2858 x = y = 0xffffL;
2860 DestroyWindow(thwnd);
2861 if (menu->children != NULL)
2863 gui_mch_tearoff(tbuf, menu, x, y);
2864 if (IsWindow(menu->tearoff_handle))
2865 (void) SetWindowPos(menu->tearoff_handle,
2866 NULL,
2867 (int)trect.left,
2868 (int)trect.top,
2869 0, 0,
2870 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
2873 #endif /* FEAT_TEAROFF */
2876 * Make a menu either grey or not grey.
2878 void
2879 gui_mch_menu_grey(
2880 vimmenu_T *menu,
2881 int grey)
2883 #ifdef FEAT_TOOLBAR
2885 * is this a toolbar button?
2887 if (menu->submenu_id == (HMENU)-1)
2889 SendMessage(s_toolbarhwnd, TB_ENABLEBUTTON,
2890 (WPARAM)menu->id, (LPARAM) MAKELONG((grey ? FALSE : TRUE), 0) );
2892 else
2893 #endif
2894 if (grey)
2895 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_GRAYED);
2896 else
2897 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_ENABLED);
2899 #ifdef FEAT_TEAROFF
2900 if ((menu->parent != NULL) && (IsWindow(menu->parent->tearoff_handle)))
2902 WORD menuID;
2903 HWND menuHandle;
2906 * A tearoff button has changed state.
2908 if (menu->children == NULL)
2909 menuID = (WORD)(menu->id);
2910 else
2911 menuID = (WORD)((long_u)(menu->submenu_id) | (DWORD)0x8000);
2912 menuHandle = GetDlgItem(menu->parent->tearoff_handle, menuID);
2913 if (menuHandle)
2914 EnableWindow(menuHandle, !grey);
2917 #endif
2920 #endif /* FEAT_MENU */
2923 /* define some macros used to make the dialogue creation more readable */
2925 #define add_string(s) strcpy((LPSTR)p, s); (LPSTR)p += (strlen((LPSTR)p) + 1)
2926 #define add_word(x) *p++ = (x)
2927 #define add_long(x) dwp = (DWORD *)p; *dwp++ = (x); p = (WORD *)dwp
2929 #if defined(FEAT_GUI_DIALOG) || defined(PROTO)
2931 * stuff for dialogs
2935 * The callback routine used by all the dialogs. Very simple. First,
2936 * acknowledges the INITDIALOG message so that Windows knows to do standard
2937 * dialog stuff (Return = default, Esc = cancel....) Second, if a button is
2938 * pressed, return that button's ID - IDCANCEL (2), which is the button's
2939 * number.
2941 /*ARGSUSED*/
2942 static LRESULT CALLBACK
2943 dialog_callback(
2944 HWND hwnd,
2945 UINT message,
2946 WPARAM wParam,
2947 LPARAM lParam)
2949 if (message == WM_INITDIALOG)
2951 CenterWindow(hwnd, GetWindow(hwnd, GW_OWNER));
2952 /* Set focus to the dialog. Set the default button, if specified. */
2953 (void)SetFocus(hwnd);
2954 if (dialog_default_button > IDCANCEL)
2955 (void)SetFocus(GetDlgItem(hwnd, dialog_default_button));
2956 else
2957 /* We don't have a default, set focus on another element of the
2958 * dialog window, probably the icon */
2959 (void)SetFocus(GetDlgItem(hwnd, DLG_NONBUTTON_CONTROL));
2960 return FALSE;
2963 if (message == WM_COMMAND)
2965 int button = LOWORD(wParam);
2967 /* Don't end the dialog if something was selected that was
2968 * not a button.
2970 if (button >= DLG_NONBUTTON_CONTROL)
2971 return TRUE;
2973 /* If the edit box exists, copy the string. */
2974 if (s_textfield != NULL)
2976 # if defined(FEAT_MBYTE) && defined(WIN3264)
2977 /* If the OS is Windows NT, and 'encoding' differs from active
2978 * codepage: use wide function and convert text. */
2979 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
2980 && enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2982 WCHAR *wp = (WCHAR *)alloc(IOSIZE * sizeof(WCHAR));
2983 char_u *p;
2985 GetDlgItemTextW(hwnd, DLG_NONBUTTON_CONTROL + 2, wp, IOSIZE);
2986 p = utf16_to_enc(wp, NULL);
2987 vim_strncpy(s_textfield, p, IOSIZE);
2988 vim_free(p);
2989 vim_free(wp);
2991 else
2992 # endif
2993 GetDlgItemText(hwnd, DLG_NONBUTTON_CONTROL + 2,
2994 s_textfield, IOSIZE);
2998 * Need to check for IDOK because if the user just hits Return to
2999 * accept the default value, some reason this is what we get.
3001 if (button == IDOK)
3003 if (dialog_default_button > IDCANCEL)
3004 EndDialog(hwnd, dialog_default_button);
3006 else
3007 EndDialog(hwnd, button - IDCANCEL);
3008 return TRUE;
3011 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
3013 EndDialog(hwnd, 0);
3014 return TRUE;
3016 return FALSE;
3020 * Create a dialog dynamically from the parameter strings.
3021 * type = type of dialog (question, alert, etc.)
3022 * title = dialog title. may be NULL for default title.
3023 * message = text to display. Dialog sizes to accommodate it.
3024 * buttons = '\n' separated list of button captions, default first.
3025 * dfltbutton = number of default button.
3027 * This routine returns 1 if the first button is pressed,
3028 * 2 for the second, etc.
3030 * 0 indicates Esc was pressed.
3031 * -1 for unexpected error
3033 * If stubbing out this fn, return 1.
3036 static const char_u *dlg_icons[] = /* must match names in resource file */
3038 "IDR_VIM",
3039 "IDR_VIM_ERROR",
3040 "IDR_VIM_ALERT",
3041 "IDR_VIM_INFO",
3042 "IDR_VIM_QUESTION"
3046 gui_mch_dialog(
3047 int type,
3048 char_u *title,
3049 char_u *message,
3050 char_u *buttons,
3051 int dfltbutton,
3052 char_u *textfield)
3054 WORD *p, *pdlgtemplate, *pnumitems;
3055 DWORD *dwp;
3056 int numButtons;
3057 int *buttonWidths, *buttonPositions;
3058 int buttonYpos;
3059 int nchar, i;
3060 DWORD lStyle;
3061 int dlgwidth = 0;
3062 int dlgheight;
3063 int editboxheight;
3064 int horizWidth = 0;
3065 int msgheight;
3066 char_u *pstart;
3067 char_u *pend;
3068 char_u *last_white;
3069 char_u *tbuffer;
3070 RECT rect;
3071 HWND hwnd;
3072 HDC hdc;
3073 HFONT font, oldFont;
3074 TEXTMETRIC fontInfo;
3075 int fontHeight;
3076 int textWidth, minButtonWidth, messageWidth;
3077 int maxDialogWidth;
3078 int maxDialogHeight;
3079 int scroll_flag = 0;
3080 int vertical;
3081 int dlgPaddingX;
3082 int dlgPaddingY;
3083 #ifdef USE_SYSMENU_FONT
3084 LOGFONT lfSysmenu;
3085 int use_lfSysmenu = FALSE;
3086 #endif
3087 garray_T ga;
3088 int l;
3090 #ifndef NO_CONSOLE
3091 /* Don't output anything in silent mode ("ex -s") */
3092 if (silent_mode)
3093 return dfltbutton; /* return default option */
3094 #endif
3096 #if 0
3097 /* If there is no window yet, open it. */
3098 if (s_hwnd == NULL && gui_mch_init() == FAIL)
3099 return dfltbutton;
3100 #else
3101 if (s_hwnd == NULL)
3102 get_dialog_font_metrics();
3103 #endif
3105 if ((type < 0) || (type > VIM_LAST_TYPE))
3106 type = 0;
3108 /* allocate some memory for dialog template */
3109 /* TODO should compute this really */
3110 pdlgtemplate = p = (PWORD)LocalAlloc(LPTR,
3111 DLG_ALLOC_SIZE + STRLEN(message) * 2);
3113 if (p == NULL)
3114 return -1;
3117 * make a copy of 'buttons' to fiddle with it. complier grizzles because
3118 * vim_strsave() doesn't take a const arg (why not?), so cast away the
3119 * const.
3121 tbuffer = vim_strsave(buttons);
3122 if (tbuffer == NULL)
3123 return -1;
3125 --dfltbutton; /* Change from one-based to zero-based */
3127 /* Count buttons */
3128 numButtons = 1;
3129 for (i = 0; tbuffer[i] != '\0'; i++)
3131 if (tbuffer[i] == DLG_BUTTON_SEP)
3132 numButtons++;
3134 if (dfltbutton >= numButtons)
3135 dfltbutton = -1;
3137 /* Allocate array to hold the width of each button */
3138 buttonWidths = (int *)lalloc(numButtons * sizeof(int), TRUE);
3139 if (buttonWidths == NULL)
3140 return -1;
3142 /* Allocate array to hold the X position of each button */
3143 buttonPositions = (int *)lalloc(numButtons * sizeof(int), TRUE);
3144 if (buttonPositions == NULL)
3145 return -1;
3148 * Calculate how big the dialog must be.
3150 hwnd = GetDesktopWindow();
3151 hdc = GetWindowDC(hwnd);
3152 #ifdef USE_SYSMENU_FONT
3153 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3155 font = CreateFontIndirect(&lfSysmenu);
3156 use_lfSysmenu = TRUE;
3158 else
3159 #endif
3160 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3161 VARIABLE_PITCH , DLG_FONT_NAME);
3162 if (s_usenewlook)
3164 oldFont = SelectFont(hdc, font);
3165 dlgPaddingX = DLG_PADDING_X;
3166 dlgPaddingY = DLG_PADDING_Y;
3168 else
3170 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
3171 dlgPaddingX = DLG_OLD_STYLE_PADDING_X;
3172 dlgPaddingY = DLG_OLD_STYLE_PADDING_Y;
3174 GetTextMetrics(hdc, &fontInfo);
3175 fontHeight = fontInfo.tmHeight;
3177 /* Minimum width for horizontal button */
3178 minButtonWidth = GetTextWidth(hdc, "Cancel", 6);
3180 /* Maximum width of a dialog, if possible */
3181 if (s_hwnd == NULL)
3183 RECT workarea_rect;
3185 /* We don't have a window, use the desktop area. */
3186 get_work_area(&workarea_rect);
3187 maxDialogWidth = workarea_rect.right - workarea_rect.left - 100;
3188 if (maxDialogWidth > 600)
3189 maxDialogWidth = 600;
3190 maxDialogHeight = workarea_rect.bottom - workarea_rect.top - 100;
3192 else
3194 /* Use our own window for the size, unless it's very small. */
3195 GetWindowRect(s_hwnd, &rect);
3196 maxDialogWidth = rect.right - rect.left
3197 - GetSystemMetrics(SM_CXFRAME) * 2;
3198 if (maxDialogWidth < DLG_MIN_MAX_WIDTH)
3199 maxDialogWidth = DLG_MIN_MAX_WIDTH;
3201 maxDialogHeight = rect.bottom - rect.top
3202 - GetSystemMetrics(SM_CXFRAME) * 2;
3203 if (maxDialogHeight < DLG_MIN_MAX_HEIGHT)
3204 maxDialogHeight = DLG_MIN_MAX_HEIGHT;
3207 /* Set dlgwidth to width of message.
3208 * Copy the message into "ga", changing NL to CR-NL and inserting line
3209 * breaks where needed. */
3210 pstart = message;
3211 messageWidth = 0;
3212 msgheight = 0;
3213 ga_init2(&ga, sizeof(char), 500);
3216 msgheight += fontHeight; /* at least one line */
3218 /* Need to figure out where to break the string. The system does it
3219 * at a word boundary, which would mean we can't compute the number of
3220 * wrapped lines. */
3221 textWidth = 0;
3222 last_white = NULL;
3223 for (pend = pstart; *pend != NUL && *pend != '\n'; )
3225 #ifdef FEAT_MBYTE
3226 l = (*mb_ptr2len)(pend);
3227 #else
3228 l = 1;
3229 #endif
3230 if (l == 1 && vim_iswhite(*pend)
3231 && textWidth > maxDialogWidth * 3 / 4)
3232 last_white = pend;
3233 textWidth += GetTextWidth(hdc, pend, l);
3234 if (textWidth >= maxDialogWidth)
3236 /* Line will wrap. */
3237 messageWidth = maxDialogWidth;
3238 msgheight += fontHeight;
3239 textWidth = 0;
3241 if (last_white != NULL)
3243 /* break the line just after a space */
3244 ga.ga_len -= (int)(pend - (last_white + 1));
3245 pend = last_white + 1;
3246 last_white = NULL;
3248 ga_append(&ga, '\r');
3249 ga_append(&ga, '\n');
3250 continue;
3253 while (--l >= 0)
3254 ga_append(&ga, *pend++);
3256 if (textWidth > messageWidth)
3257 messageWidth = textWidth;
3259 ga_append(&ga, '\r');
3260 ga_append(&ga, '\n');
3261 pstart = pend + 1;
3262 } while (*pend != NUL);
3264 if (ga.ga_data != NULL)
3265 message = ga.ga_data;
3267 messageWidth += 10; /* roundoff space */
3269 /* Restrict the size to a maximum. Causes a scrollbar to show up. */
3270 if (msgheight > maxDialogHeight)
3272 msgheight = maxDialogHeight;
3273 scroll_flag = WS_VSCROLL;
3274 messageWidth += GetSystemMetrics(SM_CXVSCROLL);
3277 /* Add width of icon to dlgwidth, and some space */
3278 dlgwidth = messageWidth + DLG_ICON_WIDTH + 3 * dlgPaddingX;
3280 if (msgheight < DLG_ICON_HEIGHT)
3281 msgheight = DLG_ICON_HEIGHT;
3284 * Check button names. A long one will make the dialog wider.
3285 * When called early (-register error message) p_go isn't initialized.
3287 vertical = (p_go != NULL && vim_strchr(p_go, GO_VERTICAL) != NULL);
3288 if (!vertical)
3290 // Place buttons horizontally if they fit.
3291 horizWidth = dlgPaddingX;
3292 pstart = tbuffer;
3293 i = 0;
3296 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
3297 if (pend == NULL)
3298 pend = pstart + STRLEN(pstart); // Last button name.
3299 textWidth = GetTextWidth(hdc, pstart, (int)(pend - pstart));
3300 if (textWidth < minButtonWidth)
3301 textWidth = minButtonWidth;
3302 textWidth += dlgPaddingX; /* Padding within button */
3303 buttonWidths[i] = textWidth;
3304 buttonPositions[i++] = horizWidth;
3305 horizWidth += textWidth + dlgPaddingX; /* Pad between buttons */
3306 pstart = pend + 1;
3307 } while (*pend != NUL);
3309 if (horizWidth > maxDialogWidth)
3310 vertical = TRUE; // Too wide to fit on the screen.
3311 else if (horizWidth > dlgwidth)
3312 dlgwidth = horizWidth;
3315 if (vertical)
3317 // Stack buttons vertically.
3318 pstart = tbuffer;
3321 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
3322 if (pend == NULL)
3323 pend = pstart + STRLEN(pstart); // Last button name.
3324 textWidth = GetTextWidth(hdc, pstart, (int)(pend - pstart));
3325 textWidth += dlgPaddingX; /* Padding within button */
3326 textWidth += DLG_VERT_PADDING_X * 2; /* Padding around button */
3327 if (textWidth > dlgwidth)
3328 dlgwidth = textWidth;
3329 pstart = pend + 1;
3330 } while (*pend != NUL);
3333 if (dlgwidth < DLG_MIN_WIDTH)
3334 dlgwidth = DLG_MIN_WIDTH; /* Don't allow a really thin dialog!*/
3336 /* start to fill in the dlgtemplate information. addressing by WORDs */
3337 if (s_usenewlook)
3338 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE |DS_SETFONT;
3339 else
3340 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE;
3342 add_long(lStyle);
3343 add_long(0); // (lExtendedStyle)
3344 pnumitems = p; /*save where the number of items must be stored*/
3345 add_word(0); // NumberOfItems(will change later)
3346 add_word(10); // x
3347 add_word(10); // y
3348 add_word(PixelToDialogX(dlgwidth)); // cx
3350 // Dialog height.
3351 if (vertical)
3352 dlgheight = msgheight + 2 * dlgPaddingY +
3353 DLG_VERT_PADDING_Y + 2 * fontHeight * numButtons;
3354 else
3355 dlgheight = msgheight + 3 * dlgPaddingY + 2 * fontHeight;
3357 // Dialog needs to be taller if contains an edit box.
3358 editboxheight = fontHeight + dlgPaddingY + 4 * DLG_VERT_PADDING_Y;
3359 if (textfield != NULL)
3360 dlgheight += editboxheight;
3362 add_word(PixelToDialogY(dlgheight));
3364 add_word(0); // Menu
3365 add_word(0); // Class
3367 /* copy the title of the dialog */
3368 nchar = nCopyAnsiToWideChar(p, (title ?
3369 (LPSTR)title :
3370 (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
3371 p += nchar;
3373 if (s_usenewlook)
3375 /* do the font, since DS_3DLOOK doesn't work properly */
3376 #ifdef USE_SYSMENU_FONT
3377 if (use_lfSysmenu)
3379 /* point size */
3380 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
3381 GetDeviceCaps(hdc, LOGPIXELSY));
3382 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
3384 else
3385 #endif
3387 *p++ = DLG_FONT_POINT_SIZE; // point size
3388 nchar = nCopyAnsiToWideChar(p, TEXT(DLG_FONT_NAME));
3390 p += nchar;
3393 buttonYpos = msgheight + 2 * dlgPaddingY;
3395 if (textfield != NULL)
3396 buttonYpos += editboxheight;
3398 pstart = tbuffer;
3399 if (!vertical)
3400 horizWidth = (dlgwidth - horizWidth) / 2; /* Now it's X offset */
3401 for (i = 0; i < numButtons; i++)
3403 /* get end of this button. */
3404 for ( pend = pstart;
3405 *pend && (*pend != DLG_BUTTON_SEP);
3406 pend++)
3409 if (*pend)
3410 *pend = '\0';
3413 * old NOTE:
3414 * setting the BS_DEFPUSHBUTTON style doesn't work because Windows sets
3415 * the focus to the first tab-able button and in so doing makes that
3416 * the default!! Grrr. Workaround: Make the default button the only
3417 * one with WS_TABSTOP style. Means user can't tab between buttons, but
3418 * he/she can use arrow keys.
3420 * new NOTE: BS_DEFPUSHBUTTON is required to be able to select the
3421 * right button when hitting <Enter>. E.g., for the ":confirm quit"
3422 * dialog. Also needed for when the textfield is the default control.
3423 * It appears to work now (perhaps not on Win95?).
3425 if (vertical)
3427 p = add_dialog_element(p,
3428 (i == dfltbutton
3429 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
3430 PixelToDialogX(DLG_VERT_PADDING_X),
3431 PixelToDialogY(buttonYpos /* TBK */
3432 + 2 * fontHeight * i),
3433 PixelToDialogX(dlgwidth - 2 * DLG_VERT_PADDING_X),
3434 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
3435 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, pstart);
3437 else
3439 p = add_dialog_element(p,
3440 (i == dfltbutton
3441 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
3442 PixelToDialogX(horizWidth + buttonPositions[i]),
3443 PixelToDialogY(buttonYpos), /* TBK */
3444 PixelToDialogX(buttonWidths[i]),
3445 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
3446 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, pstart);
3448 pstart = pend + 1; /*next button*/
3450 *pnumitems += numButtons;
3452 /* Vim icon */
3453 p = add_dialog_element(p, SS_ICON,
3454 PixelToDialogX(dlgPaddingX),
3455 PixelToDialogY(dlgPaddingY),
3456 PixelToDialogX(DLG_ICON_WIDTH),
3457 PixelToDialogY(DLG_ICON_HEIGHT),
3458 DLG_NONBUTTON_CONTROL + 0, (WORD)0x0082,
3459 dlg_icons[type]);
3461 #if 0
3462 /* Dialog message */
3463 p = add_dialog_element(p, SS_LEFT,
3464 PixelToDialogX(2 * dlgPaddingX + DLG_ICON_WIDTH),
3465 PixelToDialogY(dlgPaddingY),
3466 (WORD)(PixelToDialogX(messageWidth) + 1),
3467 PixelToDialogY(msgheight),
3468 DLG_NONBUTTON_CONTROL + 1, (WORD)0x0082, message);
3469 #else
3470 /* Dialog message */
3471 p = add_dialog_element(p, ES_LEFT|scroll_flag|ES_MULTILINE|ES_READONLY,
3472 PixelToDialogX(2 * dlgPaddingX + DLG_ICON_WIDTH),
3473 PixelToDialogY(dlgPaddingY),
3474 (WORD)(PixelToDialogX(messageWidth) + 1),
3475 PixelToDialogY(msgheight),
3476 DLG_NONBUTTON_CONTROL + 1, (WORD)0x0081, message);
3477 #endif
3479 /* Edit box */
3480 if (textfield != NULL)
3482 p = add_dialog_element(p, ES_LEFT|ES_AUTOHSCROLL|WS_TABSTOP|WS_BORDER,
3483 PixelToDialogX(2 * dlgPaddingX),
3484 PixelToDialogY(2 * dlgPaddingY + msgheight),
3485 PixelToDialogX(dlgwidth - 4 * dlgPaddingX),
3486 PixelToDialogY(fontHeight + dlgPaddingY),
3487 DLG_NONBUTTON_CONTROL + 2, (WORD)0x0081, textfield);
3488 *pnumitems += 1;
3491 *pnumitems += 2;
3493 SelectFont(hdc, oldFont);
3494 DeleteObject(font);
3495 ReleaseDC(hwnd, hdc);
3497 /* Let the dialog_callback() function know which button to make default
3498 * If we have an edit box, make that the default. We also need to tell
3499 * dialog_callback() if this dialog contains an edit box or not. We do
3500 * this by setting s_textfield if it does.
3502 if (textfield != NULL)
3504 dialog_default_button = DLG_NONBUTTON_CONTROL + 2;
3505 s_textfield = textfield;
3507 else
3509 dialog_default_button = IDCANCEL + 1 + dfltbutton;
3510 s_textfield = NULL;
3513 /* show the dialog box modally and get a return value */
3514 nchar = (int)DialogBoxIndirect(
3515 s_hinst,
3516 (LPDLGTEMPLATE)pdlgtemplate,
3517 s_hwnd,
3518 (DLGPROC)dialog_callback);
3520 LocalFree(LocalHandle(pdlgtemplate));
3521 vim_free(tbuffer);
3522 vim_free(buttonWidths);
3523 vim_free(buttonPositions);
3524 vim_free(ga.ga_data);
3526 /* Focus back to our window (for when MDI is used). */
3527 (void)SetFocus(s_hwnd);
3529 return nchar;
3532 #endif /* FEAT_GUI_DIALOG */
3535 * Put a simple element (basic class) onto a dialog template in memory.
3536 * return a pointer to where the next item should be added.
3538 * parameters:
3539 * lStyle = additional style flags
3540 * (be careful, NT3.51 & Win32s will ignore the new ones)
3541 * x,y = x & y positions IN DIALOG UNITS
3542 * w,h = width and height IN DIALOG UNITS
3543 * Id = ID used in messages
3544 * clss = class ID, e.g 0x0080 for a button, 0x0082 for a static
3545 * caption = usually text or resource name
3547 * TODO: use the length information noted here to enable the dialog creation
3548 * routines to work out more exactly how much memory they need to alloc.
3550 static PWORD
3551 add_dialog_element(
3552 PWORD p,
3553 DWORD lStyle,
3554 WORD x,
3555 WORD y,
3556 WORD w,
3557 WORD h,
3558 WORD Id,
3559 WORD clss,
3560 const char *caption)
3562 int nchar;
3564 p = lpwAlign(p); /* Align to dword boundary*/
3565 lStyle = lStyle | WS_VISIBLE | WS_CHILD;
3566 *p++ = LOWORD(lStyle);
3567 *p++ = HIWORD(lStyle);
3568 *p++ = 0; // LOWORD (lExtendedStyle)
3569 *p++ = 0; // HIWORD (lExtendedStyle)
3570 *p++ = x;
3571 *p++ = y;
3572 *p++ = w;
3573 *p++ = h;
3574 *p++ = Id; //9 or 10 words in all
3576 *p++ = (WORD)0xffff;
3577 *p++ = clss; //2 more here
3579 nchar = nCopyAnsiToWideChar(p, (LPSTR)caption); //strlen(caption)+1
3580 p += nchar;
3582 *p++ = 0; // advance pointer over nExtraStuff WORD - 2 more
3584 return p; //total = 15+ (strlen(caption)) words
3585 // = 30 + 2(strlen(caption) bytes reqd
3590 * Helper routine. Take an input pointer, return closest pointer that is
3591 * aligned on a DWORD (4 byte) boundary. Taken from the Win32SDK samples.
3593 static LPWORD
3594 lpwAlign(
3595 LPWORD lpIn)
3597 long_u ul;
3599 ul = (long_u)lpIn;
3600 ul += 3;
3601 ul >>= 2;
3602 ul <<= 2;
3603 return (LPWORD)ul;
3607 * Helper routine. Takes second parameter as Ansi string, copies it to first
3608 * parameter as wide character (16-bits / char) string, and returns integer
3609 * number of wide characters (words) in string (including the trailing wide
3610 * char NULL). Partly taken from the Win32SDK samples.
3612 static int
3613 nCopyAnsiToWideChar(
3614 LPWORD lpWCStr,
3615 LPSTR lpAnsiIn)
3617 int nChar = 0;
3618 #ifdef FEAT_MBYTE
3619 int len = lstrlen(lpAnsiIn) + 1; /* include NUL character */
3620 int i;
3621 WCHAR *wn;
3623 if (enc_codepage == 0 && (int)GetACP() != enc_codepage)
3625 /* Not a codepage, use our own conversion function. */
3626 wn = enc_to_utf16(lpAnsiIn, NULL);
3627 if (wn != NULL)
3629 wcscpy(lpWCStr, wn);
3630 nChar = (int)wcslen(wn) + 1;
3631 vim_free(wn);
3634 if (nChar == 0)
3635 /* Use Win32 conversion function. */
3636 nChar = MultiByteToWideChar(
3637 enc_codepage > 0 ? enc_codepage : CP_ACP,
3638 MB_PRECOMPOSED,
3639 lpAnsiIn, len,
3640 lpWCStr, len);
3641 for (i = 0; i < nChar; ++i)
3642 if (lpWCStr[i] == (WORD)'\t') /* replace tabs with spaces */
3643 lpWCStr[i] = (WORD)' ';
3644 #else
3647 if (*lpAnsiIn == '\t')
3648 *lpWCStr++ = (WORD)' ';
3649 else
3650 *lpWCStr++ = (WORD)*lpAnsiIn;
3651 nChar++;
3652 } while (*lpAnsiIn++);
3653 #endif
3655 return nChar;
3659 #ifdef FEAT_TEAROFF
3661 * The callback function for all the modeless dialogs that make up the
3662 * "tearoff menus" Very simple - forward button presses (to fool Vim into
3663 * thinking its menus have been clicked), and go away when closed.
3665 static LRESULT CALLBACK
3666 tearoff_callback(
3667 HWND hwnd,
3668 UINT message,
3669 WPARAM wParam,
3670 LPARAM lParam)
3672 if (message == WM_INITDIALOG)
3673 return (TRUE);
3675 /* May show the mouse pointer again. */
3676 HandleMouseHide(message, lParam);
3678 if (message == WM_COMMAND)
3680 if ((WORD)(LOWORD(wParam)) & 0x8000)
3682 POINT mp;
3683 RECT rect;
3685 if (GetCursorPos(&mp) && GetWindowRect(hwnd, &rect))
3687 (void)TrackPopupMenu(
3688 (HMENU)(long_u)(LOWORD(wParam) ^ 0x8000),
3689 TPM_LEFTALIGN | TPM_LEFTBUTTON,
3690 (int)rect.right - 8,
3691 (int)mp.y,
3692 (int)0, /*reserved param*/
3693 s_hwnd,
3694 NULL);
3696 * NOTE: The pop-up menu can eat the mouse up event.
3697 * We deal with this in normal.c.
3701 else
3702 /* Pass on messages to the main Vim window */
3703 PostMessage(s_hwnd, WM_COMMAND, LOWORD(wParam), 0);
3705 * Give main window the focus back: this is so after
3706 * choosing a tearoff button you can start typing again
3707 * straight away.
3709 (void)SetFocus(s_hwnd);
3710 return TRUE;
3712 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
3714 DestroyWindow(hwnd);
3715 return TRUE;
3718 /* When moved around, give main window the focus back. */
3719 if (message == WM_EXITSIZEMOVE)
3720 (void)SetActiveWindow(s_hwnd);
3722 return FALSE;
3724 #endif
3728 * Decide whether to use the "new look" (small, non-bold font) or the "old
3729 * look" (big, clanky font) for dialogs, and work out a few values for use
3730 * later accordingly.
3732 static void
3733 get_dialog_font_metrics(void)
3735 HDC hdc;
3736 HFONT hfontTools = 0;
3737 DWORD dlgFontSize;
3738 SIZE size;
3739 #ifdef USE_SYSMENU_FONT
3740 LOGFONT lfSysmenu;
3741 #endif
3743 s_usenewlook = FALSE;
3746 * For NT3.51 and Win32s, we stick with the old look
3747 * because it matches everything else.
3749 if (!is_winnt_3())
3751 #ifdef USE_SYSMENU_FONT
3752 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3753 hfontTools = CreateFontIndirect(&lfSysmenu);
3754 else
3755 #endif
3756 hfontTools = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0,
3757 0, 0, 0, 0, VARIABLE_PITCH , DLG_FONT_NAME);
3759 if (hfontTools)
3761 hdc = GetDC(s_hwnd);
3762 SelectObject(hdc, hfontTools);
3764 * GetTextMetrics() doesn't return the right value in
3765 * tmAveCharWidth, so we have to figure out the dialog base units
3766 * ourselves.
3768 GetTextExtentPoint(hdc,
3769 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
3770 52, &size);
3771 ReleaseDC(s_hwnd, hdc);
3773 s_dlgfntwidth = (WORD)((size.cx / 26 + 1) / 2);
3774 s_dlgfntheight = (WORD)size.cy;
3775 s_usenewlook = TRUE;
3779 if (!s_usenewlook)
3781 dlgFontSize = GetDialogBaseUnits(); /* fall back to big old system*/
3782 s_dlgfntwidth = LOWORD(dlgFontSize);
3783 s_dlgfntheight = HIWORD(dlgFontSize);
3787 #if defined(FEAT_MENU) && defined(FEAT_TEAROFF)
3789 * Create a pseudo-"tearoff menu" based on the child
3790 * items of a given menu pointer.
3792 static void
3793 gui_mch_tearoff(
3794 char_u *title,
3795 vimmenu_T *menu,
3796 int initX,
3797 int initY)
3799 WORD *p, *pdlgtemplate, *pnumitems, *ptrueheight;
3800 int template_len;
3801 int nchar, textWidth, submenuWidth;
3802 DWORD lStyle;
3803 DWORD lExtendedStyle;
3804 WORD dlgwidth;
3805 WORD menuID;
3806 vimmenu_T *pmenu;
3807 vimmenu_T *the_menu = menu;
3808 HWND hwnd;
3809 HDC hdc;
3810 HFONT font, oldFont;
3811 int col, spaceWidth, len;
3812 int columnWidths[2];
3813 char_u *label, *text;
3814 int acLen = 0;
3815 int nameLen;
3816 int padding0, padding1, padding2 = 0;
3817 int sepPadding=0;
3818 int x;
3819 int y;
3820 #ifdef USE_SYSMENU_FONT
3821 LOGFONT lfSysmenu;
3822 int use_lfSysmenu = FALSE;
3823 #endif
3826 * If this menu is already torn off, move it to the mouse position.
3828 if (IsWindow(menu->tearoff_handle))
3830 POINT mp;
3831 if (GetCursorPos((LPPOINT)&mp))
3833 SetWindowPos(menu->tearoff_handle, NULL, mp.x, mp.y, 0, 0,
3834 SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER);
3836 return;
3840 * Create a new tearoff.
3842 if (*title == MNU_HIDDEN_CHAR)
3843 title++;
3845 /* Allocate memory to store the dialog template. It's made bigger when
3846 * needed. */
3847 template_len = DLG_ALLOC_SIZE;
3848 pdlgtemplate = p = (WORD *)LocalAlloc(LPTR, template_len);
3849 if (p == NULL)
3850 return;
3852 hwnd = GetDesktopWindow();
3853 hdc = GetWindowDC(hwnd);
3854 #ifdef USE_SYSMENU_FONT
3855 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3857 font = CreateFontIndirect(&lfSysmenu);
3858 use_lfSysmenu = TRUE;
3860 else
3861 #endif
3862 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3863 VARIABLE_PITCH , DLG_FONT_NAME);
3864 if (s_usenewlook)
3865 oldFont = SelectFont(hdc, font);
3866 else
3867 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
3869 /* Calculate width of a single space. Used for padding columns to the
3870 * right width. */
3871 spaceWidth = GetTextWidth(hdc, " ", 1);
3873 /* Figure out max width of the text column, the accelerator column and the
3874 * optional submenu column. */
3875 submenuWidth = 0;
3876 for (col = 0; col < 2; col++)
3878 columnWidths[col] = 0;
3879 for (pmenu = menu->children; pmenu != NULL; pmenu = pmenu->next)
3881 /* Use "dname" here to compute the width of the visible text. */
3882 text = (col == 0) ? pmenu->dname : pmenu->actext;
3883 if (text != NULL && *text != NUL)
3885 textWidth = GetTextWidthEnc(hdc, text, (int)STRLEN(text));
3886 if (textWidth > columnWidths[col])
3887 columnWidths[col] = textWidth;
3889 if (pmenu->children != NULL)
3890 submenuWidth = TEAROFF_COLUMN_PADDING * spaceWidth;
3893 if (columnWidths[1] == 0)
3895 /* no accelerators */
3896 if (submenuWidth != 0)
3897 columnWidths[0] += submenuWidth;
3898 else
3899 columnWidths[0] += spaceWidth;
3901 else
3903 /* there is an accelerator column */
3904 columnWidths[0] += TEAROFF_COLUMN_PADDING * spaceWidth;
3905 columnWidths[1] += submenuWidth;
3909 * Now find the total width of our 'menu'.
3911 textWidth = columnWidths[0] + columnWidths[1];
3912 if (submenuWidth != 0)
3914 submenuWidth = GetTextWidth(hdc, TEAROFF_SUBMENU_LABEL,
3915 (int)STRLEN(TEAROFF_SUBMENU_LABEL));
3916 textWidth += submenuWidth;
3918 dlgwidth = GetTextWidthEnc(hdc, title, (int)STRLEN(title));
3919 if (textWidth > dlgwidth)
3920 dlgwidth = textWidth;
3921 dlgwidth += 2 * TEAROFF_PADDING_X + TEAROFF_BUTTON_PAD_X;
3923 /* W95 can't do thin dialogs, they look v. weird! */
3924 if (mch_windows95() && dlgwidth < TEAROFF_MIN_WIDTH)
3925 dlgwidth = TEAROFF_MIN_WIDTH;
3927 /* start to fill in the dlgtemplate information. addressing by WORDs */
3928 if (s_usenewlook)
3929 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU |DS_SETFONT| WS_VISIBLE;
3930 else
3931 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU | WS_VISIBLE;
3933 lExtendedStyle = WS_EX_TOOLWINDOW|WS_EX_STATICEDGE;
3934 *p++ = LOWORD(lStyle);
3935 *p++ = HIWORD(lStyle);
3936 *p++ = LOWORD(lExtendedStyle);
3937 *p++ = HIWORD(lExtendedStyle);
3938 pnumitems = p; /* save where the number of items must be stored */
3939 *p++ = 0; // NumberOfItems(will change later)
3940 gui_mch_getmouse(&x, &y);
3941 if (initX == 0xffffL)
3942 *p++ = PixelToDialogX(x); // x
3943 else
3944 *p++ = PixelToDialogX(initX); // x
3945 if (initY == 0xffffL)
3946 *p++ = PixelToDialogY(y); // y
3947 else
3948 *p++ = PixelToDialogY(initY); // y
3949 *p++ = PixelToDialogX(dlgwidth); // cx
3950 ptrueheight = p;
3951 *p++ = 0; // dialog height: changed later anyway
3952 *p++ = 0; // Menu
3953 *p++ = 0; // Class
3955 /* copy the title of the dialog */
3956 nchar = nCopyAnsiToWideChar(p, ((*title)
3957 ? (LPSTR)title
3958 : (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
3959 p += nchar;
3961 if (s_usenewlook)
3963 /* do the font, since DS_3DLOOK doesn't work properly */
3964 #ifdef USE_SYSMENU_FONT
3965 if (use_lfSysmenu)
3967 /* point size */
3968 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
3969 GetDeviceCaps(hdc, LOGPIXELSY));
3970 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
3972 else
3973 #endif
3975 *p++ = DLG_FONT_POINT_SIZE; // point size
3976 nchar = nCopyAnsiToWideChar (p, TEXT(DLG_FONT_NAME));
3978 p += nchar;
3982 * Loop over all the items in the menu.
3983 * But skip over the tearbar.
3985 if (STRCMP(menu->children->name, TEAR_STRING) == 0)
3986 menu = menu->children->next;
3987 else
3988 menu = menu->children;
3989 for ( ; menu != NULL; menu = menu->next)
3991 if (menu->modes == 0) /* this menu has just been deleted */
3992 continue;
3993 if (menu_is_separator(menu->dname))
3995 sepPadding += 3;
3996 continue;
3999 /* Check if there still is plenty of room in the template. Make it
4000 * larger when needed. */
4001 if (((char *)p - (char *)pdlgtemplate) + 1000 > template_len)
4003 WORD *newp;
4005 newp = (WORD *)LocalAlloc(LPTR, template_len + 4096);
4006 if (newp != NULL)
4008 template_len += 4096;
4009 mch_memmove(newp, pdlgtemplate,
4010 (char *)p - (char *)pdlgtemplate);
4011 p = newp + (p - pdlgtemplate);
4012 pnumitems = newp + (pnumitems - pdlgtemplate);
4013 ptrueheight = newp + (ptrueheight - pdlgtemplate);
4014 LocalFree(LocalHandle(pdlgtemplate));
4015 pdlgtemplate = newp;
4019 /* Figure out minimal length of this menu label. Use "name" for the
4020 * actual text, "dname" for estimating the displayed size. "name"
4021 * has "&a" for mnemonic and includes the accelerator. */
4022 len = nameLen = (int)STRLEN(menu->name);
4023 padding0 = (columnWidths[0] - GetTextWidthEnc(hdc, menu->dname,
4024 (int)STRLEN(menu->dname))) / spaceWidth;
4025 len += padding0;
4027 if (menu->actext != NULL)
4029 acLen = (int)STRLEN(menu->actext);
4030 len += acLen;
4031 textWidth = GetTextWidthEnc(hdc, menu->actext, acLen);
4033 else
4034 textWidth = 0;
4035 padding1 = (columnWidths[1] - textWidth) / spaceWidth;
4036 len += padding1;
4038 if (menu->children == NULL)
4040 padding2 = submenuWidth / spaceWidth;
4041 len += padding2;
4042 menuID = (WORD)(menu->id);
4044 else
4046 len += (int)STRLEN(TEAROFF_SUBMENU_LABEL);
4047 menuID = (WORD)((long_u)(menu->submenu_id) | (DWORD)0x8000);
4050 /* Allocate menu label and fill it in */
4051 text = label = alloc((unsigned)len + 1);
4052 if (label == NULL)
4053 break;
4055 vim_strncpy(text, menu->name, nameLen);
4056 text = vim_strchr(text, TAB); /* stop at TAB before actext */
4057 if (text == NULL)
4058 text = label + nameLen; /* no actext, use whole name */
4059 while (padding0-- > 0)
4060 *text++ = ' ';
4061 if (menu->actext != NULL)
4063 STRNCPY(text, menu->actext, acLen);
4064 text += acLen;
4066 while (padding1-- > 0)
4067 *text++ = ' ';
4068 if (menu->children != NULL)
4070 STRCPY(text, TEAROFF_SUBMENU_LABEL);
4071 text += STRLEN(TEAROFF_SUBMENU_LABEL);
4073 else
4075 while (padding2-- > 0)
4076 *text++ = ' ';
4078 *text = NUL;
4081 * BS_LEFT will just be ignored on Win32s/NT3.5x - on
4082 * W95/NT4 it makes the tear-off look more like a menu.
4084 p = add_dialog_element(p,
4085 BS_PUSHBUTTON|BS_LEFT,
4086 (WORD)PixelToDialogX(TEAROFF_PADDING_X),
4087 (WORD)(sepPadding + 1 + 13 * (*pnumitems)),
4088 (WORD)PixelToDialogX(dlgwidth - 2 * TEAROFF_PADDING_X),
4089 (WORD)12,
4090 menuID, (WORD)0x0080, label);
4091 vim_free(label);
4092 (*pnumitems)++;
4095 *ptrueheight = (WORD)(sepPadding + 1 + 13 * (*pnumitems));
4098 /* show modelessly */
4099 the_menu->tearoff_handle = CreateDialogIndirect(
4100 s_hinst,
4101 (LPDLGTEMPLATE)pdlgtemplate,
4102 s_hwnd,
4103 (DLGPROC)tearoff_callback);
4105 LocalFree(LocalHandle(pdlgtemplate));
4106 SelectFont(hdc, oldFont);
4107 DeleteObject(font);
4108 ReleaseDC(hwnd, hdc);
4111 * Reassert ourselves as the active window. This is so that after creating
4112 * a tearoff, the user doesn't have to click with the mouse just to start
4113 * typing again!
4115 (void)SetActiveWindow(s_hwnd);
4117 /* make sure the right buttons are enabled */
4118 force_menu_update = TRUE;
4120 #endif
4122 #if defined(FEAT_TOOLBAR) || defined(PROTO)
4123 #include "gui_w32_rc.h"
4125 /* This not defined in older SDKs */
4126 # ifndef TBSTYLE_FLAT
4127 # define TBSTYLE_FLAT 0x0800
4128 # endif
4131 * Create the toolbar, initially unpopulated.
4132 * (just like the menu, there are no defaults, it's all
4133 * set up through menu.vim)
4135 static void
4136 initialise_toolbar(void)
4138 InitCommonControls();
4139 s_toolbarhwnd = CreateToolbarEx(
4140 s_hwnd,
4141 WS_CHILD | TBSTYLE_TOOLTIPS | TBSTYLE_FLAT,
4142 4000, //any old big number
4143 31, //number of images in initial bitmap
4144 s_hinst,
4145 IDR_TOOLBAR1, // id of initial bitmap
4146 NULL,
4147 0, // initial number of buttons
4148 TOOLBAR_BUTTON_WIDTH, //api guide is wrong!
4149 TOOLBAR_BUTTON_HEIGHT,
4150 TOOLBAR_BUTTON_WIDTH,
4151 TOOLBAR_BUTTON_HEIGHT,
4152 sizeof(TBBUTTON)
4155 gui_mch_show_toolbar(vim_strchr(p_go, GO_TOOLBAR) != NULL);
4158 static int
4159 get_toolbar_bitmap(vimmenu_T *menu)
4161 int i = -1;
4164 * Check user bitmaps first, unless builtin is specified.
4166 if (!is_winnt_3() && !menu->icon_builtin)
4168 char_u fname[MAXPATHL];
4169 HANDLE hbitmap = NULL;
4171 if (menu->iconfile != NULL)
4173 gui_find_iconfile(menu->iconfile, fname, "bmp");
4174 hbitmap = LoadImage(
4175 NULL,
4176 fname,
4177 IMAGE_BITMAP,
4178 TOOLBAR_BUTTON_WIDTH,
4179 TOOLBAR_BUTTON_HEIGHT,
4180 LR_LOADFROMFILE |
4181 LR_LOADMAP3DCOLORS
4186 * If the LoadImage call failed, or the "icon=" file
4187 * didn't exist or wasn't specified, try the menu name
4189 if (hbitmap == NULL
4190 && (gui_find_bitmap(menu->name, fname, "bmp") == OK))
4191 hbitmap = LoadImage(
4192 NULL,
4193 fname,
4194 IMAGE_BITMAP,
4195 TOOLBAR_BUTTON_WIDTH,
4196 TOOLBAR_BUTTON_HEIGHT,
4197 LR_LOADFROMFILE |
4198 LR_LOADMAP3DCOLORS
4201 if (hbitmap != NULL)
4203 TBADDBITMAP tbAddBitmap;
4205 tbAddBitmap.hInst = NULL;
4206 tbAddBitmap.nID = (long_u)hbitmap;
4208 i = (int)SendMessage(s_toolbarhwnd, TB_ADDBITMAP,
4209 (WPARAM)1, (LPARAM)&tbAddBitmap);
4210 /* i will be set to -1 if it fails */
4213 if (i == -1 && menu->iconidx >= 0 && menu->iconidx < TOOLBAR_BITMAP_COUNT)
4214 i = menu->iconidx;
4216 return i;
4218 #endif
4220 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
4221 static void
4222 initialise_tabline(void)
4224 InitCommonControls();
4226 s_tabhwnd = CreateWindow(WC_TABCONTROL, "Vim tabline",
4227 WS_CHILD|TCS_FOCUSNEVER|TCS_TOOLTIPS,
4228 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
4229 CW_USEDEFAULT, s_hwnd, NULL, s_hinst, NULL);
4231 gui.tabline_height = TABLINE_HEIGHT;
4233 # ifdef USE_SYSMENU_FONT
4234 set_tabline_font();
4235 # endif
4237 #endif
4239 #if defined(FEAT_OLE) || defined(FEAT_EVAL) || defined(PROTO)
4241 * Make the GUI window come to the foreground.
4243 void
4244 gui_mch_set_foreground(void)
4246 if (IsIconic(s_hwnd))
4247 SendMessage(s_hwnd, WM_SYSCOMMAND, SC_RESTORE, 0);
4248 SetForegroundWindow(s_hwnd);
4250 #endif
4252 #if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
4253 static void
4254 dyn_imm_load(void)
4256 hLibImm = LoadLibrary("imm32.dll");
4257 if (hLibImm == NULL)
4258 return;
4260 pImmGetCompositionStringA
4261 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringA");
4262 pImmGetCompositionStringW
4263 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringW");
4264 pImmGetContext
4265 = (void *)GetProcAddress(hLibImm, "ImmGetContext");
4266 pImmAssociateContext
4267 = (void *)GetProcAddress(hLibImm, "ImmAssociateContext");
4268 pImmReleaseContext
4269 = (void *)GetProcAddress(hLibImm, "ImmReleaseContext");
4270 pImmGetOpenStatus
4271 = (void *)GetProcAddress(hLibImm, "ImmGetOpenStatus");
4272 pImmSetOpenStatus
4273 = (void *)GetProcAddress(hLibImm, "ImmSetOpenStatus");
4274 pImmGetCompositionFont
4275 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionFontA");
4276 pImmSetCompositionFont
4277 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionFontA");
4278 pImmSetCompositionWindow
4279 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionWindow");
4280 pImmGetConversionStatus
4281 = (void *)GetProcAddress(hLibImm, "ImmGetConversionStatus");
4282 pImmSetConversionStatus
4283 = (void *)GetProcAddress(hLibImm, "ImmSetConversionStatus");
4285 if ( pImmGetCompositionStringA == NULL
4286 || pImmGetCompositionStringW == NULL
4287 || pImmGetContext == NULL
4288 || pImmAssociateContext == NULL
4289 || pImmReleaseContext == NULL
4290 || pImmGetOpenStatus == NULL
4291 || pImmSetOpenStatus == NULL
4292 || pImmGetCompositionFont == NULL
4293 || pImmSetCompositionFont == NULL
4294 || pImmSetCompositionWindow == NULL
4295 || pImmGetConversionStatus == NULL
4296 || pImmSetConversionStatus == NULL)
4298 FreeLibrary(hLibImm);
4299 hLibImm = NULL;
4300 pImmGetContext = NULL;
4301 return;
4304 return;
4307 # if 0 /* not used */
4309 dyn_imm_unload(void)
4311 if (!hLibImm)
4312 return FALSE;
4313 FreeLibrary(hLibImm);
4314 hLibImm = NULL;
4315 return TRUE;
4317 # endif
4319 #endif
4321 #if defined(FEAT_SIGN_ICONS) || defined(PROTO)
4323 # ifdef FEAT_XPM_W32
4324 # define IMAGE_XPM 100
4325 # endif
4327 typedef struct _signicon_t
4329 HANDLE hImage;
4330 UINT uType;
4331 #ifdef FEAT_XPM_W32
4332 HANDLE hShape; /* Mask bitmap handle */
4333 #endif
4334 } signicon_t;
4336 void
4337 gui_mch_drawsign(row, col, typenr)
4338 int row;
4339 int col;
4340 int typenr;
4342 signicon_t *sign;
4343 int x, y, w, h;
4345 if (!gui.in_use || (sign = (signicon_t *)sign_get_image(typenr)) == NULL)
4346 return;
4348 x = TEXT_X(col);
4349 y = TEXT_Y(row);
4350 w = gui.char_width * 2;
4351 h = gui.char_height;
4352 switch (sign->uType)
4354 case IMAGE_BITMAP:
4356 HDC hdcMem;
4357 HBITMAP hbmpOld;
4359 hdcMem = CreateCompatibleDC(s_hdc);
4360 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hImage);
4361 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCCOPY);
4362 SelectObject(hdcMem, hbmpOld);
4363 DeleteDC(hdcMem);
4365 break;
4366 case IMAGE_ICON:
4367 case IMAGE_CURSOR:
4368 DrawIconEx(s_hdc, x, y, (HICON)sign->hImage, w, h, 0, NULL, DI_NORMAL);
4369 break;
4370 #ifdef FEAT_XPM_W32
4371 case IMAGE_XPM:
4373 HDC hdcMem;
4374 HBITMAP hbmpOld;
4376 hdcMem = CreateCompatibleDC(s_hdc);
4377 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hShape);
4378 /* Make hole */
4379 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCAND);
4381 SelectObject(hdcMem, sign->hImage);
4382 /* Paint sign */
4383 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCPAINT);
4384 SelectObject(hdcMem, hbmpOld);
4385 DeleteDC(hdcMem);
4387 break;
4388 #endif
4392 static void
4393 close_signicon_image(signicon_t *sign)
4395 if (sign)
4396 switch (sign->uType)
4398 case IMAGE_BITMAP:
4399 DeleteObject((HGDIOBJ)sign->hImage);
4400 break;
4401 case IMAGE_CURSOR:
4402 DestroyCursor((HCURSOR)sign->hImage);
4403 break;
4404 case IMAGE_ICON:
4405 DestroyIcon((HICON)sign->hImage);
4406 break;
4407 #ifdef FEAT_XPM_W32
4408 case IMAGE_XPM:
4409 DeleteObject((HBITMAP)sign->hImage);
4410 DeleteObject((HBITMAP)sign->hShape);
4411 break;
4412 #endif
4416 void *
4417 gui_mch_register_sign(signfile)
4418 char_u *signfile;
4420 signicon_t sign, *psign;
4421 char_u *ext;
4423 if (is_winnt_3())
4425 EMSG(_(e_signdata));
4426 return NULL;
4429 sign.hImage = NULL;
4430 ext = signfile + STRLEN(signfile) - 4; /* get extention */
4431 if (ext > signfile)
4433 int do_load = 1;
4435 if (!STRICMP(ext, ".bmp"))
4436 sign.uType = IMAGE_BITMAP;
4437 else if (!STRICMP(ext, ".ico"))
4438 sign.uType = IMAGE_ICON;
4439 else if (!STRICMP(ext, ".cur") || !STRICMP(ext, ".ani"))
4440 sign.uType = IMAGE_CURSOR;
4441 else
4442 do_load = 0;
4444 if (do_load)
4445 sign.hImage = (HANDLE)LoadImage(NULL, signfile, sign.uType,
4446 gui.char_width * 2, gui.char_height,
4447 LR_LOADFROMFILE | LR_CREATEDIBSECTION);
4448 #ifdef FEAT_XPM_W32
4449 if (!STRICMP(ext, ".xpm"))
4451 sign.uType = IMAGE_XPM;
4452 LoadXpmImage(signfile, (HBITMAP *)&sign.hImage, (HBITMAP *)&sign.hShape);
4454 #endif
4457 psign = NULL;
4458 if (sign.hImage && (psign = (signicon_t *)alloc(sizeof(signicon_t)))
4459 != NULL)
4460 *psign = sign;
4462 if (!psign)
4464 if (sign.hImage)
4465 close_signicon_image(&sign);
4466 EMSG(_(e_signdata));
4468 return (void *)psign;
4472 void
4473 gui_mch_destroy_sign(sign)
4474 void *sign;
4476 if (sign)
4478 close_signicon_image((signicon_t *)sign);
4479 vim_free(sign);
4482 #endif
4484 #if defined(FEAT_BEVAL) || defined(PROTO)
4486 /* BALLOON-EVAL IMPLEMENTATION FOR WINDOWS.
4487 * Added by Sergey Khorev <sergey.khorev@gmail.com>
4489 * The only reused thing is gui_beval.h and get_beval_info()
4490 * from gui_beval.c (note it uses x and y of the BalloonEval struct
4491 * to get current mouse position).
4493 * Trying to use as more Windows services as possible, and as less
4494 * IE version as possible :)).
4496 * 1) Don't create ToolTip in gui_mch_create_beval_area, only initialize
4497 * BalloonEval struct.
4498 * 2) Enable/Disable simply create/kill BalloonEval Timer
4499 * 3) When there was enough inactivity, timer procedure posts
4500 * async request to debugger
4501 * 4) gui_mch_post_balloon (invoked from netbeans.c) creates tooltip control
4502 * and performs some actions to show it ASAP
4503 * 5) WM_NOTIFY:TTN_POP destroys created tooltip
4507 * determine whether installed Common Controls support multiline tooltips
4508 * (i.e. their version is >= 4.70
4511 multiline_balloon_available(void)
4513 HINSTANCE hDll;
4514 static char comctl_dll[] = "comctl32.dll";
4515 static int multiline_tip = MAYBE;
4517 if (multiline_tip != MAYBE)
4518 return multiline_tip;
4520 hDll = GetModuleHandle(comctl_dll);
4521 if (hDll != NULL)
4523 DLLGETVERSIONPROC pGetVer;
4524 pGetVer = (DLLGETVERSIONPROC)GetProcAddress(hDll, "DllGetVersion");
4526 if (pGetVer != NULL)
4528 DLLVERSIONINFO dvi;
4529 HRESULT hr;
4531 ZeroMemory(&dvi, sizeof(dvi));
4532 dvi.cbSize = sizeof(dvi);
4534 hr = (*pGetVer)(&dvi);
4536 if (SUCCEEDED(hr)
4537 && (dvi.dwMajorVersion > 4
4538 || (dvi.dwMajorVersion == 4
4539 && dvi.dwMinorVersion >= 70)))
4541 multiline_tip = TRUE;
4542 return multiline_tip;
4545 else
4547 /* there is chance we have ancient CommCtl 4.70
4548 which doesn't export DllGetVersion */
4549 DWORD dwHandle = 0;
4550 DWORD len = GetFileVersionInfoSize(comctl_dll, &dwHandle);
4551 if (len > 0)
4553 VS_FIXEDFILEINFO *ver;
4554 UINT vlen = 0;
4555 void *data = alloc(len);
4557 if (data != NULL
4558 && GetFileVersionInfo(comctl_dll, 0, len, data)
4559 && VerQueryValue(data, "\\", (void **)&ver, &vlen)
4560 && vlen
4561 && HIWORD(ver->dwFileVersionMS) > 4
4562 || (HIWORD(ver->dwFileVersionMS) == 4
4563 && LOWORD(ver->dwFileVersionMS) >= 70))
4565 vim_free(data);
4566 multiline_tip = TRUE;
4567 return multiline_tip;
4569 vim_free(data);
4573 multiline_tip = FALSE;
4574 return multiline_tip;
4577 static void
4578 make_tooltip(beval, text, pt)
4579 BalloonEval *beval;
4580 char *text;
4581 POINT pt;
4583 TOOLINFO *pti;
4584 int ToolInfoSize;
4586 if (multiline_balloon_available() == TRUE)
4587 ToolInfoSize = sizeof(TOOLINFO_NEW);
4588 else
4589 ToolInfoSize = sizeof(TOOLINFO);
4591 pti = (TOOLINFO *)alloc(ToolInfoSize);
4592 if (pti == NULL)
4593 return;
4595 beval->balloon = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS,
4596 NULL, WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,
4597 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
4598 beval->target, NULL, s_hinst, NULL);
4600 SetWindowPos(beval->balloon, HWND_TOPMOST, 0, 0, 0, 0,
4601 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
4603 pti->cbSize = ToolInfoSize;
4604 pti->uFlags = TTF_SUBCLASS;
4605 pti->hwnd = beval->target;
4606 pti->hinst = 0; /* Don't use string resources */
4607 pti->uId = ID_BEVAL_TOOLTIP;
4609 if (multiline_balloon_available() == TRUE)
4611 RECT rect;
4612 TOOLINFO_NEW *ptin = (TOOLINFO_NEW *)pti;
4613 pti->lpszText = LPSTR_TEXTCALLBACK;
4614 ptin->lParam = (LPARAM)text;
4615 if (GetClientRect(s_textArea, &rect)) /* switch multiline tooltips on */
4616 SendMessage(beval->balloon, TTM_SETMAXTIPWIDTH, 0,
4617 (LPARAM)rect.right);
4619 else
4620 pti->lpszText = text; /* do this old way */
4622 /* Limit ballooneval bounding rect to CursorPos neighbourhood */
4623 pti->rect.left = pt.x - 3;
4624 pti->rect.top = pt.y - 3;
4625 pti->rect.right = pt.x + 3;
4626 pti->rect.bottom = pt.y + 3;
4628 SendMessage(beval->balloon, TTM_ADDTOOL, 0, (LPARAM)pti);
4629 /* Make tooltip appear sooner */
4630 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_INITIAL, 10);
4631 /* I've performed some tests and it seems the longest possible life time
4632 * of tooltip is 30 seconds */
4633 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_AUTOPOP, 30000);
4635 * HACK: force tooltip to appear, because it'll not appear until
4636 * first mouse move. D*mn M$
4637 * Amazingly moving (2, 2) and then (-1, -1) the mouse doesn't move.
4639 mouse_event(MOUSEEVENTF_MOVE, 2, 2, 0, 0);
4640 mouse_event(MOUSEEVENTF_MOVE, (DWORD)-1, (DWORD)-1, 0, 0);
4641 vim_free(pti);
4644 static void
4645 delete_tooltip(beval)
4646 BalloonEval *beval;
4648 DestroyWindow(beval->balloon);
4651 /*ARGSUSED*/
4652 static VOID CALLBACK
4653 BevalTimerProc(hwnd, uMsg, idEvent, dwTime)
4654 HWND hwnd;
4655 UINT uMsg;
4656 UINT_PTR idEvent;
4657 DWORD dwTime;
4659 POINT pt;
4660 RECT rect;
4662 if (cur_beval == NULL || cur_beval->showState == ShS_SHOWING || !p_beval)
4663 return;
4665 GetCursorPos(&pt);
4666 if (WindowFromPoint(pt) != s_textArea)
4667 return;
4669 ScreenToClient(s_textArea, &pt);
4670 GetClientRect(s_textArea, &rect);
4671 if (!PtInRect(&rect, pt))
4672 return;
4674 if (LastActivity > 0
4675 && (dwTime - LastActivity) >= (DWORD)p_bdlay
4676 && (cur_beval->showState != ShS_PENDING
4677 || abs(cur_beval->x - pt.x) > 3
4678 || abs(cur_beval->y - pt.y) > 3))
4680 /* Pointer resting in one place long enough, it's time to show
4681 * the tooltip. */
4682 cur_beval->showState = ShS_PENDING;
4683 cur_beval->x = pt.x;
4684 cur_beval->y = pt.y;
4686 // TRACE0("BevalTimerProc: sending request");
4688 if (cur_beval->msgCB != NULL)
4689 (*cur_beval->msgCB)(cur_beval, 0);
4693 /*ARGSUSED*/
4694 void
4695 gui_mch_disable_beval_area(beval)
4696 BalloonEval *beval;
4698 // TRACE0("gui_mch_disable_beval_area {{{");
4699 KillTimer(s_textArea, BevalTimerId);
4700 // TRACE0("gui_mch_disable_beval_area }}}");
4703 /*ARGSUSED*/
4704 void
4705 gui_mch_enable_beval_area(beval)
4706 BalloonEval *beval;
4708 // TRACE0("gui_mch_enable_beval_area |||");
4709 if (beval == NULL)
4710 return;
4711 // TRACE0("gui_mch_enable_beval_area {{{");
4712 BevalTimerId = SetTimer(s_textArea, 0, p_bdlay / 2, BevalTimerProc);
4713 // TRACE0("gui_mch_enable_beval_area }}}");
4716 void
4717 gui_mch_post_balloon(beval, mesg)
4718 BalloonEval *beval;
4719 char_u *mesg;
4721 POINT pt;
4722 // TRACE0("gui_mch_post_balloon {{{");
4723 if (beval->showState == ShS_SHOWING)
4724 return;
4725 GetCursorPos(&pt);
4726 ScreenToClient(s_textArea, &pt);
4728 if (abs(beval->x - pt.x) < 3 && abs(beval->y - pt.y) < 3)
4729 /* cursor is still here */
4731 gui_mch_disable_beval_area(cur_beval);
4732 beval->showState = ShS_SHOWING;
4733 make_tooltip(beval, mesg, pt);
4735 // TRACE0("gui_mch_post_balloon }}}");
4738 /*ARGSUSED*/
4739 BalloonEval *
4740 gui_mch_create_beval_area(target, mesg, mesgCB, clientData)
4741 void *target; /* ignored, always use s_textArea */
4742 char_u *mesg;
4743 void (*mesgCB)__ARGS((BalloonEval *, int));
4744 void *clientData;
4746 /* partially stolen from gui_beval.c */
4747 BalloonEval *beval;
4749 if (mesg != NULL && mesgCB != NULL)
4751 EMSG(_("E232: Cannot create BalloonEval with both message and callback"));
4752 return NULL;
4755 beval = (BalloonEval *)alloc(sizeof(BalloonEval));
4756 if (beval != NULL)
4758 beval->target = s_textArea;
4759 beval->balloon = NULL;
4761 beval->showState = ShS_NEUTRAL;
4762 beval->x = 0;
4763 beval->y = 0;
4764 beval->msg = mesg;
4765 beval->msgCB = mesgCB;
4766 beval->clientData = clientData;
4768 InitCommonControls();
4769 cur_beval = beval;
4771 if (p_beval)
4772 gui_mch_enable_beval_area(beval);
4775 return beval;
4778 /*ARGSUSED*/
4779 static void
4780 Handle_WM_Notify(hwnd, pnmh)
4781 HWND hwnd;
4782 LPNMHDR pnmh;
4784 if (pnmh->idFrom != ID_BEVAL_TOOLTIP) /* it is not our tooltip */
4785 return;
4787 if (cur_beval != NULL)
4789 switch (pnmh->code)
4791 case TTN_SHOW:
4792 // TRACE0("TTN_SHOW {{{");
4793 // TRACE0("TTN_SHOW }}}");
4794 break;
4795 case TTN_POP: /* Before tooltip disappear */
4796 // TRACE0("TTN_POP {{{");
4797 delete_tooltip(cur_beval);
4798 gui_mch_enable_beval_area(cur_beval);
4799 // TRACE0("TTN_POP }}}");
4801 cur_beval->showState = ShS_NEUTRAL;
4802 break;
4803 case TTN_GETDISPINFO:
4805 /* if you get there then we have new common controls */
4806 NMTTDISPINFO_NEW *info = (NMTTDISPINFO_NEW *)pnmh;
4807 info->lpszText = (LPSTR)info->lParam;
4808 info->uFlags |= TTF_DI_SETITEM;
4810 break;
4815 static void
4816 TrackUserActivity(UINT uMsg)
4818 if ((uMsg >= WM_MOUSEFIRST && uMsg <= WM_MOUSELAST)
4819 || (uMsg >= WM_KEYFIRST && uMsg <= WM_KEYLAST))
4820 LastActivity = GetTickCount();
4823 void
4824 gui_mch_destroy_beval_area(beval)
4825 BalloonEval *beval;
4827 vim_free(beval);
4829 #endif /* FEAT_BEVAL */
4831 #if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
4833 * We have multiple signs to draw at the same location. Draw the
4834 * multi-sign indicator (down-arrow) instead. This is the Win32 version.
4836 void
4837 netbeans_draw_multisign_indicator(int row)
4839 int i;
4840 int y;
4841 int x;
4843 x = 0;
4844 y = TEXT_Y(row);
4846 for (i = 0; i < gui.char_height - 3; i++)
4847 SetPixel(s_hdc, x+2, y++, gui.currFgColor);
4849 SetPixel(s_hdc, x+0, y, gui.currFgColor);
4850 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4851 SetPixel(s_hdc, x+4, y++, gui.currFgColor);
4852 SetPixel(s_hdc, x+1, y, gui.currFgColor);
4853 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4854 SetPixel(s_hdc, x+3, y++, gui.currFgColor);
4855 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4857 #endif