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