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.
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,
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.
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)
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)
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)
45 * Include the common stuff for MS-Windows GUI.
59 * Add a lot of missing defines.
60 * They are not always missing, we need the #ifndef's.
66 # define IsMinimized(hwnd) IsIconic(hwnd)
69 # define IsMaximized(hwnd) IsZoomed(hwnd)
72 # define SelectFont(hdc, hfont) ((HFONT)SelectObject((hdc), (HGDIOBJ)(HFONT)(hfont)))
74 # ifndef GetStockBrush
75 # define GetStockBrush(i) ((HBRUSH)GetStockObject(i))
78 # define DeleteBrush(hbr) DeleteObject((HGDIOBJ)(HBRUSH)(hbr))
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
121 # ifndef HANDLE_WM_SYSCHAR
122 # define HANDLE_WM_SYSCHAR(hwnd, wParam, lParam, fn) \
123 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
125 # ifndef HANDLE_WM_ACTIVATEAPP
126 # define HANDLE_WM_ACTIVATEAPP(hwnd, wParam, lParam, fn) \
127 ((fn)((hwnd), (BOOL)(wParam), (DWORD)(lParam)), 0L)
129 # ifndef HANDLE_WM_WINDOWPOSCHANGING
130 # define HANDLE_WM_WINDOWPOSCHANGING(hwnd, wParam, lParam, fn) \
131 (LRESULT)(DWORD)(BOOL)(fn)((hwnd), (LPWINDOWPOS)(lParam))
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)
137 # ifndef HANDLE_WM_SETFOCUS
138 # define HANDLE_WM_SETFOCUS(hwnd, wParam, lParam, fn) \
139 ((fn)((hwnd), (HWND)(wParam)), 0L)
141 # ifndef HANDLE_WM_KILLFOCUS
142 # define HANDLE_WM_KILLFOCUS(hwnd, wParam, lParam, fn) \
143 ((fn)((hwnd), (HWND)(wParam)), 0L)
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)
149 # ifndef HANDLE_WM_DROPFILES
150 # define HANDLE_WM_DROPFILES(hwnd, wParam, lParam, fn) \
151 ((fn)((hwnd), (HDROP)(wParam)), 0L)
153 # ifndef HANDLE_WM_CHAR
154 # define HANDLE_WM_CHAR(hwnd, wParam, lParam, fn) \
155 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
157 # ifndef HANDLE_WM_SYSDEADCHAR
158 # define HANDLE_WM_SYSDEADCHAR(hwnd, wParam, lParam, fn) \
159 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
161 # ifndef HANDLE_WM_DEADCHAR
162 # define HANDLE_WM_DEADCHAR(hwnd, wParam, lParam, fn) \
163 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
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
183 # define ID_BEVAL_TOOLTIP 200
184 # define BEVAL_TEXT_LEN MAXPATHL
187 /* Work around old versions of basetsd.h which wrongly declares
188 * UINT_PTR as unsigned long. */
189 # define UINT_PTR UINT
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
209 DWORD dwMajorVersion
;
210 DWORD dwMinorVersion
;
215 typedef struct tagTOOLINFOA_NEW
227 typedef struct tagNMTTDISPINFO_NEW
239 typedef HRESULT (WINAPI
* DLLGETVERSIONPROC
)(DLLVERSIONINFO
*);
240 #ifndef TTM_SETMAXTIPWIDTH
241 # define TTM_SETMAXTIPWIDTH (WM_USER+24)
244 #ifndef TTF_DI_SETITEM
245 # define TTF_DI_SETITEM 0x8000
248 #ifndef TTN_GETDISPINFO
249 # define TTN_GETDISPINFO (TTN_FIRST - 0)
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
259 # if !defined(LPNMTTDISPINFO) && defined(_MSC_VER)
260 typedef struct tagNMTTDISPINFOA
{
267 } NMTTDISPINFOA
, *LPNMTTDISPINFOA
;
268 # define LPNMTTDISPINFO LPNMTTDISPINFOA
271 typedef struct tagNMTTDISPINFOW
{
278 } NMTTDISPINFOW
, *LPNMTTDISPINFOW
;
283 #ifndef TTN_GETDISPINFOW
284 # define TTN_GETDISPINFOW (TTN_FIRST - 10)
287 /* Local variables: */
290 static UINT s_menu_id
= 100;
293 * Use the system font for dialogs and tear-off menus. Remove this line to
296 # define USE_SYSMENU_FONT
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
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
);
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 */
337 static void initialise_toolbar(void);
338 static int get_toolbar_bitmap(vimmenu_T
*menu
);
341 #ifdef FEAT_GUI_TABLINE
342 static void initialise_tabline(void);
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
);
349 #if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
351 typedef struct tagCOMPOSITIONFORM
{
355 } COMPOSITIONFORM
, *PCOMPOSITIONFORM
, NEAR
*NPCOMPOSITIONFORM
, FAR
*LPCOMPOSITIONFORM
;
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);
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
388 #ifndef ETO_IGNORELANGUAGE
389 # define ETO_IGNORELANGUAGE 0x1000
392 /* multi monitor support */
393 typedef struct _MONITORINFOstruct
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 */
412 * Return TRUE when running under Windows NT 3.x or Win32s, both of which have
413 * less fancy GUI APIs.
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.
429 return (os_version
.dwPlatformId
== VER_PLATFORM_WIN32s
);
434 * Figure out how high the menu bar is at the moment.
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;
446 if (gui
.menu_is_active
)
447 num
= GetMenuItemCount(s_menuBar
);
455 if (is_winnt_3()) /* for NT 3.xx */
458 menu_height
= GetSystemMetrics(SM_CYMENU
);
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
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
);
488 menu_height
= rc1
.bottom
- rc1
.top
+ 1;
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
);
509 * Setup for the Intellimouse
512 init_mouse_wheel(void)
515 #ifndef SPI_GETWHEELSCROLLLINES
516 # define SPI_GETWHEELSCROLLLINES 104
518 #ifndef SPI_SETWHEELSCROLLLINES
519 # define SPI_SETWHEELSCROLLLINES 105
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"
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))
548 * If Win95 or NT 3.51,
549 * try to find the hidden point32 window.
551 hdl_mswheel
= FindWindow(VMOUSEZ_CLASSNAME
, VMOUSEZ_TITLE
);
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 */
572 /* Treat a mouse wheel event as if it were a scroll request */
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
;
590 size
= curwin
->w_height
;
591 if (mouse_scroll_lines
== 0)
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);
601 _OnScroll(hwnd
, hwndCtl
, zDelta
>= 0 ? SB_PAGEUP
: SB_PAGEDOWN
, 0);
604 #ifdef USE_SYSMENU_FONT
610 gui_w32_get_menu_font(LOGFONT
*lf
)
614 nm
.cbSize
= sizeof(NONCLIENTMETRICS
);
615 if (!SystemParametersInfo(
616 SPI_GETNONCLIENTMETRICS
,
617 sizeof(NONCLIENTMETRICS
),
627 #if defined(FEAT_GUI_TABLINE) && defined(USE_SYSMENU_FONT)
629 * Set the GUI tabline font to the system menu font
632 set_tabline_font(void)
641 if (gui_w32_get_menu_font(&lfSysmenu
) != OK
)
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;
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
)
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.
692 _OnWindowPosChanging(
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
);
718 #ifdef FEAT_NETBEANS_INTG
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
))
733 netbeans_frame_moved(x
, y
);
735 /* Allow to send WM_SIZE and WM_MOVE */
736 FORWARD_WM_WINDOWPOSCHANGED(hwnd
, lpwpos
, MyWindowProc
);
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
;
773 static LRESULT CALLBACK
781 TRACE("WndProc: hwnd = %08x, msg = %x, wParam = %x, lParam = %x\n",
782 hwnd, uMsg, wParam, lParam);
785 HandleMouseHide(uMsg
, lParam
);
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
);
803 HANDLE_MSG(hwnd
, WM_COMMAND
, _OnMenu
);
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
);
818 #ifdef FEAT_GUI_TABLINE
821 if (gui_mch_showing_tabline())
827 * If the cursor is on the tabline, display the tab menu
829 GetCursorPos((LPPOINT
)&pt
);
830 GetWindowRect(s_textArea
, &rect
);
833 show_tabline_popup_menu();
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())
849 GetCursorPos((LPPOINT
)&pt
);
850 GetWindowRect(s_textArea
, &rect
);
852 send_tabline_menu_event(0, TABLINE_MENU_NEW
);
854 return MyWindowProc(hwnd
, uMsg
, wParam
, lParam
);
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. */
863 if (wParam
) /* system only really goes down when wParam is TRUE */
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
));
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
880 if ( !gui
.menu_is_active
882 || (p_wak
[0] == 'm' && !gui_is_menu_shortcut((int)wParam
))
886 _OnSysChar(hwnd
, (UINT
)wParam
, (int)(short)LOWORD(lParam
));
891 return MyWindowProc(hwnd
, uMsg
, wParam
, lParam
);
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
);
905 case WM_SIZING
: /* HANDLE_MSG doesn't seem to handle this one */
906 return _DuringSizing((UINT
)wParam
, (LPRECT
)lParam
);
909 _OnMouseWheel(hwnd
, HIWORD(wParam
));
912 /* Notification for change in SystemParametersInfo() */
913 case WM_SETTINGCHANGE
:
914 return _OnSettingChange((UINT
)wParam
);
916 #if defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
918 switch (((LPNMHDR
) lParam
)->code
)
921 case TTN_GETDISPINFOW
:
923 case TTN_GETDISPINFO
:
925 LPNMHDR hdr
= (LPNMHDR
)lParam
;
927 static void *tt_text
= NULL
;
932 # ifdef FEAT_GUI_TABLINE
933 if (gui_mch_showing_tabline()
934 && hdr
->hwndFrom
== TabCtrl_GetToolTips(s_tabhwnd
))
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
944 if (ScreenToClient(s_tabhwnd
, &pt
) != 0)
946 TCHITTESTINFO htinfo
;
950 * Get the tab under the cursor
954 idx
= TabCtrl_HitTest(s_tabhwnd
, &htinfo
);
959 tp
= find_tabpage(idx
+ 1);
962 get_tabline_label(tp
, TRUE
);
970 # ifdef FEAT_GUI_TABLINE
977 idButton
= (UINT
) hdr
->idFrom
;
978 pMenu
= gui_mswin_find_menu(root_menu
, idButton
);
980 str
= pMenu
->strings
[MENU_INDEX_TIP
];
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
,
995 tt_text
= enc_to_utf16(str
, NULL
);
996 lpdi
->lpszText
= tt_text
;
997 /* can't show tooltip if failed */
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
,
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);
1014 lpdi
->lpszText
= tt_text
;
1019 # ifdef FEAT_GUI_TABLINE
1021 if (gui_mch_showing_tabline()
1022 && ((LPNMHDR
)lParam
)->hwndFrom
== s_tabhwnd
)
1023 send_tabline_event(TabCtrl_GetCurSel(s_tabhwnd
) + 1);
1027 if (gui_mch_showing_tabline()
1028 && ((LPNMHDR
)lParam
)->hwndFrom
== s_tabhwnd
)
1029 show_tabline_popup_menu();
1033 # ifdef FEAT_GUI_TABLINE
1034 if (gui_mch_showing_tabline()
1035 && ((LPNMHDR
)lParam
)->hwndFrom
== s_tabhwnd
)
1036 return MyWindowProc(hwnd
, uMsg
, wParam
, lParam
);
1042 #if defined(MENUHINTS) && defined(FEAT_MENU)
1044 if (((UINT
) HIWORD(wParam
)
1045 & (0xffff ^ (MF_MOUSESELECT
+ MF_BITMAP
+ MF_POPUP
)))
1047 && (State
& CMDLINE
) == 0)
1051 static int did_menu_tip
= FALSE
;
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)
1067 msg(pMenu
->strings
[MENU_INDEX_TIP
]);
1071 did_menu_tip
= TRUE
;
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
);
1091 /* If the cursor is on the GUI tabline, don't process this
1093 GetWindowRect(s_textArea
, &rct
);
1098 gui_mch_get_winpos(&x
, &y
);
1101 if (xPos
< 48) /* <VN> TODO should use system metric? */
1102 return HTBOTTOMLEFT
;
1104 return HTBOTTOMRIGHT
;
1109 /* break; notreached */
1111 #ifdef FEAT_MBYTE_IME
1113 if (!_OnImeNotify(hwnd
, (DWORD
)wParam
, (DWORD
)lParam
))
1114 return MyWindowProc(hwnd
, uMsg
, wParam
, lParam
);
1116 case WM_IME_COMPOSITION
:
1117 if (!_OnImeComposition(hwnd
, wParam
, lParam
))
1118 return MyWindowProc(hwnd
, uMsg
, wParam
, lParam
);
1123 if (uMsg
== msh_msgmousewheel
&& msh_msgmousewheel
!= 0)
1124 { /* handle MSH_MOUSEWHEEL messages for Intellimouse */
1125 _OnMouseWheel(hwnd
, HIWORD(wParam
));
1128 #ifdef MSWIN_FIND_REPLACE
1129 else if (uMsg
== s_findrep_msg
&& s_findrep_msg
!= 0)
1134 return MyWindowProc(hwnd
, uMsg
, wParam
, lParam
);
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
)
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
1159 vim_parent_hwnd
= FindWindowEx(hwnd
, NULL
, "MDIClient", NULL
);
1160 if (vim_parent_hwnd
!= NULL
)
1164 return TRUE
; /* continue searching */
1168 * Invoked for '-P "title"' argument: search for parent application to open
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
);
1184 ole_error(char *arg
)
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."),
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.
1202 gui_mch_prepare(int *argc
, char **argv
)
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] == '/'))
1220 /* Register Vim as an OLE Automation server */
1221 if (STRICMP(argv
[idx
] + 1, "register") == 0)
1228 ole_error("register");
1233 /* Unregister Vim as an OLE Automation server */
1234 if (STRICMP(argv
[idx
] + 1, "unregister") == 0)
1237 UnregisterMe(!silent
);
1241 ole_error("unregister");
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
1251 if (STRICMP(argv
[idx
] + 1, "embedding") == 0)
1256 ole_error("embedding");
1264 int bDoRestart
= FALSE
;
1266 InitOLE(&bDoRestart
);
1267 /* automatically exit after registering */
1273 #ifdef FEAT_NETBEANS_INTG
1275 /* stolen from gui_x11.x */
1278 for (arg
= 1; arg
< *argc
; arg
++)
1279 if (strncmp("-nb", argv
[arg
], 3) == 0)
1282 netbeansArg
= argv
[arg
];
1283 mch_memmove(&argv
[arg
], &argv
[arg
+ 1],
1284 (--*argc
- arg
) * sizeof(char *));
1286 break; /* enough? */
1295 wsaerr
= WSAStartup(MAKEWORD(2, 2), &wsaData
);
1297 WSInitialized
= TRUE
;
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
,
1321 * Initialise the GUI. Create all the windows, set up all the call-backs
1327 const char szVimWndClass
[] = VIM_CLASS
;
1328 const char szTextAreaClass
[] = "VimTextArea";
1331 const WCHAR szVimWndClassW
[] = VIM_CLASSW
;
1332 WNDCLASSW wndclassw
;
1338 /* Return here if the window was already opened (happens when
1339 * gui_mch_dialog() is called early). */
1344 * Load the tearoff bitmap
1347 s_htearbitmap
= LoadBitmap(s_hinst
, "IDB_TEAROFF");
1350 gui
.scrollbar_width
= GetSystemMetrics(SM_CXVSCROLL
);
1351 gui
.scrollbar_height
= GetSystemMetrics(SM_CYHSCROLL
);
1353 gui
.menu_height
= 0; /* Windows takes care of this */
1355 gui
.border_width
= 0;
1357 s_brush
= CreateSolidBrush(GetSysColor(COLOR_BTNFACE
));
1360 /* First try using the wide version, so that we can use any title.
1361 * Otherwise only characters in the active codepage will work. */
1362 if (GetClassInfoW(s_hinst
, szVimWndClassW
, &wndclassw
) == 0)
1364 wndclassw
.style
= CS_DBLCLKS
;
1365 wndclassw
.lpfnWndProc
= _WndProc
;
1366 wndclassw
.cbClsExtra
= 0;
1367 wndclassw
.cbWndExtra
= 0;
1368 wndclassw
.hInstance
= s_hinst
;
1369 wndclassw
.hIcon
= LoadIcon(wndclassw
.hInstance
, "IDR_VIM");
1370 wndclassw
.hCursor
= LoadCursor(NULL
, IDC_ARROW
);
1371 wndclassw
.hbrBackground
= s_brush
;
1372 wndclassw
.lpszMenuName
= NULL
;
1373 wndclassw
.lpszClassName
= szVimWndClassW
;
1379 RegisterClassW(&wndclassw
)) == 0)
1381 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED
)
1384 /* Must be Windows 98, fall back to non-wide function. */
1387 wide_WindowProc
= TRUE
;
1390 if (!wide_WindowProc
)
1393 if (GetClassInfo(s_hinst
, szVimWndClass
, &wndclass
) == 0)
1395 wndclass
.style
= CS_DBLCLKS
;
1396 wndclass
.lpfnWndProc
= _WndProc
;
1397 wndclass
.cbClsExtra
= 0;
1398 wndclass
.cbWndExtra
= 0;
1399 wndclass
.hInstance
= s_hinst
;
1400 wndclass
.hIcon
= LoadIcon(wndclass
.hInstance
, "IDR_VIM");
1401 wndclass
.hCursor
= LoadCursor(NULL
, IDC_ARROW
);
1402 wndclass
.hbrBackground
= s_brush
;
1403 wndclass
.lpszMenuName
= NULL
;
1404 wndclass
.lpszClassName
= szVimWndClass
;
1410 RegisterClass(&wndclass
)) == 0)
1414 if (vim_parent_hwnd
!= NULL
)
1416 #ifdef HAVE_TRY_EXCEPT
1420 /* Open inside the specified parent window.
1421 * TODO: last argument should point to a CLIENTCREATESTRUCT
1423 s_hwnd
= CreateWindowEx(
1425 szVimWndClass
, "Vim MSWindows GUI",
1426 WS_OVERLAPPEDWINDOW
| WS_CHILD
| WS_CLIPSIBLINGS
| 0xC000,
1427 gui_win_x
== -1 ? CW_USEDEFAULT
: gui_win_x
,
1428 gui_win_y
== -1 ? CW_USEDEFAULT
: gui_win_y
,
1429 100, /* Any value will do */
1430 100, /* Any value will do */
1431 vim_parent_hwnd
, NULL
,
1433 #ifdef HAVE_TRY_EXCEPT
1435 __except(EXCEPTION_EXECUTE_HANDLER
)
1442 EMSG(_("E672: Unable to open window inside MDI application"));
1448 /* If the provided windowid is not valid reset it to zero, so that it
1449 * is ignored and we open our own window. */
1450 if (IsWindow((HWND
)win_socket_id
) <= 0)
1453 /* Create a window. If win_socket_id is not zero without border and
1454 * titlebar, it will be reparented below. */
1455 s_hwnd
= CreateWindow(
1456 szVimWndClass
, "Vim MSWindows GUI",
1457 win_socket_id
== 0 ? WS_OVERLAPPEDWINDOW
: WS_POPUP
,
1458 gui_win_x
== -1 ? CW_USEDEFAULT
: gui_win_x
,
1459 gui_win_y
== -1 ? CW_USEDEFAULT
: gui_win_y
,
1460 100, /* Any value will do */
1461 100, /* Any value will do */
1464 if (s_hwnd
!= NULL
&& win_socket_id
!= 0)
1466 SetParent(s_hwnd
, (HWND
)win_socket_id
);
1467 ShowWindow(s_hwnd
, SW_SHOWMAXIMIZED
);
1475 global_ime_init(atom
, s_hwnd
);
1477 #if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
1481 /* Create the text area window */
1482 if (GetClassInfo(s_hinst
, szTextAreaClass
, &wndclass
) == 0)
1484 wndclass
.style
= CS_OWNDC
;
1485 wndclass
.lpfnWndProc
= _TextAreaWndProc
;
1486 wndclass
.cbClsExtra
= 0;
1487 wndclass
.cbWndExtra
= 0;
1488 wndclass
.hInstance
= s_hinst
;
1489 wndclass
.hIcon
= NULL
;
1490 wndclass
.hCursor
= LoadCursor(NULL
, IDC_ARROW
);
1491 wndclass
.hbrBackground
= NULL
;
1492 wndclass
.lpszMenuName
= NULL
;
1493 wndclass
.lpszClassName
= szTextAreaClass
;
1495 if (RegisterClass(&wndclass
) == 0)
1498 s_textArea
= CreateWindowEx(
1500 szTextAreaClass
, "Vim text area",
1501 WS_CHILD
| WS_VISIBLE
, 0, 0,
1502 100, /* Any value will do for now */
1503 100, /* Any value will do for now */
1507 if (s_textArea
== NULL
)
1511 s_menuBar
= CreateMenu();
1513 s_hdc
= GetDC(s_textArea
);
1515 #ifdef MSWIN16_FASTTEXT
1516 SetBkMode(s_hdc
, OPAQUE
);
1520 DragAcceptFiles(s_hwnd
, TRUE
);
1523 /* Do we need to bother with this? */
1524 /* m_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT); */
1526 /* Get background/foreground colors from the system */
1527 gui_mch_def_colors();
1529 /* Get the colors from the "Normal" group (set in syntax.c or in a vimrc
1531 set_normal_colors();
1534 * Check that none of the colors are the same as the background color.
1535 * Then store the current values as the defaults.
1538 gui
.def_norm_pixel
= gui
.norm_pixel
;
1539 gui
.def_back_pixel
= gui
.back_pixel
;
1541 /* Get the colors for the highlight groups (gui_check_colors() might have
1543 highlight_gui_started();
1546 * Start out by adding the configured border width into the border offset
1548 gui
.border_offset
= gui
.border_width
+ 2; /*CLIENT EDGE*/
1551 * Set up for Intellimouse processing
1556 * compute a couple of metrics used for the dialogs
1558 get_dialog_font_metrics();
1561 * Create the toolbar
1563 initialise_toolbar();
1565 #ifdef FEAT_GUI_TABLINE
1567 * Create the tabline
1569 initialise_tabline();
1571 #ifdef MSWIN_FIND_REPLACE
1573 * Initialise the dialog box stuff
1575 s_findrep_msg
= RegisterWindowMessage(FINDMSGSTRING
);
1577 /* Initialise the struct */
1578 s_findrep_struct
.lStructSize
= sizeof(s_findrep_struct
);
1579 s_findrep_struct
.lpstrFindWhat
= alloc(MSWIN_FR_BUFSIZE
);
1580 s_findrep_struct
.lpstrFindWhat
[0] = NUL
;
1581 s_findrep_struct
.lpstrReplaceWith
= alloc(MSWIN_FR_BUFSIZE
);
1582 s_findrep_struct
.lpstrReplaceWith
[0] = NUL
;
1583 s_findrep_struct
.wFindWhatLen
= MSWIN_FR_BUFSIZE
;
1584 s_findrep_struct
.wReplaceWithLen
= MSWIN_FR_BUFSIZE
;
1588 /* Display any pending error messages */
1595 * Get the size of the screen, taking position on multiple monitors into
1596 * account (if supported).
1599 get_work_area(RECT
*spi_rect
)
1602 _MONITORINFO moninfo
;
1604 /* use these functions only if available */
1605 if (pMonitorFromWindow
!= NULL
&& pGetMonitorInfo
!= NULL
)
1607 /* work out which monitor the window is on, and get *it's* work area */
1608 mon
= pMonitorFromWindow(s_hwnd
, 1 /*MONITOR_DEFAULTTOPRIMARY*/);
1611 moninfo
.cbSize
= sizeof(_MONITORINFO
);
1612 if (pGetMonitorInfo(mon
, &moninfo
))
1614 *spi_rect
= moninfo
.rcWork
;
1619 /* this is the old method... */
1620 SystemParametersInfo(SPI_GETWORKAREA
, 0, spi_rect
, 0);
1624 * Set the size of the window to the given width and height in pixels.
1628 gui_mch_set_shellsize(int width
, int height
,
1629 int min_width
, int min_height
, int base_width
, int base_height
,
1633 int win_width
, win_height
;
1634 int win_xpos
, win_ypos
;
1635 WINDOWPLACEMENT wndpl
;
1638 /* Try to keep window completely on screen. */
1639 /* Get position of the screen work area. This is the part that is not
1640 * used by the taskbar or appbars. */
1641 get_work_area(&workarea_rect
);
1643 /* Get current posision of our window. Note that the .left and .top are
1644 * relative to the work area. */
1645 wndpl
.length
= sizeof(WINDOWPLACEMENT
);
1646 GetWindowPlacement(s_hwnd
, &wndpl
);
1648 /* Resizing a maximized window looks very strange, unzoom it first.
1649 * But don't do it when still starting up, it may have been requested in
1651 if (wndpl
.showCmd
== SW_SHOWMAXIMIZED
&& starting
== 0)
1653 ShowWindow(s_hwnd
, SW_SHOWNORMAL
);
1654 /* Need to get the settings of the normal window. */
1655 GetWindowPlacement(s_hwnd
, &wndpl
);
1658 win_xpos
= wndpl
.rcNormalPosition
.left
;
1659 win_ypos
= wndpl
.rcNormalPosition
.top
;
1661 /* compute the size of the outside of the window */
1662 win_width
= width
+ GetSystemMetrics(SM_CXFRAME
) * 2;
1663 win_height
= height
+ GetSystemMetrics(SM_CYFRAME
) * 2
1664 + GetSystemMetrics(SM_CYCAPTION
)
1666 + gui_mswin_get_menu_height(FALSE
)
1670 /* There is an inconsistency when using two monitors and Vim is on the
1671 * second (right) one: win_xpos will be the offset from the workarea of
1672 * the left monitor. While with one monitor it's the offset from the
1673 * workarea (including a possible taskbar on the left). Detect the second
1674 * monitor by checking for the left offset to be quite big. */
1675 if (workarea_rect
.left
> 300)
1678 workarea_left
= workarea_rect
.left
;
1680 /* If the window is going off the screen, move it on to the screen.
1681 * win_xpos and win_ypos are relative to the workarea. */
1682 if ((direction
& RESIZE_HOR
)
1683 && workarea_left
+ win_xpos
+ win_width
> workarea_rect
.right
)
1684 win_xpos
= workarea_rect
.right
- win_width
- workarea_left
;
1686 if ((direction
& RESIZE_HOR
) && win_xpos
< 0)
1689 if ((direction
& RESIZE_VERT
)
1690 && workarea_rect
.top
+ win_ypos
+ win_height
> workarea_rect
.bottom
)
1691 win_ypos
= workarea_rect
.bottom
- win_height
- workarea_rect
.top
;
1693 if ((direction
& RESIZE_VERT
) && win_ypos
< 0)
1696 wndpl
.rcNormalPosition
.left
= win_xpos
;
1697 wndpl
.rcNormalPosition
.right
= win_xpos
+ win_width
;
1698 wndpl
.rcNormalPosition
.top
= win_ypos
;
1699 wndpl
.rcNormalPosition
.bottom
= win_ypos
+ win_height
;
1701 /* set window position - we should use SetWindowPlacement rather than
1702 * SetWindowPos as the MSDN docs say the coord systems returned by
1703 * these two are not compatible. */
1704 SetWindowPlacement(s_hwnd
, &wndpl
);
1706 SetActiveWindow(s_hwnd
);
1710 /* Menu may wrap differently now */
1711 gui_mswin_get_menu_height(!gui
.starting
);
1717 gui_mch_set_scrollbar_thumb(
1725 sb
->scroll_shift
= 0;
1728 max
= (max
+ 1) >> 1;
1734 if (sb
->scroll_shift
> 0)
1737 info
.cbSize
= sizeof(info
);
1738 info
.fMask
= SIF_POS
| SIF_RANGE
| SIF_PAGE
;
1743 SetScrollInfo(sb
->id
, SB_CTL
, &info
, TRUE
);
1748 * Set the current text font.
1751 gui_mch_set_font(GuiFont font
)
1753 gui
.currFont
= font
;
1758 * Set the current text foreground color.
1761 gui_mch_set_fg_color(guicolor_T color
)
1763 gui
.currFgColor
= color
;
1767 * Set the current text background color.
1770 gui_mch_set_bg_color(guicolor_T color
)
1772 gui
.currBgColor
= color
;
1776 * Set the current text special color.
1779 gui_mch_set_sp_color(guicolor_T color
)
1781 gui
.currSpColor
= color
;
1784 #if defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)
1786 * Multi-byte handling, originally by Sung-Hoon Baek.
1787 * First static functions (no prototypes generated).
1790 # include <ime.h> /* Apparently not needed for Cygwin, MingW or Borland. */
1795 * handle WM_IME_NOTIFY message
1799 _OnImeNotify(HWND hWnd
, DWORD dwCommand
, DWORD dwData
)
1801 LRESULT lResult
= 0;
1804 if (!pImmGetContext
|| (hImc
= pImmGetContext(hWnd
)) == (HIMC
)0)
1808 case IMN_SETOPENSTATUS
:
1809 if (pImmGetOpenStatus(hImc
))
1811 pImmSetCompositionFont(hImc
, &norm_logfont
);
1812 im_set_position(gui
.row
, gui
.col
);
1814 /* Disable langmap */
1818 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1819 /* Unshown 'keymap' in status lines */
1820 if (curbuf
->b_p_iminsert
== B_IMODE_LMAP
)
1822 /* Save cursor position */
1823 int old_row
= gui
.row
;
1824 int old_col
= gui
.col
;
1826 // This must be called here before
1827 // status_redraw_curbuf(), otherwise the mode
1828 // message may appear in the wrong position.
1830 status_redraw_curbuf();
1832 /* Restore cursor position */
1839 gui_update_cursor(TRUE
, FALSE
);
1843 pImmReleaseContext(hWnd
, hImc
);
1849 _OnImeComposition(HWND hwnd
, WPARAM dbcs
, LPARAM param
)
1854 if ((param
& GCS_RESULTSTR
) == 0) /* Composition unfinished. */
1857 ret
= GetResultStr(hwnd
, GCS_RESULTSTR
, &len
);
1860 add_to_input_buf_csi(ret
, len
);
1868 * get the current composition string, in UCS-2; *lenp is the number of
1869 * *lenp is the number of Unicode characters.
1872 GetCompositionString_inUCS2(HIMC hIMC
, DWORD GCS
, int *lenp
)
1878 if (!pImmGetContext
)
1879 return NULL
; /* no imm32.dll */
1881 /* Try Unicode; this'll always work on NT regardless of codepage. */
1882 ret
= pImmGetCompositionStringW(hIMC
, GCS
, NULL
, 0);
1884 return NULL
; /* empty */
1888 /* Allocate the requested buffer plus space for the NUL character. */
1889 wbuf
= (LPWSTR
)alloc(ret
+ sizeof(WCHAR
));
1892 pImmGetCompositionStringW(hIMC
, GCS
, wbuf
, ret
);
1893 *lenp
= ret
/ sizeof(WCHAR
);
1895 return (short_u
*)wbuf
;
1898 /* ret < 0; we got an error, so try the ANSI version. This'll work
1899 * on 9x/ME, but only if the codepage happens to be set to whatever
1900 * we're inputting. */
1901 ret
= pImmGetCompositionStringA(hIMC
, GCS
, NULL
, 0);
1903 return NULL
; /* empty or error */
1908 pImmGetCompositionStringA(hIMC
, GCS
, buf
, ret
);
1910 /* convert from codepage to UCS-2 */
1911 MultiByteToWideChar_alloc(GetACP(), 0, buf
, ret
, &wbuf
, lenp
);
1914 return (short_u
*)wbuf
;
1918 * void GetResultStr()
1920 * This handles WM_IME_COMPOSITION with GCS_RESULTSTR flag on.
1921 * get complete composition string
1924 GetResultStr(HWND hwnd
, int GCS
, int *lenp
)
1926 HIMC hIMC
; /* Input context handle. */
1927 short_u
*buf
= NULL
;
1928 char_u
*convbuf
= NULL
;
1930 if (!pImmGetContext
|| (hIMC
= pImmGetContext(hwnd
)) == (HIMC
)0)
1933 /* Reads in the composition string. */
1934 buf
= GetCompositionString_inUCS2(hIMC
, GCS
, lenp
);
1938 convbuf
= utf16_to_enc(buf
, lenp
);
1939 pImmReleaseContext(hwnd
, hIMC
);
1945 /* For global functions we need prototypes. */
1946 #if (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) || defined(PROTO)
1952 im_set_font(LOGFONT
*lf
)
1956 if (pImmGetContext
&& (hImc
= pImmGetContext(s_hwnd
)) != (HIMC
)0)
1958 pImmSetCompositionFont(hImc
, lf
);
1959 pImmReleaseContext(s_hwnd
, hImc
);
1964 * Notify cursor position to IM.
1967 im_set_position(int row
, int col
)
1971 if (pImmGetContext
&& (hImc
= pImmGetContext(s_hwnd
)) != (HIMC
)0)
1973 COMPOSITIONFORM cfs
;
1975 cfs
.dwStyle
= CFS_POINT
;
1976 cfs
.ptCurrentPos
.x
= FILL_X(col
);
1977 cfs
.ptCurrentPos
.y
= FILL_Y(row
);
1978 MapWindowPoints(s_textArea
, s_hwnd
, &cfs
.ptCurrentPos
, 1);
1979 pImmSetCompositionWindow(hImc
, &cfs
);
1981 pImmReleaseContext(s_hwnd
, hImc
);
1986 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
1989 im_set_active(int active
)
1992 static HIMC hImcOld
= (HIMC
)0;
1994 if (pImmGetContext
) /* if NULL imm32.dll wasn't loaded (yet) */
1998 if (hImcOld
== (HIMC
)0)
2000 hImcOld
= pImmGetContext(s_hwnd
);
2002 pImmAssociateContext(s_hwnd
, (HIMC
)0);
2006 else if (hImcOld
!= (HIMC
)0)
2008 pImmAssociateContext(s_hwnd
, hImcOld
);
2012 hImc
= pImmGetContext(s_hwnd
);
2018 HKL hKL
= GetKeyboardLayout(0);
2020 if (LOWORD(hKL
) == MAKELANGID(LANG_KOREAN
, SUBLANG_KOREAN
))
2022 static DWORD dwConversionSaved
= 0, dwSentenceSaved
= 0;
2023 static BOOL bSaved
= FALSE
;
2027 /* if we have a saved conversion status, restore it */
2029 pImmSetConversionStatus(hImc
, dwConversionSaved
,
2035 /* save conversion status and disable korean */
2036 if (pImmGetConversionStatus(hImc
, &dwConversionSaved
,
2040 pImmSetConversionStatus(hImc
,
2041 dwConversionSaved
& ~(IME_CMODE_NATIVE
2042 | IME_CMODE_FULLSHAPE
),
2048 pImmSetOpenStatus(hImc
, active
);
2049 pImmReleaseContext(s_hwnd
, hImc
);
2055 * Get IM status. When IM is on, return not 0. Else return 0.
2063 if (pImmGetContext
&& (hImc
= pImmGetContext(s_hwnd
)) != (HIMC
)0)
2065 status
= pImmGetOpenStatus(hImc
) ? 1 : 0;
2066 pImmReleaseContext(s_hwnd
, hImc
);
2071 #endif /* FEAT_MBYTE && FEAT_MBYTE_IME */
2073 #if defined(FEAT_MBYTE) && !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME)
2074 /* Win32 with GLOBAL IME */
2077 * Notify cursor position to IM.
2080 im_set_position(int row
, int col
)
2082 /* Win32 with GLOBAL IME */
2087 MapWindowPoints(s_textArea
, s_hwnd
, &p
, 1);
2088 global_ime_set_position(&p
);
2092 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
2095 im_set_active(int active
)
2097 global_ime_set_status(active
);
2101 * Get IM status. When IM is on, return not 0. Else return 0.
2106 return global_ime_get_status();
2112 * Convert latin9 text "text[len]" to ucs-2 in "unicodebuf".
2115 latin9_to_ucs(char_u
*text
, int len
, WCHAR
*unicodebuf
)
2124 case 0xa4: c
= 0x20ac; break; /* euro */
2125 case 0xa6: c
= 0x0160; break; /* S hat */
2126 case 0xa8: c
= 0x0161; break; /* S -hat */
2127 case 0xb4: c
= 0x017d; break; /* Z hat */
2128 case 0xb8: c
= 0x017e; break; /* Z -hat */
2129 case 0xbc: c
= 0x0152; break; /* OE */
2130 case 0xbd: c
= 0x0153; break; /* oe */
2131 case 0xbe: c
= 0x0178; break; /* Y */
2138 #ifdef FEAT_RIGHTLEFT
2140 * What is this for? In the case where you are using Win98 or Win2K or later,
2141 * and you are using a Hebrew font (or Arabic!), Windows does you a favor and
2142 * reverses the string sent to the TextOut... family. This sucks, because we
2143 * go to a lot of effort to do the right thing, and there doesn't seem to be a
2144 * way to tell Windblows not to do this!
2146 * The short of it is that this 'RevOut' only gets called if you are running
2147 * one of the new, "improved" MS OSes, and only if you are running in
2148 * 'rightleft' mode. It makes display take *slightly* longer, but not
2156 CONST RECT
*pcliprect
,
2162 static int special
= -1;
2166 /* Check windows version: special treatment is needed if it is NT 5 or
2167 * Win98 or higher. */
2168 if ((os_version
.dwPlatformId
== VER_PLATFORM_WIN32_NT
2169 && os_version
.dwMajorVersion
>= 5)
2170 || (os_version
.dwPlatformId
== VER_PLATFORM_WIN32_WINDOWS
2171 && (os_version
.dwMajorVersion
> 4
2172 || (os_version
.dwMajorVersion
== 4
2173 && os_version
.dwMinorVersion
> 0))))
2180 for (ix
= 0; ix
< (int)len
; ++ix
)
2181 ExtTextOut(s_hdc
, col
+ TEXT_X(ix
), row
, foptions
,
2182 pcliprect
, text
+ ix
, 1, padding
);
2184 ExtTextOut(s_hdc
, col
, row
, foptions
, pcliprect
, text
, len
, padding
);
2189 gui_mch_draw_string(
2196 static int *padding
= NULL
;
2197 static int pad_size
= 0;
2199 const RECT
*pcliprect
= NULL
;
2202 static WCHAR
*unicodebuf
= NULL
;
2203 static int *unicodepdy
= NULL
;
2204 static int unibuflen
= 0;
2210 #ifndef MSWIN16_FASTTEXT
2212 * Italic and bold text seems to have an extra row of pixels at the bottom
2213 * (below where the bottom of the character should be). If we draw the
2214 * characters with a solid background, the top row of pixels in the
2215 * character below will be overwritten. We can fix this by filling in the
2216 * background ourselves, to the correct character proportions, and then
2217 * writing the character in transparent mode. Still have a problem when
2218 * the character is "_", which gets written on to the character below.
2219 * New fix: set gui.char_ascent to -1. This shifts all characters up one
2220 * pixel in their slots, which fixes the problem with the bottom row of
2221 * pixels. We still need this code because otherwise the top row of pixels
2222 * becomes a problem. - webb.
2224 static HBRUSH hbr_cache
[2] = {NULL
, NULL
};
2225 static guicolor_T brush_color
[2] = {INVALCOLOR
, INVALCOLOR
};
2226 static int brush_lru
= 0;
2230 if (!(flags
& DRAW_TRANSP
))
2233 * Clear background first.
2234 * Note: FillRect() excludes right and bottom of rectangle.
2236 rc
.left
= FILL_X(col
);
2237 rc
.top
= FILL_Y(row
);
2243 /* Compute the length in display cells. */
2244 for (n
= 0; n
< len
; n
+= MB_BYTE2LEN(text
[n
]))
2245 cell_len
+= (*mb_ptr2cells
)(text
+ n
);
2246 rc
.right
= FILL_X(col
+ cell_len
);
2250 rc
.right
= FILL_X(col
+ len
);
2251 rc
.bottom
= FILL_Y(row
+ 1);
2253 /* Cache the created brush, that saves a lot of time. We need two:
2254 * one for cursor background and one for the normal background. */
2255 if (gui
.currBgColor
== brush_color
[0])
2260 else if (gui
.currBgColor
== brush_color
[1])
2267 if (hbr_cache
[brush_lru
] != NULL
)
2268 DeleteBrush(hbr_cache
[brush_lru
]);
2269 hbr_cache
[brush_lru
] = CreateSolidBrush(gui
.currBgColor
);
2270 brush_color
[brush_lru
] = gui
.currBgColor
;
2271 hbr
= hbr_cache
[brush_lru
];
2272 brush_lru
= !brush_lru
;
2274 FillRect(s_hdc
, &rc
, hbr
);
2276 SetBkMode(s_hdc
, TRANSPARENT
);
2279 * When drawing block cursor, prevent inverted character spilling
2280 * over character cell (can happen with bold/italic)
2282 if (flags
& DRAW_CURSOR
)
2285 foptions
= ETO_CLIPPED
;
2290 * The alternative would be to write the characters in opaque mode, but
2291 * when the text is not exactly the same proportions as normal text, too
2292 * big or too little a rectangle gets drawn for the background.
2294 SetBkMode(s_hdc
, OPAQUE
);
2295 SetBkColor(s_hdc
, gui
.currBgColor
);
2297 SetTextColor(s_hdc
, gui
.currFgColor
);
2298 SelectFont(s_hdc
, gui
.currFont
);
2300 if (pad_size
!= Columns
|| padding
== NULL
|| padding
[0] != gui
.char_width
)
2305 /* Don't give an out-of-memory message here, it would call us
2307 padding
= (int *)lalloc(pad_size
* sizeof(int), FALSE
);
2308 if (padding
!= NULL
)
2309 for (i
= 0; i
< pad_size
; i
++)
2310 padding
[i
] = gui
.char_width
;
2313 /* On NT, tell the font renderer not to "help" us with Hebrew and Arabic
2314 * text. This doesn't work in 9x, so we have to deal with it manually on
2316 if (os_version
.dwPlatformId
== VER_PLATFORM_WIN32_NT
)
2317 foptions
|= ETO_IGNORELANGUAGE
;
2320 * We have to provide the padding argument because italic and bold versions
2321 * of fixed-width fonts are often one pixel or so wider than their normal
2323 * No check for DRAW_BOLD, Windows will have done it already.
2327 /* Check if there are any UTF-8 characters. If not, use normal text
2328 * output to speed up output. */
2330 for (n
= 0; n
< len
; ++n
)
2331 if (text
[n
] >= 0x80)
2334 /* Check if the Unicode buffer exists and is big enough. Create it
2335 * with the same length as the multi-byte string, the number of wide
2336 * characters is always equal or smaller. */
2338 || (enc_codepage
> 0 && (int)GetACP() != enc_codepage
)
2340 && (unicodebuf
== NULL
|| len
> unibuflen
))
2342 vim_free(unicodebuf
);
2343 unicodebuf
= (WCHAR
*)lalloc(len
* sizeof(WCHAR
), FALSE
);
2345 vim_free(unicodepdy
);
2346 unicodepdy
= (int *)lalloc(len
* sizeof(int), FALSE
);
2351 if (enc_utf8
&& n
< len
&& unicodebuf
!= NULL
)
2353 /* Output UTF-8 characters. Caller has already separated
2354 * composing characters. */
2356 int wlen
; /* string length in words */
2357 int clen
; /* string length in characters */
2358 int cells
; /* cell width of string up to composing char */
2359 int cw
; /* width of current cell */
2365 for (i
= 0; i
< len
; )
2367 c
= utf_ptr2char(text
+ i
);
2370 /* Turn into UTF-16 encoding. */
2371 unicodebuf
[wlen
++] = ((c
- 0x10000) >> 10) + 0xD800;
2372 unicodebuf
[wlen
++] = ((c
- 0x10000) & 0x3ff) + 0xDC00;
2376 unicodebuf
[wlen
++] = c
;
2378 cw
= utf_char2cells(c
);
2379 if (cw
> 2) /* don't use 4 for unprintable char */
2381 if (unicodepdy
!= NULL
)
2383 /* Use unicodepdy to make characters fit as we expect, even
2384 * when the font uses different widths (e.g., bold character
2386 unicodepdy
[clen
] = cw
* gui
.char_width
;
2389 i
+= utfc_ptr2len_len(text
+ i
, len
- i
);
2392 ExtTextOutW(s_hdc
, TEXT_X(col
), TEXT_Y(row
),
2393 foptions
, pcliprect
, unicodebuf
, wlen
, unicodepdy
);
2394 len
= cells
; /* used for underlining */
2396 else if ((enc_codepage
> 0 && (int)GetACP() != enc_codepage
) || enc_latin9
)
2398 /* If we want to display codepage data, and the current CP is not the
2399 * ANSI one, we need to go via Unicode. */
2400 if (unicodebuf
!= NULL
)
2403 latin9_to_ucs(text
, len
, unicodebuf
);
2405 len
= MultiByteToWideChar(enc_codepage
,
2408 (LPWSTR
)unicodebuf
, unibuflen
);
2411 /* Use unicodepdy to make characters fit as we expect, even
2412 * when the font uses different widths (e.g., bold character
2414 if (unicodepdy
!= NULL
)
2419 for (i
= 0; i
< len
; ++i
)
2421 cw
= utf_char2cells(unicodebuf
[i
]);
2424 unicodepdy
[i
] = cw
* gui
.char_width
;
2427 ExtTextOutW(s_hdc
, TEXT_X(col
), TEXT_Y(row
),
2428 foptions
, pcliprect
, unicodebuf
, len
, unicodepdy
);
2435 #ifdef FEAT_RIGHTLEFT
2436 /* If we can't use ETO_IGNORELANGUAGE, we can't tell Windows not to
2437 * mess up RL text, so we have to draw it character-by-character.
2438 * Only do this if RL is on, since it's slow. */
2439 if (curwin
->w_p_rl
&& !(foptions
& ETO_IGNORELANGUAGE
))
2440 RevOut(s_hdc
, TEXT_X(col
), TEXT_Y(row
),
2441 foptions
, pcliprect
, (char *)text
, len
, padding
);
2444 ExtTextOut(s_hdc
, TEXT_X(col
), TEXT_Y(row
),
2445 foptions
, pcliprect
, (char *)text
, len
, padding
);
2449 if (flags
& DRAW_UNDERL
)
2451 hpen
= CreatePen(PS_SOLID
, 1, gui
.currFgColor
);
2452 old_pen
= SelectObject(s_hdc
, hpen
);
2453 /* When p_linespace is 0, overwrite the bottom row of pixels.
2454 * Otherwise put the line just below the character. */
2455 y
= FILL_Y(row
+ 1) - 1;
2456 #ifndef MSWIN16_FASTTEXT
2457 if (p_linespace
> 1)
2458 y
-= p_linespace
- 1;
2460 MoveToEx(s_hdc
, FILL_X(col
), y
, NULL
);
2461 /* Note: LineTo() excludes the last pixel in the line. */
2462 LineTo(s_hdc
, FILL_X(col
+ len
), y
);
2463 DeleteObject(SelectObject(s_hdc
, old_pen
));
2467 if (flags
& DRAW_UNDERC
)
2471 static const int val
[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
2473 y
= FILL_Y(row
+ 1) - 1;
2474 for (x
= FILL_X(col
); x
< FILL_X(col
+ len
); ++x
)
2476 offset
= val
[x
% 8];
2477 SetPixel(s_hdc
, x
, y
- offset
, gui
.currSpColor
);
2487 /* Flush any output to the screen */
2491 # if defined(__BORLANDC__)
2493 * The GdiFlush declaration (in Borland C 5.01 <wingdi.h>) is not a
2494 * prototype declaration.
2495 * The compiler complains if __stdcall is not used in both declarations.
2497 BOOL __stdcall
GdiFlush(void);
2504 clear_rect(RECT
*rcp
)
2508 hbr
= CreateSolidBrush(gui
.back_pixel
);
2509 FillRect(s_hdc
, rcp
, hbr
);
2515 gui_mch_get_screen_dimensions(int *screen_w
, int *screen_h
)
2519 get_work_area(&workarea_rect
);
2521 *screen_w
= workarea_rect
.right
- workarea_rect
.left
2522 - GetSystemMetrics(SM_CXFRAME
) * 2;
2524 /* FIXME: dirty trick: Because the gui_get_base_height() doesn't include
2525 * the menubar for MSwin, we subtract it from the screen height, so that
2526 * the window size can be made to fit on the screen. */
2527 *screen_h
= workarea_rect
.bottom
- workarea_rect
.top
2528 - GetSystemMetrics(SM_CYFRAME
) * 2
2529 - GetSystemMetrics(SM_CYCAPTION
)
2531 - gui_mswin_get_menu_height(FALSE
)
2537 #if defined(FEAT_MENU) || defined(PROTO)
2539 * Add a sub menu to the menu bar.
2546 vimmenu_T
*parent
= menu
->parent
;
2548 menu
->submenu_id
= CreatePopupMenu();
2549 menu
->id
= s_menu_id
++;
2551 if (menu_is_menubar(menu
->name
))
2555 InsertMenu((parent
== NULL
) ? s_menuBar
: parent
->submenu_id
,
2556 (UINT
)pos
, MF_POPUP
| MF_STRING
| MF_BYPOSITION
,
2557 (long_u
)menu
->submenu_id
, (LPCTSTR
) menu
->name
);
2565 if (enc_codepage
>= 0 && (int)GetACP() != enc_codepage
)
2567 /* 'encoding' differs from active codepage: convert menu name
2568 * and use wide function */
2569 wn
= enc_to_utf16(menu
->name
, NULL
);
2572 MENUITEMINFOW infow
;
2574 infow
.cbSize
= sizeof(infow
);
2575 infow
.fMask
= MIIM_DATA
| MIIM_TYPE
| MIIM_ID
2577 infow
.dwItemData
= (long_u
)menu
;
2578 infow
.wID
= menu
->id
;
2579 infow
.fType
= MFT_STRING
;
2580 infow
.dwTypeData
= wn
;
2581 infow
.cch
= (UINT
)wcslen(wn
);
2582 infow
.hSubMenu
= menu
->submenu_id
;
2583 n
= InsertMenuItemW((parent
== NULL
)
2584 ? s_menuBar
: parent
->submenu_id
,
2585 (UINT
)pos
, TRUE
, &infow
);
2587 if (n
== 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED
)
2588 /* Failed, try using non-wide function. */
2598 info
.cbSize
= sizeof(info
);
2599 info
.fMask
= MIIM_DATA
| MIIM_TYPE
| MIIM_ID
| MIIM_SUBMENU
;
2600 info
.dwItemData
= (long_u
)menu
;
2601 info
.wID
= menu
->id
;
2602 info
.fType
= MFT_STRING
;
2603 info
.dwTypeData
= (LPTSTR
)menu
->name
;
2604 info
.cch
= (UINT
)STRLEN(menu
->name
);
2605 info
.hSubMenu
= menu
->submenu_id
;
2606 InsertMenuItem((parent
== NULL
)
2607 ? s_menuBar
: parent
->submenu_id
,
2608 (UINT
)pos
, TRUE
, &info
);
2613 /* Fix window size if menu may have wrapped */
2615 gui_mswin_get_menu_height(!gui
.starting
);
2617 else if (IsWindow(parent
->tearoff_handle
))
2618 rebuild_tearoff(parent
);
2623 gui_mch_show_popupmenu(vimmenu_T
*menu
)
2627 (void)GetCursorPos((LPPOINT
)&mp
);
2628 gui_mch_show_popupmenu_at(menu
, (int)mp
.x
, (int)mp
.y
);
2632 gui_make_popup(char_u
*path_name
, int mouse_pos
)
2634 vimmenu_T
*menu
= gui_find_menu(path_name
);
2640 /* Find the position of the current cursor */
2641 GetDCOrgEx(s_hdc
, &p
);
2646 gui_mch_getmouse(&mx
, &my
);
2650 else if (curwin
!= NULL
)
2652 p
.x
+= TEXT_X(W_WINCOL(curwin
) + curwin
->w_wcol
+ 1);
2653 p
.y
+= TEXT_Y(W_WINROW(curwin
) + curwin
->w_wrow
+ 1);
2656 gui_mch_show_popupmenu_at(menu
, (int)p
.x
, (int)p
.y
);
2660 #if defined(FEAT_TEAROFF) || defined(PROTO)
2662 * Given a menu descriptor, e.g. "File.New", find it in the menu hierarchy and
2663 * create it as a pseudo-"tearoff menu".
2666 gui_make_tearoff(char_u
*path_name
)
2668 vimmenu_T
*menu
= gui_find_menu(path_name
);
2670 /* Found the menu, so tear it off. */
2672 gui_mch_tearoff(menu
->dname
, menu
, 0xffffL
, 0xffffL
);
2677 * Add a menu item to a menu
2680 gui_mch_add_menu_item(
2684 vimmenu_T
*parent
= menu
->parent
;
2686 menu
->id
= s_menu_id
++;
2687 menu
->submenu_id
= NULL
;
2690 if (STRNCMP(menu
->name
, TEAR_STRING
, TEAR_LEN
) == 0)
2692 InsertMenu(parent
->submenu_id
, (UINT
)idx
, MF_BITMAP
|MF_BYPOSITION
,
2693 (UINT
)menu
->id
, (LPCTSTR
) s_htearbitmap
);
2698 if (menu_is_toolbar(parent
->name
))
2702 vim_memset(&newtb
, 0, sizeof(newtb
));
2703 if (menu_is_separator(menu
->name
))
2706 newtb
.fsStyle
= TBSTYLE_SEP
;
2710 newtb
.iBitmap
= get_toolbar_bitmap(menu
);
2711 newtb
.fsStyle
= TBSTYLE_BUTTON
;
2713 newtb
.idCommand
= menu
->id
;
2714 newtb
.fsState
= TBSTATE_ENABLED
;
2716 SendMessage(s_toolbarhwnd
, TB_INSERTBUTTON
, (WPARAM
)idx
,
2718 menu
->submenu_id
= (HMENU
)-1;
2727 if (enc_codepage
>= 0 && (int)GetACP() != enc_codepage
)
2729 /* 'encoding' differs from active codepage: convert menu item name
2730 * and use wide function */
2731 wn
= enc_to_utf16(menu
->name
, NULL
);
2734 n
= InsertMenuW(parent
->submenu_id
, (UINT
)idx
,
2735 (menu_is_separator(menu
->name
)
2736 ? MF_SEPARATOR
: MF_STRING
) | MF_BYPOSITION
,
2737 (UINT
)menu
->id
, wn
);
2739 if (n
== 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED
)
2740 /* Failed, try using non-wide function. */
2746 InsertMenu(parent
->submenu_id
, (UINT
)idx
,
2747 (menu_is_separator(menu
->name
) ? MF_SEPARATOR
: MF_STRING
)
2749 (UINT
)menu
->id
, (LPCTSTR
)menu
->name
);
2751 if (IsWindow(parent
->tearoff_handle
))
2752 rebuild_tearoff(parent
);
2758 * Destroy the machine specific menu widget.
2761 gui_mch_destroy_menu(vimmenu_T
*menu
)
2765 * is this a toolbar button?
2767 if (menu
->submenu_id
== (HMENU
)-1)
2771 iButton
= (int)SendMessage(s_toolbarhwnd
, TB_COMMANDTOINDEX
,
2772 (WPARAM
)menu
->id
, 0);
2773 SendMessage(s_toolbarhwnd
, TB_DELETEBUTTON
, (WPARAM
)iButton
, 0);
2778 if (menu
->parent
!= NULL
2779 && menu_is_popup(menu
->parent
->dname
)
2780 && menu
->parent
->submenu_id
!= NULL
)
2781 RemoveMenu(menu
->parent
->submenu_id
, menu
->id
, MF_BYCOMMAND
);
2783 RemoveMenu(s_menuBar
, menu
->id
, MF_BYCOMMAND
);
2784 if (menu
->submenu_id
!= NULL
)
2785 DestroyMenu(menu
->submenu_id
);
2787 if (IsWindow(menu
->tearoff_handle
))
2788 DestroyWindow(menu
->tearoff_handle
);
2789 if (menu
->parent
!= NULL
2790 && menu
->parent
->children
!= NULL
2791 && IsWindow(menu
->parent
->tearoff_handle
))
2793 /* This menu must not show up when rebuilding the tearoff window. */
2795 rebuild_tearoff(menu
->parent
);
2803 rebuild_tearoff(vimmenu_T
*menu
)
2812 HWND thwnd
= menu
->tearoff_handle
;
2814 GetWindowText(thwnd
, tbuf
, 127);
2815 if (GetWindowRect(thwnd
, &trect
)
2816 && GetWindowRect(s_hwnd
, &rct
)
2817 && GetClientRect(s_hwnd
, &roct
))
2819 x
= trect
.left
- rct
.left
;
2820 y
= (trect
.top
- rct
.bottom
+ roct
.bottom
);
2826 DestroyWindow(thwnd
);
2827 if (menu
->children
!= NULL
)
2829 gui_mch_tearoff(tbuf
, menu
, x
, y
);
2830 if (IsWindow(menu
->tearoff_handle
))
2831 (void) SetWindowPos(menu
->tearoff_handle
,
2836 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
2839 #endif /* FEAT_TEAROFF */
2842 * Make a menu either grey or not grey.
2851 * is this a toolbar button?
2853 if (menu
->submenu_id
== (HMENU
)-1)
2855 SendMessage(s_toolbarhwnd
, TB_ENABLEBUTTON
,
2856 (WPARAM
)menu
->id
, (LPARAM
) MAKELONG((grey
? FALSE
: TRUE
), 0) );
2861 EnableMenuItem(s_menuBar
, menu
->id
, MF_BYCOMMAND
| MF_GRAYED
);
2863 EnableMenuItem(s_menuBar
, menu
->id
, MF_BYCOMMAND
| MF_ENABLED
);
2866 if ((menu
->parent
!= NULL
) && (IsWindow(menu
->parent
->tearoff_handle
)))
2872 * A tearoff button has changed state.
2874 if (menu
->children
== NULL
)
2875 menuID
= (WORD
)(menu
->id
);
2877 menuID
= (WORD
)((long_u
)(menu
->submenu_id
) | (DWORD
)0x8000);
2878 menuHandle
= GetDlgItem(menu
->parent
->tearoff_handle
, menuID
);
2880 EnableWindow(menuHandle
, !grey
);
2886 #endif /* FEAT_MENU */
2889 /* define some macros used to make the dialogue creation more readable */
2891 #define add_string(s) strcpy((LPSTR)p, s); (LPSTR)p += (strlen((LPSTR)p) + 1)
2892 #define add_word(x) *p++ = (x)
2893 #define add_long(x) dwp = (DWORD *)p; *dwp++ = (x); p = (WORD *)dwp
2895 #if defined(FEAT_GUI_DIALOG) || defined(PROTO)
2901 * The callback routine used by all the dialogs. Very simple. First,
2902 * acknowledges the INITDIALOG message so that Windows knows to do standard
2903 * dialog stuff (Return = default, Esc = cancel....) Second, if a button is
2904 * pressed, return that button's ID - IDCANCEL (2), which is the button's
2908 static LRESULT CALLBACK
2915 if (message
== WM_INITDIALOG
)
2917 CenterWindow(hwnd
, GetWindow(hwnd
, GW_OWNER
));
2918 /* Set focus to the dialog. Set the default button, if specified. */
2919 (void)SetFocus(hwnd
);
2920 if (dialog_default_button
> IDCANCEL
)
2921 (void)SetFocus(GetDlgItem(hwnd
, dialog_default_button
));
2923 /* We don't have a default, set focus on another element of the
2924 * dialog window, probably the icon */
2925 (void)SetFocus(GetDlgItem(hwnd
, DLG_NONBUTTON_CONTROL
));
2929 if (message
== WM_COMMAND
)
2931 int button
= LOWORD(wParam
);
2933 /* Don't end the dialog if something was selected that was
2936 if (button
>= DLG_NONBUTTON_CONTROL
)
2939 /* If the edit box exists, copy the string. */
2940 if (s_textfield
!= NULL
)
2941 GetDlgItemText(hwnd
, DLG_NONBUTTON_CONTROL
+ 2,
2942 s_textfield
, IOSIZE
);
2945 * Need to check for IDOK because if the user just hits Return to
2946 * accept the default value, some reason this is what we get.
2950 if (dialog_default_button
> IDCANCEL
)
2951 EndDialog(hwnd
, dialog_default_button
);
2954 EndDialog(hwnd
, button
- IDCANCEL
);
2958 if ((message
== WM_SYSCOMMAND
) && (wParam
== SC_CLOSE
))
2967 * Create a dialog dynamically from the parameter strings.
2968 * type = type of dialog (question, alert, etc.)
2969 * title = dialog title. may be NULL for default title.
2970 * message = text to display. Dialog sizes to accommodate it.
2971 * buttons = '\n' separated list of button captions, default first.
2972 * dfltbutton = number of default button.
2974 * This routine returns 1 if the first button is pressed,
2975 * 2 for the second, etc.
2977 * 0 indicates Esc was pressed.
2978 * -1 for unexpected error
2980 * If stubbing out this fn, return 1.
2983 static const char_u
*dlg_icons
[] = /* must match names in resource file */
3001 WORD
*p
, *pdlgtemplate
, *pnumitems
;
3004 int *buttonWidths
, *buttonPositions
;
3020 HFONT font
, oldFont
;
3021 TEXTMETRIC fontInfo
;
3023 int textWidth
, minButtonWidth
, messageWidth
;
3025 int maxDialogHeight
;
3026 int scroll_flag
= 0;
3030 #ifdef USE_SYSMENU_FONT
3032 int use_lfSysmenu
= FALSE
;
3038 /* Don't output anything in silent mode ("ex -s") */
3040 return dfltbutton
; /* return default option */
3044 /* If there is no window yet, open it. */
3045 if (s_hwnd
== NULL
&& gui_mch_init() == FAIL
)
3049 get_dialog_font_metrics();
3052 if ((type
< 0) || (type
> VIM_LAST_TYPE
))
3055 /* allocate some memory for dialog template */
3056 /* TODO should compute this really */
3057 pdlgtemplate
= p
= (PWORD
)LocalAlloc(LPTR
,
3058 DLG_ALLOC_SIZE
+ STRLEN(message
) * 2);
3064 * make a copy of 'buttons' to fiddle with it. complier grizzles because
3065 * vim_strsave() doesn't take a const arg (why not?), so cast away the
3068 tbuffer
= vim_strsave(buttons
);
3069 if (tbuffer
== NULL
)
3072 --dfltbutton
; /* Change from one-based to zero-based */
3076 for (i
= 0; tbuffer
[i
] != '\0'; i
++)
3078 if (tbuffer
[i
] == DLG_BUTTON_SEP
)
3081 if (dfltbutton
>= numButtons
)
3084 /* Allocate array to hold the width of each button */
3085 buttonWidths
= (int *)lalloc(numButtons
* sizeof(int), TRUE
);
3086 if (buttonWidths
== NULL
)
3089 /* Allocate array to hold the X position of each button */
3090 buttonPositions
= (int *)lalloc(numButtons
* sizeof(int), TRUE
);
3091 if (buttonPositions
== NULL
)
3095 * Calculate how big the dialog must be.
3097 hwnd
= GetDesktopWindow();
3098 hdc
= GetWindowDC(hwnd
);
3099 #ifdef USE_SYSMENU_FONT
3100 if (gui_w32_get_menu_font(&lfSysmenu
) == OK
)
3102 font
= CreateFontIndirect(&lfSysmenu
);
3103 use_lfSysmenu
= TRUE
;
3107 font
= CreateFont(-DLG_FONT_POINT_SIZE
, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3108 VARIABLE_PITCH
, DLG_FONT_NAME
);
3111 oldFont
= SelectFont(hdc
, font
);
3112 dlgPaddingX
= DLG_PADDING_X
;
3113 dlgPaddingY
= DLG_PADDING_Y
;
3117 oldFont
= SelectFont(hdc
, GetStockObject(SYSTEM_FONT
));
3118 dlgPaddingX
= DLG_OLD_STYLE_PADDING_X
;
3119 dlgPaddingY
= DLG_OLD_STYLE_PADDING_Y
;
3121 GetTextMetrics(hdc
, &fontInfo
);
3122 fontHeight
= fontInfo
.tmHeight
;
3124 /* Minimum width for horizontal button */
3125 minButtonWidth
= GetTextWidth(hdc
, "Cancel", 6);
3127 /* Maximum width of a dialog, if possible */
3132 /* We don't have a window, use the desktop area. */
3133 get_work_area(&workarea_rect
);
3134 maxDialogWidth
= workarea_rect
.right
- workarea_rect
.left
- 100;
3135 if (maxDialogWidth
> 600)
3136 maxDialogWidth
= 600;
3137 maxDialogHeight
= workarea_rect
.bottom
- workarea_rect
.top
- 100;
3141 /* Use our own window for the size, unless it's very small. */
3142 GetWindowRect(s_hwnd
, &rect
);
3143 maxDialogWidth
= rect
.right
- rect
.left
3144 - GetSystemMetrics(SM_CXFRAME
) * 2;
3145 if (maxDialogWidth
< DLG_MIN_MAX_WIDTH
)
3146 maxDialogWidth
= DLG_MIN_MAX_WIDTH
;
3148 maxDialogHeight
= rect
.bottom
- rect
.top
3149 - GetSystemMetrics(SM_CXFRAME
) * 2;
3150 if (maxDialogHeight
< DLG_MIN_MAX_HEIGHT
)
3151 maxDialogHeight
= DLG_MIN_MAX_HEIGHT
;
3154 /* Set dlgwidth to width of message.
3155 * Copy the message into "ga", changing NL to CR-NL and inserting line
3156 * breaks where needed. */
3160 ga_init2(&ga
, sizeof(char), 500);
3163 msgheight
+= fontHeight
; /* at least one line */
3165 /* Need to figure out where to break the string. The system does it
3166 * at a word boundary, which would mean we can't compute the number of
3170 for (pend
= pstart
; *pend
!= NUL
&& *pend
!= '\n'; )
3173 l
= (*mb_ptr2len
)(pend
);
3177 if (l
== 1 && vim_iswhite(*pend
)
3178 && textWidth
> maxDialogWidth
* 3 / 4)
3180 textWidth
+= GetTextWidth(hdc
, pend
, l
);
3181 if (textWidth
>= maxDialogWidth
)
3183 /* Line will wrap. */
3184 messageWidth
= maxDialogWidth
;
3185 msgheight
+= fontHeight
;
3188 if (last_white
!= NULL
)
3190 /* break the line just after a space */
3191 ga
.ga_len
-= (int)(pend
- (last_white
+ 1));
3192 pend
= last_white
+ 1;
3195 ga_append(&ga
, '\r');
3196 ga_append(&ga
, '\n');
3201 ga_append(&ga
, *pend
++);
3203 if (textWidth
> messageWidth
)
3204 messageWidth
= textWidth
;
3206 ga_append(&ga
, '\r');
3207 ga_append(&ga
, '\n');
3209 } while (*pend
!= NUL
);
3211 if (ga
.ga_data
!= NULL
)
3212 message
= ga
.ga_data
;
3214 messageWidth
+= 10; /* roundoff space */
3216 /* Restrict the size to a maximum. Causes a scrollbar to show up. */
3217 if (msgheight
> maxDialogHeight
)
3219 msgheight
= maxDialogHeight
;
3220 scroll_flag
= WS_VSCROLL
;
3221 messageWidth
+= GetSystemMetrics(SM_CXVSCROLL
);
3224 /* Add width of icon to dlgwidth, and some space */
3225 dlgwidth
= messageWidth
+ DLG_ICON_WIDTH
+ 3 * dlgPaddingX
;
3227 if (msgheight
< DLG_ICON_HEIGHT
)
3228 msgheight
= DLG_ICON_HEIGHT
;
3231 * Check button names. A long one will make the dialog wider.
3232 * When called early (-register error message) p_go isn't initialized.
3234 vertical
= (p_go
!= NULL
&& vim_strchr(p_go
, GO_VERTICAL
) != NULL
);
3237 // Place buttons horizontally if they fit.
3238 horizWidth
= dlgPaddingX
;
3243 pend
= vim_strchr(pstart
, DLG_BUTTON_SEP
);
3245 pend
= pstart
+ STRLEN(pstart
); // Last button name.
3246 textWidth
= GetTextWidth(hdc
, pstart
, (int)(pend
- pstart
));
3247 if (textWidth
< minButtonWidth
)
3248 textWidth
= minButtonWidth
;
3249 textWidth
+= dlgPaddingX
; /* Padding within button */
3250 buttonWidths
[i
] = textWidth
;
3251 buttonPositions
[i
++] = horizWidth
;
3252 horizWidth
+= textWidth
+ dlgPaddingX
; /* Pad between buttons */
3254 } while (*pend
!= NUL
);
3256 if (horizWidth
> maxDialogWidth
)
3257 vertical
= TRUE
; // Too wide to fit on the screen.
3258 else if (horizWidth
> dlgwidth
)
3259 dlgwidth
= horizWidth
;
3264 // Stack buttons vertically.
3268 pend
= vim_strchr(pstart
, DLG_BUTTON_SEP
);
3270 pend
= pstart
+ STRLEN(pstart
); // Last button name.
3271 textWidth
= GetTextWidth(hdc
, pstart
, (int)(pend
- pstart
));
3272 textWidth
+= dlgPaddingX
; /* Padding within button */
3273 textWidth
+= DLG_VERT_PADDING_X
* 2; /* Padding around button */
3274 if (textWidth
> dlgwidth
)
3275 dlgwidth
= textWidth
;
3277 } while (*pend
!= NUL
);
3280 if (dlgwidth
< DLG_MIN_WIDTH
)
3281 dlgwidth
= DLG_MIN_WIDTH
; /* Don't allow a really thin dialog!*/
3283 /* start to fill in the dlgtemplate information. addressing by WORDs */
3285 lStyle
= DS_MODALFRAME
| WS_CAPTION
|DS_3DLOOK
| WS_VISIBLE
|DS_SETFONT
;
3287 lStyle
= DS_MODALFRAME
| WS_CAPTION
|DS_3DLOOK
| WS_VISIBLE
;
3290 add_long(0); // (lExtendedStyle)
3291 pnumitems
= p
; /*save where the number of items must be stored*/
3292 add_word(0); // NumberOfItems(will change later)
3295 add_word(PixelToDialogX(dlgwidth
)); // cx
3299 dlgheight
= msgheight
+ 2 * dlgPaddingY
+
3300 DLG_VERT_PADDING_Y
+ 2 * fontHeight
* numButtons
;
3302 dlgheight
= msgheight
+ 3 * dlgPaddingY
+ 2 * fontHeight
;
3304 // Dialog needs to be taller if contains an edit box.
3305 editboxheight
= fontHeight
+ dlgPaddingY
+ 4 * DLG_VERT_PADDING_Y
;
3306 if (textfield
!= NULL
)
3307 dlgheight
+= editboxheight
;
3309 add_word(PixelToDialogY(dlgheight
));
3311 add_word(0); // Menu
3312 add_word(0); // Class
3314 /* copy the title of the dialog */
3315 nchar
= nCopyAnsiToWideChar(p
, (title
?
3317 (LPSTR
)("Vim "VIM_VERSION_MEDIUM
)));
3322 /* do the font, since DS_3DLOOK doesn't work properly */
3323 #ifdef USE_SYSMENU_FONT
3327 *p
++ = -MulDiv(lfSysmenu
.lfHeight
, 72,
3328 GetDeviceCaps(hdc
, LOGPIXELSY
));
3329 nchar
= nCopyAnsiToWideChar(p
, TEXT(lfSysmenu
.lfFaceName
));
3334 *p
++ = DLG_FONT_POINT_SIZE
; // point size
3335 nchar
= nCopyAnsiToWideChar(p
, TEXT(DLG_FONT_NAME
));
3340 buttonYpos
= msgheight
+ 2 * dlgPaddingY
;
3342 if (textfield
!= NULL
)
3343 buttonYpos
+= editboxheight
;
3347 horizWidth
= (dlgwidth
- horizWidth
) / 2; /* Now it's X offset */
3348 for (i
= 0; i
< numButtons
; i
++)
3350 /* get end of this button. */
3351 for ( pend
= pstart
;
3352 *pend
&& (*pend
!= DLG_BUTTON_SEP
);
3361 * setting the BS_DEFPUSHBUTTON style doesn't work because Windows sets
3362 * the focus to the first tab-able button and in so doing makes that
3363 * the default!! Grrr. Workaround: Make the default button the only
3364 * one with WS_TABSTOP style. Means user can't tab between buttons, but
3365 * he/she can use arrow keys.
3367 * new NOTE: BS_DEFPUSHBUTTON is required to be able to select the
3368 * right button when hitting <Enter>. E.g., for the ":confirm quit"
3369 * dialog. Also needed for when the textfield is the default control.
3370 * It appears to work now (perhaps not on Win95?).
3374 p
= add_dialog_element(p
,
3376 ? BS_DEFPUSHBUTTON
: BS_PUSHBUTTON
) | WS_TABSTOP
,
3377 PixelToDialogX(DLG_VERT_PADDING_X
),
3378 PixelToDialogY(buttonYpos
/* TBK */
3379 + 2 * fontHeight
* i
),
3380 PixelToDialogX(dlgwidth
- 2 * DLG_VERT_PADDING_X
),
3381 (WORD
)(PixelToDialogY(2 * fontHeight
) - 1),
3382 (WORD
)(IDCANCEL
+ 1 + i
), (WORD
)0x0080, pstart
);
3386 p
= add_dialog_element(p
,
3388 ? BS_DEFPUSHBUTTON
: BS_PUSHBUTTON
) | WS_TABSTOP
,
3389 PixelToDialogX(horizWidth
+ buttonPositions
[i
]),
3390 PixelToDialogY(buttonYpos
), /* TBK */
3391 PixelToDialogX(buttonWidths
[i
]),
3392 (WORD
)(PixelToDialogY(2 * fontHeight
) - 1),
3393 (WORD
)(IDCANCEL
+ 1 + i
), (WORD
)0x0080, pstart
);
3395 pstart
= pend
+ 1; /*next button*/
3397 *pnumitems
+= numButtons
;
3400 p
= add_dialog_element(p
, SS_ICON
,
3401 PixelToDialogX(dlgPaddingX
),
3402 PixelToDialogY(dlgPaddingY
),
3403 PixelToDialogX(DLG_ICON_WIDTH
),
3404 PixelToDialogY(DLG_ICON_HEIGHT
),
3405 DLG_NONBUTTON_CONTROL
+ 0, (WORD
)0x0082,
3409 /* Dialog message */
3410 p
= add_dialog_element(p
, SS_LEFT
,
3411 PixelToDialogX(2 * dlgPaddingX
+ DLG_ICON_WIDTH
),
3412 PixelToDialogY(dlgPaddingY
),
3413 (WORD
)(PixelToDialogX(messageWidth
) + 1),
3414 PixelToDialogY(msgheight
),
3415 DLG_NONBUTTON_CONTROL
+ 1, (WORD
)0x0082, message
);
3417 /* Dialog message */
3418 p
= add_dialog_element(p
, ES_LEFT
|scroll_flag
|ES_MULTILINE
|ES_READONLY
,
3419 PixelToDialogX(2 * dlgPaddingX
+ DLG_ICON_WIDTH
),
3420 PixelToDialogY(dlgPaddingY
),
3421 (WORD
)(PixelToDialogX(messageWidth
) + 1),
3422 PixelToDialogY(msgheight
),
3423 DLG_NONBUTTON_CONTROL
+ 1, (WORD
)0x0081, message
);
3427 if (textfield
!= NULL
)
3429 p
= add_dialog_element(p
, ES_LEFT
|ES_AUTOHSCROLL
|WS_TABSTOP
|WS_BORDER
,
3430 PixelToDialogX(2 * dlgPaddingX
),
3431 PixelToDialogY(2 * dlgPaddingY
+ msgheight
),
3432 PixelToDialogX(dlgwidth
- 4 * dlgPaddingX
),
3433 PixelToDialogY(fontHeight
+ dlgPaddingY
),
3434 DLG_NONBUTTON_CONTROL
+ 2, (WORD
)0x0081, textfield
);
3440 SelectFont(hdc
, oldFont
);
3442 ReleaseDC(hwnd
, hdc
);
3444 /* Let the dialog_callback() function know which button to make default
3445 * If we have an edit box, make that the default. We also need to tell
3446 * dialog_callback() if this dialog contains an edit box or not. We do
3447 * this by setting s_textfield if it does.
3449 if (textfield
!= NULL
)
3451 dialog_default_button
= DLG_NONBUTTON_CONTROL
+ 2;
3452 s_textfield
= textfield
;
3456 dialog_default_button
= IDCANCEL
+ 1 + dfltbutton
;
3460 /* show the dialog box modally and get a return value */
3461 nchar
= (int)DialogBoxIndirect(
3463 (LPDLGTEMPLATE
)pdlgtemplate
,
3465 (DLGPROC
)dialog_callback
);
3467 LocalFree(LocalHandle(pdlgtemplate
));
3469 vim_free(buttonWidths
);
3470 vim_free(buttonPositions
);
3471 vim_free(ga
.ga_data
);
3473 /* Focus back to our window (for when MDI is used). */
3474 (void)SetFocus(s_hwnd
);
3479 #endif /* FEAT_GUI_DIALOG */
3482 * Put a simple element (basic class) onto a dialog template in memory.
3483 * return a pointer to where the next item should be added.
3486 * lStyle = additional style flags
3487 * (be careful, NT3.51 & Win32s will ignore the new ones)
3488 * x,y = x & y positions IN DIALOG UNITS
3489 * w,h = width and height IN DIALOG UNITS
3490 * Id = ID used in messages
3491 * clss = class ID, e.g 0x0080 for a button, 0x0082 for a static
3492 * caption = usually text or resource name
3494 * TODO: use the length information noted here to enable the dialog creation
3495 * routines to work out more exactly how much memory they need to alloc.
3507 const char *caption
)
3511 p
= lpwAlign(p
); /* Align to dword boundary*/
3512 lStyle
= lStyle
| WS_VISIBLE
| WS_CHILD
;
3513 *p
++ = LOWORD(lStyle
);
3514 *p
++ = HIWORD(lStyle
);
3515 *p
++ = 0; // LOWORD (lExtendedStyle)
3516 *p
++ = 0; // HIWORD (lExtendedStyle)
3521 *p
++ = Id
; //9 or 10 words in all
3523 *p
++ = (WORD
)0xffff;
3524 *p
++ = clss
; //2 more here
3526 nchar
= nCopyAnsiToWideChar(p
, (LPSTR
)caption
); //strlen(caption)+1
3529 *p
++ = 0; // advance pointer over nExtraStuff WORD - 2 more
3531 return p
; //total = 15+ (strlen(caption)) words
3532 // = 30 + 2(strlen(caption) bytes reqd
3537 * Helper routine. Take an input pointer, return closest pointer that is
3538 * aligned on a DWORD (4 byte) boundary. Taken from the Win32SDK samples.
3554 * Helper routine. Takes second parameter as Ansi string, copies it to first
3555 * parameter as wide character (16-bits / char) string, and returns integer
3556 * number of wide characters (words) in string (including the trailing wide
3557 * char NULL). Partly taken from the Win32SDK samples.
3560 nCopyAnsiToWideChar(
3566 int len
= lstrlen(lpAnsiIn
) + 1; /* include NUL character */
3570 if (enc_codepage
== 0 && (int)GetACP() != enc_codepage
)
3572 /* Not a codepage, use our own conversion function. */
3573 wn
= enc_to_utf16(lpAnsiIn
, NULL
);
3576 wcscpy(lpWCStr
, wn
);
3577 nChar
= (int)wcslen(wn
) + 1;
3582 /* Use Win32 conversion function. */
3583 nChar
= MultiByteToWideChar(
3584 enc_codepage
> 0 ? enc_codepage
: CP_ACP
,
3588 for (i
= 0; i
< nChar
; ++i
)
3589 if (lpWCStr
[i
] == (WORD
)'\t') /* replace tabs with spaces */
3590 lpWCStr
[i
] = (WORD
)' ';
3594 if (*lpAnsiIn
== '\t')
3595 *lpWCStr
++ = (WORD
)' ';
3597 *lpWCStr
++ = (WORD
)*lpAnsiIn
;
3599 } while (*lpAnsiIn
++);
3608 * The callback function for all the modeless dialogs that make up the
3609 * "tearoff menus" Very simple - forward button presses (to fool Vim into
3610 * thinking its menus have been clicked), and go away when closed.
3612 static LRESULT CALLBACK
3619 if (message
== WM_INITDIALOG
)
3622 /* May show the mouse pointer again. */
3623 HandleMouseHide(message
, lParam
);
3625 if (message
== WM_COMMAND
)
3627 if ((WORD
)(LOWORD(wParam
)) & 0x8000)
3632 if (GetCursorPos(&mp
) && GetWindowRect(hwnd
, &rect
))
3634 (void)TrackPopupMenu(
3635 (HMENU
)(long_u
)(LOWORD(wParam
) ^ 0x8000),
3636 TPM_LEFTALIGN
| TPM_LEFTBUTTON
,
3637 (int)rect
.right
- 8,
3639 (int)0, /*reserved param*/
3643 * NOTE: The pop-up menu can eat the mouse up event.
3644 * We deal with this in normal.c.
3649 /* Pass on messages to the main Vim window */
3650 PostMessage(s_hwnd
, WM_COMMAND
, LOWORD(wParam
), 0);
3652 * Give main window the focus back: this is so after
3653 * choosing a tearoff button you can start typing again
3656 (void)SetFocus(s_hwnd
);
3659 if ((message
== WM_SYSCOMMAND
) && (wParam
== SC_CLOSE
))
3661 DestroyWindow(hwnd
);
3665 /* When moved around, give main window the focus back. */
3666 if (message
== WM_EXITSIZEMOVE
)
3667 (void)SetActiveWindow(s_hwnd
);
3675 * Decide whether to use the "new look" (small, non-bold font) or the "old
3676 * look" (big, clanky font) for dialogs, and work out a few values for use
3677 * later accordingly.
3680 get_dialog_font_metrics(void)
3683 HFONT hfontTools
= 0;
3686 #ifdef USE_SYSMENU_FONT
3690 s_usenewlook
= FALSE
;
3693 * For NT3.51 and Win32s, we stick with the old look
3694 * because it matches everything else.
3698 #ifdef USE_SYSMENU_FONT
3699 if (gui_w32_get_menu_font(&lfSysmenu
) == OK
)
3700 hfontTools
= CreateFontIndirect(&lfSysmenu
);
3703 hfontTools
= CreateFont(-DLG_FONT_POINT_SIZE
, 0, 0, 0, 0, 0, 0, 0,
3704 0, 0, 0, 0, VARIABLE_PITCH
, DLG_FONT_NAME
);
3708 hdc
= GetDC(s_hwnd
);
3709 SelectObject(hdc
, hfontTools
);
3711 * GetTextMetrics() doesn't return the right value in
3712 * tmAveCharWidth, so we have to figure out the dialog base units
3715 GetTextExtentPoint(hdc
,
3716 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
3718 ReleaseDC(s_hwnd
, hdc
);
3720 s_dlgfntwidth
= (WORD
)((size
.cx
/ 26 + 1) / 2);
3721 s_dlgfntheight
= (WORD
)size
.cy
;
3722 s_usenewlook
= TRUE
;
3728 dlgFontSize
= GetDialogBaseUnits(); /* fall back to big old system*/
3729 s_dlgfntwidth
= LOWORD(dlgFontSize
);
3730 s_dlgfntheight
= HIWORD(dlgFontSize
);
3734 #if defined(FEAT_MENU) && defined(FEAT_TEAROFF)
3736 * Create a pseudo-"tearoff menu" based on the child
3737 * items of a given menu pointer.
3746 WORD
*p
, *pdlgtemplate
, *pnumitems
, *ptrueheight
;
3748 int nchar
, textWidth
, submenuWidth
;
3750 DWORD lExtendedStyle
;
3754 vimmenu_T
*the_menu
= menu
;
3757 HFONT font
, oldFont
;
3758 int col
, spaceWidth
, len
;
3759 int columnWidths
[2];
3760 char_u
*label
, *text
;
3763 int padding0
, padding1
, padding2
= 0;
3767 #ifdef USE_SYSMENU_FONT
3769 int use_lfSysmenu
= FALSE
;
3773 * If this menu is already torn off, move it to the mouse position.
3775 if (IsWindow(menu
->tearoff_handle
))
3778 if (GetCursorPos((LPPOINT
)&mp
))
3780 SetWindowPos(menu
->tearoff_handle
, NULL
, mp
.x
, mp
.y
, 0, 0,
3781 SWP_NOACTIVATE
| SWP_NOSIZE
| SWP_NOZORDER
);
3787 * Create a new tearoff.
3789 if (*title
== MNU_HIDDEN_CHAR
)
3792 /* Allocate memory to store the dialog template. It's made bigger when
3794 template_len
= DLG_ALLOC_SIZE
;
3795 pdlgtemplate
= p
= (WORD
*)LocalAlloc(LPTR
, template_len
);
3799 hwnd
= GetDesktopWindow();
3800 hdc
= GetWindowDC(hwnd
);
3801 #ifdef USE_SYSMENU_FONT
3802 if (gui_w32_get_menu_font(&lfSysmenu
) == OK
)
3804 font
= CreateFontIndirect(&lfSysmenu
);
3805 use_lfSysmenu
= TRUE
;
3809 font
= CreateFont(-DLG_FONT_POINT_SIZE
, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3810 VARIABLE_PITCH
, DLG_FONT_NAME
);
3812 oldFont
= SelectFont(hdc
, font
);
3814 oldFont
= SelectFont(hdc
, GetStockObject(SYSTEM_FONT
));
3816 /* Calculate width of a single space. Used for padding columns to the
3818 spaceWidth
= GetTextWidth(hdc
, " ", 1);
3820 /* Figure out max width of the text column, the accelerator column and the
3821 * optional submenu column. */
3823 for (col
= 0; col
< 2; col
++)
3825 columnWidths
[col
] = 0;
3826 for (pmenu
= menu
->children
; pmenu
!= NULL
; pmenu
= pmenu
->next
)
3828 /* Use "dname" here to compute the width of the visible text. */
3829 text
= (col
== 0) ? pmenu
->dname
: pmenu
->actext
;
3830 if (text
!= NULL
&& *text
!= NUL
)
3832 textWidth
= GetTextWidthEnc(hdc
, text
, (int)STRLEN(text
));
3833 if (textWidth
> columnWidths
[col
])
3834 columnWidths
[col
] = textWidth
;
3836 if (pmenu
->children
!= NULL
)
3837 submenuWidth
= TEAROFF_COLUMN_PADDING
* spaceWidth
;
3840 if (columnWidths
[1] == 0)
3842 /* no accelerators */
3843 if (submenuWidth
!= 0)
3844 columnWidths
[0] += submenuWidth
;
3846 columnWidths
[0] += spaceWidth
;
3850 /* there is an accelerator column */
3851 columnWidths
[0] += TEAROFF_COLUMN_PADDING
* spaceWidth
;
3852 columnWidths
[1] += submenuWidth
;
3856 * Now find the total width of our 'menu'.
3858 textWidth
= columnWidths
[0] + columnWidths
[1];
3859 if (submenuWidth
!= 0)
3861 submenuWidth
= GetTextWidth(hdc
, TEAROFF_SUBMENU_LABEL
,
3862 (int)STRLEN(TEAROFF_SUBMENU_LABEL
));
3863 textWidth
+= submenuWidth
;
3865 dlgwidth
= GetTextWidthEnc(hdc
, title
, (int)STRLEN(title
));
3866 if (textWidth
> dlgwidth
)
3867 dlgwidth
= textWidth
;
3868 dlgwidth
+= 2 * TEAROFF_PADDING_X
+ TEAROFF_BUTTON_PAD_X
;
3870 /* W95 can't do thin dialogs, they look v. weird! */
3871 if (mch_windows95() && dlgwidth
< TEAROFF_MIN_WIDTH
)
3872 dlgwidth
= TEAROFF_MIN_WIDTH
;
3874 /* start to fill in the dlgtemplate information. addressing by WORDs */
3876 lStyle
= DS_MODALFRAME
| WS_CAPTION
| WS_SYSMENU
|DS_SETFONT
| WS_VISIBLE
;
3878 lStyle
= DS_MODALFRAME
| WS_CAPTION
| WS_SYSMENU
| WS_VISIBLE
;
3880 lExtendedStyle
= WS_EX_TOOLWINDOW
|WS_EX_STATICEDGE
;
3881 *p
++ = LOWORD(lStyle
);
3882 *p
++ = HIWORD(lStyle
);
3883 *p
++ = LOWORD(lExtendedStyle
);
3884 *p
++ = HIWORD(lExtendedStyle
);
3885 pnumitems
= p
; /* save where the number of items must be stored */
3886 *p
++ = 0; // NumberOfItems(will change later)
3887 gui_mch_getmouse(&x
, &y
);
3888 if (initX
== 0xffffL
)
3889 *p
++ = PixelToDialogX(x
); // x
3891 *p
++ = PixelToDialogX(initX
); // x
3892 if (initY
== 0xffffL
)
3893 *p
++ = PixelToDialogY(y
); // y
3895 *p
++ = PixelToDialogY(initY
); // y
3896 *p
++ = PixelToDialogX(dlgwidth
); // cx
3898 *p
++ = 0; // dialog height: changed later anyway
3902 /* copy the title of the dialog */
3903 nchar
= nCopyAnsiToWideChar(p
, ((*title
)
3905 : (LPSTR
)("Vim "VIM_VERSION_MEDIUM
)));
3910 /* do the font, since DS_3DLOOK doesn't work properly */
3911 #ifdef USE_SYSMENU_FONT
3915 *p
++ = -MulDiv(lfSysmenu
.lfHeight
, 72,
3916 GetDeviceCaps(hdc
, LOGPIXELSY
));
3917 nchar
= nCopyAnsiToWideChar(p
, TEXT(lfSysmenu
.lfFaceName
));
3922 *p
++ = DLG_FONT_POINT_SIZE
; // point size
3923 nchar
= nCopyAnsiToWideChar (p
, TEXT(DLG_FONT_NAME
));
3929 * Loop over all the items in the menu.
3930 * But skip over the tearbar.
3932 if (STRCMP(menu
->children
->name
, TEAR_STRING
) == 0)
3933 menu
= menu
->children
->next
;
3935 menu
= menu
->children
;
3936 for ( ; menu
!= NULL
; menu
= menu
->next
)
3938 if (menu
->modes
== 0) /* this menu has just been deleted */
3940 if (menu_is_separator(menu
->dname
))
3946 /* Check if there still is plenty of room in the template. Make it
3947 * larger when needed. */
3948 if (((char *)p
- (char *)pdlgtemplate
) + 1000 > template_len
)
3952 newp
= (WORD
*)LocalAlloc(LPTR
, template_len
+ 4096);
3955 template_len
+= 4096;
3956 mch_memmove(newp
, pdlgtemplate
,
3957 (char *)p
- (char *)pdlgtemplate
);
3958 p
= newp
+ (p
- pdlgtemplate
);
3959 pnumitems
= newp
+ (pnumitems
- pdlgtemplate
);
3960 ptrueheight
= newp
+ (ptrueheight
- pdlgtemplate
);
3961 LocalFree(LocalHandle(pdlgtemplate
));
3962 pdlgtemplate
= newp
;
3966 /* Figure out minimal length of this menu label. Use "name" for the
3967 * actual text, "dname" for estimating the displayed size. "name"
3968 * has "&a" for mnemonic and includes the accelerator. */
3969 len
= nameLen
= (int)STRLEN(menu
->name
);
3970 padding0
= (columnWidths
[0] - GetTextWidthEnc(hdc
, menu
->dname
,
3971 (int)STRLEN(menu
->dname
))) / spaceWidth
;
3974 if (menu
->actext
!= NULL
)
3976 acLen
= (int)STRLEN(menu
->actext
);
3978 textWidth
= GetTextWidthEnc(hdc
, menu
->actext
, acLen
);
3982 padding1
= (columnWidths
[1] - textWidth
) / spaceWidth
;
3985 if (menu
->children
== NULL
)
3987 padding2
= submenuWidth
/ spaceWidth
;
3989 menuID
= (WORD
)(menu
->id
);
3993 len
+= (int)STRLEN(TEAROFF_SUBMENU_LABEL
);
3994 menuID
= (WORD
)((long_u
)(menu
->submenu_id
) | (DWORD
)0x8000);
3997 /* Allocate menu label and fill it in */
3998 text
= label
= alloc((unsigned)len
+ 1);
4002 vim_strncpy(text
, menu
->name
, nameLen
);
4003 text
= vim_strchr(text
, TAB
); /* stop at TAB before actext */
4005 text
= label
+ nameLen
; /* no actext, use whole name */
4006 while (padding0
-- > 0)
4008 if (menu
->actext
!= NULL
)
4010 STRNCPY(text
, menu
->actext
, acLen
);
4013 while (padding1
-- > 0)
4015 if (menu
->children
!= NULL
)
4017 STRCPY(text
, TEAROFF_SUBMENU_LABEL
);
4018 text
+= STRLEN(TEAROFF_SUBMENU_LABEL
);
4022 while (padding2
-- > 0)
4028 * BS_LEFT will just be ignored on Win32s/NT3.5x - on
4029 * W95/NT4 it makes the tear-off look more like a menu.
4031 p
= add_dialog_element(p
,
4032 BS_PUSHBUTTON
|BS_LEFT
,
4033 (WORD
)PixelToDialogX(TEAROFF_PADDING_X
),
4034 (WORD
)(sepPadding
+ 1 + 13 * (*pnumitems
)),
4035 (WORD
)PixelToDialogX(dlgwidth
- 2 * TEAROFF_PADDING_X
),
4037 menuID
, (WORD
)0x0080, label
);
4042 *ptrueheight
= (WORD
)(sepPadding
+ 1 + 13 * (*pnumitems
));
4045 /* show modelessly */
4046 the_menu
->tearoff_handle
= CreateDialogIndirect(
4048 (LPDLGTEMPLATE
)pdlgtemplate
,
4050 (DLGPROC
)tearoff_callback
);
4052 LocalFree(LocalHandle(pdlgtemplate
));
4053 SelectFont(hdc
, oldFont
);
4055 ReleaseDC(hwnd
, hdc
);
4058 * Reassert ourselves as the active window. This is so that after creating
4059 * a tearoff, the user doesn't have to click with the mouse just to start
4062 (void)SetActiveWindow(s_hwnd
);
4064 /* make sure the right buttons are enabled */
4065 force_menu_update
= TRUE
;
4069 #if defined(FEAT_TOOLBAR) || defined(PROTO)
4070 #include "gui_w32_rc.h"
4072 /* This not defined in older SDKs */
4073 # ifndef TBSTYLE_FLAT
4074 # define TBSTYLE_FLAT 0x0800
4078 * Create the toolbar, initially unpopulated.
4079 * (just like the menu, there are no defaults, it's all
4080 * set up through menu.vim)
4083 initialise_toolbar(void)
4085 InitCommonControls();
4086 s_toolbarhwnd
= CreateToolbarEx(
4088 WS_CHILD
| TBSTYLE_TOOLTIPS
| TBSTYLE_FLAT
,
4089 4000, //any old big number
4090 31, //number of images in initial bitmap
4092 IDR_TOOLBAR1
, // id of initial bitmap
4094 0, // initial number of buttons
4095 TOOLBAR_BUTTON_WIDTH
, //api guide is wrong!
4096 TOOLBAR_BUTTON_HEIGHT
,
4097 TOOLBAR_BUTTON_WIDTH
,
4098 TOOLBAR_BUTTON_HEIGHT
,
4102 gui_mch_show_toolbar(vim_strchr(p_go
, GO_TOOLBAR
) != NULL
);
4106 get_toolbar_bitmap(vimmenu_T
*menu
)
4111 * Check user bitmaps first, unless builtin is specified.
4113 if (!is_winnt_3() && !menu
->icon_builtin
)
4115 char_u fname
[MAXPATHL
];
4116 HANDLE hbitmap
= NULL
;
4118 if (menu
->iconfile
!= NULL
)
4120 gui_find_iconfile(menu
->iconfile
, fname
, "bmp");
4121 hbitmap
= LoadImage(
4125 TOOLBAR_BUTTON_WIDTH
,
4126 TOOLBAR_BUTTON_HEIGHT
,
4133 * If the LoadImage call failed, or the "icon=" file
4134 * didn't exist or wasn't specified, try the menu name
4137 && (gui_find_bitmap(menu
->name
, fname
, "bmp") == OK
))
4138 hbitmap
= LoadImage(
4142 TOOLBAR_BUTTON_WIDTH
,
4143 TOOLBAR_BUTTON_HEIGHT
,
4148 if (hbitmap
!= NULL
)
4150 TBADDBITMAP tbAddBitmap
;
4152 tbAddBitmap
.hInst
= NULL
;
4153 tbAddBitmap
.nID
= (long_u
)hbitmap
;
4155 i
= (int)SendMessage(s_toolbarhwnd
, TB_ADDBITMAP
,
4156 (WPARAM
)1, (LPARAM
)&tbAddBitmap
);
4157 /* i will be set to -1 if it fails */
4160 if (i
== -1 && menu
->iconidx
>= 0 && menu
->iconidx
< TOOLBAR_BITMAP_COUNT
)
4167 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
4169 initialise_tabline(void)
4171 InitCommonControls();
4173 s_tabhwnd
= CreateWindow(WC_TABCONTROL
, "Vim tabline",
4174 WS_CHILD
|TCS_FOCUSNEVER
|TCS_TOOLTIPS
,
4175 CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
,
4176 CW_USEDEFAULT
, s_hwnd
, NULL
, s_hinst
, NULL
);
4178 gui
.tabline_height
= TABLINE_HEIGHT
;
4180 # ifdef USE_SYSMENU_FONT
4186 #if defined(FEAT_OLE) || defined(FEAT_EVAL) || defined(PROTO)
4188 * Make the GUI window come to the foreground.
4191 gui_mch_set_foreground(void)
4193 if (IsIconic(s_hwnd
))
4194 SendMessage(s_hwnd
, WM_SYSCOMMAND
, SC_RESTORE
, 0);
4195 SetForegroundWindow(s_hwnd
);
4199 #if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
4203 hLibImm
= LoadLibrary("imm32.dll");
4204 if (hLibImm
== NULL
)
4207 pImmGetCompositionStringA
4208 = (void *)GetProcAddress(hLibImm
, "ImmGetCompositionStringA");
4209 pImmGetCompositionStringW
4210 = (void *)GetProcAddress(hLibImm
, "ImmGetCompositionStringW");
4212 = (void *)GetProcAddress(hLibImm
, "ImmGetContext");
4213 pImmAssociateContext
4214 = (void *)GetProcAddress(hLibImm
, "ImmAssociateContext");
4216 = (void *)GetProcAddress(hLibImm
, "ImmReleaseContext");
4218 = (void *)GetProcAddress(hLibImm
, "ImmGetOpenStatus");
4220 = (void *)GetProcAddress(hLibImm
, "ImmSetOpenStatus");
4221 pImmGetCompositionFont
4222 = (void *)GetProcAddress(hLibImm
, "ImmGetCompositionFontA");
4223 pImmSetCompositionFont
4224 = (void *)GetProcAddress(hLibImm
, "ImmSetCompositionFontA");
4225 pImmSetCompositionWindow
4226 = (void *)GetProcAddress(hLibImm
, "ImmSetCompositionWindow");
4227 pImmGetConversionStatus
4228 = (void *)GetProcAddress(hLibImm
, "ImmGetConversionStatus");
4229 pImmSetConversionStatus
4230 = (void *)GetProcAddress(hLibImm
, "ImmSetConversionStatus");
4232 if ( pImmGetCompositionStringA
== NULL
4233 || pImmGetCompositionStringW
== NULL
4234 || pImmGetContext
== NULL
4235 || pImmAssociateContext
== NULL
4236 || pImmReleaseContext
== NULL
4237 || pImmGetOpenStatus
== NULL
4238 || pImmSetOpenStatus
== NULL
4239 || pImmGetCompositionFont
== NULL
4240 || pImmSetCompositionFont
== NULL
4241 || pImmSetCompositionWindow
== NULL
4242 || pImmGetConversionStatus
== NULL
4243 || pImmSetConversionStatus
== NULL
)
4245 FreeLibrary(hLibImm
);
4247 pImmGetContext
= NULL
;
4254 # if 0 /* not used */
4256 dyn_imm_unload(void)
4260 FreeLibrary(hLibImm
);
4268 #if defined(FEAT_SIGN_ICONS) || defined(PROTO)
4270 # ifdef FEAT_XPM_W32
4271 # define IMAGE_XPM 100
4274 typedef struct _signicon_t
4279 HANDLE hShape
; /* Mask bitmap handle */
4284 gui_mch_drawsign(row
, col
, typenr
)
4292 if (!gui
.in_use
|| (sign
= (signicon_t
*)sign_get_image(typenr
)) == NULL
)
4297 w
= gui
.char_width
* 2;
4298 h
= gui
.char_height
;
4299 switch (sign
->uType
)
4306 hdcMem
= CreateCompatibleDC(s_hdc
);
4307 hbmpOld
= (HBITMAP
)SelectObject(hdcMem
, sign
->hImage
);
4308 BitBlt(s_hdc
, x
, y
, w
, h
, hdcMem
, 0, 0, SRCCOPY
);
4309 SelectObject(hdcMem
, hbmpOld
);
4315 DrawIconEx(s_hdc
, x
, y
, (HICON
)sign
->hImage
, w
, h
, 0, NULL
, DI_NORMAL
);
4323 hdcMem
= CreateCompatibleDC(s_hdc
);
4324 hbmpOld
= (HBITMAP
)SelectObject(hdcMem
, sign
->hShape
);
4326 BitBlt(s_hdc
, x
, y
, w
, h
, hdcMem
, 0, 0, SRCAND
);
4328 SelectObject(hdcMem
, sign
->hImage
);
4330 BitBlt(s_hdc
, x
, y
, w
, h
, hdcMem
, 0, 0, SRCPAINT
);
4331 SelectObject(hdcMem
, hbmpOld
);
4340 close_signicon_image(signicon_t
*sign
)
4343 switch (sign
->uType
)
4346 DeleteObject((HGDIOBJ
)sign
->hImage
);
4349 DestroyCursor((HCURSOR
)sign
->hImage
);
4352 DestroyIcon((HICON
)sign
->hImage
);
4356 DeleteObject((HBITMAP
)sign
->hImage
);
4357 DeleteObject((HBITMAP
)sign
->hShape
);
4364 gui_mch_register_sign(signfile
)
4367 signicon_t sign
, *psign
;
4372 EMSG(_(e_signdata
));
4377 ext
= signfile
+ STRLEN(signfile
) - 4; /* get extention */
4382 if (!STRICMP(ext
, ".bmp"))
4383 sign
.uType
= IMAGE_BITMAP
;
4384 else if (!STRICMP(ext
, ".ico"))
4385 sign
.uType
= IMAGE_ICON
;
4386 else if (!STRICMP(ext
, ".cur") || !STRICMP(ext
, ".ani"))
4387 sign
.uType
= IMAGE_CURSOR
;
4392 sign
.hImage
= (HANDLE
)LoadImage(NULL
, signfile
, sign
.uType
,
4393 gui
.char_width
* 2, gui
.char_height
,
4394 LR_LOADFROMFILE
| LR_CREATEDIBSECTION
);
4396 if (!STRICMP(ext
, ".xpm"))
4398 sign
.uType
= IMAGE_XPM
;
4399 LoadXpmImage(signfile
, (HBITMAP
*)&sign
.hImage
, (HBITMAP
*)&sign
.hShape
);
4405 if (sign
.hImage
&& (psign
= (signicon_t
*)alloc(sizeof(signicon_t
)))
4412 close_signicon_image(&sign
);
4413 EMSG(_(e_signdata
));
4415 return (void *)psign
;
4420 gui_mch_destroy_sign(sign
)
4425 close_signicon_image((signicon_t
*)sign
);
4431 #if defined(FEAT_BEVAL) || defined(PROTO)
4433 /* BALLOON-EVAL IMPLEMENTATION FOR WINDOWS.
4434 * Added by Sergey Khorev <sergey.khorev@gmail.com>
4436 * The only reused thing is gui_beval.h and get_beval_info()
4437 * from gui_beval.c (note it uses x and y of the BalloonEval struct
4438 * to get current mouse position).
4440 * Trying to use as more Windows services as possible, and as less
4441 * IE version as possible :)).
4443 * 1) Don't create ToolTip in gui_mch_create_beval_area, only initialize
4444 * BalloonEval struct.
4445 * 2) Enable/Disable simply create/kill BalloonEval Timer
4446 * 3) When there was enough inactivity, timer procedure posts
4447 * async request to debugger
4448 * 4) gui_mch_post_balloon (invoked from netbeans.c) creates tooltip control
4449 * and performs some actions to show it ASAP
4450 * 5) WM_NOTIFY:TTN_POP destroys created tooltip
4454 * determine whether installed Common Controls support multiline tooltips
4455 * (i.e. their version is >= 4.70
4458 multiline_balloon_available(void)
4461 static char comctl_dll
[] = "comctl32.dll";
4462 static int multiline_tip
= MAYBE
;
4464 if (multiline_tip
!= MAYBE
)
4465 return multiline_tip
;
4467 hDll
= GetModuleHandle(comctl_dll
);
4470 DLLGETVERSIONPROC pGetVer
;
4471 pGetVer
= (DLLGETVERSIONPROC
)GetProcAddress(hDll
, "DllGetVersion");
4473 if (pGetVer
!= NULL
)
4478 ZeroMemory(&dvi
, sizeof(dvi
));
4479 dvi
.cbSize
= sizeof(dvi
);
4481 hr
= (*pGetVer
)(&dvi
);
4484 && (dvi
.dwMajorVersion
> 4
4485 || (dvi
.dwMajorVersion
== 4
4486 && dvi
.dwMinorVersion
>= 70)))
4488 multiline_tip
= TRUE
;
4489 return multiline_tip
;
4494 /* there is chance we have ancient CommCtl 4.70
4495 which doesn't export DllGetVersion */
4497 DWORD len
= GetFileVersionInfoSize(comctl_dll
, &dwHandle
);
4500 VS_FIXEDFILEINFO
*ver
;
4502 void *data
= alloc(len
);
4505 && GetFileVersionInfo(comctl_dll
, 0, len
, data
)
4506 && VerQueryValue(data
, "\\", (void **)&ver
, &vlen
)
4508 && HIWORD(ver
->dwFileVersionMS
) > 4
4509 || (HIWORD(ver
->dwFileVersionMS
) == 4
4510 && LOWORD(ver
->dwFileVersionMS
) >= 70))
4513 multiline_tip
= TRUE
;
4514 return multiline_tip
;
4520 multiline_tip
= FALSE
;
4521 return multiline_tip
;
4525 make_tooltip(beval
, text
, pt
)
4533 if (multiline_balloon_available() == TRUE
)
4534 ToolInfoSize
= sizeof(TOOLINFO_NEW
);
4536 ToolInfoSize
= sizeof(TOOLINFO
);
4538 pti
= (TOOLINFO
*)alloc(ToolInfoSize
);
4542 beval
->balloon
= CreateWindowEx(WS_EX_TOPMOST
, TOOLTIPS_CLASS
,
4543 NULL
, WS_POPUP
| TTS_NOPREFIX
| TTS_ALWAYSTIP
,
4544 CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
,
4545 beval
->target
, NULL
, s_hinst
, NULL
);
4547 SetWindowPos(beval
->balloon
, HWND_TOPMOST
, 0, 0, 0, 0,
4548 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
4550 pti
->cbSize
= ToolInfoSize
;
4551 pti
->uFlags
= TTF_SUBCLASS
;
4552 pti
->hwnd
= beval
->target
;
4553 pti
->hinst
= 0; /* Don't use string resources */
4554 pti
->uId
= ID_BEVAL_TOOLTIP
;
4556 if (multiline_balloon_available() == TRUE
)
4559 TOOLINFO_NEW
*ptin
= (TOOLINFO_NEW
*)pti
;
4560 pti
->lpszText
= LPSTR_TEXTCALLBACK
;
4561 ptin
->lParam
= (LPARAM
)text
;
4562 if (GetClientRect(s_textArea
, &rect
)) /* switch multiline tooltips on */
4563 SendMessage(beval
->balloon
, TTM_SETMAXTIPWIDTH
, 0,
4564 (LPARAM
)rect
.right
);
4567 pti
->lpszText
= text
; /* do this old way */
4569 /* Limit ballooneval bounding rect to CursorPos neighbourhood */
4570 pti
->rect
.left
= pt
.x
- 3;
4571 pti
->rect
.top
= pt
.y
- 3;
4572 pti
->rect
.right
= pt
.x
+ 3;
4573 pti
->rect
.bottom
= pt
.y
+ 3;
4575 SendMessage(beval
->balloon
, TTM_ADDTOOL
, 0, (LPARAM
)pti
);
4576 /* Make tooltip appear sooner */
4577 SendMessage(beval
->balloon
, TTM_SETDELAYTIME
, TTDT_INITIAL
, 10);
4578 /* I've performed some tests and it seems the longest possible life time
4579 * of tooltip is 30 seconds */
4580 SendMessage(beval
->balloon
, TTM_SETDELAYTIME
, TTDT_AUTOPOP
, 30000);
4582 * HACK: force tooltip to appear, because it'll not appear until
4583 * first mouse move. D*mn M$
4584 * Amazingly moving (2, 2) and then (-1, -1) the mouse doesn't move.
4586 mouse_event(MOUSEEVENTF_MOVE
, 2, 2, 0, 0);
4587 mouse_event(MOUSEEVENTF_MOVE
, (DWORD
)-1, (DWORD
)-1, 0, 0);
4592 delete_tooltip(beval
)
4595 DestroyWindow(beval
->balloon
);
4599 static VOID CALLBACK
4600 BevalTimerProc(hwnd
, uMsg
, idEvent
, dwTime
)
4609 if (cur_beval
== NULL
|| cur_beval
->showState
== ShS_SHOWING
|| !p_beval
)
4613 if (WindowFromPoint(pt
) != s_textArea
)
4616 ScreenToClient(s_textArea
, &pt
);
4617 GetClientRect(s_textArea
, &rect
);
4618 if (!PtInRect(&rect
, pt
))
4621 if (LastActivity
> 0
4622 && (dwTime
- LastActivity
) >= (DWORD
)p_bdlay
4623 && (cur_beval
->showState
!= ShS_PENDING
4624 || abs(cur_beval
->x
- pt
.x
) > 3
4625 || abs(cur_beval
->y
- pt
.y
) > 3))
4627 /* Pointer resting in one place long enough, it's time to show
4629 cur_beval
->showState
= ShS_PENDING
;
4630 cur_beval
->x
= pt
.x
;
4631 cur_beval
->y
= pt
.y
;
4633 // TRACE0("BevalTimerProc: sending request");
4635 if (cur_beval
->msgCB
!= NULL
)
4636 (*cur_beval
->msgCB
)(cur_beval
, 0);
4642 gui_mch_disable_beval_area(beval
)
4645 // TRACE0("gui_mch_disable_beval_area {{{");
4646 KillTimer(s_textArea
, BevalTimerId
);
4647 // TRACE0("gui_mch_disable_beval_area }}}");
4652 gui_mch_enable_beval_area(beval
)
4655 // TRACE0("gui_mch_enable_beval_area |||");
4658 // TRACE0("gui_mch_enable_beval_area {{{");
4659 BevalTimerId
= SetTimer(s_textArea
, 0, p_bdlay
/ 2, BevalTimerProc
);
4660 // TRACE0("gui_mch_enable_beval_area }}}");
4664 gui_mch_post_balloon(beval
, mesg
)
4669 // TRACE0("gui_mch_post_balloon {{{");
4670 if (beval
->showState
== ShS_SHOWING
)
4673 ScreenToClient(s_textArea
, &pt
);
4675 if (abs(beval
->x
- pt
.x
) < 3 && abs(beval
->y
- pt
.y
) < 3)
4676 /* cursor is still here */
4678 gui_mch_disable_beval_area(cur_beval
);
4679 beval
->showState
= ShS_SHOWING
;
4680 make_tooltip(beval
, mesg
, pt
);
4682 // TRACE0("gui_mch_post_balloon }}}");
4687 gui_mch_create_beval_area(target
, mesg
, mesgCB
, clientData
)
4688 void *target
; /* ignored, always use s_textArea */
4690 void (*mesgCB
)__ARGS((BalloonEval
*, int));
4693 /* partially stolen from gui_beval.c */
4696 if (mesg
!= NULL
&& mesgCB
!= NULL
)
4698 EMSG(_("E232: Cannot create BalloonEval with both message and callback"));
4702 beval
= (BalloonEval
*)alloc(sizeof(BalloonEval
));
4705 beval
->target
= s_textArea
;
4706 beval
->balloon
= NULL
;
4708 beval
->showState
= ShS_NEUTRAL
;
4712 beval
->msgCB
= mesgCB
;
4713 beval
->clientData
= clientData
;
4715 InitCommonControls();
4719 gui_mch_enable_beval_area(beval
);
4727 Handle_WM_Notify(hwnd
, pnmh
)
4731 if (pnmh
->idFrom
!= ID_BEVAL_TOOLTIP
) /* it is not our tooltip */
4734 if (cur_beval
!= NULL
)
4739 // TRACE0("TTN_SHOW {{{");
4740 // TRACE0("TTN_SHOW }}}");
4742 case TTN_POP
: /* Before tooltip disappear */
4743 // TRACE0("TTN_POP {{{");
4744 delete_tooltip(cur_beval
);
4745 gui_mch_enable_beval_area(cur_beval
);
4746 // TRACE0("TTN_POP }}}");
4748 cur_beval
->showState
= ShS_NEUTRAL
;
4750 case TTN_GETDISPINFO
:
4752 /* if you get there then we have new common controls */
4753 NMTTDISPINFO_NEW
*info
= (NMTTDISPINFO_NEW
*)pnmh
;
4754 info
->lpszText
= (LPSTR
)info
->lParam
;
4755 info
->uFlags
|= TTF_DI_SETITEM
;
4763 TrackUserActivity(UINT uMsg
)
4765 if ((uMsg
>= WM_MOUSEFIRST
&& uMsg
<= WM_MOUSELAST
)
4766 || (uMsg
>= WM_KEYFIRST
&& uMsg
<= WM_KEYLAST
))
4767 LastActivity
= GetTickCount();
4771 gui_mch_destroy_beval_area(beval
)
4776 #endif /* FEAT_BEVAL */
4778 #if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
4780 * We have multiple signs to draw at the same location. Draw the
4781 * multi-sign indicator (down-arrow) instead. This is the Win32 version.
4784 netbeans_draw_multisign_indicator(int row
)
4793 for (i
= 0; i
< gui
.char_height
- 3; i
++)
4794 SetPixel(s_hdc
, x
+2, y
++, gui
.currFgColor
);
4796 SetPixel(s_hdc
, x
+0, y
, gui
.currFgColor
);
4797 SetPixel(s_hdc
, x
+2, y
, gui
.currFgColor
);
4798 SetPixel(s_hdc
, x
+4, y
++, gui
.currFgColor
);
4799 SetPixel(s_hdc
, x
+1, y
, gui
.currFgColor
);
4800 SetPixel(s_hdc
, x
+2, y
, gui
.currFgColor
);
4801 SetPixel(s_hdc
, x
+3, y
++, gui
.currFgColor
);
4802 SetPixel(s_hdc
, x
+2, y
, gui
.currFgColor
);