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