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