blob: c49d82b3e760a34b3e91f45122115cd884afe82e [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * GUI support by Robert Webb
5 *
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 * See README.txt for an overview of the Vim source code.
9 */
10/*
11 * Windows GUI.
12 *
13 * GUI support for Microsoft Windows. Win32 initially; maybe Win16 later
14 *
15 * George V. Reilly <george@reilly.org> wrote the original Win32 GUI.
16 * Robert Webb reworked it to use the existing GUI stuff and added menu,
17 * scrollbars, etc.
18 *
19 * Note: Clipboard stuff, for cutting and pasting text to other windows, is in
20 * os_win32.c. (It can also be done from the terminal version).
21 *
22 * TODO: Some of the function signatures ought to be updated for Win64;
23 * e.g., replace LONG with LONG_PTR, etc.
24 */
25
26/*
27 * These are new in Windows ME/XP, only defined in recent compilers.
28 */
29#ifndef HANDLE_WM_XBUTTONUP
30# define HANDLE_WM_XBUTTONUP(hwnd, wParam, lParam, fn) \
31 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
32#endif
33#ifndef HANDLE_WM_XBUTTONDOWN
34# define HANDLE_WM_XBUTTONDOWN(hwnd, wParam, lParam, fn) \
35 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
36#endif
37#ifndef HANDLE_WM_XBUTTONDBLCLK
38# define HANDLE_WM_XBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
39 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
40#endif
41
42/*
43 * Include the common stuff for MS-Windows GUI.
44 */
45#include "gui_w48.c"
46
47#ifdef FEAT_XPM_W32
48# include "xpm_w32.h"
49#endif
50
51#ifdef PROTO
52# define WINAPI
53#endif
54
55#ifdef __MINGW32__
56/*
57 * Add a lot of missing defines.
58 * They are not always missing, we need the #ifndef's.
59 */
60# ifndef _cdecl
61# define _cdecl
62# endif
63# ifndef IsMinimized
64# define IsMinimized(hwnd) IsIconic(hwnd)
65# endif
66# ifndef IsMaximized
67# define IsMaximized(hwnd) IsZoomed(hwnd)
68# endif
69# ifndef SelectFont
70# define SelectFont(hdc, hfont) ((HFONT)SelectObject((hdc), (HGDIOBJ)(HFONT)(hfont)))
71# endif
72# ifndef GetStockBrush
73# define GetStockBrush(i) ((HBRUSH)GetStockObject(i))
74# endif
75# ifndef DeleteBrush
76# define DeleteBrush(hbr) DeleteObject((HGDIOBJ)(HBRUSH)(hbr))
77# endif
78
79# ifndef HANDLE_WM_RBUTTONDBLCLK
80# define HANDLE_WM_RBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
81 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
82# endif
83# ifndef HANDLE_WM_MBUTTONUP
84# define HANDLE_WM_MBUTTONUP(hwnd, wParam, lParam, fn) \
85 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
86# endif
87# ifndef HANDLE_WM_MBUTTONDBLCLK
88# define HANDLE_WM_MBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
89 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
90# endif
91# ifndef HANDLE_WM_LBUTTONDBLCLK
92# define HANDLE_WM_LBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
93 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
94# endif
95# ifndef HANDLE_WM_RBUTTONDOWN
96# define HANDLE_WM_RBUTTONDOWN(hwnd, wParam, lParam, fn) \
97 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
98# endif
99# ifndef HANDLE_WM_MOUSEMOVE
100# define HANDLE_WM_MOUSEMOVE(hwnd, wParam, lParam, fn) \
101 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
102# endif
103# ifndef HANDLE_WM_RBUTTONUP
104# define HANDLE_WM_RBUTTONUP(hwnd, wParam, lParam, fn) \
105 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
106# endif
107# ifndef HANDLE_WM_MBUTTONDOWN
108# define HANDLE_WM_MBUTTONDOWN(hwnd, wParam, lParam, fn) \
109 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
110# endif
111# ifndef HANDLE_WM_LBUTTONUP
112# define HANDLE_WM_LBUTTONUP(hwnd, wParam, lParam, fn) \
113 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
114# endif
115# ifndef HANDLE_WM_LBUTTONDOWN
116# define HANDLE_WM_LBUTTONDOWN(hwnd, wParam, lParam, fn) \
117 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
118# endif
119# ifndef HANDLE_WM_SYSCHAR
120# define HANDLE_WM_SYSCHAR(hwnd, wParam, lParam, fn) \
121 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
122# endif
123# ifndef HANDLE_WM_ACTIVATEAPP
124# define HANDLE_WM_ACTIVATEAPP(hwnd, wParam, lParam, fn) \
125 ((fn)((hwnd), (BOOL)(wParam), (DWORD)(lParam)), 0L)
126# endif
127# ifndef HANDLE_WM_WINDOWPOSCHANGING
128# define HANDLE_WM_WINDOWPOSCHANGING(hwnd, wParam, lParam, fn) \
129 (LRESULT)(DWORD)(BOOL)(fn)((hwnd), (LPWINDOWPOS)(lParam))
130# endif
131# ifndef HANDLE_WM_VSCROLL
132# define HANDLE_WM_VSCROLL(hwnd, wParam, lParam, fn) \
133 ((fn)((hwnd), (HWND)(lParam), (UINT)(LOWORD(wParam)), (int)(short)HIWORD(wParam)), 0L)
134# endif
135# ifndef HANDLE_WM_SETFOCUS
136# define HANDLE_WM_SETFOCUS(hwnd, wParam, lParam, fn) \
137 ((fn)((hwnd), (HWND)(wParam)), 0L)
138# endif
139# ifndef HANDLE_WM_KILLFOCUS
140# define HANDLE_WM_KILLFOCUS(hwnd, wParam, lParam, fn) \
141 ((fn)((hwnd), (HWND)(wParam)), 0L)
142# endif
143# ifndef HANDLE_WM_HSCROLL
144# define HANDLE_WM_HSCROLL(hwnd, wParam, lParam, fn) \
145 ((fn)((hwnd), (HWND)(lParam), (UINT)(LOWORD(wParam)), (int)(short)HIWORD(wParam)), 0L)
146# endif
147# ifndef HANDLE_WM_DROPFILES
148# define HANDLE_WM_DROPFILES(hwnd, wParam, lParam, fn) \
149 ((fn)((hwnd), (HDROP)(wParam)), 0L)
150# endif
151# ifndef HANDLE_WM_CHAR
152# define HANDLE_WM_CHAR(hwnd, wParam, lParam, fn) \
153 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
154# endif
155# ifndef HANDLE_WM_SYSDEADCHAR
156# define HANDLE_WM_SYSDEADCHAR(hwnd, wParam, lParam, fn) \
157 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
158# endif
159# ifndef HANDLE_WM_DEADCHAR
160# define HANDLE_WM_DEADCHAR(hwnd, wParam, lParam, fn) \
161 ((fn)((hwnd), (TCHAR)(wParam), (int)(short)LOWORD(lParam)), 0L)
162# endif
163#endif /* __MINGW32__ */
164
165
166/* Some parameters for tearoff menus. All in pixels. */
167#define TEAROFF_PADDING_X 2
168#define TEAROFF_BUTTON_PAD_X 8
169#define TEAROFF_MIN_WIDTH 200
170#define TEAROFF_SUBMENU_LABEL ">>"
171#define TEAROFF_COLUMN_PADDING 3 // # spaces to pad column with.
172
173
174/* For the Intellimouse: */
175#ifndef WM_MOUSEWHEEL
176#define WM_MOUSEWHEEL 0x20a
177#endif
178
179
180#ifdef FEAT_BEVAL
181# define ID_BEVAL_TOOLTIP 200
182# define BEVAL_TEXT_LEN MAXPATHL
183
184static void make_tooltip __ARGS((BalloonEval *beval, char *text, POINT pt));
185static void delete_tooltip __ARGS((BalloonEval *beval));
186static VOID CALLBACK BevalTimerProc __ARGS((HWND hwnd, UINT uMsg, UINT idEvent, DWORD dwTime));
187
188static BalloonEval *cur_beval = NULL;
189static UINT BevalTimerId = 0;
190static DWORD LastActivity = 0;
Bram Moolenaar45360022005-07-21 21:08:21 +0000191
192/*
193 * excerpts from headers since this may not be presented
194 * in the extremelly old compilers
195 */
196#include <pshpack1.h>
197
198typedef struct _DllVersionInfo
199{
200 DWORD cbSize;
201 DWORD dwMajorVersion;
202 DWORD dwMinorVersion;
203 DWORD dwBuildNumber;
204 DWORD dwPlatformID;
205} DLLVERSIONINFO;
206
207typedef struct tagTOOLINFOA_NEW
208{
209 UINT cbSize;
210 UINT uFlags;
211 HWND hwnd;
212 UINT uId;
213 RECT rect;
214 HINSTANCE hinst;
215 LPSTR lpszText;
216 LPARAM lParam;
217} TOOLINFO_NEW;
218
219typedef struct tagNMTTDISPINFO_NEW
220{
221 NMHDR hdr;
222 LPTSTR lpszText;
223 char szText[80];
224 HINSTANCE hinst;
225 UINT uFlags;
226 LPARAM lParam;
227} NMTTDISPINFO_NEW;
228
229#include <poppack.h>
230
231typedef HRESULT (WINAPI* DLLGETVERSIONPROC)(DLLVERSIONINFO *);
232#ifndef TTM_SETMAXTIPWIDTH
233# define TTM_SETMAXTIPWIDTH (WM_USER+24)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234#endif
235
Bram Moolenaar45360022005-07-21 21:08:21 +0000236#ifndef TTF_DI_SETITEM
237# define TTF_DI_SETITEM 0x8000
238#endif
239
240#ifndef TTN_GETDISPINFO
241# define TTN_GETDISPINFO (TTN_FIRST - 0)
242#endif
243
244#endif /* defined(FEAT_BEVAL) */
245
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246/* Local variables: */
247
248#ifdef FEAT_MENU
249static UINT s_menu_id = 100;
250
251/*
252 * Use the system font for dialogs and tear-off menus. Remove this line to
253 * use DLG_FONT_NAME.
254 */
255# define USE_SYSMENU_FONT
256#endif
257
258#define VIM_NAME "vim"
259#define VIM_CLASS "Vim"
260#define VIM_CLASSW L"Vim"
261
262/* Initial size for the dialog template. For gui_mch_dialog() it's fixed,
263 * thus there should be room for every dialog. For tearoffs it's made bigger
264 * when needed. */
265#define DLG_ALLOC_SIZE 16 * 1024
266
267/*
268 * stuff for dialogs, menus, tearoffs etc.
269 */
270static LRESULT APIENTRY dialog_callback(HWND, UINT, WPARAM, LPARAM);
271static LRESULT APIENTRY tearoff_callback(HWND, UINT, WPARAM, LPARAM);
272static PWORD
273add_dialog_element(
274 PWORD p,
275 DWORD lStyle,
276 WORD x,
277 WORD y,
278 WORD w,
279 WORD h,
280 WORD Id,
281 WORD clss,
282 const char *caption);
283static LPWORD lpwAlign(LPWORD);
284static int nCopyAnsiToWideChar(LPWORD, LPSTR);
285static void gui_mch_tearoff(char_u *title, vimmenu_T *menu, int initX, int initY);
286static void get_dialog_font_metrics(void);
287
288static int dialog_default_button = -1;
289
290/* Intellimouse support */
291static int mouse_scroll_lines = 0;
292static UINT msh_msgmousewheel = 0;
293
294static int s_usenewlook; /* emulate W95/NT4 non-bold dialogs */
295#ifdef FEAT_TOOLBAR
296static void initialise_toolbar(void);
297static int get_toolbar_bitmap(vimmenu_T *menu);
298#endif
299
300#ifdef FEAT_MBYTE_IME
301static LRESULT _OnImeComposition(HWND hwnd, WPARAM dbcs, LPARAM param);
302static char_u *GetResultStr(HWND hwnd, int GCS, int *lenp);
303#endif
304#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
305# ifdef NOIME
306typedef struct tagCOMPOSITIONFORM {
307 DWORD dwStyle;
308 POINT ptCurrentPos;
309 RECT rcArea;
310} COMPOSITIONFORM, *PCOMPOSITIONFORM, NEAR *NPCOMPOSITIONFORM, FAR *LPCOMPOSITIONFORM;
311typedef HANDLE HIMC;
312# endif
313
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000314static HINSTANCE hLibImm = NULL;
315static LONG (WINAPI *pImmGetCompositionStringA)(HIMC, DWORD, LPVOID, DWORD);
316static LONG (WINAPI *pImmGetCompositionStringW)(HIMC, DWORD, LPVOID, DWORD);
317static HIMC (WINAPI *pImmGetContext)(HWND);
318static HIMC (WINAPI *pImmAssociateContext)(HWND, HIMC);
319static BOOL (WINAPI *pImmReleaseContext)(HWND, HIMC);
320static BOOL (WINAPI *pImmGetOpenStatus)(HIMC);
321static BOOL (WINAPI *pImmSetOpenStatus)(HIMC, BOOL);
322static BOOL (WINAPI *pImmGetCompositionFont)(HIMC, LPLOGFONTA);
323static BOOL (WINAPI *pImmSetCompositionFont)(HIMC, LPLOGFONTA);
324static BOOL (WINAPI *pImmSetCompositionWindow)(HIMC, LPCOMPOSITIONFORM);
325static BOOL (WINAPI *pImmGetConversionStatus)(HIMC, LPDWORD, LPDWORD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326static void dyn_imm_load(void);
327#else
328# define pImmGetCompositionStringA ImmGetCompositionStringA
329# define pImmGetCompositionStringW ImmGetCompositionStringW
330# define pImmGetContext ImmGetContext
331# define pImmAssociateContext ImmAssociateContext
332# define pImmReleaseContext ImmReleaseContext
333# define pImmGetOpenStatus ImmGetOpenStatus
334# define pImmSetOpenStatus ImmSetOpenStatus
335# define pImmGetCompositionFont ImmGetCompositionFontA
336# define pImmSetCompositionFont ImmSetCompositionFontA
337# define pImmSetCompositionWindow ImmSetCompositionWindow
338# define pImmGetConversionStatus ImmGetConversionStatus
339#endif
340
341#ifndef ETO_IGNORELANGUAGE
342# define ETO_IGNORELANGUAGE 0x1000
343#endif
344
345/* multi monitor support */
346typedef struct _MONITORINFOstruct
347{
348 DWORD cbSize;
349 RECT rcMonitor;
350 RECT rcWork;
351 DWORD dwFlags;
352} _MONITORINFO;
353
354typedef HANDLE _HMONITOR;
355typedef _HMONITOR (WINAPI *TMonitorFromWindow)(HWND, DWORD);
356typedef BOOL (WINAPI *TGetMonitorInfo)(_HMONITOR, _MONITORINFO *);
357
358static TMonitorFromWindow pMonitorFromWindow = NULL;
359static TGetMonitorInfo pGetMonitorInfo = NULL;
360static HANDLE user32_lib = NULL;
361#ifdef FEAT_NETBEANS_INTG
362int WSInitialized = FALSE; /* WinSock is initialized */
363#endif
364/*
365 * Return TRUE when running under Windows NT 3.x or Win32s, both of which have
366 * less fancy GUI APIs.
367 */
368 static int
369is_winnt_3(void)
370{
371 return ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
372 && os_version.dwMajorVersion == 3)
373 || (os_version.dwPlatformId == VER_PLATFORM_WIN32s));
374}
375
376/*
377 * Return TRUE when running under Win32s.
378 */
379 int
380gui_is_win32s(void)
381{
382 return (os_version.dwPlatformId == VER_PLATFORM_WIN32s);
383}
384
385#ifdef FEAT_MENU
386/*
387 * Figure out how high the menu bar is at the moment.
388 */
389 static int
390gui_mswin_get_menu_height(
391 int fix_window) /* If TRUE, resize window if menu height changed */
392{
393 static int old_menu_height = -1;
394
395 RECT rc1, rc2;
396 int num;
397 int menu_height;
398
399 if (gui.menu_is_active)
400 num = GetMenuItemCount(s_menuBar);
401 else
402 num = 0;
403
404 if (num == 0)
405 menu_height = 0;
406 else
407 {
408 if (is_winnt_3()) /* for NT 3.xx */
409 {
410 if (gui.starting)
411 menu_height = GetSystemMetrics(SM_CYMENU);
412 else
413 {
414 RECT r1, r2;
415 int frameht = GetSystemMetrics(SM_CYFRAME);
416 int capht = GetSystemMetrics(SM_CYCAPTION);
417
418 /* get window rect of s_hwnd
419 * get client rect of s_hwnd
420 * get cap height
421 * subtract from window rect, the sum of client height,
422 * (if not maximized)frame thickness, and caption height.
423 */
424 GetWindowRect(s_hwnd, &r1);
425 GetClientRect(s_hwnd, &r2);
426 menu_height = r1.bottom - r1.top - (r2.bottom - r2.top
427 + 2 * frameht * (!IsZoomed(s_hwnd)) + capht);
428 }
429 }
430 else /* win95 and variants (NT 4.0, I guess) */
431 {
432 /*
433 * In case 'lines' is set in _vimrc/_gvimrc window width doesn't
434 * seem to have been set yet, so menu wraps in default window
435 * width which is very narrow. Instead just return height of a
436 * single menu item. Will still be wrong when the menu really
437 * should wrap over more than one line.
438 */
439 GetMenuItemRect(s_hwnd, s_menuBar, 0, &rc1);
440 if (gui.starting)
441 menu_height = rc1.bottom - rc1.top + 1;
442 else
443 {
444 GetMenuItemRect(s_hwnd, s_menuBar, num - 1, &rc2);
445 menu_height = rc2.bottom - rc1.top + 1;
446 }
447 }
448 }
449
450 if (fix_window && menu_height != old_menu_height)
451 {
452 old_menu_height = menu_height;
453 gui_set_shellsize(FALSE, FALSE);
454 }
455
456 return menu_height;
457}
458#endif /*FEAT_MENU*/
459
460
461/*
462 * Setup for the Intellimouse
463 */
464 static void
465init_mouse_wheel(void)
466{
467
468#ifndef SPI_GETWHEELSCROLLLINES
469# define SPI_GETWHEELSCROLLLINES 104
470#endif
Bram Moolenaare7566042005-06-17 22:00:15 +0000471#ifndef SPI_SETWHEELSCROLLLINES
472# define SPI_SETWHEELSCROLLLINES 105
473#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474
475#define VMOUSEZ_CLASSNAME "MouseZ" /* hidden wheel window class */
476#define VMOUSEZ_TITLE "Magellan MSWHEEL" /* hidden wheel window title */
477#define VMSH_MOUSEWHEEL "MSWHEEL_ROLLMSG"
478#define VMSH_SCROLL_LINES "MSH_SCROLL_LINES_MSG"
479
480 HWND hdl_mswheel;
481 UINT msh_msgscrolllines;
482
483 msh_msgmousewheel = 0;
484 mouse_scroll_lines = 3; /* reasonable default */
485
486 if ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
487 && os_version.dwMajorVersion >= 4)
488 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
489 && ((os_version.dwMajorVersion == 4
490 && os_version.dwMinorVersion >= 10)
491 || os_version.dwMajorVersion >= 5)))
492 {
493 /* if NT 4.0+ (or Win98) get scroll lines directly from system */
494 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
495 &mouse_scroll_lines, 0);
496 }
497 else if (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
498 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
499 && os_version.dwMajorVersion < 4))
500 { /*
501 * If Win95 or NT 3.51,
502 * try to find the hidden point32 window.
503 */
504 hdl_mswheel = FindWindow(VMOUSEZ_CLASSNAME, VMOUSEZ_TITLE);
505 if (hdl_mswheel)
506 {
507 msh_msgscrolllines = RegisterWindowMessage(VMSH_SCROLL_LINES);
508 if (msh_msgscrolllines)
509 {
510 mouse_scroll_lines = (int)SendMessage(hdl_mswheel,
511 msh_msgscrolllines, 0, 0);
512 msh_msgmousewheel = RegisterWindowMessage(VMSH_MOUSEWHEEL);
513 }
514 }
515 }
516}
517
518
519/* Intellimouse wheel handler */
520 static void
521_OnMouseWheel(
522 HWND hwnd,
523 short zDelta)
524{
525/* Treat a mouse wheel event as if it were a scroll request */
526 int i;
527 int size;
528 HWND hwndCtl;
529
530 if (curwin->w_scrollbars[SBAR_RIGHT].id != 0)
531 {
532 hwndCtl = curwin->w_scrollbars[SBAR_RIGHT].id;
533 size = curwin->w_scrollbars[SBAR_RIGHT].size;
534 }
535 else if (curwin->w_scrollbars[SBAR_LEFT].id != 0)
536 {
537 hwndCtl = curwin->w_scrollbars[SBAR_LEFT].id;
538 size = curwin->w_scrollbars[SBAR_LEFT].size;
539 }
540 else
541 return;
542
543 size = curwin->w_height;
544 if (mouse_scroll_lines == 0)
545 init_mouse_wheel();
546
547 if (mouse_scroll_lines > 0
548 && mouse_scroll_lines < (size > 2 ? size - 2 : 1))
549 {
550 for (i = mouse_scroll_lines; i > 0; --i)
551 _OnScroll(hwnd, hwndCtl, zDelta >= 0 ? SB_LINEUP : SB_LINEDOWN, 0);
552 }
553 else
554 _OnScroll(hwnd, hwndCtl, zDelta >= 0 ? SB_PAGEUP : SB_PAGEDOWN, 0);
555}
556
Bram Moolenaar520470a2005-06-16 21:59:56 +0000557/*
558 * Invoked when a setting was changed.
559 */
560 static LRESULT CALLBACK
561_OnSettingChange(UINT n)
562{
563 if (n == SPI_SETWHEELSCROLLLINES)
564 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
565 &mouse_scroll_lines, 0);
566 return 0;
567}
568
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569#if 0 /* disabled, a gap appears below and beside the window, and the window
570 can be moved (in a strange way) */
571/*
572 * Even though we have _DuringSizing() which makes the rubber band a valid
573 * size, we need this for when the user maximises the window.
574 * TODO: Doesn't seem to adjust the width though for some reason.
575 */
576 static BOOL
577_OnWindowPosChanging(
578 HWND hwnd,
579 LPWINDOWPOS lpwpos)
580{
581 RECT workarea_rect;
582
583 if (!(lpwpos->flags & SWP_NOSIZE))
584 {
585 if (IsMaximized(hwnd)
586 && (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
587 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
588 && os_version.dwMajorVersion >= 4)))
589 {
590 SystemParametersInfo(SPI_GETWORKAREA, 0, &workarea_rect, 0);
591 lpwpos->x = workarea_rect.left;
592 lpwpos->y = workarea_rect.top;
593 lpwpos->cx = workarea_rect.right - workarea_rect.left;
594 lpwpos->cy = workarea_rect.bottom - workarea_rect.top;
595 }
596 gui_mswin_get_valid_dimensions(lpwpos->cx, lpwpos->cy,
597 &lpwpos->cx, &lpwpos->cy);
598 }
599 return 0;
600}
601#endif
602
603#ifdef FEAT_NETBEANS_INTG
604 static void
605_OnWindowPosChanged(
606 HWND hwnd,
607 const LPWINDOWPOS lpwpos)
608{
609 static int x = 0, y = 0, cx = 0, cy = 0;
610
611 if (WSInitialized && (lpwpos->x != x || lpwpos->y != y
612 || lpwpos->cx != cx || lpwpos->cy != cy))
613 {
614 x = lpwpos->x;
615 y = lpwpos->y;
616 cx = lpwpos->cx;
617 cy = lpwpos->cy;
618 netbeans_frame_moved(x, y);
619 }
620 /* Allow to send WM_SIZE and WM_MOVE */
621 FORWARD_WM_WINDOWPOSCHANGED(hwnd, lpwpos, MyWindowProc);
622}
623#endif
624
625 static int
626_DuringSizing(
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627 UINT fwSide,
628 LPRECT lprc)
629{
630 int w, h;
631 int valid_w, valid_h;
632 int w_offset, h_offset;
633
634 w = lprc->right - lprc->left;
635 h = lprc->bottom - lprc->top;
636 gui_mswin_get_valid_dimensions(w, h, &valid_w, &valid_h);
637 w_offset = w - valid_w;
638 h_offset = h - valid_h;
639
640 if (fwSide == WMSZ_LEFT || fwSide == WMSZ_TOPLEFT
641 || fwSide == WMSZ_BOTTOMLEFT)
642 lprc->left += w_offset;
643 else if (fwSide == WMSZ_RIGHT || fwSide == WMSZ_TOPRIGHT
644 || fwSide == WMSZ_BOTTOMRIGHT)
645 lprc->right -= w_offset;
646
647 if (fwSide == WMSZ_TOP || fwSide == WMSZ_TOPLEFT
648 || fwSide == WMSZ_TOPRIGHT)
649 lprc->top += h_offset;
650 else if (fwSide == WMSZ_BOTTOM || fwSide == WMSZ_BOTTOMLEFT
651 || fwSide == WMSZ_BOTTOMRIGHT)
652 lprc->bottom -= h_offset;
653 return TRUE;
654}
655
656
657
658 static LRESULT CALLBACK
659_WndProc(
660 HWND hwnd,
661 UINT uMsg,
662 WPARAM wParam,
663 LPARAM lParam)
664{
665 /*
666 TRACE("WndProc: hwnd = %08x, msg = %x, wParam = %x, lParam = %x\n",
667 hwnd, uMsg, wParam, lParam);
668 */
669
670 HandleMouseHide(uMsg, lParam);
671
672 s_uMsg = uMsg;
673 s_wParam = wParam;
674 s_lParam = lParam;
675
676 switch (uMsg)
677 {
678 HANDLE_MSG(hwnd, WM_DEADCHAR, _OnDeadChar);
679 HANDLE_MSG(hwnd, WM_SYSDEADCHAR, _OnDeadChar);
680 /* HANDLE_MSG(hwnd, WM_ACTIVATE, _OnActivate); */
681 HANDLE_MSG(hwnd, WM_CLOSE, _OnClose);
682 /* HANDLE_MSG(hwnd, WM_COMMAND, _OnCommand); */
683 HANDLE_MSG(hwnd, WM_DESTROY, _OnDestroy);
684 HANDLE_MSG(hwnd, WM_DROPFILES, _OnDropFiles);
685 HANDLE_MSG(hwnd, WM_HSCROLL, _OnScroll);
686 HANDLE_MSG(hwnd, WM_KILLFOCUS, _OnKillFocus);
687#ifdef FEAT_MENU
688 HANDLE_MSG(hwnd, WM_COMMAND, _OnMenu);
689#endif
690 /* HANDLE_MSG(hwnd, WM_MOVE, _OnMove); */
691 /* HANDLE_MSG(hwnd, WM_NCACTIVATE, _OnNCActivate); */
692 HANDLE_MSG(hwnd, WM_SETFOCUS, _OnSetFocus);
693 HANDLE_MSG(hwnd, WM_SIZE, _OnSize);
694 /* HANDLE_MSG(hwnd, WM_SYSCOMMAND, _OnSysCommand); */
695 /* HANDLE_MSG(hwnd, WM_SYSKEYDOWN, _OnAltKey); */
696 HANDLE_MSG(hwnd, WM_VSCROLL, _OnScroll);
697 // HANDLE_MSG(hwnd, WM_WINDOWPOSCHANGING, _OnWindowPosChanging);
698 HANDLE_MSG(hwnd, WM_ACTIVATEAPP, _OnActivateApp);
699#ifdef FEAT_NETBEANS_INTG
700 HANDLE_MSG(hwnd, WM_WINDOWPOSCHANGED, _OnWindowPosChanged);
701#endif
702
703 case WM_QUERYENDSESSION: /* System wants to go down. */
704 gui_shell_closed(); /* Will exit when no changed buffers. */
705 return FALSE; /* Do NOT allow system to go down. */
706
707 case WM_ENDSESSION:
708 if (wParam) /* system only really goes down when wParam is TRUE */
709 _OnEndSession();
710 break;
711
712 case WM_CHAR:
713 /* Don't use HANDLE_MSG() for WM_CHAR, it truncates wParam to a single
714 * byte while we want the UTF-16 character value. */
715 _OnChar(hwnd, wParam, (int)(short)LOWORD(lParam));
716 return 0L;
717
718 case WM_SYSCHAR:
719 /*
720 * if 'winaltkeys' is "no", or it's "menu" and it's not a menu
721 * shortcut key, handle like a typed ALT key, otherwise call Windows
722 * ALT key handling.
723 */
724#ifdef FEAT_MENU
725 if ( !gui.menu_is_active
726 || p_wak[0] == 'n'
727 || (p_wak[0] == 'm' && !gui_is_menu_shortcut((int)wParam))
728 )
729#endif
730 {
731 _OnSysChar(hwnd, wParam, (int)(short)LOWORD(lParam));
732 return 0L;
733 }
734#ifdef FEAT_MENU
735 else
736 return MyWindowProc(hwnd, uMsg, wParam, lParam);
737#endif
738
739 case WM_SYSKEYUP:
740#ifdef FEAT_MENU
741 /* This used to be done only when menu is active: ALT key is used for
742 * that. But that caused problems when menu is disabled and using
743 * Alt-Tab-Esc: get into a strange state where no mouse-moved events
744 * are received, mouse pointer remains hidden. */
745 return MyWindowProc(hwnd, uMsg, wParam, lParam);
746#else
747 return 0;
748#endif
749
750 case WM_SIZING: /* HANDLE_MSG doesn't seem to handle this one */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000751 return _DuringSizing((UINT)wParam, (LPRECT)lParam);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752
753 case WM_MOUSEWHEEL:
754 _OnMouseWheel(hwnd, HIWORD(wParam));
755 break;
756
Bram Moolenaar520470a2005-06-16 21:59:56 +0000757 /* Notification for change in SystemParametersInfo() */
758 case WM_SETTINGCHANGE:
759 return _OnSettingChange((UINT)wParam);
760
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761#ifdef FEAT_TOOLBAR
762 case WM_NOTIFY:
763 switch (((LPNMHDR) lParam)->code)
764 {
765 case TTN_NEEDTEXT:
766 {
767 LPTOOLTIPTEXT lpttt;
768 UINT idButton;
769 int idx;
770 vimmenu_T *pMenu;
771
772 lpttt = (LPTOOLTIPTEXT)lParam;
773 idButton = (UINT) lpttt->hdr.idFrom;
774 pMenu = gui_mswin_find_menu(root_menu, idButton);
775 if (pMenu)
776 {
777 idx = MENU_INDEX_TIP;
778 if (pMenu->strings[idx])
779 {
780 lpttt->hinst = NULL; /* string, not resource */
781 lpttt->lpszText = pMenu->strings[idx];
782 }
783 }
784 }
785 break;
786 default:
787 break;
788 }
789 break;
790#endif
791#if defined(MENUHINTS) && defined(FEAT_MENU)
792 case WM_MENUSELECT:
793 if (((UINT) HIWORD(wParam)
794 & (0xffff ^ (MF_MOUSESELECT + MF_BITMAP + MF_POPUP)))
795 == MF_HILITE
796 && (State & CMDLINE) == 0)
797 {
798 UINT idButton;
799 vimmenu_T *pMenu;
800 static int did_menu_tip = FALSE;
801
802 if (did_menu_tip)
803 {
804 msg_clr_cmdline();
805 setcursor();
806 out_flush();
807 did_menu_tip = FALSE;
808 }
809
810 idButton = (UINT)LOWORD(wParam);
811 pMenu = gui_mswin_find_menu(root_menu, idButton);
812 if (pMenu != NULL && pMenu->strings[MENU_INDEX_TIP] != 0
813 && GetMenuState(s_menuBar, pMenu->id, MF_BYCOMMAND) != -1)
814 {
815 msg(pMenu->strings[MENU_INDEX_TIP]);
816 setcursor();
817 out_flush();
818 did_menu_tip = TRUE;
819 }
820 }
821 break;
822#endif
823 case WM_NCHITTEST:
824 {
825 LRESULT result;
826 int x, y;
827 int xPos = GET_X_LPARAM(lParam);
828
829 result = MyWindowProc(hwnd, uMsg, wParam, lParam);
830 if (result == HTCLIENT)
831 {
832 gui_mch_get_winpos(&x, &y);
833 xPos -= x;
834
835 if (xPos < 48) /* <VN> TODO should use system metric? */
836 return HTBOTTOMLEFT;
837 else
838 return HTBOTTOMRIGHT;
839 }
840 else
841 return result;
842 }
843 /* break; notreached */
844
845#ifdef FEAT_MBYTE_IME
846 case WM_IME_NOTIFY:
847 if (!_OnImeNotify(hwnd, (DWORD)wParam, (DWORD)lParam))
848 return MyWindowProc(hwnd, uMsg, wParam, lParam);
849 break;
850 case WM_IME_COMPOSITION:
851 if (!_OnImeComposition(hwnd, wParam, lParam))
852 return MyWindowProc(hwnd, uMsg, wParam, lParam);
853 break;
854#endif
855
856 default:
857 if (uMsg == msh_msgmousewheel && msh_msgmousewheel != 0)
858 { /* handle MSH_MOUSEWHEEL messages for Intellimouse */
859 _OnMouseWheel(hwnd, HIWORD(wParam));
860 break;
861 }
862#ifdef MSWIN_FIND_REPLACE
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000863 else if (uMsg == s_findrep_msg && s_findrep_msg != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 {
865 _OnFindRepl();
866 }
867#endif
868 return MyWindowProc(hwnd, uMsg, wParam, lParam);
869 }
870
871 return 1;
872}
873
874/*
875 * End of call-back routines
876 */
877
878/* parent window, if specified with -P */
879HWND vim_parent_hwnd = NULL;
880
881 static BOOL CALLBACK
882FindWindowTitle(HWND hwnd, LPARAM lParam)
883{
884 char buf[2048];
885 char *title = (char *)lParam;
886
887 if (GetWindowText(hwnd, buf, sizeof(buf)))
888 {
889 if (strstr(buf, title) != NULL)
890 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000891 /* Found it. Store the window ref. and quit searching if MDI
892 * works. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 vim_parent_hwnd = FindWindowEx(hwnd, NULL, "MDIClient", NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000894 if (vim_parent_hwnd != NULL)
895 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 }
897 }
898 return TRUE; /* continue searching */
899}
900
901/*
902 * Invoked for '-P "title"' argument: search for parent application to open
903 * our window in.
904 */
905 void
906gui_mch_set_parent(char *title)
907{
908 EnumWindows(FindWindowTitle, (LPARAM)title);
909 if (vim_parent_hwnd == NULL)
910 {
911 EMSG2(_("E671: Cannot find window title \"%s\""), title);
912 mch_exit(2);
913 }
914}
915
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000916#ifndef FEAT_OLE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 static void
918ole_error(char *arg)
919{
920 EMSG2(_("E243: Argument not supported: \"-%s\"; Use the OLE version."),
921 arg);
922}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000923#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924
925/*
926 * Parse the GUI related command-line arguments. Any arguments used are
927 * deleted from argv, and *argc is decremented accordingly. This is called
928 * when vim is started, whether or not the GUI has been started.
929 */
930 void
931gui_mch_prepare(int *argc, char **argv)
932{
933 int silent = FALSE;
934 int idx;
935
936 /* Check for special OLE command line parameters */
937 if ((*argc == 2 || *argc == 3) && (argv[1][0] == '-' || argv[1][0] == '/'))
938 {
939 /* Check for a "-silent" argument first. */
940 if (*argc == 3 && STRICMP(argv[1] + 1, "silent") == 0
941 && (argv[2][0] == '-' || argv[2][0] == '/'))
942 {
943 silent = TRUE;
944 idx = 2;
945 }
946 else
947 idx = 1;
948
949 /* Register Vim as an OLE Automation server */
950 if (STRICMP(argv[idx] + 1, "register") == 0)
951 {
952#ifdef FEAT_OLE
953 RegisterMe(silent);
954 mch_exit(0);
955#else
956 if (!silent)
957 ole_error("register");
958 mch_exit(2);
959#endif
960 }
961
962 /* Unregister Vim as an OLE Automation server */
963 if (STRICMP(argv[idx] + 1, "unregister") == 0)
964 {
965#ifdef FEAT_OLE
966 UnregisterMe(!silent);
967 mch_exit(0);
968#else
969 if (!silent)
970 ole_error("unregister");
971 mch_exit(2);
972#endif
973 }
974
975 /* Ignore an -embedding argument. It is only relevant if the
976 * application wants to treat the case when it is started manually
977 * differently from the case where it is started via automation (and
978 * we don't).
979 */
980 if (STRICMP(argv[idx] + 1, "embedding") == 0)
981 {
982#ifdef FEAT_OLE
983 *argc = 1;
984#else
985 ole_error("embedding");
986 mch_exit(2);
987#endif
988 }
989 }
990
991#ifdef FEAT_OLE
992 {
993 int bDoRestart = FALSE;
994
995 InitOLE(&bDoRestart);
996 /* automatically exit after registering */
997 if (bDoRestart)
998 mch_exit(0);
999 }
1000#endif
1001
1002#ifdef FEAT_NETBEANS_INTG
1003 {
1004 /* stolen from gui_x11.x */
1005 int arg;
1006
1007 for (arg = 1; arg < *argc; arg++)
1008 if (strncmp("-nb", argv[arg], 3) == 0)
1009 {
1010 usingNetbeans++;
1011 netbeansArg = argv[arg];
1012 mch_memmove(&argv[arg], &argv[arg + 1],
1013 (--*argc - arg) * sizeof(char *));
1014 argv[*argc] = NULL;
1015 break; /* enough? */
1016 }
1017
1018 if (usingNetbeans)
1019 {
1020 WSADATA wsaData;
1021 int wsaerr;
1022
1023 /* Init WinSock */
1024 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
1025 if (wsaerr == 0)
1026 WSInitialized = TRUE;
1027 }
1028 }
1029#endif
1030
1031 /* get the OS version info */
1032 os_version.dwOSVersionInfoSize = sizeof(os_version);
1033 GetVersionEx(&os_version); /* this call works on Win32s, Win95 and WinNT */
1034
1035 /* try and load the user32.dll library and get the entry points for
1036 * multi-monitor-support. */
1037 if ((user32_lib = LoadLibrary("User32.dll")) != NULL)
1038 {
1039 pMonitorFromWindow = (TMonitorFromWindow)GetProcAddress(user32_lib,
1040 "MonitorFromWindow");
1041
1042 /* there are ...A and ...W version of GetMonitorInfo - looking at
1043 * winuser.h, they have exactly the same declaration. */
1044 pGetMonitorInfo = (TGetMonitorInfo)GetProcAddress(user32_lib,
1045 "GetMonitorInfoA");
1046 }
1047}
1048
1049/*
1050 * Initialise the GUI. Create all the windows, set up all the call-backs
1051 * etc.
1052 */
1053 int
1054gui_mch_init(void)
1055{
1056 const char szVimWndClass[] = VIM_CLASS;
1057 const char szTextAreaClass[] = "VimTextArea";
1058 WNDCLASS wndclass;
1059#ifdef FEAT_MBYTE
1060 const WCHAR szVimWndClassW[] = VIM_CLASSW;
1061 WNDCLASSW wndclassw;
1062#endif
1063#ifdef GLOBAL_IME
1064 ATOM atom;
1065#endif
1066
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 /* Return here if the window was already opened (happens when
1068 * gui_mch_dialog() is called early). */
1069 if (s_hwnd != NULL)
Bram Moolenaar748bf032005-02-02 23:04:36 +00001070 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071
1072 /*
1073 * Load the tearoff bitmap
1074 */
1075#ifdef FEAT_TEAROFF
1076 s_htearbitmap = LoadBitmap(s_hinst, "IDB_TEAROFF");
1077#endif
1078
1079 gui.scrollbar_width = GetSystemMetrics(SM_CXVSCROLL);
1080 gui.scrollbar_height = GetSystemMetrics(SM_CYHSCROLL);
1081#ifdef FEAT_MENU
1082 gui.menu_height = 0; /* Windows takes care of this */
1083#endif
1084 gui.border_width = 0;
1085
1086 s_brush = CreateSolidBrush(GetSysColor(COLOR_BTNFACE));
1087
1088#ifdef FEAT_MBYTE
1089 /* First try using the wide version, so that we can use any title.
1090 * Otherwise only characters in the active codepage will work. */
1091 if (GetClassInfoW(s_hinst, szVimWndClassW, &wndclassw) == 0)
1092 {
1093 wndclassw.style = 0;
1094 wndclassw.lpfnWndProc = _WndProc;
1095 wndclassw.cbClsExtra = 0;
1096 wndclassw.cbWndExtra = 0;
1097 wndclassw.hInstance = s_hinst;
1098 wndclassw.hIcon = LoadIcon(wndclassw.hInstance, "IDR_VIM");
1099 wndclassw.hCursor = LoadCursor(NULL, IDC_ARROW);
1100 wndclassw.hbrBackground = s_brush;
1101 wndclassw.lpszMenuName = NULL;
1102 wndclassw.lpszClassName = szVimWndClassW;
1103
1104 if ((
1105#ifdef GLOBAL_IME
1106 atom =
1107#endif
1108 RegisterClassW(&wndclassw)) == 0)
1109 {
1110 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
1111 return FAIL;
1112
1113 /* Must be Windows 98, fall back to non-wide function. */
1114 }
1115 else
1116 wide_WindowProc = TRUE;
1117 }
1118
1119 if (!wide_WindowProc)
1120#endif
1121
1122 if (GetClassInfo(s_hinst, szVimWndClass, &wndclass) == 0)
1123 {
1124 wndclass.style = 0;
1125 wndclass.lpfnWndProc = _WndProc;
1126 wndclass.cbClsExtra = 0;
1127 wndclass.cbWndExtra = 0;
1128 wndclass.hInstance = s_hinst;
1129 wndclass.hIcon = LoadIcon(wndclass.hInstance, "IDR_VIM");
1130 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
1131 wndclass.hbrBackground = s_brush;
1132 wndclass.lpszMenuName = NULL;
1133 wndclass.lpszClassName = szVimWndClass;
1134
1135 if ((
1136#ifdef GLOBAL_IME
1137 atom =
1138#endif
1139 RegisterClass(&wndclass)) == 0)
1140 return FAIL;
1141 }
1142
1143 if (vim_parent_hwnd != NULL)
1144 {
1145#ifdef HAVE_TRY_EXCEPT
1146 __try
1147 {
1148#endif
1149 /* Open inside the specified parent window.
1150 * TODO: last argument should point to a CLIENTCREATESTRUCT
1151 * structure. */
1152 s_hwnd = CreateWindowEx(
1153 WS_EX_MDICHILD,
1154 szVimWndClass, "Vim MSWindows GUI",
1155 WS_OVERLAPPEDWINDOW | WS_CHILD | WS_CLIPSIBLINGS | 0xC000,
1156 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
1157 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
1158 100, /* Any value will do */
1159 100, /* Any value will do */
1160 vim_parent_hwnd, NULL,
1161 s_hinst, NULL);
1162#ifdef HAVE_TRY_EXCEPT
1163 }
1164 __except(EXCEPTION_EXECUTE_HANDLER)
1165 {
1166 /* NOP */
1167 }
1168#endif
1169 if (s_hwnd == NULL)
1170 {
1171 EMSG(_("E672: Unable to open window inside MDI application"));
1172 mch_exit(2);
1173 }
1174 }
1175 else
1176 /* Open toplevel window. */
1177 s_hwnd = CreateWindow(
1178 szVimWndClass, "Vim MSWindows GUI",
1179 WS_OVERLAPPEDWINDOW,
1180 gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x,
1181 gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y,
1182 100, /* Any value will do */
1183 100, /* Any value will do */
1184 NULL, NULL,
1185 s_hinst, NULL);
1186
1187 if (s_hwnd == NULL)
1188 return FAIL;
1189
1190#ifdef GLOBAL_IME
1191 global_ime_init(atom, s_hwnd);
1192#endif
1193#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
1194 dyn_imm_load();
1195#endif
1196
1197 /* Create the text area window */
1198 if (GetClassInfo(s_hinst, szTextAreaClass, &wndclass) == 0)
1199 {
1200 wndclass.style = CS_OWNDC;
1201 wndclass.lpfnWndProc = _TextAreaWndProc;
1202 wndclass.cbClsExtra = 0;
1203 wndclass.cbWndExtra = 0;
1204 wndclass.hInstance = s_hinst;
1205 wndclass.hIcon = NULL;
1206 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
1207 wndclass.hbrBackground = NULL;
1208 wndclass.lpszMenuName = NULL;
1209 wndclass.lpszClassName = szTextAreaClass;
1210
1211 if (RegisterClass(&wndclass) == 0)
1212 return FAIL;
1213 }
1214 s_textArea = CreateWindowEx(
1215 WS_EX_CLIENTEDGE,
1216 szTextAreaClass, "Vim text area",
1217 WS_CHILD | WS_VISIBLE, 0, 0,
1218 100, /* Any value will do for now */
1219 100, /* Any value will do for now */
1220 s_hwnd, NULL,
1221 s_hinst, NULL);
1222
1223 if (s_textArea == NULL)
1224 return FAIL;
1225
1226#ifdef FEAT_MENU
1227 s_menuBar = CreateMenu();
1228#endif
1229 s_hdc = GetDC(s_textArea);
1230
1231#ifdef MSWIN16_FASTTEXT
1232 SetBkMode(s_hdc, OPAQUE);
1233#endif
1234
1235#ifdef FEAT_WINDOWS
1236 DragAcceptFiles(s_hwnd, TRUE);
1237#endif
1238
1239 /* Do we need to bother with this? */
1240 /* m_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT); */
1241
1242 /* Get background/foreground colors from the system */
1243 gui_mch_def_colors();
1244
1245 /* Get the colors from the "Normal" group (set in syntax.c or in a vimrc
1246 * file) */
1247 set_normal_colors();
1248
1249 /*
1250 * Check that none of the colors are the same as the background color.
1251 * Then store the current values as the defaults.
1252 */
1253 gui_check_colors();
1254 gui.def_norm_pixel = gui.norm_pixel;
1255 gui.def_back_pixel = gui.back_pixel;
1256
1257 /* Get the colors for the highlight groups (gui_check_colors() might have
1258 * changed them) */
1259 highlight_gui_started();
1260
1261 /*
1262 * Start out by adding the configured border width into the border offset
1263 */
1264 gui.border_offset = gui.border_width + 2; /*CLIENT EDGE*/
1265
1266 /*
1267 * Set up for Intellimouse processing
1268 */
1269 init_mouse_wheel();
1270
1271 /*
1272 * compute a couple of metrics used for the dialogs
1273 */
1274 get_dialog_font_metrics();
1275#ifdef FEAT_TOOLBAR
1276 /*
1277 * Create the toolbar
1278 */
1279 initialise_toolbar();
1280#endif
1281#ifdef MSWIN_FIND_REPLACE
1282 /*
1283 * Initialise the dialog box stuff
1284 */
1285 s_findrep_msg = RegisterWindowMessage(FINDMSGSTRING);
1286
1287 /* Initialise the struct */
1288 s_findrep_struct.lStructSize = sizeof(s_findrep_struct);
1289 s_findrep_struct.lpstrFindWhat = alloc(MSWIN_FR_BUFSIZE);
1290 s_findrep_struct.lpstrFindWhat[0] = NUL;
1291 s_findrep_struct.lpstrReplaceWith = alloc(MSWIN_FR_BUFSIZE);
1292 s_findrep_struct.lpstrReplaceWith[0] = NUL;
1293 s_findrep_struct.wFindWhatLen = MSWIN_FR_BUFSIZE;
1294 s_findrep_struct.wReplaceWithLen = MSWIN_FR_BUFSIZE;
1295#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296
Bram Moolenaar748bf032005-02-02 23:04:36 +00001297theend:
1298 /* Display any pending error messages */
1299 display_errors();
1300
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 return OK;
1302}
1303
1304/*
1305 * Get the size of the screen, taking position on multiple monitors into
1306 * account (if supported).
1307 */
1308 static void
1309get_work_area(RECT *spi_rect)
1310{
1311 _HMONITOR mon;
1312 _MONITORINFO moninfo;
1313
1314 /* use these functions only if available */
1315 if (pMonitorFromWindow != NULL && pGetMonitorInfo != NULL)
1316 {
1317 /* work out which monitor the window is on, and get *it's* work area */
1318 mon = pMonitorFromWindow(s_hwnd, 1 /*MONITOR_DEFAULTTOPRIMARY*/);
1319 if (mon != NULL)
1320 {
1321 moninfo.cbSize = sizeof(_MONITORINFO);
1322 if (pGetMonitorInfo(mon, &moninfo))
1323 {
1324 *spi_rect = moninfo.rcWork;
1325 return;
1326 }
1327 }
1328 }
1329 /* this is the old method... */
1330 SystemParametersInfo(SPI_GETWORKAREA, 0, spi_rect, 0);
1331}
1332
1333/*
1334 * Set the size of the window to the given width and height in pixels.
1335 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001336/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 void
1338gui_mch_set_shellsize(int width, int height,
1339 int min_width, int min_height, int base_width, int base_height)
1340{
1341 RECT workarea_rect;
1342 int win_width, win_height;
1343 int win_xpos, win_ypos;
1344 WINDOWPLACEMENT wndpl;
1345
1346 /* try to keep window completely on screen */
1347 /* get size of the screen work area (excludes taskbar, appbars) */
1348 get_work_area(&workarea_rect);
1349
1350 /* get current posision of our window */
1351 wndpl.length = sizeof(WINDOWPLACEMENT);
1352 GetWindowPlacement(s_hwnd, &wndpl);
1353
1354 /* Resizing a maximized window looks very strange, unzoom it first.
1355 * But don't do it when still starting up, it may have been requested in
1356 * the shortcut. */
1357 if (wndpl.showCmd == SW_SHOWMAXIMIZED && starting == 0)
1358 {
1359 ShowWindow(s_hwnd, SW_SHOWNORMAL);
1360 /* Need to get the settings of the normal window. */
1361 GetWindowPlacement(s_hwnd, &wndpl);
1362 }
1363
1364 win_xpos = wndpl.rcNormalPosition.left;
1365 win_ypos = wndpl.rcNormalPosition.top;
1366
1367 /* compute the size of the outside of the window */
1368 win_width = width + GetSystemMetrics(SM_CXFRAME) * 2;
1369 win_height = height + GetSystemMetrics(SM_CYFRAME) * 2
1370 + GetSystemMetrics(SM_CYCAPTION)
1371#ifdef FEAT_MENU
1372 + gui_mswin_get_menu_height(FALSE)
1373#endif
1374 ;
1375
1376 /* if the window is going off the screen, move it on to the screen */
1377 if (win_xpos + win_width > workarea_rect.right)
1378 win_xpos = workarea_rect.right - win_width;
1379
1380 if (win_xpos < workarea_rect.left)
1381 win_xpos = workarea_rect.left;
1382
1383 if (win_ypos + win_height > workarea_rect.bottom)
1384 win_ypos = workarea_rect.bottom - win_height;
1385
1386 if (win_ypos < workarea_rect.top)
1387 win_ypos = workarea_rect.top;
1388
1389 /* When the taskbar is placed on the left or top of the screen,
1390 * SetWindowPlacement() adds its width or height automatically, compensate
1391 * for that. When the offset is over 400 it's probably something else,
1392 * skip it then (just in case). */
1393 if (workarea_rect.left > 0 && workarea_rect.left < 400)
1394 win_xpos -= workarea_rect.left;
1395 if (workarea_rect.top > 0 && workarea_rect.top < 400)
1396 win_ypos -= workarea_rect.top;
1397
1398 wndpl.rcNormalPosition.left = win_xpos;
1399 wndpl.rcNormalPosition.right = win_xpos + win_width;
1400 wndpl.rcNormalPosition.top = win_ypos;
1401 wndpl.rcNormalPosition.bottom = win_ypos + win_height;
1402
1403 /* set window position - we should use SetWindowPlacement rather than
1404 * SetWindowPos as the MSDN docs say the coord systems returned by
1405 * these two are not compatible. */
1406 SetWindowPlacement(s_hwnd, &wndpl);
1407
1408 SetActiveWindow(s_hwnd);
1409 SetFocus(s_hwnd);
1410
1411#ifdef FEAT_MENU
1412 /* Menu may wrap differently now */
1413 gui_mswin_get_menu_height(!gui.starting);
1414#endif
1415}
1416
1417
1418 void
1419gui_mch_set_scrollbar_thumb(
1420 scrollbar_T *sb,
1421 long val,
1422 long size,
1423 long max)
1424{
1425 SCROLLINFO info;
1426
1427 sb->scroll_shift = 0;
1428 while (max > 32767)
1429 {
1430 max = (max + 1) >> 1;
1431 val >>= 1;
1432 size >>= 1;
1433 ++sb->scroll_shift;
1434 }
1435
1436 if (sb->scroll_shift > 0)
1437 ++size;
1438
1439 info.cbSize = sizeof(info);
1440 info.fMask = SIF_POS | SIF_RANGE | SIF_PAGE;
1441 info.nPos = val;
1442 info.nMin = 0;
1443 info.nMax = max;
1444 info.nPage = size;
1445 SetScrollInfo(sb->id, SB_CTL, &info, TRUE);
1446}
1447
1448
1449/*
1450 * Set the current text font.
1451 */
1452 void
1453gui_mch_set_font(GuiFont font)
1454{
1455 gui.currFont = font;
1456}
1457
1458
1459/*
1460 * Set the current text foreground color.
1461 */
1462 void
1463gui_mch_set_fg_color(guicolor_T color)
1464{
1465 gui.currFgColor = color;
1466}
1467
1468/*
1469 * Set the current text background color.
1470 */
1471 void
1472gui_mch_set_bg_color(guicolor_T color)
1473{
1474 gui.currBgColor = color;
1475}
1476
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001477/*
1478 * Set the current text special color.
1479 */
1480 void
1481gui_mch_set_sp_color(guicolor_T color)
1482{
1483 gui.currSpColor = color;
1484}
1485
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486#if defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)
1487/*
1488 * Multi-byte handling, originally by Sung-Hoon Baek.
1489 * First static functions (no prototypes generated).
1490 */
1491#ifdef _MSC_VER
1492# include <ime.h> /* Apparently not needed for Cygwin, MingW or Borland. */
1493#endif
1494#include <imm.h>
1495
1496/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 * handle WM_IME_NOTIFY message
1498 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001499/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 static LRESULT
1501_OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData)
1502{
1503 LRESULT lResult = 0;
1504 HIMC hImc;
1505
1506 if (!pImmGetContext || (hImc = pImmGetContext(hWnd)) == (HIMC)0)
1507 return lResult;
1508 switch (dwCommand)
1509 {
1510 case IMN_SETOPENSTATUS:
1511 if (pImmGetOpenStatus(hImc))
1512 {
1513 pImmSetCompositionFont(hImc, &norm_logfont);
1514 im_set_position(gui.row, gui.col);
1515
1516 /* Disable langmap */
1517 State &= ~LANGMAP;
1518 if (State & INSERT)
1519 {
1520#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1521 /* Unshown 'keymap' in status lines */
1522 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
1523 {
1524 /* Save cursor position */
1525 int old_row = gui.row;
1526 int old_col = gui.col;
1527
1528 // This must be called here before
1529 // status_redraw_curbuf(), otherwise the mode
1530 // message may appear in the wrong position.
1531 showmode();
1532 status_redraw_curbuf();
1533 update_screen(0);
1534 /* Restore cursor position */
1535 gui.row = old_row;
1536 gui.col = old_col;
1537 }
1538#endif
1539 }
1540 }
1541 gui_update_cursor(TRUE, FALSE);
1542 lResult = 0;
1543 break;
1544 }
1545 pImmReleaseContext(hWnd, hImc);
1546 return lResult;
1547}
1548
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001549/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 static LRESULT
1551_OnImeComposition(HWND hwnd, WPARAM dbcs, LPARAM param)
1552{
1553 char_u *ret;
1554 int len;
1555
1556 if ((param & GCS_RESULTSTR) == 0) /* Composition unfinished. */
1557 return 0;
1558
1559 ret = GetResultStr(hwnd, GCS_RESULTSTR, &len);
1560 if (ret != NULL)
1561 {
1562 add_to_input_buf_csi(ret, len);
1563 vim_free(ret);
1564 return 1;
1565 }
1566 return 0;
1567}
1568
1569/*
1570 * get the current composition string, in UCS-2; *lenp is the number of
1571 * *lenp is the number of Unicode characters.
1572 */
1573 static short_u *
1574GetCompositionString_inUCS2(HIMC hIMC, DWORD GCS, int *lenp)
1575{
1576 LONG ret;
1577 LPWSTR wbuf = NULL;
1578 char_u *buf;
1579
1580 if (!pImmGetContext)
1581 return NULL; /* no imm32.dll */
1582
1583 /* Try Unicode; this'll always work on NT regardless of codepage. */
1584 ret = pImmGetCompositionStringW(hIMC, GCS, NULL, 0);
1585 if (ret == 0)
1586 return NULL; /* empty */
1587
1588 if (ret > 0)
1589 {
1590 /* Allocate the requested buffer plus space for the NUL character. */
1591 wbuf = (LPWSTR)alloc(ret + sizeof(WCHAR));
1592 if (wbuf != NULL)
1593 {
1594 pImmGetCompositionStringW(hIMC, GCS, wbuf, ret);
1595 *lenp = ret / sizeof(WCHAR);
1596 }
1597 return (short_u *)wbuf;
1598 }
1599
1600 /* ret < 0; we got an error, so try the ANSI version. This'll work
1601 * on 9x/ME, but only if the codepage happens to be set to whatever
1602 * we're inputting. */
1603 ret = pImmGetCompositionStringA(hIMC, GCS, NULL, 0);
1604 if (ret <= 0)
1605 return NULL; /* empty or error */
1606
1607 buf = alloc(ret);
1608 if (buf == NULL)
1609 return NULL;
1610 pImmGetCompositionStringA(hIMC, GCS, buf, ret);
1611
1612 /* convert from codepage to UCS-2 */
1613 MultiByteToWideChar_alloc(GetACP(), 0, buf, ret, &wbuf, lenp);
1614 vim_free(buf);
1615
1616 return (short_u *)wbuf;
1617}
1618
1619/*
1620 * void GetResultStr()
1621 *
1622 * This handles WM_IME_COMPOSITION with GCS_RESULTSTR flag on.
1623 * get complete composition string
1624 */
1625 static char_u *
1626GetResultStr(HWND hwnd, int GCS, int *lenp)
1627{
1628 HIMC hIMC; /* Input context handle. */
1629 short_u *buf = NULL;
1630 char_u *convbuf = NULL;
1631
1632 if (!pImmGetContext || (hIMC = pImmGetContext(hwnd)) == (HIMC)0)
1633 return NULL;
1634
1635 /* Reads in the composition string. */
1636 buf = GetCompositionString_inUCS2(hIMC, GCS, lenp);
1637 if (buf == NULL)
1638 return NULL;
1639
1640 convbuf = ucs2_to_enc(buf, lenp);
1641 pImmReleaseContext(hwnd, hIMC);
1642 vim_free(buf);
1643 return convbuf;
1644}
1645#endif
1646
1647/* For global functions we need prototypes. */
1648#if (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) || defined(PROTO)
1649
1650/*
1651 * set font to IM.
1652 */
1653 void
1654im_set_font(LOGFONT *lf)
1655{
1656 HIMC hImc;
1657
1658 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
1659 {
1660 pImmSetCompositionFont(hImc, lf);
1661 pImmReleaseContext(s_hwnd, hImc);
1662 }
1663}
1664
1665/*
1666 * Notify cursor position to IM.
1667 */
1668 void
1669im_set_position(int row, int col)
1670{
1671 HIMC hImc;
1672
1673 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
1674 {
1675 COMPOSITIONFORM cfs;
1676
1677 cfs.dwStyle = CFS_POINT;
1678 cfs.ptCurrentPos.x = FILL_X(col);
1679 cfs.ptCurrentPos.y = FILL_Y(row);
1680 MapWindowPoints(s_textArea, s_hwnd, &cfs.ptCurrentPos, 1);
1681 pImmSetCompositionWindow(hImc, &cfs);
1682
1683 pImmReleaseContext(s_hwnd, hImc);
1684 }
1685}
1686
1687/*
1688 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
1689 */
1690 void
1691im_set_active(int active)
1692{
1693 HIMC hImc;
1694 static HIMC hImcOld = (HIMC)0;
1695
1696 if (pImmGetContext) /* if NULL imm32.dll wasn't loaded (yet) */
1697 {
1698 if (p_imdisable)
1699 {
1700 if (hImcOld == (HIMC)0)
1701 {
1702 hImcOld = pImmGetContext(s_hwnd);
1703 if (hImcOld)
1704 pImmAssociateContext(s_hwnd, (HIMC)0);
1705 }
1706 active = FALSE;
1707 }
1708 else if (hImcOld != (HIMC)0)
1709 {
1710 pImmAssociateContext(s_hwnd, hImcOld);
1711 hImcOld = (HIMC)0;
1712 }
1713
1714 hImc = pImmGetContext(s_hwnd);
1715 if (hImc)
1716 {
1717 pImmSetOpenStatus(hImc, active);
1718 pImmReleaseContext(s_hwnd, hImc);
1719 }
1720 }
1721}
1722
1723/*
1724 * Get IM status. When IM is on, return not 0. Else return 0.
1725 */
1726 int
1727im_get_status()
1728{
1729 int status = 0;
1730 HIMC hImc;
1731
1732 if (pImmGetContext && (hImc = pImmGetContext(s_hwnd)) != (HIMC)0)
1733 {
1734 status = pImmGetOpenStatus(hImc) ? 1 : 0;
1735 pImmReleaseContext(s_hwnd, hImc);
1736 }
1737 return status;
1738}
1739
1740#endif /* FEAT_MBYTE && FEAT_MBYTE_IME */
1741
1742#if defined(FEAT_MBYTE) && !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME)
1743/* Win32 with GLOBAL IME */
1744
1745/*
1746 * Notify cursor position to IM.
1747 */
1748 void
1749im_set_position(int row, int col)
1750{
1751 /* Win32 with GLOBAL IME */
1752 POINT p;
1753
1754 p.x = FILL_X(col);
1755 p.y = FILL_Y(row);
1756 MapWindowPoints(s_textArea, s_hwnd, &p, 1);
1757 global_ime_set_position(&p);
1758}
1759
1760/*
1761 * Set IM status on ("active" is TRUE) or off ("active" is FALSE).
1762 */
1763 void
1764im_set_active(int active)
1765{
1766 global_ime_set_status(active);
1767}
1768
1769/*
1770 * Get IM status. When IM is on, return not 0. Else return 0.
1771 */
1772 int
1773im_get_status()
1774{
1775 return global_ime_get_status();
1776}
1777#endif
1778
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001779#ifdef FEAT_MBYTE
1780/*
1781 * Convert latin9 text to ucs-2.
1782 */
1783 static void
1784latin9_to_ucs(char_u *text, int len, WCHAR *unicodebuf)
1785{
1786 int c;
1787
1788 while (len-- >= 0)
1789 {
1790 c = *text++;
1791 switch (c)
1792 {
1793 case 0xa4: c = 0x20ac; break; /* euro */
1794 case 0xa6: c = 0x0160; break; /* S hat */
1795 case 0xa8: c = 0x0161; break; /* S -hat */
1796 case 0xb4: c = 0x017d; break; /* Z hat */
1797 case 0xb8: c = 0x017e; break; /* Z -hat */
1798 case 0xbc: c = 0x0152; break; /* OE */
1799 case 0xbd: c = 0x0153; break; /* oe */
1800 case 0xbe: c = 0x0178; break; /* Y */
1801 }
1802 *unicodebuf++ = c;
1803 }
1804}
1805#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806
1807#ifdef FEAT_RIGHTLEFT
1808/*
1809 * What is this for? In the case where you are using Win98 or Win2K or later,
1810 * and you are using a Hebrew font (or Arabic!), Windows does you a favor and
1811 * reverses the string sent to the TextOut... family. This sucks, because we
1812 * go to a lot of effort to do the right thing, and there doesn't seem to be a
1813 * way to tell Windblows not to do this!
1814 *
1815 * The short of it is that this 'RevOut' only gets called if you are running
1816 * one of the new, "improved" MS OSes, and only if you are running in
1817 * 'rightleft' mode. It makes display take *slightly* longer, but not
1818 * noticeably so.
1819 */
1820 static void
1821RevOut( HDC s_hdc,
1822 int col,
1823 int row,
1824 UINT foptions,
1825 CONST RECT *pcliprect,
1826 LPCTSTR text,
1827 UINT len,
1828 CONST INT *padding)
1829{
1830 int ix;
1831 static int special = -1;
1832
1833 if (special == -1)
1834 {
1835 /* Check windows version: special treatment is needed if it is NT 5 or
1836 * Win98 or higher. */
1837 if ((os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
1838 && os_version.dwMajorVersion >= 5)
1839 || (os_version.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS
1840 && (os_version.dwMajorVersion > 4
1841 || (os_version.dwMajorVersion == 4
1842 && os_version.dwMinorVersion > 0))))
1843 special = 1;
1844 else
1845 special = 0;
1846 }
1847
1848 if (special)
1849 for (ix = 0; ix < (int)len; ++ix)
1850 ExtTextOut(s_hdc, col + TEXT_X(ix), row, foptions,
1851 pcliprect, text + ix, 1, padding);
1852 else
1853 ExtTextOut(s_hdc, col, row, foptions, pcliprect, text, len, padding);
1854}
1855#endif
1856
1857 void
1858gui_mch_draw_string(
1859 int row,
1860 int col,
1861 char_u *text,
1862 int len,
1863 int flags)
1864{
1865 static int *padding = NULL;
1866 static int pad_size = 0;
1867 int i;
1868 const RECT *pcliprect = NULL;
1869 UINT foptions = 0;
1870#ifdef FEAT_MBYTE
1871 static WCHAR *unicodebuf = NULL;
1872 static int *unicodepdy = NULL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001873 static int unibuflen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 int n = 0;
1875#endif
1876 HPEN hpen, old_pen;
1877 int y;
1878
1879#ifndef MSWIN16_FASTTEXT
1880 /*
1881 * Italic and bold text seems to have an extra row of pixels at the bottom
1882 * (below where the bottom of the character should be). If we draw the
1883 * characters with a solid background, the top row of pixels in the
1884 * character below will be overwritten. We can fix this by filling in the
1885 * background ourselves, to the correct character proportions, and then
1886 * writing the character in transparent mode. Still have a problem when
1887 * the character is "_", which gets written on to the character below.
1888 * New fix: set gui.char_ascent to -1. This shifts all characters up one
1889 * pixel in their slots, which fixes the problem with the bottom row of
1890 * pixels. We still need this code because otherwise the top row of pixels
1891 * becomes a problem. - webb.
1892 */
1893 static HBRUSH hbr_cache[2] = {NULL, NULL};
1894 static guicolor_T brush_color[2] = {INVALCOLOR, INVALCOLOR};
1895 static int brush_lru = 0;
1896 HBRUSH hbr;
1897 RECT rc;
1898
1899 if (!(flags & DRAW_TRANSP))
1900 {
1901 /*
1902 * Clear background first.
1903 * Note: FillRect() excludes right and bottom of rectangle.
1904 */
1905 rc.left = FILL_X(col);
1906 rc.top = FILL_Y(row);
1907#ifdef FEAT_MBYTE
1908 if (has_mbyte)
1909 {
1910 int cell_len = 0;
1911
1912 /* Compute the length in display cells. */
1913 for (n = 0; n < len; n += MB_BYTE2LEN(text[n]))
1914 cell_len += (*mb_ptr2cells)(text + n);
1915 rc.right = FILL_X(col + cell_len);
1916 }
1917 else
1918#endif
1919 rc.right = FILL_X(col + len);
1920 rc.bottom = FILL_Y(row + 1);
1921
1922 /* Cache the created brush, that saves a lot of time. We need two:
1923 * one for cursor background and one for the normal background. */
1924 if (gui.currBgColor == brush_color[0])
1925 {
1926 hbr = hbr_cache[0];
1927 brush_lru = 1;
1928 }
1929 else if (gui.currBgColor == brush_color[1])
1930 {
1931 hbr = hbr_cache[1];
1932 brush_lru = 0;
1933 }
1934 else
1935 {
1936 if (hbr_cache[brush_lru] != NULL)
1937 DeleteBrush(hbr_cache[brush_lru]);
1938 hbr_cache[brush_lru] = CreateSolidBrush(gui.currBgColor);
1939 brush_color[brush_lru] = gui.currBgColor;
1940 hbr = hbr_cache[brush_lru];
1941 brush_lru = !brush_lru;
1942 }
1943 FillRect(s_hdc, &rc, hbr);
1944
1945 SetBkMode(s_hdc, TRANSPARENT);
1946
1947 /*
1948 * When drawing block cursor, prevent inverted character spilling
1949 * over character cell (can happen with bold/italic)
1950 */
1951 if (flags & DRAW_CURSOR)
1952 {
1953 pcliprect = &rc;
1954 foptions = ETO_CLIPPED;
1955 }
1956 }
1957#else
1958 /*
1959 * The alternative would be to write the characters in opaque mode, but
1960 * when the text is not exactly the same proportions as normal text, too
1961 * big or too little a rectangle gets drawn for the background.
1962 */
1963 SetBkMode(s_hdc, OPAQUE);
1964 SetBkColor(s_hdc, gui.currBgColor);
1965#endif
1966 SetTextColor(s_hdc, gui.currFgColor);
1967 SelectFont(s_hdc, gui.currFont);
1968
1969 if (pad_size != Columns || padding == NULL || padding[0] != gui.char_width)
1970 {
1971 vim_free(padding);
1972 pad_size = Columns;
1973
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00001974 /* Don't give an out-of-memory message here, it would call us
1975 * recursively. */
1976 padding = (int *)lalloc(pad_size * sizeof(int), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 if (padding != NULL)
1978 for (i = 0; i < pad_size; i++)
1979 padding[i] = gui.char_width;
1980 }
1981
1982 /* On NT, tell the font renderer not to "help" us with Hebrew and Arabic
1983 * text. This doesn't work in 9x, so we have to deal with it manually on
1984 * those systems. */
1985 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT)
1986 foptions |= ETO_IGNORELANGUAGE;
1987
1988 /*
1989 * We have to provide the padding argument because italic and bold versions
1990 * of fixed-width fonts are often one pixel or so wider than their normal
1991 * versions.
1992 * No check for DRAW_BOLD, Windows will have done it already.
1993 */
1994
1995#ifdef FEAT_MBYTE
1996 /* Check if there are any UTF-8 characters. If not, use normal text
1997 * output to speed up output. */
1998 if (enc_utf8)
1999 for (n = 0; n < len; ++n)
2000 if (text[n] >= 0x80)
2001 break;
2002
2003 /* Check if the Unicode buffer exists and is big enough. Create it
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002004 * with the same length as the multi-byte string, the number of wide
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 * characters is always equal or smaller. */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002006 if ((enc_utf8
2007 || (enc_codepage > 0 && (int)GetACP() != enc_codepage)
2008 || enc_latin9)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 && (unicodebuf == NULL || len > unibuflen))
2010 {
2011 vim_free(unicodebuf);
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002012 unicodebuf = (WCHAR *)lalloc(len * sizeof(WCHAR), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013
2014 vim_free(unicodepdy);
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002015 unicodepdy = (int *)lalloc(len * sizeof(int), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016
2017 unibuflen = len;
2018 }
2019
2020 if (enc_utf8 && n < len && unicodebuf != NULL)
2021 {
2022 /* Output UTF-8 characters. Caller has already separated
2023 * composing characters. */
2024 int i = 0;
2025 int clen; /* string length up to composing char */
2026 int cells; /* cell width of string up to composing char */
2027 int cw; /* width of current cell */
2028
2029 cells = 0;
2030 for (clen = 0; i < len; )
2031 {
2032 unicodebuf[clen] = utf_ptr2char(text + i);
2033 cw = utf_char2cells(unicodebuf[clen]);
2034 if (cw > 2) /* don't use 4 for unprintable char */
2035 cw = 1;
2036 if (unicodepdy != NULL)
2037 {
2038 /* Use unicodepdy to make characters fit as we expect, even
2039 * when the font uses different widths (e.g., bold character
2040 * is wider). */
2041 unicodepdy[clen] = cw * gui.char_width;
2042 }
2043 cells += cw;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002044 i += utfc_ptr2len_len(text + i, len - i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 ++clen;
2046 }
2047 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002048 foptions, pcliprect, unicodebuf, clen, unicodepdy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 len = cells; /* used for underlining */
2050 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002051 else if ((enc_codepage > 0 && (int)GetACP() != enc_codepage) || enc_latin9)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 {
2053 /* If we want to display codepage data, and the current CP is not the
2054 * ANSI one, we need to go via Unicode. */
2055 if (unicodebuf != NULL)
2056 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002057 if (enc_latin9)
2058 latin9_to_ucs(text, len, unicodebuf);
2059 else
2060 len = MultiByteToWideChar(enc_codepage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 MB_PRECOMPOSED,
2062 (char *)text, len,
2063 (LPWSTR)unicodebuf, unibuflen);
2064 if (len != 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002065 {
2066 /* Use unicodepdy to make characters fit as we expect, even
2067 * when the font uses different widths (e.g., bold character
2068 * is wider). */
2069 if (unicodepdy != NULL)
2070 {
2071 int i;
2072 int cw;
2073
2074 for (i = 0; i < len; ++i)
2075 {
2076 cw = utf_char2cells(unicodebuf[i]);
2077 if (cw > 2)
2078 cw = 1;
2079 unicodepdy[i] = cw * gui.char_width;
2080 }
2081 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 ExtTextOutW(s_hdc, TEXT_X(col), TEXT_Y(row),
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002083 foptions, pcliprect, unicodebuf, len, unicodepdy);
2084 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 }
2086 }
2087 else
2088#endif
2089 {
2090#ifdef FEAT_RIGHTLEFT
2091 /* If we can't use ETO_IGNORELANGUAGE, we can't tell Windows not to
2092 * mess up RL text, so we have to draw it character-by-character.
2093 * Only do this if RL is on, since it's slow. */
2094 if (curwin->w_p_rl && !(foptions & ETO_IGNORELANGUAGE))
2095 RevOut(s_hdc, TEXT_X(col), TEXT_Y(row),
2096 foptions, pcliprect, (char *)text, len, padding);
2097 else
2098#endif
2099 ExtTextOut(s_hdc, TEXT_X(col), TEXT_Y(row),
2100 foptions, pcliprect, (char *)text, len, padding);
2101 }
2102
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002103 /* Underline */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 if (flags & DRAW_UNDERL)
2105 {
2106 hpen = CreatePen(PS_SOLID, 1, gui.currFgColor);
2107 old_pen = SelectObject(s_hdc, hpen);
2108 /* When p_linespace is 0, overwrite the bottom row of pixels.
2109 * Otherwise put the line just below the character. */
2110 y = FILL_Y(row + 1) - 1;
2111#ifndef MSWIN16_FASTTEXT
2112 if (p_linespace > 1)
2113 y -= p_linespace - 1;
2114#endif
2115 MoveToEx(s_hdc, FILL_X(col), y, NULL);
2116 /* Note: LineTo() excludes the last pixel in the line. */
2117 LineTo(s_hdc, FILL_X(col + len), y);
2118 DeleteObject(SelectObject(s_hdc, old_pen));
2119 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002120
2121 /* Undercurl */
2122 if (flags & DRAW_UNDERC)
2123 {
2124 int x;
2125 int offset;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002126 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002127
2128 y = FILL_Y(row + 1) - 1;
2129 for (x = FILL_X(col); x < FILL_X(col + len); ++x)
2130 {
2131 offset = val[x % 8];
2132 SetPixel(s_hdc, x, y - offset, gui.currSpColor);
2133 }
2134 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135}
2136
2137
2138/*
2139 * Output routines.
2140 */
2141
2142/* Flush any output to the screen */
2143 void
2144gui_mch_flush(void)
2145{
2146# if defined(__BORLANDC__)
2147 /*
2148 * The GdiFlush declaration (in Borland C 5.01 <wingdi.h>) is not a
2149 * prototype declaration.
2150 * The compiler complains if __stdcall is not used in both declarations.
2151 */
2152 BOOL __stdcall GdiFlush(void);
2153# endif
2154
2155 GdiFlush();
2156}
2157
2158 static void
2159clear_rect(RECT *rcp)
2160{
2161 HBRUSH hbr;
2162
2163 hbr = CreateSolidBrush(gui.back_pixel);
2164 FillRect(s_hdc, rcp, hbr);
2165 DeleteBrush(hbr);
2166}
2167
2168
2169#if defined(FEAT_MENU) || defined(PROTO)
2170/*
2171 * Add a sub menu to the menu bar.
2172 */
2173 void
2174gui_mch_add_menu(
2175 vimmenu_T *menu,
2176 int pos)
2177{
2178 vimmenu_T *parent = menu->parent;
2179
2180 menu->submenu_id = CreatePopupMenu();
2181 menu->id = s_menu_id++;
2182
2183 if (menu_is_menubar(menu->name))
2184 {
2185 if (is_winnt_3())
2186 {
2187 InsertMenu((parent == NULL) ? s_menuBar : parent->submenu_id,
2188 (UINT)pos, MF_POPUP | MF_STRING | MF_BYPOSITION,
2189 (UINT)menu->submenu_id, (LPCTSTR) menu->name);
2190 }
2191 else
2192 {
2193#ifdef FEAT_MBYTE
2194 WCHAR *wn = NULL;
2195 int n;
2196
2197 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2198 {
2199 /* 'encoding' differs from active codepage: convert menu name
2200 * and use wide function */
2201 wn = enc_to_ucs2(menu->name, NULL);
2202 if (wn != NULL)
2203 {
2204 MENUITEMINFOW infow;
2205
2206 infow.cbSize = sizeof(infow);
2207 infow.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID
2208 | MIIM_SUBMENU;
2209 infow.dwItemData = (DWORD)menu;
2210 infow.wID = menu->id;
2211 infow.fType = MFT_STRING;
2212 infow.dwTypeData = wn;
2213 infow.cch = wcslen(wn);
2214 infow.hSubMenu = menu->submenu_id;
2215 n = InsertMenuItemW((parent == NULL)
2216 ? s_menuBar : parent->submenu_id,
2217 (UINT)pos, TRUE, &infow);
2218 vim_free(wn);
2219 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2220 /* Failed, try using non-wide function. */
2221 wn = NULL;
2222 }
2223 }
2224
2225 if (wn == NULL)
2226#endif
2227 {
2228 MENUITEMINFO info;
2229
2230 info.cbSize = sizeof(info);
2231 info.fMask = MIIM_DATA | MIIM_TYPE | MIIM_ID | MIIM_SUBMENU;
2232 info.dwItemData = (DWORD)menu;
2233 info.wID = menu->id;
2234 info.fType = MFT_STRING;
2235 info.dwTypeData = (LPTSTR)menu->name;
2236 info.cch = (UINT)STRLEN(menu->name);
2237 info.hSubMenu = menu->submenu_id;
2238 InsertMenuItem((parent == NULL)
2239 ? s_menuBar : parent->submenu_id,
2240 (UINT)pos, TRUE, &info);
2241 }
2242 }
2243 }
2244
2245 /* Fix window size if menu may have wrapped */
2246 if (parent == NULL)
2247 gui_mswin_get_menu_height(!gui.starting);
2248#ifdef FEAT_TEAROFF
2249 else if (IsWindow(parent->tearoff_handle))
2250 rebuild_tearoff(parent);
2251#endif
2252}
2253
2254 void
2255gui_mch_show_popupmenu(vimmenu_T *menu)
2256{
2257 POINT mp;
2258
2259 (void)GetCursorPos((LPPOINT)&mp);
2260 gui_mch_show_popupmenu_at(menu, (int)mp.x, (int)mp.y);
2261}
2262
2263 void
Bram Moolenaar045e82d2005-07-08 22:25:33 +00002264gui_make_popup(char_u *path_name, int mouse_pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265{
2266 vimmenu_T *menu = gui_find_menu(path_name);
2267
2268 if (menu != NULL)
2269 {
2270 POINT p;
2271
2272 /* Find the position of the current cursor */
2273 GetDCOrgEx(s_hdc, &p);
Bram Moolenaar045e82d2005-07-08 22:25:33 +00002274 if (mouse_pos)
2275 {
2276 int mx, my;
2277
2278 gui_mch_getmouse(&mx, &my);
2279 p.x += mx;
2280 p.y += my;
2281 }
2282 else if (curwin != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 {
2284 p.x += TEXT_X(W_WINCOL(curwin) + curwin->w_wcol + 1);
2285 p.y += TEXT_Y(W_WINROW(curwin) + curwin->w_wrow + 1);
2286 }
2287 msg_scroll = FALSE;
2288 gui_mch_show_popupmenu_at(menu, (int)p.x, (int)p.y);
2289 }
2290}
2291
2292#if defined(FEAT_TEAROFF) || defined(PROTO)
2293/*
2294 * Given a menu descriptor, e.g. "File.New", find it in the menu hierarchy and
2295 * create it as a pseudo-"tearoff menu".
2296 */
2297 void
2298gui_make_tearoff(char_u *path_name)
2299{
2300 vimmenu_T *menu = gui_find_menu(path_name);
2301
2302 /* Found the menu, so tear it off. */
2303 if (menu != NULL)
2304 gui_mch_tearoff(menu->dname, menu, 0xffffL, 0xffffL);
2305}
2306#endif
2307
2308/*
2309 * Add a menu item to a menu
2310 */
2311 void
2312gui_mch_add_menu_item(
2313 vimmenu_T *menu,
2314 int idx)
2315{
2316 vimmenu_T *parent = menu->parent;
2317
2318 menu->id = s_menu_id++;
2319 menu->submenu_id = NULL;
2320
2321#ifdef FEAT_TEAROFF
2322 if (STRNCMP(menu->name, TEAR_STRING, TEAR_LEN) == 0)
2323 {
2324 InsertMenu(parent->submenu_id, (UINT)idx, MF_BITMAP|MF_BYPOSITION,
2325 (UINT)menu->id, (LPCTSTR) s_htearbitmap);
2326 }
2327 else
2328#endif
2329#ifdef FEAT_TOOLBAR
2330 if (menu_is_toolbar(parent->name))
2331 {
2332 TBBUTTON newtb;
2333
2334 vim_memset(&newtb, 0, sizeof(newtb));
2335 if (menu_is_separator(menu->name))
2336 {
2337 newtb.iBitmap = 0;
2338 newtb.fsStyle = TBSTYLE_SEP;
2339 }
2340 else
2341 {
2342 newtb.iBitmap = get_toolbar_bitmap(menu);
2343 newtb.fsStyle = TBSTYLE_BUTTON;
2344 }
2345 newtb.idCommand = menu->id;
2346 newtb.fsState = TBSTATE_ENABLED;
2347 newtb.iString = 0;
2348 SendMessage(s_toolbarhwnd, TB_INSERTBUTTON, (WPARAM)idx,
2349 (LPARAM)&newtb);
2350 menu->submenu_id = (HMENU)-1;
2351 }
2352 else
2353#endif
2354 {
2355#ifdef FEAT_MBYTE
2356 WCHAR *wn = NULL;
2357 int n;
2358
2359 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2360 {
2361 /* 'encoding' differs from active codepage: convert menu item name
2362 * and use wide function */
2363 wn = enc_to_ucs2(menu->name, NULL);
2364 if (wn != NULL)
2365 {
2366 n = InsertMenuW(parent->submenu_id, (UINT)idx,
2367 (menu_is_separator(menu->name)
2368 ? MF_SEPARATOR : MF_STRING) | MF_BYPOSITION,
2369 (UINT)menu->id, wn);
2370 vim_free(wn);
2371 if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2372 /* Failed, try using non-wide function. */
2373 wn = NULL;
2374 }
2375 }
2376 if (wn == NULL)
2377#endif
2378 InsertMenu(parent->submenu_id, (UINT)idx,
2379 (menu_is_separator(menu->name) ? MF_SEPARATOR : MF_STRING)
2380 | MF_BYPOSITION,
2381 (UINT)menu->id, (LPCTSTR)menu->name);
2382#ifdef FEAT_TEAROFF
2383 if (IsWindow(parent->tearoff_handle))
2384 rebuild_tearoff(parent);
2385#endif
2386 }
2387}
2388
2389/*
2390 * Destroy the machine specific menu widget.
2391 */
2392 void
2393gui_mch_destroy_menu(vimmenu_T *menu)
2394{
2395#ifdef FEAT_TOOLBAR
2396 /*
2397 * is this a toolbar button?
2398 */
2399 if (menu->submenu_id == (HMENU)-1)
2400 {
2401 int iButton;
2402
2403 iButton = (int)SendMessage(s_toolbarhwnd, TB_COMMANDTOINDEX,
2404 (WPARAM)menu->id, 0);
2405 SendMessage(s_toolbarhwnd, TB_DELETEBUTTON, (WPARAM)iButton, 0);
2406 }
2407 else
2408#endif
2409 {
2410 if (menu->parent != NULL
2411 && menu_is_popup(menu->parent->dname)
2412 && menu->parent->submenu_id != NULL)
2413 RemoveMenu(menu->parent->submenu_id, menu->id, MF_BYCOMMAND);
2414 else
2415 RemoveMenu(s_menuBar, menu->id, MF_BYCOMMAND);
2416 if (menu->submenu_id != NULL)
2417 DestroyMenu(menu->submenu_id);
2418#ifdef FEAT_TEAROFF
2419 if (IsWindow(menu->tearoff_handle))
2420 DestroyWindow(menu->tearoff_handle);
2421 if (menu->parent != NULL
2422 && menu->parent->children != NULL
2423 && IsWindow(menu->parent->tearoff_handle))
2424 {
2425 /* This menu must not show up when rebuilding the tearoff window. */
2426 menu->modes = 0;
2427 rebuild_tearoff(menu->parent);
2428 }
2429#endif
2430 }
2431}
2432
2433#ifdef FEAT_TEAROFF
2434 static void
2435rebuild_tearoff(vimmenu_T *menu)
2436{
2437 /*hackish*/
2438 char_u tbuf[128];
2439 RECT trect;
2440 RECT rct;
2441 RECT roct;
2442 int x, y;
2443
2444 HWND thwnd = menu->tearoff_handle;
2445
2446 GetWindowText(thwnd, tbuf, 127);
2447 if (GetWindowRect(thwnd, &trect)
2448 && GetWindowRect(s_hwnd, &rct)
2449 && GetClientRect(s_hwnd, &roct))
2450 {
2451 x = trect.left - rct.left;
2452 y = (trect.top - rct.bottom + roct.bottom);
2453 }
2454 else
2455 {
2456 x = y = 0xffffL;
2457 }
2458 DestroyWindow(thwnd);
2459 if (menu->children != NULL)
2460 {
2461 gui_mch_tearoff(tbuf, menu, x, y);
2462 if (IsWindow(menu->tearoff_handle))
2463 (void) SetWindowPos(menu->tearoff_handle,
2464 NULL,
2465 (int)trect.left,
2466 (int)trect.top,
2467 0, 0,
2468 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
2469 }
2470}
2471#endif /* FEAT_TEAROFF */
2472
2473/*
2474 * Make a menu either grey or not grey.
2475 */
2476 void
2477gui_mch_menu_grey(
2478 vimmenu_T *menu,
2479 int grey)
2480{
2481#ifdef FEAT_TOOLBAR
2482 /*
2483 * is this a toolbar button?
2484 */
2485 if (menu->submenu_id == (HMENU)-1)
2486 {
2487 SendMessage(s_toolbarhwnd, TB_ENABLEBUTTON,
2488 (WPARAM)menu->id, (LPARAM) MAKELONG((grey ? FALSE : TRUE), 0) );
2489 }
2490 else
2491#endif
2492 if (grey)
2493 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_GRAYED);
2494 else
2495 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_ENABLED);
2496
2497#ifdef FEAT_TEAROFF
2498 if ((menu->parent != NULL) && (IsWindow(menu->parent->tearoff_handle)))
2499 {
2500 WORD menuID;
2501 HWND menuHandle;
2502
2503 /*
2504 * A tearoff button has changed state.
2505 */
2506 if (menu->children == NULL)
2507 menuID = (WORD)(menu->id);
2508 else
2509 menuID = (WORD)((DWORD)(menu->submenu_id) | (DWORD)0x8000);
2510 menuHandle = GetDlgItem(menu->parent->tearoff_handle, menuID);
2511 if (menuHandle)
2512 EnableWindow(menuHandle, !grey);
2513
2514 }
2515#endif
2516}
2517
2518#endif /* FEAT_MENU */
2519
2520
2521/* define some macros used to make the dialogue creation more readable */
2522
2523#define add_string(s) strcpy((LPSTR)p, s); (LPSTR)p += (strlen((LPSTR)p) + 1)
2524#define add_word(x) *p++ = (x)
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002525#define add_long(x) dwp = (DWORD *)p; *dwp++ = (x); p = (WORD *)dwp
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526
2527#if defined(FEAT_GUI_DIALOG) || defined(PROTO)
2528/*
2529 * stuff for dialogs
2530 */
2531
2532/*
2533 * The callback routine used by all the dialogs. Very simple. First,
2534 * acknowledges the INITDIALOG message so that Windows knows to do standard
2535 * dialog stuff (Return = default, Esc = cancel....) Second, if a button is
2536 * pressed, return that button's ID - IDCANCEL (2), which is the button's
2537 * number.
2538 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002539/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 static LRESULT CALLBACK
2541dialog_callback(
2542 HWND hwnd,
2543 UINT message,
2544 WPARAM wParam,
2545 LPARAM lParam)
2546{
2547 if (message == WM_INITDIALOG)
2548 {
2549 CenterWindow(hwnd, GetWindow(hwnd, GW_OWNER));
2550 /* Set focus to the dialog. Set the default button, if specified. */
2551 (void)SetFocus(hwnd);
2552 if (dialog_default_button > IDCANCEL)
2553 (void)SetFocus(GetDlgItem(hwnd, dialog_default_button));
2554 return FALSE;
2555 }
2556
2557 if (message == WM_COMMAND)
2558 {
2559 int button = LOWORD(wParam);
2560
2561 /* Don't end the dialog if something was selected that was
2562 * not a button.
2563 */
2564 if (button >= DLG_NONBUTTON_CONTROL)
2565 return TRUE;
2566
2567 /* If the edit box exists, copy the string. */
2568 if (s_textfield != NULL)
2569 GetDlgItemText(hwnd, DLG_NONBUTTON_CONTROL + 2,
2570 s_textfield, IOSIZE);
2571
2572 /*
2573 * Need to check for IDOK because if the user just hits Return to
2574 * accept the default value, some reason this is what we get.
2575 */
2576 if (button == IDOK)
2577 {
2578 if (dialog_default_button > IDCANCEL)
2579 EndDialog(hwnd, dialog_default_button);
2580 }
2581 else
2582 EndDialog(hwnd, button - IDCANCEL);
2583 return TRUE;
2584 }
2585
2586 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
2587 {
2588 EndDialog(hwnd, 0);
2589 return TRUE;
2590 }
2591 return FALSE;
2592}
2593
2594/*
2595 * Create a dialog dynamically from the parameter strings.
2596 * type = type of dialog (question, alert, etc.)
2597 * title = dialog title. may be NULL for default title.
2598 * message = text to display. Dialog sizes to accommodate it.
2599 * buttons = '\n' separated list of button captions, default first.
2600 * dfltbutton = number of default button.
2601 *
2602 * This routine returns 1 if the first button is pressed,
2603 * 2 for the second, etc.
2604 *
2605 * 0 indicates Esc was pressed.
2606 * -1 for unexpected error
2607 *
2608 * If stubbing out this fn, return 1.
2609 */
2610
2611static const char_u *dlg_icons[] = /* must match names in resource file */
2612{
2613 "IDR_VIM",
2614 "IDR_VIM_ERROR",
2615 "IDR_VIM_ALERT",
2616 "IDR_VIM_INFO",
2617 "IDR_VIM_QUESTION"
2618};
2619
2620#ifdef USE_SYSMENU_FONT
2621/*
2622 * Get Menu Font.
2623 * Return OK or FAIL.
2624 */
2625 static int
2626gui_w32_get_menu_font(LOGFONT *lf)
2627{
2628 NONCLIENTMETRICS nm;
2629
2630 nm.cbSize = sizeof(NONCLIENTMETRICS);
2631 if (!SystemParametersInfo(
2632 SPI_GETNONCLIENTMETRICS,
2633 sizeof(NONCLIENTMETRICS),
2634 &nm,
2635 0))
2636 return FAIL;
2637 *lf = nm.lfMenuFont;
2638 return OK;
2639}
2640#endif
2641
2642 int
2643gui_mch_dialog(
2644 int type,
2645 char_u *title,
2646 char_u *message,
2647 char_u *buttons,
2648 int dfltbutton,
2649 char_u *textfield)
2650{
2651 WORD *p, *pdlgtemplate, *pnumitems;
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002652 DWORD *dwp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 int numButtons;
2654 int *buttonWidths, *buttonPositions;
2655 int buttonYpos;
2656 int nchar, i;
2657 DWORD lStyle;
2658 int dlgwidth = 0;
2659 int dlgheight;
2660 int editboxheight;
2661 int horizWidth = 0;
2662 int msgheight;
2663 char_u *pstart;
2664 char_u *pend;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002665 char_u *last_white;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 char_u *tbuffer;
2667 RECT rect;
2668 HWND hwnd;
2669 HDC hdc;
2670 HFONT font, oldFont;
2671 TEXTMETRIC fontInfo;
2672 int fontHeight;
2673 int textWidth, minButtonWidth, messageWidth;
2674 int maxDialogWidth;
Bram Moolenaar748bf032005-02-02 23:04:36 +00002675 int maxDialogHeight;
2676 int scroll_flag = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 int vertical;
2678 int dlgPaddingX;
2679 int dlgPaddingY;
2680#ifdef USE_SYSMENU_FONT
2681 LOGFONT lfSysmenu;
2682 int use_lfSysmenu = FALSE;
2683#endif
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002684 garray_T ga;
2685 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686
2687#ifndef NO_CONSOLE
2688 /* Don't output anything in silent mode ("ex -s") */
2689 if (silent_mode)
2690 return dfltbutton; /* return default option */
2691#endif
2692
Bram Moolenaar748bf032005-02-02 23:04:36 +00002693#if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 /* If there is no window yet, open it. */
2695 if (s_hwnd == NULL && gui_mch_init() == FAIL)
2696 return dfltbutton;
Bram Moolenaar748bf032005-02-02 23:04:36 +00002697#else
2698 if (s_hwnd == NULL)
2699 get_dialog_font_metrics();
2700#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701
2702 if ((type < 0) || (type > VIM_LAST_TYPE))
2703 type = 0;
2704
2705 /* allocate some memory for dialog template */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002706 /* TODO should compute this really */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002707 pdlgtemplate = p = (PWORD)LocalAlloc(LPTR,
2708 DLG_ALLOC_SIZE + STRLEN(message));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709
2710 if (p == NULL)
2711 return -1;
2712
2713 /*
2714 * make a copy of 'buttons' to fiddle with it. complier grizzles because
2715 * vim_strsave() doesn't take a const arg (why not?), so cast away the
2716 * const.
2717 */
2718 tbuffer = vim_strsave(buttons);
2719 if (tbuffer == NULL)
2720 return -1;
2721
2722 --dfltbutton; /* Change from one-based to zero-based */
2723
2724 /* Count buttons */
2725 numButtons = 1;
2726 for (i = 0; tbuffer[i] != '\0'; i++)
2727 {
2728 if (tbuffer[i] == DLG_BUTTON_SEP)
2729 numButtons++;
2730 }
2731 if (dfltbutton >= numButtons)
2732 dfltbutton = -1;
2733
2734 /* Allocate array to hold the width of each button */
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002735 buttonWidths = (int *)lalloc(numButtons * sizeof(int), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 if (buttonWidths == NULL)
2737 return -1;
2738
2739 /* Allocate array to hold the X position of each button */
Bram Moolenaarc54b8a72005-09-30 21:20:29 +00002740 buttonPositions = (int *)lalloc(numButtons * sizeof(int), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 if (buttonPositions == NULL)
2742 return -1;
2743
2744 /*
2745 * Calculate how big the dialog must be.
2746 */
2747 hwnd = GetDesktopWindow();
2748 hdc = GetWindowDC(hwnd);
2749#ifdef USE_SYSMENU_FONT
2750 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
2751 {
2752 font = CreateFontIndirect(&lfSysmenu);
2753 use_lfSysmenu = TRUE;
2754 }
2755 else
2756#endif
2757 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2758 VARIABLE_PITCH , DLG_FONT_NAME);
2759 if (s_usenewlook)
2760 {
2761 oldFont = SelectFont(hdc, font);
2762 dlgPaddingX = DLG_PADDING_X;
2763 dlgPaddingY = DLG_PADDING_Y;
2764 }
2765 else
2766 {
2767 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
2768 dlgPaddingX = DLG_OLD_STYLE_PADDING_X;
2769 dlgPaddingY = DLG_OLD_STYLE_PADDING_Y;
2770 }
2771 GetTextMetrics(hdc, &fontInfo);
2772 fontHeight = fontInfo.tmHeight;
2773
2774 /* Minimum width for horizontal button */
2775 minButtonWidth = GetTextWidth(hdc, "Cancel", 6);
2776
2777 /* Maximum width of a dialog, if possible */
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002778 if (s_hwnd == NULL)
2779 {
2780 RECT workarea_rect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002782 /* We don't have a window, use the desktip area. */
2783 get_work_area(&workarea_rect);
2784 maxDialogWidth = workarea_rect.right - workarea_rect.left - 100;
2785 if (maxDialogWidth > 600)
2786 maxDialogWidth = 600;
2787 maxDialogHeight = workarea_rect.bottom - workarea_rect.top - 100;
2788 }
2789 else
2790 {
2791 /* Use our own window for the size, unless it's very small. */
2792 GetWindowRect(s_hwnd, &rect);
2793 maxDialogWidth = rect.right - rect.left
2794 - GetSystemMetrics(SM_CXFRAME) * 2;
2795 if (maxDialogWidth < DLG_MIN_MAX_WIDTH)
2796 maxDialogWidth = DLG_MIN_MAX_WIDTH;
Bram Moolenaar748bf032005-02-02 23:04:36 +00002797
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002798 maxDialogHeight = rect.bottom - rect.top
2799 - GetSystemMetrics(SM_CXFRAME) * 2;
2800 if (maxDialogHeight < DLG_MIN_MAX_HEIGHT)
2801 maxDialogHeight = DLG_MIN_MAX_HEIGHT;
2802 }
2803
2804 /* Set dlgwidth to width of message.
2805 * Copy the message into "ga", changing NL to CR-NL and inserting line
2806 * breaks where needed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 pstart = message;
2808 messageWidth = 0;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002809 msgheight = 0;
2810 ga_init2(&ga, sizeof(char), 500);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 do
2812 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002813 msgheight += fontHeight; /* at least one line */
2814
2815 /* Need to figure out where to break the string. The system does it
2816 * at a word boundary, which would mean we can't compute the number of
2817 * wrapped lines. */
2818 textWidth = 0;
2819 last_white = NULL;
2820 for (pend = pstart; *pend != NUL && *pend != '\n'; )
Bram Moolenaar748bf032005-02-02 23:04:36 +00002821 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002822#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002823 l = (*mb_ptr2len)(pend);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002824#else
2825 l = 1;
2826#endif
2827 if (l == 1 && vim_iswhite(*pend)
2828 && textWidth > maxDialogWidth * 3 / 4)
2829 last_white = pend;
2830 textWidth += GetTextWidth(hdc, pend, l);
2831 if (textWidth >= maxDialogWidth)
Bram Moolenaar748bf032005-02-02 23:04:36 +00002832 {
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002833 /* Line will wrap. */
2834 messageWidth = maxDialogWidth;
Bram Moolenaar748bf032005-02-02 23:04:36 +00002835 msgheight += fontHeight;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002836 textWidth = 0;
2837
2838 if (last_white != NULL)
2839 {
2840 /* break the line just after a space */
2841 ga.ga_len -= pend - (last_white + 1);
2842 pend = last_white + 1;
2843 last_white = NULL;
2844 }
2845 ga_append(&ga, '\r');
2846 ga_append(&ga, '\n');
2847 continue;
Bram Moolenaar748bf032005-02-02 23:04:36 +00002848 }
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002849
2850 while (--l >= 0)
2851 ga_append(&ga, *pend++);
Bram Moolenaar748bf032005-02-02 23:04:36 +00002852 }
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002853 if (textWidth > messageWidth)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854 messageWidth = textWidth;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002855
2856 ga_append(&ga, '\r');
2857 ga_append(&ga, '\n');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 pstart = pend + 1;
2859 } while (*pend != NUL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00002860
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002861 if (ga.ga_data != NULL)
2862 message = ga.ga_data;
2863
Bram Moolenaar748bf032005-02-02 23:04:36 +00002864 messageWidth += 10; /* roundoff space */
2865
2866 /* Restrict the size to a maximum. Causes a scrollbar to show up. */
2867 if (msgheight > maxDialogHeight)
2868 {
2869 msgheight = maxDialogHeight;
2870 scroll_flag = WS_VSCROLL;
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002871 messageWidth += GetSystemMetrics(SM_CXVSCROLL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00002872 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873
2874 /* Add width of icon to dlgwidth, and some space */
Bram Moolenaar748bf032005-02-02 23:04:36 +00002875 dlgwidth = messageWidth + DLG_ICON_WIDTH + 3 * dlgPaddingX;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876
2877 if (msgheight < DLG_ICON_HEIGHT)
2878 msgheight = DLG_ICON_HEIGHT;
2879
2880 /*
2881 * Check button names. A long one will make the dialog wider.
2882 */
2883 vertical = (vim_strchr(p_go, GO_VERTICAL) != NULL);
2884 if (!vertical)
2885 {
2886 // Place buttons horizontally if they fit.
2887 horizWidth = dlgPaddingX;
2888 pstart = tbuffer;
2889 i = 0;
2890 do
2891 {
2892 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
2893 if (pend == NULL)
2894 pend = pstart + STRLEN(pstart); // Last button name.
2895 textWidth = GetTextWidth(hdc, pstart, (int)(pend - pstart));
2896 if (textWidth < minButtonWidth)
2897 textWidth = minButtonWidth;
2898 textWidth += dlgPaddingX; /* Padding within button */
2899 buttonWidths[i] = textWidth;
2900 buttonPositions[i++] = horizWidth;
2901 horizWidth += textWidth + dlgPaddingX; /* Pad between buttons */
2902 pstart = pend + 1;
2903 } while (*pend != NUL);
2904
2905 if (horizWidth > maxDialogWidth)
2906 vertical = TRUE; // Too wide to fit on the screen.
2907 else if (horizWidth > dlgwidth)
2908 dlgwidth = horizWidth;
2909 }
2910
2911 if (vertical)
2912 {
2913 // Stack buttons vertically.
2914 pstart = tbuffer;
2915 do
2916 {
2917 pend = vim_strchr(pstart, DLG_BUTTON_SEP);
2918 if (pend == NULL)
2919 pend = pstart + STRLEN(pstart); // Last button name.
2920 textWidth = GetTextWidth(hdc, pstart, (int)(pend - pstart));
2921 textWidth += dlgPaddingX; /* Padding within button */
2922 textWidth += DLG_VERT_PADDING_X * 2; /* Padding around button */
2923 if (textWidth > dlgwidth)
2924 dlgwidth = textWidth;
2925 pstart = pend + 1;
2926 } while (*pend != NUL);
2927 }
2928
2929 if (dlgwidth < DLG_MIN_WIDTH)
2930 dlgwidth = DLG_MIN_WIDTH; /* Don't allow a really thin dialog!*/
2931
2932 /* start to fill in the dlgtemplate information. addressing by WORDs */
2933 if (s_usenewlook)
2934 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE |DS_SETFONT;
2935 else
2936 lStyle = DS_MODALFRAME | WS_CAPTION |DS_3DLOOK| WS_VISIBLE;
2937
2938 add_long(lStyle);
2939 add_long(0); // (lExtendedStyle)
2940 pnumitems = p; /*save where the number of items must be stored*/
2941 add_word(0); // NumberOfItems(will change later)
2942 add_word(10); // x
2943 add_word(10); // y
2944 add_word(PixelToDialogX(dlgwidth)); // cx
2945
2946 // Dialog height.
2947 if (vertical)
2948 dlgheight = msgheight + 2 * dlgPaddingY +
2949 DLG_VERT_PADDING_Y + 2 * fontHeight * numButtons;
2950 else
2951 dlgheight = msgheight + 3 * dlgPaddingY + 2 * fontHeight;
2952
2953 // Dialog needs to be taller if contains an edit box.
2954 editboxheight = fontHeight + dlgPaddingY + 4 * DLG_VERT_PADDING_Y;
2955 if (textfield != NULL)
2956 dlgheight += editboxheight;
2957
2958 add_word(PixelToDialogY(dlgheight));
2959
2960 add_word(0); // Menu
2961 add_word(0); // Class
2962
2963 /* copy the title of the dialog */
2964 nchar = nCopyAnsiToWideChar(p, (title ?
2965 (LPSTR)title :
2966 (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
2967 p += nchar;
2968
2969 if (s_usenewlook)
2970 {
2971 /* do the font, since DS_3DLOOK doesn't work properly */
2972#ifdef USE_SYSMENU_FONT
2973 if (use_lfSysmenu)
2974 {
2975 /* point size */
2976 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
2977 GetDeviceCaps(hdc, LOGPIXELSY));
2978 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
2979 }
2980 else
2981#endif
2982 {
2983 *p++ = DLG_FONT_POINT_SIZE; // point size
2984 nchar = nCopyAnsiToWideChar(p, TEXT(DLG_FONT_NAME));
2985 }
2986 p += nchar;
2987 }
2988
2989 buttonYpos = msgheight + 2 * dlgPaddingY;
2990
2991 if (textfield != NULL)
2992 buttonYpos += editboxheight;
2993
2994 pstart = tbuffer;
2995 if (!vertical)
2996 horizWidth = (dlgwidth - horizWidth) / 2; /* Now it's X offset */
2997 for (i = 0; i < numButtons; i++)
2998 {
2999 /* get end of this button. */
3000 for ( pend = pstart;
3001 *pend && (*pend != DLG_BUTTON_SEP);
3002 pend++)
3003 ;
3004
3005 if (*pend)
3006 *pend = '\0';
3007
3008 /*
3009 * old NOTE:
3010 * setting the BS_DEFPUSHBUTTON style doesn't work because Windows sets
3011 * the focus to the first tab-able button and in so doing makes that
3012 * the default!! Grrr. Workaround: Make the default button the only
3013 * one with WS_TABSTOP style. Means user can't tab between buttons, but
3014 * he/she can use arrow keys.
3015 *
3016 * new NOTE: BS_DEFPUSHBUTTON is required to be able to select the
3017 * right buttun when hitting <Enter>. E.g., for the ":confirm quit"
3018 * dialog. Also needed for when the textfield is the default control.
3019 * It appears to work now (perhaps not on Win95?).
3020 */
3021 if (vertical)
3022 {
3023 p = add_dialog_element(p,
3024 (i == dfltbutton
3025 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
3026 PixelToDialogX(DLG_VERT_PADDING_X),
3027 PixelToDialogY(buttonYpos /* TBK */
3028 + 2 * fontHeight * i),
3029 PixelToDialogX(dlgwidth - 2 * DLG_VERT_PADDING_X),
3030 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
3031 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, pstart);
3032 }
3033 else
3034 {
3035 p = add_dialog_element(p,
3036 (i == dfltbutton
3037 ? BS_DEFPUSHBUTTON : BS_PUSHBUTTON) | WS_TABSTOP,
3038 PixelToDialogX(horizWidth + buttonPositions[i]),
3039 PixelToDialogY(buttonYpos), /* TBK */
3040 PixelToDialogX(buttonWidths[i]),
3041 (WORD)(PixelToDialogY(2 * fontHeight) - 1),
3042 (WORD)(IDCANCEL + 1 + i), (WORD)0x0080, pstart);
3043 }
3044 pstart = pend + 1; /*next button*/
3045 }
3046 *pnumitems += numButtons;
3047
3048 /* Vim icon */
3049 p = add_dialog_element(p, SS_ICON,
3050 PixelToDialogX(dlgPaddingX),
3051 PixelToDialogY(dlgPaddingY),
3052 PixelToDialogX(DLG_ICON_WIDTH),
3053 PixelToDialogY(DLG_ICON_HEIGHT),
3054 DLG_NONBUTTON_CONTROL + 0, (WORD)0x0082,
3055 dlg_icons[type]);
3056
Bram Moolenaar748bf032005-02-02 23:04:36 +00003057#if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 /* Dialog message */
3059 p = add_dialog_element(p, SS_LEFT,
3060 PixelToDialogX(2 * dlgPaddingX + DLG_ICON_WIDTH),
3061 PixelToDialogY(dlgPaddingY),
3062 (WORD)(PixelToDialogX(messageWidth) + 1),
3063 PixelToDialogY(msgheight),
3064 DLG_NONBUTTON_CONTROL + 1, (WORD)0x0082, message);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003065#else
3066 /* Dialog message */
3067 p = add_dialog_element(p, ES_LEFT|scroll_flag|ES_MULTILINE|ES_READONLY,
3068 PixelToDialogX(2 * dlgPaddingX + DLG_ICON_WIDTH),
3069 PixelToDialogY(dlgPaddingY),
3070 (WORD)(PixelToDialogX(messageWidth) + 1),
3071 PixelToDialogY(msgheight),
3072 DLG_NONBUTTON_CONTROL + 1, (WORD)0x0081, message);
3073#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074
3075 /* Edit box */
3076 if (textfield != NULL)
3077 {
3078 p = add_dialog_element(p, ES_LEFT|ES_AUTOHSCROLL|WS_TABSTOP|WS_BORDER,
3079 PixelToDialogX(2 * dlgPaddingX),
3080 PixelToDialogY(2 * dlgPaddingY + msgheight),
3081 PixelToDialogX(dlgwidth - 4 * dlgPaddingX),
3082 PixelToDialogY(fontHeight + dlgPaddingY),
3083 DLG_NONBUTTON_CONTROL + 2, (WORD)0x0081, textfield);
3084 *pnumitems += 1;
3085 }
3086
3087 *pnumitems += 2;
3088
3089 SelectFont(hdc, oldFont);
3090 DeleteObject(font);
3091 ReleaseDC(hwnd, hdc);
3092
3093 /* Let the dialog_callback() function know which button to make default
3094 * If we have an edit box, make that the default. We also need to tell
3095 * dialog_callback() if this dialog contains an edit box or not. We do
3096 * this by setting s_textfield if it does.
3097 */
3098 if (textfield != NULL)
3099 {
3100 dialog_default_button = DLG_NONBUTTON_CONTROL + 2;
3101 s_textfield = textfield;
3102 }
3103 else
3104 {
3105 dialog_default_button = IDCANCEL + 1 + dfltbutton;
3106 s_textfield = NULL;
3107 }
3108
3109 /* show the dialog box modally and get a return value */
3110 nchar = (int)DialogBoxIndirect(
3111 s_hinst,
3112 (LPDLGTEMPLATE)pdlgtemplate,
3113 s_hwnd,
3114 (DLGPROC)dialog_callback);
3115
3116 LocalFree(LocalHandle(pdlgtemplate));
3117 vim_free(tbuffer);
3118 vim_free(buttonWidths);
3119 vim_free(buttonPositions);
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00003120 vim_free(ga.ga_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121
3122 /* Focus back to our window (for when MDI is used). */
3123 (void)SetFocus(s_hwnd);
3124
3125 return nchar;
3126}
3127
3128#endif /* FEAT_GUI_DIALOG */
3129/*
3130 * Put a simple element (basic class) onto a dialog template in memory.
3131 * return a pointer to where the next item should be added.
3132 *
3133 * parameters:
3134 * lStyle = additional style flags
3135 * (be careful, NT3.51 & Win32s will ignore the new ones)
3136 * x,y = x & y positions IN DIALOG UNITS
3137 * w,h = width and height IN DIALOG UNITS
3138 * Id = ID used in messages
3139 * clss = class ID, e.g 0x0080 for a button, 0x0082 for a static
3140 * caption = usually text or resource name
3141 *
3142 * TODO: use the length information noted here to enable the dialog creation
3143 * routines to work out more exactly how much memory they need to alloc.
3144 */
3145 static PWORD
3146add_dialog_element(
3147 PWORD p,
3148 DWORD lStyle,
3149 WORD x,
3150 WORD y,
3151 WORD w,
3152 WORD h,
3153 WORD Id,
3154 WORD clss,
3155 const char *caption)
3156{
3157 int nchar;
3158
3159 p = lpwAlign(p); /* Align to dword boundary*/
3160 lStyle = lStyle | WS_VISIBLE | WS_CHILD;
3161 *p++ = LOWORD(lStyle);
3162 *p++ = HIWORD(lStyle);
3163 *p++ = 0; // LOWORD (lExtendedStyle)
3164 *p++ = 0; // HIWORD (lExtendedStyle)
3165 *p++ = x;
3166 *p++ = y;
3167 *p++ = w;
3168 *p++ = h;
3169 *p++ = Id; //9 or 10 words in all
3170
3171 *p++ = (WORD)0xffff;
3172 *p++ = clss; //2 more here
3173
3174 nchar = nCopyAnsiToWideChar(p, (LPSTR)caption); //strlen(caption)+1
3175 p += nchar;
3176
3177 *p++ = 0; // advance pointer over nExtraStuff WORD - 2 more
3178
3179 return p; //total = 15+ (strlen(caption)) words
3180 // = 30 + 2(strlen(caption) bytes reqd
3181}
3182
3183
3184/*
3185 * Helper routine. Take an input pointer, return closest pointer that is
3186 * aligned on a DWORD (4 byte) boundary. Taken from the Win32SDK samples.
3187 */
3188 static LPWORD
3189lpwAlign(
3190 LPWORD lpIn)
3191{
3192 ULONG ul;
3193
3194 ul = (ULONG)lpIn;
3195 ul += 3;
3196 ul >>= 2;
3197 ul <<= 2;
3198 return (LPWORD)ul;
3199}
3200
3201/*
3202 * Helper routine. Takes second parameter as Ansi string, copies it to first
3203 * parameter as wide character (16-bits / char) string, and returns integer
3204 * number of wide characters (words) in string (including the trailing wide
3205 * char NULL). Partly taken from the Win32SDK samples.
3206 */
3207 static int
3208nCopyAnsiToWideChar(
3209 LPWORD lpWCStr,
3210 LPSTR lpAnsiIn)
3211{
3212 int nChar = 0;
3213#ifdef FEAT_MBYTE
3214 int len = lstrlen(lpAnsiIn) + 1; /* include NUL character */
3215 int i;
3216 WCHAR *wn;
3217
3218 if (enc_codepage == 0 && (int)GetACP() != enc_codepage)
3219 {
3220 /* Not a codepage, use our own conversion function. */
3221 wn = enc_to_ucs2(lpAnsiIn, NULL);
3222 if (wn != NULL)
3223 {
3224 wcscpy(lpWCStr, wn);
3225 nChar = wcslen(wn) + 1;
3226 vim_free(wn);
3227 }
3228 }
3229 if (nChar == 0)
3230 /* Use Win32 conversion function. */
3231 nChar = MultiByteToWideChar(
3232 enc_codepage > 0 ? enc_codepage : CP_ACP,
3233 MB_PRECOMPOSED,
3234 lpAnsiIn, len,
3235 lpWCStr, len);
3236 for (i = 0; i < nChar; ++i)
3237 if (lpWCStr[i] == (WORD)'\t') /* replace tabs with spaces */
3238 lpWCStr[i] = (WORD)' ';
3239#else
3240 do
3241 {
3242 if (*lpAnsiIn == '\t')
3243 *lpWCStr++ = (WORD)' ';
3244 else
3245 *lpWCStr++ = (WORD)*lpAnsiIn;
3246 nChar++;
3247 } while (*lpAnsiIn++);
3248#endif
3249
3250 return nChar;
3251}
3252
3253
3254#ifdef FEAT_TEAROFF
3255/*
3256 * The callback function for all the modeless dialogs that make up the
3257 * "tearoff menus" Very simple - forward button presses (to fool Vim into
3258 * thinking its menus have been clicked), and go away when closed.
3259 */
3260 static LRESULT CALLBACK
3261tearoff_callback(
3262 HWND hwnd,
3263 UINT message,
3264 WPARAM wParam,
3265 LPARAM lParam)
3266{
3267 if (message == WM_INITDIALOG)
3268 return (TRUE);
3269
3270 /* May show the mouse pointer again. */
3271 HandleMouseHide(message, lParam);
3272
3273 if (message == WM_COMMAND)
3274 {
3275 if ((WORD)(LOWORD(wParam)) & 0x8000)
3276 {
3277 POINT mp;
3278 RECT rect;
3279
3280 if (GetCursorPos(&mp) && GetWindowRect(hwnd, &rect))
3281 {
3282 (void)TrackPopupMenu(
3283 (HMENU)(LOWORD(wParam) ^ 0x8000),
3284 TPM_LEFTALIGN | TPM_LEFTBUTTON,
3285 (int)rect.right - 8,
3286 (int)mp.y,
3287 (int)0, /*reserved param*/
3288 s_hwnd,
3289 NULL);
3290 /*
3291 * NOTE: The pop-up menu can eat the mouse up event.
3292 * We deal with this in normal.c.
3293 */
3294 }
3295 }
3296 else
3297 /* Pass on messages to the main Vim window */
3298 PostMessage(s_hwnd, WM_COMMAND, LOWORD(wParam), 0);
3299 /*
3300 * Give main window the focus back: this is so after
3301 * choosing a tearoff button you can start typing again
3302 * straight away.
3303 */
3304 (void)SetFocus(s_hwnd);
3305 return TRUE;
3306 }
3307 if ((message == WM_SYSCOMMAND) && (wParam == SC_CLOSE))
3308 {
3309 DestroyWindow(hwnd);
3310 return TRUE;
3311 }
3312
3313 /* When moved around, give main window the focus back. */
3314 if (message == WM_EXITSIZEMOVE)
3315 (void)SetActiveWindow(s_hwnd);
3316
3317 return FALSE;
3318}
3319#endif
3320
3321
3322/*
3323 * Decide whether to use the "new look" (small, non-bold font) or the "old
3324 * look" (big, clanky font) for dialogs, and work out a few values for use
3325 * later accordingly.
3326 */
3327 static void
3328get_dialog_font_metrics(void)
3329{
3330 HDC hdc;
3331 HFONT hfontTools = 0;
3332 DWORD dlgFontSize;
3333 SIZE size;
3334#ifdef USE_SYSMENU_FONT
3335 LOGFONT lfSysmenu;
3336#endif
3337
3338 s_usenewlook = FALSE;
3339
3340 /*
3341 * For NT3.51 and Win32s, we stick with the old look
3342 * because it matches everything else.
3343 */
3344 if (!is_winnt_3())
3345 {
3346#ifdef USE_SYSMENU_FONT
3347 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3348 hfontTools = CreateFontIndirect(&lfSysmenu);
3349 else
3350#endif
3351 hfontTools = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0,
3352 0, 0, 0, 0, VARIABLE_PITCH , DLG_FONT_NAME);
3353
3354 if (hfontTools)
3355 {
3356 hdc = GetDC(s_hwnd);
3357 SelectObject(hdc, hfontTools);
3358 /*
3359 * GetTextMetrics() doesn't return the right value in
3360 * tmAveCharWidth, so we have to figure out the dialog base units
3361 * ourselves.
3362 */
3363 GetTextExtentPoint(hdc,
3364 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
3365 52, &size);
3366 ReleaseDC(s_hwnd, hdc);
3367
3368 s_dlgfntwidth = (WORD)((size.cx / 26 + 1) / 2);
3369 s_dlgfntheight = (WORD)size.cy;
3370 s_usenewlook = TRUE;
3371 }
3372 }
3373
3374 if (!s_usenewlook)
3375 {
3376 dlgFontSize = GetDialogBaseUnits(); /* fall back to big old system*/
3377 s_dlgfntwidth = LOWORD(dlgFontSize);
3378 s_dlgfntheight = HIWORD(dlgFontSize);
3379 }
3380}
3381
3382#if defined(FEAT_MENU) && defined(FEAT_TEAROFF)
3383/*
3384 * Create a pseudo-"tearoff menu" based on the child
3385 * items of a given menu pointer.
3386 */
3387 static void
3388gui_mch_tearoff(
3389 char_u *title,
3390 vimmenu_T *menu,
3391 int initX,
3392 int initY)
3393{
3394 WORD *p, *pdlgtemplate, *pnumitems, *ptrueheight;
3395 int template_len;
3396 int nchar, textWidth, submenuWidth;
3397 DWORD lStyle;
3398 DWORD lExtendedStyle;
3399 WORD dlgwidth;
3400 WORD menuID;
3401 vimmenu_T *pmenu;
3402 vimmenu_T *the_menu = menu;
3403 HWND hwnd;
3404 HDC hdc;
3405 HFONT font, oldFont;
3406 int col, spaceWidth, len;
3407 int columnWidths[2];
3408 char_u *label, *text;
3409 int acLen = 0;
3410 int nameLen;
3411 int padding0, padding1, padding2 = 0;
3412 int sepPadding=0;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003413 int x;
3414 int y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415#ifdef USE_SYSMENU_FONT
3416 LOGFONT lfSysmenu;
3417 int use_lfSysmenu = FALSE;
3418#endif
3419
3420 /*
3421 * If this menu is already torn off, move it to the mouse position.
3422 */
3423 if (IsWindow(menu->tearoff_handle))
3424 {
3425 POINT mp;
3426 if (GetCursorPos((LPPOINT)&mp))
3427 {
3428 SetWindowPos(menu->tearoff_handle, NULL, mp.x, mp.y, 0, 0,
3429 SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER);
3430 }
3431 return;
3432 }
3433
3434 /*
3435 * Create a new tearoff.
3436 */
3437 if (*title == MNU_HIDDEN_CHAR)
3438 title++;
3439
3440 /* Allocate memory to store the dialog template. It's made bigger when
3441 * needed. */
3442 template_len = DLG_ALLOC_SIZE;
3443 pdlgtemplate = p = (WORD *)LocalAlloc(LPTR, template_len);
3444 if (p == NULL)
3445 return;
3446
3447 hwnd = GetDesktopWindow();
3448 hdc = GetWindowDC(hwnd);
3449#ifdef USE_SYSMENU_FONT
3450 if (gui_w32_get_menu_font(&lfSysmenu) == OK)
3451 {
3452 font = CreateFontIndirect(&lfSysmenu);
3453 use_lfSysmenu = TRUE;
3454 }
3455 else
3456#endif
3457 font = CreateFont(-DLG_FONT_POINT_SIZE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3458 VARIABLE_PITCH , DLG_FONT_NAME);
3459 if (s_usenewlook)
3460 oldFont = SelectFont(hdc, font);
3461 else
3462 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT));
3463
3464 /* Calculate width of a single space. Used for padding columns to the
3465 * right width. */
3466 spaceWidth = GetTextWidth(hdc, " ", 1);
3467
3468 /* Figure out max width of the text column, the accelerator column and the
3469 * optional submenu column. */
3470 submenuWidth = 0;
3471 for (col = 0; col < 2; col++)
3472 {
3473 columnWidths[col] = 0;
3474 for (pmenu = menu->children; pmenu != NULL; pmenu = pmenu->next)
3475 {
3476 /* Use "dname" here to compute the width of the visible text. */
3477 text = (col == 0) ? pmenu->dname : pmenu->actext;
3478 if (text != NULL && *text != NUL)
3479 {
3480 textWidth = GetTextWidthEnc(hdc, text, (int)STRLEN(text));
3481 if (textWidth > columnWidths[col])
3482 columnWidths[col] = textWidth;
3483 }
3484 if (pmenu->children != NULL)
3485 submenuWidth = TEAROFF_COLUMN_PADDING * spaceWidth;
3486 }
3487 }
3488 if (columnWidths[1] == 0)
3489 {
3490 /* no accelerators */
3491 if (submenuWidth != 0)
3492 columnWidths[0] += submenuWidth;
3493 else
3494 columnWidths[0] += spaceWidth;
3495 }
3496 else
3497 {
3498 /* there is an accelerator column */
3499 columnWidths[0] += TEAROFF_COLUMN_PADDING * spaceWidth;
3500 columnWidths[1] += submenuWidth;
3501 }
3502
3503 /*
3504 * Now find the total width of our 'menu'.
3505 */
3506 textWidth = columnWidths[0] + columnWidths[1];
3507 if (submenuWidth != 0)
3508 {
3509 submenuWidth = GetTextWidth(hdc, TEAROFF_SUBMENU_LABEL,
3510 (int)STRLEN(TEAROFF_SUBMENU_LABEL));
3511 textWidth += submenuWidth;
3512 }
3513 dlgwidth = GetTextWidthEnc(hdc, title, (int)STRLEN(title));
3514 if (textWidth > dlgwidth)
3515 dlgwidth = textWidth;
3516 dlgwidth += 2 * TEAROFF_PADDING_X + TEAROFF_BUTTON_PAD_X;
3517
3518 /* W95 can't do thin dialogs, they look v. weird! */
3519 if (mch_windows95() && dlgwidth < TEAROFF_MIN_WIDTH)
3520 dlgwidth = TEAROFF_MIN_WIDTH;
3521
3522 /* start to fill in the dlgtemplate information. addressing by WORDs */
3523 if (s_usenewlook)
3524 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU |DS_SETFONT| WS_VISIBLE;
3525 else
3526 lStyle = DS_MODALFRAME | WS_CAPTION| WS_SYSMENU | WS_VISIBLE;
3527
3528 lExtendedStyle = WS_EX_TOOLWINDOW|WS_EX_STATICEDGE;
3529 *p++ = LOWORD(lStyle);
3530 *p++ = HIWORD(lStyle);
3531 *p++ = LOWORD(lExtendedStyle);
3532 *p++ = HIWORD(lExtendedStyle);
3533 pnumitems = p; /* save where the number of items must be stored */
3534 *p++ = 0; // NumberOfItems(will change later)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003535 gui_mch_getmouse(&x, &y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 if (initX == 0xffffL)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003537 *p++ = PixelToDialogX(x); // x
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538 else
3539 *p++ = PixelToDialogX(initX); // x
3540 if (initY == 0xffffL)
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003541 *p++ = PixelToDialogY(y); // y
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 else
3543 *p++ = PixelToDialogY(initY); // y
3544 *p++ = PixelToDialogX(dlgwidth); // cx
3545 ptrueheight = p;
3546 *p++ = 0; // dialog height: changed later anyway
3547 *p++ = 0; // Menu
3548 *p++ = 0; // Class
3549
3550 /* copy the title of the dialog */
3551 nchar = nCopyAnsiToWideChar(p, ((*title)
3552 ? (LPSTR)title
3553 : (LPSTR)("Vim "VIM_VERSION_MEDIUM)));
3554 p += nchar;
3555
3556 if (s_usenewlook)
3557 {
3558 /* do the font, since DS_3DLOOK doesn't work properly */
3559#ifdef USE_SYSMENU_FONT
3560 if (use_lfSysmenu)
3561 {
3562 /* point size */
3563 *p++ = -MulDiv(lfSysmenu.lfHeight, 72,
3564 GetDeviceCaps(hdc, LOGPIXELSY));
3565 nchar = nCopyAnsiToWideChar(p, TEXT(lfSysmenu.lfFaceName));
3566 }
3567 else
3568#endif
3569 {
3570 *p++ = DLG_FONT_POINT_SIZE; // point size
3571 nchar = nCopyAnsiToWideChar (p, TEXT(DLG_FONT_NAME));
3572 }
3573 p += nchar;
3574 }
3575
3576 /*
3577 * Loop over all the items in the menu.
3578 * But skip over the tearbar.
3579 */
3580 if (STRCMP(menu->children->name, TEAR_STRING) == 0)
3581 menu = menu->children->next;
3582 else
3583 menu = menu->children;
3584 for ( ; menu != NULL; menu = menu->next)
3585 {
3586 if (menu->modes == 0) /* this menu has just been deleted */
3587 continue;
3588 if (menu_is_separator(menu->dname))
3589 {
3590 sepPadding += 3;
3591 continue;
3592 }
3593
3594 /* Check if there still is plenty of room in the template. Make it
3595 * larger when needed. */
3596 if (((char *)p - (char *)pdlgtemplate) + 1000 > template_len)
3597 {
3598 WORD *newp;
3599
3600 newp = (WORD *)LocalAlloc(LPTR, template_len + 4096);
3601 if (newp != NULL)
3602 {
3603 template_len += 4096;
3604 mch_memmove(newp, pdlgtemplate,
3605 (char *)p - (char *)pdlgtemplate);
3606 p = newp + (p - pdlgtemplate);
3607 pnumitems = newp + (pnumitems - pdlgtemplate);
3608 ptrueheight = newp + (ptrueheight - pdlgtemplate);
3609 LocalFree(LocalHandle(pdlgtemplate));
3610 pdlgtemplate = newp;
3611 }
3612 }
3613
3614 /* Figure out minimal length of this menu label. Use "name" for the
3615 * actual text, "dname" for estimating the displayed size. "name"
3616 * has "&a" for mnemonic and includes the accelerator. */
3617 len = nameLen = (int)STRLEN(menu->name);
3618 padding0 = (columnWidths[0] - GetTextWidthEnc(hdc, menu->dname,
3619 (int)STRLEN(menu->dname))) / spaceWidth;
3620 len += padding0;
3621
3622 if (menu->actext != NULL)
3623 {
3624 acLen = (int)STRLEN(menu->actext);
3625 len += acLen;
3626 textWidth = GetTextWidthEnc(hdc, menu->actext, acLen);
3627 }
3628 else
3629 textWidth = 0;
3630 padding1 = (columnWidths[1] - textWidth) / spaceWidth;
3631 len += padding1;
3632
3633 if (menu->children == NULL)
3634 {
3635 padding2 = submenuWidth / spaceWidth;
3636 len += padding2;
3637 menuID = (WORD)(menu->id);
3638 }
3639 else
3640 {
3641 len += (int)STRLEN(TEAROFF_SUBMENU_LABEL);
3642 menuID = (WORD)((DWORD)(menu->submenu_id) | (DWORD)0x8000);
3643 }
3644
3645 /* Allocate menu label and fill it in */
3646 text = label = alloc((unsigned)len + 1);
3647 if (label == NULL)
3648 break;
3649
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003650 vim_strncpy(text, menu->name, nameLen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 text = vim_strchr(text, TAB); /* stop at TAB before actext */
3652 if (text == NULL)
3653 text = label + nameLen; /* no actext, use whole name */
3654 while (padding0-- > 0)
3655 *text++ = ' ';
3656 if (menu->actext != NULL)
3657 {
3658 STRNCPY(text, menu->actext, acLen);
3659 text += acLen;
3660 }
3661 while (padding1-- > 0)
3662 *text++ = ' ';
3663 if (menu->children != NULL)
3664 {
3665 STRCPY(text, TEAROFF_SUBMENU_LABEL);
3666 text += STRLEN(TEAROFF_SUBMENU_LABEL);
3667 }
3668 else
3669 {
3670 while (padding2-- > 0)
3671 *text++ = ' ';
3672 }
3673 *text = NUL;
3674
3675 /*
3676 * BS_LEFT will just be ignored on Win32s/NT3.5x - on
3677 * W95/NT4 it makes the tear-off look more like a menu.
3678 */
3679 p = add_dialog_element(p,
3680 BS_PUSHBUTTON|BS_LEFT,
3681 (WORD)PixelToDialogX(TEAROFF_PADDING_X),
3682 (WORD)(sepPadding + 1 + 13 * (*pnumitems)),
3683 (WORD)PixelToDialogX(dlgwidth - 2 * TEAROFF_PADDING_X),
3684 (WORD)12,
3685 menuID, (WORD)0x0080, label);
3686 vim_free(label);
3687 (*pnumitems)++;
3688 }
3689
3690 *ptrueheight = (WORD)(sepPadding + 1 + 13 * (*pnumitems));
3691
3692
3693 /* show modelessly */
3694 the_menu->tearoff_handle = CreateDialogIndirect(
3695 s_hinst,
3696 (LPDLGTEMPLATE)pdlgtemplate,
3697 s_hwnd,
3698 (DLGPROC)tearoff_callback);
3699
3700 LocalFree(LocalHandle(pdlgtemplate));
3701 SelectFont(hdc, oldFont);
3702 DeleteObject(font);
3703 ReleaseDC(hwnd, hdc);
3704
3705 /*
3706 * Reassert ourselves as the active window. This is so that after creating
3707 * a tearoff, the user doesn't have to click with the mouse just to start
3708 * typing again!
3709 */
3710 (void)SetActiveWindow(s_hwnd);
3711
3712 /* make sure the right buttons are enabled */
3713 force_menu_update = TRUE;
3714}
3715#endif
3716
3717#if defined(FEAT_TOOLBAR) || defined(PROTO)
3718#include "gui_w32_rc.h"
3719
3720/* This not defined in older SDKs */
3721# ifndef TBSTYLE_FLAT
3722# define TBSTYLE_FLAT 0x0800
3723# endif
3724
3725/*
3726 * Create the toolbar, initially unpopulated.
3727 * (just like the menu, there are no defaults, it's all
3728 * set up through menu.vim)
3729 */
3730 static void
3731initialise_toolbar(void)
3732{
3733 InitCommonControls();
3734 s_toolbarhwnd = CreateToolbarEx(
3735 s_hwnd,
3736 WS_CHILD | TBSTYLE_TOOLTIPS | TBSTYLE_FLAT,
3737 4000, //any old big number
3738 31, //number of images in inital bitmap
3739 s_hinst,
3740 IDR_TOOLBAR1, // id of initial bitmap
3741 NULL,
3742 0, // initial number of buttons
3743 TOOLBAR_BUTTON_WIDTH, //api guide is wrong!
3744 TOOLBAR_BUTTON_HEIGHT,
3745 TOOLBAR_BUTTON_WIDTH,
3746 TOOLBAR_BUTTON_HEIGHT,
3747 sizeof(TBBUTTON)
3748 );
3749
3750 gui_mch_show_toolbar(vim_strchr(p_go, GO_TOOLBAR) != NULL);
3751}
3752
3753 static int
3754get_toolbar_bitmap(vimmenu_T *menu)
3755{
3756 int i = -1;
3757
3758 /*
3759 * Check user bitmaps first, unless builtin is specified.
3760 */
3761 if (!is_winnt_3() && !menu->icon_builtin)
3762 {
3763 char_u fname[MAXPATHL];
3764 HANDLE hbitmap = NULL;
3765
3766 if (menu->iconfile != NULL)
3767 {
3768 gui_find_iconfile(menu->iconfile, fname, "bmp");
3769 hbitmap = LoadImage(
3770 NULL,
3771 fname,
3772 IMAGE_BITMAP,
3773 TOOLBAR_BUTTON_WIDTH,
3774 TOOLBAR_BUTTON_HEIGHT,
3775 LR_LOADFROMFILE |
3776 LR_LOADMAP3DCOLORS
3777 );
3778 }
3779
3780 /*
3781 * If the LoadImage call failed, or the "icon=" file
3782 * didn't exist or wasn't specified, try the menu name
3783 */
3784 if (hbitmap == NULL
3785 && (gui_find_bitmap(menu->name, fname, "bmp") == OK))
3786 hbitmap = LoadImage(
3787 NULL,
3788 fname,
3789 IMAGE_BITMAP,
3790 TOOLBAR_BUTTON_WIDTH,
3791 TOOLBAR_BUTTON_HEIGHT,
3792 LR_LOADFROMFILE |
3793 LR_LOADMAP3DCOLORS
3794 );
3795
3796 if (hbitmap != NULL)
3797 {
3798 TBADDBITMAP tbAddBitmap;
3799
3800 tbAddBitmap.hInst = NULL;
3801 tbAddBitmap.nID = (UINT)hbitmap;
3802
3803 i = (int)SendMessage(s_toolbarhwnd, TB_ADDBITMAP,
3804 (WPARAM)1, (LPARAM)&tbAddBitmap);
3805 /* i will be set to -1 if it fails */
3806 }
3807 }
3808 if (i == -1 && menu->iconidx >= 0 && menu->iconidx < TOOLBAR_BITMAP_COUNT)
3809 i = menu->iconidx;
3810
3811 return i;
3812}
3813#endif
3814
3815#if defined(FEAT_OLE) || defined(FEAT_EVAL) || defined(PROTO)
3816/*
3817 * Make the GUI window come to the foreground.
3818 */
3819 void
3820gui_mch_set_foreground(void)
3821{
3822 if (IsIconic(s_hwnd))
3823 SendMessage(s_hwnd, WM_SYSCOMMAND, SC_RESTORE, 0);
3824 SetForegroundWindow(s_hwnd);
3825}
3826#endif
3827
3828#if defined(FEAT_MBYTE_IME) && defined(DYNAMIC_IME)
3829 static void
3830dyn_imm_load(void)
3831{
3832 hLibImm = LoadLibrary("imm32.dll");
3833 if (hLibImm == NULL)
3834 return;
3835
3836 pImmGetCompositionStringA
3837 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringA");
3838 pImmGetCompositionStringW
3839 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionStringW");
3840 pImmGetContext
3841 = (void *)GetProcAddress(hLibImm, "ImmGetContext");
3842 pImmAssociateContext
3843 = (void *)GetProcAddress(hLibImm, "ImmAssociateContext");
3844 pImmReleaseContext
3845 = (void *)GetProcAddress(hLibImm, "ImmReleaseContext");
3846 pImmGetOpenStatus
3847 = (void *)GetProcAddress(hLibImm, "ImmGetOpenStatus");
3848 pImmSetOpenStatus
3849 = (void *)GetProcAddress(hLibImm, "ImmSetOpenStatus");
3850 pImmGetCompositionFont
3851 = (void *)GetProcAddress(hLibImm, "ImmGetCompositionFontA");
3852 pImmSetCompositionFont
3853 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionFontA");
3854 pImmSetCompositionWindow
3855 = (void *)GetProcAddress(hLibImm, "ImmSetCompositionWindow");
3856 pImmGetConversionStatus
3857 = (void *)GetProcAddress(hLibImm, "ImmGetConversionStatus");
3858
3859 if ( pImmGetCompositionStringA == NULL
3860 || pImmGetCompositionStringW == NULL
3861 || pImmGetContext == NULL
3862 || pImmAssociateContext == NULL
3863 || pImmReleaseContext == NULL
3864 || pImmGetOpenStatus == NULL
3865 || pImmSetOpenStatus == NULL
3866 || pImmGetCompositionFont == NULL
3867 || pImmSetCompositionFont == NULL
3868 || pImmSetCompositionWindow == NULL
3869 || pImmGetConversionStatus == NULL)
3870 {
3871 FreeLibrary(hLibImm);
3872 hLibImm = NULL;
3873 pImmGetContext = NULL;
3874 return;
3875 }
3876
3877 return;
3878}
3879
3880# if 0 /* not used */
3881 int
3882dyn_imm_unload(void)
3883{
3884 if (!hLibImm)
3885 return FALSE;
3886 FreeLibrary(hLibImm);
3887 hLibImm = NULL;
3888 return TRUE;
3889}
3890# endif
3891
3892#endif
3893
3894#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
3895
3896# ifdef FEAT_XPM_W32
3897# define IMAGE_XPM 100
3898# endif
3899
3900typedef struct _signicon_t
3901{
3902 HANDLE hImage;
3903 UINT uType;
3904#ifdef FEAT_XPM_W32
3905 HANDLE hShape; /* Mask bitmap handle */
3906#endif
3907} signicon_t;
3908
3909 void
3910gui_mch_drawsign(row, col, typenr)
3911 int row;
3912 int col;
3913 int typenr;
3914{
3915 signicon_t *sign;
3916 int x, y, w, h;
3917
3918 if (!gui.in_use || (sign = (signicon_t *)sign_get_image(typenr)) == NULL)
3919 return;
3920
3921 x = TEXT_X(col);
3922 y = TEXT_Y(row);
3923 w = gui.char_width * 2;
3924 h = gui.char_height;
3925 switch (sign->uType)
3926 {
3927 case IMAGE_BITMAP:
3928 {
3929 HDC hdcMem;
3930 HBITMAP hbmpOld;
3931
3932 hdcMem = CreateCompatibleDC(s_hdc);
3933 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hImage);
3934 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCCOPY);
3935 SelectObject(hdcMem, hbmpOld);
3936 DeleteDC(hdcMem);
3937 }
3938 break;
3939 case IMAGE_ICON:
3940 case IMAGE_CURSOR:
3941 DrawIconEx(s_hdc, x, y, (HICON)sign->hImage, w, h, 0, NULL, DI_NORMAL);
3942 break;
3943#ifdef FEAT_XPM_W32
3944 case IMAGE_XPM:
3945 {
3946 HDC hdcMem;
3947 HBITMAP hbmpOld;
3948
3949 hdcMem = CreateCompatibleDC(s_hdc);
3950 hbmpOld = (HBITMAP)SelectObject(hdcMem, sign->hShape);
3951 /* Make hole */
3952 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCAND);
3953
3954 SelectObject(hdcMem, sign->hImage);
3955 /* Paint sign */
3956 BitBlt(s_hdc, x, y, w, h, hdcMem, 0, 0, SRCPAINT);
3957 SelectObject(hdcMem, hbmpOld);
3958 DeleteDC(hdcMem);
3959 }
3960 break;
3961#endif
3962 }
3963}
3964
3965 static void
3966close_signicon_image(signicon_t *sign)
3967{
3968 if (sign)
3969 switch (sign->uType)
3970 {
3971 case IMAGE_BITMAP:
3972 DeleteObject((HGDIOBJ)sign->hImage);
3973 break;
3974 case IMAGE_CURSOR:
3975 DestroyCursor((HCURSOR)sign->hImage);
3976 break;
3977 case IMAGE_ICON:
3978 DestroyIcon((HICON)sign->hImage);
3979 break;
3980#ifdef FEAT_XPM_W32
3981 case IMAGE_XPM:
3982 DeleteObject((HBITMAP)sign->hImage);
3983 DeleteObject((HBITMAP)sign->hShape);
3984 break;
3985#endif
3986 }
3987}
3988
3989 void *
3990gui_mch_register_sign(signfile)
3991 char_u *signfile;
3992{
3993 signicon_t sign, *psign;
3994 char_u *ext;
3995
3996 if (is_winnt_3())
3997 {
3998 EMSG(_(e_signdata));
3999 return NULL;
4000 }
4001
4002 sign.hImage = NULL;
4003 ext = signfile + STRLEN(signfile) - 4; /* get extention */
4004 if (ext > signfile)
4005 {
4006 int do_load = 1;
4007
4008 if (!STRICMP(ext, ".bmp"))
4009 sign.uType = IMAGE_BITMAP;
4010 else if (!STRICMP(ext, ".ico"))
4011 sign.uType = IMAGE_ICON;
4012 else if (!STRICMP(ext, ".cur") || !STRICMP(ext, ".ani"))
4013 sign.uType = IMAGE_CURSOR;
4014 else
4015 do_load = 0;
4016
4017 if (do_load)
4018 sign.hImage = (HANDLE)LoadImage(NULL, signfile, sign.uType,
4019 gui.char_width * 2, gui.char_height,
4020 LR_LOADFROMFILE | LR_CREATEDIBSECTION);
4021#ifdef FEAT_XPM_W32
4022 if (!STRICMP(ext, ".xpm"))
4023 {
4024 sign.uType = IMAGE_XPM;
4025 LoadXpmImage(signfile, (HBITMAP *)&sign.hImage, (HBITMAP *)&sign.hShape);
4026 }
4027#endif
4028 }
4029
4030 psign = NULL;
4031 if (sign.hImage && (psign = (signicon_t *)alloc(sizeof(signicon_t)))
4032 != NULL)
4033 *psign = sign;
4034
4035 if (!psign)
4036 {
4037 if (sign.hImage)
4038 close_signicon_image(&sign);
4039 EMSG(_(e_signdata));
4040 }
4041 return (void *)psign;
4042
4043}
4044
4045 void
4046gui_mch_destroy_sign(sign)
4047 void *sign;
4048{
4049 if (sign)
4050 {
4051 close_signicon_image((signicon_t *)sign);
4052 vim_free(sign);
4053 }
4054}
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004055#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056
4057#if defined(FEAT_BEVAL) || defined(PROTO)
4058
4059/* BALLOON-EVAL IMPLEMENTATION FOR WINDOWS.
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00004060 * Added by Sergey Khorev <sergey.khorev@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +00004061 *
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004062 * The only reused thing is gui_beval.h and get_beval_info()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 * from gui_beval.c (note it uses x and y of the BalloonEval struct
4064 * to get current mouse position).
4065 *
4066 * Trying to use as more Windows services as possible, and as less
4067 * IE version as possible :)).
4068 *
4069 * 1) Don't create ToolTip in gui_mch_create_beval_area, only initialize
4070 * BalloonEval struct.
4071 * 2) Enable/Disable simply create/kill BalloonEval Timer
4072 * 3) When there was enough inactivity, timer procedure posts
4073 * async request to debugger
4074 * 4) gui_mch_post_balloon (invoked from netbeans.c) creates tooltip control
4075 * and performs some actions to show it ASAP
4076 * 5) WM_NOTOFY:TTN_POP destroys created tooltip
4077 */
4078
Bram Moolenaar45360022005-07-21 21:08:21 +00004079/*
4080 * determine whether installed Common Controls support multiline tooltips
4081 * (i.e. their version is >= 4.70
4082 */
4083 int
4084multiline_balloon_available(void)
4085{
4086 HINSTANCE hDll;
4087 static char comctl_dll[] = "comctl32.dll";
4088 static int multiline_tip = MAYBE;
4089
4090 if (multiline_tip != MAYBE)
4091 return multiline_tip;
4092
4093 hDll = GetModuleHandle(comctl_dll);
4094 if (hDll != NULL)
4095 {
4096 DLLGETVERSIONPROC pGetVer;
4097 pGetVer = (DLLGETVERSIONPROC)GetProcAddress(hDll, "DllGetVersion");
4098
4099 if (pGetVer != NULL)
4100 {
4101 DLLVERSIONINFO dvi;
4102 HRESULT hr;
4103
4104 ZeroMemory(&dvi, sizeof(dvi));
4105 dvi.cbSize = sizeof(dvi);
4106
4107 hr = (*pGetVer)(&dvi);
4108
4109 if (SUCCEEDED(hr)
4110 && (dvi.dwMajorVersion > 4
4111 || (dvi.dwMajorVersion == 4 && dvi.dwMinorVersion >= 70)))
4112 {
4113 multiline_tip = TRUE;
4114 return multiline_tip;
4115 }
4116 }
4117 else
4118 {
4119 /* there is chance we have ancient CommCtl 4.70
4120 which doesn't export DllGetVersion */
4121 DWORD dwHandle = 0;
4122 DWORD len = GetFileVersionInfoSize(comctl_dll, &dwHandle);
4123 if (len > 0)
4124 {
4125 VS_FIXEDFILEINFO *ver;
4126 UINT vlen = 0;
4127 void *data = alloc(len);
4128
4129 if (data != NULL
4130 && GetFileVersionInfo(comctl_dll, 0, len, data)
4131 && VerQueryValue(data, "\\", (void **)&ver, &vlen)
4132 && vlen
4133 && HIWORD(ver->dwFileVersionMS) > 4
4134 || (HIWORD(ver->dwFileVersionMS) == 4
4135 && LOWORD(ver->dwFileVersionMS) >= 70))
4136 {
4137 vim_free(data);
4138 multiline_tip = TRUE;
4139 return multiline_tip;
4140 }
4141 vim_free(data);
4142 }
4143 }
4144 }
4145 multiline_tip = FALSE;
4146 return multiline_tip;
4147}
4148
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 static void
4150make_tooltip(beval, text, pt)
4151 BalloonEval *beval;
4152 char *text;
4153 POINT pt;
4154{
Bram Moolenaar45360022005-07-21 21:08:21 +00004155 TOOLINFO *pti;
4156 int ToolInfoSize;
4157
4158 if (multiline_balloon_available() == TRUE)
4159 ToolInfoSize = sizeof(TOOLINFO_NEW);
4160 else
4161 ToolInfoSize = sizeof(TOOLINFO);
4162
4163 pti = (TOOLINFO *)alloc(ToolInfoSize);
4164 if (pti == NULL)
4165 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166
4167 beval->balloon = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS,
4168 NULL, WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,
4169 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
4170 beval->target, NULL, s_hinst, NULL);
4171
4172 SetWindowPos(beval->balloon, HWND_TOPMOST, 0, 0, 0, 0,
4173 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
4174
Bram Moolenaar45360022005-07-21 21:08:21 +00004175 pti->cbSize = ToolInfoSize;
4176 pti->uFlags = TTF_SUBCLASS;
4177 pti->hwnd = beval->target;
4178 pti->hinst = 0; /* Don't use string resources */
4179 pti->uId = ID_BEVAL_TOOLTIP;
4180
4181 if (multiline_balloon_available() == TRUE)
4182 {
4183 RECT rect;
4184 TOOLINFO_NEW *ptin = (TOOLINFO_NEW *)pti;
4185 pti->lpszText = LPSTR_TEXTCALLBACK;
4186 ptin->lParam = (LPARAM)text;
4187 if (GetClientRect(s_textArea, &rect)) /* switch multiline tooltips on */
4188 SendMessage(beval->balloon, TTM_SETMAXTIPWIDTH, 0,
4189 (LPARAM)rect.right);
4190 }
4191 else
4192 pti->lpszText = text; /* do this old way */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193
4194 /* Limit ballooneval bounding rect to CursorPos neighbourhood */
Bram Moolenaar45360022005-07-21 21:08:21 +00004195 pti->rect.left = pt.x - 3;
4196 pti->rect.top = pt.y - 3;
4197 pti->rect.right = pt.x + 3;
4198 pti->rect.bottom = pt.y + 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199
Bram Moolenaar45360022005-07-21 21:08:21 +00004200 SendMessage(beval->balloon, TTM_ADDTOOL, 0, (LPARAM)pti);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201 /* Make tooltip appear sooner */
4202 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_INITIAL, 10);
4203 /*
4204 * HACK: force tooltip to appear, because it'll not appear until
4205 * first mouse move. D*mn M$
4206 */
4207 mouse_event(MOUSEEVENTF_MOVE, 1, 1, 0, 0);
4208 mouse_event(MOUSEEVENTF_MOVE, (DWORD)-1, (DWORD)-1, 0, 0);
Bram Moolenaar45360022005-07-21 21:08:21 +00004209 vim_free(pti);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210}
4211
4212 static void
4213delete_tooltip(beval)
4214 BalloonEval *beval;
4215{
4216 DestroyWindow(beval->balloon);
4217}
4218
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004219/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 static VOID CALLBACK
4221BevalTimerProc(hwnd, uMsg, idEvent, dwTime)
4222 HWND hwnd;
4223 UINT uMsg;
4224 UINT idEvent;
4225 DWORD dwTime;
4226{
4227 POINT pt;
4228 RECT rect;
4229
4230 if (cur_beval == NULL || cur_beval->showState == ShS_SHOWING || !p_beval)
4231 return;
4232
4233 GetCursorPos(&pt);
4234 if (WindowFromPoint(pt) != s_textArea)
4235 return;
4236
4237 ScreenToClient(s_textArea, &pt);
4238 GetClientRect(s_textArea, &rect);
4239 if (!PtInRect(&rect, pt))
4240 return;
4241
4242 if (LastActivity > 0
4243 && (dwTime - LastActivity) >= (DWORD)p_bdlay
4244 && (cur_beval->showState != ShS_PENDING
4245 || abs(cur_beval->x - pt.x) > 3
4246 || abs(cur_beval->y - pt.y) > 3))
4247 {
4248 /* Pointer resting in one place long enough, it's time to show
4249 * the tooltip. */
4250 cur_beval->showState = ShS_PENDING;
4251 cur_beval->x = pt.x;
4252 cur_beval->y = pt.y;
4253
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004254 // TRACE0("BevalTimerProc: sending request");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255
4256 if (cur_beval->msgCB != NULL)
4257 (*cur_beval->msgCB)(cur_beval, 0);
4258 }
4259}
4260
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004261/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 void
4263gui_mch_disable_beval_area(beval)
4264 BalloonEval *beval;
4265{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004266 // TRACE0("gui_mch_disable_beval_area {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 KillTimer(s_textArea, BevalTimerId);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004268 // TRACE0("gui_mch_disable_beval_area }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269}
4270
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004271/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272 void
4273gui_mch_enable_beval_area(beval)
4274 BalloonEval *beval;
4275{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004276 // TRACE0("gui_mch_enable_beval_area |||");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 if (beval == NULL)
4278 return;
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004279 // TRACE0("gui_mch_enable_beval_area {{{");
Bram Moolenaar05159a02005-02-26 23:04:13 +00004280 BevalTimerId = SetTimer(s_textArea, 0, p_bdlay / 2,
4281 (TIMERPROC)BevalTimerProc);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004282 // TRACE0("gui_mch_enable_beval_area }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283}
4284
4285 void
4286gui_mch_post_balloon(beval, mesg)
4287 BalloonEval *beval;
4288 char_u *mesg;
4289{
4290 POINT pt;
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004291 // TRACE0("gui_mch_post_balloon {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 if (beval->showState == ShS_SHOWING)
4293 return;
4294 GetCursorPos(&pt);
4295 ScreenToClient(s_textArea, &pt);
4296
4297 if (abs(beval->x - pt.x) < 3 && abs(beval->y - pt.y) < 3)
4298 /* cursor is still here */
4299 {
4300 gui_mch_disable_beval_area(cur_beval);
4301 beval->showState = ShS_SHOWING;
4302 make_tooltip(beval, mesg, pt);
4303 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004304 // TRACE0("gui_mch_post_balloon }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305}
4306
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004307/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 BalloonEval *
4309gui_mch_create_beval_area(target, mesg, mesgCB, clientData)
4310 void *target; /* ignored, always use s_textArea */
4311 char_u *mesg;
4312 void (*mesgCB)__ARGS((BalloonEval *, int));
4313 void *clientData;
4314{
4315 /* partially stolen from gui_beval.c */
4316 BalloonEval *beval;
4317
4318 if (mesg != NULL && mesgCB != NULL)
4319 {
4320 EMSG(_("E232: Cannot create BalloonEval with both message and callback"));
4321 return NULL;
4322 }
4323
4324 beval = (BalloonEval *)alloc(sizeof(BalloonEval));
4325 if (beval != NULL)
4326 {
4327 beval->target = s_textArea;
4328 beval->balloon = NULL;
4329
4330 beval->showState = ShS_NEUTRAL;
4331 beval->x = 0;
4332 beval->y = 0;
4333 beval->msg = mesg;
4334 beval->msgCB = mesgCB;
4335 beval->clientData = clientData;
4336
4337 InitCommonControls();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 cur_beval = beval;
4339
4340 if (p_beval)
4341 gui_mch_enable_beval_area(beval);
4342
4343 }
4344 return beval;
4345}
4346
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004347/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 static void
4349Handle_WM_Notify(hwnd, pnmh)
4350 HWND hwnd;
4351 LPNMHDR pnmh;
4352{
4353 if (pnmh->idFrom != ID_BEVAL_TOOLTIP) /* it is not our tooltip */
4354 return;
4355
4356 if (cur_beval != NULL)
4357 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004358 switch (pnmh->code)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004360 case TTN_SHOW:
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004361 // TRACE0("TTN_SHOW {{{");
4362 // TRACE0("TTN_SHOW }}}");
Bram Moolenaar45360022005-07-21 21:08:21 +00004363 break;
4364 case TTN_POP: /* Before tooltip disappear */
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004365 // TRACE0("TTN_POP {{{");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 delete_tooltip(cur_beval);
4367 gui_mch_enable_beval_area(cur_beval);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00004368 // TRACE0("TTN_POP }}}");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369
4370 cur_beval->showState = ShS_NEUTRAL;
Bram Moolenaar45360022005-07-21 21:08:21 +00004371 break;
4372 case TTN_GETDISPINFO:
4373 {
4374 /* if you get there then we have new common controls */
4375 NMTTDISPINFO_NEW *info = (NMTTDISPINFO_NEW *)pnmh;
4376 info->lpszText = (LPSTR)info->lParam;
4377 info->uFlags |= TTF_DI_SETITEM;
4378 }
4379 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 }
4381 }
4382}
4383
4384 static void
4385TrackUserActivity(UINT uMsg)
4386{
4387 if ((uMsg >= WM_MOUSEFIRST && uMsg <= WM_MOUSELAST)
4388 || (uMsg >= WM_KEYFIRST && uMsg <= WM_KEYLAST))
4389 LastActivity = GetTickCount();
4390}
4391
4392 void
4393gui_mch_destroy_beval_area(beval)
4394 BalloonEval *beval;
4395{
4396 vim_free(beval);
4397}
4398#endif /* FEAT_BEVAL */
4399
4400#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
4401/*
4402 * We have multiple signs to draw at the same location. Draw the
4403 * multi-sign indicator (down-arrow) instead. This is the Win32 version.
4404 */
4405 void
4406netbeans_draw_multisign_indicator(int row)
4407{
4408 int i;
4409 int y;
4410 int x;
4411
4412 x = 0;
4413 y = TEXT_Y(row);
4414
4415 for (i = 0; i < gui.char_height - 3; i++)
4416 SetPixel(s_hdc, x+2, y++, gui.currFgColor);
4417
4418 SetPixel(s_hdc, x+0, y, gui.currFgColor);
4419 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4420 SetPixel(s_hdc, x+4, y++, gui.currFgColor);
4421 SetPixel(s_hdc, x+1, y, gui.currFgColor);
4422 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4423 SetPixel(s_hdc, x+3, y++, gui.currFgColor);
4424 SetPixel(s_hdc, x+2, y, gui.currFgColor);
4425}
4426#endif