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