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