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