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