Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4: |
| 2 | * |
| 3 | * VIM - Vi IMproved by Bram Moolenaar |
| 4 | * GUI support by Robert Webb |
| 5 | * |
| 6 | * Do ":help uganda" in Vim to read copying and usage conditions. |
| 7 | * Do ":help credits" in Vim to see a list of people who contributed. |
| 8 | * See README.txt for an overview of the Vim source code. |
| 9 | */ |
| 10 | /* |
| 11 | * gui_w48.c: This file is included in gui_w16.c and gui_w32.c. |
| 12 | * |
| 13 | * GUI support for Microsoft Windows (Win16 + Win32 = Win48 :-) |
| 14 | * |
| 15 | * The combined efforts of: |
| 16 | * George V. Reilly <george@reilly.org> |
| 17 | * Robert Webb |
| 18 | * Vince Negri |
| 19 | * ...and contributions from many others |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | #include "vim.h" |
| 24 | #include "version.h" /* used by dialog box routine for default title */ |
| 25 | #ifdef DEBUG |
| 26 | # include <tchar.h> |
| 27 | #endif |
| 28 | #ifndef __MINGW32__ |
| 29 | # include <shellapi.h> |
| 30 | #endif |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 31 | #if defined(FEAT_TOOLBAR) || defined(FEAT_BEVAL) || defined(FEAT_GUI_TABLINE) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 32 | # include <commctrl.h> |
| 33 | #endif |
| 34 | #ifdef WIN16 |
| 35 | # include <commdlg.h> |
| 36 | # include <shellapi.h> |
| 37 | # ifdef WIN16_3DLOOK |
| 38 | # include <ctl3d.h> |
| 39 | # endif |
| 40 | #endif |
| 41 | #include <windowsx.h> |
| 42 | |
| 43 | #ifdef GLOBAL_IME |
| 44 | # include "glbl_ime.h" |
| 45 | #endif |
| 46 | |
| 47 | #ifdef FEAT_MENU |
| 48 | # define MENUHINTS /* show menu hints in command line */ |
| 49 | #endif |
| 50 | |
| 51 | /* Some parameters for dialog boxes. All in pixels. */ |
| 52 | #define DLG_PADDING_X 10 |
| 53 | #define DLG_PADDING_Y 10 |
| 54 | #define DLG_OLD_STYLE_PADDING_X 5 |
| 55 | #define DLG_OLD_STYLE_PADDING_Y 5 |
| 56 | #define DLG_VERT_PADDING_X 4 /* For vertical buttons */ |
| 57 | #define DLG_VERT_PADDING_Y 4 |
| 58 | #define DLG_ICON_WIDTH 34 |
| 59 | #define DLG_ICON_HEIGHT 34 |
| 60 | #define DLG_MIN_WIDTH 150 |
| 61 | #define DLG_FONT_NAME "MS Sans Serif" |
| 62 | #define DLG_FONT_POINT_SIZE 8 |
| 63 | #define DLG_MIN_MAX_WIDTH 400 |
Bram Moolenaar | 748bf03 | 2005-02-02 23:04:36 +0000 | [diff] [blame] | 64 | #define DLG_MIN_MAX_HEIGHT 400 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 65 | |
| 66 | #define DLG_NONBUTTON_CONTROL 5000 /* First ID of non-button controls */ |
| 67 | |
| 68 | #ifndef WM_XBUTTONDOWN /* For Win2K / winME ONLY */ |
| 69 | # define WM_XBUTTONDOWN 0x020B |
| 70 | # define WM_XBUTTONUP 0x020C |
| 71 | # define WM_XBUTTONDBLCLK 0x020D |
| 72 | # define MK_XBUTTON1 0x0020 |
| 73 | # define MK_XBUTTON2 0x0040 |
| 74 | #endif |
| 75 | |
| 76 | #ifdef PROTO |
| 77 | /* |
| 78 | * Define a few things for generating prototypes. This is just to avoid |
| 79 | * syntax errors, the defines do not need to be correct. |
| 80 | */ |
| 81 | # define APIENTRY |
| 82 | # define CALLBACK |
| 83 | # define CONST |
| 84 | # define FAR |
| 85 | # define NEAR |
| 86 | # define _cdecl |
| 87 | typedef int BOOL; |
| 88 | typedef int BYTE; |
| 89 | typedef int DWORD; |
| 90 | typedef int WCHAR; |
| 91 | typedef int ENUMLOGFONT; |
| 92 | typedef int FINDREPLACE; |
| 93 | typedef int HANDLE; |
| 94 | typedef int HBITMAP; |
| 95 | typedef int HBRUSH; |
| 96 | typedef int HDROP; |
| 97 | typedef int INT; |
| 98 | typedef int LOGFONT[]; |
| 99 | typedef int LPARAM; |
| 100 | typedef int LPCREATESTRUCT; |
| 101 | typedef int LPCSTR; |
| 102 | typedef int LPCTSTR; |
| 103 | typedef int LPRECT; |
| 104 | typedef int LPSTR; |
| 105 | typedef int LPWINDOWPOS; |
| 106 | typedef int LPWORD; |
| 107 | typedef int LRESULT; |
Bram Moolenaar | e344bea | 2005-09-01 20:46:49 +0000 | [diff] [blame] | 108 | typedef int HRESULT; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 109 | # undef MSG |
| 110 | typedef int MSG; |
| 111 | typedef int NEWTEXTMETRIC; |
| 112 | typedef int OSVERSIONINFO; |
| 113 | typedef int PWORD; |
| 114 | typedef int RECT; |
| 115 | typedef int UINT; |
| 116 | typedef int WORD; |
| 117 | typedef int WPARAM; |
| 118 | typedef int POINT; |
| 119 | typedef void *HINSTANCE; |
| 120 | typedef void *HMENU; |
| 121 | typedef void *HWND; |
| 122 | typedef void *HDC; |
| 123 | typedef void VOID; |
| 124 | typedef int LPNMHDR; |
| 125 | typedef int LONG; |
| 126 | #endif |
| 127 | |
| 128 | #ifndef GET_X_LPARAM |
| 129 | # define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp)) |
| 130 | #endif |
| 131 | |
| 132 | static void _OnPaint( HWND hwnd); |
| 133 | static void clear_rect(RECT *rcp); |
| 134 | static int gui_mswin_get_menu_height(int fix_window); |
| 135 | |
| 136 | static WORD s_dlgfntheight; /* height of the dialog font */ |
| 137 | static WORD s_dlgfntwidth; /* width of the dialog font */ |
| 138 | |
| 139 | #ifdef FEAT_MENU |
| 140 | static HMENU s_menuBar = NULL; |
| 141 | #endif |
| 142 | #ifdef FEAT_TEAROFF |
| 143 | static void rebuild_tearoff(vimmenu_T *menu); |
| 144 | static HBITMAP s_htearbitmap; /* bitmap used to indicate tearoff */ |
| 145 | #endif |
| 146 | |
Bram Moolenaar | 4868726 | 2007-05-10 17:17:07 +0000 | [diff] [blame] | 147 | /* Flag that is set while processing a message that must not be interrupted by |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 148 | * processing another message. */ |
| 149 | static int s_busy_processing = FALSE; |
| 150 | |
| 151 | static int destroying = FALSE; /* call DestroyWindow() ourselves */ |
| 152 | |
| 153 | #ifdef MSWIN_FIND_REPLACE |
| 154 | static UINT s_findrep_msg = 0; /* set in gui_w[16/32].c */ |
| 155 | static FINDREPLACE s_findrep_struct; |
Bram Moolenaar | 3ca9a8a | 2009-01-28 20:23:17 +0000 | [diff] [blame] | 156 | # if defined(FEAT_MBYTE) && defined(WIN3264) |
| 157 | static FINDREPLACEW s_findrep_struct_w; |
| 158 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 159 | static HWND s_findrep_hwnd = NULL; |
| 160 | static int s_findrep_is_find; /* TRUE for find dialog, FALSE |
| 161 | for find/replace dialog */ |
| 162 | #endif |
| 163 | |
| 164 | static HINSTANCE s_hinst = NULL; |
| 165 | #if !defined(FEAT_SNIFF) && !defined(FEAT_GUI) |
| 166 | static |
| 167 | #endif |
| 168 | HWND s_hwnd = NULL; |
| 169 | static HDC s_hdc = NULL; |
| 170 | static HBRUSH s_brush = NULL; |
| 171 | |
| 172 | #ifdef FEAT_TOOLBAR |
| 173 | static HWND s_toolbarhwnd = NULL; |
| 174 | #endif |
| 175 | |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 176 | #ifdef FEAT_GUI_TABLINE |
| 177 | static HWND s_tabhwnd = NULL; |
| 178 | static int showing_tabline = 0; |
| 179 | #endif |
| 180 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 181 | static WPARAM s_wParam = 0; |
| 182 | static LPARAM s_lParam = 0; |
| 183 | |
| 184 | static HWND s_textArea = NULL; |
| 185 | static UINT s_uMsg = 0; |
| 186 | |
| 187 | static char_u *s_textfield; /* Used by dialogs to pass back strings */ |
| 188 | |
| 189 | static int s_need_activate = FALSE; |
| 190 | |
| 191 | /* This variable is set when waiting for an event, which is the only moment |
| 192 | * scrollbar dragging can be done directly. It's not allowed while commands |
| 193 | * are executed, because it may move the cursor and that may cause unexpected |
| 194 | * problems (e.g., while ":s" is working). |
| 195 | */ |
| 196 | static int allow_scrollbar = FALSE; |
| 197 | |
| 198 | #ifdef GLOBAL_IME |
| 199 | # define MyTranslateMessage(x) global_ime_TranslateMessage(x) |
| 200 | #else |
| 201 | # define MyTranslateMessage(x) TranslateMessage(x) |
| 202 | #endif |
| 203 | |
| 204 | #if (defined(WIN3264) && defined(FEAT_MBYTE)) || defined(GLOBAL_IME) |
| 205 | /* use of WindowProc depends on wide_WindowProc */ |
| 206 | # define MyWindowProc vim_WindowProc |
| 207 | #else |
| 208 | /* use ordinary WindowProc */ |
| 209 | # define MyWindowProc DefWindowProc |
| 210 | #endif |
| 211 | |
| 212 | extern int current_font_height; /* this is in os_mswin.c */ |
| 213 | |
| 214 | static struct |
| 215 | { |
| 216 | UINT key_sym; |
| 217 | char_u vim_code0; |
| 218 | char_u vim_code1; |
| 219 | } special_keys[] = |
| 220 | { |
| 221 | {VK_UP, 'k', 'u'}, |
| 222 | {VK_DOWN, 'k', 'd'}, |
| 223 | {VK_LEFT, 'k', 'l'}, |
| 224 | {VK_RIGHT, 'k', 'r'}, |
| 225 | |
| 226 | {VK_F1, 'k', '1'}, |
| 227 | {VK_F2, 'k', '2'}, |
| 228 | {VK_F3, 'k', '3'}, |
| 229 | {VK_F4, 'k', '4'}, |
| 230 | {VK_F5, 'k', '5'}, |
| 231 | {VK_F6, 'k', '6'}, |
| 232 | {VK_F7, 'k', '7'}, |
| 233 | {VK_F8, 'k', '8'}, |
| 234 | {VK_F9, 'k', '9'}, |
| 235 | {VK_F10, 'k', ';'}, |
| 236 | |
| 237 | {VK_F11, 'F', '1'}, |
| 238 | {VK_F12, 'F', '2'}, |
| 239 | {VK_F13, 'F', '3'}, |
| 240 | {VK_F14, 'F', '4'}, |
| 241 | {VK_F15, 'F', '5'}, |
| 242 | {VK_F16, 'F', '6'}, |
| 243 | {VK_F17, 'F', '7'}, |
| 244 | {VK_F18, 'F', '8'}, |
| 245 | {VK_F19, 'F', '9'}, |
| 246 | {VK_F20, 'F', 'A'}, |
| 247 | |
| 248 | {VK_F21, 'F', 'B'}, |
| 249 | #ifdef FEAT_NETBEANS_INTG |
| 250 | {VK_PAUSE, 'F', 'B'}, /* Pause == F21 (see gui_gtk_x11.c) */ |
| 251 | #endif |
| 252 | {VK_F22, 'F', 'C'}, |
| 253 | {VK_F23, 'F', 'D'}, |
| 254 | {VK_F24, 'F', 'E'}, /* winuser.h defines up to F24 */ |
| 255 | |
| 256 | {VK_HELP, '%', '1'}, |
| 257 | {VK_BACK, 'k', 'b'}, |
| 258 | {VK_INSERT, 'k', 'I'}, |
| 259 | {VK_DELETE, 'k', 'D'}, |
| 260 | {VK_HOME, 'k', 'h'}, |
| 261 | {VK_END, '@', '7'}, |
| 262 | {VK_PRIOR, 'k', 'P'}, |
| 263 | {VK_NEXT, 'k', 'N'}, |
| 264 | {VK_PRINT, '%', '9'}, |
| 265 | {VK_ADD, 'K', '6'}, |
| 266 | {VK_SUBTRACT, 'K', '7'}, |
| 267 | {VK_DIVIDE, 'K', '8'}, |
| 268 | {VK_MULTIPLY, 'K', '9'}, |
| 269 | {VK_SEPARATOR, 'K', 'A'}, /* Keypad Enter */ |
| 270 | {VK_DECIMAL, 'K', 'B'}, |
| 271 | |
| 272 | {VK_NUMPAD0, 'K', 'C'}, |
| 273 | {VK_NUMPAD1, 'K', 'D'}, |
| 274 | {VK_NUMPAD2, 'K', 'E'}, |
| 275 | {VK_NUMPAD3, 'K', 'F'}, |
| 276 | {VK_NUMPAD4, 'K', 'G'}, |
| 277 | {VK_NUMPAD5, 'K', 'H'}, |
| 278 | {VK_NUMPAD6, 'K', 'I'}, |
| 279 | {VK_NUMPAD7, 'K', 'J'}, |
| 280 | {VK_NUMPAD8, 'K', 'K'}, |
| 281 | {VK_NUMPAD9, 'K', 'L'}, |
| 282 | |
| 283 | /* Keys that we want to be able to use any modifier with: */ |
| 284 | {VK_SPACE, ' ', NUL}, |
| 285 | {VK_TAB, TAB, NUL}, |
| 286 | {VK_ESCAPE, ESC, NUL}, |
| 287 | {NL, NL, NUL}, |
| 288 | {CAR, CAR, NUL}, |
| 289 | |
| 290 | /* End of list marker: */ |
| 291 | {0, 0, 0} |
| 292 | }; |
| 293 | |
| 294 | /* Local variables */ |
| 295 | static int s_button_pending = -1; |
Bram Moolenaar | ea40888 | 2007-12-03 21:21:03 +0000 | [diff] [blame] | 296 | |
| 297 | /* s_getting_focus is set when we got focus but didn't see mouse-up event yet, |
| 298 | * so don't reset s_button_pending. */ |
| 299 | static int s_getting_focus = FALSE; |
| 300 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 301 | static int s_x_pending; |
| 302 | static int s_y_pending; |
| 303 | static UINT s_kFlags_pending; |
| 304 | static UINT s_wait_timer = 0; /* Timer for get char from user */ |
| 305 | static int s_timed_out = FALSE; |
| 306 | static int dead_key = 0; /* 0 - no dead key, 1 - dead key pressed */ |
| 307 | |
| 308 | #ifdef WIN3264 |
| 309 | static OSVERSIONINFO os_version; /* like it says. Init in gui_mch_init() */ |
| 310 | #endif |
| 311 | |
| 312 | #ifdef FEAT_BEVAL |
| 313 | /* balloon-eval WM_NOTIFY_HANDLER */ |
| 314 | static void Handle_WM_Notify __ARGS((HWND hwnd, LPNMHDR pnmh)); |
| 315 | static void TrackUserActivity __ARGS((UINT uMsg)); |
| 316 | #endif |
| 317 | |
| 318 | /* |
| 319 | * For control IME. |
| 320 | */ |
| 321 | #ifdef FEAT_MBYTE |
| 322 | # ifdef USE_IM_CONTROL |
| 323 | static LOGFONT norm_logfont; |
| 324 | # endif |
| 325 | #endif |
| 326 | |
| 327 | #ifdef FEAT_MBYTE_IME |
| 328 | static LRESULT _OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData); |
| 329 | #endif |
| 330 | |
Bram Moolenaar | 3ef7cdf | 2012-01-20 17:57:51 +0100 | [diff] [blame^] | 331 | #if defined(FEAT_MBYTE) && defined(WIN3264) |
| 332 | static char_u *convert_filter(char_u *s); |
| 333 | #endif |
| 334 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 335 | #ifdef DEBUG_PRINT_ERROR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 336 | /* |
| 337 | * Print out the last Windows error message |
| 338 | */ |
| 339 | static void |
| 340 | print_windows_error(void) |
| 341 | { |
| 342 | LPVOID lpMsgBuf; |
| 343 | |
| 344 | FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, |
| 345 | NULL, GetLastError(), |
| 346 | MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), |
| 347 | (LPTSTR) &lpMsgBuf, 0, NULL); |
| 348 | TRACE1("Error: %s\n", lpMsgBuf); |
| 349 | LocalFree(lpMsgBuf); |
| 350 | } |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 351 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 352 | |
| 353 | /* |
| 354 | * Cursor blink functions. |
| 355 | * |
| 356 | * This is a simple state machine: |
| 357 | * BLINK_NONE not blinking at all |
| 358 | * BLINK_OFF blinking, cursor is not shown |
| 359 | * BLINK_ON blinking, cursor is shown |
| 360 | */ |
| 361 | |
| 362 | #define BLINK_NONE 0 |
| 363 | #define BLINK_OFF 1 |
| 364 | #define BLINK_ON 2 |
| 365 | |
| 366 | static int blink_state = BLINK_NONE; |
| 367 | static long_u blink_waittime = 700; |
| 368 | static long_u blink_ontime = 400; |
| 369 | static long_u blink_offtime = 250; |
| 370 | static UINT blink_timer = 0; |
| 371 | |
| 372 | void |
| 373 | gui_mch_set_blinking(long wait, long on, long off) |
| 374 | { |
| 375 | blink_waittime = wait; |
| 376 | blink_ontime = on; |
| 377 | blink_offtime = off; |
| 378 | } |
| 379 | |
| 380 | /* ARGSUSED */ |
| 381 | static VOID CALLBACK |
| 382 | _OnBlinkTimer( |
| 383 | HWND hwnd, |
| 384 | UINT uMsg, |
| 385 | UINT idEvent, |
| 386 | DWORD dwTime) |
| 387 | { |
| 388 | MSG msg; |
| 389 | |
| 390 | /* |
| 391 | TRACE2("Got timer event, id %d, blink_timer %d\n", idEvent, blink_timer); |
| 392 | */ |
| 393 | |
| 394 | KillTimer(NULL, idEvent); |
| 395 | |
| 396 | /* Eat spurious WM_TIMER messages */ |
Bram Moolenaar | 8c85fa3 | 2011-08-10 17:08:03 +0200 | [diff] [blame] | 397 | while (pPeekMessage(&msg, hwnd, WM_TIMER, WM_TIMER, PM_REMOVE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 398 | ; |
| 399 | |
| 400 | if (blink_state == BLINK_ON) |
| 401 | { |
| 402 | gui_undraw_cursor(); |
| 403 | blink_state = BLINK_OFF; |
| 404 | blink_timer = (UINT) SetTimer(NULL, 0, (UINT)blink_offtime, |
| 405 | (TIMERPROC)_OnBlinkTimer); |
| 406 | } |
| 407 | else |
| 408 | { |
| 409 | gui_update_cursor(TRUE, FALSE); |
| 410 | blink_state = BLINK_ON; |
| 411 | blink_timer = (UINT) SetTimer(NULL, 0, (UINT)blink_ontime, |
| 412 | (TIMERPROC)_OnBlinkTimer); |
| 413 | } |
| 414 | } |
| 415 | |
| 416 | static void |
| 417 | gui_mswin_rm_blink_timer(void) |
| 418 | { |
| 419 | MSG msg; |
| 420 | |
| 421 | if (blink_timer != 0) |
| 422 | { |
| 423 | KillTimer(NULL, blink_timer); |
| 424 | /* Eat spurious WM_TIMER messages */ |
Bram Moolenaar | 8c85fa3 | 2011-08-10 17:08:03 +0200 | [diff] [blame] | 425 | while (pPeekMessage(&msg, s_hwnd, WM_TIMER, WM_TIMER, PM_REMOVE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 426 | ; |
| 427 | blink_timer = 0; |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | /* |
| 432 | * Stop the cursor blinking. Show the cursor if it wasn't shown. |
| 433 | */ |
| 434 | void |
| 435 | gui_mch_stop_blink(void) |
| 436 | { |
| 437 | gui_mswin_rm_blink_timer(); |
| 438 | if (blink_state == BLINK_OFF) |
| 439 | gui_update_cursor(TRUE, FALSE); |
| 440 | blink_state = BLINK_NONE; |
| 441 | } |
| 442 | |
| 443 | /* |
| 444 | * Start the cursor blinking. If it was already blinking, this restarts the |
| 445 | * waiting time and shows the cursor. |
| 446 | */ |
| 447 | void |
| 448 | gui_mch_start_blink(void) |
| 449 | { |
| 450 | gui_mswin_rm_blink_timer(); |
| 451 | |
| 452 | /* Only switch blinking on if none of the times is zero */ |
| 453 | if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus) |
| 454 | { |
| 455 | blink_timer = (UINT)SetTimer(NULL, 0, (UINT)blink_waittime, |
| 456 | (TIMERPROC)_OnBlinkTimer); |
| 457 | blink_state = BLINK_ON; |
| 458 | gui_update_cursor(TRUE, FALSE); |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | /* |
| 463 | * Call-back routines. |
| 464 | */ |
| 465 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 466 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 467 | static VOID CALLBACK |
| 468 | _OnTimer( |
| 469 | HWND hwnd, |
| 470 | UINT uMsg, |
| 471 | UINT idEvent, |
| 472 | DWORD dwTime) |
| 473 | { |
| 474 | MSG msg; |
| 475 | |
| 476 | /* |
| 477 | TRACE2("Got timer event, id %d, s_wait_timer %d\n", idEvent, s_wait_timer); |
| 478 | */ |
| 479 | KillTimer(NULL, idEvent); |
| 480 | s_timed_out = TRUE; |
| 481 | |
| 482 | /* Eat spurious WM_TIMER messages */ |
Bram Moolenaar | 8c85fa3 | 2011-08-10 17:08:03 +0200 | [diff] [blame] | 483 | while (pPeekMessage(&msg, hwnd, WM_TIMER, WM_TIMER, PM_REMOVE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 484 | ; |
| 485 | if (idEvent == s_wait_timer) |
| 486 | s_wait_timer = 0; |
| 487 | } |
| 488 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 489 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 490 | static void |
| 491 | _OnDeadChar( |
| 492 | HWND hwnd, |
| 493 | UINT ch, |
| 494 | int cRepeat) |
| 495 | { |
| 496 | dead_key = 1; |
| 497 | } |
| 498 | |
| 499 | /* |
| 500 | * Convert Unicode character "ch" to bytes in "string[slen]". |
Bram Moolenaar | 85a3e5c | 2007-11-20 16:22:16 +0000 | [diff] [blame] | 501 | * When "had_alt" is TRUE the ALT key was included in "ch". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 502 | * Return the length. |
| 503 | */ |
| 504 | static int |
Bram Moolenaar | 85a3e5c | 2007-11-20 16:22:16 +0000 | [diff] [blame] | 505 | char_to_string(int ch, char_u *string, int slen, int had_alt) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 506 | { |
| 507 | int len; |
| 508 | int i; |
| 509 | #ifdef FEAT_MBYTE |
| 510 | WCHAR wstring[2]; |
| 511 | char_u *ws = NULL;; |
| 512 | |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 513 | if (os_version.dwPlatformId != VER_PLATFORM_WIN32_NT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 514 | { |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 515 | /* On Windows 95/98 we apparently get the character in the active |
| 516 | * codepage, not in UCS-2. If conversion is needed convert it to |
| 517 | * UCS-2 first. */ |
| 518 | if ((int)GetACP() == enc_codepage) |
| 519 | len = 0; /* no conversion required */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 520 | else |
| 521 | { |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 522 | string[0] = ch; |
| 523 | len = MultiByteToWideChar(GetACP(), 0, string, 1, wstring, 2); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 524 | } |
| 525 | } |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 526 | else |
| 527 | { |
| 528 | wstring[0] = ch; |
| 529 | len = 1; |
| 530 | } |
| 531 | |
| 532 | if (len > 0) |
| 533 | { |
| 534 | /* "ch" is a UTF-16 character. Convert it to a string of bytes. When |
| 535 | * "enc_codepage" is non-zero use the standard Win32 function, |
| 536 | * otherwise use our own conversion function (e.g., for UTF-8). */ |
| 537 | if (enc_codepage > 0) |
Bram Moolenaar | 85a3e5c | 2007-11-20 16:22:16 +0000 | [diff] [blame] | 538 | { |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 539 | len = WideCharToMultiByte(enc_codepage, 0, wstring, len, |
| 540 | string, slen, 0, NULL); |
Bram Moolenaar | 85a3e5c | 2007-11-20 16:22:16 +0000 | [diff] [blame] | 541 | /* If we had included the ALT key into the character but now the |
| 542 | * upper bit is no longer set, that probably means the conversion |
| 543 | * failed. Convert the original character and set the upper bit |
| 544 | * afterwards. */ |
| 545 | if (had_alt && len == 1 && ch >= 0x80 && string[0] < 0x80) |
| 546 | { |
| 547 | wstring[0] = ch & 0x7f; |
| 548 | len = WideCharToMultiByte(enc_codepage, 0, wstring, len, |
| 549 | string, slen, 0, NULL); |
| 550 | if (len == 1) /* safety check */ |
| 551 | string[0] |= 0x80; |
| 552 | } |
| 553 | } |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 554 | else |
| 555 | { |
| 556 | len = 1; |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 557 | ws = utf16_to_enc(wstring, &len); |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 558 | if (ws == NULL) |
| 559 | len = 0; |
| 560 | else |
| 561 | { |
| 562 | if (len > slen) /* just in case */ |
| 563 | len = slen; |
| 564 | mch_memmove(string, ws, len); |
| 565 | vim_free(ws); |
| 566 | } |
| 567 | } |
| 568 | } |
| 569 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 570 | if (len == 0) |
| 571 | #endif |
| 572 | { |
| 573 | string[0] = ch; |
| 574 | len = 1; |
| 575 | } |
| 576 | |
| 577 | for (i = 0; i < len; ++i) |
| 578 | if (string[i] == CSI && len <= slen - 2) |
| 579 | { |
| 580 | /* Insert CSI as K_CSI. */ |
| 581 | mch_memmove(string + i + 3, string + i + 1, len - i - 1); |
| 582 | string[++i] = KS_EXTRA; |
| 583 | string[++i] = (int)KE_CSI; |
| 584 | len += 2; |
| 585 | } |
| 586 | |
| 587 | return len; |
| 588 | } |
| 589 | |
| 590 | /* |
| 591 | * Key hit, add it to the input buffer. |
| 592 | */ |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 593 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 594 | static void |
| 595 | _OnChar( |
| 596 | HWND hwnd, |
| 597 | UINT ch, |
| 598 | int cRepeat) |
| 599 | { |
| 600 | char_u string[40]; |
| 601 | int len = 0; |
| 602 | |
Bram Moolenaar | 85a3e5c | 2007-11-20 16:22:16 +0000 | [diff] [blame] | 603 | len = char_to_string(ch, string, 40, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 604 | if (len == 1 && string[0] == Ctrl_C && ctrl_c_interrupts) |
| 605 | { |
| 606 | trash_input_buf(); |
| 607 | got_int = TRUE; |
| 608 | } |
| 609 | |
| 610 | add_to_input_buf(string, len); |
| 611 | } |
| 612 | |
| 613 | /* |
| 614 | * Alt-Key hit, add it to the input buffer. |
| 615 | */ |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 616 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 617 | static void |
| 618 | _OnSysChar( |
| 619 | HWND hwnd, |
| 620 | UINT cch, |
| 621 | int cRepeat) |
| 622 | { |
| 623 | char_u string[40]; /* Enough for multibyte character */ |
| 624 | int len; |
| 625 | int modifiers; |
| 626 | int ch = cch; /* special keys are negative */ |
| 627 | |
| 628 | /* TRACE("OnSysChar(%d, %c)\n", ch, ch); */ |
| 629 | |
| 630 | /* OK, we have a character key (given by ch) which was entered with the |
| 631 | * ALT key pressed. Eg, if the user presses Alt-A, then ch == 'A'. Note |
| 632 | * that the system distinguishes Alt-a and Alt-A (Alt-Shift-a unless |
| 633 | * CAPSLOCK is pressed) at this point. |
| 634 | */ |
| 635 | modifiers = MOD_MASK_ALT; |
| 636 | if (GetKeyState(VK_SHIFT) & 0x8000) |
| 637 | modifiers |= MOD_MASK_SHIFT; |
| 638 | if (GetKeyState(VK_CONTROL) & 0x8000) |
| 639 | modifiers |= MOD_MASK_CTRL; |
| 640 | |
| 641 | ch = simplify_key(ch, &modifiers); |
| 642 | /* remove the SHIFT modifier for keys where it's already included, e.g., |
| 643 | * '(' and '*' */ |
| 644 | if (ch < 0x100 && !isalpha(ch) && isprint(ch)) |
| 645 | modifiers &= ~MOD_MASK_SHIFT; |
| 646 | |
| 647 | /* Interpret the ALT key as making the key META, include SHIFT, etc. */ |
| 648 | ch = extract_modifiers(ch, &modifiers); |
| 649 | if (ch == CSI) |
| 650 | ch = K_CSI; |
| 651 | |
| 652 | len = 0; |
| 653 | if (modifiers) |
| 654 | { |
| 655 | string[len++] = CSI; |
| 656 | string[len++] = KS_MODIFIER; |
| 657 | string[len++] = modifiers; |
| 658 | } |
| 659 | |
| 660 | if (IS_SPECIAL((int)ch)) |
| 661 | { |
| 662 | string[len++] = CSI; |
| 663 | string[len++] = K_SECOND((int)ch); |
| 664 | string[len++] = K_THIRD((int)ch); |
| 665 | } |
| 666 | else |
| 667 | { |
| 668 | /* Although the documentation isn't clear about it, we assume "ch" is |
| 669 | * a Unicode character. */ |
Bram Moolenaar | 85a3e5c | 2007-11-20 16:22:16 +0000 | [diff] [blame] | 670 | len += char_to_string(ch, string + len, 40 - len, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 671 | } |
| 672 | |
| 673 | add_to_input_buf(string, len); |
| 674 | } |
| 675 | |
| 676 | static void |
| 677 | _OnMouseEvent( |
| 678 | int button, |
| 679 | int x, |
| 680 | int y, |
| 681 | int repeated_click, |
| 682 | UINT keyFlags) |
| 683 | { |
| 684 | int vim_modifiers = 0x0; |
| 685 | |
Bram Moolenaar | ea40888 | 2007-12-03 21:21:03 +0000 | [diff] [blame] | 686 | s_getting_focus = FALSE; |
| 687 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 688 | if (keyFlags & MK_SHIFT) |
| 689 | vim_modifiers |= MOUSE_SHIFT; |
| 690 | if (keyFlags & MK_CONTROL) |
| 691 | vim_modifiers |= MOUSE_CTRL; |
| 692 | if (GetKeyState(VK_MENU) & 0x8000) |
| 693 | vim_modifiers |= MOUSE_ALT; |
| 694 | |
| 695 | gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers); |
| 696 | } |
| 697 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 698 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 699 | static void |
| 700 | _OnMouseButtonDown( |
| 701 | HWND hwnd, |
| 702 | BOOL fDoubleClick, |
| 703 | int x, |
| 704 | int y, |
| 705 | UINT keyFlags) |
| 706 | { |
| 707 | static LONG s_prevTime = 0; |
| 708 | |
| 709 | LONG currentTime = GetMessageTime(); |
| 710 | int button = -1; |
| 711 | int repeated_click; |
| 712 | |
| 713 | /* Give main window the focus: this is so the cursor isn't hollow. */ |
| 714 | (void)SetFocus(s_hwnd); |
| 715 | |
| 716 | if (s_uMsg == WM_LBUTTONDOWN || s_uMsg == WM_LBUTTONDBLCLK) |
| 717 | button = MOUSE_LEFT; |
| 718 | else if (s_uMsg == WM_MBUTTONDOWN || s_uMsg == WM_MBUTTONDBLCLK) |
| 719 | button = MOUSE_MIDDLE; |
| 720 | else if (s_uMsg == WM_RBUTTONDOWN || s_uMsg == WM_RBUTTONDBLCLK) |
| 721 | button = MOUSE_RIGHT; |
| 722 | #ifndef WIN16 /*<VN>*/ |
| 723 | else if (s_uMsg == WM_XBUTTONDOWN || s_uMsg == WM_XBUTTONDBLCLK) |
| 724 | { |
| 725 | #ifndef GET_XBUTTON_WPARAM |
| 726 | # define GET_XBUTTON_WPARAM(wParam) (HIWORD(wParam)) |
| 727 | #endif |
| 728 | button = ((GET_XBUTTON_WPARAM(s_wParam) == 1) ? MOUSE_X1 : MOUSE_X2); |
| 729 | } |
| 730 | else if (s_uMsg == WM_CAPTURECHANGED) |
| 731 | { |
| 732 | /* on W95/NT4, somehow you get in here with an odd Msg |
| 733 | * if you press one button while holding down the other..*/ |
| 734 | if (s_button_pending == MOUSE_LEFT) |
| 735 | button = MOUSE_RIGHT; |
| 736 | else |
| 737 | button = MOUSE_LEFT; |
| 738 | } |
| 739 | #endif |
| 740 | if (button >= 0) |
| 741 | { |
| 742 | repeated_click = ((int)(currentTime - s_prevTime) < p_mouset); |
| 743 | |
| 744 | /* |
| 745 | * Holding down the left and right buttons simulates pushing the middle |
| 746 | * button. |
| 747 | */ |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 748 | if (repeated_click |
| 749 | && ((button == MOUSE_LEFT && s_button_pending == MOUSE_RIGHT) |
| 750 | || (button == MOUSE_RIGHT |
| 751 | && s_button_pending == MOUSE_LEFT))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 752 | { |
| 753 | /* |
| 754 | * Hmm, gui.c will ignore more than one button down at a time, so |
| 755 | * pretend we let go of it first. |
| 756 | */ |
| 757 | gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, 0x0); |
| 758 | button = MOUSE_MIDDLE; |
| 759 | repeated_click = FALSE; |
| 760 | s_button_pending = -1; |
| 761 | _OnMouseEvent(button, x, y, repeated_click, keyFlags); |
| 762 | } |
| 763 | else if ((repeated_click) |
| 764 | || (mouse_model_popup() && (button == MOUSE_RIGHT))) |
| 765 | { |
| 766 | if (s_button_pending > -1) |
| 767 | { |
| 768 | _OnMouseEvent(s_button_pending, x, y, FALSE, keyFlags); |
| 769 | s_button_pending = -1; |
| 770 | } |
| 771 | /* TRACE("Button down at x %d, y %d\n", x, y); */ |
| 772 | _OnMouseEvent(button, x, y, repeated_click, keyFlags); |
| 773 | } |
| 774 | else |
| 775 | { |
| 776 | /* |
| 777 | * If this is the first press (i.e. not a multiple click) don't |
| 778 | * action immediately, but store and wait for: |
| 779 | * i) button-up |
| 780 | * ii) mouse move |
| 781 | * iii) another button press |
| 782 | * before using it. |
| 783 | * This enables us to make left+right simulate middle button, |
| 784 | * without left or right being actioned first. The side-effect is |
| 785 | * that if you click and hold the mouse without dragging, the |
| 786 | * cursor doesn't move until you release the button. In practice |
| 787 | * this is hardly a problem. |
| 788 | */ |
| 789 | s_button_pending = button; |
| 790 | s_x_pending = x; |
| 791 | s_y_pending = y; |
| 792 | s_kFlags_pending = keyFlags; |
| 793 | } |
| 794 | |
| 795 | s_prevTime = currentTime; |
| 796 | } |
| 797 | } |
| 798 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 799 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 800 | static void |
| 801 | _OnMouseMoveOrRelease( |
| 802 | HWND hwnd, |
| 803 | int x, |
| 804 | int y, |
| 805 | UINT keyFlags) |
| 806 | { |
| 807 | int button; |
| 808 | |
Bram Moolenaar | ea40888 | 2007-12-03 21:21:03 +0000 | [diff] [blame] | 809 | s_getting_focus = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 810 | if (s_button_pending > -1) |
| 811 | { |
| 812 | /* Delayed action for mouse down event */ |
| 813 | _OnMouseEvent(s_button_pending, s_x_pending, |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 814 | s_y_pending, FALSE, s_kFlags_pending); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 815 | s_button_pending = -1; |
| 816 | } |
| 817 | if (s_uMsg == WM_MOUSEMOVE) |
| 818 | { |
| 819 | /* |
| 820 | * It's only a MOUSE_DRAG if one or more mouse buttons are being held |
| 821 | * down. |
| 822 | */ |
| 823 | if (!(keyFlags & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON |
| 824 | | MK_XBUTTON1 | MK_XBUTTON2))) |
| 825 | { |
| 826 | gui_mouse_moved(x, y); |
| 827 | return; |
| 828 | } |
| 829 | |
| 830 | /* |
| 831 | * While button is down, keep grabbing mouse move events when |
| 832 | * the mouse goes outside the window |
| 833 | */ |
| 834 | SetCapture(s_textArea); |
| 835 | button = MOUSE_DRAG; |
| 836 | /* TRACE(" move at x %d, y %d\n", x, y); */ |
| 837 | } |
| 838 | else |
| 839 | { |
| 840 | ReleaseCapture(); |
| 841 | button = MOUSE_RELEASE; |
| 842 | /* TRACE(" up at x %d, y %d\n", x, y); */ |
| 843 | } |
| 844 | |
| 845 | _OnMouseEvent(button, x, y, FALSE, keyFlags); |
| 846 | } |
| 847 | |
| 848 | #ifdef FEAT_MENU |
| 849 | /* |
| 850 | * Find the vimmenu_T with the given id |
| 851 | */ |
| 852 | static vimmenu_T * |
| 853 | gui_mswin_find_menu( |
| 854 | vimmenu_T *pMenu, |
| 855 | int id) |
| 856 | { |
| 857 | vimmenu_T *pChildMenu; |
| 858 | |
| 859 | while (pMenu) |
| 860 | { |
| 861 | if (pMenu->id == (UINT)id) |
| 862 | break; |
| 863 | if (pMenu->children != NULL) |
| 864 | { |
| 865 | pChildMenu = gui_mswin_find_menu(pMenu->children, id); |
| 866 | if (pChildMenu) |
| 867 | { |
| 868 | pMenu = pChildMenu; |
| 869 | break; |
| 870 | } |
| 871 | } |
| 872 | pMenu = pMenu->next; |
| 873 | } |
| 874 | return pMenu; |
| 875 | } |
| 876 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 877 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 878 | static void |
| 879 | _OnMenu( |
| 880 | HWND hwnd, |
| 881 | int id, |
| 882 | HWND hwndCtl, |
| 883 | UINT codeNotify) |
| 884 | { |
| 885 | vimmenu_T *pMenu; |
| 886 | |
| 887 | pMenu = gui_mswin_find_menu(root_menu, id); |
| 888 | if (pMenu) |
| 889 | gui_menu_cb(pMenu); |
| 890 | } |
| 891 | #endif |
| 892 | |
| 893 | #ifdef MSWIN_FIND_REPLACE |
Bram Moolenaar | 3ca9a8a | 2009-01-28 20:23:17 +0000 | [diff] [blame] | 894 | # if defined(FEAT_MBYTE) && defined(WIN3264) |
| 895 | /* |
| 896 | * copy useful data from structure LPFINDREPLACE to structure LPFINDREPLACEW |
| 897 | */ |
| 898 | static void |
| 899 | findrep_atow(LPFINDREPLACEW lpfrw, LPFINDREPLACE lpfr) |
| 900 | { |
| 901 | WCHAR *wp; |
| 902 | |
| 903 | lpfrw->hwndOwner = lpfr->hwndOwner; |
| 904 | lpfrw->Flags = lpfr->Flags; |
| 905 | |
| 906 | wp = enc_to_utf16(lpfr->lpstrFindWhat, NULL); |
| 907 | wcsncpy(lpfrw->lpstrFindWhat, wp, lpfrw->wFindWhatLen - 1); |
| 908 | vim_free(wp); |
| 909 | |
| 910 | /* the field "lpstrReplaceWith" doesn't need to be copied */ |
| 911 | } |
| 912 | |
| 913 | /* |
| 914 | * copy useful data from structure LPFINDREPLACEW to structure LPFINDREPLACE |
| 915 | */ |
| 916 | static void |
| 917 | findrep_wtoa(LPFINDREPLACE lpfr, LPFINDREPLACEW lpfrw) |
| 918 | { |
| 919 | char_u *p; |
| 920 | |
| 921 | lpfr->Flags = lpfrw->Flags; |
| 922 | |
| 923 | p = utf16_to_enc(lpfrw->lpstrFindWhat, NULL); |
| 924 | vim_strncpy(lpfr->lpstrFindWhat, p, lpfr->wFindWhatLen - 1); |
| 925 | vim_free(p); |
| 926 | |
| 927 | p = utf16_to_enc(lpfrw->lpstrReplaceWith, NULL); |
| 928 | vim_strncpy(lpfr->lpstrReplaceWith, p, lpfr->wReplaceWithLen - 1); |
| 929 | vim_free(p); |
| 930 | } |
| 931 | # endif |
| 932 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 933 | /* |
| 934 | * Handle a Find/Replace window message. |
| 935 | */ |
| 936 | static void |
| 937 | _OnFindRepl(void) |
| 938 | { |
| 939 | int flags = 0; |
| 940 | int down; |
| 941 | |
Bram Moolenaar | 3ca9a8a | 2009-01-28 20:23:17 +0000 | [diff] [blame] | 942 | # if defined(FEAT_MBYTE) && defined(WIN3264) |
| 943 | /* If the OS is Windows NT, and 'encoding' differs from active codepage: |
| 944 | * convert text from wide string. */ |
| 945 | if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT |
| 946 | && enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 947 | { |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 948 | findrep_wtoa(&s_findrep_struct, &s_findrep_struct_w); |
Bram Moolenaar | 3ca9a8a | 2009-01-28 20:23:17 +0000 | [diff] [blame] | 949 | } |
| 950 | # endif |
| 951 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 952 | if (s_findrep_struct.Flags & FR_DIALOGTERM) |
| 953 | /* Give main window the focus back. */ |
| 954 | (void)SetFocus(s_hwnd); |
| 955 | |
| 956 | if (s_findrep_struct.Flags & FR_FINDNEXT) |
| 957 | { |
| 958 | flags = FRD_FINDNEXT; |
| 959 | |
| 960 | /* Give main window the focus back: this is so the cursor isn't |
| 961 | * hollow. */ |
| 962 | (void)SetFocus(s_hwnd); |
| 963 | } |
| 964 | else if (s_findrep_struct.Flags & FR_REPLACE) |
| 965 | { |
| 966 | flags = FRD_REPLACE; |
| 967 | |
| 968 | /* Give main window the focus back: this is so the cursor isn't |
| 969 | * hollow. */ |
| 970 | (void)SetFocus(s_hwnd); |
| 971 | } |
| 972 | else if (s_findrep_struct.Flags & FR_REPLACEALL) |
| 973 | { |
| 974 | flags = FRD_REPLACEALL; |
| 975 | } |
| 976 | |
| 977 | if (flags != 0) |
| 978 | { |
| 979 | /* Call the generic GUI function to do the actual work. */ |
| 980 | if (s_findrep_struct.Flags & FR_WHOLEWORD) |
| 981 | flags |= FRD_WHOLE_WORD; |
| 982 | if (s_findrep_struct.Flags & FR_MATCHCASE) |
| 983 | flags |= FRD_MATCH_CASE; |
| 984 | down = (s_findrep_struct.Flags & FR_DOWN) != 0; |
| 985 | gui_do_findrepl(flags, s_findrep_struct.lpstrFindWhat, |
| 986 | s_findrep_struct.lpstrReplaceWith, down); |
| 987 | } |
| 988 | } |
| 989 | #endif |
| 990 | |
| 991 | static void |
| 992 | HandleMouseHide(UINT uMsg, LPARAM lParam) |
| 993 | { |
| 994 | static LPARAM last_lParam = 0L; |
| 995 | |
| 996 | /* We sometimes get a mousemove when the mouse didn't move... */ |
| 997 | if (uMsg == WM_MOUSEMOVE) |
| 998 | { |
| 999 | if (lParam == last_lParam) |
| 1000 | return; |
| 1001 | last_lParam = lParam; |
| 1002 | } |
| 1003 | |
| 1004 | /* Handle specially, to centralise coding. We need to be sure we catch all |
| 1005 | * possible events which should cause us to restore the cursor (as it is a |
| 1006 | * shared resource, we take full responsibility for it). |
| 1007 | */ |
| 1008 | switch (uMsg) |
| 1009 | { |
| 1010 | case WM_KEYUP: |
| 1011 | case WM_CHAR: |
| 1012 | /* |
| 1013 | * blank out the pointer if necessary |
| 1014 | */ |
| 1015 | if (p_mh) |
| 1016 | gui_mch_mousehide(TRUE); |
| 1017 | break; |
| 1018 | |
| 1019 | case WM_SYSKEYUP: /* show the pointer when a system-key is pressed */ |
| 1020 | case WM_SYSCHAR: |
| 1021 | case WM_MOUSEMOVE: /* show the pointer on any mouse action */ |
| 1022 | case WM_LBUTTONDOWN: |
| 1023 | case WM_LBUTTONUP: |
| 1024 | case WM_MBUTTONDOWN: |
| 1025 | case WM_MBUTTONUP: |
| 1026 | case WM_RBUTTONDOWN: |
| 1027 | case WM_RBUTTONUP: |
| 1028 | case WM_XBUTTONDOWN: |
| 1029 | case WM_XBUTTONUP: |
| 1030 | case WM_NCMOUSEMOVE: |
| 1031 | case WM_NCLBUTTONDOWN: |
| 1032 | case WM_NCLBUTTONUP: |
| 1033 | case WM_NCMBUTTONDOWN: |
| 1034 | case WM_NCMBUTTONUP: |
| 1035 | case WM_NCRBUTTONDOWN: |
| 1036 | case WM_NCRBUTTONUP: |
| 1037 | case WM_KILLFOCUS: |
| 1038 | /* |
| 1039 | * if the pointer is currently hidden, then we should show it. |
| 1040 | */ |
| 1041 | gui_mch_mousehide(FALSE); |
| 1042 | break; |
| 1043 | } |
| 1044 | } |
| 1045 | |
| 1046 | static LRESULT CALLBACK |
| 1047 | _TextAreaWndProc( |
| 1048 | HWND hwnd, |
| 1049 | UINT uMsg, |
| 1050 | WPARAM wParam, |
| 1051 | LPARAM lParam) |
| 1052 | { |
| 1053 | /* |
| 1054 | TRACE("TextAreaWndProc: hwnd = %08x, msg = %x, wParam = %x, lParam = %x\n", |
| 1055 | hwnd, uMsg, wParam, lParam); |
| 1056 | */ |
| 1057 | |
| 1058 | HandleMouseHide(uMsg, lParam); |
| 1059 | |
| 1060 | s_uMsg = uMsg; |
| 1061 | s_wParam = wParam; |
| 1062 | s_lParam = lParam; |
| 1063 | |
| 1064 | #ifdef FEAT_BEVAL |
| 1065 | TrackUserActivity(uMsg); |
| 1066 | #endif |
| 1067 | |
| 1068 | switch (uMsg) |
| 1069 | { |
| 1070 | HANDLE_MSG(hwnd, WM_LBUTTONDBLCLK,_OnMouseButtonDown); |
| 1071 | HANDLE_MSG(hwnd, WM_LBUTTONDOWN,_OnMouseButtonDown); |
| 1072 | HANDLE_MSG(hwnd, WM_LBUTTONUP, _OnMouseMoveOrRelease); |
| 1073 | HANDLE_MSG(hwnd, WM_MBUTTONDBLCLK,_OnMouseButtonDown); |
| 1074 | HANDLE_MSG(hwnd, WM_MBUTTONDOWN,_OnMouseButtonDown); |
| 1075 | HANDLE_MSG(hwnd, WM_MBUTTONUP, _OnMouseMoveOrRelease); |
| 1076 | HANDLE_MSG(hwnd, WM_MOUSEMOVE, _OnMouseMoveOrRelease); |
| 1077 | HANDLE_MSG(hwnd, WM_PAINT, _OnPaint); |
| 1078 | HANDLE_MSG(hwnd, WM_RBUTTONDBLCLK,_OnMouseButtonDown); |
| 1079 | HANDLE_MSG(hwnd, WM_RBUTTONDOWN,_OnMouseButtonDown); |
| 1080 | HANDLE_MSG(hwnd, WM_RBUTTONUP, _OnMouseMoveOrRelease); |
| 1081 | #ifndef WIN16 /*<VN>*/ |
| 1082 | HANDLE_MSG(hwnd, WM_XBUTTONDBLCLK,_OnMouseButtonDown); |
| 1083 | HANDLE_MSG(hwnd, WM_XBUTTONDOWN,_OnMouseButtonDown); |
| 1084 | HANDLE_MSG(hwnd, WM_XBUTTONUP, _OnMouseMoveOrRelease); |
| 1085 | #endif |
| 1086 | |
| 1087 | #ifdef FEAT_BEVAL |
| 1088 | case WM_NOTIFY: Handle_WM_Notify(hwnd, (LPNMHDR)lParam); |
| 1089 | return TRUE; |
| 1090 | #endif |
Bram Moolenaar | 4d526ad | 2010-02-03 12:23:24 +0100 | [diff] [blame] | 1091 | default: |
| 1092 | return MyWindowProc(hwnd, uMsg, wParam, lParam); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1093 | } |
| 1094 | } |
| 1095 | |
| 1096 | #if (defined(WIN3264) && defined(FEAT_MBYTE)) \ |
| 1097 | || defined(GLOBAL_IME) \ |
| 1098 | || defined(PROTO) |
| 1099 | # ifdef PROTO |
| 1100 | typedef int WINAPI; |
| 1101 | # endif |
| 1102 | |
| 1103 | LRESULT WINAPI |
| 1104 | vim_WindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) |
| 1105 | { |
| 1106 | # ifdef GLOBAL_IME |
| 1107 | return global_ime_DefWindowProc(hwnd, message, wParam, lParam); |
| 1108 | # else |
| 1109 | if (wide_WindowProc) |
| 1110 | return DefWindowProcW(hwnd, message, wParam, lParam); |
| 1111 | return DefWindowProc(hwnd, message, wParam, lParam); |
| 1112 | #endif |
| 1113 | } |
| 1114 | #endif |
| 1115 | |
| 1116 | /* |
| 1117 | * Called when the foreground or background color has been changed. |
| 1118 | */ |
| 1119 | void |
| 1120 | gui_mch_new_colors(void) |
| 1121 | { |
| 1122 | /* nothing to do? */ |
| 1123 | } |
| 1124 | |
| 1125 | /* |
| 1126 | * Set the colors to their default values. |
| 1127 | */ |
| 1128 | void |
| 1129 | gui_mch_def_colors() |
| 1130 | { |
| 1131 | gui.norm_pixel = GetSysColor(COLOR_WINDOWTEXT); |
| 1132 | gui.back_pixel = GetSysColor(COLOR_WINDOW); |
| 1133 | gui.def_norm_pixel = gui.norm_pixel; |
| 1134 | gui.def_back_pixel = gui.back_pixel; |
| 1135 | } |
| 1136 | |
| 1137 | /* |
| 1138 | * Open the GUI window which was created by a call to gui_mch_init(). |
| 1139 | */ |
| 1140 | int |
| 1141 | gui_mch_open(void) |
| 1142 | { |
| 1143 | #ifndef SW_SHOWDEFAULT |
| 1144 | # define SW_SHOWDEFAULT 10 /* Borland 5.0 doesn't have it */ |
| 1145 | #endif |
| 1146 | /* Actually open the window, if not already visible |
| 1147 | * (may be done already in gui_mch_set_shellsize) */ |
| 1148 | if (!IsWindowVisible(s_hwnd)) |
| 1149 | ShowWindow(s_hwnd, SW_SHOWDEFAULT); |
| 1150 | |
Bram Moolenaar | e2f98b9 | 2006-03-29 21:18:24 +0000 | [diff] [blame] | 1151 | #ifdef MSWIN_FIND_REPLACE |
| 1152 | /* Init replace string here, so that we keep it when re-opening the |
| 1153 | * dialog. */ |
| 1154 | s_findrep_struct.lpstrReplaceWith[0] = NUL; |
| 1155 | #endif |
| 1156 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1157 | return OK; |
| 1158 | } |
| 1159 | |
| 1160 | /* |
| 1161 | * Get the position of the top left corner of the window. |
| 1162 | */ |
| 1163 | int |
| 1164 | gui_mch_get_winpos(int *x, int *y) |
| 1165 | { |
| 1166 | RECT rect; |
| 1167 | |
| 1168 | GetWindowRect(s_hwnd, &rect); |
| 1169 | *x = rect.left; |
| 1170 | *y = rect.top; |
| 1171 | return OK; |
| 1172 | } |
| 1173 | |
| 1174 | /* |
| 1175 | * Set the position of the top left corner of the window to the given |
| 1176 | * coordinates. |
| 1177 | */ |
| 1178 | void |
| 1179 | gui_mch_set_winpos(int x, int y) |
| 1180 | { |
| 1181 | SetWindowPos(s_hwnd, NULL, x, y, 0, 0, |
| 1182 | SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE); |
| 1183 | } |
| 1184 | void |
| 1185 | gui_mch_set_text_area_pos(int x, int y, int w, int h) |
| 1186 | { |
| 1187 | static int oldx = 0; |
| 1188 | static int oldy = 0; |
| 1189 | |
| 1190 | SetWindowPos(s_textArea, NULL, x, y, w, h, SWP_NOZORDER | SWP_NOACTIVATE); |
| 1191 | |
| 1192 | #ifdef FEAT_TOOLBAR |
| 1193 | if (vim_strchr(p_go, GO_TOOLBAR) != NULL) |
| 1194 | SendMessage(s_toolbarhwnd, WM_SIZE, |
Bram Moolenaar | 5555acc | 2006-04-07 21:33:12 +0000 | [diff] [blame] | 1195 | (WPARAM)0, (LPARAM)(w + ((long)(TOOLBAR_BUTTON_HEIGHT+8)<<16))); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1196 | #endif |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 1197 | #if defined(FEAT_GUI_TABLINE) |
| 1198 | if (showing_tabline) |
| 1199 | { |
Bram Moolenaar | 2e2a281 | 2006-03-27 20:55:21 +0000 | [diff] [blame] | 1200 | int top = 0; |
Bram Moolenaar | c6fe919 | 2006-04-09 21:54:49 +0000 | [diff] [blame] | 1201 | RECT rect; |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 1202 | |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 1203 | # ifdef FEAT_TOOLBAR |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 1204 | if (vim_strchr(p_go, GO_TOOLBAR) != NULL) |
| 1205 | top = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT; |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 1206 | # endif |
Bram Moolenaar | 5555acc | 2006-04-07 21:33:12 +0000 | [diff] [blame] | 1207 | GetClientRect(s_hwnd, &rect); |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 1208 | MoveWindow(s_tabhwnd, 0, top, rect.right, gui.tabline_height, TRUE); |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 1209 | } |
| 1210 | #endif |
| 1211 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1212 | /* When side scroll bar is unshown, the size of window will change. |
| 1213 | * then, the text area move left or right. thus client rect should be |
| 1214 | * forcely redraw. (Yasuhiro Matsumoto) */ |
| 1215 | if (oldx != x || oldy != y) |
| 1216 | { |
| 1217 | InvalidateRect(s_hwnd, NULL, FALSE); |
| 1218 | oldx = x; |
| 1219 | oldy = y; |
| 1220 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1221 | } |
| 1222 | |
| 1223 | |
| 1224 | /* |
| 1225 | * Scrollbar stuff: |
| 1226 | */ |
| 1227 | |
| 1228 | void |
| 1229 | gui_mch_enable_scrollbar( |
| 1230 | scrollbar_T *sb, |
| 1231 | int flag) |
| 1232 | { |
| 1233 | ShowScrollBar(sb->id, SB_CTL, flag); |
| 1234 | |
| 1235 | /* TODO: When the window is maximized, the size of the window stays the |
| 1236 | * same, thus the size of the text area changes. On Win98 it's OK, on Win |
| 1237 | * NT 4.0 it's not... */ |
| 1238 | } |
| 1239 | |
| 1240 | void |
| 1241 | gui_mch_set_scrollbar_pos( |
| 1242 | scrollbar_T *sb, |
| 1243 | int x, |
| 1244 | int y, |
| 1245 | int w, |
| 1246 | int h) |
| 1247 | { |
Bram Moolenaar | 0274363 | 2005-07-25 20:42:36 +0000 | [diff] [blame] | 1248 | SetWindowPos(sb->id, NULL, x, y, w, h, |
| 1249 | SWP_NOZORDER | SWP_NOACTIVATE | SWP_SHOWWINDOW); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1250 | } |
| 1251 | |
| 1252 | void |
| 1253 | gui_mch_create_scrollbar( |
| 1254 | scrollbar_T *sb, |
| 1255 | int orient) /* SBAR_VERT or SBAR_HORIZ */ |
| 1256 | { |
| 1257 | sb->id = CreateWindow( |
| 1258 | "SCROLLBAR", "Scrollbar", |
| 1259 | WS_CHILD | ((orient == SBAR_VERT) ? SBS_VERT : SBS_HORZ), 0, 0, |
| 1260 | 10, /* Any value will do for now */ |
| 1261 | 10, /* Any value will do for now */ |
| 1262 | s_hwnd, NULL, |
| 1263 | s_hinst, NULL); |
| 1264 | } |
| 1265 | |
| 1266 | /* |
| 1267 | * Find the scrollbar with the given hwnd. |
| 1268 | */ |
| 1269 | static scrollbar_T * |
| 1270 | gui_mswin_find_scrollbar(HWND hwnd) |
| 1271 | { |
| 1272 | win_T *wp; |
| 1273 | |
| 1274 | if (gui.bottom_sbar.id == hwnd) |
| 1275 | return &gui.bottom_sbar; |
| 1276 | FOR_ALL_WINDOWS(wp) |
| 1277 | { |
| 1278 | if (wp->w_scrollbars[SBAR_LEFT].id == hwnd) |
| 1279 | return &wp->w_scrollbars[SBAR_LEFT]; |
| 1280 | if (wp->w_scrollbars[SBAR_RIGHT].id == hwnd) |
| 1281 | return &wp->w_scrollbars[SBAR_RIGHT]; |
| 1282 | } |
| 1283 | return NULL; |
| 1284 | } |
| 1285 | |
| 1286 | /* |
| 1287 | * Get the character size of a font. |
| 1288 | */ |
| 1289 | static void |
| 1290 | GetFontSize(GuiFont font) |
| 1291 | { |
| 1292 | HWND hwnd = GetDesktopWindow(); |
| 1293 | HDC hdc = GetWindowDC(hwnd); |
| 1294 | HFONT hfntOld = SelectFont(hdc, (HFONT)font); |
| 1295 | TEXTMETRIC tm; |
| 1296 | |
| 1297 | GetTextMetrics(hdc, &tm); |
| 1298 | gui.char_width = tm.tmAveCharWidth + tm.tmOverhang; |
| 1299 | |
| 1300 | gui.char_height = tm.tmHeight |
| 1301 | #ifndef MSWIN16_FASTTEXT |
Bram Moolenaar | 0274363 | 2005-07-25 20:42:36 +0000 | [diff] [blame] | 1302 | + p_linespace |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1303 | #endif |
Bram Moolenaar | 0274363 | 2005-07-25 20:42:36 +0000 | [diff] [blame] | 1304 | ; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1305 | |
| 1306 | SelectFont(hdc, hfntOld); |
| 1307 | |
| 1308 | ReleaseDC(hwnd, hdc); |
| 1309 | } |
| 1310 | |
Bram Moolenaar | 0274363 | 2005-07-25 20:42:36 +0000 | [diff] [blame] | 1311 | /* |
| 1312 | * Adjust gui.char_height (after 'linespace' was changed). |
| 1313 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1314 | int |
Bram Moolenaar | 0274363 | 2005-07-25 20:42:36 +0000 | [diff] [blame] | 1315 | gui_mch_adjust_charheight(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1316 | { |
| 1317 | GetFontSize(gui.norm_font); |
| 1318 | return OK; |
| 1319 | } |
| 1320 | |
| 1321 | static GuiFont |
| 1322 | get_font_handle(LOGFONT *lf) |
| 1323 | { |
| 1324 | HFONT font = NULL; |
| 1325 | |
| 1326 | /* Load the font */ |
| 1327 | font = CreateFontIndirect(lf); |
| 1328 | |
| 1329 | if (font == NULL) |
| 1330 | return NOFONT; |
| 1331 | |
| 1332 | return (GuiFont)font; |
| 1333 | } |
| 1334 | |
| 1335 | static int |
| 1336 | pixels_to_points(int pixels, int vertical) |
| 1337 | { |
| 1338 | int points; |
| 1339 | HWND hwnd; |
| 1340 | HDC hdc; |
| 1341 | |
| 1342 | hwnd = GetDesktopWindow(); |
| 1343 | hdc = GetWindowDC(hwnd); |
| 1344 | |
| 1345 | points = MulDiv(pixels, 72, |
| 1346 | GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX)); |
| 1347 | |
| 1348 | ReleaseDC(hwnd, hdc); |
| 1349 | |
| 1350 | return points; |
| 1351 | } |
| 1352 | |
| 1353 | GuiFont |
| 1354 | gui_mch_get_font( |
| 1355 | char_u *name, |
| 1356 | int giveErrorIfMissing) |
| 1357 | { |
| 1358 | LOGFONT lf; |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1359 | GuiFont font = NOFONT; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1360 | |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1361 | if (get_logfont(&lf, name, NULL, giveErrorIfMissing) == OK) |
| 1362 | font = get_font_handle(&lf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1363 | if (font == NOFONT && giveErrorIfMissing) |
| 1364 | EMSG2(_(e_font), name); |
| 1365 | return font; |
| 1366 | } |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1367 | |
Bram Moolenaar | dfccaf0 | 2004-12-31 20:56:11 +0000 | [diff] [blame] | 1368 | #if defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1369 | /* |
| 1370 | * Return the name of font "font" in allocated memory. |
| 1371 | * Don't know how to get the actual name, thus use the provided name. |
| 1372 | */ |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 1373 | /*ARGSUSED*/ |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1374 | char_u * |
| 1375 | gui_mch_get_fontname(font, name) |
| 1376 | GuiFont font; |
| 1377 | char_u *name; |
| 1378 | { |
| 1379 | if (name == NULL) |
| 1380 | return NULL; |
| 1381 | return vim_strsave(name); |
| 1382 | } |
Bram Moolenaar | dfccaf0 | 2004-12-31 20:56:11 +0000 | [diff] [blame] | 1383 | #endif |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1384 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1385 | void |
| 1386 | gui_mch_free_font(GuiFont font) |
| 1387 | { |
| 1388 | if (font) |
| 1389 | DeleteObject((HFONT)font); |
| 1390 | } |
| 1391 | |
| 1392 | static int |
| 1393 | hex_digit(int c) |
| 1394 | { |
| 1395 | if (VIM_ISDIGIT(c)) |
| 1396 | return c - '0'; |
| 1397 | c = TOLOWER_ASC(c); |
| 1398 | if (c >= 'a' && c <= 'f') |
| 1399 | return c - 'a' + 10; |
| 1400 | return -1000; |
| 1401 | } |
| 1402 | /* |
| 1403 | * Return the Pixel value (color) for the given color name. |
| 1404 | * Return INVALCOLOR for error. |
| 1405 | */ |
| 1406 | guicolor_T |
| 1407 | gui_mch_get_color(char_u *name) |
| 1408 | { |
| 1409 | typedef struct guicolor_tTable |
| 1410 | { |
| 1411 | char *name; |
| 1412 | COLORREF color; |
| 1413 | } guicolor_tTable; |
| 1414 | |
| 1415 | static guicolor_tTable table[] = |
| 1416 | { |
| 1417 | {"Black", RGB(0x00, 0x00, 0x00)}, |
Bram Moolenaar | 092e3c8 | 2011-09-07 18:58:29 +0200 | [diff] [blame] | 1418 | {"DarkGray", RGB(0xA9, 0xA9, 0xA9)}, |
| 1419 | {"DarkGrey", RGB(0xA9, 0xA9, 0xA9)}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1420 | {"Gray", RGB(0xC0, 0xC0, 0xC0)}, |
| 1421 | {"Grey", RGB(0xC0, 0xC0, 0xC0)}, |
Bram Moolenaar | 092e3c8 | 2011-09-07 18:58:29 +0200 | [diff] [blame] | 1422 | {"LightGray", RGB(0xD3, 0xD3, 0xD3)}, |
| 1423 | {"LightGrey", RGB(0xD3, 0xD3, 0xD3)}, |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 1424 | {"Gray10", RGB(0x1A, 0x1A, 0x1A)}, |
| 1425 | {"Grey10", RGB(0x1A, 0x1A, 0x1A)}, |
| 1426 | {"Gray20", RGB(0x33, 0x33, 0x33)}, |
| 1427 | {"Grey20", RGB(0x33, 0x33, 0x33)}, |
| 1428 | {"Gray30", RGB(0x4D, 0x4D, 0x4D)}, |
| 1429 | {"Grey30", RGB(0x4D, 0x4D, 0x4D)}, |
| 1430 | {"Gray40", RGB(0x66, 0x66, 0x66)}, |
| 1431 | {"Grey40", RGB(0x66, 0x66, 0x66)}, |
| 1432 | {"Gray50", RGB(0x7F, 0x7F, 0x7F)}, |
| 1433 | {"Grey50", RGB(0x7F, 0x7F, 0x7F)}, |
| 1434 | {"Gray60", RGB(0x99, 0x99, 0x99)}, |
| 1435 | {"Grey60", RGB(0x99, 0x99, 0x99)}, |
| 1436 | {"Gray70", RGB(0xB3, 0xB3, 0xB3)}, |
| 1437 | {"Grey70", RGB(0xB3, 0xB3, 0xB3)}, |
| 1438 | {"Gray80", RGB(0xCC, 0xCC, 0xCC)}, |
| 1439 | {"Grey80", RGB(0xCC, 0xCC, 0xCC)}, |
Bram Moolenaar | e2f98b9 | 2006-03-29 21:18:24 +0000 | [diff] [blame] | 1440 | {"Gray90", RGB(0xE5, 0xE5, 0xE5)}, |
| 1441 | {"Grey90", RGB(0xE5, 0xE5, 0xE5)}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1442 | {"White", RGB(0xFF, 0xFF, 0xFF)}, |
| 1443 | {"DarkRed", RGB(0x80, 0x00, 0x00)}, |
| 1444 | {"Red", RGB(0xFF, 0x00, 0x00)}, |
| 1445 | {"LightRed", RGB(0xFF, 0xA0, 0xA0)}, |
| 1446 | {"DarkBlue", RGB(0x00, 0x00, 0x80)}, |
| 1447 | {"Blue", RGB(0x00, 0x00, 0xFF)}, |
Bram Moolenaar | 092e3c8 | 2011-09-07 18:58:29 +0200 | [diff] [blame] | 1448 | {"LightBlue", RGB(0xAD, 0xD8, 0xE6)}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1449 | {"DarkGreen", RGB(0x00, 0x80, 0x00)}, |
| 1450 | {"Green", RGB(0x00, 0xFF, 0x00)}, |
Bram Moolenaar | 092e3c8 | 2011-09-07 18:58:29 +0200 | [diff] [blame] | 1451 | {"LightGreen", RGB(0x90, 0xEE, 0x90)}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1452 | {"DarkCyan", RGB(0x00, 0x80, 0x80)}, |
| 1453 | {"Cyan", RGB(0x00, 0xFF, 0xFF)}, |
Bram Moolenaar | 092e3c8 | 2011-09-07 18:58:29 +0200 | [diff] [blame] | 1454 | {"LightCyan", RGB(0xE0, 0xFF, 0xFF)}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1455 | {"DarkMagenta", RGB(0x80, 0x00, 0x80)}, |
| 1456 | {"Magenta", RGB(0xFF, 0x00, 0xFF)}, |
| 1457 | {"LightMagenta", RGB(0xFF, 0xA0, 0xFF)}, |
| 1458 | {"Brown", RGB(0x80, 0x40, 0x40)}, |
| 1459 | {"Yellow", RGB(0xFF, 0xFF, 0x00)}, |
Bram Moolenaar | 092e3c8 | 2011-09-07 18:58:29 +0200 | [diff] [blame] | 1460 | {"LightYellow", RGB(0xFF, 0xFF, 0xE0)}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1461 | {"DarkYellow", RGB(0xBB, 0xBB, 0x00)}, |
| 1462 | {"SeaGreen", RGB(0x2E, 0x8B, 0x57)}, |
| 1463 | {"Orange", RGB(0xFF, 0xA5, 0x00)}, |
| 1464 | {"Purple", RGB(0xA0, 0x20, 0xF0)}, |
| 1465 | {"SlateBlue", RGB(0x6A, 0x5A, 0xCD)}, |
| 1466 | {"Violet", RGB(0xEE, 0x82, 0xEE)}, |
| 1467 | }; |
| 1468 | |
| 1469 | typedef struct SysColorTable |
| 1470 | { |
| 1471 | char *name; |
| 1472 | int color; |
| 1473 | } SysColorTable; |
| 1474 | |
| 1475 | static SysColorTable sys_table[] = |
| 1476 | { |
| 1477 | #ifdef WIN3264 |
| 1478 | {"SYS_3DDKSHADOW", COLOR_3DDKSHADOW}, |
| 1479 | {"SYS_3DHILIGHT", COLOR_3DHILIGHT}, |
| 1480 | #ifndef __MINGW32__ |
| 1481 | {"SYS_3DHIGHLIGHT", COLOR_3DHIGHLIGHT}, |
| 1482 | #endif |
| 1483 | {"SYS_BTNHILIGHT", COLOR_BTNHILIGHT}, |
| 1484 | {"SYS_BTNHIGHLIGHT", COLOR_BTNHIGHLIGHT}, |
| 1485 | {"SYS_3DLIGHT", COLOR_3DLIGHT}, |
| 1486 | {"SYS_3DSHADOW", COLOR_3DSHADOW}, |
| 1487 | {"SYS_DESKTOP", COLOR_DESKTOP}, |
| 1488 | {"SYS_INFOBK", COLOR_INFOBK}, |
| 1489 | {"SYS_INFOTEXT", COLOR_INFOTEXT}, |
| 1490 | {"SYS_3DFACE", COLOR_3DFACE}, |
| 1491 | #endif |
| 1492 | {"SYS_BTNFACE", COLOR_BTNFACE}, |
| 1493 | {"SYS_BTNSHADOW", COLOR_BTNSHADOW}, |
| 1494 | {"SYS_ACTIVEBORDER", COLOR_ACTIVEBORDER}, |
| 1495 | {"SYS_ACTIVECAPTION", COLOR_ACTIVECAPTION}, |
| 1496 | {"SYS_APPWORKSPACE", COLOR_APPWORKSPACE}, |
| 1497 | {"SYS_BACKGROUND", COLOR_BACKGROUND}, |
| 1498 | {"SYS_BTNTEXT", COLOR_BTNTEXT}, |
| 1499 | {"SYS_CAPTIONTEXT", COLOR_CAPTIONTEXT}, |
| 1500 | {"SYS_GRAYTEXT", COLOR_GRAYTEXT}, |
| 1501 | {"SYS_HIGHLIGHT", COLOR_HIGHLIGHT}, |
| 1502 | {"SYS_HIGHLIGHTTEXT", COLOR_HIGHLIGHTTEXT}, |
| 1503 | {"SYS_INACTIVEBORDER", COLOR_INACTIVEBORDER}, |
| 1504 | {"SYS_INACTIVECAPTION", COLOR_INACTIVECAPTION}, |
| 1505 | {"SYS_INACTIVECAPTIONTEXT", COLOR_INACTIVECAPTIONTEXT}, |
| 1506 | {"SYS_MENU", COLOR_MENU}, |
| 1507 | {"SYS_MENUTEXT", COLOR_MENUTEXT}, |
| 1508 | {"SYS_SCROLLBAR", COLOR_SCROLLBAR}, |
| 1509 | {"SYS_WINDOW", COLOR_WINDOW}, |
| 1510 | {"SYS_WINDOWFRAME", COLOR_WINDOWFRAME}, |
| 1511 | {"SYS_WINDOWTEXT", COLOR_WINDOWTEXT} |
| 1512 | }; |
| 1513 | |
| 1514 | int r, g, b; |
| 1515 | int i; |
| 1516 | |
| 1517 | if (name[0] == '#' && strlen(name) == 7) |
| 1518 | { |
| 1519 | /* Name is in "#rrggbb" format */ |
| 1520 | r = hex_digit(name[1]) * 16 + hex_digit(name[2]); |
| 1521 | g = hex_digit(name[3]) * 16 + hex_digit(name[4]); |
| 1522 | b = hex_digit(name[5]) * 16 + hex_digit(name[6]); |
| 1523 | if (r < 0 || g < 0 || b < 0) |
| 1524 | return INVALCOLOR; |
| 1525 | return RGB(r, g, b); |
| 1526 | } |
| 1527 | else |
| 1528 | { |
| 1529 | /* Check if the name is one of the colors we know */ |
| 1530 | for (i = 0; i < sizeof(table) / sizeof(table[0]); i++) |
| 1531 | if (STRICMP(name, table[i].name) == 0) |
| 1532 | return table[i].color; |
| 1533 | } |
| 1534 | |
| 1535 | /* |
| 1536 | * Try to look up a system colour. |
| 1537 | */ |
| 1538 | for (i = 0; i < sizeof(sys_table) / sizeof(sys_table[0]); i++) |
| 1539 | if (STRICMP(name, sys_table[i].name) == 0) |
| 1540 | return GetSysColor(sys_table[i].color); |
| 1541 | |
| 1542 | /* |
| 1543 | * Last attempt. Look in the file "$VIMRUNTIME/rgb.txt". |
| 1544 | */ |
| 1545 | { |
| 1546 | #define LINE_LEN 100 |
| 1547 | FILE *fd; |
| 1548 | char line[LINE_LEN]; |
| 1549 | char_u *fname; |
| 1550 | |
| 1551 | fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt"); |
| 1552 | if (fname == NULL) |
| 1553 | return INVALCOLOR; |
| 1554 | |
Bram Moolenaar | 5555acc | 2006-04-07 21:33:12 +0000 | [diff] [blame] | 1555 | fd = mch_fopen((char *)fname, "rt"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1556 | vim_free(fname); |
| 1557 | if (fd == NULL) |
| 1558 | return INVALCOLOR; |
| 1559 | |
| 1560 | while (!feof(fd)) |
| 1561 | { |
| 1562 | int len; |
| 1563 | int pos; |
| 1564 | char *color; |
| 1565 | |
| 1566 | fgets(line, LINE_LEN, fd); |
| 1567 | len = (int)STRLEN(line); |
| 1568 | |
| 1569 | if (len <= 1 || line[len-1] != '\n') |
| 1570 | continue; |
| 1571 | |
| 1572 | line[len-1] = '\0'; |
| 1573 | |
| 1574 | i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos); |
| 1575 | if (i != 3) |
| 1576 | continue; |
| 1577 | |
| 1578 | color = line + pos; |
| 1579 | |
| 1580 | if (STRICMP(color, name) == 0) |
| 1581 | { |
| 1582 | fclose(fd); |
| 1583 | return (guicolor_T) RGB(r, g, b); |
| 1584 | } |
| 1585 | } |
| 1586 | |
| 1587 | fclose(fd); |
| 1588 | } |
| 1589 | |
| 1590 | return INVALCOLOR; |
| 1591 | } |
| 1592 | /* |
| 1593 | * Return OK if the key with the termcap name "name" is supported. |
| 1594 | */ |
| 1595 | int |
| 1596 | gui_mch_haskey(char_u *name) |
| 1597 | { |
| 1598 | int i; |
| 1599 | |
| 1600 | for (i = 0; special_keys[i].vim_code1 != NUL; i++) |
| 1601 | if (name[0] == special_keys[i].vim_code0 && |
| 1602 | name[1] == special_keys[i].vim_code1) |
| 1603 | return OK; |
| 1604 | return FAIL; |
| 1605 | } |
| 1606 | |
| 1607 | void |
| 1608 | gui_mch_beep(void) |
| 1609 | { |
| 1610 | MessageBeep(MB_OK); |
| 1611 | } |
| 1612 | /* |
| 1613 | * Invert a rectangle from row r, column c, for nr rows and nc columns. |
| 1614 | */ |
| 1615 | void |
| 1616 | gui_mch_invert_rectangle( |
| 1617 | int r, |
| 1618 | int c, |
| 1619 | int nr, |
| 1620 | int nc) |
| 1621 | { |
| 1622 | RECT rc; |
| 1623 | |
| 1624 | /* |
| 1625 | * Note: InvertRect() excludes right and bottom of rectangle. |
| 1626 | */ |
| 1627 | rc.left = FILL_X(c); |
| 1628 | rc.top = FILL_Y(r); |
| 1629 | rc.right = rc.left + nc * gui.char_width; |
| 1630 | rc.bottom = rc.top + nr * gui.char_height; |
| 1631 | InvertRect(s_hdc, &rc); |
| 1632 | } |
| 1633 | |
| 1634 | /* |
| 1635 | * Iconify the GUI window. |
| 1636 | */ |
| 1637 | void |
| 1638 | gui_mch_iconify(void) |
| 1639 | { |
| 1640 | ShowWindow(s_hwnd, SW_MINIMIZE); |
| 1641 | } |
| 1642 | |
| 1643 | /* |
| 1644 | * Draw a cursor without focus. |
| 1645 | */ |
| 1646 | void |
| 1647 | gui_mch_draw_hollow_cursor(guicolor_T color) |
| 1648 | { |
| 1649 | HBRUSH hbr; |
| 1650 | RECT rc; |
| 1651 | |
| 1652 | /* |
| 1653 | * Note: FrameRect() excludes right and bottom of rectangle. |
| 1654 | */ |
| 1655 | rc.left = FILL_X(gui.col); |
| 1656 | rc.top = FILL_Y(gui.row); |
| 1657 | rc.right = rc.left + gui.char_width; |
| 1658 | #ifdef FEAT_MBYTE |
| 1659 | if (mb_lefthalve(gui.row, gui.col)) |
| 1660 | rc.right += gui.char_width; |
| 1661 | #endif |
| 1662 | rc.bottom = rc.top + gui.char_height; |
| 1663 | hbr = CreateSolidBrush(color); |
| 1664 | FrameRect(s_hdc, &rc, hbr); |
| 1665 | DeleteBrush(hbr); |
| 1666 | } |
| 1667 | /* |
| 1668 | * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using |
| 1669 | * color "color". |
| 1670 | */ |
| 1671 | void |
| 1672 | gui_mch_draw_part_cursor( |
| 1673 | int w, |
| 1674 | int h, |
| 1675 | guicolor_T color) |
| 1676 | { |
| 1677 | HBRUSH hbr; |
| 1678 | RECT rc; |
| 1679 | |
| 1680 | /* |
| 1681 | * Note: FillRect() excludes right and bottom of rectangle. |
| 1682 | */ |
| 1683 | rc.left = |
| 1684 | #ifdef FEAT_RIGHTLEFT |
| 1685 | /* vertical line should be on the right of current point */ |
| 1686 | CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : |
| 1687 | #endif |
| 1688 | FILL_X(gui.col); |
| 1689 | rc.top = FILL_Y(gui.row) + gui.char_height - h; |
| 1690 | rc.right = rc.left + w; |
| 1691 | rc.bottom = rc.top + h; |
| 1692 | hbr = CreateSolidBrush(color); |
| 1693 | FillRect(s_hdc, &rc, hbr); |
| 1694 | DeleteBrush(hbr); |
| 1695 | } |
| 1696 | |
| 1697 | /* |
| 1698 | * Process a single Windows message. |
| 1699 | * If one is not available we hang until one is. |
| 1700 | */ |
| 1701 | static void |
| 1702 | process_message(void) |
| 1703 | { |
| 1704 | MSG msg; |
| 1705 | UINT vk = 0; /* Virtual key */ |
| 1706 | char_u string[40]; |
| 1707 | int i; |
| 1708 | int modifiers = 0; |
| 1709 | int key; |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 1710 | #ifdef FEAT_MENU |
| 1711 | static char_u k10[] = {K_SPECIAL, 'k', ';', 0}; |
| 1712 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1713 | |
Bram Moolenaar | 8c85fa3 | 2011-08-10 17:08:03 +0200 | [diff] [blame] | 1714 | pGetMessage(&msg, NULL, 0, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1715 | |
| 1716 | #ifdef FEAT_OLE |
| 1717 | /* Look after OLE Automation commands */ |
| 1718 | if (msg.message == WM_OLE) |
| 1719 | { |
| 1720 | char_u *str = (char_u *)msg.lParam; |
Bram Moolenaar | 370feaf | 2009-01-28 13:18:26 +0000 | [diff] [blame] | 1721 | if (str == NULL || *str == NUL) |
| 1722 | { |
| 1723 | /* Message can't be ours, forward it. Fixes problem with Ultramon |
| 1724 | * 3.0.4 */ |
Bram Moolenaar | 8c85fa3 | 2011-08-10 17:08:03 +0200 | [diff] [blame] | 1725 | pDispatchMessage(&msg); |
Bram Moolenaar | 370feaf | 2009-01-28 13:18:26 +0000 | [diff] [blame] | 1726 | } |
| 1727 | else |
| 1728 | { |
| 1729 | add_to_input_buf(str, (int)STRLEN(str)); |
| 1730 | vim_free(str); /* was allocated in CVim::SendKeys() */ |
| 1731 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1732 | return; |
| 1733 | } |
| 1734 | #endif |
| 1735 | |
| 1736 | #ifdef FEAT_NETBEANS_INTG |
| 1737 | if (msg.message == WM_NETBEANS) |
| 1738 | { |
Bram Moolenaar | 67c5384 | 2010-05-22 18:28:27 +0200 | [diff] [blame] | 1739 | netbeans_read(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1740 | return; |
| 1741 | } |
| 1742 | #endif |
| 1743 | |
| 1744 | #ifdef FEAT_SNIFF |
| 1745 | if (sniff_request_waiting && want_sniff_request) |
| 1746 | { |
| 1747 | static char_u bytes[3] = {CSI, (char_u)KS_EXTRA, (char_u)KE_SNIFF}; |
| 1748 | add_to_input_buf(bytes, 3); /* K_SNIFF */ |
| 1749 | sniff_request_waiting = 0; |
| 1750 | want_sniff_request = 0; |
| 1751 | /* request is handled in normal.c */ |
| 1752 | } |
| 1753 | if (msg.message == WM_USER) |
Bram Moolenaar | 35c9291 | 2006-06-22 17:34:26 +0000 | [diff] [blame] | 1754 | { |
Bram Moolenaar | d8a92d7 | 2006-06-23 14:44:06 +0000 | [diff] [blame] | 1755 | MyTranslateMessage(&msg); |
Bram Moolenaar | 8c85fa3 | 2011-08-10 17:08:03 +0200 | [diff] [blame] | 1756 | pDispatchMessage(&msg); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1757 | return; |
Bram Moolenaar | 35c9291 | 2006-06-22 17:34:26 +0000 | [diff] [blame] | 1758 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1759 | #endif |
| 1760 | |
| 1761 | #ifdef MSWIN_FIND_REPLACE |
| 1762 | /* Don't process messages used by the dialog */ |
Bram Moolenaar | 8c85fa3 | 2011-08-10 17:08:03 +0200 | [diff] [blame] | 1763 | if (s_findrep_hwnd != NULL && pIsDialogMessage(s_findrep_hwnd, &msg)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1764 | { |
| 1765 | HandleMouseHide(msg.message, msg.lParam); |
| 1766 | return; |
| 1767 | } |
| 1768 | #endif |
| 1769 | |
| 1770 | /* |
| 1771 | * Check if it's a special key that we recognise. If not, call |
| 1772 | * TranslateMessage(). |
| 1773 | */ |
| 1774 | if (msg.message == WM_KEYDOWN || msg.message == WM_SYSKEYDOWN) |
| 1775 | { |
| 1776 | vk = (int) msg.wParam; |
| 1777 | /* handle key after dead key, but ignore shift, alt and control */ |
| 1778 | if (dead_key && vk != VK_SHIFT && vk != VK_MENU && vk != VK_CONTROL) |
| 1779 | { |
| 1780 | dead_key = 0; |
| 1781 | /* handle non-alphabetic keys (ones that hopefully cannot generate |
| 1782 | * umlaut-characters), unless when control is down */ |
| 1783 | if (vk < 'A' || vk > 'Z' || (GetKeyState(VK_CONTROL) & 0x8000)) |
| 1784 | { |
| 1785 | MSG dm; |
| 1786 | |
| 1787 | dm.message = msg.message; |
| 1788 | dm.hwnd = msg.hwnd; |
| 1789 | dm.wParam = VK_SPACE; |
| 1790 | MyTranslateMessage(&dm); /* generate dead character */ |
| 1791 | if (vk != VK_SPACE) /* and send current character once more */ |
| 1792 | PostMessage(msg.hwnd, msg.message, msg.wParam, msg.lParam); |
| 1793 | return; |
| 1794 | } |
| 1795 | } |
| 1796 | |
| 1797 | /* Check for CTRL-BREAK */ |
| 1798 | if (vk == VK_CANCEL) |
| 1799 | { |
| 1800 | trash_input_buf(); |
| 1801 | got_int = TRUE; |
| 1802 | string[0] = Ctrl_C; |
| 1803 | add_to_input_buf(string, 1); |
| 1804 | } |
| 1805 | |
| 1806 | for (i = 0; special_keys[i].key_sym != 0; i++) |
| 1807 | { |
| 1808 | /* ignore VK_SPACE when ALT key pressed: system menu */ |
| 1809 | if (special_keys[i].key_sym == vk |
| 1810 | && (vk != VK_SPACE || !(GetKeyState(VK_MENU) & 0x8000))) |
| 1811 | { |
| 1812 | #ifdef FEAT_MENU |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 1813 | /* Check for <F10>: Windows selects the menu. When <F10> is |
| 1814 | * mapped we want to use the mapping instead. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1815 | if (vk == VK_F10 |
| 1816 | && gui.menu_is_active |
Bram Moolenaar | bd74325 | 2010-10-20 21:23:33 +0200 | [diff] [blame] | 1817 | && check_map(k10, State, FALSE, TRUE, FALSE, |
| 1818 | NULL, NULL) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1819 | break; |
| 1820 | #endif |
| 1821 | if (GetKeyState(VK_SHIFT) & 0x8000) |
| 1822 | modifiers |= MOD_MASK_SHIFT; |
| 1823 | /* |
| 1824 | * Don't use caps-lock as shift, because these are special keys |
| 1825 | * being considered here, and we only want letters to get |
| 1826 | * shifted -- webb |
| 1827 | */ |
| 1828 | /* |
| 1829 | if (GetKeyState(VK_CAPITAL) & 0x0001) |
| 1830 | modifiers ^= MOD_MASK_SHIFT; |
| 1831 | */ |
| 1832 | if (GetKeyState(VK_CONTROL) & 0x8000) |
| 1833 | modifiers |= MOD_MASK_CTRL; |
| 1834 | if (GetKeyState(VK_MENU) & 0x8000) |
| 1835 | modifiers |= MOD_MASK_ALT; |
| 1836 | |
| 1837 | if (special_keys[i].vim_code1 == NUL) |
| 1838 | key = special_keys[i].vim_code0; |
| 1839 | else |
| 1840 | key = TO_SPECIAL(special_keys[i].vim_code0, |
| 1841 | special_keys[i].vim_code1); |
| 1842 | key = simplify_key(key, &modifiers); |
| 1843 | if (key == CSI) |
| 1844 | key = K_CSI; |
| 1845 | |
| 1846 | if (modifiers) |
| 1847 | { |
| 1848 | string[0] = CSI; |
| 1849 | string[1] = KS_MODIFIER; |
| 1850 | string[2] = modifiers; |
| 1851 | add_to_input_buf(string, 3); |
| 1852 | } |
| 1853 | |
| 1854 | if (IS_SPECIAL(key)) |
| 1855 | { |
| 1856 | string[0] = CSI; |
| 1857 | string[1] = K_SECOND(key); |
| 1858 | string[2] = K_THIRD(key); |
| 1859 | add_to_input_buf(string, 3); |
| 1860 | } |
| 1861 | else |
| 1862 | { |
| 1863 | int len; |
| 1864 | |
| 1865 | /* Handle "key" as a Unicode character. */ |
Bram Moolenaar | 85a3e5c | 2007-11-20 16:22:16 +0000 | [diff] [blame] | 1866 | len = char_to_string(key, string, 40, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1867 | add_to_input_buf(string, len); |
| 1868 | } |
| 1869 | break; |
| 1870 | } |
| 1871 | } |
| 1872 | if (special_keys[i].key_sym == 0) |
| 1873 | { |
| 1874 | /* Some keys need C-S- where they should only need C-. |
| 1875 | * Ignore 0xff, Windows XP sends it when NUMLOCK has changed since |
| 1876 | * system startup (Helmut Stiegler, 2003 Oct 3). */ |
| 1877 | if (vk != 0xff |
| 1878 | && (GetKeyState(VK_CONTROL) & 0x8000) |
| 1879 | && !(GetKeyState(VK_SHIFT) & 0x8000) |
| 1880 | && !(GetKeyState(VK_MENU) & 0x8000)) |
| 1881 | { |
| 1882 | /* CTRL-6 is '^'; Japanese keyboard maps '^' to vk == 0xDE */ |
| 1883 | if (vk == '6' || MapVirtualKey(vk, 2) == (UINT)'^') |
| 1884 | { |
| 1885 | string[0] = Ctrl_HAT; |
| 1886 | add_to_input_buf(string, 1); |
| 1887 | } |
| 1888 | /* vk == 0xBD AZERTY for CTRL-'-', but CTRL-[ for * QWERTY! */ |
| 1889 | else if (vk == 0xBD) /* QWERTY for CTRL-'-' */ |
| 1890 | { |
| 1891 | string[0] = Ctrl__; |
| 1892 | add_to_input_buf(string, 1); |
| 1893 | } |
| 1894 | /* CTRL-2 is '@'; Japanese keyboard maps '@' to vk == 0xC0 */ |
| 1895 | else if (vk == '2' || MapVirtualKey(vk, 2) == (UINT)'@') |
| 1896 | { |
| 1897 | string[0] = Ctrl_AT; |
| 1898 | add_to_input_buf(string, 1); |
| 1899 | } |
| 1900 | else |
| 1901 | MyTranslateMessage(&msg); |
| 1902 | } |
| 1903 | else |
| 1904 | MyTranslateMessage(&msg); |
| 1905 | } |
| 1906 | } |
| 1907 | #ifdef FEAT_MBYTE_IME |
| 1908 | else if (msg.message == WM_IME_NOTIFY) |
| 1909 | _OnImeNotify(msg.hwnd, (DWORD)msg.wParam, (DWORD)msg.lParam); |
| 1910 | else if (msg.message == WM_KEYUP && im_get_status()) |
| 1911 | /* added for non-MS IME (Yasuhiro Matsumoto) */ |
| 1912 | MyTranslateMessage(&msg); |
| 1913 | #endif |
| 1914 | #if !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME) |
| 1915 | /* GIME_TEST */ |
| 1916 | else if (msg.message == WM_IME_STARTCOMPOSITION) |
| 1917 | { |
| 1918 | POINT point; |
| 1919 | |
| 1920 | global_ime_set_font(&norm_logfont); |
| 1921 | point.x = FILL_X(gui.col); |
| 1922 | point.y = FILL_Y(gui.row); |
| 1923 | MapWindowPoints(s_textArea, s_hwnd, &point, 1); |
| 1924 | global_ime_set_position(&point); |
| 1925 | } |
| 1926 | #endif |
| 1927 | |
| 1928 | #ifdef FEAT_MENU |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 1929 | /* Check for <F10>: Default effect is to select the menu. When <F10> is |
| 1930 | * mapped we need to stop it here to avoid strange effects (e.g., for the |
| 1931 | * key-up event) */ |
Bram Moolenaar | bd74325 | 2010-10-20 21:23:33 +0200 | [diff] [blame] | 1932 | if (vk != VK_F10 || check_map(k10, State, FALSE, TRUE, FALSE, |
| 1933 | NULL, NULL) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1934 | #endif |
Bram Moolenaar | 8c85fa3 | 2011-08-10 17:08:03 +0200 | [diff] [blame] | 1935 | pDispatchMessage(&msg); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1936 | } |
| 1937 | |
| 1938 | /* |
| 1939 | * Catch up with any queued events. This may put keyboard input into the |
| 1940 | * input buffer, call resize call-backs, trigger timers etc. If there is |
| 1941 | * nothing in the event queue (& no timers pending), then we return |
| 1942 | * immediately. |
| 1943 | */ |
| 1944 | void |
| 1945 | gui_mch_update(void) |
| 1946 | { |
| 1947 | MSG msg; |
| 1948 | |
| 1949 | if (!s_busy_processing) |
Bram Moolenaar | 8c85fa3 | 2011-08-10 17:08:03 +0200 | [diff] [blame] | 1950 | while (pPeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1951 | && !vim_is_input_buf_full()) |
| 1952 | process_message(); |
| 1953 | } |
| 1954 | |
| 1955 | /* |
| 1956 | * GUI input routine called by gui_wait_for_chars(). Waits for a character |
| 1957 | * from the keyboard. |
| 1958 | * wtime == -1 Wait forever. |
| 1959 | * wtime == 0 This should never happen. |
| 1960 | * wtime > 0 Wait wtime milliseconds for a character. |
| 1961 | * Returns OK if a character was found to be available within the given time, |
| 1962 | * or FAIL otherwise. |
| 1963 | */ |
| 1964 | int |
| 1965 | gui_mch_wait_for_chars(int wtime) |
| 1966 | { |
| 1967 | MSG msg; |
| 1968 | int focus; |
| 1969 | |
| 1970 | s_timed_out = FALSE; |
| 1971 | |
| 1972 | if (wtime > 0) |
| 1973 | { |
| 1974 | /* Don't do anything while processing a (scroll) message. */ |
| 1975 | if (s_busy_processing) |
| 1976 | return FAIL; |
| 1977 | s_wait_timer = (UINT)SetTimer(NULL, 0, (UINT)wtime, |
| 1978 | (TIMERPROC)_OnTimer); |
| 1979 | } |
| 1980 | |
| 1981 | allow_scrollbar = TRUE; |
| 1982 | |
| 1983 | focus = gui.in_focus; |
| 1984 | while (!s_timed_out) |
| 1985 | { |
| 1986 | /* Stop or start blinking when focus changes */ |
| 1987 | if (gui.in_focus != focus) |
| 1988 | { |
| 1989 | if (gui.in_focus) |
| 1990 | gui_mch_start_blink(); |
| 1991 | else |
| 1992 | gui_mch_stop_blink(); |
| 1993 | focus = gui.in_focus; |
| 1994 | } |
| 1995 | |
| 1996 | if (s_need_activate) |
| 1997 | { |
| 1998 | #ifdef WIN32 |
| 1999 | (void)SetForegroundWindow(s_hwnd); |
| 2000 | #else |
| 2001 | (void)SetActiveWindow(s_hwnd); |
| 2002 | #endif |
| 2003 | s_need_activate = FALSE; |
| 2004 | } |
| 2005 | |
Bram Moolenaar | 61665aa | 2008-12-24 11:20:53 +0000 | [diff] [blame] | 2006 | #ifdef FEAT_NETBEANS_INTG |
| 2007 | /* Process the queued netbeans messages. */ |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 2008 | netbeans_parse_messages(); |
Bram Moolenaar | 61665aa | 2008-12-24 11:20:53 +0000 | [diff] [blame] | 2009 | #endif |
| 2010 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2011 | /* |
| 2012 | * Don't use gui_mch_update() because then we will spin-lock until a |
| 2013 | * char arrives, instead we use GetMessage() to hang until an |
| 2014 | * event arrives. No need to check for input_buf_full because we are |
| 2015 | * returning as soon as it contains a single char -- webb |
| 2016 | */ |
| 2017 | process_message(); |
| 2018 | |
| 2019 | if (input_available()) |
| 2020 | { |
| 2021 | if (s_wait_timer != 0 && !s_timed_out) |
| 2022 | { |
| 2023 | KillTimer(NULL, s_wait_timer); |
| 2024 | |
| 2025 | /* Eat spurious WM_TIMER messages */ |
Bram Moolenaar | 8c85fa3 | 2011-08-10 17:08:03 +0200 | [diff] [blame] | 2026 | while (pPeekMessage(&msg, s_hwnd, WM_TIMER, WM_TIMER, PM_REMOVE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2027 | ; |
| 2028 | s_wait_timer = 0; |
| 2029 | } |
| 2030 | allow_scrollbar = FALSE; |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 2031 | |
| 2032 | /* Clear pending mouse button, the release event may have been |
Bram Moolenaar | ea40888 | 2007-12-03 21:21:03 +0000 | [diff] [blame] | 2033 | * taken by the dialog window. But don't do this when getting |
| 2034 | * focus, we need the mouse-up event then. */ |
| 2035 | if (!s_getting_focus) |
| 2036 | s_button_pending = -1; |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 2037 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2038 | return OK; |
| 2039 | } |
| 2040 | } |
| 2041 | allow_scrollbar = FALSE; |
| 2042 | return FAIL; |
| 2043 | } |
| 2044 | |
| 2045 | /* |
| 2046 | * Clear a rectangular region of the screen from text pos (row1, col1) to |
| 2047 | * (row2, col2) inclusive. |
| 2048 | */ |
| 2049 | void |
| 2050 | gui_mch_clear_block( |
| 2051 | int row1, |
| 2052 | int col1, |
| 2053 | int row2, |
| 2054 | int col2) |
| 2055 | { |
| 2056 | RECT rc; |
| 2057 | |
| 2058 | /* |
| 2059 | * Clear one extra pixel at the far right, for when bold characters have |
| 2060 | * spilled over to the window border. |
| 2061 | * Note: FillRect() excludes right and bottom of rectangle. |
| 2062 | */ |
| 2063 | rc.left = FILL_X(col1); |
| 2064 | rc.top = FILL_Y(row1); |
| 2065 | rc.right = FILL_X(col2 + 1) + (col2 == Columns - 1); |
| 2066 | rc.bottom = FILL_Y(row2 + 1); |
| 2067 | clear_rect(&rc); |
| 2068 | } |
| 2069 | |
| 2070 | /* |
| 2071 | * Clear the whole text window. |
| 2072 | */ |
| 2073 | void |
| 2074 | gui_mch_clear_all(void) |
| 2075 | { |
| 2076 | RECT rc; |
| 2077 | |
| 2078 | rc.left = 0; |
| 2079 | rc.top = 0; |
| 2080 | rc.right = Columns * gui.char_width + 2 * gui.border_width; |
| 2081 | rc.bottom = Rows * gui.char_height + 2 * gui.border_width; |
| 2082 | clear_rect(&rc); |
| 2083 | } |
| 2084 | /* |
| 2085 | * Menu stuff. |
| 2086 | */ |
| 2087 | |
| 2088 | void |
| 2089 | gui_mch_enable_menu(int flag) |
| 2090 | { |
| 2091 | #ifdef FEAT_MENU |
| 2092 | SetMenu(s_hwnd, flag ? s_menuBar : NULL); |
| 2093 | #endif |
| 2094 | } |
| 2095 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 2096 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2097 | void |
| 2098 | gui_mch_set_menu_pos( |
| 2099 | int x, |
| 2100 | int y, |
| 2101 | int w, |
| 2102 | int h) |
| 2103 | { |
| 2104 | /* It will be in the right place anyway */ |
| 2105 | } |
| 2106 | |
| 2107 | #if defined(FEAT_MENU) || defined(PROTO) |
| 2108 | /* |
| 2109 | * Make menu item hidden or not hidden |
| 2110 | */ |
| 2111 | void |
| 2112 | gui_mch_menu_hidden( |
| 2113 | vimmenu_T *menu, |
| 2114 | int hidden) |
| 2115 | { |
| 2116 | /* |
| 2117 | * This doesn't do what we want. Hmm, just grey the menu items for now. |
| 2118 | */ |
| 2119 | /* |
| 2120 | if (hidden) |
| 2121 | EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_DISABLED); |
| 2122 | else |
| 2123 | EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_ENABLED); |
| 2124 | */ |
| 2125 | gui_mch_menu_grey(menu, hidden); |
| 2126 | } |
| 2127 | |
| 2128 | /* |
| 2129 | * This is called after setting all the menus to grey/hidden or not. |
| 2130 | */ |
| 2131 | void |
| 2132 | gui_mch_draw_menubar(void) |
| 2133 | { |
| 2134 | DrawMenuBar(s_hwnd); |
| 2135 | } |
| 2136 | #endif /*FEAT_MENU*/ |
| 2137 | |
| 2138 | #ifndef PROTO |
| 2139 | void |
| 2140 | #ifdef VIMDLL |
| 2141 | _export |
| 2142 | #endif |
| 2143 | _cdecl |
| 2144 | SaveInst(HINSTANCE hInst) |
| 2145 | { |
| 2146 | s_hinst = hInst; |
| 2147 | } |
| 2148 | #endif |
| 2149 | |
| 2150 | /* |
| 2151 | * Return the RGB value of a pixel as a long. |
| 2152 | */ |
| 2153 | long_u |
| 2154 | gui_mch_get_rgb(guicolor_T pixel) |
| 2155 | { |
| 2156 | return (GetRValue(pixel) << 16) + (GetGValue(pixel) << 8) |
| 2157 | + GetBValue(pixel); |
| 2158 | } |
| 2159 | |
| 2160 | #if defined(FEAT_GUI_DIALOG) || defined(PROTO) |
| 2161 | /* Convert pixels in X to dialog units */ |
| 2162 | static WORD |
| 2163 | PixelToDialogX(int numPixels) |
| 2164 | { |
| 2165 | return (WORD)((numPixels * 4) / s_dlgfntwidth); |
| 2166 | } |
| 2167 | |
| 2168 | /* Convert pixels in Y to dialog units */ |
| 2169 | static WORD |
| 2170 | PixelToDialogY(int numPixels) |
| 2171 | { |
| 2172 | return (WORD)((numPixels * 8) / s_dlgfntheight); |
| 2173 | } |
| 2174 | |
| 2175 | /* Return the width in pixels of the given text in the given DC. */ |
| 2176 | static int |
| 2177 | GetTextWidth(HDC hdc, char_u *str, int len) |
| 2178 | { |
| 2179 | SIZE size; |
| 2180 | |
| 2181 | GetTextExtentPoint(hdc, str, len, &size); |
| 2182 | return size.cx; |
| 2183 | } |
| 2184 | |
| 2185 | #ifdef FEAT_MBYTE |
| 2186 | /* |
| 2187 | * Return the width in pixels of the given text in the given DC, taking care |
| 2188 | * of 'encoding' to active codepage conversion. |
| 2189 | */ |
| 2190 | static int |
| 2191 | GetTextWidthEnc(HDC hdc, char_u *str, int len) |
| 2192 | { |
| 2193 | SIZE size; |
| 2194 | WCHAR *wstr; |
| 2195 | int n; |
| 2196 | int wlen = len; |
| 2197 | |
| 2198 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 2199 | { |
| 2200 | /* 'encoding' differs from active codepage: convert text and use wide |
| 2201 | * function */ |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 2202 | wstr = enc_to_utf16(str, &wlen); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2203 | if (wstr != NULL) |
| 2204 | { |
| 2205 | n = GetTextExtentPointW(hdc, wstr, wlen, &size); |
| 2206 | vim_free(wstr); |
| 2207 | if (n) |
| 2208 | return size.cx; |
| 2209 | } |
| 2210 | } |
| 2211 | |
| 2212 | return GetTextWidth(hdc, str, len); |
| 2213 | } |
| 2214 | #else |
| 2215 | # define GetTextWidthEnc(h, s, l) GetTextWidth((h), (s), (l)) |
| 2216 | #endif |
| 2217 | |
| 2218 | /* |
| 2219 | * A quick little routine that will center one window over another, handy for |
| 2220 | * dialog boxes. Taken from the Win32SDK samples. |
| 2221 | */ |
| 2222 | static BOOL |
| 2223 | CenterWindow( |
| 2224 | HWND hwndChild, |
| 2225 | HWND hwndParent) |
| 2226 | { |
| 2227 | RECT rChild, rParent; |
| 2228 | int wChild, hChild, wParent, hParent; |
| 2229 | int wScreen, hScreen, xNew, yNew; |
| 2230 | HDC hdc; |
| 2231 | |
| 2232 | GetWindowRect(hwndChild, &rChild); |
| 2233 | wChild = rChild.right - rChild.left; |
| 2234 | hChild = rChild.bottom - rChild.top; |
| 2235 | |
| 2236 | /* If Vim is minimized put the window in the middle of the screen. */ |
Bram Moolenaar | 9e54a0e | 2006-04-14 20:42:25 +0000 | [diff] [blame] | 2237 | if (hwndParent == NULL || IsMinimized(hwndParent)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2238 | { |
| 2239 | #ifdef WIN16 |
| 2240 | rParent.left = 0; |
| 2241 | rParent.top = 0; |
| 2242 | rParent.right = GetSystemMetrics(SM_CXSCREEN); |
| 2243 | rParent.bottom = GetSystemMetrics(SM_CYFULLSCREEN); |
| 2244 | #else |
| 2245 | SystemParametersInfo(SPI_GETWORKAREA, 0, &rParent, 0); |
| 2246 | #endif |
| 2247 | } |
| 2248 | else |
| 2249 | GetWindowRect(hwndParent, &rParent); |
| 2250 | wParent = rParent.right - rParent.left; |
| 2251 | hParent = rParent.bottom - rParent.top; |
| 2252 | |
| 2253 | hdc = GetDC(hwndChild); |
| 2254 | wScreen = GetDeviceCaps (hdc, HORZRES); |
| 2255 | hScreen = GetDeviceCaps (hdc, VERTRES); |
| 2256 | ReleaseDC(hwndChild, hdc); |
| 2257 | |
| 2258 | xNew = rParent.left + ((wParent - wChild) /2); |
| 2259 | if (xNew < 0) |
| 2260 | { |
| 2261 | xNew = 0; |
| 2262 | } |
| 2263 | else if ((xNew+wChild) > wScreen) |
| 2264 | { |
| 2265 | xNew = wScreen - wChild; |
| 2266 | } |
| 2267 | |
| 2268 | yNew = rParent.top + ((hParent - hChild) /2); |
| 2269 | if (yNew < 0) |
| 2270 | yNew = 0; |
| 2271 | else if ((yNew+hChild) > hScreen) |
| 2272 | yNew = hScreen - hChild; |
| 2273 | |
| 2274 | return SetWindowPos(hwndChild, NULL, xNew, yNew, 0, 0, |
| 2275 | SWP_NOSIZE | SWP_NOZORDER); |
| 2276 | } |
| 2277 | #endif /* FEAT_GUI_DIALOG */ |
| 2278 | |
| 2279 | void |
| 2280 | gui_mch_activate_window(void) |
| 2281 | { |
| 2282 | (void)SetActiveWindow(s_hwnd); |
| 2283 | } |
| 2284 | |
| 2285 | #if defined(FEAT_TOOLBAR) || defined(PROTO) |
| 2286 | void |
| 2287 | gui_mch_show_toolbar(int showit) |
| 2288 | { |
| 2289 | if (s_toolbarhwnd == NULL) |
| 2290 | return; |
| 2291 | |
| 2292 | if (showit) |
Bram Moolenaar | 8f2ff9f | 2006-08-29 19:26:50 +0000 | [diff] [blame] | 2293 | { |
| 2294 | # ifdef FEAT_MBYTE |
| 2295 | # ifndef TB_SETUNICODEFORMAT |
| 2296 | /* For older compilers. We assume this never changes. */ |
| 2297 | # define TB_SETUNICODEFORMAT 0x2005 |
| 2298 | # endif |
| 2299 | /* Enable/disable unicode support */ |
| 2300 | int uu = (enc_codepage >= 0 && (int)GetACP() != enc_codepage); |
| 2301 | SendMessage(s_toolbarhwnd, TB_SETUNICODEFORMAT, (WPARAM)uu, (LPARAM)0); |
| 2302 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2303 | ShowWindow(s_toolbarhwnd, SW_SHOW); |
Bram Moolenaar | 8f2ff9f | 2006-08-29 19:26:50 +0000 | [diff] [blame] | 2304 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2305 | else |
| 2306 | ShowWindow(s_toolbarhwnd, SW_HIDE); |
| 2307 | } |
| 2308 | |
| 2309 | /* Then number of bitmaps is fixed. Exit is missing! */ |
| 2310 | #define TOOLBAR_BITMAP_COUNT 31 |
| 2311 | |
| 2312 | #endif |
| 2313 | |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 2314 | #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
Bram Moolenaar | 2e2a281 | 2006-03-27 20:55:21 +0000 | [diff] [blame] | 2315 | static void |
Bram Moolenaar | 908d53a | 2006-11-07 18:05:31 +0000 | [diff] [blame] | 2316 | add_tabline_popup_menu_entry(HMENU pmenu, UINT item_id, char_u *item_text) |
| 2317 | { |
| 2318 | #ifdef FEAT_MBYTE |
| 2319 | WCHAR *wn = NULL; |
| 2320 | int n; |
| 2321 | |
| 2322 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 2323 | { |
| 2324 | /* 'encoding' differs from active codepage: convert menu name |
| 2325 | * and use wide function */ |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 2326 | wn = enc_to_utf16(item_text, NULL); |
Bram Moolenaar | 908d53a | 2006-11-07 18:05:31 +0000 | [diff] [blame] | 2327 | if (wn != NULL) |
| 2328 | { |
| 2329 | MENUITEMINFOW infow; |
| 2330 | |
| 2331 | infow.cbSize = sizeof(infow); |
| 2332 | infow.fMask = MIIM_TYPE | MIIM_ID; |
| 2333 | infow.wID = item_id; |
| 2334 | infow.fType = MFT_STRING; |
| 2335 | infow.dwTypeData = wn; |
| 2336 | infow.cch = (UINT)wcslen(wn); |
| 2337 | n = InsertMenuItemW(pmenu, item_id, FALSE, &infow); |
| 2338 | vim_free(wn); |
| 2339 | if (n == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED) |
| 2340 | /* Failed, try using non-wide function. */ |
| 2341 | wn = NULL; |
| 2342 | } |
| 2343 | } |
| 2344 | |
| 2345 | if (wn == NULL) |
| 2346 | #endif |
| 2347 | { |
| 2348 | MENUITEMINFO info; |
| 2349 | |
| 2350 | info.cbSize = sizeof(info); |
| 2351 | info.fMask = MIIM_TYPE | MIIM_ID; |
| 2352 | info.wID = item_id; |
| 2353 | info.fType = MFT_STRING; |
| 2354 | info.dwTypeData = item_text; |
| 2355 | info.cch = (UINT)STRLEN(item_text); |
| 2356 | InsertMenuItem(pmenu, item_id, FALSE, &info); |
| 2357 | } |
| 2358 | } |
| 2359 | |
| 2360 | static void |
Bram Moolenaar | 2e2a281 | 2006-03-27 20:55:21 +0000 | [diff] [blame] | 2361 | show_tabline_popup_menu(void) |
| 2362 | { |
| 2363 | HMENU tab_pmenu; |
Bram Moolenaar | 2e2a281 | 2006-03-27 20:55:21 +0000 | [diff] [blame] | 2364 | long rval; |
| 2365 | POINT pt; |
Bram Moolenaar | 2e2a281 | 2006-03-27 20:55:21 +0000 | [diff] [blame] | 2366 | |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 2367 | /* When ignoring events don't show the menu. */ |
| 2368 | if (hold_gui_events |
| 2369 | # ifdef FEAT_CMDWIN |
| 2370 | || cmdwin_type != 0 |
| 2371 | # endif |
| 2372 | ) |
| 2373 | return; |
| 2374 | |
Bram Moolenaar | 2e2a281 | 2006-03-27 20:55:21 +0000 | [diff] [blame] | 2375 | tab_pmenu = CreatePopupMenu(); |
| 2376 | if (tab_pmenu == NULL) |
| 2377 | return; |
| 2378 | |
Bram Moolenaar | 908d53a | 2006-11-07 18:05:31 +0000 | [diff] [blame] | 2379 | add_tabline_popup_menu_entry(tab_pmenu, TABLINE_MENU_CLOSE, _("Close tab")); |
| 2380 | add_tabline_popup_menu_entry(tab_pmenu, TABLINE_MENU_NEW, _("New tab")); |
| 2381 | add_tabline_popup_menu_entry(tab_pmenu, TABLINE_MENU_OPEN, |
| 2382 | _("Open tab...")); |
Bram Moolenaar | 2e2a281 | 2006-03-27 20:55:21 +0000 | [diff] [blame] | 2383 | |
| 2384 | GetCursorPos(&pt); |
| 2385 | rval = TrackPopupMenuEx(tab_pmenu, TPM_RETURNCMD, pt.x, pt.y, s_tabhwnd, |
| 2386 | NULL); |
| 2387 | |
| 2388 | DestroyMenu(tab_pmenu); |
| 2389 | |
| 2390 | /* Add the string cmd into input buffer */ |
| 2391 | if (rval > 0) |
| 2392 | { |
| 2393 | TCHITTESTINFO htinfo; |
| 2394 | int idx; |
| 2395 | |
| 2396 | if (ScreenToClient(s_tabhwnd, &pt) == 0) |
| 2397 | return; |
| 2398 | |
| 2399 | htinfo.pt.x = pt.x; |
| 2400 | htinfo.pt.y = pt.y; |
| 2401 | idx = TabCtrl_HitTest(s_tabhwnd, &htinfo); |
| 2402 | if (idx == -1) |
| 2403 | idx = 0; |
| 2404 | else |
| 2405 | idx += 1; |
| 2406 | |
Bram Moolenaar | c6fe919 | 2006-04-09 21:54:49 +0000 | [diff] [blame] | 2407 | send_tabline_menu_event(idx, (int)rval); |
Bram Moolenaar | 2e2a281 | 2006-03-27 20:55:21 +0000 | [diff] [blame] | 2408 | } |
| 2409 | } |
| 2410 | |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 2411 | /* |
| 2412 | * Show or hide the tabline. |
| 2413 | */ |
| 2414 | void |
| 2415 | gui_mch_show_tabline(int showit) |
| 2416 | { |
| 2417 | if (s_tabhwnd == NULL) |
| 2418 | return; |
| 2419 | |
| 2420 | if (!showit != !showing_tabline) |
| 2421 | { |
| 2422 | if (showit) |
| 2423 | ShowWindow(s_tabhwnd, SW_SHOW); |
| 2424 | else |
| 2425 | ShowWindow(s_tabhwnd, SW_HIDE); |
| 2426 | showing_tabline = showit; |
| 2427 | } |
| 2428 | } |
| 2429 | |
| 2430 | /* |
| 2431 | * Return TRUE when tabline is displayed. |
| 2432 | */ |
| 2433 | int |
| 2434 | gui_mch_showing_tabline(void) |
| 2435 | { |
| 2436 | return s_tabhwnd != NULL && showing_tabline; |
| 2437 | } |
| 2438 | |
| 2439 | /* |
| 2440 | * Update the labels of the tabline. |
| 2441 | */ |
| 2442 | void |
| 2443 | gui_mch_update_tabline(void) |
| 2444 | { |
| 2445 | tabpage_T *tp; |
| 2446 | TCITEM tie; |
| 2447 | int nr = 0; |
| 2448 | int curtabidx = 0; |
| 2449 | RECT rc; |
Bram Moolenaar | 8424a62 | 2006-04-19 21:23:36 +0000 | [diff] [blame] | 2450 | #ifdef FEAT_MBYTE |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 2451 | static int use_unicode = FALSE; |
| 2452 | int uu; |
Bram Moolenaar | 8424a62 | 2006-04-19 21:23:36 +0000 | [diff] [blame] | 2453 | WCHAR *wstr = NULL; |
| 2454 | #endif |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 2455 | |
| 2456 | if (s_tabhwnd == NULL) |
| 2457 | return; |
| 2458 | |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 2459 | #if defined(FEAT_MBYTE) |
| 2460 | # ifndef CCM_SETUNICODEFORMAT |
| 2461 | /* For older compilers. We assume this never changes. */ |
| 2462 | # define CCM_SETUNICODEFORMAT 0x2005 |
| 2463 | # endif |
| 2464 | uu = (enc_codepage >= 0 && (int)GetACP() != enc_codepage); |
| 2465 | if (uu != use_unicode) |
| 2466 | { |
| 2467 | /* Enable/disable unicode support */ |
| 2468 | SendMessage(s_tabhwnd, CCM_SETUNICODEFORMAT, (WPARAM)uu, (LPARAM)0); |
| 2469 | use_unicode = uu; |
| 2470 | } |
Bram Moolenaar | 8424a62 | 2006-04-19 21:23:36 +0000 | [diff] [blame] | 2471 | #endif |
| 2472 | |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 2473 | tie.mask = TCIF_TEXT; |
| 2474 | tie.iImage = -1; |
| 2475 | |
| 2476 | /* Add a label for each tab page. They all contain the same text area. */ |
| 2477 | for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) |
| 2478 | { |
| 2479 | if (tp == curtab) |
| 2480 | curtabidx = nr; |
| 2481 | |
| 2482 | if (!TabCtrl_GetItemRect(s_tabhwnd, nr, &rc)) |
| 2483 | { |
| 2484 | /* Add the tab */ |
| 2485 | tie.pszText = "-Empty-"; |
| 2486 | TabCtrl_InsertItem(s_tabhwnd, nr, &tie); |
| 2487 | } |
| 2488 | |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 2489 | get_tabline_label(tp, FALSE); |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 2490 | tie.pszText = NameBuff; |
Bram Moolenaar | 8424a62 | 2006-04-19 21:23:36 +0000 | [diff] [blame] | 2491 | #ifdef FEAT_MBYTE |
| 2492 | wstr = NULL; |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 2493 | if (use_unicode) |
Bram Moolenaar | 8424a62 | 2006-04-19 21:23:36 +0000 | [diff] [blame] | 2494 | { |
| 2495 | /* Need to go through Unicode. */ |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 2496 | wstr = enc_to_utf16(NameBuff, NULL); |
Bram Moolenaar | 8424a62 | 2006-04-19 21:23:36 +0000 | [diff] [blame] | 2497 | if (wstr != NULL) |
| 2498 | { |
| 2499 | TCITEMW tiw; |
| 2500 | |
| 2501 | tiw.mask = TCIF_TEXT; |
| 2502 | tiw.iImage = -1; |
| 2503 | tiw.pszText = wstr; |
Bram Moolenaar | 85f868c | 2006-11-28 16:16:58 +0000 | [diff] [blame] | 2504 | SendMessage(s_tabhwnd, TCM_SETITEMW, (WPARAM)nr, (LPARAM)&tiw); |
Bram Moolenaar | 8424a62 | 2006-04-19 21:23:36 +0000 | [diff] [blame] | 2505 | vim_free(wstr); |
| 2506 | } |
| 2507 | } |
| 2508 | if (wstr == NULL) |
| 2509 | #endif |
| 2510 | { |
| 2511 | TabCtrl_SetItem(s_tabhwnd, nr, &tie); |
| 2512 | } |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 2513 | } |
| 2514 | |
| 2515 | /* Remove any old labels. */ |
| 2516 | while (TabCtrl_GetItemRect(s_tabhwnd, nr, &rc)) |
| 2517 | TabCtrl_DeleteItem(s_tabhwnd, nr); |
| 2518 | |
| 2519 | if (TabCtrl_GetCurSel(s_tabhwnd) != curtabidx) |
| 2520 | TabCtrl_SetCurSel(s_tabhwnd, curtabidx); |
| 2521 | } |
| 2522 | |
| 2523 | /* |
| 2524 | * Set the current tab to "nr". First tab is 1. |
| 2525 | */ |
| 2526 | void |
| 2527 | gui_mch_set_curtab(nr) |
| 2528 | int nr; |
| 2529 | { |
| 2530 | if (s_tabhwnd == NULL) |
| 2531 | return; |
| 2532 | |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 2533 | if (TabCtrl_GetCurSel(s_tabhwnd) != nr -1) |
| 2534 | TabCtrl_SetCurSel(s_tabhwnd, nr -1); |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 2535 | } |
| 2536 | |
| 2537 | #endif |
| 2538 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2539 | /* |
| 2540 | * ":simalt" command. |
| 2541 | */ |
| 2542 | void |
| 2543 | ex_simalt(exarg_T *eap) |
| 2544 | { |
| 2545 | char_u *keys = eap->arg; |
| 2546 | |
| 2547 | PostMessage(s_hwnd, WM_SYSCOMMAND, (WPARAM)SC_KEYMENU, (LPARAM)0); |
| 2548 | while (*keys) |
| 2549 | { |
| 2550 | if (*keys == '~') |
| 2551 | *keys = ' '; /* for showing system menu */ |
| 2552 | PostMessage(s_hwnd, WM_CHAR, (WPARAM)*keys, (LPARAM)0); |
| 2553 | keys++; |
| 2554 | } |
| 2555 | } |
| 2556 | |
| 2557 | /* |
| 2558 | * Create the find & replace dialogs. |
| 2559 | * You can't have both at once: ":find" when replace is showing, destroys |
| 2560 | * the replace dialog first, and the other way around. |
| 2561 | */ |
| 2562 | #ifdef MSWIN_FIND_REPLACE |
| 2563 | static void |
| 2564 | initialise_findrep(char_u *initial_string) |
| 2565 | { |
| 2566 | int wword = FALSE; |
| 2567 | int mcase = !p_ic; |
| 2568 | char_u *entry_text; |
| 2569 | |
| 2570 | /* Get the search string to use. */ |
| 2571 | entry_text = get_find_dialog_text(initial_string, &wword, &mcase); |
| 2572 | |
| 2573 | s_findrep_struct.hwndOwner = s_hwnd; |
| 2574 | s_findrep_struct.Flags = FR_DOWN; |
| 2575 | if (mcase) |
| 2576 | s_findrep_struct.Flags |= FR_MATCHCASE; |
| 2577 | if (wword) |
| 2578 | s_findrep_struct.Flags |= FR_WHOLEWORD; |
| 2579 | if (entry_text != NULL && *entry_text != NUL) |
Bram Moolenaar | fe3ca8d | 2005-07-18 21:43:02 +0000 | [diff] [blame] | 2580 | vim_strncpy(s_findrep_struct.lpstrFindWhat, entry_text, |
| 2581 | s_findrep_struct.wFindWhatLen - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2582 | vim_free(entry_text); |
| 2583 | } |
| 2584 | #endif |
| 2585 | |
Bram Moolenaar | 908d53a | 2006-11-07 18:05:31 +0000 | [diff] [blame] | 2586 | static void |
| 2587 | set_window_title(HWND hwnd, char *title) |
| 2588 | { |
| 2589 | #ifdef FEAT_MBYTE |
| 2590 | if (title != NULL && enc_codepage >= 0 && enc_codepage != (int)GetACP()) |
| 2591 | { |
| 2592 | WCHAR *wbuf; |
| 2593 | int n; |
| 2594 | |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 2595 | /* Convert the title from 'encoding' to UTF-16. */ |
| 2596 | wbuf = (WCHAR *)enc_to_utf16((char_u *)title, NULL); |
Bram Moolenaar | 908d53a | 2006-11-07 18:05:31 +0000 | [diff] [blame] | 2597 | if (wbuf != NULL) |
| 2598 | { |
| 2599 | n = SetWindowTextW(hwnd, wbuf); |
| 2600 | vim_free(wbuf); |
| 2601 | if (n != 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED) |
| 2602 | return; |
| 2603 | /* Retry with non-wide function (for Windows 98). */ |
| 2604 | } |
| 2605 | } |
| 2606 | #endif |
| 2607 | (void)SetWindowText(hwnd, (LPCSTR)title); |
| 2608 | } |
| 2609 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2610 | void |
| 2611 | gui_mch_find_dialog(exarg_T *eap) |
| 2612 | { |
| 2613 | #ifdef MSWIN_FIND_REPLACE |
| 2614 | if (s_findrep_msg != 0) |
| 2615 | { |
| 2616 | if (IsWindow(s_findrep_hwnd) && !s_findrep_is_find) |
| 2617 | DestroyWindow(s_findrep_hwnd); |
| 2618 | |
| 2619 | if (!IsWindow(s_findrep_hwnd)) |
| 2620 | { |
| 2621 | initialise_findrep(eap->arg); |
Bram Moolenaar | 3ca9a8a | 2009-01-28 20:23:17 +0000 | [diff] [blame] | 2622 | # if defined(FEAT_MBYTE) && defined(WIN3264) |
| 2623 | /* If the OS is Windows NT, and 'encoding' differs from active |
| 2624 | * codepage: convert text and use wide function. */ |
| 2625 | if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT |
| 2626 | && enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 2627 | { |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 2628 | findrep_atow(&s_findrep_struct_w, &s_findrep_struct); |
Bram Moolenaar | 3ca9a8a | 2009-01-28 20:23:17 +0000 | [diff] [blame] | 2629 | s_findrep_hwnd = FindTextW( |
| 2630 | (LPFINDREPLACEW) &s_findrep_struct_w); |
| 2631 | } |
| 2632 | else |
| 2633 | # endif |
| 2634 | s_findrep_hwnd = FindText((LPFINDREPLACE) &s_findrep_struct); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2635 | } |
| 2636 | |
Bram Moolenaar | 908d53a | 2006-11-07 18:05:31 +0000 | [diff] [blame] | 2637 | set_window_title(s_findrep_hwnd, |
| 2638 | _("Find string (use '\\\\' to find a '\\')")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2639 | (void)SetFocus(s_findrep_hwnd); |
| 2640 | |
| 2641 | s_findrep_is_find = TRUE; |
| 2642 | } |
| 2643 | #endif |
| 2644 | } |
| 2645 | |
| 2646 | |
| 2647 | void |
| 2648 | gui_mch_replace_dialog(exarg_T *eap) |
| 2649 | { |
| 2650 | #ifdef MSWIN_FIND_REPLACE |
| 2651 | if (s_findrep_msg != 0) |
| 2652 | { |
| 2653 | if (IsWindow(s_findrep_hwnd) && s_findrep_is_find) |
| 2654 | DestroyWindow(s_findrep_hwnd); |
| 2655 | |
| 2656 | if (!IsWindow(s_findrep_hwnd)) |
| 2657 | { |
| 2658 | initialise_findrep(eap->arg); |
Bram Moolenaar | 3ca9a8a | 2009-01-28 20:23:17 +0000 | [diff] [blame] | 2659 | # if defined(FEAT_MBYTE) && defined(WIN3264) |
| 2660 | if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT |
| 2661 | && enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 2662 | { |
| 2663 | findrep_atow(&s_findrep_struct_w, &s_findrep_struct); |
| 2664 | s_findrep_hwnd = ReplaceTextW( |
| 2665 | (LPFINDREPLACEW) &s_findrep_struct_w); |
| 2666 | } |
| 2667 | else |
| 2668 | # endif |
| 2669 | s_findrep_hwnd = ReplaceText( |
| 2670 | (LPFINDREPLACE) &s_findrep_struct); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2671 | } |
| 2672 | |
Bram Moolenaar | 908d53a | 2006-11-07 18:05:31 +0000 | [diff] [blame] | 2673 | set_window_title(s_findrep_hwnd, |
| 2674 | _("Find & Replace (use '\\\\' to find a '\\')")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2675 | (void)SetFocus(s_findrep_hwnd); |
| 2676 | |
| 2677 | s_findrep_is_find = FALSE; |
| 2678 | } |
| 2679 | #endif |
| 2680 | } |
| 2681 | |
| 2682 | |
| 2683 | /* |
| 2684 | * Set visibility of the pointer. |
| 2685 | */ |
| 2686 | void |
| 2687 | gui_mch_mousehide(int hide) |
| 2688 | { |
| 2689 | if (hide != gui.pointer_hidden) |
| 2690 | { |
| 2691 | ShowCursor(!hide); |
| 2692 | gui.pointer_hidden = hide; |
| 2693 | } |
| 2694 | } |
| 2695 | |
| 2696 | #ifdef FEAT_MENU |
| 2697 | static void |
| 2698 | gui_mch_show_popupmenu_at(vimmenu_T *menu, int x, int y) |
| 2699 | { |
| 2700 | /* Unhide the mouse, we don't get move events here. */ |
| 2701 | gui_mch_mousehide(FALSE); |
| 2702 | |
| 2703 | (void)TrackPopupMenu( |
| 2704 | (HMENU)menu->submenu_id, |
| 2705 | TPM_LEFTALIGN | TPM_LEFTBUTTON, |
| 2706 | x, y, |
| 2707 | (int)0, /*reserved param*/ |
| 2708 | s_hwnd, |
| 2709 | NULL); |
| 2710 | /* |
| 2711 | * NOTE: The pop-up menu can eat the mouse up event. |
| 2712 | * We deal with this in normal.c. |
| 2713 | */ |
| 2714 | } |
| 2715 | #endif |
| 2716 | |
| 2717 | /* |
| 2718 | * Got a message when the system will go down. |
| 2719 | */ |
| 2720 | static void |
| 2721 | _OnEndSession(void) |
| 2722 | { |
| 2723 | getout_preserve_modified(1); |
| 2724 | } |
| 2725 | |
| 2726 | /* |
| 2727 | * Get this message when the user clicks on the cross in the top right corner |
| 2728 | * of a Windows95 window. |
| 2729 | */ |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 2730 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2731 | static void |
| 2732 | _OnClose( |
| 2733 | HWND hwnd) |
| 2734 | { |
| 2735 | gui_shell_closed(); |
| 2736 | } |
| 2737 | |
| 2738 | /* |
| 2739 | * Get a message when the window is being destroyed. |
| 2740 | */ |
| 2741 | static void |
| 2742 | _OnDestroy( |
| 2743 | HWND hwnd) |
| 2744 | { |
| 2745 | #ifdef WIN16_3DLOOK |
| 2746 | Ctl3dUnregister(s_hinst); |
| 2747 | #endif |
| 2748 | if (!destroying) |
| 2749 | _OnClose(hwnd); |
| 2750 | } |
| 2751 | |
| 2752 | static void |
| 2753 | _OnPaint( |
| 2754 | HWND hwnd) |
| 2755 | { |
| 2756 | if (!IsMinimized(hwnd)) |
| 2757 | { |
| 2758 | PAINTSTRUCT ps; |
| 2759 | |
| 2760 | out_flush(); /* make sure all output has been processed */ |
| 2761 | (void)BeginPaint(hwnd, &ps); |
| 2762 | |
| 2763 | #ifdef FEAT_MBYTE |
| 2764 | /* prevent multi-byte characters from misprinting on an invalid |
| 2765 | * rectangle */ |
| 2766 | if (has_mbyte) |
| 2767 | { |
| 2768 | RECT rect; |
| 2769 | |
| 2770 | GetClientRect(hwnd, &rect); |
| 2771 | ps.rcPaint.left = rect.left; |
| 2772 | ps.rcPaint.right = rect.right; |
| 2773 | } |
| 2774 | #endif |
| 2775 | |
| 2776 | if (!IsRectEmpty(&ps.rcPaint)) |
| 2777 | gui_redraw(ps.rcPaint.left, ps.rcPaint.top, |
| 2778 | ps.rcPaint.right - ps.rcPaint.left + 1, |
| 2779 | ps.rcPaint.bottom - ps.rcPaint.top + 1); |
| 2780 | EndPaint(hwnd, &ps); |
| 2781 | } |
| 2782 | } |
| 2783 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 2784 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2785 | static void |
| 2786 | _OnSize( |
| 2787 | HWND hwnd, |
| 2788 | UINT state, |
| 2789 | int cx, |
| 2790 | int cy) |
| 2791 | { |
| 2792 | if (!IsMinimized(hwnd)) |
| 2793 | { |
| 2794 | gui_resize_shell(cx, cy); |
| 2795 | |
| 2796 | #ifdef FEAT_MENU |
| 2797 | /* Menu bar may wrap differently now */ |
| 2798 | gui_mswin_get_menu_height(TRUE); |
| 2799 | #endif |
| 2800 | } |
| 2801 | } |
| 2802 | |
| 2803 | static void |
| 2804 | _OnSetFocus( |
| 2805 | HWND hwnd, |
| 2806 | HWND hwndOldFocus) |
| 2807 | { |
| 2808 | gui_focus_change(TRUE); |
Bram Moolenaar | ea40888 | 2007-12-03 21:21:03 +0000 | [diff] [blame] | 2809 | s_getting_focus = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2810 | (void)MyWindowProc(hwnd, WM_SETFOCUS, (WPARAM)hwndOldFocus, 0); |
| 2811 | } |
| 2812 | |
| 2813 | static void |
| 2814 | _OnKillFocus( |
| 2815 | HWND hwnd, |
| 2816 | HWND hwndNewFocus) |
| 2817 | { |
| 2818 | gui_focus_change(FALSE); |
Bram Moolenaar | ea40888 | 2007-12-03 21:21:03 +0000 | [diff] [blame] | 2819 | s_getting_focus = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2820 | (void)MyWindowProc(hwnd, WM_KILLFOCUS, (WPARAM)hwndNewFocus, 0); |
| 2821 | } |
| 2822 | |
| 2823 | /* |
| 2824 | * Get a message when the user switches back to vim |
| 2825 | */ |
| 2826 | #ifdef WIN16 |
| 2827 | static BOOL |
| 2828 | #else |
| 2829 | static LRESULT |
| 2830 | #endif |
| 2831 | _OnActivateApp( |
| 2832 | HWND hwnd, |
| 2833 | BOOL fActivate, |
| 2834 | #ifdef WIN16 |
| 2835 | HTASK dwThreadId |
| 2836 | #else |
| 2837 | DWORD dwThreadId |
| 2838 | #endif |
| 2839 | ) |
| 2840 | { |
| 2841 | /* we call gui_focus_change() in _OnSetFocus() */ |
| 2842 | /* gui_focus_change((int)fActivate); */ |
| 2843 | return MyWindowProc(hwnd, WM_ACTIVATEAPP, fActivate, (DWORD)dwThreadId); |
| 2844 | } |
| 2845 | |
| 2846 | #if defined(FEAT_WINDOWS) || defined(PROTO) |
| 2847 | void |
| 2848 | gui_mch_destroy_scrollbar(scrollbar_T *sb) |
| 2849 | { |
| 2850 | DestroyWindow(sb->id); |
| 2851 | } |
| 2852 | #endif |
| 2853 | |
| 2854 | /* |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 2855 | * Get current mouse coordinates in text window. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2856 | */ |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 2857 | void |
Bram Moolenaar | a40c500 | 2005-01-09 21:16:21 +0000 | [diff] [blame] | 2858 | gui_mch_getmouse(int *x, int *y) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2859 | { |
| 2860 | RECT rct; |
| 2861 | POINT mp; |
| 2862 | |
| 2863 | (void)GetWindowRect(s_textArea, &rct); |
| 2864 | (void)GetCursorPos((LPPOINT)&mp); |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 2865 | *x = (int)(mp.x - rct.left); |
| 2866 | *y = (int)(mp.y - rct.top); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2867 | } |
| 2868 | |
| 2869 | /* |
| 2870 | * Move mouse pointer to character at (x, y). |
| 2871 | */ |
| 2872 | void |
| 2873 | gui_mch_setmouse(int x, int y) |
| 2874 | { |
| 2875 | RECT rct; |
| 2876 | |
| 2877 | (void)GetWindowRect(s_textArea, &rct); |
| 2878 | (void)SetCursorPos(x + gui.border_offset + rct.left, |
| 2879 | y + gui.border_offset + rct.top); |
| 2880 | } |
| 2881 | |
| 2882 | static void |
| 2883 | gui_mswin_get_valid_dimensions( |
| 2884 | int w, |
| 2885 | int h, |
| 2886 | int *valid_w, |
| 2887 | int *valid_h) |
| 2888 | { |
| 2889 | int base_width, base_height; |
| 2890 | |
| 2891 | base_width = gui_get_base_width() |
| 2892 | + GetSystemMetrics(SM_CXFRAME) * 2; |
| 2893 | base_height = gui_get_base_height() |
| 2894 | + GetSystemMetrics(SM_CYFRAME) * 2 |
| 2895 | + GetSystemMetrics(SM_CYCAPTION) |
| 2896 | #ifdef FEAT_MENU |
| 2897 | + gui_mswin_get_menu_height(FALSE) |
| 2898 | #endif |
| 2899 | ; |
| 2900 | *valid_w = base_width + |
| 2901 | ((w - base_width) / gui.char_width) * gui.char_width; |
| 2902 | *valid_h = base_height + |
| 2903 | ((h - base_height) / gui.char_height) * gui.char_height; |
| 2904 | } |
| 2905 | |
| 2906 | void |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2907 | gui_mch_flash(int msec) |
| 2908 | { |
| 2909 | RECT rc; |
| 2910 | |
| 2911 | /* |
| 2912 | * Note: InvertRect() excludes right and bottom of rectangle. |
| 2913 | */ |
| 2914 | rc.left = 0; |
| 2915 | rc.top = 0; |
| 2916 | rc.right = gui.num_cols * gui.char_width; |
| 2917 | rc.bottom = gui.num_rows * gui.char_height; |
| 2918 | InvertRect(s_hdc, &rc); |
| 2919 | gui_mch_flush(); /* make sure it's displayed */ |
| 2920 | |
| 2921 | ui_delay((long)msec, TRUE); /* wait for a few msec */ |
| 2922 | |
| 2923 | InvertRect(s_hdc, &rc); |
| 2924 | } |
| 2925 | |
| 2926 | /* |
| 2927 | * Return flags used for scrolling. |
| 2928 | * The SW_INVALIDATE is required when part of the window is covered or |
| 2929 | * off-screen. Refer to MS KB Q75236. |
| 2930 | */ |
| 2931 | static int |
| 2932 | get_scroll_flags(void) |
| 2933 | { |
| 2934 | HWND hwnd; |
| 2935 | RECT rcVim, rcOther, rcDest; |
| 2936 | |
| 2937 | GetWindowRect(s_hwnd, &rcVim); |
Bram Moolenaar | 0d40699 | 2005-05-22 22:03:39 +0000 | [diff] [blame] | 2938 | |
| 2939 | /* Check if the window is partly above or below the screen. We don't care |
| 2940 | * about partly left or right of the screen, it is not relevant when |
| 2941 | * scrolling up or down. */ |
| 2942 | if (rcVim.top < 0 || rcVim.bottom > GetSystemMetrics(SM_CYFULLSCREEN)) |
| 2943 | return SW_INVALIDATE; |
| 2944 | |
| 2945 | /* Check if there is an window (partly) on top of us. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2946 | for (hwnd = s_hwnd; (hwnd = GetWindow(hwnd, GW_HWNDPREV)) != (HWND)0; ) |
| 2947 | if (IsWindowVisible(hwnd)) |
| 2948 | { |
| 2949 | GetWindowRect(hwnd, &rcOther); |
| 2950 | if (IntersectRect(&rcDest, &rcVim, &rcOther)) |
| 2951 | return SW_INVALIDATE; |
| 2952 | } |
| 2953 | return 0; |
| 2954 | } |
| 2955 | |
| 2956 | /* |
| 2957 | * Delete the given number of lines from the given row, scrolling up any |
| 2958 | * text further down within the scroll region. |
| 2959 | */ |
| 2960 | void |
| 2961 | gui_mch_delete_lines( |
| 2962 | int row, |
| 2963 | int num_lines) |
| 2964 | { |
| 2965 | RECT rc; |
| 2966 | |
| 2967 | rc.left = FILL_X(gui.scroll_region_left); |
| 2968 | rc.right = FILL_X(gui.scroll_region_right + 1); |
| 2969 | rc.top = FILL_Y(row); |
| 2970 | rc.bottom = FILL_Y(gui.scroll_region_bot + 1); |
| 2971 | |
| 2972 | ScrollWindowEx(s_textArea, 0, -num_lines * gui.char_height, |
| 2973 | &rc, &rc, NULL, NULL, get_scroll_flags()); |
| 2974 | |
| 2975 | UpdateWindow(s_textArea); |
| 2976 | /* This seems to be required to avoid the cursor disappearing when |
| 2977 | * scrolling such that the cursor ends up in the top-left character on |
| 2978 | * the screen... But why? (Webb) */ |
| 2979 | /* It's probably fixed by disabling drawing the cursor while scrolling. */ |
| 2980 | /* gui.cursor_is_valid = FALSE; */ |
| 2981 | |
| 2982 | gui_clear_block(gui.scroll_region_bot - num_lines + 1, |
| 2983 | gui.scroll_region_left, |
| 2984 | gui.scroll_region_bot, gui.scroll_region_right); |
| 2985 | } |
| 2986 | |
| 2987 | /* |
| 2988 | * Insert the given number of lines before the given row, scrolling down any |
| 2989 | * following text within the scroll region. |
| 2990 | */ |
| 2991 | void |
| 2992 | gui_mch_insert_lines( |
| 2993 | int row, |
| 2994 | int num_lines) |
| 2995 | { |
| 2996 | RECT rc; |
| 2997 | |
| 2998 | rc.left = FILL_X(gui.scroll_region_left); |
| 2999 | rc.right = FILL_X(gui.scroll_region_right + 1); |
| 3000 | rc.top = FILL_Y(row); |
| 3001 | rc.bottom = FILL_Y(gui.scroll_region_bot + 1); |
| 3002 | /* The SW_INVALIDATE is required when part of the window is covered or |
| 3003 | * off-screen. How do we avoid it when it's not needed? */ |
| 3004 | ScrollWindowEx(s_textArea, 0, num_lines * gui.char_height, |
| 3005 | &rc, &rc, NULL, NULL, get_scroll_flags()); |
| 3006 | |
| 3007 | UpdateWindow(s_textArea); |
| 3008 | |
| 3009 | gui_clear_block(row, gui.scroll_region_left, |
| 3010 | row + num_lines - 1, gui.scroll_region_right); |
| 3011 | } |
| 3012 | |
| 3013 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 3014 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3015 | void |
| 3016 | gui_mch_exit(int rc) |
| 3017 | { |
| 3018 | ReleaseDC(s_textArea, s_hdc); |
| 3019 | DeleteObject(s_brush); |
| 3020 | |
| 3021 | #ifdef FEAT_TEAROFF |
| 3022 | /* Unload the tearoff bitmap */ |
| 3023 | (void)DeleteObject((HGDIOBJ)s_htearbitmap); |
| 3024 | #endif |
| 3025 | |
| 3026 | /* Destroy our window (if we have one). */ |
| 3027 | if (s_hwnd != NULL) |
| 3028 | { |
| 3029 | destroying = TRUE; /* ignore WM_DESTROY message now */ |
| 3030 | DestroyWindow(s_hwnd); |
| 3031 | } |
| 3032 | |
| 3033 | #ifdef GLOBAL_IME |
| 3034 | global_ime_end(); |
| 3035 | #endif |
| 3036 | } |
| 3037 | |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3038 | static char_u * |
| 3039 | logfont2name(LOGFONT lf) |
| 3040 | { |
| 3041 | char *p; |
| 3042 | char *res; |
| 3043 | char *charset_name; |
| 3044 | |
| 3045 | charset_name = charset_id2name((int)lf.lfCharSet); |
| 3046 | res = alloc((unsigned)(strlen(lf.lfFaceName) + 20 |
| 3047 | + (charset_name == NULL ? 0 : strlen(charset_name) + 2))); |
| 3048 | if (res != NULL) |
| 3049 | { |
| 3050 | p = res; |
| 3051 | /* make a normal font string out of the lf thing:*/ |
| 3052 | sprintf((char *)p, "%s:h%d", lf.lfFaceName, pixels_to_points( |
| 3053 | lf.lfHeight < 0 ? -lf.lfHeight : lf.lfHeight, TRUE)); |
| 3054 | while (*p) |
| 3055 | { |
| 3056 | if (*p == ' ') |
| 3057 | *p = '_'; |
| 3058 | ++p; |
| 3059 | } |
| 3060 | #ifndef MSWIN16_FASTTEXT |
| 3061 | if (lf.lfItalic) |
| 3062 | STRCAT(p, ":i"); |
| 3063 | if (lf.lfWeight >= FW_BOLD) |
| 3064 | STRCAT(p, ":b"); |
| 3065 | #endif |
| 3066 | if (lf.lfUnderline) |
| 3067 | STRCAT(p, ":u"); |
| 3068 | if (lf.lfStrikeOut) |
| 3069 | STRCAT(p, ":s"); |
| 3070 | if (charset_name != NULL) |
| 3071 | { |
| 3072 | STRCAT(p, ":c"); |
| 3073 | STRCAT(p, charset_name); |
| 3074 | } |
| 3075 | } |
| 3076 | |
| 3077 | return res; |
| 3078 | } |
| 3079 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3080 | /* |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3081 | * Initialise vim to use the font with the given name. |
| 3082 | * Return FAIL if the font could not be loaded, OK otherwise. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3083 | */ |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 3084 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3085 | int |
| 3086 | gui_mch_init_font(char_u *font_name, int fontset) |
| 3087 | { |
| 3088 | LOGFONT lf; |
| 3089 | GuiFont font = NOFONT; |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3090 | char_u *p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3091 | |
| 3092 | /* Load the font */ |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3093 | if (get_logfont(&lf, font_name, NULL, TRUE) == OK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3094 | font = get_font_handle(&lf); |
| 3095 | if (font == NOFONT) |
| 3096 | return FAIL; |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3097 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3098 | if (font_name == NULL) |
| 3099 | font_name = lf.lfFaceName; |
| 3100 | #if defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME) |
| 3101 | norm_logfont = lf; |
| 3102 | #endif |
| 3103 | #ifdef FEAT_MBYTE_IME |
| 3104 | im_set_font(&lf); |
| 3105 | #endif |
| 3106 | gui_mch_free_font(gui.norm_font); |
| 3107 | gui.norm_font = font; |
| 3108 | current_font_height = lf.lfHeight; |
| 3109 | GetFontSize(font); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3110 | |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3111 | p = logfont2name(lf); |
| 3112 | if (p != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3113 | { |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3114 | hl_set_font_name(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3115 | |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3116 | /* When setting 'guifont' to "*" replace it with the actual font name. |
| 3117 | * */ |
| 3118 | if (STRCMP(font_name, "*") == 0 && STRCMP(p_guifont, "*") == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3119 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3120 | vim_free(p_guifont); |
| 3121 | p_guifont = p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3122 | } |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3123 | else |
| 3124 | vim_free(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3125 | } |
| 3126 | |
| 3127 | #ifndef MSWIN16_FASTTEXT |
| 3128 | gui_mch_free_font(gui.ital_font); |
| 3129 | gui.ital_font = NOFONT; |
| 3130 | gui_mch_free_font(gui.bold_font); |
| 3131 | gui.bold_font = NOFONT; |
| 3132 | gui_mch_free_font(gui.boldital_font); |
| 3133 | gui.boldital_font = NOFONT; |
| 3134 | |
| 3135 | if (!lf.lfItalic) |
| 3136 | { |
| 3137 | lf.lfItalic = TRUE; |
| 3138 | gui.ital_font = get_font_handle(&lf); |
| 3139 | lf.lfItalic = FALSE; |
| 3140 | } |
| 3141 | if (lf.lfWeight < FW_BOLD) |
| 3142 | { |
| 3143 | lf.lfWeight = FW_BOLD; |
| 3144 | gui.bold_font = get_font_handle(&lf); |
| 3145 | if (!lf.lfItalic) |
| 3146 | { |
| 3147 | lf.lfItalic = TRUE; |
| 3148 | gui.boldital_font = get_font_handle(&lf); |
| 3149 | } |
| 3150 | } |
| 3151 | #endif |
| 3152 | |
| 3153 | return OK; |
| 3154 | } |
| 3155 | |
Bram Moolenaar | 85f868c | 2006-11-28 16:16:58 +0000 | [diff] [blame] | 3156 | #ifndef WPF_RESTORETOMAXIMIZED |
| 3157 | # define WPF_RESTORETOMAXIMIZED 2 /* just in case someone doesn't have it */ |
| 3158 | #endif |
| 3159 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3160 | /* |
| 3161 | * Return TRUE if the GUI window is maximized, filling the whole screen. |
| 3162 | */ |
| 3163 | int |
| 3164 | gui_mch_maximized() |
| 3165 | { |
Bram Moolenaar | 85f868c | 2006-11-28 16:16:58 +0000 | [diff] [blame] | 3166 | WINDOWPLACEMENT wp; |
| 3167 | |
| 3168 | wp.length = sizeof(WINDOWPLACEMENT); |
| 3169 | if (GetWindowPlacement(s_hwnd, &wp)) |
| 3170 | return wp.showCmd == SW_SHOWMAXIMIZED |
| 3171 | || (wp.showCmd == SW_SHOWMINIMIZED |
| 3172 | && wp.flags == WPF_RESTORETOMAXIMIZED); |
| 3173 | |
| 3174 | return 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3175 | } |
| 3176 | |
| 3177 | /* |
| 3178 | * Called when the font changed while the window is maximized. Compute the |
| 3179 | * new Rows and Columns. This is like resizing the window. |
| 3180 | */ |
| 3181 | void |
| 3182 | gui_mch_newfont() |
| 3183 | { |
| 3184 | RECT rect; |
| 3185 | |
| 3186 | GetWindowRect(s_hwnd, &rect); |
| 3187 | gui_resize_shell(rect.right - rect.left |
| 3188 | - GetSystemMetrics(SM_CXFRAME) * 2, |
| 3189 | rect.bottom - rect.top |
| 3190 | - GetSystemMetrics(SM_CYFRAME) * 2 |
| 3191 | - GetSystemMetrics(SM_CYCAPTION) |
| 3192 | #ifdef FEAT_MENU |
| 3193 | - gui_mswin_get_menu_height(FALSE) |
| 3194 | #endif |
| 3195 | ); |
| 3196 | } |
| 3197 | |
| 3198 | /* |
| 3199 | * Set the window title |
| 3200 | */ |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 3201 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3202 | void |
| 3203 | gui_mch_settitle( |
| 3204 | char_u *title, |
| 3205 | char_u *icon) |
| 3206 | { |
Bram Moolenaar | 908d53a | 2006-11-07 18:05:31 +0000 | [diff] [blame] | 3207 | set_window_title(s_hwnd, (title == NULL ? "VIM" : (char *)title)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3208 | } |
| 3209 | |
| 3210 | #ifdef FEAT_MOUSESHAPE |
| 3211 | /* Table for shape IDCs. Keep in sync with the mshape_names[] table in |
| 3212 | * misc2.c! */ |
| 3213 | static LPCSTR mshape_idcs[] = |
| 3214 | { |
| 3215 | MAKEINTRESOURCE(IDC_ARROW), /* arrow */ |
| 3216 | MAKEINTRESOURCE(0), /* blank */ |
| 3217 | MAKEINTRESOURCE(IDC_IBEAM), /* beam */ |
| 3218 | MAKEINTRESOURCE(IDC_SIZENS), /* updown */ |
| 3219 | MAKEINTRESOURCE(IDC_SIZENS), /* udsizing */ |
| 3220 | MAKEINTRESOURCE(IDC_SIZEWE), /* leftright */ |
| 3221 | MAKEINTRESOURCE(IDC_SIZEWE), /* lrsizing */ |
| 3222 | MAKEINTRESOURCE(IDC_WAIT), /* busy */ |
| 3223 | #ifdef WIN3264 |
| 3224 | MAKEINTRESOURCE(IDC_NO), /* no */ |
| 3225 | #else |
| 3226 | MAKEINTRESOURCE(IDC_ICON), /* no */ |
| 3227 | #endif |
| 3228 | MAKEINTRESOURCE(IDC_ARROW), /* crosshair */ |
| 3229 | MAKEINTRESOURCE(IDC_ARROW), /* hand1 */ |
| 3230 | MAKEINTRESOURCE(IDC_ARROW), /* hand2 */ |
| 3231 | MAKEINTRESOURCE(IDC_ARROW), /* pencil */ |
| 3232 | MAKEINTRESOURCE(IDC_ARROW), /* question */ |
| 3233 | MAKEINTRESOURCE(IDC_ARROW), /* right-arrow */ |
| 3234 | MAKEINTRESOURCE(IDC_UPARROW), /* up-arrow */ |
| 3235 | MAKEINTRESOURCE(IDC_ARROW) /* last one */ |
| 3236 | }; |
| 3237 | |
| 3238 | void |
| 3239 | mch_set_mouse_shape(int shape) |
| 3240 | { |
| 3241 | LPCSTR idc; |
| 3242 | |
| 3243 | if (shape == MSHAPE_HIDE) |
| 3244 | ShowCursor(FALSE); |
| 3245 | else |
| 3246 | { |
| 3247 | if (shape >= MSHAPE_NUMBERED) |
| 3248 | idc = MAKEINTRESOURCE(IDC_ARROW); |
| 3249 | else |
| 3250 | idc = mshape_idcs[shape]; |
Bram Moolenaar | e6a91fd | 2008-07-24 18:51:11 +0000 | [diff] [blame] | 3251 | #ifdef SetClassLongPtr |
| 3252 | SetClassLongPtr(s_textArea, GCLP_HCURSOR, (__int3264)(LONG_PTR)LoadCursor(NULL, idc)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3253 | #else |
| 3254 | # ifdef WIN32 |
Bram Moolenaar | e6a91fd | 2008-07-24 18:51:11 +0000 | [diff] [blame] | 3255 | SetClassLong(s_textArea, GCL_HCURSOR, (long_u)LoadCursor(NULL, idc)); |
| 3256 | # else /* Win16 */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3257 | SetClassWord(s_textArea, GCW_HCURSOR, (WORD)LoadCursor(NULL, idc)); |
| 3258 | # endif |
| 3259 | #endif |
| 3260 | if (!p_mh) |
| 3261 | { |
| 3262 | POINT mp; |
| 3263 | |
| 3264 | /* Set the position to make it redrawn with the new shape. */ |
| 3265 | (void)GetCursorPos((LPPOINT)&mp); |
| 3266 | (void)SetCursorPos(mp.x, mp.y); |
| 3267 | ShowCursor(TRUE); |
| 3268 | } |
| 3269 | } |
| 3270 | } |
| 3271 | #endif |
| 3272 | |
| 3273 | #ifdef FEAT_BROWSE |
| 3274 | /* |
| 3275 | * The file browser exists in two versions: with "W" uses wide characters, |
| 3276 | * without "W" the current codepage. When FEAT_MBYTE is defined and on |
| 3277 | * Windows NT/2000/XP the "W" functions are used. |
| 3278 | */ |
| 3279 | |
| 3280 | # if defined(FEAT_MBYTE) && defined(WIN3264) |
| 3281 | /* |
Bram Moolenaar | 3ef7cdf | 2012-01-20 17:57:51 +0100 | [diff] [blame^] | 3282 | * Wide version of convert_filter(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3283 | */ |
| 3284 | static WCHAR * |
| 3285 | convert_filterW(char_u *s) |
| 3286 | { |
Bram Moolenaar | 3ef7cdf | 2012-01-20 17:57:51 +0100 | [diff] [blame^] | 3287 | char_u *tmp; |
| 3288 | int len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3289 | |
Bram Moolenaar | 3ef7cdf | 2012-01-20 17:57:51 +0100 | [diff] [blame^] | 3290 | tmp = convert_filter(s); |
| 3291 | if (tmp == NULL) |
| 3292 | return NULL; |
| 3293 | len = (int)STRLEN(s) + 3; |
| 3294 | res = enc_to_utf16(tmp, &len); |
| 3295 | vim_free(tmp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3296 | return res; |
| 3297 | } |
| 3298 | |
| 3299 | /* |
| 3300 | * Wide version of gui_mch_browse(). Keep in sync! |
| 3301 | */ |
| 3302 | static char_u * |
| 3303 | gui_mch_browseW( |
| 3304 | int saving, |
| 3305 | char_u *title, |
| 3306 | char_u *dflt, |
| 3307 | char_u *ext, |
| 3308 | char_u *initdir, |
| 3309 | char_u *filter) |
| 3310 | { |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 3311 | /* We always use the wide function. This means enc_to_utf16() must work, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3312 | * otherwise it fails miserably! */ |
| 3313 | OPENFILENAMEW fileStruct; |
| 3314 | WCHAR fileBuf[MAXPATHL]; |
| 3315 | WCHAR *wp; |
| 3316 | int i; |
| 3317 | WCHAR *titlep = NULL; |
| 3318 | WCHAR *extp = NULL; |
| 3319 | WCHAR *initdirp = NULL; |
| 3320 | WCHAR *filterp; |
| 3321 | char_u *p; |
| 3322 | |
| 3323 | if (dflt == NULL) |
| 3324 | fileBuf[0] = NUL; |
| 3325 | else |
| 3326 | { |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 3327 | wp = enc_to_utf16(dflt, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3328 | if (wp == NULL) |
| 3329 | fileBuf[0] = NUL; |
| 3330 | else |
| 3331 | { |
| 3332 | for (i = 0; wp[i] != NUL && i < MAXPATHL - 1; ++i) |
| 3333 | fileBuf[i] = wp[i]; |
| 3334 | fileBuf[i] = NUL; |
| 3335 | vim_free(wp); |
| 3336 | } |
| 3337 | } |
| 3338 | |
| 3339 | /* Convert the filter to Windows format. */ |
| 3340 | filterp = convert_filterW(filter); |
| 3341 | |
Bram Moolenaar | 7db5fc8 | 2010-05-24 11:59:29 +0200 | [diff] [blame] | 3342 | vim_memset(&fileStruct, 0, sizeof(OPENFILENAMEW)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3343 | #ifdef OPENFILENAME_SIZE_VERSION_400 |
| 3344 | /* be compatible with Windows NT 4.0 */ |
| 3345 | /* TODO: what to use for OPENFILENAMEW??? */ |
Bram Moolenaar | 8c83ac3 | 2010-02-17 17:34:43 +0100 | [diff] [blame] | 3346 | fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3347 | #else |
| 3348 | fileStruct.lStructSize = sizeof(fileStruct); |
| 3349 | #endif |
| 3350 | |
| 3351 | if (title != NULL) |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 3352 | titlep = enc_to_utf16(title, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3353 | fileStruct.lpstrTitle = titlep; |
| 3354 | |
| 3355 | if (ext != NULL) |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 3356 | extp = enc_to_utf16(ext, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3357 | fileStruct.lpstrDefExt = extp; |
| 3358 | |
| 3359 | fileStruct.lpstrFile = fileBuf; |
| 3360 | fileStruct.nMaxFile = MAXPATHL; |
| 3361 | fileStruct.lpstrFilter = filterp; |
| 3362 | fileStruct.hwndOwner = s_hwnd; /* main Vim window is owner*/ |
| 3363 | /* has an initial dir been specified? */ |
| 3364 | if (initdir != NULL && *initdir != NUL) |
| 3365 | { |
| 3366 | /* Must have backslashes here, no matter what 'shellslash' says */ |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 3367 | initdirp = enc_to_utf16(initdir, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3368 | if (initdirp != NULL) |
| 3369 | { |
| 3370 | for (wp = initdirp; *wp != NUL; ++wp) |
| 3371 | if (*wp == '/') |
| 3372 | *wp = '\\'; |
| 3373 | } |
| 3374 | fileStruct.lpstrInitialDir = initdirp; |
| 3375 | } |
| 3376 | |
| 3377 | /* |
| 3378 | * TODO: Allow selection of multiple files. Needs another arg to this |
| 3379 | * function to ask for it, and need to use OFN_ALLOWMULTISELECT below. |
| 3380 | * Also, should we use OFN_FILEMUSTEXIST when opening? Vim can edit on |
| 3381 | * files that don't exist yet, so I haven't put it in. What about |
| 3382 | * OFN_PATHMUSTEXIST? |
| 3383 | * Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog. |
| 3384 | */ |
| 3385 | fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY); |
| 3386 | #ifdef FEAT_SHORTCUT |
| 3387 | if (curbuf->b_p_bin) |
| 3388 | fileStruct.Flags |= OFN_NODEREFERENCELINKS; |
| 3389 | #endif |
| 3390 | if (saving) |
| 3391 | { |
| 3392 | if (!GetSaveFileNameW(&fileStruct)) |
| 3393 | return NULL; |
| 3394 | } |
| 3395 | else |
| 3396 | { |
| 3397 | if (!GetOpenFileNameW(&fileStruct)) |
| 3398 | return NULL; |
| 3399 | } |
| 3400 | |
| 3401 | vim_free(filterp); |
| 3402 | vim_free(initdirp); |
| 3403 | vim_free(titlep); |
| 3404 | vim_free(extp); |
| 3405 | |
| 3406 | /* Convert from UCS2 to 'encoding'. */ |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 3407 | p = utf16_to_enc(fileBuf, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3408 | if (p != NULL) |
| 3409 | /* when out of memory we get garbage for non-ASCII chars */ |
| 3410 | STRCPY(fileBuf, p); |
| 3411 | vim_free(p); |
| 3412 | |
| 3413 | /* Give focus back to main window (when using MDI). */ |
| 3414 | SetFocus(s_hwnd); |
| 3415 | |
| 3416 | /* Shorten the file name if possible */ |
Bram Moolenaar | d089d9b | 2007-09-30 12:02:55 +0000 | [diff] [blame] | 3417 | return vim_strsave(shorten_fname1((char_u *)fileBuf)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3418 | } |
| 3419 | # endif /* FEAT_MBYTE */ |
| 3420 | |
| 3421 | |
| 3422 | /* |
| 3423 | * Convert the string s to the proper format for a filter string by replacing |
Bram Moolenaar | 12806c8 | 2008-11-12 12:36:30 +0000 | [diff] [blame] | 3424 | * the \t and \n delimiters with \0. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3425 | * Returns the converted string in allocated memory. |
| 3426 | * |
| 3427 | * Keep in sync with convert_filterW() above! |
| 3428 | */ |
| 3429 | static char_u * |
| 3430 | convert_filter(char_u *s) |
| 3431 | { |
| 3432 | char_u *res; |
| 3433 | unsigned s_len = (unsigned)STRLEN(s); |
| 3434 | unsigned i; |
| 3435 | |
| 3436 | res = alloc(s_len + 3); |
| 3437 | if (res != NULL) |
| 3438 | { |
| 3439 | for (i = 0; i < s_len; ++i) |
| 3440 | if (s[i] == '\t' || s[i] == '\n') |
| 3441 | res[i] = '\0'; |
| 3442 | else |
| 3443 | res[i] = s[i]; |
| 3444 | res[s_len] = NUL; |
| 3445 | /* Add two extra NULs to make sure it's properly terminated. */ |
| 3446 | res[s_len + 1] = NUL; |
| 3447 | res[s_len + 2] = NUL; |
| 3448 | } |
| 3449 | return res; |
| 3450 | } |
| 3451 | |
| 3452 | /* |
Bram Moolenaar | 7171abe | 2004-10-11 10:06:20 +0000 | [diff] [blame] | 3453 | * Select a directory. |
| 3454 | */ |
| 3455 | char_u * |
| 3456 | gui_mch_browsedir(char_u *title, char_u *initdir) |
| 3457 | { |
| 3458 | /* We fake this: Use a filter that doesn't select anything and a default |
| 3459 | * file name that won't be used. */ |
| 3460 | return gui_mch_browse(0, title, (char_u *)_("Not Used"), NULL, |
| 3461 | initdir, (char_u *)_("Directory\t*.nothing\n")); |
| 3462 | } |
| 3463 | |
| 3464 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3465 | * Pop open a file browser and return the file selected, in allocated memory, |
| 3466 | * or NULL if Cancel is hit. |
| 3467 | * saving - TRUE if the file will be saved to, FALSE if it will be opened. |
| 3468 | * title - Title message for the file browser dialog. |
| 3469 | * dflt - Default name of file. |
| 3470 | * ext - Default extension to be added to files without extensions. |
| 3471 | * initdir - directory in which to open the browser (NULL = current dir) |
| 3472 | * filter - Filter for matched files to choose from. |
| 3473 | * |
| 3474 | * Keep in sync with gui_mch_browseW() above! |
| 3475 | */ |
| 3476 | char_u * |
| 3477 | gui_mch_browse( |
| 3478 | int saving, |
| 3479 | char_u *title, |
| 3480 | char_u *dflt, |
| 3481 | char_u *ext, |
| 3482 | char_u *initdir, |
| 3483 | char_u *filter) |
| 3484 | { |
| 3485 | OPENFILENAME fileStruct; |
| 3486 | char_u fileBuf[MAXPATHL]; |
| 3487 | char_u *initdirp = NULL; |
| 3488 | char_u *filterp; |
| 3489 | char_u *p; |
| 3490 | |
| 3491 | # if defined(FEAT_MBYTE) && defined(WIN3264) |
| 3492 | if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT) |
| 3493 | return gui_mch_browseW(saving, title, dflt, ext, initdir, filter); |
| 3494 | # endif |
| 3495 | |
| 3496 | if (dflt == NULL) |
| 3497 | fileBuf[0] = NUL; |
| 3498 | else |
Bram Moolenaar | fe3ca8d | 2005-07-18 21:43:02 +0000 | [diff] [blame] | 3499 | vim_strncpy(fileBuf, dflt, MAXPATHL - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3500 | |
| 3501 | /* Convert the filter to Windows format. */ |
| 3502 | filterp = convert_filter(filter); |
| 3503 | |
Bram Moolenaar | 7db5fc8 | 2010-05-24 11:59:29 +0200 | [diff] [blame] | 3504 | vim_memset(&fileStruct, 0, sizeof(OPENFILENAME)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3505 | #ifdef OPENFILENAME_SIZE_VERSION_400 |
| 3506 | /* be compatible with Windows NT 4.0 */ |
Bram Moolenaar | 8c83ac3 | 2010-02-17 17:34:43 +0100 | [diff] [blame] | 3507 | fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3508 | #else |
| 3509 | fileStruct.lStructSize = sizeof(fileStruct); |
| 3510 | #endif |
| 3511 | |
| 3512 | fileStruct.lpstrTitle = title; |
| 3513 | fileStruct.lpstrDefExt = ext; |
| 3514 | |
| 3515 | fileStruct.lpstrFile = fileBuf; |
| 3516 | fileStruct.nMaxFile = MAXPATHL; |
| 3517 | fileStruct.lpstrFilter = filterp; |
| 3518 | fileStruct.hwndOwner = s_hwnd; /* main Vim window is owner*/ |
| 3519 | /* has an initial dir been specified? */ |
| 3520 | if (initdir != NULL && *initdir != NUL) |
| 3521 | { |
| 3522 | /* Must have backslashes here, no matter what 'shellslash' says */ |
| 3523 | initdirp = vim_strsave(initdir); |
| 3524 | if (initdirp != NULL) |
| 3525 | for (p = initdirp; *p != NUL; ++p) |
| 3526 | if (*p == '/') |
| 3527 | *p = '\\'; |
| 3528 | fileStruct.lpstrInitialDir = initdirp; |
| 3529 | } |
| 3530 | |
| 3531 | /* |
| 3532 | * TODO: Allow selection of multiple files. Needs another arg to this |
| 3533 | * function to ask for it, and need to use OFN_ALLOWMULTISELECT below. |
| 3534 | * Also, should we use OFN_FILEMUSTEXIST when opening? Vim can edit on |
| 3535 | * files that don't exist yet, so I haven't put it in. What about |
| 3536 | * OFN_PATHMUSTEXIST? |
| 3537 | * Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog. |
| 3538 | */ |
| 3539 | fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY); |
| 3540 | #ifdef FEAT_SHORTCUT |
| 3541 | if (curbuf->b_p_bin) |
| 3542 | fileStruct.Flags |= OFN_NODEREFERENCELINKS; |
| 3543 | #endif |
| 3544 | if (saving) |
| 3545 | { |
| 3546 | if (!GetSaveFileName(&fileStruct)) |
| 3547 | return NULL; |
| 3548 | } |
| 3549 | else |
| 3550 | { |
| 3551 | if (!GetOpenFileName(&fileStruct)) |
| 3552 | return NULL; |
| 3553 | } |
| 3554 | |
| 3555 | vim_free(filterp); |
| 3556 | vim_free(initdirp); |
| 3557 | |
| 3558 | /* Give focus back to main window (when using MDI). */ |
| 3559 | SetFocus(s_hwnd); |
| 3560 | |
| 3561 | /* Shorten the file name if possible */ |
Bram Moolenaar | d089d9b | 2007-09-30 12:02:55 +0000 | [diff] [blame] | 3562 | return vim_strsave(shorten_fname1((char_u *)fileBuf)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3563 | } |
| 3564 | #endif /* FEAT_BROWSE */ |
| 3565 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 3566 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3567 | static void |
| 3568 | _OnDropFiles( |
| 3569 | HWND hwnd, |
| 3570 | HDROP hDrop) |
| 3571 | { |
| 3572 | #ifdef FEAT_WINDOWS |
| 3573 | #ifdef WIN3264 |
| 3574 | # define BUFPATHLEN _MAX_PATH |
| 3575 | # define DRAGQVAL 0xFFFFFFFF |
| 3576 | #else |
| 3577 | # define BUFPATHLEN MAXPATHL |
| 3578 | # define DRAGQVAL 0xFFFF |
| 3579 | #endif |
| 3580 | #ifdef FEAT_MBYTE |
| 3581 | WCHAR wszFile[BUFPATHLEN]; |
| 3582 | #endif |
| 3583 | char szFile[BUFPATHLEN]; |
| 3584 | UINT cFiles = DragQueryFile(hDrop, DRAGQVAL, NULL, 0); |
| 3585 | UINT i; |
| 3586 | char_u **fnames; |
| 3587 | POINT pt; |
| 3588 | int_u modifiers = 0; |
| 3589 | |
| 3590 | /* TRACE("_OnDropFiles: %d files dropped\n", cFiles); */ |
| 3591 | |
| 3592 | /* Obtain dropped position */ |
| 3593 | DragQueryPoint(hDrop, &pt); |
| 3594 | MapWindowPoints(s_hwnd, s_textArea, &pt, 1); |
| 3595 | |
| 3596 | # ifdef FEAT_VISUAL |
| 3597 | reset_VIsual(); |
| 3598 | # endif |
| 3599 | |
| 3600 | fnames = (char_u **)alloc(cFiles * sizeof(char_u *)); |
| 3601 | |
| 3602 | if (fnames != NULL) |
| 3603 | for (i = 0; i < cFiles; ++i) |
| 3604 | { |
| 3605 | #ifdef FEAT_MBYTE |
| 3606 | if (DragQueryFileW(hDrop, i, wszFile, BUFPATHLEN) > 0) |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 3607 | fnames[i] = utf16_to_enc(wszFile, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3608 | else |
| 3609 | #endif |
| 3610 | { |
| 3611 | DragQueryFile(hDrop, i, szFile, BUFPATHLEN); |
| 3612 | fnames[i] = vim_strsave(szFile); |
| 3613 | } |
| 3614 | } |
| 3615 | |
| 3616 | DragFinish(hDrop); |
| 3617 | |
| 3618 | if (fnames != NULL) |
| 3619 | { |
| 3620 | if ((GetKeyState(VK_SHIFT) & 0x8000) != 0) |
| 3621 | modifiers |= MOUSE_SHIFT; |
| 3622 | if ((GetKeyState(VK_CONTROL) & 0x8000) != 0) |
| 3623 | modifiers |= MOUSE_CTRL; |
| 3624 | if ((GetKeyState(VK_MENU) & 0x8000) != 0) |
| 3625 | modifiers |= MOUSE_ALT; |
| 3626 | |
| 3627 | gui_handle_drop(pt.x, pt.y, modifiers, fnames, cFiles); |
| 3628 | |
| 3629 | s_need_activate = TRUE; |
| 3630 | } |
| 3631 | #endif |
| 3632 | } |
| 3633 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 3634 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3635 | static int |
| 3636 | _OnScroll( |
| 3637 | HWND hwnd, |
| 3638 | HWND hwndCtl, |
| 3639 | UINT code, |
| 3640 | int pos) |
| 3641 | { |
| 3642 | static UINT prev_code = 0; /* code of previous call */ |
| 3643 | scrollbar_T *sb, *sb_info; |
| 3644 | long val; |
| 3645 | int dragging = FALSE; |
| 3646 | int dont_scroll_save = dont_scroll; |
| 3647 | #ifndef WIN3264 |
| 3648 | int nPos; |
| 3649 | #else |
| 3650 | SCROLLINFO si; |
| 3651 | |
| 3652 | si.cbSize = sizeof(si); |
| 3653 | si.fMask = SIF_POS; |
| 3654 | #endif |
| 3655 | |
| 3656 | sb = gui_mswin_find_scrollbar(hwndCtl); |
| 3657 | if (sb == NULL) |
| 3658 | return 0; |
| 3659 | |
| 3660 | if (sb->wp != NULL) /* Left or right scrollbar */ |
| 3661 | { |
| 3662 | /* |
| 3663 | * Careful: need to get scrollbar info out of first (left) scrollbar |
| 3664 | * for window, but keep real scrollbar too because we must pass it to |
| 3665 | * gui_drag_scrollbar(). |
| 3666 | */ |
| 3667 | sb_info = &sb->wp->w_scrollbars[0]; |
| 3668 | } |
| 3669 | else /* Bottom scrollbar */ |
| 3670 | sb_info = sb; |
| 3671 | val = sb_info->value; |
| 3672 | |
| 3673 | switch (code) |
| 3674 | { |
| 3675 | case SB_THUMBTRACK: |
| 3676 | val = pos; |
| 3677 | dragging = TRUE; |
| 3678 | if (sb->scroll_shift > 0) |
| 3679 | val <<= sb->scroll_shift; |
| 3680 | break; |
| 3681 | case SB_LINEDOWN: |
| 3682 | val++; |
| 3683 | break; |
| 3684 | case SB_LINEUP: |
| 3685 | val--; |
| 3686 | break; |
| 3687 | case SB_PAGEDOWN: |
| 3688 | val += (sb_info->size > 2 ? sb_info->size - 2 : 1); |
| 3689 | break; |
| 3690 | case SB_PAGEUP: |
| 3691 | val -= (sb_info->size > 2 ? sb_info->size - 2 : 1); |
| 3692 | break; |
| 3693 | case SB_TOP: |
| 3694 | val = 0; |
| 3695 | break; |
| 3696 | case SB_BOTTOM: |
| 3697 | val = sb_info->max; |
| 3698 | break; |
| 3699 | case SB_ENDSCROLL: |
| 3700 | if (prev_code == SB_THUMBTRACK) |
| 3701 | { |
| 3702 | /* |
| 3703 | * "pos" only gives us 16-bit data. In case of large file, |
| 3704 | * use GetScrollPos() which returns 32-bit. Unfortunately it |
| 3705 | * is not valid while the scrollbar is being dragged. |
| 3706 | */ |
| 3707 | val = GetScrollPos(hwndCtl, SB_CTL); |
| 3708 | if (sb->scroll_shift > 0) |
| 3709 | val <<= sb->scroll_shift; |
| 3710 | } |
| 3711 | break; |
| 3712 | |
| 3713 | default: |
| 3714 | /* TRACE("Unknown scrollbar event %d\n", code); */ |
| 3715 | return 0; |
| 3716 | } |
| 3717 | prev_code = code; |
| 3718 | |
| 3719 | #ifdef WIN3264 |
| 3720 | si.nPos = (sb->scroll_shift > 0) ? val >> sb->scroll_shift : val; |
| 3721 | SetScrollInfo(hwndCtl, SB_CTL, &si, TRUE); |
| 3722 | #else |
| 3723 | nPos = (sb->scroll_shift > 0) ? val >> sb->scroll_shift : val; |
| 3724 | SetScrollPos(hwndCtl, SB_CTL, nPos, TRUE); |
| 3725 | #endif |
| 3726 | |
| 3727 | /* |
| 3728 | * When moving a vertical scrollbar, move the other vertical scrollbar too. |
| 3729 | */ |
| 3730 | if (sb->wp != NULL) |
| 3731 | { |
| 3732 | scrollbar_T *sba = sb->wp->w_scrollbars; |
| 3733 | HWND id = sba[ (sb == sba + SBAR_LEFT) ? SBAR_RIGHT : SBAR_LEFT].id; |
| 3734 | |
| 3735 | #ifdef WIN3264 |
| 3736 | SetScrollInfo(id, SB_CTL, &si, TRUE); |
| 3737 | #else |
| 3738 | SetScrollPos(id, SB_CTL, nPos, TRUE); |
| 3739 | #endif |
| 3740 | } |
| 3741 | |
| 3742 | /* Don't let us be interrupted here by another message. */ |
| 3743 | s_busy_processing = TRUE; |
| 3744 | |
| 3745 | /* When "allow_scrollbar" is FALSE still need to remember the new |
| 3746 | * position, but don't actually scroll by setting "dont_scroll". */ |
| 3747 | dont_scroll = !allow_scrollbar; |
| 3748 | |
| 3749 | gui_drag_scrollbar(sb, val, dragging); |
| 3750 | |
| 3751 | s_busy_processing = FALSE; |
| 3752 | dont_scroll = dont_scroll_save; |
| 3753 | |
| 3754 | return 0; |
| 3755 | } |
| 3756 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3757 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3758 | /* |
| 3759 | * Get command line arguments. |
| 3760 | * Use "prog" as the name of the program and "cmdline" as the arguments. |
| 3761 | * Copy the arguments to allocated memory. |
| 3762 | * Return the number of arguments (including program name). |
Bram Moolenaar | 12806c8 | 2008-11-12 12:36:30 +0000 | [diff] [blame] | 3763 | * Return pointers to the arguments in "argvp". Memory is allocated with |
| 3764 | * malloc(), use free() instead of vim_free(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3765 | * Return pointer to buffer in "tofree". |
| 3766 | * Returns zero when out of memory. |
| 3767 | */ |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 3768 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3769 | int |
| 3770 | get_cmd_args(char *prog, char *cmdline, char ***argvp, char **tofree) |
| 3771 | { |
| 3772 | int i; |
| 3773 | char *p; |
| 3774 | char *progp; |
| 3775 | char *pnew = NULL; |
| 3776 | char *newcmdline; |
| 3777 | int inquote; |
| 3778 | int argc; |
| 3779 | char **argv = NULL; |
| 3780 | int round; |
| 3781 | |
Bram Moolenaar | 12806c8 | 2008-11-12 12:36:30 +0000 | [diff] [blame] | 3782 | *tofree = NULL; |
| 3783 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3784 | #ifdef FEAT_MBYTE |
| 3785 | /* Try using the Unicode version first, it takes care of conversion when |
| 3786 | * 'encoding' is changed. */ |
| 3787 | argc = get_cmd_argsW(&argv); |
| 3788 | if (argc != 0) |
| 3789 | goto done; |
| 3790 | #endif |
| 3791 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3792 | /* Handle the program name. Remove the ".exe" extension, and find the 1st |
| 3793 | * non-space. */ |
| 3794 | p = strrchr(prog, '.'); |
| 3795 | if (p != NULL) |
| 3796 | *p = NUL; |
| 3797 | for (progp = prog; *progp == ' '; ++progp) |
| 3798 | ; |
| 3799 | |
| 3800 | /* The command line is copied to allocated memory, so that we can change |
| 3801 | * it. Add the size of the string, the separating NUL and a terminating |
| 3802 | * NUL. */ |
| 3803 | newcmdline = malloc(STRLEN(cmdline) + STRLEN(progp) + 2); |
| 3804 | if (newcmdline == NULL) |
| 3805 | return 0; |
| 3806 | |
| 3807 | /* |
| 3808 | * First round: count the number of arguments ("pnew" == NULL). |
| 3809 | * Second round: produce the arguments. |
| 3810 | */ |
| 3811 | for (round = 1; round <= 2; ++round) |
| 3812 | { |
| 3813 | /* First argument is the program name. */ |
| 3814 | if (pnew != NULL) |
| 3815 | { |
| 3816 | argv[0] = pnew; |
| 3817 | strcpy(pnew, progp); |
| 3818 | pnew += strlen(pnew); |
| 3819 | *pnew++ = NUL; |
| 3820 | } |
| 3821 | |
| 3822 | /* |
| 3823 | * Isolate each argument and put it in argv[]. |
| 3824 | */ |
| 3825 | p = cmdline; |
| 3826 | argc = 1; |
| 3827 | while (*p != NUL) |
| 3828 | { |
| 3829 | inquote = FALSE; |
| 3830 | if (pnew != NULL) |
| 3831 | argv[argc] = pnew; |
| 3832 | ++argc; |
| 3833 | while (*p != NUL && (inquote || (*p != ' ' && *p != '\t'))) |
| 3834 | { |
| 3835 | /* Backslashes are only special when followed by a double |
| 3836 | * quote. */ |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 3837 | i = (int)strspn(p, "\\"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3838 | if (p[i] == '"') |
| 3839 | { |
| 3840 | /* Halve the number of backslashes. */ |
| 3841 | if (i > 1 && pnew != NULL) |
| 3842 | { |
Bram Moolenaar | 7db5fc8 | 2010-05-24 11:59:29 +0200 | [diff] [blame] | 3843 | vim_memset(pnew, '\\', i / 2); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3844 | pnew += i / 2; |
| 3845 | } |
| 3846 | |
| 3847 | /* Even nr of backslashes toggles quoting, uneven copies |
| 3848 | * the double quote. */ |
| 3849 | if ((i & 1) == 0) |
| 3850 | inquote = !inquote; |
| 3851 | else if (pnew != NULL) |
| 3852 | *pnew++ = '"'; |
| 3853 | p += i + 1; |
| 3854 | } |
| 3855 | else if (i > 0) |
| 3856 | { |
| 3857 | /* Copy span of backslashes unmodified. */ |
| 3858 | if (pnew != NULL) |
| 3859 | { |
Bram Moolenaar | 7db5fc8 | 2010-05-24 11:59:29 +0200 | [diff] [blame] | 3860 | vim_memset(pnew, '\\', i); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3861 | pnew += i; |
| 3862 | } |
| 3863 | p += i; |
| 3864 | } |
| 3865 | else |
| 3866 | { |
| 3867 | if (pnew != NULL) |
| 3868 | *pnew++ = *p; |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 3869 | #ifdef FEAT_MBYTE |
| 3870 | /* Can't use mb_* functions, because 'encoding' is not |
| 3871 | * initialized yet here. */ |
| 3872 | if (IsDBCSLeadByte(*p)) |
| 3873 | { |
| 3874 | ++p; |
| 3875 | if (pnew != NULL) |
| 3876 | *pnew++ = *p; |
| 3877 | } |
| 3878 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3879 | ++p; |
| 3880 | } |
| 3881 | } |
| 3882 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 3883 | if (pnew != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3884 | *pnew++ = NUL; |
| 3885 | while (*p == ' ' || *p == '\t') |
| 3886 | ++p; /* advance until a non-space */ |
| 3887 | } |
| 3888 | |
| 3889 | if (round == 1) |
| 3890 | { |
| 3891 | argv = (char **)malloc((argc + 1) * sizeof(char *)); |
| 3892 | if (argv == NULL ) |
Bram Moolenaar | e6b165e | 2005-06-30 21:56:01 +0000 | [diff] [blame] | 3893 | { |
Bram Moolenaar | 12806c8 | 2008-11-12 12:36:30 +0000 | [diff] [blame] | 3894 | free(newcmdline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3895 | return 0; /* malloc error */ |
Bram Moolenaar | e6b165e | 2005-06-30 21:56:01 +0000 | [diff] [blame] | 3896 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3897 | pnew = newcmdline; |
Bram Moolenaar | 12806c8 | 2008-11-12 12:36:30 +0000 | [diff] [blame] | 3898 | *tofree = newcmdline; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3899 | } |
| 3900 | } |
| 3901 | |
Bram Moolenaar | 8765a4a | 2010-07-27 22:41:43 +0200 | [diff] [blame] | 3902 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3903 | done: |
Bram Moolenaar | 8765a4a | 2010-07-27 22:41:43 +0200 | [diff] [blame] | 3904 | #endif |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3905 | argv[argc] = NULL; /* NULL-terminated list */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3906 | *argvp = argv; |
| 3907 | return argc; |
| 3908 | } |