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