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