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